@charset "utf-8";
/*****************************************
toppage.css
トップページのみで使うスタイル
******************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
:root {
  --color-text: #222222;
  --color-blue01: #1096B9;
  --color-blue02: #D8F7FF;
  --color-blue03: #375D9A;
  --color-blue04: #63D4F1;
  --color-yellow01: #FEF4D4;
  --color-orange01: #E87400;
  --color-red01: #E83600;
  --color-gray01: #D0D0D0;
  --color-gray02: #B2B2B2;
  --shadow: 0 2px 2px rgba(0,0,0,0.16);
}

#bottomContent {
  position: relative;
}
#bottomContent #social { 
  max-width: 1120px!important;
  width: calc(100% - 30px);
  margin-bottom: 10px!important;
}

/* 波 */
#contents {
  position: relative;
}
#contents::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  background: url(/jobfind-pc/original/images/bg_wave_pc.svg) repeat-y top left/contain;
  pointer-events: none;
  z-index: 3;
}
@media screen and (max-width: 1149px){
  #contents::before {
    width: min(10vw,120px);
  }
}

#main .content {
  line-height: 1.625;
  max-width: 100%;
  font-size: 16px;
  color: var(--color-text);
}
#main .headContent a:hover {
  text-decoration: none!important;
}
#bottomContent .freeHead {
  padding-bottom: 38px;
}
#contents img {
  width: 100%;
  height: 100%;
}
a:visited,a:link,a:active,button {
  color: var(--color-text)!important;
}

.bg-grad {
  position: relative;
  background: linear-gradient(to right,  #F0F8F5 0%,#E3F7FF 100%);
}
.bg-grad::before {
  content: "";
  position: absolute;
  display: block;
  top: -1px;
  left: 0;
  width: 100%;
  height: 135px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 10%, 0% 100%);
  z-index: 2;
}
.bg-grad::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: #fff;
  clip-path: polygon(0 90%, 100% 0, 100% 100%, 0% 100%);
  z-index: 2;
}
.inner {
  position: relative;
  max-width: 1120px;
  width: calc(100% - 30px);
  margin: 0 auto;
  padding: 170px 0;
  z-index: 3;
}

/* 見出し */
.heading01 {
  position: relative;
  margin-bottom: 44px;
  font-weight: 700;
  text-align: center;
  z-index: 1;
}
.heading01 .heading01-en {
  font-size: 20px;
  color: var(--color-blue01);
}
.heading01 .heading01-ja {
  line-height: 1.25;
  margin-top: 11px;
  font-size: 40px;
}

/* contentsBox */
.contentsBox {
  padding: 37px 40px 60px;
  border-radius: 10px;
  background: rgba(255,255,255,.8);
}
.contentsBox.-blue {
  padding-bottom: 40px;
  background: rgba(225,236,245,.8);
}
.contentsBox-ttl {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}
.contentsBox-txt {
  margin-top: 26px;
  text-align: center;
}
.m_box {
  position: relative;
  max-width: 650px;
  margin: 27px auto 0;
}
.m_box::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
}
.m_box iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

@media screen and (max-width: 767px){
  #main .content {
    padding: 0!important;
  }

  /* 波 */
  #contents::before {
    width: 69px;
    background: url(/jobfind-pc/original/images/bg_wave_sp.png) repeat-y top left/contain;
    opacity: 0.6;
  }

  #bottomContent .freeHead {
    padding-bottom: 20px;
  }
  .bg-grad {
    background: linear-gradient(to right,  #F5FDFF 0%,#E3F7FF 100%);
  }
  .bg-grad::before {
    height: 40px;
  }
  .bg-grad::after {
    height: 40px;
  }
  .inner {
    padding: 65px 0 55px;
  }
  a:hover {
    text-decoration: none!important;
  }

  /* 見出し */
  .heading01 {
    margin-bottom: 25px;
  }
  .heading01 .heading01-en {
    font-size: 16px;
  }
  .heading01 .heading01-ja {
    line-height: 1.2;
    font-size: 30px;
  }

  /* contentsBox */
  .contentsBox {
    padding: 29px 15px 40px;
  }
  .contentsBox-ttl {
    font-size: 22px;
  }
  .m_box {
    margin: 17px auto 0;
  }
  .m_box iframe {
    border-radius: 5px;
  }

}

/*****************************************
QA式アコーディオン
******************************************/
/* アクセシビリティ対応 */
.js-accoBtn::after {
  content:"クリック・タップで開きます";
  position: absolute;
  width: 1px;
  height: 1px;
  left: 0;
  top: 0;
  clip: rect(1px, 1px, 1px, 1px);
}
.js-accoBtn.is-open::after {
  content:"クリック・タップで閉じます";
}

/*****************************************
モーダルウィンドウ
******************************************/
html.is-menu-open,
html.is-modal-open {
  overflow: hidden;
  width: 100%;
  height: 100%;
  scrollbar-gutter: stable;
}
.js-modal-btn {
  -webkit-tap-highlight-color: transparent;
}
.modal[hidden] {
  display: none !important;
}
.modal {
  position: fixed;
  display: flex;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: #fff;
  -webkit-overflow-scrolling: touch !important;
  z-index: 9999;
  visibility: hidden;
  pointer-events: none;
  transition: right .3s linear, visibility 0s linear .3s;
  backface-visibility: hidden;
}
.modal.is-open {
  right: 0;
  visibility: visible;
  pointer-events: auto;
  transition: right .3s linear, visibility 0s linear 0s;
  outline: none;
}
.modal-body {
  max-width: 600px;
  width: calc(100% - 40px);
  margin: auto;
  padding: 80px 0 100px;
  background: #fff;
  text-align: center;
}
.modal .modal-close--btn {
  position: relative;
  margin-top: 10px;
  padding: 25px 72px 25px 30px;
  border: none;
  font-size: 16px;
  font-weight: 700;
  background: none;
  cursor: pointer;
}
.modal .modal-close--btn span {
  word-break: keep-all;
}
.modal .modal-close--btn .close-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  width: 37px;
  height: 37px;
  margin: auto;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--color-orange01);
  transition: background-color .2s,border .2s;
}
.modal .modal-close--btn .close-icon::before,
.modal .modal-close--btn .close-icon::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 100px;
  background: #fff;
  transform: rotate(45deg);
  transition: background-color .2s;
}
.modal .modal-close--btn .close-icon::before {
  width: 17px;
  height: 3px;
}
.modal .modal-close--btn .close-icon::after {
  width: 3px;
  height: 17px;
}
.modal-close-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--color-orange01);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s,visibility 0.2s;
  z-index: 2;
  transition: background-color .2s,border .2s;
}
.modal.is-open .modal-close-icon {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal-close-icon::before,
.modal-close-icon::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 100px;
  background: #fff;
  transform: rotate(45deg);
  transition: background-color .2s;
}
.modal-close-icon::before {
  width: 22px;
  height: 4px;
}
.modal-close-icon::after {
  width: 4px;
  height: 22px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.modal-ttl {
  font-size: 18px;
  font-weight: 700;
}
.modal-img {
  margin: 30px auto 0;
}
.modal-txt {
  margin-top: 30px;
  text-align: left;
}

@media (any-hover: hover){
  .modal .modal-close--btn:hover .close-icon {
    border: 3px solid var(--color-orange01);
    background: #fff;
  }
  .modal .modal-close--btn:hover .close-icon::before,
  .modal .modal-close--btn:hover .close-icon::after {
    background: var(--color-orange01);
  }
  .modal-close-icon:hover {
    border: 3px solid var(--color-orange01);
    background: #fff;
  }
  .modal-close-icon:hover::before,
  .modal-close-icon:hover::after {
    background: var(--color-orange01);
  }
}
@media screen and (max-width: 767px){
  .modal {
    transition: right .2s linear, visibility 0s linear .2s;
  }
  .modal.is-open {
    transition: right .2s linear, visibility 0s linear 0s;
  }
  .modal-body {
    width: calc(100% - 110px);
    padding: 60px 0;
  }
  .modal .modal-close--btn {
    padding: 25px 72px 25px 30px;
  }
  .modal-close-icon {
    top: 6px;
    right: 8px;
    width: 52px;
    height: 52px;
  }
  .modal .modal-close--btn .close-icon {
    width: 31px;
    height: 31px;
    border: none;
  }
  .modal-img {
    margin: 18px auto 0;
  }
  .modal-txt {
    margin-top: 20px;
  }
}

/*****************************************
header
******************************************/
#original-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 6;
}
#original-header::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: #fff;
  background: linear-gradient(to top, rgba(255,255,255,0),rgba(255,255,255,0.8) 50%,rgba(255,255,255,0.9) 60%,rgba(255,255,255,0.95) 80%,#fff 100%);
  z-index: 4;
  pointer-events: none;
}
#original-header #h_wrapper {
  position: relative;
  display: flex;
  max-width: 100%;
  justify-content: space-between;
  padding: 30px min(3.31vw,47px) 0 min(5.217vw,60px);
  z-index: 5;
}
#original-header .header-logo {
  max-width: 173px;
}
#original-header div.header-logo {
  padding: 20px 10px;
}
#original-header .menu {
  z-index: 1;
}
#original-header .menu .menu-btn {
  display: none;
}
#original-header .menu .menu-lists {
  display: flex;
  margin-bottom: 18px;
}
#original-header .menu .menu-lists li {
  margin: 0 min(0.845vw,12px);
}
#original-header .menu .menu-lists a {
  display: block;
  padding: 3px 0;
  font-size: 16px;
  color: var(--text-text);
  transition: color 0.2s;
}
#original-header .menu .menu-lists a:hover {
  text-decoration: none!important;
}
@media (any-hover: hover){
  #original-header .menu .menu-lists a:hover {
    color: #0C819F!important;
    text-decoration: none!important;
  }
}

