@charset "utf-8";
html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 1rem = 10px */
}
a {
  transition: 0.3s ease;
}

:root {
  /* 色 例）color: var(--white); */
  --black: #3d4239;
  --white: #ffffff;

  --blue: #1f8edf;
  --yellow01: #ffe750;
  --yellow02: #fffbe3;
  --orange: #fe8f00;
  --navy: #002861;

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

  /* font-family */

  --zenkaku: "Zen Kaku Gothic New", sans-serif;
  --zenmaru: "Zen Maru Gothic", sans-serif;
  --cabin: "Cabin", sans-serif;
  --outfit: "Outfit", sans-serif;

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

  /* font */

  --size60: 6rem;
  --size40: 4rem;
  --size32: 3.2rem;
  --size30: 3rem;
  --size23: 2.3rem;

  --size19: 1.9rem;
  --size18: 1.8rem;
  --size17: 1.7rem;
  --size16: 1.6rem;

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

  /* line height */
  --line20: 2;
  --line19: 1.9;
  --line18: 1.8;
  --line17: 1.7;
  --line16: 1.6;
  --line15: 1.5;
  --line14: 1.4;
  --line13: 1.3;
  --line12: 1.2;

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

@media (max-width: 1024px) {
  :root {
    --size60: 5.5rem;
    --size40: 3.5rem;
    --size32: 3rem;
    --size30: 2.8rem;
    --size23: 2.1rem;
  }
}

@media (max-width: 860px) {
  :root {
    --size60: 5rem;
    --size40: 3.2rem;
    --size32: 2.8rem;
    --size30: 2.6rem;
    --size23: 2rem;
    --size18: 1.7rem;
  }
}

@media (max-width: 768px) {
  :root {
    --size60: 4rem;
    --size40: 2.8rem;
    --size32: 2.4rem;
    --size30: 2.4rem;
    --size23: 1.9rem;
    --size19: 1.7rem;
    --size18: 1.6rem;
  }
}

@media (max-width: 480px) {
  :root {
    --size60: 3.7rem;
    --size40: 2.4rem;
    --size32: 2rem;
    --size30: 1.9rem;
    --size19: 1.6rem;

    --ls60: 0.02em;
  }
}

@media (max-width: 375px) {
  :root {
    --size60: 3.2rem;
    --size40: 2.4rem;
  }
}

body {
  background-color: var(--white);
  color: var(--black);
  font-family: var(--zenkaku);
  font-weight: var(--Bold);
  font-size: var(--size19);
  line-height: var(--line16);

  text-align: justify;
  width: 100%;
}

/* ↓↓↓↓ヘッダー分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: transparent;
  z-index: 5;
  padding-left: 2.77%;
  padding-right: 2.5512%;
  transition: position 0.3s;
}

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

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

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

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

.header-btnset {
  display: flex;
  gap: 2rem;
}

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

@media (max-width: 768px) {
  .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height70);
  }

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

/*******************************************************
ハンバーガー
*******************************************************/
.hamburger {
  position: relative;
  width: 55px;
  height: 36px;
  cursor: pointer;
  z-index: 11;
}

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

/* 各線の位置 */
.hamburger span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%);
}
.hamburger span:nth-of-type(2) {
  top: 50%;
  transform: translateX(-50%);
}
.hamburger span:nth-of-type(3) {
  top: 100%;
  transform: translateX(-50%);
}
/* ハンバーガーがアクティブ時 */
.hamburger.active span:nth-of-type(1) {
  top: 50%;
  transform: translateX(-50%) rotate(135deg);
  background-color: var(--navy);
}

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

.hamburger:hover {
  opacity: 0.7;
}

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

  .hamburger span {
    width: 45px;
  }
}

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

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

.burger-mask {
  display: none;
  position: fixed;
  z-index: 2;
  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%;

  width: 60%;
  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;

  padding: 80px 40px 60px;
}

.menu-list {
  text-decoration: none;
  line-height: 1.6;
  min-height: 60px;
}

