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

:root {
  /* 色 例）color: var(--white); */
  --black: #46403b;
  --white: #ffffff;
  --navy: #0b367f;
  --yellow: #f6de12;
  --blue01: #46b9ff;
  --blue02: #b1def7;
  --blue03: #d4edf7;

  /* ヘッダー */
  --header-height100: 100px;
  --header-height70: 70px;

  /* font-family */
  --ZenKaku: "Zen Kaku Gothic New", sans-serif;

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

  /* font */
  --size17: 1.7rem;
  --size19: 1.9rem;
  --size21: 2.1rem;
  --size23: 2.3rem;
  --size24: 2.4rem;
  --size27: 2.7rem;
  --size28: 2.8rem;
  --size32: 3.2rem;
  --size34: 3.4rem;
  --size40: 4rem;
  --size48: 4.8rem;
  --size50: 5rem;
  --size60: 6rem;
  --size80: 8rem;

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

  /* line height */
  --line00: 1.9;
  --line01: 1.7;
  --line02: 1.6;
  --line03: 1.5;
  --line05: 1.3;
  --line06: 1.2;

  /* letter-spacing */
  --ls20: 0.02em;
  --ls30: 0.03em;
  --ls50: 0.05em;
  --ls60: 0.06em;
}

@media (max-width: 1024px) {
  :root {
    --size23: 2.1rem;
    --size24: 2.2rem;
    --size27: 2.2rem;
    --size28: 2.4rem;
    --size34: 3.2rem;
    --size50: 4.5rem;
    --size60: 5rem;
    --size80: 7rem;
  }
}
@media (max-width: 860px) {
  :root {
    --size19: 1.7rem;
    --size32: 3rem;
    --size60: 4.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --size17: 1.6rem;
    --size21: 1.8rem;
    --size23: 1.9rem;
    --size24: 2rem;
    --size28: 2.2rem;
    --size32: 2.8rem;
    --size34: 2.8rem;
    --size40: 3.6rem;
    --size50: 4rem;
    --size80: 6.5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --size17: 1.5rem;
    --size19: 1.6rem;
    --size21: 1.6rem;
    --size23: 1.7rem;
    --size27: 2rem;
    --size28: 2rem;
    --size32: 2.6rem;
    --size34: 2.6rem;
    --size40: 3.4rem;
    --size50: 3.6rem;
    --size80: 5.5rem;
  }
}

@media (max-width: 452px) {
  :root {
    --size80: 4.5rem;
  }
}

@media (max-width: 375px) {
  :root {
    --size23: 1.6rem;
    --size28: 1.7rem;
    --size32: 2.4rem;
    --size34: 2.4rem;
    --size40: 3.2rem;
    --size50: 3.4rem;
    --size80: 3.7rem;
  }
}

@media (max-width: 328px) {
  :root {
    --size80: 3.5rem;
  }
}

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

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

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height100);
  background-color: var(--white);
  z-index: 5;
  padding-left: 2.143%;
  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(170px, 15vw, 219px);
  width: 100%;
  display: block;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8rem;
  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: 16px;
  color: var(--black);
  line-height: 50px;
}

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

@media (max-width: 1300px) {
  .header-right {
    gap: 4rem;
  }
}
@media (max-width: 1200px) {
  .header-right {
    gap: 3rem;
  }
  .jamp {
    gap: 2rem;
  }
}

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

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

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

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

  .header-btn {
    display: none;
  }
}

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

/* 線のスタイル */
.hamburger span {
  position: absolute;
  left: 50%;
  display: block;
  width: 35px;
  height: 2px;
  border-radius: 10px;
  background-color: var(--navy);
  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(--white);
}

.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(--white);
}

.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(--navy);
  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: 25px;
  padding: 80px 0 60px;
}

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

.menu-en {
  font-size: 25px;
}

.menu-jp {
  font-size: 15px;
  margin-top: -6px;
}

.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;
  padding: 0 10px;
}

.btn:hover {
  opacity: 0.7;
}

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

.header-button {
  font-size: 1.8rem;
  color: var(--navy);
  border-radius: var(--border10);
}

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

.menu-button {
  font-size: 1.6rem;
  color: var(--navy);
  border-radius: var(--border10);
}

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

