@charset "utf-8";
html {
  scroll-behavior: smooth; /* CSSだけで滑らかに移動できる */
  font-size: 62.5%; /* 1rem = 10px */
}
a {
  transition: 0.3s ease;
}

:root {
  /* 色 例）color: var(--white); */
  --black: #333;
  --white: #ffffff;
  --blue01: #005cb2;
  --blue02: #8eb6db;
  --blue03: #649acf;
  --blue04: #377fc1;
  --orange01: #ff7800;
  --orange02: #ffd6b2;
  --orange03: #ffe4cc;
  --orange04: #ffe4d0;
  --orange05: #ffc680;

  /* header */
  --header-height100: 100px;
  --header-height70: 70px;

  /* font-family */
  --notosan: "Noto Sans JP", sans-serif;
  --zenkaku: "Zen Kaku Gothic New", sans-serif;

  /* font-weight */
  --Regular: 400;
  --Medium: 500;
  --Bold: 700;
  --Black: 900;

  /* font */
  --size16: 1.6rem;
  --size19: 1.9rem;
  --size21: 2.1rem;
  --size22: 2.2rem;
  --size24: 2.4rem;
  --size30: 3rem;
  --size32: 3.2rem;
  --size36: 3.6rem;
  --size45: 4.5rem;
  --size50: 5rem;
  --size56: 5.6rem;

  /* border-radius */
  --border10: 10px;
  --border20: 20px;
  --border50: 50%;

  /* line height */
  --line01: 2;
  --line02: 1.9;
  --line03: 1.8;
  --line04: 1.7;
  --line05: 1.6;
  --line06: 1.5;
  --line07: 1.4;
  --line08: 1.3;
  --line09: 1.2;

  /* letter-spacing */
  --ls10: 0.01em;
  --ls20: 0.02em;
  --ls30: 0.03em;
  --ls40: 0.04em;
  --ls50: 0.05em;
  --ls60: 0.06em;
  --ls100: 0.1em;
  --ls200: 0.2em;
}

@media (max-width: 1024px) {
  :root {
    --size21: 2rem;
    --size22: 2rem;
    --size24: 2.2rem;
    --size32: 3rem;
    --size36: 3.3rem;
    --size45: 4rem;
    --size50: 4rem;
    --size56: 4.6rem;
  }
}

@media (max-width: 860px) {
  :root {
    --size16: 1.5rem;
    --size19: 1.8rem;
    --size21: 1.8rem;
    --size24: 2rem;
    --size30: 2.8rem;
    --size45: 3.5rem;
    --size56: 4.2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --size19: 1.7rem;
    --size21: 1.7rem;
    --size22: 2.2rem;
    --size24: 1.8rem;
    --size30: 2.5rem;
    --size32: 2.8rem;
    --size36: 3rem;
    --size45: 4.5rem;
    --size50: 3.7rem;
    --size56: 4rem;
    --ls200: 0.1em;
  }
}

@media (max-width: 480px) {
  :root {
    --size19: 1.6rem;
    --size24: 1.7rem;
    --size30: 2.3rem;
    --size32: 2.3rem;
    --size36: 2.5rem;
    --size50: 3.3rem;
    --size56: 3.3rem;
  }
}

@media (max-width: 375px) {
  :root {
    --size19: 1.5rem;
    --size21: 1.6rem;
    --size24: 1.6rem;
    --size36: 2.3rem;
    --size45: 4.1rem;
    --size50: 2.8rem;
    --size56: 3rem;
  }
}

@media (max-width: 340px) {
  :root {
    --size22: 1.9rem;
  }
}

body {
  background-color: var(--white);
  color: var(--black);
  font-family: var(--notosan);
  font-weight: var(--Bold);
  font-size: var(--size19);
  line-height: var(--line05);
  text-align: justify;
}

/* ↓↓↓↓ヘッダー分MVを下げる↓↓↓↓ */
main {
  margin-top: var(--header-height100);
}

@media (max-width: 768px) {
  main {
    margin-top: 0;
  }
}

/* ↓↓↓↓スワイパーの速さを一定にする↓↓↓↓ */
/* .mv-wrapper {
  transition-timing-function: linear;
} */

/*******************************************************
ヘッダー
*******************************************************/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height100);
  background-color: var(--white);
  z-index: 5;
  padding-left: 2%;
  /* padding-right: 2.143%; */
  transition: position 0.3s;
}

.header-inner {
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* 左側を縮ませない */
}

.logo {
  max-width: clamp(250px, 24vw, 357px);
  width: 100%;
  display: block;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3rem;
  flex: 1; /* 残りスペースを確保 */
  min-width: 0; /* flexbox の省略時改行を防止 */
}