.menu-jp {
  font-size: 2rem;
  line-height: 1.4;
  padding: 1em;

  width: 100%;
}

.menu-list:hover {
  color: var(--blue);
}

.menu-btnset {
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 768px) {
  .navi {
    width: 80%;
  }

  .menu {
    padding: 55px 35px;
  }

  .menu-jp {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .menu-jp {
    font-size: 1.6rem;
  }
}

/* #message,
#faq,
#movie,
#search {
  scroll-margin-top: 80px;
}

@media (max-width: 768px) {
  #message,
  #faq,
  #movie,
  #search {
    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;
  background-color: var(--white);
  border: var(--blue) solid 2px;
  color: var(--blue);
  border-radius: var(--border10);
}

/* ヘッダーボタン */
.header-btn {
  width: 240px;
  height: 80px;
  margin: 0 auto;
}

.header-button {
  font-size: 2.1rem;
  background-color: var(--blue);
  color: var(--white);
  border: none;
  line-height: var(--line12);
  font-weight: var(--Medium);
}

.header-button span {
  font-size: 1.9rem;
}

.header-btn:nth-child(2) .header-button {
  background-color: var(--orange);
}

/* サーチボタン */
.type-btn {
  width: 280px;
  height: 65px;
  margin: 50px auto 0;
}

.style-btn {
  max-width: 245px;
  width: 100%;
  height: 65px;
  margin: 0 auto;
}

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

.menu-button {
  font-size: 1.6rem;
}
/* joinusボタン */
.join-btn {
  max-width: 480px;
  width: 100%;
  height: 90px;
  margin: 0 auto;
}

.join-button {
  font-size: 2.1rem;
  background-color: var(--blue);
  color: var(--white);
  border: none;
}

/* ↓↓↓↓矢印↓↓↓↓ */

.arrow {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.join-btn .arrow {
  right: 30px;
}

.arrow img {
  width: 8px;
  height: auto;
  display: block;
}

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

/* ↓↓↓↓ホバー↓↓↓↓ */
.btn:hover {
  background-color: var(--blue);
  border: none;
  color: var(--white);
}

.header-btn:hover,
.slide-btn:hover {
  opacity: 0.7;
}
/* ↑↑↑↑ホバー↑↑↑↑ */

@media (max-width: 1024px) {
  .header-btn {
    width: 220px;
    height: 70px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .style-btn {
    flex: 0 1 230px;
    max-width: 230px;
    width: 100%;
    margin: 0;
  }

  .join-btn {
    max-width: 400px;
  }

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

@media (max-width: 480px) {
  .join-btn {
    max-width: 300px;
    height: 80px;
  }

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

  .arrow {
    right: 10px;
  }
}

/*******************************************************
共通
*******************************************************/
/******** 余白 *******/
.inner-1100 {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.inner-980 {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1150px) {
  .inner-980,
  .inner-1100 {
    padding-inline: max(5%, 20px);
  }
}

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

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

@media (max-width: 375px) {
  .sec-pd {
    padding: 80px 0;
  }
} */

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

.br-860 {
  display: none;
}

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

  .br-860 {
    display: block;
  }
}

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

/******** 文字 *******/

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

.section-ttl {
  justify-content: center;
  padding-bottom: 80px;
}

.ttl-jp {
  display: inline-block;
  color: var(--blue);
  font-size: var(--size60);
  letter-spacing: var(--ls60);
}

@media (max-width: 768px) {
  .section-ttl {
    padding-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .section-ttl {
    padding-bottom: 40px;
  }
}

/*******************************************************
MV
*******************************************************/
.mv {
  position: relative;
}

.mv-item {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1;
}

/*******************************************************
01_section
*******************************************************/

.section1 {
  position: relative;
  padding: 140px 0 135px;
  background: center/cover no-repeat url("../img/back/01.jpg");
}

.search-box {
  padding-bottom: 8rem;
}

.search-box:last-child {
  padding-bottom: 0;
}

.search-head {
  align-items: center;
  padding-bottom: 40px;
  font-size: var(--size40);
  color: var(--navy);
  letter-spacing: var(--ls60);
  gap: 2rem;
}

.search-icon {
  width: 61px;
  flex-shrink: 0;
  object-fit: contain;
}
.type-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.type-box {
  background-color: var(--yellow02);
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
}

.img_pic {
  max-width: 530px;
  width: 100%;
}

.type {
  color: var(--orange);
  text-align: center;
  font-size: var(--size32);
  padding: 30px 0 23px;
}

.type_txt {
  padding: 0 35px;
  /* min-height: 270px; */
  flex: 1;
  font-size: var(--size18);
  font-weight: var(--Medium);
}

.style-list {
  gap: 4rem;
}

@media (max-width: 768px) {
  .section1 {
    padding: 100px 0 80px;
  }
  .search-box {
    padding-bottom: 6rem;
  }
  .type-list {
    grid-template-columns: 1fr;
  }

  .type-box {
    max-width: 500px;
    width: 100%;
    padding-bottom: 40px;
    margin: 0 auto;
  }

  .type {
    padding: 20px 0;
  }

  .type_txt {
    padding: 0 25px;
  }

  .style-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .search-head {
    gap: 1rem;
  }
  .search-icon {
    width: 48px;
  }
}
/******** map *******/

.map_set {
  gap: 4rem;
}

.map_img {
  width: min(100%, 545px);
  margin: 0 auto;
}
.map-link {
  &:hover {
    .map-area {
      fill: var(--blue);
    }
  }
}

.map-area {
  transition: 0.3s ease;
}

/* svg text {
  font-family: "Zen Kaku Gothic New", sans-serif;
} */

.erea_23 {
  font-size: var(--size32);
  font-weight: var(--Medium);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 40px;
}

.erea_23 span {
  width: 22px;
  height: 22px;
  background-color: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.search_btnlist {
  flex-direction: column;
  gap: 6rem;
}

.erea_btnlist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.erea_btn {
  width: 240px;
  height: 65px;
  font-size: 1.8rem;
}

@media (max-width: 1024px) {
  .erea_btn {
    width: 210px;
    font-size: 1.6rem;
    line-height: var(--line13);
  }
}

@media (max-width: 860px) {
  .erea_btn {
    width: 160px;
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .map_set {
    flex-direction: column;
  }

  .search_btnlist {
    gap: 4rem;
  }

  .erea_btnlist {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .erea_btn {
    max-width: 240px;
    width: 100%;
  }
  .erea_23 {
    gap: 1rem;
    padding-bottom: 20px;
  }

  .erea_23 span {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 560px) {
  .erea_btnlist {
    grid-template-columns: repeat(2, 1fr);
  }
  .erea_btn {
    font-size: 1.5rem;
  }
}
/*******************************************************
02_section
*******************************************************/
.section2 {
  position: relative;
  padding: 200px 0 55px;
  z-index: 0;
}

.section2::after {
  content: "";
  position: absolute;
  top: 100px;
  left: 0;
  width: min(100%, 1250px);
  height: calc(100% - 255px);
  background: var(--yellow02);
  border-radius: 0 50px 50px 0;
  z-index: -1;
  pointer-events: none;
}

.cnt_head {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  width: 100%;
  background-color: var(--orange);
  color: var(--white);
  font-size: var(--size32);
  letter-spacing: var(--ls60);
  margin: 0 auto 50px;
}

.job-head {
  text-align: center;
  font-size: var(--size23);
  color: var(--navy);
}

@media (max-width: 1260px) {
  .section2::after {
    width: min(93%, 1250px);
  }
}

@media (max-width: 768px) {
  .section2 {
    padding: 100px 0 50px;
  }
  .section2::after {
    top: 60px;

    height: calc(100% - 160px);
  }
}

@media (max-width: 480px) {
  .cnt_head {
    max-width: 280px;
  }
}
/******** 環境 *******/

.environment-outer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  padding-bottom: 115px;
}

.environment-box {
  position: relative;
  max-width: 470px;
  width: 100%;
  background-color: var(--white);
  padding: 35px 0 50px;
  box-shadow: 0 0 20px rgba(158, 158, 158, 0.5);
}

.box02,
.box04 {
  transform: translateY(40px);
}

.number {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-20%, -20%);
  display: inline-flex;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--yellow01);
  border-radius: var(--border50);
  flex-shrink: 0;
}
.number span {
  font-size: 5rem;
  color: var(--blue);
  font-family: var(--outfit);
  font-weight: 600;
}

.environment-img {
  width: 232px;
  margin: 0 auto;
}

.environment-txt {
  font-size: var(--size18);
  font-weight: var(--Medium);
  padding: 15px 35px 0;
}

@media (max-width: 860px) {
  .environment-box {
    padding: 35px 0;
  }

  .number {
    width: 60px;
    height: 60px;
  }
  .number span {
    font-size: 4rem;
  }
  .environment-img {
    width: 180px;
  }
}

@media (max-width: 768px) {
  .environment-outer {
    grid-template-columns: repeat(1, 1fr);

    padding-bottom: 80px;
  }
  .box02,
  .box04 {
    transform: none;
  }

  .environment-box {
    max-width: 400px;
    margin: 0 auto;
  }

  .number {
    width: 55px;
    height: 55px;
  }

  .number span {
    font-size: 3.5rem;
  }

  .environment-img {
    max-width: 140px;
    width: 100%;
  }
}

/******** データ *******/
.data-outer {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  flex-wrap: wrap;
}
.data-box {
  flex: 1 1 310px;
  max-width: 310px;
  background-color: var(--white);
  padding: 25px 0;
  box-shadow: 0 0 20px rgba(158, 158, 158, 0.5);
}

.head-line {
  display: block;
  width: 270px;
  height: 2px;
  background: var(--yellow01);
  margin: 0 auto 17px;
}

.data-img {
  max-width: 285px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .data-img {
    max-width: 240px;
  }
}

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

.section3 {
  position: relative;
  background: var(--white);
  padding: 80px 0 145px;
}

.txt_box {
  position: relative;
  background-color: #e2f6ff;
  border-radius: var(--border100);
  max-width: 650px;
  width: 100%;
  padding: 32px 0;
  margin: 0 auto;
}

.txt_box p {
  text-align: center;
  font-size: 2.1rem;
  color: var(--navy);
  letter-spacing: var(--ls60);
}

.txt_box::before {
  content: "";
  position: absolute;
  bottom: 2%;
  left: 50%;
  border-style: solid;
  border-width: 30px 13px 0 13px;
  border-color: #e2f6ff transparent transparent transparent;
  translate: -50% 100%;
}

.content {
  position: relative;
  margin-top: 93px;
}

@media (max-width: 768px) {
  .section3 {
    padding: 80px 0 100px;
  }
  .txt_box {
    max-width: 550px;
    width: 100%;
    padding: 24px 0;
  }
  .txt_box p {
    font-size: 1.9rem;
  }
}

@media (max-width: 480px) {
  .section3 {
    padding: 60px 0 80px;
  }

  .txt_box p {
    font-size: 1.7rem;
  }
  .content {
    margin-top: 60px;
  }
}

/* ==============================
   Swiper全体のスタイル
============================== */
.swiper {
  position: relative;
  width: 100%;
  overflow: visible;
}

.staff-swiper .swiper-wrapper {
  display: flex;
  margin-bottom: 50px;
  height: 100%;
}

.staff-swiper .swiper-slide {
  position: relative;
  flex: 0 0 auto;
  width: 525px;
  height: auto;
  justify-content: center;
  background-color: var(--yellow02);
}

@media (max-width: 768px) {
  .staff-swiper .swiper-slide {
    width: 430px;
  }
}

@media (max-width: 480px) {
  .staff-swiper .swiper-slide {
    width: 300px;
  }
}

/******** 中身 *******/
.contents {
  position: relative;
  padding: 42px 0 35px;
  z-index: 1;
}

.content-head {
  display: flex;
  justify-content: center;
  font-size: var(--size30);
  color: var(--orange);
  background-color: var(--yellow01);
  width: 300px;
  line-height: 60px;
  margin: 0 0 0 auto;
}

.prof {
  font-size: 2.2rem;
  font-weight: var(--Medium);
  text-align: end;
  padding-right: 30px;
}

.content-txt {
  font-size: 1.7rem;
  font-weight: var(--Medium);
  letter-spacing: -0.1px;
  max-width: 424px;
  margin: 65px 0 0 74px;
}

.shadow {
  position: absolute;
  bottom: 0;
  z-index: 0;
}

.shadow img {
  max-width: 220px;
  width: 100%;
}

@media (max-width: 768px) {
  .content-head {
    width: 240px;
    line-height: 45px;
  }

  .prof {
    font-size: 2rem;
  }

  .content-txt {
    font-size: 1.6rem;
    margin: 40px 30px 0 70px;
  }
}

@media (max-width: 480px) {
  .content-head {
    width: 180px;
    line-height: 40px;
  }

  .prof {
    font-size: 1.7rem;
  }

  .content-txt {
    font-size: 1.6rem;
    margin: 20px auto 0;
    padding: 0 20px;
  }

  .shadow img {
    max-width: 200px;
    width: 100%;
  }
}

/* ==============================
   Swiperナビゲーション配置
============================== */
.swiper-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==============================
   左右ボタン（Pagination Flex）
============================== */
/* ボタンの親配置 */

.swiper-buttons {
  display: flex;
  align-items: center;
  gap: 3rem;
}

/* 丸いボタン */
.swiper-button-prev,
.swiper-button-next {
  position: relative;
  width: 45px !important;
  height: 45px !important;
  flex: 0 0 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--orange);
  margin: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: none;
}

.swiper-button-prev::before,
.swiper-button-next::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  top: 50%;
}

.swiper-button-prev::before {
  left: 55%;
  transform: translate(-50%, -50%) rotate(-135deg);
}

.swiper-button-next::before {
  left: 45%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.7;
}

.swiper-pagination {
  position: static;
}

/* ○○○○ */
.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: var(--white);
  border: 1px solid var(--orange);
  margin: 0 10px !important;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--orange);
}

.my-pagination {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.my-pagination span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--orange);
  cursor: pointer;
}

.my-pagination span.active {
  background: var(--orange);
}

@media (max-width: 768px) {
  .swiper-buttons {
    gap: 2rem;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 40px !important;
    height: 40px !important;
    flex: 0 0 40px;
  }

  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 5px !important;
  }
}

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