@media screen and (max-width: 1149px){
  #original-header {
    position: relative;
  }
  #original-header #h_wrapper {
    padding: 18px 70px 0 30px;
  }
  #original-header .header-logo {
    max-width: 130px;
    margin-right: auto;
    padding-bottom: 10px;
  }
  #original-header .menu .menu-btn {
    position: fixed;
    display: block;
    top: 3px;
    right: 5px;
    width: 58px;
    height: 58px;
    margin: 0 auto;
    border: 3px solid #fff;
    border-radius: 50%;
    background: rgba(16,150,185,0.7);
    z-index: 9999;
    transition: background-color 0.2s;
    cursor: pointer;
  }
  #original-header .menu .menu-btn span {
    content: '';
    position: absolute;
    display: block;
    width: 22px;
    height: 3px;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 100px;
    background: #fff;
    transition: all 0.2s;
  }
  #original-header .menu .menu-btn span:nth-of-type(1) {
    top: 34%;
  }
  #original-header .menu .menu-btn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
  }
  #original-header .menu .menu-btn span:nth-of-type(3) {
    bottom: 32%;
  }
  #original-header .menu {
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch !important;
  }
  #original-header .menu .menu-box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    margin: 0 auto;
    padding: 30px 34px;
    overflow: hidden;
    z-index: 999;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear .3s;
  }
  #original-header .menu.is-open .menu-box {
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
  #original-header .menu.is-open .menu-btn {
    background: #58B5CE;
  }
  #original-header .menu.is-open .menu-btn span:nth-of-type(1) {
    top: 49%;
    transform: rotate(45deg);
  }
  #original-header .menu.is-open .menu-btn span:nth-of-type(2) {
    opacity: 0;
  }
  #original-header .menu.is-open .menu-btn span:nth-of-type(3) {
    top: 49%;
    bottom: initial;
    transform: rotate(-45deg);
  }
  .menu-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity .3s ease;
  }
  #original-header .menu .menu-lists {
    position: absolute;
    display: block;
    top: 30px;
    left: 0;
    right: 0;
    width: calc(100% - 68px);
    max-height: 80vh;
    margin: auto;
    padding: 70px 20px 80px;
    border-radius: 10px;
    background: var(--color-blue02);
    transform: translateY(calc(-100% - 30px));
    transition: transform .3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    will-change: transform;
  }
  #original-header .menu.is-open .menu-bg {
    opacity: 1;
  }
  #original-header .menu.is-open .menu-lists {
    transform: translateY(0);
  }
  #original-header .menu .menu-lists li {
    margin: 0 10px;
  }
  #original-header .menu .menu-lists a {
    padding: 7px 0 8px;
    border-bottom: 1px solid #9CD9EA;
    font-weight: 700;
    background: url(/jobfind-pc/original/images/ico_arrow_nav_b.svg) no-repeat center right -3px/16px 12px;
  }
  #original-header .menu .menu-lists a:hover {
    text-decoration: none!important;
  }
}
@media screen and (max-width: 767px){
  header #h_wrapper {
    padding: 18px 70px 13px 41px;
  }
  #original-header::after {
    height: 84px;
  }
}

/*****************************************
KV
******************************************/
.kv-wrap {
  position: relative;
  padding-top: 60px;
  overflow: hidden;
}
.kv-wrap .kv {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
}
.kv-wrap .kv .kv-copy {
  line-height: 1.4;
  position: absolute;
  top: 16.4vw;
  left: 8.1vw;
  font-size: 3.511vw;
  font-weight: 900;
  color: var(--color-blue01);
  text-shadow: 2px 2px 4px #fff;
  z-index: 2;
}

/* slick */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  text-align: center;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track::before, .slick-track::after {
  content: "";
  display: table;
}
.slick-track::after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