.jamp {
  display: flex;
  gap: 3rem;
  flex-shrink: 1; /* 必要に応じて縮む */
  min-width: 0; /* flexbox内での縮みを許容 */
  white-space: nowrap;
}

.jamp-list {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 50px;
}

.jamp-list:hover {
  opacity: 0.6;
}

@media (max-width: 1200px) {
  .jamp-list {
    font-size: 1.5rem;
  }
}

@media (max-width: 1100px) {
  .header-right {
    gap: 2rem;
  }

  .jamp {
    gap: 2rem;
  }
}

@media (max-width: 1050px) {
  .jamp-list {
    font-size: 1.4rem;
  }
}

@media (max-width: 1024px) {
  .header .jamp {
    display: none;
  }

  .header-right {
    padding-right: 77px;
  }
}

@media (max-width: 768px) {
  .header {
    position: static;
    height: var(--header-height70);
  }

  .logo {
    max-width: clamp(190px, 45vw, 250px);
  }

  .header-btn {
    display: none;
  }
}

/*******************************************************
ハンバーガー
*******************************************************/
.hamburger {
  display: none;
}

/* 線のスタイル */
.hamburger span {
  position: absolute;
  left: 50%;
  display: block;
  width: 35px;
  height: 3px;
  border-radius: 10px;
  background-color: var(--blue01);
  transition: all 0.4s;
}

/* 各線の位置 */
.hamburger span:nth-of-type(1) {
  top: 25%;
  transform: translateX(-50%);
}
.hamburger span:nth-of-type(2) {
  top: 50%;
  transform: translateX(-50%);
}
.hamburger span:nth-of-type(3) {
  top: 75%;
  transform: translateX(-50%);
}

/* ハンバーガーがアクティブ時 */
.hamburger.active span:nth-of-type(1) {
  top: 50%;
  transform: translateX(-50%) rotate(135deg);
  background-color: var(--blue01);
}

.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
  top: 50%;
  transform: translateX(-50%) rotate(-135deg);
  background-color: var(--blue01);
}

.hamburger:hover {
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .hamburger {
    display: block;
    position: absolute;
    z-index: 11;
    cursor: pointer;
    transition: all 0.4s;
    height: 55px;
    width: 55px;
    align-items: center;
    top: 20%;
    right: 1%;
  }
}

@media (max-width: 768px) {
  .hamburger {
    position: fixed;
    height: 43px;
    width: 43px;
    top: 13px;
    right: 2%;
  }
}

@media (max-width: 480px) {
  .hamburger {
    height: 40px;
    width: 40px;
    top: 15px;
  }

  .hamburger span {
    width: 30px;
  }
}

/* ↓↓↓↓↓↓↓↓↓↓ハンバーガー内メニュー↓↓↓↓↓↓↓↓↓↓ */

.burger-mask {
  display: none;
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.burger-mask.js-active {
  display: block;
}

.navi {
  position: fixed;
  z-index: 10;
  top: 0;
  right: -100%;
  max-width: 100%;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  overflow-x: hidden;
  overflow-y: auto;
  visibility: hidden;
  transition: all 0.6s;
}

.navi.active {
  visibility: visible;
  right: 0;
}

.menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
  padding: 80px 0 60px;
}

.menu-list {
  color: var(--blue01);
  text-decoration: none;
  line-height: 1.6;
  min-height: 60px;
}

.menu-jp {
  font-size: 2rem;
  margin-top: -6px;
  border-bottom: 2px solid var(--orange01);
  width: 300px;
  line-height: 1.4;
  padding: 1em;
}

.menu-list:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .menu {
    padding: 55px 0;
  }
}

@media (max-width: 340px) {
  .menu {
    padding-top: 20px;
  }
}

#aboutus,
#ourjob,
#interview,
#support,
#qa {
  scroll-margin-top: 80px;
}

@media (max-width: 768px) {
  #aboutus,
  #ourjob,
  #interview,
  #support,
  #qa {
    scroll-margin-top: 0;
  }
}
/*******************************************************
ボタン
*******************************************************/
/* ボタン共通 */
.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 17px;
  color: var(--white);
  padding: 0 10px;
}

/* .btn:hover {
  opacity: 0.7;
} */

.btn:hover {
  background-color: var(--white);
  border: 3px solid var(--blue01);
  color: var(--blue01);
}

.btn:hover .arrow,
.btn:hover .arrow::before,
.btn:hover .arrow::after {
  background-color: var(--blue01);
}

/* ヘッダーボタン */
.header-btn {
  max-width: 220px;
  width: 100%;
  height: 100px;
}

.header-button {
  font-size: 1.8rem;
}

