@charset "utf-8";

/*****************************************
	common.css
	既存ブランドサイト共通CSS
******************************************/
/* -------------------------------------------------------
 layout
---------------------------------------------------------- */
:root {
  --color-red: #F70000;
  --color-red02: #CB0000;
  --color-red03: #C40000;
  --color-red04: #D7000F;
  --color-yellow: #FDF250;
  --color-base: #333;
  --color-bg: #FFF5E6;
  --color-bg02: #FAECD4;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 2;
  color: var(--color-base);
}

@media screen and (max-width: 767px) {
  body {
    line-height: 1.7;
  }
}

#container #main {
  padding-bottom: 10px !important;
}

#container #main,
.mainContents {
  background-color: var(--color-bg);
}

#main>.content {
  margin-bottom: 0;
  max-width: 100%;
  padding: 0;
  background-color: var(--color-bg);
}

.headContent {
  overflow: hidden;
}

/* 背景を固定 */
html {
  width: 100%;
}

html.fixed {
  overflow: hidden;
  height: 100%;
  scrollbar-gutter: stable;
}

/*inner*/
.cnt-inner {
  max-width: 1220px;
  margin: auto;
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .cnt-inner {
    padding: 0 30px;
  }
}

/*PC SP*/
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

/*img*/
img {
  width: auto;
  max-width: 100%;
  height: auto;
}

*:focus:not(:focus-visible):not(a[href]):not(area[href]):not(button):not(input):not(select):not(textarea):not(summary):not(iframe):not(audio[controls]):not(video[controls]) {
  outline: none;
}

[tabindex="-1"]:focus,
div[tabindex]:focus,
:is(section, article, div)[id][tabindex]:focus,
:is(h1, h2, h3, h4, h5, h6)[tabindex]:focus {
  outline: none;
}

/*font*/
@font-face {
  font-family: recop-iconfonts;
  src:
    url('/brand-jobfind/asset/css/option/font/recop-iconfont.eot?') format('eot'),
    url('/brand-jobfind/asset/css/option/font/recop-iconfont.woff') format('woff'),
    url('/brand-jobfind/asset/css/option/font/recop-iconfont.ttf') format('truetype');
  font-display: swap;
}

/*btn*/
.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  background-color: #fff;
  color: var(--color-base) !important;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s;
  text-decoration: none;
  position: relative;
  line-height: 1.2;
  padding: 0 35px 0 20px;
}

@media screen and (max-width: 767px) {
  .link-btn {
    justify-content: flex-start;
    padding: 0 30px;
  }
}

.link-btn::after {
  content: "\E857";
  font-family: recop-iconfonts;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-red);
}

@media (hover: hover) {
  .link-btn:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}

/*title*/
.cnt-titleWrap {
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cnt-titleWrap::after {
  content: "";
  display: block;
  position: absolute;
  background: url(/brand-jobfind/asset/images/icon-cow.png) no-repeat center top / contain;
  width: 132px;
  aspect-ratio: 33 / 35;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .cnt-titleWrap {
    margin-bottom: 30px;
  }

  .cnt-titleWrap::after {
    left: 50%;
    top: auto;
    bottom: 20px;
    transform: translate(-50%, 0);
  }
}

h2.cnt-title {
  font-size: 45px;
  position: relative;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  h2.cnt-title {
    font-size: 35px;
  }
}

.cnt-title .u-small {
  font-size: 30px;
}

@media screen and (max-width: 767px) {
  .cnt-title .u-small {
    font-size: 20px;
  }
}

/*slick*/
.slick_pause {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  border: none;
  background-color: #666666;
  border-radius: 3px;
  cursor: pointer;
}

.slick_pause .pause-text {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.slick_pause .pause-text::before,
.slick_pause .pause-text::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 6px;
  background-color: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: recop-iconfonts;
}

.slick_pause .pause-text::before {
  margin-left: -2px;
}

.slick_pause .pause-text::after {
  margin-left: 2px;
}

.slick_pause.paused .pause-text::before {
  content: none;
}

.slick_pause.paused .pause-text::after {
  font-family: recop-iconfonts;
  content: "\E889";
  color: #ffffff;
  background-color: transparent;
  margin-left: -1px;
  margin-top: -4px;
}

/*slick arrow*/
.slick-arrow {
  width: 37px;
  height: 37px;
  color: #fff;
  font-size: 26px;
  border-radius: 999em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-red);
  border: none;
  cursor: pointer;
  z-index: 2;
}

.slick-prev {
  left: 10px;
}

.slick-prev::before {
  content: "\E843";
  font-family: recop-iconfonts;
}

.slick-next {
  right: 10px;
}

.slick-next::before {
  content: "\E841";
  font-family: recop-iconfonts;
}

/*slick button*/
.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-dots li {
  position: relative;
  margin: 0 5px;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  cursor: pointer;
  color: transparent;
  border: none;
  border-radius: 999px;
  background-color: #999999;
}

.slick-dots li.slick-active button {
  background-color: var(--color-red);
}