.section4 {
  position: relative;
  background: center/cover no-repeat url("../img/back/02.jpg");
  padding: 100px 0 264px;
}

@media (max-width: 768px) {
  .section4 {
    padding: 80px 0 160px;
  }
}

@media (max-width: 480px) {
  .section4 {
    padding: 60px 0 150px;
  }
}

/******** faq *******/
/* -------------------------------
全体スタイル
--------------------------------- */

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

.toggle {
  margin: 0; /* もしくは上下に統一したい値 */
}

.faq-box .toggle:first-child {
  margin-top: -30px;
}

/* トグルリンク全体 */
.toggle-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: var(--white);
  cursor: pointer;
  padding: 22px 24px;
  border-radius: var(--border10);
  position: relative;
}

.toggle-link .left-side {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex: 1;
  font-size: 2.4rem;
  font-weight: var(--Medium);
}

/* Qアイコン */
.toggle-link .icon-q {
  display: inline-flex;
  justify-content: center;
  width: 55px;
  height: 55px;
  background-color: #e2f6ff;
  border-radius: var(--border50);
  flex-shrink: 0;
}
.icon-q span {
  font-size: 2.4rem;
  color: var(--blue);
  font-family: var(--zenmaru);
  font-weight: var(--Bold);
  transform: translate(1px, 6px);
}