/* メニューボタン */
.menu-btn {
  max-width: 300px;
  width: 100%;
  height: 70px;
  margin: 0 auto;
}

.menu-button {
  font-size: 1.6rem;
}

/* joinusボタン */
.join-btn {
  max-width: 450px;
  height: 100px;
  margin: 0 auto;
}

.join-button {
  flex-direction: column;
  align-items: center;
  letter-spacing: var(--ls100);
}

.join-button .en {
  font-size: 2.5rem;
}
.join-button .jp {
  font-size: 1.6rem;
}

@media (max-width: 1200px) {
  .header-btn {
    max-width: 180px;
  }

  .header-button {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .join-btn {
    max-width: 380px;
    height: 80px;
    margin: 45px auto 0;
  }

  .join-button .en {
    font-size: 2.3rem;
  }
  .join-button .jp {
    font-size: 1.5rem;
  }
}

/* ↓↓↓↓矢印↓↓↓↓ */
.arrow {
  position: absolute;
  left: 87%;
  width: 20px;
  height: 2px;
  margin: 5.6px 0;
  background-color: var(--white);
}

.arrow.arw01 {
  left: 83%;
}

.arrow.arw02 {
  left: 92%;
}
.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 2px;
  background-color: var(--white);
  transform-origin: calc(100% - 1px) 50%;
}

.arrow::before {
  transform: rotate(50deg);
}

.arrow::after {
  transform: rotate(-50deg);
}

@media (max-width: 560px) {
  .arrow {
    left: 84%;
  }
}

/* ↑↑↑↑矢印01↑↑↑↑ */

/*******************************************************
共通
*******************************************************/
/******** 余白 *******/
.inner-1100 {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .inner-1100 {
    padding-right: max(5%, 20px);
    padding-left: max(5%, 20px);
  }
}

.inner-980 {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .inner-980 {
    padding-right: max(5%, 20px);
    padding-left: max(5%, 20px);
  }
}

.sec-pd {
  padding: 90px 0 135px;
}

@media (max-width: 768px) {
  .sec-pd {
    padding: 80px 0 100px;
  }
}

/******** 改行 *******/
.block {
  display: inline-block;
}

.br375,
.br940,
.br948 {
  display: none;
}

@media (max-width: 948px) {
  .br948 {
    display: block;
  }
}

@media (max-width: 940px) {
  .br940 {
    display: block;
  }
}

@media (max-width: 860px) {
  .block-860 {
    display: inline-block;
  }
}

@media (max-width: 800px) {
  .br800non {
    display: none;
  }
}

@media (max-width: 768px) {
  .br940,
  .br948 {
    display: none;
  }
}

@media (max-width: 553px) {
  .br553non {
    display: none;
  }
}

@media (max-width: 480px) {
  .block-480 {
    display: inline-block;
  }
}

@media (max-width: 404px) {
  .br940 {
    display: block;
  }
}

@media (max-width: 375px) {
  .br375 {
    display: block;
  }
}
/******** 色 *******/
.color_blue {
  background-color: var(--blue01);
}

/******** others *******/
.flex {
  display: flex;
}

.section-ttl {
  position: relative;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 8.164%;
}

.section-ttl::after {
  content: "";
  position: absolute;
  top: 110%;
  width: 150px;
  height: 4px;
  background: var(--orange01);
  transform: translateY(-100%);
}

.section-ttl.ttl-4::after {
  background: var(--white);
}

.ttl-jp {
  display: inline-block;
  color: var(--blue01);
  font-size: var(--size56);
  letter-spacing: var(--ls200);
}

.ttl-4 .ttl-jp {
  color: var(--white);
}

.section-ttl.ttl-2::before {
  top: -50%;
}

@media (max-width: 1024px) {
  .section-ttl::before,
  .section-ttl.ttl-2::before {
    top: -60%;
    left: 12%;
  }

  .ttl-jp {
    margin-top: -10px;
  }
}

@media (max-width: 768px) {
  .section-ttl::before,
  .section-ttl.ttl-2::before {
    top: -75%;
  }
}

/*******************************************************
MV
*******************************************************/
.mv {
  background: var(--white);
}

.mv img {
  width: 100%;
  height: auto;
  display: block;
}
/*******************************************************
01_section
*******************************************************/

.bg-w {
  position: relative;
}

.bg-w::after {
  content: "";
  position: absolute;
  bottom: -3%;
  right: 0%;
  width: 34.008%;
  aspect-ratio: 471 / 330;
  pointer-events: none;
  background: center/contain no-repeat url("../img/about02.jpg");
}

.section1 {
  position: relative;
  padding: 255px 0 390px;
  background: var(--white);
}