.join-button {
  font-size: 2.1rem;
  color: var(--white);
  border-radius: var(--border10);
}

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

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

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

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

/*******************************************************
共通
*******************************************************/

.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);
  }
}

.flex {
  display: flex;
}

.section-ttl {
  position: relative;
  align-items: flex-start;
  flex-direction: column;
  /* gap: 1.2rem; */
}
.ttl-en {
  font-size: var(--size80);
  color: var(--navy);
  letter-spacing: var(--ls20);
}

.ttl-jp {
  display: inline-block;
  font-size: var(--size21);
  border-bottom: var(--yellow) solid 4px;
  letter-spacing: var(--ls30);
}

.section-ttl::before {
  content: "";
  position: absolute;
  top: -45%;
  left: 9%;
  width: 100%;
  max-width: 85px;
  aspect-ratio: 85 / 85;
  transform: translate(-100%, 50%);
  pointer-events: none;
  z-index: 1;
}

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

.color_yellow {
  background-color: var(--yellow);
}

.color_navy {
  background-color: var(--navy);
}

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

.block {
  display: inline-block;
}

.br375 {
  display: none;
}

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

  .ttl-jp {
    margin-top: -10px;
  }
}
@media (max-width: 860px) {
  .block-860 {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .sec-pd {
    padding: 90px 0 100px;
  }

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

@media (max-width: 590px) {
  .section-ttl::before,
  .section-ttl.ttl-2::before {
    left: 15%;
  }
}

@media (max-width: 495px) {
  .br495non {
    display: none;
  }
}

@media (max-width: 480px) {
  .sec-pd {
    padding: 90px 0;
  }

  .block-480 {
    display: inline-block;
  }

  .section-ttl::before,
  .section-ttl.ttl-2::before {
    top: -85%;
    left: 22%;
  }
}

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

@media (max-width: 375px) {
  .br375 {
    display: block;
  }

  .section-ttl::before,
  .section-ttl.ttl-2::before {
    max-width: 70px;
    top: -110%;
    left: 22%;
  }
}

@media (max-width: 368px) {
  .br368non {
    display: none;
  }
}

/*******************************************************
MV
*******************************************************/
.mv {
  position: relative;
  width: 100%;
  aspect-ratio: 1400 / 854;
}

.mv-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
}

.mv-slide.active {
  opacity: 1;
  z-index: 1;
}

.mv-slide img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.mv-txtouter {
  position: absolute;
  top: 73%;
  right: 0.5%;
  transform: translateY(-50%);
  z-index: 1;
}

.maintxt-box {
  flex-direction: column;
  gap: 1rem;
}

.maintxt {
  font-size: var(--size60);
  color: var(--navy);
  text-align: center;
  background-color: var(--white);
  line-height: 90px;
  width: fit-content;
  padding-left: 25px;
}

.subtxt-box {
  justify-content: flex-end;
  padding: 12px 25px 0 0;
}
.subtxt {
  font-size: var(--size24);
  color: var(--white);
  text-align: center;
  /* background-color: rgba(70, 64, 59, 0.5); */
  width: fit-content;
  padding: 0 2%;
}

@media (max-width: 1024px) {
  .maintxt {
    line-height: 65px;
  }
}

@media (max-width: 860px) {
  .mv-txtouter {
    top: 78%;
  }
  .maintxt {
    line-height: 55px;
  }
}
@media (max-width: 768px) {
  .mv {
    aspect-ratio: 980 / 1200;
  }

  .mv-txtouter {
    display: none;
  }
}
/*******************************************************
1.セクション
*******************************************************/
.section-ttl.ttl-1::before {
  background: center/contain no-repeat url("../img/common/icon01.png");
}

.section1 {
  position: relative;
}

.section1::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0%;
  width: 43.105%;
  /* max-width: 597px; */
  aspect-ratio: 597 / 637;
  pointer-events: none;
  background: center/contain no-repeat url("../img/about01.png");
  z-index: -1;
}

@media (max-width: 920px) {
  .section1::after {
    width: 40%;
    top: 20%;
  }
}
@media (max-width: 768px) {
  .section1::after {
    width: 75%;
    top: 19%;
    background: center/contain no-repeat url("../img/about02.png");
    aspect-ratio: 938 / 563;
  }
}

@media (max-width: 480px) {
  .section1::after {
    width: 90%;
  }
}