/* スライダー一時停止 */
.slick-pause {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  margin-left: 4px;
  border: 1px solid var(--color-blue01);
  border-radius: 50%;
  background: #fff;
  transition: opacity 0.2s;
  cursor: pointer;
}
.slick-pause::before,
.slick-pause::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: -4px;
  right: 0;
  width: 2px;
  height: 8px;
  margin: auto;
  background: var(--color-blue01);
}
.slick-pause::after {
  left: 4px;
}
.slick-pause.is-paused::before {
  left: 2px;
  width: 6px;
  height: 8px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.slick-pause.is-paused::after {
  display: none;
}

/* スライダードット */
.kv-wrap .kv .kv-slick-control {
  position: absolute;
  top: 34.6vw;
  left: 8vw;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.kv-wrap .kv-slick-dots .slick-dots {
  position: relative;
  display: flex;
  justify-content: center;
}
.kv-wrap .kv-slick-dots .slick-dots li {
  font-size: 0;
  margin: 0 5px;
  height: 4px;
}
.kv-wrap .kv-slick-dots .slick-dots button {
  display: block;
  height: 4px;
  width: 30px;
  padding: 0;
  border: none;
  font-size: 0;
  background: var(--color-gray01);
  cursor: pointer;
  transition: background-color 0.4s;
}
.kv-wrap .kv-slick-dots .slick-dots .slick-active button {
  background: var(--color-blue04);
}
.kv-wrap .kv-nav {
  position: absolute;
  display: flex;
  align-items: end;
  top: clamp(-74px,-5.211vw,-60px);
  right: 4.254vw;
  max-height: min(100%,100dvh);
  height: 100vh;
  gap: 0.7vw;
  z-index: 1;
  text-align: center;
  pointer-events: none;
}
.kv-wrap .kv-nav-btn {
  width: calc((100% - 0.733vw) /2);
}
.kv-wrap .kv-nav a,
.kv-wrap .kv-nav .link-joblocation {
  line-height: 1.1818;
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(110px,12.417vw,149px);
  height: clamp(110px,12.417vw,149px);
  padding: 0 0 min(1.667vw,20px);
  border-radius: 50%;
  font-size: clamp( 18px ,1.833vw, 22px );
  font-weight: 700;
  color: #fff!important;
  background: url(/jobfind-pc/original/images/ico_arrow_nav.svg) no-repeat bottom clamp(20px,3vw,36px) center/31px 9px;
  background-color: var(--color-orange01);
  box-shadow: var(--shadow);
  transition: background-color 0.2s;
  pointer-events: all;
}
.kv-wrap .kv-nav .gpsObj {
  margin: 0;
}
.kv-wrap .kv-nav .gpsObj .locasma a:after {
  display: none;
}
@media (any-hover: hover) {
  .kv-wrap .kv-nav a:hover {
    background-color: var(--color-red01);
    text-decoration: none!important;
  }
  .kv-wrap .kv-nav .gpsObj .locasma a:hover,
  .kv-wrap .kv-nav .gpsObj .locasma a:active {
    opacity: 1;
  }
  .kv-wrap .kv-slick-dots .slick-dots button:hover {
    background: var(--color-blue04);
  }
  .slick-pause:hover {
      opacity: 0.7;
  }
}
@media screen and (max-width: 1149px){
  .kv-wrap {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px){
  .kv-wrap {
    margin-top: 0;
    padding-top: 0;
  }
  .kv-wrap .kv .kv-copy {
    line-height: 1.176;
    top: 58vw;
    left: 5.6vw;
    font-size: 34px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    z-index: 3;
  }

  /* スライダードット */
  .kv-wrap .kv .kv-slick-control {
    top: 96.2vw;
    left: 4.2vw;
    z-index: 3;
  }

  .kv-wrap .kv-nav {
    top: -10px;
    right: 10px;
    min-height: min(calc(100% + 30px),calc(100dvh - 100px));
    height: calc(100vh - 60px);
    gap: 2px;
    z-index: 4;
  }
  .kv-wrap .kv-nav-btn {
    width: calc((100% - 2px) /2);
  }
  .kv-wrap .kv-nav a,
  .kv-wrap .kv-nav .link-joblocation {
    line-height: 1.125;
    width: clamp(90px,24vw,120px);
    height: clamp(90px,24vw,120px);
    padding: 0 0 3.2vw;
    font-size: 16px;
    background: url(/jobfind-pc/original/images/ico_arrow_nav.svg) no-repeat bottom clamp(15px,4.533vw,28px) center/clamp(24px,6.4vw,37px) clamp(7px,1.867vw,10px),var(--color-orange01);
  }
}
@media screen and (max-width: 348px){
  .kv-wrap .kv-nav {
    right: 5px;
  }
  .kv-wrap .kv-nav a,
  .kv-wrap .kv-nav .link-joblocation {
    width: 80px;
    height: 80px;
    font-size: 15px;
  }
}

/*****************************************
KV下キャッチ
******************************************/
.catch-wrap {
  position: relative;
  margin-top: min(-11.826vw,-136px);
  padding: max(9.41vw,100px) 0 18.258vw;
  text-align: center;
  background: url(/jobfind-pc/original/images/bg_catch_pc.svg) no-repeat center top/cover;
}
.catch-wrap::after {
  content: "";
  position: absolute;
  display: block;
  bottom: -1vw;
  left: 0;
  width: 100%;
  height: 27.879vw;
  background: #fff;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0,rgba(255,255,255,0.4) 50%,rgba(255,255,255,0.9) 80%,#fff 100%);
  z-index: 1;
}
.catch-wrap .inner {
  padding: 0;
}
.catch-wrap .inner::before {
  content: "";
  position: absolute;
  display: block;
  top: max(-6.583vw,-79px);
  left: max(-9.25vw,-111px);
  width: min(46.083vw,553px);
  height: min(32.5vw,390px);
  background: url(/jobfind-pc/original/images/img_catch01_pc.png) no-repeat center center/contain;
}
.catch-wrap .inner::after {
  content: "";
  position: absolute;
  display: block;
  top: min(0.25vw,100px);
  right: max(-8.667vw,-104px);
  width: min(23.167vw,278px);
  height: min(20.833vw,250px);
  background: url(/jobfind-pc/original/images/img_catch02_pc.png) no-repeat center center/contain;
}
.catch-wrap .catch-txt {
  line-height: 1.7272;
  display: inline-block;
  padding-left: min(24vw,288px);
  font-size: clamp( 16px ,1.833vw, 22px );
  font-weight: 700;
  color: var(--color-blue03);
  text-align: left;
}
@media screen and (max-width: 1149px){
  .catch-wrap {
    padding: clamp(92px,9.41vw,100px) 0 18.258vw;
  }
}
@media screen and (max-width: 767px){
  .catch-wrap {
    margin-top: -16vw;
    padding: clamp(245px,65.867vw,280px) 0 270px;
    background: url(/jobfind-pc/original/images/bg_catch_sp.svg) no-repeat center top/cover;
  }
  .catch-wrap::after {
    height: 60vw;
  }
  .catch-wrap .inner::before {
    top: -201px;
    left: 50%;
    transform: translateX(calc(50% - 314px));
    width: 250px;
    height: 181px;
    background: url(/jobfind-pc/original/images/img_catch01_sp.png) no-repeat center center/contain;
  }
  .catch-wrap .inner::after {
    top: -176px;
    right: 50%;
    transform: translateX(calc(50% + 132px));
    width: 128px;
    height: 114px;
  }
  .catch-wrap .catch-txt {
    line-height: 1.88;
    padding-left: 32px;
    font-size: 17px;
  }
}

/*****************************************
求人検索
******************************************/
.top-search {
  position: relative;
  margin-top: max(-25.956vw,-368px);
}
.top-search .inner {
  padding-bottom: 13px;
}
.top-search .search-bnr {
  display: block;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  box-shadow: var(--shadow);
  transition: opacity 0.7s;
}

/* JOBロケボタン */
.top-search .gpsObj {
  margin: 60px auto 0;
}
.top-search .gpsObj .locasma a {
  color: #fff!important;
}

.top-search .search-box {
  margin-top: 60px;
  border-radius: 10px;
  background: rgba(240,240,240,.9);
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
  transition: background-color 0.2s;
}
.top-search .search-box+.search-box {
  margin-top: 20px;
}
.top-search .search-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 108px 40px 29px;
  border: none;
  font-size: 26px;
  font-weight: 700;
  background: none;
  white-space: nowrap;
  cursor: pointer;
}
.top-search .search-btn#searchBtn01 {
  background: url(/jobfind-pc/original/images/ico_area01.svg) no-repeat top 30px center/70px;
}
.top-search .search-btn#searchBtn02 {
  background: url(/jobfind-pc/original/images/ico_jobtype01.svg) no-repeat top 30px center/70px;
}
.top-search .search-btn .search-icon {
  position: relative;
  flex-shrink: 0;
  display: block;
  width: 37px;
  height: 37px;
  margin-top: 4px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--color-orange01);
  transition: background-color .2s,border .2s;
}
.top-search .search-btn .search-icon::before,
.top-search .search-btn .search-icon::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 3px;
  height: 17px;
  margin: auto;
  border-radius: 100px;
  background: #fff;
  transition: background-color .2s;
}
.top-search .search-btn .search-icon::after {
  height: 3px;
  width: 17px;
}
.top-search .search-btn.is-open .search-icon {
  border: 3px solid var(--color-orange01);
  background: #fff;
}
.top-search .search-btn.is-open .search-icon::before {
  display: none;
}
.top-search .search-btn.is-open .search-icon::after {
  background: var(--color-orange01);
}
.top-search .search-btn-wrap {
  display: none;
  padding-bottom: 50px;
}

/* 地域から求人を探す */
.top-search .area-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 940px;
  width: calc(100% - 80px);
  margin: 0 auto;
}
.top-search .area-lists>li {
  position: relative;
  width: calc((100% - 40px) / 3);
  border: 2px solid var(--color-blue01);
  border-radius: 10px;
  font-weight: 700;
  background-color: var(--color-blue01);
  transition: background-color 0.2s;
}
@media screen and (max-width: 1019px){
  .top-search .area-lists>li {
    position: relative;
    width: calc((100% - 20px) / 2);
  }
}
.top-search .area-btn,
.top-search .area-btn:visited {
  position: relative;
  display: block;
  width: 100%;
  padding: 17px 30px;
  border: none;
  font-size: 20px;
  font-weight: 700;
  color: #fff!important;
  background: none;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.top-search .area-btn::before {
  content: "";
  position: absolute;
  right: 14px;
  left: auto;
  top: 0;
  bottom: 0;
  width: 22px;
  height: 16px;
  margin: auto;
  background: url(/jobfind-pc/original/images/ico_arrow_area_w.svg) no-repeat center center/contain;
  transform: rotate(90deg);
}
.top-search a.area-btn::before {
  transform: rotate(0);
}
.top-search .area-lists>li:has(.area-btn.is-open) {
  background: #fff;
  border-radius: 10px 10px 0 0;
}
.top-search .area-btn.is-open {
  color: var(--color-text)!important;
}
.top-search .area-btn.is-open::before {
  transform: rotate(-90deg);
  background: url(/jobfind-pc/original/images/ico_arrow_area_b.svg) no-repeat center center/contain;
}
.top-search .area-panel {
  position: absolute;
  display: none;
  left: -2px;
  width: calc(100% + 4px);
  margin-top: -10px;
  padding: 10px 30px 23px;
  border: 2px solid var(--color-blue01);
  border-top: none;
  border-radius: 0 0 10px 10px;
  color: var(--color-blue01);
  background: #fff;
  z-index: 1;
}
.top-search .pref-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 35px;
}
.top-search .pref-list li {
  width: calc((100% - 35px) / 2);
}
.top-search .pref-list a {
  position: relative;
  display: block;
  padding: 4px 20px 4px 10px;
  transition: color 0.2s;
}
.top-search .area-btn.is-open+.area-panel a {
  color: var(--color-text)!important;
}
.top-search .pref-list a::after {
  content: "";
  position: absolute;
  display: block;
  left: auto;
  right: 0;
  top: 2px;
  bottom: 0;
  margin: auto;
  width: 18px;
  height: 14px;
  margin: auto;
  background: url(/jobfind-pc/original/images/ico_arrow_area_b.svg) no-repeat center center/contain;
}