.section1::before {
  content: "";
  position: absolute;
  top: 8%;
  right: 0%;
  width: 42.929%;
  aspect-ratio: 601 / 421;
  pointer-events: none;
  background: center/contain no-repeat url("../img/about01.jpg");
}

.section1::after {
  content: "";
  position: absolute;
  bottom: 5%;
  left: 0%;
  width: 29.098%;
  aspect-ratio: 403 / 483;
  pointer-events: none;
  background: center/contain no-repeat url("../img/about03.jpg");
}

@media (min-width: 1750px) {
  .section1::after {
    width: 26%;
  }
}

@media (max-width: 1280px) {
  .section1::before {
    width: 40%;
  }

  .section1::after {
    top: 68%;
  }
}

@media (max-width: 1024px) {
  .section1 {
    padding: 210px 0 370px;
  }

  .section1::before {
    bottom: 65%;
  }
}

@media (max-width: 860px) {
  .section1 {
    padding: 190px 0 320px;
  }
}

@media (max-width: 768px) {
  .bg-w::after {
    width: 47%;
  }
  .section1::after {
    width: 34%;
  }
}

@media (max-width: 600px) {
  .section1::before,
  .section1::after {
    content: none;
  }

  .section1 {
    padding: 120px 0 380px;
  }

  .bg-w::after {
    content: "";
    position: absolute;
    bottom: 0;
    transform: translateY(1%);
    width: 100%;
    aspect-ratio: 600 / 400;
    pointer-events: none;
    background: center/contain no-repeat url("../img/about04.png");
  }
}

@media (max-width: 480px) {
  .section1 {
    padding: 120px 0 300px;
  }
}

@media (max-width: 375px) {
  .section1 {
    padding: 100px 0 230px;
  }
}

/******** メッセージ *******/
.message {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  text-align: start;
}

.message .inner-980 {
  margin: 0;
}

.message-box01 {
  width: min(917px, 100%);
  margin-right: auto;
  background: var(--orange02);
  padding: 32px 0;
  padding-left: max(20px, calc((100vw - 980px) / 2));
}

.message-box02 {
  width: min(1188px, 100%);
  margin-left: auto;
  background: var(--orange03);
  padding: 40px 0;
  padding-right: max(20px, calc((100vw - 980px) / 2));
}
.message-box02 .inner-980 {
  display: flex;
  justify-content: flex-end;
}

.message-txt {
  width: min(691px, 100%);
  font-weight: var(--Medium);
  letter-spacing: var(--ls100);
}

@media (max-width: 1024px) {
  .message-box01,
  .message-box02 {
    padding: 30px 5px;
    /* padding-left: max(5%, 20px);
    padding-right: max(5%, 20px); */
  }

  /* .message-box02 .inner-980 {
    justify-content: flex-start;
  } */
}

@media (max-width: 860px) {
  .message {
    gap: 3rem;
  }
}

/*******************************************************
02_section
*******************************************************/
.section2 {
  position: relative;
}

/******** パララックス *******/
/* .section2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url(../img/back/search.png) no-repeat top center / cover;
  background-attachment: fixed;
  pointer-events: none;
}
@media (max-width: 768px) {
  .section2::before {
    position: fixed;
    inset: 0;
    background: url(../img/back/sp_search.png) no-repeat top center / cover;
    background-attachment: initial;
    background-attachment: scroll;
    pointer-events: none;
  }
} */
/* 
.para_bg01 {
  position: fixed;
  z-index: -99;
  inset: 0;
}

.para_bg01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
} */

.para_bg01 {
  position: relative;
}

.para_bg01::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -2;
  background: url(../img/back/search.png) no-repeat top center / cover;
  background-attachment: fixed;
  pointer-events: none;
}

@media (max-width: 768px) {
  .para_bg01::before {
    position: fixed;
    background: url(../img/back/sp_search.png) no-repeat top center / cover;
    background-attachment: initial;
  }
}

/******** パララックス *******/

.search-box {
  background-color: var(--white);
  border: 2px solid var(--orange01);
  padding: 35px 60px 60px;
}

.search-box:not(:last-child) {
  margin: 80px 0 60px;
}

.search-head {
  align-items: center;
  justify-content: center;
  font-size: var(--size30);
  letter-spacing: var(--ls200);
  padding-bottom: 55px;
  gap: 1.8rem;
}

.search-icon {
  max-width: 30px;
  width: 100%;
}