@media (max-width: 375px) {
  .section1::after {
    top: 18%;
  }
}

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

.message-txt {
  font-size: clamp(20px, 2vw, 23px);
  font-weight: var(--Medium);
  letter-spacing: var(--ls30);
}

.message-right {
  width: 51.824%;
}

@media (max-width: 860px) {
  .message-txt {
    font-size: clamp(16px, 3.2vw, 20px);
  }
}

@media (max-width: 860px) {
  .message {
    gap: 3rem;
  }
}
/******** 特徴 *******/
.feature-wrapper {
  background-color: var(--blue01);
  border-radius: var(--border20);
  margin-top: 265px;
  padding: 75px 2%;
}

.feature-head {
  position: relative;
  text-align: center;
  font-size: var(--size34);
  margin: 0 auto;
}

.feature-head::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #fff 0 12px,
    transparent 12px 24px
  );
  z-index: 0;
}

@media (max-width: 515px) {
  .feature-head::before {
    background: #fff;
  }
}

@media (min-width: 405px) {
  .feature-head::before {
    top: 50%;
    transform: translateY(-50%);
  }
}

.feature-head p {
  position: relative;
  display: inline-block;
  background-color: var(--blue01);
  color: var(--white);
  padding: 0 5px;
  z-index: 1;
}

@media (max-width: 404px) {
  /* 横断線を消す */
  .feature-head::before {
    display: none;
  }

  .feature-head p::before,
  .feature-head p::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    background: var(--white);
    transform: translateY(-50%);
    top: 50%;
  }
  .feature-head p::before {
    left: 0;
  }

  .feature-head p::after {
    right: 0;
  }
}

.feature-outer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7rem 3rem;
  align-items: stretch;
  padding-top: 100px;
}

.feature-box {
  position: relative;
  flex-direction: column;
  background-color: var(--white);
  border-radius: var(--border10);
  max-width: 475px;
  width: 100%;
}

.f-number {
  position: absolute;
  top: -17%;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  font-size: var(--size21);
  line-height: var(--line06);
  border-radius: var(--border50);
  width: 110px;
  height: 110px;
}

.f-head {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: var(--size24);
  min-height: 66px;
  line-height: var(--line05);
  letter-spacing: var(--ls50);
  margin-top: 70px;
  padding: 0 2%;
}

.f-txtbox {
  gap: 2.5rem;
  padding: 0 27px 60px;
  flex: 1;
}

.f-icon {
  max-width: 160px;
  width: 100%;
  flex-shrink: 0;
}