/*******************************
  ヘッダー
*******************************/
.header {
  width: 100%;
  z-index: 1000;
  background-color: var(--color-bg);
  position: relative;
}

.header-inner {
  max-width: 1240px;
  padding: 0 20px;
  align-items: normal;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 75px 10px 135px;
    gap: 16px;
    height: auto;
    min-height: 80px;
    justify-content: center;
  }
}

.header-logo {
  background-color: var(--color-red);
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 2;
  padding: 0;
}

.header-logo a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .header-logo a {
    padding: 14px 6px;
  }
}

@media (hover: hover) {
  .header-logo a:hover {
    opacity: 0.7;
  }
}

.header-contents {
  width: 100%;
  min-height: 95px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  width: calc(100% - 280px);
}

@media screen and (max-width: 1250px) {
  .header-contents {
    min-height: 80px;
    padding-right: 60px;
  }
}

@media screen and (max-width: 767px) {
  .header-contents {
    padding-right: 0px;
    align-items: flex-start;
    min-height: auto;
    width: 100%;
  }
}

.header_title {
  color: var(--color-base);
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .header_title {
    text-align: left;
    width: 100%;
    font-size: 14px;
    line-height: 1.35;
  }
}

/*******************************
  nav
*******************************/
.nav-allWrap,
.nav-container {
  width: 100%;
}

@media screen and (max-width: 1250px) {
  .nav-allWrap {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 10000;
    pointer-events: none;
    left: 0;
    top: 0;
  }

  .nav-container {
    height: 100%;
    position: relative;
  }
}

/*nav fixed*/
@keyframes slideDownFade {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

@media screen and (min-width: 1251px) {
  .fixed-nav {
    position: fixed;
    text-align: center;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 10001;
    animation: slideDownFade 0.4s ease forwards;
    background-color: #fff;
  }
}

.gnav {
  display: block;
  position: relative;
  z-index: 1000;
}

@media screen and (max-width: 1250px) {
  .gnav {
    display: none;
    width: 100%;
    position: relative;
    height: 100%;
    max-height: 100vh;
    overflow-y: scroll;
    padding: 10px 30px 20px;
    border-bottom: none;
    pointer-events: all;
    background-image: url(/brand-jobfind/asset/images/bg-paper.png);
    background-color: var(--color-red02);
    background-blend-mode: multiply;
    background-repeat: repeat;
    background-size: 100px auto;
  }

  .gnav::-webkit-scrollbar {
    display: none;
  }
}

.hamburger-logo {
  display: none;
}

@media screen and (max-width: 1250px) {
  .hamburger-logo {
    display: block;
    background-color: transparent;
    position: static;
    max-width: 150px;
    margin: 0 auto;
  }

  .hamburger-logo a {
    padding: 0;
  }
}

/*nav button*/
@media screen and (min-width: 1251px) {
  .gnav-triggerWrap {
    display: none;
  }
}

@media screen and (max-width: 1250px) {
  .gnav-triggerWrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin: auto;
    cursor: pointer;
  }

  .gnav-trigger {
    width: 60px;
    height: 60px;
    z-index: 10000;
    cursor: pointer;
    pointer-events: all;
    background-color: #000;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: 0.3s;
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .hamburger-line {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 6px auto;
    transition: all 0.3s ease;
  }

  .opened .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .opened .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .opened .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* open時 */
  .gnav-trigger[aria-expanded="true"] {
    background-color: var(--color-base);
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }

  .gnav-trigger[aria-expanded="true"] .hamburger-line {
    background-color: #fff;
  }
}

@media (hover: hover) {
  .gnav-trigger:hover {
    filter: brightness(0.9);
  }
}

/*nav list*/
.nav-list {
  display: flex;
  justify-content: flex-end;
}

.nav-list li {
  list-style: none;
  display: inline-block;
}

.fixed-nav .nav-list {
  height: 50px;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1250px) {
  .nav-list {
    display: block;
    max-width: 500px;
    margin: 10px auto 0;
    padding: 0;
  }

  .nav-list li {
    display: block;
    border-radius: 100px;
    background-color: #fff;
  }

  .nav-list li+li {
    margin-top: 20px;
    border-left: none;
  }
}

.nav-list li a.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  line-height: 25px;
  font-size: 16px;
  color: var(--color-base) !important;
  transition: 0.3s;
  position: relative;
  font-weight: bold;
}

@media screen and (min-width: 1251px) {
  .nav-list li:first-child a.btn {
    padding-left: 0;
  }

  .nav-list li:last-child a.btn {
    padding-right: 0;
  }
}

@media (hover: hover) {
  .nav-list li a.btn:hover {
    text-decoration: underline;
  }
}

@media screen and (max-width: 1250px) {
  .nav-list li a.btn {
    padding: 0 45px 0 35px;
    color: var(--color-base) !important;
    font-size: 18px;
    border-radius: 999em;
    background-color: #fff;
    position: relative;
    font-weight: bold;
    line-height: 60px;
  }

  .nav-list li a.btn::before {
    content: "\E857";
    font-family: recop-iconfonts;
    position: absolute;
    right: 20px;
    color: var(--color-red);
  }

  @media (hover: hover) {
    .nav-list li a.btn:hover {
      text-decoration: none;
      opacity: 0.7;
    }
  }
}