@media (max-width: 480px) {
  .search-box {
    padding: 35px;
  }
  .search-head {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/******** エリアから探す *******/
.area-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 135px;
}

.area-img {
  max-width: 403px;
  width: 100%;
}

.area_list {
  position: relative;
}

.area-img {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s ease;
}
.area-img.is-active {
  opacity: 1;
  position: relative;
}

.areabtn_list {
  flex: 1;
}
.map_btn {
  position: relative;
  background-color: var(--blue01);
  color: var(--white);
  font-size: 20px;
  font-weight: var(--Medium);
  margin: 0 auto;
  width: 300px;
  height: 70px;
  margin-bottom: 33px;
}

@media (max-width: 1024px) {
  .area-inner {
    gap: 6.5rem;
  }
}

@media (max-width: 860px) {
  .area-inner {
    gap: 3rem;
  }

  .map_btn {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .area-inner {
    display: block;
  }

  .area_list {
    display: none;
  }

  .areabtn_list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    max-width: none;
  }

  .map_btn {
    max-width: 300px;
    width: 100%;
    height: 70px;
    margin-bottom: 0;
  }
}

/******** 職種から探す *******/
.typebtn-outer {
  justify-content: center;
  gap: 135px;
}

.type-btn {
  max-width: 300px;
  width: 100%;
  height: 70px;
}

.type-button {
  font-weight: var(--Medium);
}

@media (max-width: 860px) {
  .typebtn-outer {
    gap: 8rem;
  }
}

@media (max-width: 768px) {
  .typebtn-outer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
}

/*******************************************************
03_section
*******************************************************/

.section3 {
  position: relative;
  background: var(--white);
  z-index: -2;
}

.section3::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  aspect-ratio: 588 / 1906;
  pointer-events: none;
  background: center/contain no-repeat url("../img/back/jobinfo_top.png");
  z-index: -1;
}

.section3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  aspect-ratio: 1400 / 1900;
  pointer-events: none;
  background: center/contain no-repeat url("../img/back/jobinfo_bottom.png");
  z-index: -1;
}

.info-outer {
  background-color: var(--orange04);
  padding: 65px 0 80px;
}

.info-outer:first-of-type {
  margin-bottom: 140px;
}

@media (max-width: 768px) {
  .info-outer:first-of-type {
    margin-bottom: 60px;
  }
}
.inner-info {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .inner-info {
    padding-right: max(5%, 20px);
    padding-left: max(5%, 20px);
  }
}

.info-cnt-head {
  position: relative;
  display: block;
  color: var(--orange01);
  font-size: var(--size32);
  letter-spacing: var(--ls200);
  width: fit-content;
  margin: 0 auto;
}

.info-cnt-head::before,
.info-cnt-head::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 35px;
  height: 4px;
  background-color: var(--orange01);
  transform: translateY(-50%);
}

.info-cnt-head::before {
  left: -50px;
}

.info-cnt-head::after {
  right: -50px;
}

@media (max-width: 375px) {
  .info-cnt-head::before,
  .info-cnt-head::after {
    width: 23px;
    height: 3px;
  }

  .info-cnt-head::before {
    left: -30px;
  }

  .info-cnt-head::after {
    right: -30px;
  }
}

/******** info-top *******/

.info-top h2 {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: var(--size36);
  color: var(--orange01);
  letter-spacing: var(--ls200);
  padding-bottom: 24px;
}

.info-top h2 span {
  display: inline-block;
  width: 10px;
  height: 45px;
  background-color: var(--orange01);
}

.info-top p {
  max-width: 730px;
  width: 100%;
  font-weight: var(--Medium);
  letter-spacing: var(--ls100);
  line-height: var(--line03);
  text-align: start;
}

.info-picbox {
  justify-content: center;
  gap: clamp(20px, 5vw, 6rem);
  padding: 62px 0 72px;
}

.info-pic {
  width: calc((100% - clamp(20px, 5vw, 6rem)) / 2);
}

@media (max-width: 768px) {
  .info-picbox {
    flex-direction: column;
    align-items: center;
    padding: 55px 0 65px;
  }

  .info-pic {
    max-width: 500px;
    width: 100%;
  }
}

/******** info-center *******/

.info-cnt-outer {
  gap: 3rem;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 0 70px;
}

.info-cnt-box {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 460px;
  width: 100%;
}

.info-ttl {
  color: var(--white);
  background-color: var(--orange01);
  width: 100%;
  text-align: center;
  font-size: clamp(20px, 1.9vw, 24px);
  font-weight: var(--Medium);
  line-height: 45px;
  letter-spacing: var(--ls200);
}

.info-ttl.info-ls {
  letter-spacing: var(--ls50);
}

.info-icon {
  max-width: 175px;
  width: 100%;
  padding: 42px 0 17px;
}

.txt {
  max-width: 400px;
  width: 100%;
  font-weight: var(--Medium);
  letter-spacing: var(--ls50);
  line-height: var(--line05);
}