/* 職種から求人を探す */
.top-search .jobtype-box {
  max-width: 1000px;
  width: calc(100% - 80px);
  margin: 0 auto;
  padding: 30px 30px 40px;
  border-radius: 10px;
  background: #fff;
}
.top-search .jobtype-box + .jobtype-box {
  margin-top: 20px;
}
.top-search .jobtype-box-ttl{
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.top-search .jobtype-btn a {
  line-height: 1.1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 70px;
  height: 100%;
  margin: 0 auto;
  padding: 5px 20px;
  border: 2px solid var(--color-blue01);
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #fff!important;
  background: var(--color-blue01);
  text-align: center;
  transition: color 0.2s,background-color 0.2s;
}
.top-search .jobtype-btn a:hover {
  text-decoration: none!important;
}
.top-search .jobtype-btn-large {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.top-search .jobtype-btn-large li {
  max-width: 500px;
  width: 100%;
}
.top-search .jobtype-btn-col3 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.top-search .jobtype-btn-col3 li {
  width: calc((100% - 40px) / 3)
}

@media (any-hover: hover) {
  .top-search .search-bnr:hover {
    opacity: 0.7;
  }
  .top-search .search-box:has(.search-btn:hover) {
    background: rgba(234,251,255,.9);
  }
  .top-search .search-btn:hover .search-icon {
    border: 3px solid var(--color-orange01);
    background: #fff;
  }
  .top-search .search-btn:hover .search-icon::before {
    background: var(--color-orange01);
  }
  .top-search .search-btn:hover .search-icon::after {
    background: var(--color-orange01);
  }
  .top-search .search-btn:hover.is-open .search-icon {
    border: 3px solid var(--color-orange01);
    background: #575050;
  }
  .top-search .search-btn.is-open:hover .search-icon {
    border: 3px solid #fff;
    background: var(--color-orange01);
  }
  .top-search .search-btn.is-open:hover .search-icon::before {
    background: #fff;
  }
  .top-search .search-btn.is-open:hover .search-icon::after {
    background: #fff;
  }
  .top-search .search-btn.is-open:hover.is-open .search-icon {
    border: 3px solid #fff;
    background: var(--color-orange01);
  }

  /* 地域から求人を探す */
  .top-search .area-lists>li:has(.area-btn:hover) {
    background: #fff;
  }
  .top-search .area-btn:hover {
    color: var(--color-blue01)!important;
    text-decoration: none!important;
  }
  .top-search .area-btn:hover::before {
    background: url(/jobfind-pc/original/images/ico_arrow_area_b.svg) no-repeat center center/contain;
  }
  .top-search .area-btn.is-open+.area-panel a:hover {
    color: var(--color-blue01)!important;
    text-decoration: none!important;
  }

  /* 職種から求人を探す */
  .top-search .jobtype-btn a:hover {
    color: var(--color-blue01)!important;
    background: #fff;
    text-decoration: none!important;
  }
}
@media screen and (max-width: 767px){
  .top-search {
    margin-top: -260px;
  }
  .top-search .inner {
    padding-bottom: 20px;
  }
  .top-search .search-bnr {
    max-width: 450px;
  }

  /* JOBロケボタン */
  .top-search .gpsObj {
    margin: 30px auto 0;
  }
  .top-search .gpsObj .locasma a {
    max-width: 100%;
  }

  .top-search .search-box {
    margin-top: 30px;
    box-shadow: none;
  }
  .top-search .search-btn {
    padding: 95px 40px 20px;
    font-size: 22px;
  }
  .top-search .search-btn#searchBtn01 {
    background: url(/jobfind-pc/original/images/ico_area01.svg) no-repeat top 20px center/70px;
  }
  .top-search .search-btn#searchBtn02 {
    background: url(/jobfind-pc/original/images/ico_jobtype01.svg) no-repeat top 20px center/70px;
  }
.top-search .search-btn-wrap {
  padding-bottom: 50px;
}

  /* 地域から求人を探す */
  .top-search .area-lists {
    display: block;
    width: calc(100% - 30px);
  }
  .top-search .area-lists>li {
    width: 100%;
  }
  .top-search .area-lists>li:has(.area-btn.is-open) {
    border-radius: 10px;
  }
  .top-search .area-lists>li+li {
    margin-top: 5px;
  }
  .top-search .area-btn,
  .top-search .area-btn:visited {
    padding: 11px 30px 13px;
    -webkit-tap-highlight-color: transparent;
  }
  .top-search .area-panel {
    position: static;
    width: 100%;
    margin-top: -10px;
    padding: 10px min(25px,6.667vw) 23px;
    border: none;
    background: none;
  }
  .top-search .pref-list {
    gap: 0 25px;
  }
  .top-search .pref-list li {
    width: calc((100% - 25px) / 2);
  }
  .top-search .pref-list a {
    color: var(--color-blue01)!important;
  }
  .top-search .pref-list a::after {
    right: 5px;
  }

  /* 職種から求人を探す */
  .top-search .jobtype-box {
    width: calc(100% - 30px);
    padding: 28px 20px 30px;
  }
  .top-search .jobtype-box + .jobtype-box {
    margin-top: 10px;
  }
  .top-search .jobtype-btn a {
    line-height: 1;
    min-height: 60px;
    padding: 5px 10px;
  }
  .top-search .jobtype-btn-large {
    display: block;
  }
  .top-search .jobtype-btn-large li {
    max-width: 100%;
  }
  .top-search .jobtype-btn-col3 {
    display: block;
  }
  .top-search .jobtype-btn-col3 li {
    width: 100%;
  }
  .top-search .jobtype-btn-col3 li+li {
    margin-top: 10px;
  }
}

/*****************************************
パッケージルートセールスとは
******************************************/
.deco-hidden {
  overflow: hidden;
}
.top-about {
  position: relative;
}
.top-about .heading01 {
  margin-bottom: 34px;
}
.top-about .about-txt {
  text-align: center;
}
.top-about .contentsBox {
  margin-top: 36px;
}
.top-about section:has(.contentsBox)+section:has(.contentsBox) .contentsBox {
  margin-top: 20px;
}

/* 1日の流れ */
.top-about .contentsBox:has(.flow) {
  padding-bottom: 54px;
}
.top-about .flow {
  position: relative;
  margin-top: 28px;
}
.top-about .flow-line {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 4px;
  height: calc(100% - 200px);
  background: var(--color-gray02);
  transform: translateX(-50%);
}
.top-about .flow-lists {
  position: relative;
}
.top-about .flow-lists-item {
  position: relative;
  margin-top: 80px;
  width: calc(50% + 21px);
}
.top-about .flow-lists-item.left {
  text-align: right;
}
.top-about .flow-lists-item.right {
  margin-left: calc(50% - 21px);
}
.top-about .flow-lists-item.right::before {
  left: 0;
}
.top-about .flow-lists-item.right::before {
  left: 0;
}
.top-about .flow-lists-item:nth-of-type(1) {
  margin-top: 0;
}
.top-about .flow-lists-item:nth-of-type(3) {
  margin-top: -92px;
}
.top-about .flow-lists-item:nth-of-type(4) {
  margin-top: -93px;
}
.top-about .flow-lists-txt {
  line-height: 1.294;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
}
.top-about .flow-lists-item.left .flow-lists-txt {
  flex-direction: row-reverse;
}
.top-about .flow-time {
  line-height: 1;
  display: inline-block;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  color: #fff;
  margin-left: 15px;
  padding-top: 6px;
  border-radius: 50%;
  font-size: 27px;
  font-weight: 700;
  background: var(--color-blue01);
  text-align: center;
}
.top-about .flow-lists-item.right .flow-time {
  margin-left: 0;
  margin-right: 15px;
}
.top-about .flow-img {
  position: relative;
  max-width: 250px;
  width: 100%;
  margin-top: 8px;
  margin-right: 57px;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.top-about .flow-lists-item.right .flow-img {
  margin-right: 0;
  margin-left: 57px;
}
.top-about .flow-img img {
  border-radius: 10px;
}
.top-about .flow-btn {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-orange01);
  color: #fff;
  border: 3px solid #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background-color .2s,border .2s;
}
.top-about .flow-lists-item.right .flow-btn {
  left: auto;
  right: -30px;
}
.top-about .flow-btn::before,
.top-about .flow-btn::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 3px;
  height: 21px;
  margin: auto;
  border-radius: 100px;
  background: #fff;
  transition: background-color .2s;
}
.top-about .flow-btn::after {
  height: 3px;
  width: 21px;
}

/* モーダル */
.top-about .modal-img img {
  border-radius: 10px;
}

/* ループスライダー */
.deco-slider-content {
  position: relative;
  margin-top: -228px;
  margin-bottom: 30px;
  transform-origin: bottom center;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}
.deco-slider-content-inner {
  width: 100%;
  height: 200px;
  position: relative;
}
.deco-slider {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}
.deco-slider .slick-track {
  display: flex;
  border-bottom: 17px solid var(--color-blue04);
}
.deco-slider .slick-list {
  overflow: visible;
  height: 100%;
}
.deco-slider .slick-track {
  height: 100%;
}
.deco-slider .slick-track img {
  height: 100%;
  object-fit: cover;
}
.deco-slider img {
  height: 100% !important;
  width: auto !important;
  max-width: none !important;
  object-fit: cover;
  display: block;
}