.f-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.f-txt {
  font-size: var(--size17);
  font-weight: var(--Medium);
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .f-number {
    top: -11%;
    width: 100px;
    height: 100px;
  }
  .f-txtbox {
    flex-direction: column;
    align-items: center;
    padding: 0 20px 40px;
  }
  .f-txt {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .feature-wrapper {
    margin-top: 410px;
    padding: 65px 2%;
  }

  .feature-outer {
    grid-template-columns: 1fr;
    gap: 8rem;
    justify-items: center;
  }

  .f-txtbox {
    gap: 0;
  }
}

@media (max-width: 600px) {
  .feature-wrapper {
    margin-top: 370px;
  }
}

@media (max-width: 480px) {
  .feature-outer {
    padding-top: 70px;
  }

  .f-number {
    top: -9%;
    width: 80px;
    height: 80px;
  }

  .f-head {
    margin-top: 55px;
  }
}

@media (max-width: 375px) {
  .feature-wrapper {
    margin-top: 240px;
  }
}

/*******************************************************
2.セクション
*******************************************************/
.section-ttl.ttl-2::before {
  background: center/contain no-repeat url("../img/common/icon02.png");
}

.section2 {
  position: relative;
  background-color: var(--blue02);
}

.section2::before {
  content: "";
  position: absolute;
  top: 0;
  width: 101.084%;
  aspect-ratio: 1400 / 3107;
  pointer-events: none;
  background: center/contain no-repeat url("../img/back/oj_01.png");
  z-index: 1;
}

.section2::after {
  content: "";
  position: absolute;
  bottom: -1%;
  width: 18.773%;
  aspect-ratio: 260 / 300;
  pointer-events: none;
  background: center/contain no-repeat url("../img/back/oj_02.png");
  z-index: 1;
}

.job-wrapper {
  position: relative;
  background-color: var(--white);
  border-radius: var(--border20);
  margin-top: 50px;
  padding: 35px 2% 100px;
  z-index: 2;
}

.job-head {
  font-size: var(--size32);
  border-bottom: 1px solid var(--navy);
  margin-bottom: 20px;
}

.job-picbox {
  justify-content: space-between;
  gap: 2rem;
  padding-top: 50px;
}

.job-picbox.pic-gaisho {
  justify-content: center;
}

.job-pic {
  position: relative;
}

.job-pic img {
  max-width: 450px;
  width: 100%;
}

.type-job {
  position: absolute;
  width: 130px;
  top: 3%;
  left: 0;
  text-align: center;
}

.type-job span {
  color: var(--white);
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
  line-height: 43px;
}

@media (max-width: 860px) {
  .job-picbox {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .section2::after {
    bottom: 0;
  }

  .job-wrapper {
    padding: 35px 2% 90px;
  }
}

@media (max-width: 480px) {
  .section2::before {
    width: 110%;
    right: 0;
  }

  .section2::after {
    width: 24%;
    bottom: 1%;
  }

  .job-wrapper {
    padding: 35px 2% 80px;
  }

  .type-job {
    width: 100px;
    top: 0;
  }

  .type-job span {
    font-size: 1.5rem;
    line-height: 35px;
  }
}

@media (max-width: 400px) {
  .type-job {
    width: 90px;
  }

  .type-job span {
    font-size: 1.4rem;
    line-height: 30px;
  }
}

@media (max-width: 375px) {
  .type-job {
    width: 85px;
  }

  .type-job span {
    font-size: 1.3rem;
    line-height: 25px;
  }
}

/**************** ポイント ***************/
.point-box {
  background-color: var(--blue03);
  padding: 20px 2% 62px;
}

.point-head {
  position: relative;
  font-size: var(--size40);
  color: var(--navy);
  text-align: center;
  padding-bottom: 60px;
}

.point-head p {
  position: relative;
  display: inline-block;
}

.point-head p::before {
  content: "";
  position: absolute;
  top: -20%;
  width: 100%;
  max-width: 50px;
  aspect-ratio: 50 / 50;
  transform: translate(-100%, 50%);
  background: center/contain no-repeat url("../img/common/item01.png");
  pointer-events: none;
  z-index: 1;
}

.point-list {
  justify-content: center;
  gap: 7.5rem;
}

.point {
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--white);
  border: 3px solid var(--navy);
  border-radius: var(--border50);
  width: 100%;
  max-width: 250px;
  aspect-ratio: 1 / 1;
  height: auto;
  flex-shrink: 1;
}

.point::after {
  content: "";
  position: absolute;
  width: 41.804%;
  aspect-ratio: 102 / 103;
  transform: translate(-50%, -100%);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}
.point01::after {
  background-image: url("../img/common/num01.png");
}
.point02::after {
  background-image: url("../img/common/num02.png");
}
.point03::after {
  background-image: url("../img/common/num03.png");
}

@media (max-width: 1200px) {
  .point-list {
    gap: 4.5rem;
  }
}

@media (max-width: 1024px) {
  .point-list {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .point-head p::before {
    max-width: none;
    width: 60.45%;
  }

  .point {
    width: 100%;
    max-width: 210px;
  }
  .point::after {
    width: 36%;
    top: 20%;
  }
}

@media (max-width: 375px) {
  .point {
    max-width: 200px;
  }
}

/*******************************************************
3.セクション
*******************************************************/
.section-ttl.ttl-3::before {
  background: center/contain no-repeat url("../img/common/icon03.png");
}
.section3 {
  position: relative;
}

.section3::before {
  content: "";
  position: absolute;
  width: 16.607%;
  top: 0;
  left: 0;
  aspect-ratio: 230 / 1400;
  background: center/contain no-repeat url("../img/back/si_left.png");
  pointer-events: none;
  z-index: -1;
}

.section3::after {
  content: "";
  position: absolute;
  width: 24.549%;
  right: 0;
  bottom: 0;
  aspect-ratio: 340 / 1476;
  background: center/contain no-repeat url("../img/back/si_right.png");
  pointer-events: none;
  z-index: -1;
}

.card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem 5rem;
  padding-top: 70px;
}

.open-modal.card-modal {
  position: relative;
  max-width: 465px;
  width: 100%;
  display: block;
}

.card {
  position: relative;
  background-color: var(--blue01);
  padding-bottom: 35px;

  /* max-width: 465px;
  width: 100%; */
}

.card-pic {
  position: relative;
}
.card-pic img {
  width: 100%;
}

.type-intv {
  position: absolute;
  bottom: 0;
  left: 0;
}

.type-intv span {
  color: var(--white);
  font-size: 1.7rem;
  line-height: 43px;
  padding: 0 20px;
}

.open-modal.card-modal:hover {
  opacity: 0.7;
}

.txt-box {
  flex-direction: column;
  gap: 0.5rem;
  padding: 45px 27px 30px;
}

.card-txt {
  font-size: 2.3rem;
  color: var(--white);
  width: fit-content;
  border-bottom: 2px solid var(--yellow);
}

.card-btn {
  background-color: var(--white);
  border: 2px solid var(--navy);
  border-radius: 5px;
  max-width: 200px;
  width: 100%;
  height: 48px;
  margin-left: auto;
  margin-right: 5.807%;
}

.card-button {
  font-size: 15px;
  color: var(--navy);
}

@media (max-width: 1024px) {
  .card-txt {
    font-size: 2rem;
  }
}

@media (max-width: 860px) {
  .card-txt {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .card-list {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .txt-box {
    padding: 40px 4% 30px;
  }

  .card-txt {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .type-intv span {
    font-size: 1.6rem;
    line-height: 40px;
  }

  .card-txt {
    font-size: 2rem;
  }
}

@media (max-width: 385px) {
  .card-txt {
    font-size: 1.7rem;
  }

  .card-btn {
    width: 55%;
    height: 44px;
  }

  .card-button {
    font-size: 14px;
  }
}

@media (max-width: 332px) {
  .card-txt {
    font-size: 1.6rem;
  }
}

/*******************************************************
4.セクション
*******************************************************/
.section-ttl.ttl-4::before {
  background: center/contain no-repeat url("../img/common/icon04.png");
}

.section4 {
  position: relative;
  z-index: 0;
}

.section4::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -5;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url(../img/back/bc.jpg);
  background-size: cover;
  position: absolute;
  height: 100%;
  background-attachment: fixed;
}

.support-wrapper {
  background-color: var(--white);
  border-radius: var(--border20);
  padding: 62px 60px;
  margin-top: 40px;
}

.support-outer {
  gap: 4rem;
}

.sup-box {
  flex-direction: column;
  max-width: 300px;
  width: 100%;
}

/* 奇数 */
.sup-box:nth-child(odd) {
  background: var(--blue02);
}

/* 偶数 */
.sup-box:nth-child(even) {
  background: var(--blue03);
}

.sup-pic {
  position: relative;
}

.sup-number {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  justify-content: center;
  align-items: center;
  text-align: center;

  border-radius: var(--border50);
  width: 60px;
  height: 60px;
}

.sup-number span {
  color: var(--navy);
  font-size: var(--size32);
  display: inline-block;
  transform: translateY(-1%);
}

.sup-txtbox {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 40px 20px 32px;
}

.sup-head {
  color: var(--navy);
  font-size: var(--size27);
}

.sup-txt {
  font-size: var(--size17);
}

@media (max-width: 1024px) {
  .support-wrapper {
    padding: 62px 2%;
  }

  .support-outer {
    gap: 2.5rem;
  }
}

@media (max-width: 860px) {
  .support-outer {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }

  .sup-box {
    max-width: 500px;
  }
}

@media (max-width: 480px) {
  .sup-txtbox {
    gap: 1rem;
  }
}

/*******************************************************
5.セクション
*******************************************************/
.section-ttl.ttl-5::before {
  background: center/contain no-repeat url("../img/common/icon05.png");
}

.section5 {
  position: relative;
}

.section5::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35.091%;
  aspect-ratio: 486 / 1070;
  pointer-events: none;
  background: center/contain no-repeat url("../img/back/qa_left.png");
  z-index: -1;
}

.section5::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 27.582%;
  aspect-ratio: 382 / 1790;
  pointer-events: none;
  background: center/contain no-repeat url("../img/back/qa_right.png");
  z-index: -1;
}

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

/******** 全体 *******/
.toggle-main dl,
.toggle-main dd {
  margin: 0;
}

.toggle {
  margin: 0;
}

.faq-box {
  padding-top: 42px;
}

.toggle-link {
  align-items: center;
  justify-content: flex-start;
  background-color: var(--blue01);
  font-size: var(--size23);
  color: var(--white);
  cursor: pointer;
  padding: 15px 26px;
  position: relative;
}

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

/******** Q *******/
.toggle-link .icon-q {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background-color: var(--white);
  flex-shrink: 0;
}
.icon-q span {
  font-size: 2.3rem;
  color: navy;
  line-height: 1;
}

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

.toggle-link .plus-minus::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 30px;
  background-color: var(--white);
  top: -13px;
  left: 13px;
  transition: all 0.3s ease;
}

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

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