.data-txt {
  padding: 3px 10px 3px 15px;
  margin-top: 30px;
  color: var(--orange01);
  background-color: var(--white);
  border: 2px solid var(--orange01);

  width: fit-content;
  text-align: center;
  font-size: clamp(20px, 1.9vw, 24px);
  font-weight: var(--Bold);
  line-height: var(--line07);
  letter-spacing: var(--ls100);
}

@media (max-width: 768px) {
  .info-cnt-outer {
    flex-direction: column;
    gap: 5rem;
    align-items: center;
    padding: 30px 0;
  }

  .info-ttl {
    font-size: clamp(18px, 4vw, 20px);
  }

  .info-data {
    max-width: 400px;
    width: 100%;
  }
}

@media (max-width: 404px) {
  .info-ttl {
    line-height: 33px;
  }
}

@media (max-width: 375px) {
  .info-icon {
    max-width: 150px;
  }
}

/******** info-bottom *******/
.point-outer {
  justify-content: center;
  align-items: stretch;
  gap: 2.4rem;
  padding-top: 40px;
}

.point-box {
  position: relative;
  flex-direction: column;
  background-color: var(--white);
  border: 2px solid var(--orange01);
  max-width: 310px;
  width: 100%;
}
.number {
  position: absolute;
  font-size: var(--size45);
  color: rgba(255, 230, 209, 0.9);
  letter-spacing: var(--ls50);
  top: -7.2%;
}

.point-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: var(--size22);
  color: var(--orange01);
  text-align: center;
  line-height: var(--line07);
  padding: 85px 8px 26px;
}
.point-txt {
  font-size: var(--size16);
  font-weight: var(--Medium);
  padding: 0 24px 40px;
}

@media (max-width: 1024px) {
  .number {
    top: -5%;
  }
}

@media (max-width: 950px) {
  .point-head {
    min-height: 135px;
    padding: 60px 8px 10px;
  }
}

@media (max-width: 860px) {
  .point-head {
    padding: 45px 8px 10px;
  }
}

@media (max-width: 768px) {
  .point-outer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .point-box {
    /* aspect-ratio: 1 / 1; */
    justify-content: center;
  }

  .point-head {
    flex-direction: row;
    min-height: 0;
    padding: 60px 8px 30px;
  }
}

/*******************************************************
04_section
*******************************************************/

.section4 {
  position: relative;
  background: var(--white);
  padding-bottom: 135px;
}

.bg-orange {
  position: relative;
  background: var(--orange01);
  max-width: 1355px;
  width: 100%;
  height: 380px;
  padding-top: 75px;
  z-index: 1;
}

.bg-orange::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
  width: 77px;
  height: 102%;
  background: var(--white);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 100% 50%, 0 0);

  transform: translateY(-0.2%);
  z-index: 2;
}

@media (max-width: 1024px) {
  .bg-orange {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .bg-orange {
    height: 310px;
  }
}

/**************** ふろー図形 ***************/

.inner-flow {
  position: relative;
  max-width: 1100px;
  width: 100%;
  margin: -140px auto 0;
  z-index: 3;
}

.flow-wrapper {
  flex-direction: column;
  gap: 8rem;
}

.flow-bottom {
  justify-content: flex-end;
}

.flow-box {
  position: relative;
  max-width: 300px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding: 20px 7.274% 20px 0.455%;
}

/* 1・6 */
.flow-box:nth-child(1),
.flow-bottom .flow-box:nth-child(3) {
  background: var(--blue02);
}

/* 2・5 */
.flow-box:nth-child(2),
.flow-bottom .flow-box:nth-child(2) {
  background: var(--blue03);
}

/* 3・4 */
.flow-box:nth-child(3),
.flow-bottom .flow-box:nth-child(1) {
  background: var(--blue04);
}

.flow-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -77px;
  width: 78px;
  height: 100%;
  background: inherit;
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 100% 50%, 0 0);
  transform: translateX(0.5px);
}
/* ① 右上, ② 右下,③ 左下,④ 右中央, ⑤ 左上 */

.flow-box:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -77px;
  width: 78px;
  height: 100%;
  background: inherit;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateX(-0.5px);
}
/* ① 右上, ② 右下,③ 左下 */

/* 3・6 */
.flow-box:nth-child(3),
.flow-bottom .flow-box:nth-child(3) {
  max-width: 225px;
  padding: 20px 25px 20px 0.455%;
}