@media (any-hover: hover) {
  .top-about .flow-img:hover {
    opacity: 0.7;
  }
  .top-about .flow-img:hover .flow-btn {
    border: 3px solid var(--color-orange01);
    background: #fff;
  }
  .top-about .flow-img:hover .flow-btn::before {
    background: var(--color-orange01);
  }
  .top-about .flow-img:hover .flow-btn::after {
    background: var(--color-orange01);
  }
  .top-about .flow-img:hover.is-open .flow-btn {
    border: 3px solid var(--color-orange01);
    background: #575050;
  }
}
@media screen and (max-width: 767px){
  .top-about .inner {
    padding-bottom: 70px;
  }
  .top-about .heading01 {
    margin-bottom: 23px;
  }
  .top-about .about-txt {
    line-height: 1.75;
    width: calc(100% - 110px);
    margin: 0 auto;
    text-align: left;
  }
  .top-about .contentsBox {
    margin-top: 27px;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 1日の流れ */
  .top-about .contentsBox:has(.flow) {
    padding-bottom: 35px;
  }
  .top-about .flow {
    margin-top: 18px;
  }
  .top-about .flow-line {
    top: 20px;
    height: calc(100% - 112px);
  }
  .top-about .flow-lists-item {
    width: calc(50% + 15px);
    margin-top: 70px;
  }
  .top-about .flow-lists-item.right {
    margin-left: calc(50% - 15px);
  }
  .flow-txt {
    font-size: 17px;
  }
  .top-about .flow-lists-item:nth-of-type(2) .flow-txt,
  .top-about .flow-lists-item:nth-of-type(6) .flow-txt {
    order: 2;
    margin-top: 3px;
  }
  .top-about .flow-lists-item:nth-of-type(2) .flow-time,
  .top-about .flow-lists-item:nth-of-type(6) .flow-time {
    order: 1;
    margin-left: auto;
  }
  .top-about .flow-lists-item:nth-of-type(3) {
    margin-top: -17px;
  }
  .top-about .flow-lists-item:nth-of-type(4) {
    margin-top: -16px;
  }
  .top-about .flow-lists-item:nth-of-type(5) {
    margin-top: 64px;
  }
  .top-about .flow-lists-item:nth-of-type(6) {
    margin-top: 62px;
  }
  .top-about .flow-lists-txt {
    flex-wrap: wrap;
  }
  .top-about .flow-time {
    width: 30px;
    height: 30px;
    margin-left: 14px;
    padding-top: 4px;
    font-size: 19px;
  }
  .top-about .flow-lists-item.right .flow-time {
    margin-left: 0;
    margin-right: 14px;
  }
  .top-about .flow-img {
    max-width: 118px;
    margin-top: 6px;
    margin-right: 45px;
  }
  .top-about .flow-lists-item.right .flow-img {
    margin-right: 0;
    margin-left: 45px;
  }
  .top-about .flow-btn {
    top: -7px;
    left: auto;
    right: -8px;
    width: 45px;
    height: 45px;
  }
  .top-about .flow-lists-item.right .flow-btn {
    left: auto;
    right: -8px;
  }

  /* ループスライダー */
  .deco-slider-content {
    margin-top: -88px;
    margin-bottom: 10px;
  }
  .deco-slider-content-inner {
    height: 88px;
  }
  .deco-slider .slick-track {
    border-bottom: 8px solid var(--color-blue04);
  }
}
@media screen and (max-width: 368px){
  .flow-txt {
    font-size: 14px;
  }
  .top-about .flow-time {
    margin-left: 8px;
  }
  .top-about .flow-lists-item.right .flow-time {
    margin-right: 8px;
  }
  .top-about .flow-img {
    margin-right: 34px;
  }
  .top-about .flow-lists-item.right .flow-img {
    margin-left: 34px;
  }
}

/*****************************************
働くメリット
******************************************/
.top-merit .inner {
  padding-bottom: 27px;
}

.top-merit .merit-lists {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: min(1.667vw,20px);
}
.top-merit .merit-lists li {
  display: flex;
  flex-direction: column;
  max-width: calc((100% - (min(1.667vw,20px)*3))/4);
  width: 100%;
}
.top-merit .merit-lists li button {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 16px 12px;
  border: 2px solid var(--color-gray01);
  border-radius: 10px;
  color: var(--color-text);
  background: rgba(255,255,255,.9);
  text-align: center;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
.top-merit .merit-lists .merit-lists--ttl {
  line-height: 1.27;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  flex-grow: 1;
  width: 100%;
  min-width: 0;
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
.top-merit .merit-lists .merit-lists--img {
  max-width: 120px;
  width: 100%;
  margin: 3px auto 0;
}
.top-merit .merit-lists .merit-lists--text {
  display: flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  margin: 11px auto 0;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.top-merit .merit-lists .merit-lists--plus {
  position: relative;
  flex-shrink: 0;
  width: 37px;
  height: 37px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--color-orange01);
  transition: background-color .2s,border .2s;
}
.top-merit .merit-lists .merit-lists--plus::before,
.top-merit .merit-lists .merit-lists--plus::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 100px;
  background: #fff;
  transition: background-color .2s;
}
.top-merit .merit-lists .merit-lists--plus::before {
  width: 17px;
  height: 3px;
}
.top-merit .merit-lists .merit-lists--plus::after {
  width: 3px;
  height: 17px;
}
.top-merit .modal-body .modal-img {
  max-width: 120px;
}

@media (any-hover: hover) {
  .top-merit .merit-lists li button:hover {
    background: rgba(234,251,255,.9);
    text-decoration: none!important;
  }
  .top-merit .merit-lists li button:hover .merit-lists--plus {
    border: 3px solid var(--color-orange01);
    background: #fff;
  }
  .top-merit .merit-lists li button:hover .merit-lists--plus::before,
  .top-merit .merit-lists li button:hover .merit-lists--plus::after {
    background: var(--color-orange01);
  }
}
@media screen and (max-width: 767px){
  .top-merit .inner {
    padding-bottom: 65px;
  }

  .top-merit .merit-lists {
    gap: 11px;
  }
  .top-merit .merit-lists li {
    max-width: calc((100% - 11px)/2);
  }
  .top-merit .merit-lists li button {
    padding: 15px 10px 12px;
  }
  .top-merit .merit-lists .merit-lists--ttl {
    font-size: 17px;
  }
  .top-merit .merit-lists .merit-lists--img {
    max-width: 75px;
    margin: 2px auto 0;
  }
  .top-merit .merit-lists .merit-lists--text {
    margin-top: 0;
  }
  .top-merit .merit-lists .merit-lists--plus {
    width: 31px;
    height: 31px;
    border: none;
  }

}

/*****************************************
人材育成について
******************************************/
.top-learning .inner {
  padding-bottom: 70px;
}
#learning.bg-grad::after {
  bottom: -200px;
  height: 230px;
  clip-path: polygon(0 53%, 100% 0, 100% 100%, 0% 100%);
}
.top-learning .heading01 {
  margin-bottom: 34px;
}
.top-learning .learning-lists-wrap {
  padding: 20px;
  border-radius: 10px;
  background: rgba(213,230,241,.9);
}

/* フローナビ追従 */
.top-learning .learning-flow {
  display: none;
}

.top-learning .learning-lists {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.top-learning .learning-lists li {
  display: flex;
  padding: 30px min(3.75vw,45px);
  border-radius: 10px;
  background: #fff;
}
.top-learning .learning-lists li:nth-of-type(2) {
  background: #E6FAFF;
}
.top-learning .learning-lists li:nth-of-type(3) {
  background: #D5F6FF;
}
.top-learning .learning-circle {
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(100px,10.333vw,124px);
  height: clamp(100px,10.333vw,124px);
  border: 2px solid var(--color-blue01);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-blue01);
  background: #fff;
  text-align: center;
  z-index: 1;
}
.top-learning .learning-img {
  flex-shrink: 0;
  width: 250px;
  margin-left: -14px;
}
#contents .top-learning .learning-img img {
  height: auto;
  border-radius: 10px;
}
.top-learning .learning-txt-wrap {
  margin-left: min(2.5vw,30px);
}
.top-learning .learning-ttl {
  color: #375D9A;
  font-size: 20px;
  font-weight: 700;
}
.top-learning .learning-txt {
  margin-top: 2px;
}
.top-learning .learning-btn {
  display: none;
}