.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: 48px;
  height: 48px;
  background-color: var(--navy);
  flex-shrink: 0;
}

.icon-a span {
  font-size: 2.3rem;
  color: var(--white);
  line-height: 1;
}

.toggle-main dd {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  position: relative;
  background-color: var(--blue03);
  font-size: 2.1rem;
  padding: 34px 26px;
}

@media (max-width: 1024px) {
  .faq-box {
    padding-bottom: 40px;
  }

  .toggle-main dd {
    font-size: 1.9rem;
  }

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

@media (max-width: 768px) {
  .toggle-main dd {
    font-size: 1.7rem;
  }

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

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

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

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

  .toggle-main dd {
    font-size: 16px;
  }

  .icon-q span,
  .icon-a span {
    font-size: 2rem;
  }

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

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

  .toggle-main dd {
    padding: 25px 15px;
  }

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

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

@media (max-width: 375px) {
  .toggle-main dd {
    font-size: 1.5rem;
  }

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

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

  .toggle-link .plus-minus::after {
    height: 20px;
    top: -8px;
    left: 9px;
  }
}
/**************** FAQ ***************/

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

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

.join-wrapper::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 4%;
  width: 22.383%;
  aspect-ratio: 310 / 400;
  pointer-events: none;
  background: center/contain no-repeat url("../img/join01.jpg");
  z-index: 1;
}

.join-wrapper::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 4%;
  width: 26.354%;
  aspect-ratio: 365 / 440;
  pointer-events: none;
  background: center/contain no-repeat url("../img/join02.png");
  z-index: 1;
}