.nav-list li+li a.btn::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--color-base);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 1250px) {
  .nav-list li+li a.btn::after {
    display: none;
  }
}

/*******************************
  kv
*******************************/
.kv,
.kv-slider {
  position: relative;
}

.kv-slider {
  overflow: hidden;
}

.kv-slider .slider img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .kv-slider .slider img {
    border-radius: 25px;
  }
}

/*catch*/
.kv-catch {
  position: absolute;
  width: 43%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0 0 0 / 0.5);
  z-index: 2;
  border-radius: 20px 0 0 20px;
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 3vw 0 7.14vw;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .kv-catch {
    width: 100%;
    height: 240px;
    top: auto;
    bottom: 0px;
    border-radius: 0 0 25px 25px;
    padding: 10px 20px 60px 20px;
  }
}

.kv-catch_text {
  display: inline-block;
  font-size: 3.42vw;
  color: #fff;
  position: relative;
}

@media screen and (max-width: 767px) {
  .kv-catch_text {
    font-size: 36px;
  }
}

/*slider btn*/
.kv-slider_btnWrap {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 15px;
  right: 50%;
  transform: translateX(50%);
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .kv-slider_btnWrap {
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
  }
}

.kv-slider_dots {
  margin-left: 10px;
}

.kv-slick_pause {
  transition: 0.3s;
}

@media (hover: hover) {
  .kv-slick_pause:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .kv-slider .slick-arrow {
    top: auto;
    bottom: 50%;
    transform: translateY(0);
  }

  .kv-slider .slick-prev {
    left: 15px;
  }

  .kv-slider .slick-next {
    right: 15px;
  }
}

/*lead*/
.kv-lead {
  padding-top: 30px;
}

@media screen and (max-width: 767px) {
  .kv-lead {
    padding: 30px 30px 0;
  }
}

.kv-lead_text {
  color: var(--color-base);
}

/*******************************
  jobsearch
*******************************/
.jobsearch {
  padding: 60px 0 0;
  position: relative;
  z-index: 1;
}

.jobsearch-wrap {
  position: relative;
  z-index: 1;
}

.jobsearch .cnt-titleWrap {
  margin: 0 auto 55px;
}

@media screen and (max-width: 767px) {
  .jobsearch .cnt-titleWrap {
    margin: 0 auto 30px;
  }
}

/* ロゴ */
.jobsearch .cnt-titleWrap::before {
  content: "";
  position: absolute;
  width: 770px;
  aspect-ratio: 385 / 78;
  background: url('/brand-jobfind/asset/images/icon-search.png') no-repeat center bottom / contain;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.jobsearch .cnt-titleWrap::after {
  content: none;
}

@media screen and (max-width: 767px) {

  .jobsearch .cnt-titleWrap:before {
    width: calc(100% + 60px);
    transform: translate(-50%, -100%);
  }
}

.jobsearch-contents {
  border-radius: 20px;
  background-color: #fff;
  border: 3px solid var(--color-red03);  
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.jobsearch-mapWrap {
  padding: 60px 60px 50px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .jobsearch-mapWrap {
    padding: 30px 20px;
  }
}

#pagetop #mapObj {
  margin-bottom: 0;
}

.jobsearch-box {
  padding: 50px 20px;
  position: relative;
  z-index: 1;
  background-image: url(/brand-jobfind/asset/images/bg-paper.png);
  background-color: var(--color-red02);
  background-blend-mode: multiply;
  background-repeat: repeat;
  background-size: 100px auto;
}

@media screen and (max-width: 767px) {
  .jobsearch-box {
    padding: 30px 20px;
  }
}

.jobsearch-box:last-child {
  padding-top: 0;
}

@media screen and (max-width: 767px) {
  .jobsearch-box:last-child {
    padding-bottom: 40px;
  }
}

.jobsearch-title {
  margin-bottom: 30px;
  font-size: 27px;
  text-align: center;
  font-weight: bold;
}

.jobsearch-box:nth-of-type(2) .jobsearch-title,
.jobsearch-box:nth-of-type(3) .jobsearch-title {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .jobsearch-title {
    margin-bottom: 15px;
    font-size: 24px;
  }
}

.jobsearch-list {
  display: grid;
  gap: 20px;
  justify-content: center;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}

.jobsearch-list.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.jobsearch-list.col-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 767px) {
  .jobsearch-list {
    gap: 10px;
    text-align: left;
  }

  .jobsearch-list.col-3,
  .jobsearch-list.col-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*******************************
  about
*******************************/
.about {
  padding: 100px 0;
  position: relative;
}

@media screen and (max-width: 767px) {
  .about {
    padding: 90px 0 40px;
  }
}

.about-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4.16vw;
  position: relative;
}