@media screen and (max-width: 767px){
  .top-learning .inner {
    padding-bottom: 50px;
  }
  #learning.bg-grad::after {
    bottom: -90px;
    height: 90px;
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0% 100%);
  }
  .top-learning .learning-lists-wrap {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 20px 40px 20px;
  }

  /* ステップ */
  .top-learning .learning-flow {
    line-height: 1;
    position: sticky;
    display: block;
    top: 20px;
    left: 0;
    align-self: flex-start;
    flex-shrink: 0;
    min-width: 65px;
    margin-left: -40px;
    background: var(--color-yellow01);
    padding: 17px 10px;
    border-radius: 0 10px 10px 0;
  }
  .top-learning .learning-flow::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 20px;
    width: 2px;
    height: 70%;
    background: var(--color-gray02);
  }
  .top-learning .learning-flow li {
    position: relative;
    padding-left: 26px;
    color: var(--color-gray02);
    writing-mode: vertical-rl;
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
    transition: color 0.2s;
  }
  .top-learning .learning-flow li:nth-of-type(2) {
    margin-top: 40px;
  }
  .top-learning .learning-flow li:nth-of-type(3) {
    margin-top: 29px;
  }
  .top-learning .learning-flow li::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    bottom: 0;
    width: 12px;
    height: 12px;
    margin: auto;
    border-radius: 50%;
    background: var(--color-gray02);
    transition: background-color 0.2s;
  }
  .top-learning .learning-flow li.is-active {
    color: var(--color-text);
  }
  .top-learning .learning-flow li.is-active::before {
    background: var(--color-blue01);
  }
  .top-learning .learning-lists {
    flex: 1;
    gap: 11px;
  }
  .top-learning .learning-lists li {
    position: relative;
    display: block;
    padding: 20px 20px 78px;
  }
  .top-learning .learning-circle {
    display: none;
  }
  .top-learning .learning-img {
    width: 100%;
    margin-left: 0;
  }
  .top-learning .learning-txt-wrap {
    margin-left: 0;
  }
  .top-learning .learning-ttl {
    line-height: 1.444;
    margin-top: 19px;
    font-size: 18px;
    text-align: center;
  }
  .top-learning .learning-txt {
    margin-top: 10px;
  }
  .top-learning .learning-btn {
    position: absolute;
    display: block;
    width: 100%;
    bottom: 6px;
    left: 50%;
    transform: translate(-50%, 0);
    margin: 0 auto;
    padding: 20px 41px 20px 10px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    background: none;
    cursor: pointer;
  }
  .top-learning .learning-btn-txt {
    white-space: nowrap;
  }
  .top-learning .learning-btn .learning-btn-icon {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    right: calc((100% - 5em - 47px)/2);
    width: 37px;
    height: 37px;
    margin: auto;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--color-orange01);
  }
  .top-learning .learning-btn .learning-btn-icon::before,
  .top-learning .learning-btn .learning-btn-icon::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 100px;
    background: #fff;
    transition: transform 0.2s;
  }
  .top-learning .learning-btn .learning-btn-icon::before {
    width: 17px;
    height: 3px;
  }
  .top-learning .learning-btn .learning-btn-icon::after {
    width: 3px;
    height: 17px;
  }
  .top-learning .learning-btn[aria-expanded="true"] .learning-btn-icon {
    right: calc((100% - 3em - 47px)/2);
  }
  .top-learning .learning-btn[aria-expanded="true"] .learning-btn-icon::before {
    transform: rotate(45deg);
  }
  .top-learning .learning-btn[aria-expanded="true"] .learning-btn-icon::after {
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) and (max-height: 430px){
  .top-learning .learning-flow {
    top: 12px;
    padding: 12px 10px;
  }
  .top-learning .learning-flow::before {
    top: 28px;
    left: 17px;
  }
  .top-learning .learning-flow li {
    font-size: 12px;
  }
  .top-learning .learning-flow li:nth-of-type(2) {
    margin-top: 18px;
  }
  .top-learning .learning-flow li:nth-of-type(3) {
    margin-top: 18px;
  }
  .top-learning .learning-flow li::before {
    left: 3px;
    width: 10px;
    height: 10px;
  }
}

/*****************************************
スタッフインタビュー
******************************************/
.top-intv {
  position: relative;
  overflow: hidden;
}
#intv::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to right, #EFF8F5 0%, #E4F7FF 100%);
}
.top-intv .inner {
  padding-bottom: 25px;
}
.top-intv section:has(.intv-sec)+section:has(.intv-sec) .intv-sec {
  margin-top: 77px;
}
.top-intv .intv-sec-ttl {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}
.top-intv .intv-lists {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: min(1.667vw,20px);
  margin-top: 26px;
}
.top-intv .intv-lists li {
  display: flex;
  flex-direction: column;
  max-width: 265px;
}
.top-intv .intv-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px 20px 22px;
  border: none;
  border-radius: 10px;
  background: #F0F0F0;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  -webkit-appearance: none;
  appearance: none;
  transition: background-color 0.2s;
}
.top-intv .intv-lists-txt {
  line-height: 1.5;
  flex-grow: 1;
  margin-top: 10px;
}
.top-intv .intv-lists-name {
  position: relative;
  margin-top: 22px;
  font-size: 14px;
}
.top-intv .intv-lists-name::before {
  content: "";
  position: absolute;
  display: block;
  top: -12px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--color-blue01);
}
.top-intv .intv-lists-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  width: 100%;
  min-width: 0;
  margin: 0;
  gap: 4px;
  margin-top: 15px;
}
.top-intv .intv-lists-icon {
  position: relative;
  display: block;
  width: 37px;
  height: 37px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--color-orange01);
  transition: background-color .2s,border .2s;
}
.top-intv .intv-lists-icon::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 3px;
  height: 17px;
  margin: auto;
  border-radius: 100px;
  background: #fff;
  transition: background-color .2s;
}
.top-intv .intv-lists-icon::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  width: 17px;
  margin: auto;
  border-radius: 100px;
  background: #fff;
  transition: background-color .2s;
}

/* インタビューモーダル */
.top-intv .modal-body {
  max-width: 840px;
}
.top-intv .intv-hero-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 440px;
  text-align: left;
}
.top-intv .intv-hero-txt-wrap {
  margin-top: 5px;
  z-index: 1;
}
.top-intv .intv-hero-txt-wrap .intv-hero-txt {
  line-height: 1.33;
  font-size: 30px;
  font-weight: 700;
}
.top-intv .intv-hero-txt-wrap .intv-hero-name {
  position: relative;
  margin-top: 42px;
  font-weight: 700;
}
.top-intv .intv-hero-txt-wrap .intv-hero-name::before {
  content: "";
  position: absolute;
  display: block;
  top: -21px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--color-blue01);
}
.top-intv .intv-hero-img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  max-width: 440px;
  width: 100%;
  margin: auto;
}
.top-intv .intv-contents-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  text-align: left;
}
.top-intv .intv-contents-wrap.reverse {
  flex-direction: row-reverse;
}
.top-intv .intv-contents-wrap+.intv-contents-wrap {
  margin-top: 60px;
}
.top-intv .intv-img {
  flex-shrink: 0;
  width: 300px;
  height: 300px;
}
.top-intv .intv-contents-wrap:has(.intv-img) .intv-txt-wrap {
  margin-left: 40px;
}
.top-intv .intv-contents-wrap:has(.intv-img).reverse .intv-txt-wrap {
  margin-left: 0;
  margin-right: 40px;
}
.top-intv .intv-txt-wrap .intv-ttl01 {
  line-height: 1.333;
  color: var(--color-blue01);
  font-size: 18px;
  font-weight: 700;
}
.top-intv .intv-txt-wrap .intv-ttl02 {
  line-height: 1.333;
  margin-top: 10px;
  font-size: 24px;
  font-weight: 700;
}
.top-intv .intv-txt-wrap .intv-txt {
  margin-top: 11px;
}
.top-intv .intv-holidays {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 75px;
  padding: 45px 60px 42px 65px;
  border-radius: 10px;
  background: var(--color-yellow01);
  text-align: left;
}
.top-intv .holidays-img {
  position: relative;
  flex-shrink: 0;
  width: 300px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  transform: rotate(-3deg);
}
.top-intv .holidays-img::before {
  content: "";
  position: absolute;
  display: block;
  top: -31px;
  left: -39px;
  width: 232px;
  height: 39px;
  background: url(/jobfind-pc/original/images/img_holidays01.png) no-repeat center center/contain;
  transform: rotate(-14deg);
}
.top-intv .holidays-txt-wrap {
  position: relative;
  margin-top: 14px;
  margin-left: 50px;
}
.top-intv .holidays-txt-wrap::before,
.top-intv .holidays-txt-wrap::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  pointer-events: none;
}
.top-intv .holidays-txt-wrap::before {
  top: -34px;
  left: -25px;
  border-top: 3px solid var(--color-gray01);
  border-left: 3px solid var(--color-gray01);
}
.top-intv .holidays-txt-wrap::after {
  right: -10px;
  bottom: -36px;
  border-right: 3px solid var(--color-gray01);
  border-bottom: 3px solid var(--color-gray01);
}
.top-intv .holidays-txt-wrap .holidays-ttl {
  color: var(--color-blue01);
  font-size: 20px;
  font-weight: 700;
}
.top-intv .holidays-txt-wrap .holidays-txt {
  margin-top: 8px;
}