.join-us {
  max-width: 300px;
  width: 100%;
  margin: 0 auto 20px;
}

.join-txt {
  max-width: 850px;
  width: 100%;
  text-align: center;
  letter-spacing: var(--ls60);
  line-height: var(--line00);
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .join-wrapper::before {
    left: 0;
  }

  .join-wrapper::after {
    right: 0;
  }
}

@media (max-width: 1024px) {
  .join-wrapper::before {
    left: 0;
    top: 4%;
    aspect-ratio: 310 / 310;
    background: center/contain no-repeat url("../img/join01_2.jpg");
  }

  .join-wrapper::after {
    right: 0;
    top: 50%;
    width: 100%;
    aspect-ratio: 1400 / 300;
    background: center/contain no-repeat url("../img/join02_2.png");
  }
}

@media (max-width: 768px) {
  .join-wrapper::before {
    left: 0;
    top: 10%;
  }

  .join-wrapper::after {
    right: 0;
    top: 80%;
  }
}

@media (max-width: 500px) {
  .join-wrapper {
    padding-top: 50px;
    margin-bottom: 100px;
  }
  .join-wrapper::before {
    display: none;
  }

  .join-wrapper::after {
    right: 0;
    top: 105%;
    width: 100%;
    aspect-ratio: 980/ 300;
    background: center/contain no-repeat url("../img/join02_3.png");
  }
}

@media (max-width: 480px) {
  .join-wrapper {
    padding-top: 90px;
  }

  .join-us {
    max-width: 200px;
  }
}

@media (max-width: 375px) {
  .join-wrapper {
    padding-top: 65px;
  }
}
/*******************************************************
追従ボタン
*******************************************************/
.slidebtn-wrap {
  display: none;
}