/* プラス/マイナス */
.toggle-link .plus-minus {
  margin-left: auto;
  width: 40px;
  height: 2px;
  background-color: var(--blue);
  position: relative;
  transition: all 0.3s ease;
}

.toggle-link .plus-minus::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 40px;
  background-color: var(--blue);
  top: -18px;
  left: 18px;
  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 {
  position: relative;
  padding: 23px 94px 0;
  font-weight: var(--Medium);
}

/* ↑↑↑↑faq↑↑↑↑ */

@media (max-width: 768px) {
  .toggle-link {
    padding: 18px 20px;
  }
  .toggle-link .left-side {
    font-size: 1.8rem;
  }
  .toggle-link .icon-q {
    width: 45px;
    height: 45px;
  }
  .icon-q span {
    transform: translate(0, 2px);
  }

  /* プラス/マイナス */
  .toggle-link .plus-minus {
    width: 30px;
  }

  .toggle-link .plus-minus::after {
    height: 30px;
    top: -14px;
    left: 14px;
  }

  .toggle-main dd {
    padding: 20px 79px 0;
  }
}

@media (max-width: 480px) {
  .toggle-link {
    padding: 18px;
  }
  .toggle-link .left-side {
    font-size: 1.7rem;
    gap: 1rem;
  }

  .toggle-link .icon-q {
    width: 42px;
    height: 42px;
  }
  .icon-q span {
    font-size: 2.1rem;
    transform: translate(0, 3px);
  }

  /* プラス/マイナス */
  .toggle-link .plus-minus {
    width: 25px;
  }

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

  .toggle-main dd {
    align-items: flex-start;
    padding: 20px 25px 0 73px;
  }
}