@media screen and (max-width: 767px) {
  .about-grid {
    display: block;
  }
}

.about-imgWrap {
  width: calc(100% - min(40%, 460px) - 4.16vw);
}

.about-img {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

@media screen and (max-width: 767px) {
  .about-imgWrap {
    width: 100%;
  }

  .about-img {
    margin: auto;
  }

  .about-img.--top,
  .about-img.--bottom {
    width: 375px;
    left: -30px;
  }
}

.about-desc {
  width: min(40%, 460px);
  min-width: 360px;
  position: relative;
  z-index: 0;
}

.about-desc p {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .about-desc {
    max-width: 500px;
    width: 100%;
    margin: auto;
    padding: 30px 0;
    min-width: auto;
  }

  .about-desc p {
    margin-top: 0;
  }
}

/*pickup*/
@media screen and (max-width: 767px) {
  .pickup {
    padding-top: 30px;
  }
}

.pickup-grid {
  margin-top: 50px;
  padding: 50px;
  border-radius: 20px;
  background-color: #fff;
  position: relative;
  z-index: 10;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .pickup-grid {
    margin-top: 0;
    padding: 45px 20px 40px;
    position: relative;
  }
}

.pickup-text {
  position: relative;
  padding-right: 35vw;
}

@media screen and (min-width: 1401px) {
  .pickup-text {
    padding-right: 500px;
  }
}

@media screen and (max-width: 767px) {
  .pickup-text {
    padding-right: 0;
    padding-bottom: 0;
  }
}

.pickup-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  max-width: 490px;
  width: 35vw;
}

@media screen and (max-width: 767px) {
  .pickup-img {
    width: 100%;
    margin: auto;
    margin-bottom: 30px;
    transform: none;
    position: static;
  }
}

.pickup-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.pickup-label {
  margin-bottom: 40px;
  color: var(--color-red);
  font-size: 45px;
  line-height: 1.2;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .pickup-label {
    font-size: 3.75vw;
  }
}

@media screen and (max-width: 767px) {
  .pickup-label {
    font-size: 35px;
    margin-bottom: 25px;
    padding-left: 0;
    text-align: center;
  }
}

/*******************************
  work
*******************************/
.work {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-image: url(/brand-jobfind/asset/images/bg-paper.png);
  background-color: var(--color-red02);
  background-blend-mode: multiply;
  background-repeat: repeat;
  background-size: 100px auto;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .work {
    padding: 40px 0;
  }

  .work .cnt-inner {
    padding: 0;
  }
}

.work .cnt-titleWrap::after {
  content: none;
}

.work-block {
  position: relative;
}

.work-block:nth-of-type(n+2) {
  margin-top: 70px;
  padding-top: 70px;
}

.work-block:nth-of-type(n+2)::before {
  content: "";
  width: 100%;
  background-color: #fff;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .work-block:nth-of-type(n+2) {
    margin-top: 30px;
    padding-top: 30px;
  }

  .work-block:nth-of-type(n+2)::before {
    width: calc(100% - 60px);
    left: 30px;
  }
}

.work-category {
  width: calc((100% - 40px) / 3);
  height: calc((100% - 20px) / 2);;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  color: #fff;
  background-color: var(--color-base);
  position: absolute;
  line-height: 1.2;
  border-radius: 20px;
  z-index: 1;
}

.--rtl .work-category {
  left: 0;
}

.--ltr .work-category {
  right: 0;
}

.work-category::after {
  content: "";
  display: block;
  position: absolute;
  background: url(/brand-jobfind/asset/images/icon-cow_black.png) no-repeat center top / contain;
  width: min(190px, 55%);
  aspect-ratio: 128 / 137;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .work-category {
    position: static;
    width: calc(100% - 60px);
    line-height: 58px;
    height: auto;
    text-align: center;
    font-size: 22px;
    border-radius: 20px;
    margin: 0 30px 30px;
  }
}

.work-grid {
  position: relative;
}

.work-imgWrap {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .work-imgWrap {
    margin: 0 auto;
    padding: 0;
    grid-template-columns: 1fr;
    position: relative;
  }
}

.--rtl .work-imgWrap {
  grid-template-rows: auto auto;
  grid-template-areas:
    ".    img1 img2"
    "img3 img4 img5";
}

.--ltr .work-imgWrap {
  grid-template-rows: auto auto;
  grid-template-areas:
    "img1 img2 .   "
    "img3 img4 img5";
}

@media screen and (max-width: 767px) {

  .--rtl .work-imgWrap,
  .--ltr .work-imgWrap {
    grid-template-rows: auto;
    grid-template-areas: none;
  }
}

.work-img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .work-img {
    padding: 0 10px;
  }
}

.work-imgWrap .work-img:nth-child(1) {
  grid-area: img1;
}

.work-imgWrap .work-img:nth-child(2) {
  grid-area: img2;
}

.work-imgWrap .work-img:nth-child(3) {
  grid-area: img3;
}