.top-intv .members {
  margin-top: 100px;
  padding: 40px 0;
  border-radius: 10px;
  background: #F0F0F0;
  text-align: center;
}
.top-intv .members .members-ttl {
  margin-bottom: 17px;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-blue03);
}
.top-intv .members .swiper {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  padding: 0 30px;
}
.top-intv .members .swiper-slide {
  width: 220px;
}
.top-intv .members .swiper-slide button {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 9px 10px;
  border: none;
  border-radius: 10px;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  transition: background-color 0.2s;
  cursor: pointer;
}
.top-intv .members-lists-img {
  flex-shrink: 0;
  width: 61px;
}
.top-intv .members-lists-txt {
  width: calc(100% - 67px);
  margin-left: 6px;
}
.top-intv .members-lists-name {
  margin-top: 7px;
  padding-top: 7px;
  border-top: 2px solid var(--color-blue01);
}
.top-intv .members .members-swiper-control {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}
.top-intv .members .swiper-scrollbar {
  position: static;
  max-width: 437px;
  width: calc(100% - (28px + 28px + 10px));
  height: 4px;
  margin-right: 10px;
  background: #fff;
  border-radius: 100px;
}
.top-intv .members .swiper-scrollbar .swiper-scrollbar-drag {
  background: #77C5DA;
  border-radius: 100px;
  cursor: pointer;
}
.top-intv .members .swiper-button-prev,
.top-intv .members .swiper-button-next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 28px;
  height: 28px;
  margin-top: 0;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--color-gray02);
  flex-shrink: 0;
  transition: background-color 0.2s;
}
.top-intv .swiper-navigation-icon {
  display: none;
}
.top-intv .members .swiper-button-next {
  margin-left: 1px;
}
.top-intv .members .swiper-button-prev::after,
.top-intv .members .swiper-button-next::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 1px;
  right: 0;
  width: 10px;
  height: 6px;
  margin: auto;
  background: url(/jobfind-pc/original/images/ico_arrow_w.svg)no-repeat center center/contain;
  transform: rotate(90deg);
}
.top-intv .members .swiper-button-prev::after {
  right: 2px;
  transform: rotate(-90deg);
}
.top-intv .members .swiper-button-prev.swiper-button-disabled,
.top-intv .members .swiper-button-next.swiper-button-disabled {
  opacity: 1;
  background: #cfcfcf;
}
.top-intv .modal .modal-close--btn {
  margin-top: 66px;
}

/* 動画で見る */
.top-intv .contentsBox {
  margin-top: 80px;
}
.top-intv .movie-points {
  max-width: 600px;
  margin: 24px auto 0;
  padding: 19px 10px 24px;
  border-radius: 100px;
  font-weight: 700;
  background: #fff;
  text-align: center;
}
.top-intv .movie-points-lists {
  display: flex;
  justify-content: center;
}
.top-intv .movie-points-lists li {
  line-height: 1.875;
  position: relative;
  margin: 0 16px;
}
.top-intv .movie-points-lists li::before{
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 5px;
  margin-bottom: 3px;
  border-radius: 50%;
  background: var(--color-blue01);
  vertical-align: middle;
}

@media (any-hover: hover) {
  .top-intv .intv-card:hover {
    background: #FEF4D4;
  }
  .top-intv .intv-card:hover .intv-lists-icon {
    background: #fff;
    border: 3px solid var(--color-orange01);
  }
  .top-intv .intv-card:hover .intv-lists-icon::before,
  .top-intv .intv-card:hover .intv-lists-icon::after {
    background: var(--color-orange01);
  }

  /* インタビューモーダル */
  .top-intv .members .swiper-slide button:hover {
    background: var(--color-yellow01);
  }
  .top-intv .members .swiper-button-prev:hover,
  .top-intv .members .swiper-button-next:hover {
    background: var(--color-blue01);
  }
}
@media screen and (max-width: 767px){
  #intv::before {
    height: 40px;
  }
  .top-intv .inner {
    width: 100%;
    padding-bottom: 55px;
  }
  .top-intv section:has(.intv-sec)+section:has(.intv-sec) .intv-sec {
    margin-top: 59px;
  }
  .top-intv .intv-sec-ttl {
    font-size: 20px;
  }
  .intv-slick-wrap {
    display: flex;
    flex-direction: column-reverse;
  }
  .top-intv .intv-lists {
    position: relative;
    margin-top: 16px;
  }
  .top-intv .intv-lists .slick-list {
    margin: 0 -10px;
  }
  .top-intv .intv-lists .slick-track {
    display: flex;
  }
  .top-intv .intv-lists .slick-slide {
    height: auto;
  }
  .top-intv .intv-lists .slick-slide > div {
    height: 100%;
  }
  .top-intv .intv-lists li {
    display: flex;
    width: 265px;
    max-width: none;
    height: auto;
    margin: 0 10px;
  }
  .top-intv .intv-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }
  .top-intv .intv-lists .slick-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    border: 4px solid #fff;
    border-radius: 50%;
    font-size: 0;
    background: var(--color-gray02);
    cursor: pointer;
    transition: opacity 0.2s,visibility 0.2s;
    z-index: 1;
  }
  .top-intv .intv-lists .slick-prev {
    left: 10px;
  }
  .top-intv .intv-lists .slick-next {
    right: 10px;
  }
  .top-intv .intv-lists .slick-arrow.slick-disabled {
    opacity: 0;
    visibility: hidden;
  }
  .top-intv .intv-lists .slick-arrow::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 3px;
    right: 0;
    width: 19px;
    height: 10px;
    margin: auto;
    background: url(/jobfind-pc/original/images/ico_arrow_w.svg) no-repeat center center /contain;
    transform: rotate(90deg);
  }
  .top-intv .intv-lists .slick-prev::before {
    left: 0;
    right: 3px;
    transform: rotate(-90deg);
  }
  .top-intv .intv-slick-dots .slick_dots {
    display: flex;
    justify-content: center;
    margin-top: 8px;
  }
  .top-intv .intv-slick-dots button {
    width: 14px;
    height: 14px;
    margin: 0 6px;
    border: 0;
    border-radius: 50%;
    font-size: 0;
    background: var(--color-gray01);
    cursor: pointer;
    transition: background-color 0.2s;
  }
  .top-intv .intv-slick-dots li.slick-active button {
    background: var(--color-blue01);
  }

  /* インタビューモーダル */
  .top-intv .modal-body {
    width: calc(100% - 60px);
  }
  .top-intv .intv-hero-wrap {
    flex-direction: column-reverse;
    height: auto;
  }
  .top-intv .intv-hero-txt-wrap {
    width: 100%;
    margin-top: 0;
  }
  .top-intv .intv-hero-txt-wrap .intv-hero-txt {
    font-size: 24px;
    margin-top: 22px;
  }
  .top-intv .intv-hero-txt-wrap .intv-hero-name::before {
    width: 100px;
  }
  .top-intv .intv-hero-img {
    position: static;
  }
  .top-intv .intv-contents-wrap {
    margin-top: 30px;
    flex-direction: column-reverse;
  }
  .top-intv .intv-contents-wrap.reverse {
    flex-direction: column-reverse;
  }
  .top-intv .intv-contents-wrap+.intv-contents-wrap {
    margin-top: 40px;
  }
  .top-intv .intv-img {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
  #contents .top-intv .intv-img img {
    width: 100%;
    height: 70.7vw;
    object-fit: cover;
  }

  /* インタビューモーダル内写真ポジション調整 */
  .top-intv #intv-modal01 .intv-img img {
    object-position: center;
  }
  .top-intv #intv-modal01 .intv-contents-wrap.reverse .intv-img img {
    object-position: center top;
  }
  .top-intv .intv-contents-wrap:has(.intv-img) .intv-txt-wrap {
    margin-left: 0;
  }
  .top-intv .intv-contents-wrap:has(.intv-img).reverse .intv-txt-wrap {
    margin-right: 0;
  }
  .top-intv .intv-txt-wrap .intv-ttl02 {
    line-height: 1.5;
    margin-top: 9px;
    font-size: 22px;
  }
  .top-intv .intv-holidays {
    position: relative;
    display: block;
    margin-top: 69px;
    padding: 326px 43px 50px;
  }
  .top-intv .holidays-img {
    position: absolute;
    top: 42px;
    left: -7px;
    right: 0;
    margin: auto;
    max-width: 334px;
    width: 105%;
  }
  .top-intv .holidays-img::before {
    top: -41px;
    left: -5px;
    width: 230px;
    height: 39px;
  }
  .top-intv .holidays-txt-wrap {
    margin-left: 0;
  }
  .top-intv .holidays-txt-wrap::before,
  .top-intv .holidays-txt-wrap::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    pointer-events: none;
  }
  .top-intv .holidays-txt-wrap::before {
    top: -29px;
    left: -23px;
  }
  .top-intv .holidays-txt-wrap::after {
    right: -23px;
    bottom: -30px;
  }

  .top-intv .members {
    margin-top: 80px;
    padding: 29px 0;
  }
  .top-intv .members .swiper {
    padding: 0 25px;
  }
  .top-intv .members .swiper-slide {
    width: 220px;
  }
  .top-intv .members .members-swiper-control {
    flex-wrap: wrap;
    gap: 0 32px;
    margin-top: 17px;
  }
  .top-intv .members .swiper-scrollbar {
    max-width: 100%;
    width: 100%;
    height: 5px;
    margin-right: 0;
  }
  .top-intv .members .swiper-button-prev,
  .top-intv .members .swiper-button-next {
    width: 32px;
    height: 32px;
    margin-top: 10px;
  }
  .top-intv .modal .modal-close--btn {
    padding-right: 80px;
  }
  .top-intv .modal .modal-close--btn .close-icon {
    right: 38px;
  }

  /* 動画で見る */
  .top-intv .contentsBox {
    width: calc(100% - 30px);
    margin: 60px auto 0;
  }
  .top-intv .movie-points {
    max-width: 300px;
    width: 100%;
    margin: 19px auto 0;
    padding: 13px 19px 10px;
  }
  .top-intv .movie-points-lists {
    flex-wrap: wrap;
  }
  .top-intv .movie-points-lists li {
    line-height: 1.875;
    margin: 0;
    text-align: left;
  }
  .top-intv .movie-points-lists li:nth-of-type(odd) {
    width: 130px;
    margin-right: 10px;
  }
  .top-intv .movie-points-txt span::before{
    margin-bottom: 0;
  }
  .top-intv .movie-points-txt {
    line-height: 2.2;
  }
}