.shapes {
  position: absolute;
  bottom: 0;
  width: 100%;
}

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

.join-wrapper {
  background: center/cover no-repeat url("../img/back/back_join.png");
}

.join-box {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6.5rem;
  padding: 40px 0 0;
}

.join-txt {
  position: relative;

  font-size: var(--size40);
  color: var(--navy);
  letter-spacing: var(--ls60);
  display: block;
  z-index: 1;
}

.join-txt::after {
  content: "";
  position: absolute;
  bottom: -20%;
  width: 99.25%;
  aspect-ratio: 569 / 26;
  pointer-events: none;
  background: center/contain no-repeat url("../img/common/line.png");
  z-index: -1;
}

@media (max-width: 480px) {
  .join-box {
    gap: 4rem;
    padding: 40px 0;
  }
}

/*******************************************************
フッター
*******************************************************/
footer {
  position: relative;
  background-color: var(--blue);
  color: var(--white);
  font-size: 1.4rem;
  text-align: center;
  font-weight: var(--Medium);
  padding: 25px 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: 900px) {
  footer {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  footer {
    padding-top: 30px;
    padding-bottom: 100px;
  }
}

@media (max-width: 572px) {
  .footer-nav {
    flex-wrap: wrap;
  }
  .footer-nav > a:last-child::before {
    opacity: 0;
  }
}

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

/*******************************************************
追従ボタン
*******************************************************/

.slidebtn-wrap {
  display: none;
  position: fixed;

  z-index: 1;
}

.slide-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.7rem;
  width: 175px;
  height: 80px;
  text-decoration: none;
  white-space: normal;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.slidebtn-wrap .slide-btn:nth-child(2) {
  background-color: var(--orange);
}
@media (max-width: 768px) {
  .slidebtn-wrap {
    flex-direction: row;
    bottom: -0.1%; /* 下に固定 */
    left: 0;
    top: auto;
    width: 100%;
    transform: none;
    gap: 0;
  }

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

  .slidebtn-wrap.footer-overlap {
    border-top: 1px solid #fff;
  }
}

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

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

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

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

.pagetop:hover {
  opacity: 0.7;
}

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

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

  .pagetop::before {
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--white);
    border-left: 2px solid var(--white);
  }
}