.work-imgWrap .work-img:nth-child(4) {
  grid-area: img4;
}

.work-imgWrap .work-img:nth-child(5) {
  grid-area: img5;
}

.work-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* slick-arrow */
.slick-arrow {
  border: 1px solid #fff;
}

/* slick-dots */
.work .slick-dots li button {
  background-color: #fff;
}

.work .slick-dots li.slick-active button {
  background-color: var(--color-base);
}

.work-desc {
  margin-top: 35px;
}

@media screen and (max-width: 767px) {
  .work-desc {
    width: 100%;
    margin-top: 20px;
    padding: 0 30px;
  }
}

/* ▼ 左 */
.--rtl .work-desc {
  margin-left: 0;
  padding-right: 17.5vw;
}

/* ▼ 右 */
.--ltr .work-desc {
  margin-right: 0;
  padding-left: 17.5vw;
}

@media screen and (max-width: 767px) {

  .--rtl .work-desc,
  .--ltr .work-desc {
    margin: 20px auto 0;
    width: calc(100% - 32px);
    padding: 20px 15px;
  }
}

.work-slider_dots {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .work-imgWrap .slick-prev {
    left: 9%;
  }

  .work-imgWrap .slick-next {
    right: 9%;
  }
}

/*******************************
  appeal
*******************************/
.appeal {
  padding: 90px 0 0px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .appeal {
    padding: 110px 0 0px;
    position: relative;
  }
}

.appeal-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .appeal-list {
    margin-top: 0;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}

.appeal-item {
  padding: 20px 20px 40px;
  background-color: #ffffff;
  border-radius: 20px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .appeal-item {
    grid-row: span 4;
    display: grid;
    grid-template-rows: subgrid;
    gap: 0;
  }
}

.appeal-item_icon {
  margin-bottom: 30px;
  background-color: #F2F2F2;
  border-radius: 15px;
  text-align: center;
}

.appeal-item_icon img {
  width: auto;
  height: 175px;
  margin: 0 auto;
}

.appeal-item_text {
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .appeal-item_text {
    padding: 0 0 25px;
  }
}