/*****************************************
よくある質問
******************************************/
.top-faq .inner {
  padding: 170px 0 180px;
}
.top-faq .faq-wrap {
  position: relative;
  margin-top: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,.9);
  transition: background-color 0.2s;
}
.top-faq .faq-wrap:has(.is-open) {
  background: rgba(254,244,212,0.9);
}
.top-faq .faq-wrap:first-child {
  margin-top: 0;
}
.top-faq .faq-wrap .faq-q {
  position: relative;
  width: 100%;
  min-height: 70px;
  padding: 21px 80px 23px;
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-blue03)!important;
  background: none;
  text-align: left;
  cursor: pointer;
}
.top-faq .faq-wrap .faq-q-txt {
  position: relative;
}
.top-faq .faq-wrap .faq-q-txt::before {
  content: "";
  position: absolute;
  display: block;
  top: 1px;
  left: -35px;
  width: 21px;
  height: 29px;
  background: url(/jobfind-pc/original/images/ico_faq_q.svg) no-repeat center center/contain;
}
.top-faq .faq-wrap .faq-q .faq-icon {
  position: absolute;
  top: 17px;
  right: 20px;
  width: 37px;
  height: 37px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--color-orange01);
  transition: background-color .2s,border .2s;
}
.top-faq .faq-wrap .faq-q .faq-icon::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 3px;
  height: 17px;
  margin: auto;
  border-radius: 100px;
  background: #fff;
  transition: background-color .2s;
}
.top-faq .faq-wrap .faq-q .faq-icon::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  width: 17px;
  margin: auto;
  border-radius: 100px;
  background: #fff;
  transition: background-color .2s;
}
.top-faq .faq-wrap .faq-q.is-open .faq-icon {
  border: 3px solid var(--color-orange01);
  background: #fff;
}
.top-faq .faq-wrap .faq-q.is-open .faq-icon::before {
  display: none;
}
.top-faq .faq-wrap .faq-q.is-open .faq-icon::after {
  background: var(--color-orange01);
}

.top-faq .faq-wrap .faq-a {
  position: relative;
  display: none;
  padding: 17px 20px 21px 80px;
}
.top-faq .faq-wrap .faq-a-txt {
  position: relative;
}
.top-faq .faq-wrap .faq-a-txt::before {
  content: "";
  position: absolute;
  display: block;
  top: 2px;
  left: -34px;
  width: 19px;
  height: 22px;
  background: url(/jobfind-pc/original/images/ico_faq_a.svg) no-repeat center center/contain;
}
.top-faq .faq-wrap .faq-a::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 40px;
  width: calc(100% - 60px);
  height: 1px;
  background: var(--color-gray01);
}
.top-faq .faq-wrap:first-child .faq-a {
  display: block;
}

@media (any-hover: hover) {
  .top-faq .faq-wrap:has(.faq-q:hover) {
  background: rgba(254,244,212,0.9);
  }
  .top-faq .faq-wrap .faq-q:hover .faq-icon {
    border: 3px solid var(--color-orange01);
    background: #fff;
  }
  .top-faq .faq-wrap .faq-q:hover .faq-icon::before {
    background: var(--color-orange01);
  }
  .top-faq .faq-wrap .faq-q:hover .faq-icon::after {
    background: var(--color-orange01);
  }
  .top-faq .faq-wrap .faq-q:hover.is-open .faq-icon {
    border: 3px solid var(--color-orange01);
    background: #fff;
  }

  .top-faq .faq-wrap .faq-q.is-open:hover .faq-icon {
    border: 3px solid #fff;
    background: var(--color-orange01);
  }
  .top-faq .faq-wrap .faq-q.is-open:hover .faq-icon::before {
    background: #fff;
  }
  .top-faq .faq-wrap .faq-q.is-open:hover .faq-icon::after {
    background: #fff;
  }
  .top-faq .faq-wrap .faq-q.is-open:hover.is-open .faq-icon {
    border: 3px solid #fff;
    background: var(--color-orange01);
  }
}
@media screen and (max-width: 767px){
  .top-faq .inner {
    padding: 65px 0 65px;
  }
  .top-faq .faq-wrap .faq-q {
    line-height: 1.222;
    padding: 15px 53px 16px;
  }
  .top-faq .faq-wrap .faq-q-txt::before {
    top: 0;
  }
  .top-faq .faq-wrap .faq-q .faq-icon {
    top: 16px;
    right: 10px;
  }
  .top-faq .faq-wrap .faq-a {
    padding: 19px 20px 20px 53px;
  }
}


/*****************************************
求人を検索するボタン/ページ上部へ戻るボタン
******************************************/
.float-wrap {
  position: relative;
  margin: 0 auto;
  padding-bottom: 135px;
}
.btn-cta-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  max-width: 700px;
  width: calc(100% - 220px);
  height: 80px;
  margin: auto;
  z-index: 5;
}
.float-wrap.is-fixed .btn-cta-wrap {
  position: fixed;
  bottom: 15px;
  width: calc(100% - 220px);
}
a.btn-cta,
a.btn-cta:visited {
  display: block;
  width: 100%;
  padding: 24px 20px 22px 50px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #fff!important;
  background-color: var(--color-orange01);
  background-image: url(/jobfind-pc/original/images/ico_search.svg);
  background-repeat: no-repeat;
  background-position: center left calc(50% - 90px);
  background-size: 38px;
  text-align: center;
  z-index: 3;
  transition: background-color 0.2s;
}
.pagetop {
  position: fixed;
  display: none;
  bottom: 15px;
  right: 20px;
  width: 70px;
  height: 70px;
  z-index: 5;
}
.pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  border: 3px solid #fff;
  border-radius: 50%;
  background-color: var(--color-gray02);
  background-image: url(/jobfind-pc/original/images/ico_arrow_w.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 26px 18px;
  transition: background-color 0.2s;
}

@media (any-hover: hover) {
  a.btn-cta:hover {
    background-color: var(--color-red01);
    text-decoration: none!important;
  }
  .pagetop a:hover {
    background-color: var(--color-blue01);
  }
}
@media screen and (max-width: 767px){
  .float-wrap {
    width: calc(100% - 30px);
    padding-bottom: 150px;
  }
  .btn-cta-wrap {
    right: auto;
    bottom: 10px;
    height: 64px;
    width: calc(100% - 80px);
  }
  .float-wrap.is-fixed .btn-cta-wrap {
    position: fixed;
    left: 15px;
    bottom: 10px;
    width: calc(100% - 110px);
  }
  a.btn-cta,
  a.btn-cta:visited {
    padding: 16px 20px 16px 50px;
    background: url(/jobfind-pc/original/images/ico_search.svg) no-repeat center left calc(50% - 80px)/32px,var(--color-orange01);
  }
  .pagetop {
    position: absolute;
    right: 0;
    bottom: 7px;
  }
  .float-wrap.is-fixed .pagetop {
    position: fixed;
    right: 15px;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) and (max-height: 430px){
  .sp-float {
    width: calc(100% - 160px);
  }
}

/*****************************************
フッター
******************************************/
#original-footer::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 340px;
  background: #fff;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0,rgba(255,255,255,0.8) 40%,rgba(255,255,255,0.9) 52%,#fff 100%);
  z-index: 2;
}
#original-footer .inner {
  max-width: 1120px;
}

@media only screen and (max-width: 767px){
  #original-footer::after {
    width: 100%;
    height: 200px;
  }
}