.slide-btn:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .slidebtn-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: row;
    gap: 0;
    z-index: 1;
  }

  .slide-btn {
    flex: 1;
    height: 70px;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 17px;
    letter-spacing: 0.1em;
    text-decoration: none;
  }
}

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

/*******************************************************
モーダル  (.sec2/.sec3)
*******************************************************/

/******** 入り口ボタン *******/
.modal-wrapper {
  padding: 40px 0;
}

.open-modal.open-jobmodal {
  color: var(--white);
  font-size: 1.6rem;
  text-align: center;
  border-radius: var(--border10);
  max-width: 300px;
  width: 100%;
  height: 65px;
  display: block;
  margin: 0 auto;
  line-height: var(--line05);
}

.open-modal.open-jobmodal:hover {
  opacity: 0.7;
  transform: translateY(-1px);
}

.arrow {
  position: relative;
}

.arrow::after {
  content: "";
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);

  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent var(--white);
}

@media (max-width: 768px) {
  .modal-wrapper {
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .open-modal.open-jobmodal {
    font-size: 1.5rem;
    width: 80%;
    height: 60px;
  }
}

@media (max-width: 375px) {
  .open-modal.open-jobmodal {
    font-size: 1.5rem;
    width: 80%;
    height: 60px;
  }
}

/******** モーダル全体 *******/
.modal {
  opacity: 0;
  pointer-events: none; /* 非表示中はクリック不可 */
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(70, 115, 177, 0.9);
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto; /* スクロール可能 */
  padding: 95px 0;
  z-index: 11;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.fade-in {
  transform: translateY(100%);
  transition: all 0.5s ease;
}

body.modal-open {
  overflow: hidden; /* スクロール禁止 */
}

/* モーダル表示中にヘッダーを止める */
body.modal-open .header {
  position: static;
}

/* モーダル表示中はハンバーガー非表示 */
body.modal-open .hamburger {
  display: none !important;
}

/* モーダル表示中は追従ボタン非表示 */
body.modal-open .slidebtn-wrap {
  display: none !important;
}

/* モーダル内側 */
/* .modal-content {
  position: relative;
  background-color: var(--white);
  border-radius: var(--boder20);
  padding: 82px 39px 110px 39px;
  max-width: 980px;
  width: 100%;
} */

/******** モーダル中身(.sec2) *******/

.intro-wapper {
  position: relative;
  background-color: var(--white);
  padding: 0 20px;
}

.intro-top {
  text-align: center;
  padding: 90px 0;
}

.intro-icon {
  display: block;
  width: 21%;
  margin: 0 auto;
}

.intro-head {
  font-size: var(--size50);
}

.intro-sub {
  font-size: var(--size28);
  color: var(--navy);
}

.intro-outer {
  flex-direction: column;
  gap: 4rem;
  padding-bottom: 80px;
}

.intro-box {
  background-color: var(--blue03);
  max-width: 980px;
  width: 100%;
  gap: 2.5rem;
  align-items: stretch;
}

.intro-pic {
  width: 350px;
  flex-shrink: 0;
}

.intro-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-txtbox {
  flex-direction: column;
  gap: 2rem;
  padding: 25px 20px 25px 0;
}

.txt-head {
  align-items: center;
  gap: 0.8rem;
  font-size: var(--size24);
  align-items: baseline;
}

.txt-head span {
  width: 18px;
  height: 18px;
  background: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
}

.intro-txt {
  max-width: 522px;
  width: 100%;
  font-size: var(--size17);
}

.btn-set {
  flex-direction: column;
  gap: 4.5rem;
  padding-bottom: 85px;
}

.modal-btn {
  max-width: 400px;
  width: 100%;
  height: 88px;
  margin: 0 auto;
}
.modal-button {
  border-radius: var(--border10);
  color: var(--white);
  font-size: 1.9rem;
}

@media (max-width: 860px) {
  .intro-box {
    flex-direction: column;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
  }

  .intro-top {
    padding: 45px 0;
  }

  .intro-pic {
    width: 100%;
  }

  .intro-txtbox {
    padding: 20px;
  }
}

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

  .intro-icon {
    max-width: 130px;
    width: 100%;
  }

  .btn-set {
    gap: 4rem;
    padding-bottom: 70px;
  }

  .modal-btn {
    height: 80px;
  }
  .modal-button {
    font-size: 1.7rem;
  }

  .intro-outer {
    padding-bottom: 55px;
  }

  .modal-btn {
    max-width: 300px;
    height: 80px;
  }
}

@media (max-width: 375px) {
  .btn-set {
    gap: 3rem;
  }
}

/******** モーダル中身(.sec3) *******/

.interview-wrapper {
  position: relative;
  background-color: var(--white);
  padding: 116px 5% 90px;
}
.person-box {
  position: relative;
  width: 100%;
  z-index: 0;
  margin-bottom: 68px;
}

.person-txt-box {
  position: absolute;
  width: 100%;
  top: 15%;
  left: 0;
}

.person-pic {
  width: 50%;
  margin-left: auto;
}

.person-head-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.person-head {
  font-size: 32px;
  color: var(--navy);
  background-color: var(--yellow);
  width: fit-content;
  line-height: 55px;
  padding: 0 10px 0 14px;
}

.sp-only {
  display: none;
}

.person-txt {
  flex-direction: column;
  margin-top: 34px;
}

.person-name {
  font-size: var(--size32);
}

.person-name span {
  font-size: 1.5rem;
}

.faq-list {
  padding-bottom: 40px;
}

.last-faq {
  padding-bottom: 80px;
}

.q-box {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding-bottom: 20px;
}

.q {
  background-color: var(--navy);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.q span {
  font-size: 2.3rem;
  color: var(--white);
  line-height: 1;
}

.q-txt {
  font-size: var(--size23);
  flex: 1;
}

.a-box {
  background-color: var(--blue03);
  border-radius: var(--border10);
  max-width: 1000px;
  width: 100%;
  padding: 17px 20px;
}

.a-txt {
  font-size: var(--size17);
}

@media (max-width: 1024px) {
  .interview-wrapper {
    padding: 90px 0 80px;
  }

  .person-head {
    font-size: 2.8rem;
  }
}

@media (max-width: 860px) {
  .person-head {
    font-size: 2.6rem;
    line-height: 50px;
  }
}

@media (max-width: 768px) {
  .interview-wrapper {
    padding: 80px 0 70px;
  }

  .person-txt-box {
    position: static;
    width: 100%;
  }

  .person-box {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 50px;
  }

  .person-pic {
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
  }

  .person-head {
    padding: 0 7px;
  }

  .faq-list {
    padding-bottom: 30px;
  }

  .last-faq {
    padding-bottom: 70px;
  }
}

@media (max-width: 513px) {
  .person-head {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  .interview-wrapper {
    padding: 60px 0;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }

  .person-head-box {
    gap: 0.6rem;
  }

  .person-head {
    font-size: 2rem;
    line-height: 40px;
  }

  .person-txt {
    margin-top: 28px;
  }
}

@media (max-width: 375px) {
  .person-box {
    margin-bottom: 35px;
  }
}

/******** 閉じるボタン *******/
.modal .close {
  position: absolute;
  top: -1%;
  right: -2%;
  font-size: 3rem;
  color: var(--white);
  background-color: var(--blue01);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 12;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
  line-height: 1;
}

.close span {
  display: block;
  transform: translateY(-2px);
}

.close:hover {
  opacity: 0.7;
  transform: translateY(-1px);
}

.close-btn {
  max-width: 300px;
  width: 100%;
  height: 88px;
  margin: 0 auto;
}

.close-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-radius: var(--border10);
  background-color: var(--white);
  border: 3px solid var(--navy);
  color: var(--navy);
  font-size: 1.9rem;
}

.close-button span {
  position: absolute;
  right: 5%;
  font-size: 2.4rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .modal .close {
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
  }

  .close-btn {
    height: 80px;
  }

  .close-button {
    font-size: 1.7rem;
  }

  .close-button span {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .modal .close {
    font-size: 2.1rem;
    width: 45px;
    height: 45px;
  }

  .close-btn {
    max-width: 230px;
  }
}

/*******************************************************
トップボタン
*******************************************************/
/* .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%;
  }
} */

/*******************************************************
フッター
*******************************************************/
footer {
  position: relative;
  background-color: var(--navy);
  color: var(--white);
  font-size: 1.2rem;
  text-align: center;
  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;
  }
}