.appeal-item_title {
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

.appeal-item_title span{
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .appeal-accBody_sp {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .appeal-accBody_sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .appeal-accBtn_sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .appeal-accBtn_sp {
    position: absolute;
    width: 100%;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    background: none;
    border: none;
    display: block;
    font-family: recop-iconfonts;
    cursor: pointer;
  }

  .appeal-accBtn_sp::before {
    display: block;
    width: 37px;
    height: 37px;
    margin: auto;
    content: "";
    background: url("/brand-jobfind/asset/images/icon-plus.png") no-repeat center / contain;
    /* ＋ */
  }

  .appeal-accBtn_sp.open::before {
    background: url("/brand-jobfind/asset/images/icon-minus.png") no-repeat center / contain;
    /* − */
  }
}

/*******************************
  system
*******************************/
.system {
  padding: 80px 0 100px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .system {
    padding: 60px 0 40px;
  }
}

.system-list {
  margin-top: 40px;
  padding: 90px 60px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  border-radius: 20px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .system-list {
    padding: 0 20px 20px;
  }
}

.system-item,
.system-item>dl {
  position: relative;
}

@media screen and (max-width: 767px) {
  .system-item>dl {
    display: block;
  }
}

.system-item_head {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999em;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .system-item_head {
    width: 140px;
    height: 140px;
    padding: 10px 0;
    top: -70px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

.system-item_head.bg-black {
  color: #fff;
  background-color: var(--color-base);
}

.system-item_head.bg-green {
  background-color: #87D48E;
}

.system-item_head.bg-yellow {
  background-color: var(--color-yellow);
}

.system-item_head.bg-red {
  color: #fff;
  background-color: var(--color-red);
}

.system-item+.system-item::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: var(--color-base) transparent transparent transparent;
  border-width: 20px 27px 0px 27px;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .system-item+.system-item::before {
    top: -60px;
  }
}

.system-item_rank {
  font-size: 23px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .system-item_rank {
    font-size: 20px;
  }
}

.rank-icon {
  width: 100%;
  display: block;
}

.rank-icon img {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin: 0 2px 10px;
}

.system-item_head.red .rank-icon img {
  width: 36px;
  height: 36px;
}

.system-item_text {
  margin-left: 100px;
  display: flex;
  align-items: center;
  padding: 40px 100px;
  background-color: #F2F2F2;
}

@media screen and (max-width: 767px) {
  .system-item_text {
    margin-top: 45px;
    margin-left: 0;
    padding: 85px 15px 30px;
  }
}

/*******************************
  number
*******************************/
.number {
  padding: 100px 0;
  position: relative;
  background-image: url(/brand-jobfind/asset/images/bg-paper.png);
  background-color: var(--color-red02);
  background-blend-mode: multiply;
  background-repeat: repeat;
  background-size: 100px auto;
}

@media screen and (max-width: 767px) {
  .number {
    padding: 40px 0;
  }
}

.number .cnt-titleWrap {
  color: #fff;
}

.number .cnt-titleWrap::after {
  content: none;
}

.number .cnt-inner {
  max-width: 1000px;
}

@media screen and (max-width: 767px) {
  .number .cnt-inner {
    padding: 0 20px;
  }
}

.number-text {
  color: #fff;
}

.number-list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .number-list {
    gap: 7vw;
  }
}

@media screen and (max-width: 767px) {
  .number-list {
    margin-top: 30px;
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
  }
}

.number-item_titleWrap {
  margin-bottom: 20px;
  text-align: center;
  color: #fff;
}

.number-item_title {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.2;
}

.number-item_sub {
  font-size: 16px;
}

.number-item_text {
  margin-top: 20px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .number-item_text {
    padding: 0 10px;
  }
}

.number-graphWrap {
  width: 444px;
  height: 444px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #fff;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .number-graphWrap {
    width: 44.4vw;
    height: 44.4vw;
  }
}

@media screen and (max-width: 767px) {
  .number-graphWrap {
    max-width: 335px;
    width: 100%;
    height: 335px;
    margin: auto;
  }
}

/*gender*/
.gender-graph {
  max-width: 297px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .gender-graph {
    max-width: 29.7vw;
  }
}

@media screen and (max-width: 767px) {
  .gender-graph {
    max-width: 222px;
  }
}

.gender-graph img {
  width: 100%;
  height: auto;
  display: block;
}

.gender-values {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .gender-values {
    gap: 2vw;
  }
}

@media screen and (max-width: 767px) {
  .gender-values {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}

@media screen and (max-width: 374px) {
  .gender-values {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

.gender-label {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .gender-label {
    font-size: 2vw;
  }
}

@media screen and (max-width: 767px) {
  .gender-label {
    font-size: 16px;
  }
}

.gender-label.is-male {
  color: #0083EA;
}

.gender-label.is-female {
  color: var(--color-red);
}

.gender-type {
  display: block;
  text-align: center;
}

.gender-rate {
  font-size: 50px;
  line-height: 1.2;
}

.gender-rate>strong {
  font-size: 70px;
  line-height: 1.2;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .gender-rate {
    font-size: 5vw;
  }

  .gender-rate>strong {
    font-size: 7vw;
  }
}

@media screen and (max-width: 767px) {
  .gender-rate {
    font-size: 37px;
  }

  .gender-rate>strong {
    font-size: 52px;
  }
}


/*age*/
.age-values {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.age-graph {
  padding: 0 20px;
}

.age-graph img {
  width: 100%;
  height: auto;
  display: block;
}

.age-text {
  font-size: 16px;
  font-weight: bold;
}

.age-label {
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
}

.age-rate {
  font-size: 30px;
}

.age-rate>strong {
  font-size: 50px;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .age-text {
    font-size: 1.6vw;
  }

  .age-label {
    font-size: 3vw;
  }

  .age-rate {
    font-size: 2.2vw;
  }

  .age-rate>strong {
    font-size: 5vw;
  }
}

@media screen and (max-width: 767px) {
  .age-graph {
    max-width: 310px;
    padding: 0 5px;
  }

  .age-text {
    font-size: 12px;
  }

  .age-label {
    font-size: 12px;
  }

  .age-rate {
    font-size: 24px;
  }

  .age-rate>strong {
    font-size: 39px;
  }
}

/*paid*/
.paid-icon {
  max-width: 270px;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .paid-icon {
    max-width: 27vw;
  }
}

@media screen and (max-width: 767px) {
  .paid-icon {
    max-width: 220px;
  }
}

.paid-icon img {
  width: 100%;
}

.paid-label {
  margin-top: 10px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: -0.1em;
}

.paid-rate {
  font-size: 100px;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .paid-label {
    font-size: 2.5vw;
  }

  .paid-rate {
    font-size: 10vw;
  }
}

@media screen and (max-width: 767px) {
  .paid-label {
    font-size: 20px;
  }

  .paid-rate {
    font-size: 80px;
  }
}

/*hire*/
.hire-icon {
  max-width: 270px;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .hire-icon {
    max-width: 27vw;
  }
}

@media screen and (max-width: 767px) {
  .hire-icon {
    max-width: 214px;
  }
}

.hire-icon img {
  width: 100%;
}

.hire-values {
  margin-top: 10px;
}

.hire-text {
  font-size: 19px;
  font-weight: bold;
  text-align: center;
}

.hire-label {
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}

.hire-rate {
  font-size: 100px;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .hire-label {
    font-size: 2vw;
  }

  .hire-rate {
    font-size: 10vw;
  }
}

@media screen and (max-width: 767px) {
  .hire-text {
    font-size: 16px;
  }

  .hire-label {
    font-size: 20px;
  }

  .hire-rate {
    font-size: 80px;
  }
}

/*******************************
  discussion
*******************************/
.discussion {
  padding: 90px 0 0px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .discussion {
    padding: 60px 0 0px;
  }
}

.staff-list {
  padding: 50px 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1150px;
  margin: 0 auto;
}

.staff-item {
  position: relative;
}

@media screen and (max-width: 767px) {
  .staff-item {
    width: fit-content;
    margin: 0 auto;
  }
}

.staff-item img {
  width: 100%;
  height: auto;
  max-width: 300px;
  border-radius: 20px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 0 0;
}

.staffItem-profile {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  line-height: 1.5;
  position: absolute;
  bottom: 23px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
}

.staffItem-profile span {
  display: inline-block;
  padding: 6px 15px;
  background-color: var(--color-red04);
}

@media screen and (min-width: 768px) and (max-width: 1220px) {
  .staffItem-profile {
    font-size: 1.31vw;
    bottom: 1.4vw;
  }
}

@media screen and (max-width: 767px) {
  .staff-list {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 0px 40px 0;
    margin: 30px 30px 0 30px;
    border-top: 2px solid var(--color-base);
    border-bottom: 2px solid var(--color-base);
  }

  .staff-item img {
    max-width: 250px;
    margin: 0 auto;
  }

  .staffItem-profile {
    max-width: 320px;
    right: auto;
    left: -30px;
    bottom: -10px;
    align-items: flex-start;
    width: calc(100% + 60px);
  }
}

/*comment*/
.discussion-box {
  padding: 70px 0 100px;
}

.discussion-box:first-of-type {
  padding-top: 150px;
}

.discussion-box:last-of-type {
  padding-bottom: 70px;
}

.discussion-box:nth-of-type(2n + 1) {
  background: var(--color-bg02);
}

@media screen and (max-width: 767px) {
  .discussion-box {
    padding: 70px 0 80px;
  }

  .discussion-box:first-of-type {
    padding-top: 140px;
  }
}

.discussion-title {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .discussion-title {
    margin-bottom: 20px;
  }
}

.discussion-title .label {
  width: 80px;
  height: 80px;
  margin: auto;
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background-color: var(--color-red04);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%, -100%);
}

.discussion-title .label::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: var(--color-red04) transparent transparent transparent;
  border-width: 17px 9px 0px 9px;
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
}

.discussion-title .heading {
  font-size: 27px;
  font-weight: bold;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .discussion-title .heading {
    font-size: 24px;
  }
}

.discussion-comments {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1020px;
  margin: 0 auto 30px;
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .discussion-comments {
    gap: 0;
    margin-bottom: 20px;
    margin-top: -10px;
    padding: 0 30px;
  }
}

.comment-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .comment-item {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
  }
}

.comment-item figure {
  width: 100px;
}

@media screen and (max-width: 767px) {
  .comment-item figure {
    margin: auto;
    position: relative;
    bottom: -20px;
  }
}

.comment-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.comment-item>p {
  padding: 30px 25px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .comment-item>p {
    padding: 40px 15px;
  }
}

.discussion-images {
  display: grid;
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 10px;
}

.discussion-images.col-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 767px) {
  .discussion-images {
    gap: 15px;
    padding: 0 30px;
  }

  .discussion-images.col-2 {
    grid-template-columns: 1fr;
  }
}

.discussion-img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/*******************************
  faq
*******************************/
.faq {
  padding: 100px 0 85px 0;
  position: relative;
  background-color: var(--color-bg02);
  margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .faq {
    padding: 90px 0 35px 0;
    margin-bottom: 80px;
  }
}

.faq .cnt-titleWrap {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .faq .cnt-titleWrap {
    margin-bottom: 15px;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-box {
  padding: 15px 0;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.3s;
}

@media (hover: hover) {
  .faq-q:hover {
    opacity: 0.7;
  }
}

.faq-q_icon {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  font-size: 30px;
  background: var(--color-base);
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999em;
}

@media screen and (max-width: 767px) {
  .faq-q_icon {
    margin-bottom: auto;
  }
}

.faq-q_text {
  flex: 1;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}

.faq-toggle {
  display: block;
  padding: 0 15px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  font-family: recop-iconfonts;
  font-size: 30px;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .faq-toggle {
    padding: 0;
  }
}

.faq-toggle::before {
  content: "\E813";
  color: var(--color-base);
}

.open .faq-toggle::before {
  content: "\E822";
}

.faq-a {
  display: none;
  margin-top: 20px;
  padding: 30px 30px 30px 100px;
  color: var(--color-base);
  background: #ffffff;
  position: relative;
}

.faq-a_label {
  width: 60px;
  height: 60px;
  font-size: 30px;
  background: var(--color-red04);
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999em;
  position: absolute;
  top: 20px;
  left: 20px;
}

.faq-a_text {
  padding-top: 10px;
}

@media screen and (max-width: 767px) {
  .faq-a {
    padding: 20px 25px 20px 90px;
  }

  .faq-a_text {
    padding-top: 0;
  }
}

/*******************************
  float btn
*******************************/
.float-wrap {
  height: 70px;
  background-color: var(--color-bg);
}

.float-btn {
  position: relative;
  pointer-events: none;
  padding: 0 10px 10px 10px;
  display: none;
}

.float-btn.is-fixed {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 500;
}

.float-btn li:first-of-type {
  /* 透過防止用 */
  background-color: #fff;
  max-width: 400px;
  margin: 0 auto;
}

.float-btn a {
  pointer-events: auto;
}

/* 現在募集中の求人を探す */
.float-btn .link-btn {
  border: 2px solid #fff;
  background-color: var(--color-red04);
  color: #fff !important;
}

.float-btn .link-btn::after {
  color: var(--color-yellow);
}

/* トップに戻るボタン */
li.pagetop {
  position: absolute;
  right: 20px;
  bottom: 0px;
  width: 130px;
}

a.top-btn {
  display: flex;
  flex-direction: column;
  transition: .3s;
  position: relative;
}

a.top-btn::before {
  content: "";
  display: block;
  background: url(/brand-jobfind/asset/images/btn-top.png) no-repeat center center / contain;
  width: 130px;
  aspect-ratio: 131 / 85;
}

a.top-btn span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  text-align: center;
  color: var(--color-red);
  font-size: 22px;
  line-height: 30px;
  text-decoration: none !important;
  font-weight: bold;
  text-shadow: -2px -2px 0 #fff, 0px -2px 0 #fff, 2px -2px 0 #fff, -2px 0px 0 #fff, 2px 0px 0 #fff, -2px 2px 0 #fff, 0px 2px 0 #fff, 2px 2px 0 #fff;
}

a.top-btn span::after {
  content: "\E884";
  font-family: recop-iconfonts;
  font-weight: normal;
  font-size: 26px;
  line-height: 26px;
  padding-bottom: 2px;
}

/* ホバーアクション */
a.top-btn:hover {
  text-decoration: none !important;
}

@media (hover: hover) {
  a.top-btn:hover {
    text-decoration: none !important;
    opacity: .7;
  }
}

/* スクロールアクション */
a.top-btn::before {
  transition: all 0.3s;
}

/* 20％～ */
a.top-btn.scroll-12::before {
  background: url(/brand-jobfind/asset/images/btn-top-12.png) no-repeat center center / contain;
}

/* 40％～ */
a.top-btn.scroll-40::before {
  background: url(/brand-jobfind/asset/images/btn-top-40.png) no-repeat center center / contain;
}

a.top-btn.scroll-40::after {
  content: "";
  display: block;
  position: absolute;
  background: url(/brand-jobfind/asset/images/deco-40.png) no-repeat center center / contain;
  width: 105px;
  aspect-ratio: 53 / 30;
  top: 0;
  left: 0;
  transform: translateY(-100%);
}

/* 60％～ */
a.top-btn.scroll-60::before {
  background: url(/brand-jobfind/asset/images/btn-top-60.png) no-repeat center center / contain;
}

a.top-btn.scroll-60::after {
  content: "";
  display: block;
  position: absolute;
  background: url(/brand-jobfind/asset/images/deco-60.png) no-repeat center center / contain;
  width: 105px;
  aspect-ratio: 211 / 60;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
}

/* 80%～ */
a.top-btn.scroll-80::before {
  background: url(/brand-jobfind/asset/images/btn-top-80.png) no-repeat center center / contain;
}

a.top-btn.scroll-80::after {
  content: "";
  display: block;
  position: absolute;
  background: url(/brand-jobfind/asset/images/deco-80.png) no-repeat center center / contain;
  width: 110px;
  aspect-ratio: 73 / 43;
  top: 10px;
  right: -20px;
  transform: translateY(-100%);
}

@media screen and (max-width: 767px) {
  .float-btn {
    padding: 0 5px 10px 10px;
  }

  .float-btn li:first-of-type {
    width: calc(100% - 90px);
    margin: 0 auto 0 0;
    max-width: none;
  }

  .float-btn .link-btn {
    font-size: 17px;
  }

  .all-btn {
    display: block;
    height: 60px;
    line-height: 60px;
    width: 100%;
    margin: 0 auto 0 0;
    max-width: none;
  }

  /* トップに戻るボタン */
  li.pagetop {
    right: 5px;
    width: 85px;
    bottom: 10px;
  }

  a.top-btn::before {
    width: 85px;
  }

  /* スクロールアクション */
  /* 40％～ */
  a.top-btn.scroll-40::after {
    width: 70px;
  }

  /* 60％～ */
  a.top-btn.scroll-60::after {
    width: 70px;
  }

  /* 80%～ */
  a.top-btn.scroll-80::after {
    width: 75px;
    top: 5px;
    right: -5px;
  }
}

/*******************************
  地域リンク
*******************************/
#pagetop .areaLink {
  max-width: 1040px;
  margin: 24px auto 50px;
  padding: 0 20px;
  font-size: 12px;
}

#pagetop .areaLink table {
  background-color: #fff;
}

#pagetop .areaLink a {
  color: var(--color-base);
}

/*******************************
  フッター
*******************************/
#footer {
  position: relative;
  background-color: var(--color-bg);
}