@media (max-width: 1250px) {
  .flow-outer {
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .inner-flow {
    transform: scale(0.8);
  }

  .flow-box::before {
    transform: translateX(1.5px);
  }
}

@media (max-width: 768px) {
  .flow-box:nth-child(3)::after {
    display: none;
  }

  .inner-flow {
    transform: scale(1);
  }

  .flow-wrapper {
    gap: 0;
  }

  .flow-outer {
    flex-direction: column;
    align-items: center;
  }

  .flow-box,
  .flow-box:nth-child(3),
  .flow-bottom .flow-box:nth-child(3) {
    max-width: 380px;
    padding: 70px 20px 30px;
  }

  .flow-box::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 100%;
    height: 15%;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    top: 100%;
    left: 0;
    z-index: 1;
    transform: translateY(-0.8px);
  }

  .flow-top .flow-box:first-child::after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 100%;
    height: 15%;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    top: 0;
    left: 0;
    z-index: 1;
    background-color: var(--orange01);
    transform: translateY(-1px);
  }

  .flow-bottom .flow-box:first-child {
    background-color: #468cc8;
  }
}

@media (max-width: 480px) {
  .flow-box,
  .flow-box:nth-child(3),
  .flow-bottom .flow-box:nth-child(3) {
    max-width: 320px;
  }
}

@media (max-width: 375px) {
  .flow-box,
  .flow-box:nth-child(3),
  .flow-bottom .flow-box:nth-child(3) {
    width: 80%;
  }
}

/**************** ふろー内容 ***************/

.flow-head {
  font-size: var(--size32);
  letter-spacing: var(--ls200);
  color: var(--white);
  padding-bottom: 20px;
}

.flow-icon {
  width: 156px;
  padding-bottom: 10px;
}

.flow-txt {
  font-size: var(--size16);
  font-weight: var(--Medium);
  color: var(--white);
  letter-spacing: var(--ls50);
  max-width: 189px;
  width: 100%;
}

@media (max-width: 480px) {
  .flow-head {
    padding-bottom: 0;
  }

  .flow-top .flow-box:nth-child(3) .flow-head {
    padding-bottom: 10px;
  }

  .flow-icon {
    width: 130px;
  }
}

/*******************************************************
05_section
*******************************************************/

.section5 {
  background-color: var(--orange05);
}

/**************** FAQ ***************/

.toggle-main dl,
.toggle-main dd {
  margin: 0;
}

.toggle {
  margin: 0;
}

.toggle-link {
  align-items: center;
  justify-content: flex-start;
  background-color: var(--white);
  font-size: var(--size24);
  letter-spacing: var(--ls200);
  cursor: pointer;
  padding: 25px 40px 22px;
  position: relative;
}

.toggle-link .left-side {
  text-align: start;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
}

/******** Q *******/
.toggle-link .icon-q {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background-color: var(--orange01);
  font-family: var(--zenkaku);
  border-radius: var(--border50);
  flex-shrink: 0;
}
.icon-q span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--size24);
  color: var(--white);
  line-height: 1;
  transform: translate(10%, -10%);
}

/******** +/− *******/
.toggle-link .plus-minus {
  margin-left: auto;
  width: 35px;
  height: 3px;
  background-color: var(--blue01);
  position: relative;
  transition: all 0.3s ease;
}

.toggle-link .plus-minus::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 35px;
  background-color: var(--blue01);
  top: -16px;
  left: 16px;
  transition: all 0.3s ease;
}

.toggle-input:checked + .toggle-link .plus-minus::after {
  opacity: 0;

  padding: 25px 40px 22px;
}

/********  閉じている状態 *******/

.toggle-main {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  transform: translateY(0);
  transition:
    max-height 0.5s ease,
    opacity 0.4s ease,
    transform 0.4s ease;
}

/********  開いた状態 *******/
.toggle-input:checked ~ .toggle-main {
  max-height: 800px;
  opacity: 1;
  /* transform: translateY(10px); */
}

/********  A *******/
.toggle-main dd .icon-a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background-color: var(--white);
  font-family: var(--zenkaku);
  border-radius: var(--border50);
  flex-shrink: 0;
}

.icon-a span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--size24);
  color: var(--orange01);
  line-height: 1;
  transform: translate(10%, -10%);
}

.toggle-main dd {
  display: flex;
  align-items: baseline;
  gap: 2.5rem;
  position: relative;
  font-size: var(--size21);
  font-weight: var(--Medium);
  letter-spacing: var(--ls200);
  padding: 35px 60px 10px 40px;
}

@media (max-width: 768px) {
  .toggle-link {
    padding: 20px 15px;
  }
  .toggle-link .left-side {
    gap: 2rem;
  }

  .toggle-main dd {
    gap: 2rem;
    padding: 20px 15px 10px;
  }

  .toggle-link .icon-q,
  .toggle-main dd .icon-a {
    width: 40px;
    height: 40px;
  }

  .toggle-link .plus-minus {
    width: 26px;
  }

  .toggle-link .plus-minus::after {
    height: 26px;
    top: -11px;
    left: 12px;
  }
}

@media (max-width: 480px) {
  .toggle-link .icon-q,
  .toggle-main dd .icon-a {
    width: 36px;
    height: 36px;
  }

  .toggle-link {
    padding: 10px 15px;
  }

  .toggle-link .left-side {
    gap: 1.5rem;
  }

  .toggle-main dd {
    gap: 1.5rem;
    padding: 15px 15px 10px;
  }

  .toggle-link .plus-minus {
    width: 23px;
  }

  .toggle-link .plus-minus::after {
    height: 23px;
    top: -10px;
    left: 10px;
  }
}

@media (max-width: 375px) {
  .toggle-link .left-side,
  .toggle-main dd {
    gap: 1rem;
  }
}

/**************** FAQ ***************/

/**************** join us ***************/

.join-wrapper {
  position: relative;
  padding: 130px 0 180px;
}

/******** パララックス *******/
/* .join-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;

  z-index: -3;
  background: url(../img/back/entry.jpg) no-repeat top center / cover;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .join-wrapper::before {
    position: fixed;
    inset: 0;
    background: url(../img/back/sp_entry.png) no-repeat top center / cover;
    background-attachment: initial;
    background-attachment: scroll;
    pointer-events: none;
  }
} */

.para_bg02 {
  position: fixed;
  z-index: -99;
  inset: 0;
  display: block;
}

.para_bg02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 768px) {
  .para_bg02 {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
}

/* .para_bg02::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
  background: url(../img/back/entry.jpg) no-repeat top center / cover;
  background-attachment: fixed;
  pointer-events: none;
}

@media (max-width: 768px) {
  .para_bg02::before {
    position: fixed;
    background: url(../img/back/sp_entry.png) no-repeat top center / cover;
    background-attachment: initial;
  }
}
 */

/******** パララックス *******/

.join-txt {
  font-size: var(--size50);
  color: var(--white);
  text-align: center;
  padding-bottom: 50px;
  letter-spacing: var(--ls200);
  line-height: var(--line06);
}

@media (max-width: 768px) {
  .join-txt {
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  .join-txt {
    letter-spacing: var(--ls50);
  }
}

/*******************************************************
フッター
*******************************************************/
footer {
  position: relative;
  background-color: var(--orange01);
  color: var(--white);
  font-size: 1.2rem;
  text-align: center;
  font-weight: var(--Medium);
  padding: 50px 0;
}

.footer-inner {
  padding: 0 10px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0 1% 15px;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.footer-nav > a:not(:first-child)::before {
  content: "｜";
  position: relative;
  right: 3%;
}

@media (max-width: 768px) {
  footer {
    /* padding-top: 35px;
    padding-bottom: 110px; */
    padding: 30px 0;
  }
}

@media (max-width: 512px) {
  .footer-nav {
    flex-wrap: wrap;
  }

  .footer-nav > a:last-child::before {
    opacity: 0;
  }
}

@media (max-width: 450px) {
  .footer-nav {
    flex-direction: column;
  }
  .footer-nav > a:nth-child(2)::before {
    opacity: 0;
  }
}

/*******************************************************
追従ボタン
*******************************************************/
/* 
.slidebtn-wrap {
  position: fixed;
  top: 60%;
  right: 0; 
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 17px;
  z-index: 1;
}

.slide-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 15px;
  color: var(--white);
  font-family: var(--Noto-Sans-JP);
  width: 175px;
  height: 65px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.slide-color01 {
  background-color: var(--green02);
}

.slide-color02 {
  background-color: var(--green01);
}

.slide-btn:hover {
  transform: translateY(-2px);
  color: var(--white);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .slidebtn-wrap {
    flex-direction: row;
    bottom: 0;
    left: 0;
    top: auto;
    width: 100%;
    transform: none;
    gap: 0;
  }

  .slide-btn {
    flex: 1 1 50%;
    min-width: 0;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .slide-btn {
    font-size: 15px;
  }
}

@media (max-width: 375px) {
  .slide-btn {
    font-size: 14px;
  }
} */

/*******************************************************
トップボタン
*******************************************************/
/* .pagetop {
  display: none;
  position: fixed;
  z-index: 3;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 1s;
  background-color: var(--blue06);
  cursor: pointer;
}


.pagetop::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--white);
  border-left: 2px solid var(--white);
  transform: translate(50%, -50%) rotate(45deg);
  top: 53%;
  left: 30%;
}

.pagetop:hover {
  opacity: 0.7;
}

body.modal-open .pagetop {
  display: none !important;
}

@media (max-width: 768px) {
  .pagetop {
    width: 50px;
    height: 50px;
  }

  .pagetop::before {
    top: 55%;
    left: 26%;
  }
} */
