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

:root {
  /* 色 例）color: var(--white); */
  --black: #333333;
  --white: #ffffff;
  --white02: #f5fafa;
  --white03: #f5f5f0;
  --navy: #0a3c73;
  --pink: #eb7795;
  --blue01: #00afcd;
  --blue02: #32afb9;
  --blue03: #55aacd;
  --blue04: #d2faf5;
  --blue05: #e1f0eb;
  --blue06: #55a8cb;
  --blue07: #50c3dc;
  --green01: #d2e6dc;
  --green02: #0a8282;
  --green03: #078082;
  --green04: #d7e6e6;

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

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

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

  /* font */
  --size17: 1.7rem;
  --size18: 1.8rem;
  --size19: 1.9rem;
  --size20: 2rem;
  --size24: 2.4rem;
  --size28: 2.8rem;
  --size30: 3rem;
  --size32: 3.2rem;
  --size36: 3.6rem;
  --size40: 4rem;
  --size50: 5rem;

  /* 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 {
    --size19: 1.8rem;
    --size20: 1.8rem;
    --size28: 2.6rem;
    --size30: 2.8rem;
    --size32: 3rem;
    --size36: 3.2rem;
    --size40: 3.5rem;
    --size50: 4.5rem;
  }
}
@media (max-width: 860px) {
  :root {
    --size24: 2.2rem;
    --size40: 3.2rem;
    --size50: 4.2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --size18: 1.7rem;
    --size19: 1.7rem;
    --size24: 2rem;
    --size28: 2.3rem;
    --size30: 2.5rem;
    --size32: 2.6rem;
    --size36: 2.8rem;
    --size40: 3rem;
    --size50: 4rem;

    --ls200: 0.1em;
  }
}

@media (max-width: 480px) {
  :root {
    --size18: 1.6rem;
    --size19: 1.6rem;
    --size24: 1.9rem;
    --size28: 2.1rem;
    --size30: 2.3rem;
    --size32: 2.3rem;
    --size36: 2.5rem;
    --size40: 2.3rem;
    --size50: 3.5rem;
  }
}

@media (max-width: 375px) {
  :root {
    --size28: 1.8rem;
    --size30: 2.1rem;
    --size50: 3rem;
  }
}

body {
  background-color: var(--white02);
  color: var(--black);
  font-size: var(--size19);
  font-family: var(--ZenKaku);
  font-weight: var(--Bold);
  line-height: var(--line05);
  letter-spacing: var(--ls100);
  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(--white02);
  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;
  gap: 2.2rem;
  flex-shrink: 0; /* 左側を縮ませない */
}

.logo {
  max-width: 200px;
  width: 100%;
  display: block;
}

.recruit {
  background-color: var(--navy);
  width: fit-content;
  font-size: 1.2rem;
  color: var(--white);
  line-height: 30px;
  letter-spacing: var(--ls200);
  gap: 1.5rem;
  padding: 0 13px;
}

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

.btn-set {
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: calc(88px + 2%);
}

@media (max-width: 1024px) {
  .header-left {
    gap: 1rem;
  }

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

  .btn-set {
    gap: 1rem;
    padding: calc(55px + 2%);
  }
}

@media (max-width: 930px) {
  .header-btn,
  .corpo-btn {
    display: none;
  }
}

@media (max-width: 860px) {
  .recruit {
    letter-spacing: var(--ls50);
    gap: 1rem;
    padding: 0 10px;
  }
}

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

  .header-left {
    gap: 0;
  }

  .logo {
    width: 170px;
  }

  .recruit {
    font-size: 1.1rem;
    letter-spacing: 0;
    line-height: 25px;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .recruit {
    font-size: 1rem;
    padding: 0 5px;
  }
}

@media (max-width: 420px) {
  .logo {
    width: 140px;
  }
}

@media (max-width: 375px) {
  .logo {
    width: 130px;
  }

  .recruit {
    font-size: 0.9rem;
  }
}

@media (max-width: 350px) {
  .logo {
    width: 120px;
  }

  .recruit {
    font-size: 0.8rem;
  }
}

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

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

/* 各線の位置 */
.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: 1024px) {
  .hamburger {
    position: absolute;
    z-index: 11;
    cursor: pointer;
    transition: all 0.4s;
    align-items: center;
    right: 1%;
  }
}

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

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

  .hamburger span:nth-of-type(1) {
    top: 0;
    transform: translateX(-50%);
  }
  .hamburger span:nth-of-type(2) {
    top: 40%;
    transform: translateX(-50%);
  }
  .hamburger span:nth-of-type(3) {
    top: 80%;
    transform: translateX(-50%);
  }
}

@media (max-width: 375px) {
  .hamburger {
    width: 30px;
  }

  .hamburger span:nth-of-type(1) {
    top: 0;
    transform: translateX(-50%);
  }
  .hamburger span:nth-of-type(2) {
    top: 30%;
    transform: translateX(-50%);
  }
  .hamburger span:nth-of-type(3) {
    top: 60%;
    transform: translateX(-50%);
  }
}

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

.burger-mask {
  display: none;
  position: fixed;
  z-index: 9;
  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: 500px;
  width: 100%;
  height: 100%;
  background-color: var(--white03);
  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;

  gap: 25px;
  padding: 80px 0 60px;
}

.menu-list {
  color: var(--navy);
  text-decoration: none;
}

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

.menu-en {
  max-width: 318px;
  width: 60%;
}

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

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

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

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

  .menu-en {
    width: 50%;
    margin-top: -10px;
  }
}

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

/* #aboutus, */
#aboutjob,
/* #env, */
#data,
#search {
  scroll-margin-top: 80px;
}

@media (max-width: 768px) {
  /* #aboutus, */
  /* #aboutjob, */
  /* #env, */
  #data,
  #search {
    scroll-margin-top: 0;
  }

  #aboutus,
  #env {
    scroll-margin-top: -80px;
  }
}
/*******************************************************
ボタン
*******************************************************/
/* ボタン共通 */
.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0 10px;
}

.btn:hover {
  opacity: 0.7;
}

/* ヘッダーボタン */
.header-btn,
.corpo-btn {
  max-width: 250px;
  width: 100%;
  height: 80px;
  flex-shrink: 0;
}

.header-button,
.corpo-button {
  font-size: 2.1rem;
  color: var(--white);
  font-weight: var(--Medium);
  border-radius: var(--border10);
  line-height: 1.2;
  height: 100%;
}

.corpo-button {
  min-height: 50px;
}

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

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

/* tab内ボタン */
.ac-btn {
  max-width: 350px;
  height: 88px;
  margin: 0 auto;
  border-radius: var(--border10);
}

.ac-button {
  font-size: 2.2rem;
  color: var(--white);
  margin-top: 75px;
  font-weight: var(--Medium);
  letter-spacing: var(--ls50);
}

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

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

/* 矢印 */
.arrow {
  position: absolute;
  right: 5%;
  display: inline-block;
  margin-left: 10px;
  width: 0;
  height: 0;

  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid var(--white);
}

@media (max-width: 1200px) {
  .header-btn,
  .corpo-btn {
    max-width: 180px;
    height: 70px;
  }
  .header-button,
  .corpo-button {
    font-size: 1.8rem;
  }
}
@media (max-width: 1024px) {
  .header-btn,
  .corpo-btn {
    max-width: 150px;
    height: 60px;
  }
  .header-button,
  .corpo-button {
    font-size: 1.7rem;
  }
  .join-btn {
    max-width: 380px;
    height: 80px;
    margin: 60px auto 0;
  }
}

@media (max-width: 860px) {
  .header-btn {
    max-width: 200px;

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

  .join-btn {
    max-width: 300px;
    height: 80px;
    margin: 50px auto 30px;
  }

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

@media (max-width: 768px) {
  .ac-btn {
    max-width: 280px;
    height: 70px;
  }

  .ac-button {
    font-size: 1.7rem;
    margin-top: 50px;
  }

  .join-btn {
    margin: 50px auto 40px;
  }
}

@media (max-width: 480px) {
  .join-btn {
    max-width: 280px;
    height: 70px;
    margin: 50px auto 40px;
  }

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

@media (max-width: 375px) {
  .ac-button {
    font-size: 1.6rem;
  }

  .join-btn {
    margin: 50px auto 50px;
  }

  .join-button {
    font-size: 1.6rem;
  }
}
/*******************************************************
共通
*******************************************************/
/******** 余白 *******/
.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,
.inner-tab {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

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

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

.br430,
.br515,
.br650,
.br1090 {
  display: none;
}

@media (max-width: 1090px) {
  .br1090 {
    display: block;
  }
}

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

@media (max-width: 768px) {
  .br768non {
    display: none;
  }
}
@media (max-width: 650px) {
  .br650 {
    display: block;
  }
}

@media (max-width: 558px) {
  .br558non {
    display: none;
  }
}

@media (max-width: 515px) {
  .br515 {
    display: block;
  }
}

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

@media (max-width: 486px) {
  .br486non {
    display: none;
  }
}

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

@media (max-width: 440px) {
  .br440non {
    display: none;
  }
}

@media (max-width: 430px) {
  .br430 {
    display: block;
  }
}

@media (max-width: 423px) {
  .br423non {
    display: none;
  }
}
@media (max-width: 389px) {
  .br389non {
    display: none;
  }
}

@media (max-width: 375px) {
  .br375non {
    display: none;
  }
}

/******** 色 *******/
.txt_pink {
  color: var(--pink);
}
.color_pink {
  background-color: var(--pink);
}

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

.section-ttl {
  position: relative;
  display: inline-block;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.5rem;
}

.ttl-jp {
  display: inline-block;
  font-size: var(--size50);
  font-weight: var(--Medium);
  letter-spacing: var(--ls200);
}
.ttl-en {
  width: 318px;
}

.section-ttl::before {
  content: "";
  position: absolute;
  width: 100%;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 860px) {
  .ttl-en {
    width: 300px;
  }
}
@media (max-width: 768px) {
  .ttl-en {
    width: 260px;
  }
}

@media (max-width: 480px) {
  .ttl-en {
    width: 230px;
  }
}

span.txt16 {
  font-size: 1.6rem;
}
span.txt22 {
  font-size: 2.2rem;
}

@media (max-width: 590px) {
  span.txt16 {
    font-size: 1.3rem;
  }
}

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

.mv-img {
  max-width: 1317px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border20);
  margin: 0 auto;
}

.mv-txt {
  position: absolute;
  /* max-width: 979px; */
  width: 69.929%;
  top: 71%;
  right: 0;
}

.mv-item {
  position: absolute;
  /* max-width: 578px; */
  /* width: 67.643%; */
  max-width: 947px;
  width: 100%;
  left: -15%;
  bottom: -55%;
  z-index: -1;
}

@media (max-width: 768px) {
  .mv-txt {
    display: none;
  }

  .mv-item {
    left: -32%;
    bottom: -25%;
  }
}

@media (max-width: 375px) {
  .mv-item {
    bottom: -31%;
  }
}

/*******************************************************
MVボタン・追従ボタン
*******************************************************/

/******** MVボタン *******/

.mvbtn-wrap {
  position: absolute;
  /* top: 34%; */
  bottom: 2%;
  right: 1%;

  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  z-index: 1;
}

@media (max-width: 1024px) {
  .mvbtn-wrap {
    top: 38%;
    gap: 1rem;
  }
}
@media (max-width: 375px) {
  .mvbtn-wrap {
    top: 35%;
    gap: 0.5rem;
  }
}

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

.slide-btn {
  display: block;
  position: relative;
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.slide-btn img {
  width: 148px;
}

.slide-btn:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

@media (max-width: 1170px) {
  .slide-btn img {
    width: 130px;
  }
}

@media (max-width: 1024px) {
  .slide-btn img {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .slidebtn-wrap {
    gap: 1rem;
  }
  .slide-btn img {
    width: 85px;
  }
}

/*******************************************************
01_section
*******************************************************/
.section-ttl.ttl-1::before {
  background-image: url("../img/item/tori.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 50%;
  right: -15%;
  max-width: 290px;
  aspect-ratio: 290 / 195;
  transform: translate(100%, -50%);
}

@media (max-width: 768px) {
  .section-ttl.ttl-1::before {
    right: -5%;
    max-width: 200px;
  }
}

@media (max-width: 570px) {
  .section-ttl.ttl-1::before {
    top: 110%;
    right: 10%;
    width: 50%;
  }
}

@media (max-width: 420px) {
  .section-ttl.ttl-1::before {
    right: 20%;
    width: 40%;
  }
}

@media (max-width: 335px) {
  .section-ttl.ttl-1::before {
    right: 27%;
  }
}

.section1 {
  position: relative;
  padding-top: 245px;
}

.img-heart {
  width: 226px;
  margin-top: -35px;
  margin-left: 40px;
}

.sec1-item {
  position: absolute;
  /* max-width: 719px; */
  width: 51.914%;
  bottom: 8%;
  right: 0;
}

@media (max-width: 1024px) {
  .section1 {
    padding-top: 180px;
  }
  .img-heart {
    width: 200px;
    margin-top: 0;
  }
}

@media (max-width: 860px) {
  .section1 {
    padding-top: 170px;
  }
}

@media (max-width: 768px) {
  .section1 {
    padding-top: 130px;
  }
}

@media (max-width: 480px) {
  .img-heart {
    width: 160px;
    margin-top: 0;
    margin-left: 0;
  }
}

@media (max-width: 375px) {
  .img-heart {
    width: 130px;
  }
}

/******** メッセージ *******/

.message {
  flex-direction: column;
  gap: 7rem;
  margin-top: 15.307%;
  margin-bottom: 180px;
}

.message-head {
  color: var(--blue01);
  font-size: var(--size40);
  text-align: center;
}

.message-txt {
  font-size: 1.9rem;
  font-weight: var(--Medium);
  text-align: start;
}
.txt-bottom {
  max-width: 690px;
  margin-left: clamp(0px, 20vw, 285px);
}

@media (max-width: 1024px) {
  .message {
    margin-bottom: 80px;
  }
}

@media (max-width: 860px) {
  .message {
    gap: 3rem;
  }
  .message-txt {
    font-size: clamp(1.6rem, 3.2vw, 1.8rem);
  }

  .txt-bottom {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .message {
    margin-top: 80px;
  }
}

/*******************************************************
02_section
*******************************************************/

.section-ttl.ttl-2::before {
  background: url("../img/item/item_job.png") center / contain no-repeat;
  left: 50%;
  top: 15%;
  max-width: 208px;
  aspect-ratio: 208 / 188;
  transform: translate(100%, -50%);
}

@media (max-width: 768px) {
  .section-ttl.ttl-2::before {
    left: 30%;
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .section-ttl.ttl-2::before {
    left: 27%;
    max-width: 150px;
  }
}

@media (max-width: 375px) {
  .section-ttl.ttl-2::before {
    left: 22%;
    max-width: 135px;
  }
}

@media (max-width: 335px) {
  .section-ttl.ttl-2::before {
    top: 1%;
    left: 32%;
    max-width: 106px;
  }
}

.section2 {
  position: relative;
  background-color: var(--blue05);
  padding: 80px 0 132px;
}

.section2::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background: url("../img/item/back_deco01.png") center / contain no-repeat;
  /* width: 32.203%; */
  max-width: 446px;
  width: 100%;
  top: -1%;
  right: 13%;
  aspect-ratio: 446 / 346;
  transform: translate(50%, 0);
}

.section2::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background: url("../img/item/back_deco02.png") center / contain no-repeat;
  /* width: 26.354%; */
  max-width: 365px;
  width: 100%;
  bottom: 4%;
  left: 4%;
  aspect-ratio: 365 / 429;
  transform: translate(-50%, 0);
}

@media (max-width: 1024px) {
  .section2 {
    padding: 0 0 132px;
  }
}

@media (max-width: 860px) {
  .section2::before {
    top: 7%;
  }

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

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

/******** タブボタン *******/

.tab-menu {
  justify-content: center;
  gap: 4.2rem;
  margin: 100px 0 46px;
}

.tab-item {
  flex: 0 0 auto; /* 自動伸縮をやめる */
}

.tab-button {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 2.2rem;
  letter-spacing: var(--ls200);
  background-color: var(--white02);
  border-radius: var(--border20);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 250px;
  height: 90px;
}

/* hover時 */
.tab-button:hover {
  transform: translateY(-2px);
}

/* active時（選択中） */
.tab-button.active {
  border: 3px solid var(--pink);
}

@media (max-width: 1024px) {
  .tab-button {
    font-size: 2rem;
    width: 220px;
    height: 80px;
  }
}

@media (max-width: 860px) {
  .tab-menu {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .tab-button {
    font-size: 1.6rem;
    width: 180px;
    height: 70px;
  }

  .tab-menu {
    gap: 1rem;
    margin: 55px 0 46px;
  }
}

@media (max-width: 590px) {
  .tab-button {
    font-size: 1.6rem;
    width: 150px;
    height: 70px;
  }
}

@media (max-width: 490px) {
  .tab-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tab-item {
    width: calc((100% - 1rem) / 2);
  }

  .tab-button {
    font-size: 1.5rem;
    width: 100%;
    height: 70px;
  }
}

@media (max-width: 430px) {
  .tab-button {
    line-height: var(--line07);
    height: 60px;
  }
}

@media (max-width: 375px) {
  .tab-menu {
    gap: 0.7rem;
  }
}

/******** コンテンツパネル *******/

.tab-inner {
  position: relative;
  background-color: var(--white02);
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}

@media (max-width: 1200px) {
  .tab-wrapper {
    padding: 0 max(5%, 20px);
  }

  .tab-inner {
    padding: 0 max(5%, 20px);
  }
}

@media (max-width: 768px) {
  .tab-inner {
    max-width: none;
    width: 100%;
    margin: 0;
  }
}

/* コンテンツパネル群 */

.tab-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  /* visibility: hidden; */
  pointer-events: none; /* 非表示中クリック防止 */
  transition: opacity 0.4s ease;
  padding-bottom: 90px;
}

.tab-panel.active {
  /* display: block; */
  position: relative;
  opacity: 1;
  /* visibility: visible; */
  pointer-events: auto;
  z-index: 1;
}
/* タブ内共通 */
.tab-panel-outer {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding-top: 100px;
}
.contents-head {
  position: relative;
  display: block;
  font-size: var(--size30);
  color: var(--blue03);
  width: fit-content;
  letter-spacing: var(--ls200);
  margin: 0 auto;
  margin-bottom: 40px;
}

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

.contents-head::before {
  left: -50px;
}

.contents-head::after {
  right: -50px;
}

@media (max-width: 1024px) {
  .tab-panel-outer {
    padding-top: 60px;
  }
}

@media (max-width: 480px) {
  .tab-panel-outer {
    padding-top: 35px;
  }

  .tab-panel {
    padding-bottom: 60px;
  }

  .contents-head {
    letter-spacing: var(--ls50);
  }
}

@media (max-width: 410px) {
  .contents-head::before,
  .contents-head::after {
    width: 24px;
  }

  .contents-head::before {
    left: -28px;
  }

  .contents-head::after {
    right: -28px;
  }
}

@media (max-width: 375px) {
  .contents-head::before,
  .contents-head::after {
    width: 15px;
  }

  .contents-head::before {
    left: -18px;
  }

  .contents-head::after {
    right: -18px;
  }
}

/* TOP */

.tab-head {
  font-size: var(--size36);
  color: var(--blue02);
  text-align: center;
  border-bottom: 3px solid var(--pink);
  width: fit-content;
  letter-spacing: var(--ls200);
  margin: 0 auto;
  padding-bottom: 8px;
}

.panel-contents {
  display: flex;
  gap: 3rem;
  padding-top: 47px;
  margin-bottom: 80px;
}

.contents-pic {
  max-width: 480px;
  width: 100%;
  flex: 1;
}
.contents-pic img {
  border-radius: var(--border20);
}

.contents-txt {
  font-weight: var(--Regular);
  letter-spacing: var(--ls50);

  padding-top: 40px;
}

.tabpoint-txt::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
  background: url("../img/pic/tab01_in.png") center / contain no-repeat;
  width: 33.573%;
  top: 5%;
  right: 13%;
  aspect-ratio: 329 / 299;
  transform: translate(50%, 0);
}

.tabpoint-txt::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
  background: url("../img/item/medicine.png") center / contain no-repeat;
  width: 21.225%;
  top: 26%;
  left: 5%;
  aspect-ratio: 208 / 188;
  transform: translate(0, 100%);
}

@media (max-width: 1024px) {
  .contents-txt {
    padding-top: 0;
  }

  .tabpoint-txt::after {
    top: 15%;
    left: 0;
  }
}

@media (max-width: 860px) {
  .contents-txt {
    max-width: 300px;
    width: 100%;
  }

  .tabpoint-txt::after {
    top: 28%;
  }
}
@media (max-width: 768px) {
  .panel-contents {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 55px;
  }

  .contents-txt {
    max-width: none;
    width: auto;
  }

  .tabpoint-txt::before {
    width: 170px;
    top: -4%;
    right: 17%;
  }

  .tabpoint-txt::after {
    width: 150px;
    top: 15%;
  }
}

@media (max-width: 480px) {
  .panel-contents {
    margin-bottom: 40px;
  }

  .tabpoint-txt::before {
    width: 140px;
    top: -2%;
    right: 19%;
  }
}

@media (max-width: 425px) {
  .tabpoint-txt::after {
    top: 20%;
  }
}

@media (max-width: 375px) {
  .tabpoint-txt::before {
    top: -3%;
  }
}
/* POINT */

/* .tabpoint-outer {
  min-height: 835px;
} */
.tabpoint-txt {
  position: relative;
  min-height: 835px;
  font-size: clamp(16px, 2.5vw, 19px);
  text-align: start;
}

.txt_top {
  position: absolute;
  width: clamp(320px, 90%, 900px);
  padding: 87px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../img/shapes/ellipse02.png") center / contain no-repeat;

  font-weight: var(--Regular);
  letter-spacing: var(--ls50);
  top: 0;
  left: -15%;
}

.txt_bottom {
  position: absolute;
  width: clamp(320px, 100%, 800px);
  padding: 90px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../img/shapes/ellipse03.png") center / contain no-repeat;
  font-weight: var(--Regular);
  letter-spacing: var(--ls50);
  top: 40%;
  right: -5%;
}

.txt_top p {
  max-width: 468px;
  margin: 0 auto;
  line-height: var(--line04);
}

.txt_bottom p {
  max-width: 517px;
  margin: 0 auto;
  line-height: var(--line04);
}

@media (max-width: 1024px) {
  .txt_top {
    left: -8%;
  }
  .txt_bottom {
    right: 0;
  }
}

@media (max-width: 860px) {
  .txt_top {
    max-width: 700px;
    width: 100%;
    padding: 140px 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .txt_bottom {
    max-width: 700px;
    width: 100%;
    padding: 160px 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .txt_top,
  .txt_bottom {
    background: none;
    position: relative;
    z-index: 0;
    padding: 90px 0;
  }

  .txt_top::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/shapes/ellipse02.png") center / cover no-repeat;
    z-index: -1;
  }

  .txt_bottom::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/shapes/ellipse03.png") center / cover no-repeat;
    z-index: -1;
  }

  .txt_top p,
  .txt_bottom p {
    padding: 0 10px;
  }
}

/* ONEDAY */

.oneday-contents {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-bottom: 80px;
}

.day-box {
  flex-direction: column;
  height: 100%;
}

.day-head {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--size20);
  color: var(--white02);
  background: var(--blue07);
  font-weight: var(--Medium);
  letter-spacing: var(--ls50);
  line-height: var(--line06);
  text-align: center;
  padding: 0 5px;
  min-height: 85px;
  border-radius: 10px 10px 0 0;
}

.day-txt {
  font-size: var(--size18);
  font-weight: var(--Regular);
  letter-spacing: 0;
  background: var(--white03);
  flex: 1;
  border-radius: 0 0 10px 10px;
  padding: 33px 10px 45px;
}

@media (max-width: 860px) {
  .oneday-contents {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    padding-bottom: 80px;
  }

  .day-box {
    flex-direction: row;
  }

  .day-head {
    flex: 0 0 199px;
    border-radius: 10px 0 0 10px;
  }

  .day-txt {
    flex: 1;
    border-radius: 0 10px 10px 0;
  }
}

@media (max-width: 550px) {
  .day-box {
    flex-direction: column;
  }

  .day-head {
    flex: 0 0 65px;
    min-height: 65px;
    border-radius: 10px 10px 0 0;
  }

  .day-txt {
    flex: 1;
    border-radius: 0 0 10px 10px;
  }
}

@media (max-width: 480px) {
  .oneday-contents {
    padding-bottom: 40px;
  }
}

/* FEATURES */
.features {
  max-width: 247px;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url("../img/shapes/circle.png") center / contain no-repeat;
}

.features p {
  color: var(--white02);
  font-weight: var(--Medium);

  padding: 14px;
}

.features-list {
  display: grid;
  gap: 5rem;
  justify-content: center;
}

.features03 {
  grid-template-columns: repeat(3, auto);
}

.features05 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5rem;
  justify-items: center;

  max-width: 815px;
  margin: 0 auto;
}

.features05 .features:nth-child(1) {
  grid-column: 1 / 3;
}

.features05 .features:nth-child(2) {
  grid-column: 3 / 5;
}

.features05 .features:nth-child(3) {
  grid-column: 5 / 7;
}

.features05 .features:nth-child(4) {
  grid-column: 2 / 4;
}

.features05 .features:nth-child(5) {
  grid-column: 4 / 6;
}

.features04 {
  grid-template-columns: repeat(2, auto);
}

@media (max-width: 1024px) {
  .features-list {
    gap: 3rem;
  }

  .features p {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .features-list {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 3rem 0;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }

  .features05 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }

  .features05 .features {
    grid-column: auto !important;

    margin: 0 auto;
  }
}
@media (max-width: 440px) {
  .features-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    max-width: 200px;
  }

  .features05 {
    grid-template-columns: repeat(1, 1fr);
    max-width: 200px;
  }

  .features {
    margin: 0 auto;
  }
}

/******** アコーディオン *******/

/* アコーディオンヘッダー */
.accordion-header {
  position: relative;
  font-size: var(--size28);
  letter-spacing: var(--ls200);
  line-height: var(--line07);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  cursor: pointer;
  border-bottom: var(--blue01) solid 2px;
  padding-bottom: 14px;
  width: min(100%, 900px);
  margin: 75px auto 0;
}

/* +・- */
.plus-minus {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 3%;
  display: inline-block;

  flex-shrink: 0;
}

/* 横線（常に表示） */
.plus-minus::before,
.plus-minus::after {
  content: "";
  position: absolute;
  transition: transform 0.2s;
}

/* 横棒 */
.plus-minus::before {
  background-color: var(--black);
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

/* 縦棒（開閉で動かす） */
.plus-minus::after {
  background-color: var(--black);
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

/* 開いたとき（マイナスに） */
.accordion-item.active .plus-minus::after {
  transform: translateX(-50%) scaleY(0);
}

@media (max-width: 768px) {
  .plus-minus {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .accordion-header {
    margin: 50px auto 0;
  }
}

@media (max-width: 375px) {
  .plus-minus {
    width: 20px;
    height: 20px;
    right: 1%;
  }
}

.tab-content {
  display: none; /* デフォルト非表示 */
}

.tab-content.active {
  display: block; /* 選択タブだけ表示 */
  height: auto;
}

.accordion-content {
  /* max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease; */

  overflow: hidden;
  transition: max-height 0.4s ease;
  max-height: 0;
  padding-bottom: 0;
}

.accordion-item.active .accordion-content {
  /* overflow: visible; 
   height: auto; */
  max-height: 9999px;
  overflow: visible;
}

/* .person-box {
  width: 100%;
  z-index: 0;
  padding: 0 64px;
   padding-bottom: 80px!important;  
  } */

/******** box *******/
.person-box {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  padding-top: 35px;
  /* padding: 35px 64px 0; */
  margin: 0 auto;
}

.person-inner {
  background-color: var(--blue04);
  /* gap: 11rem; */
  padding: 36px 70px 36px 35px;
  margin-bottom: 45px;
  border-radius: var(--border10);
}

.person-txt-box {
  max-width: 410px;
  width: 100%;
}

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

.person-head {
  font-size: var(--size30);
  color: var(--blue01);
  font-weight: var(--Medium);
  text-align: start;
  letter-spacing: var(--ls100);
  line-height: var(--line08);
}

.person-txt .person-list {
  font-size: 2.1rem;
}

.person-list {
  flex-direction: column;
}

.person-txt {
  display: flex;
  gap: 1.7rem;
  font-weight: var(--Medium);
  align-items: center;
}

.person-pic {
  max-width: 282px;
  width: 100%;
  aspect-ratio: 282 / 282;
  margin-left: auto;
}

@media (max-width: 1200px) {
  .person-inner {
    padding: 36px 35px;
  }
}
@media (max-width: 860px) {
  .person-inner {
    padding: 36px 20px;
  }

  .person-head {
    font-size: 2.5rem;
  }
  .person-pic {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .person-inner {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 0 auto 45px;
  }

  .person-pic {
    margin: 0 auto;
  }
}

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

  .person-txt .person-list {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .person-pic {
    width: 70%;
  }
}

/******** faq *******/

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

.q-box {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 20px;
}

.q-icon {
  font-size: var(--size24);
  color: var(--white02);
  background-color: var(--blue03);
  font-weight: var(--Medium);
  width: 43px;
  height: 43px;
  border-radius: var(--border50);
  display: flex;
  justify-content: center;
  align-items: center;
}

.q-icon span {
  transform: translate(-1%, -11%);
}

.q-txt {
  font-size: var(--size24);
  font-weight: var(--Medium);
  text-align: start;
  flex: 1;
}

.a-box {
  background-color: var(--blue05);
  border-radius: var(--border10);
  /* max-width: 850px;
  width: 100%; */
  margin: 0 auto;
  padding: 20px 17px;
}

.a-txt {
  font-size: var(--size18);
  font-weight: var(--Regular);
  letter-spacing: var(--ls10);
}

@media (max-width: 768px) {
  .faq-list {
    padding-bottom: 30px;
  }
}

/*******************************************************
03_section
*******************************************************/
.section-ttl.ttl-3::before {
  background-image: url("../img/item/item_environment.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 30%;
  left: 40%;
  max-width: 208px;
  aspect-ratio: 208 / 188;
  transform: translate(100%, -50%);
}

@media (max-width: 768px) {
  .section-ttl.ttl-3::before {
    left: 30%;
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .section-ttl.ttl-3::before {
    top: 0;
    left: 20%;
    max-width: 150px;
  }
}

@media (max-width: 375px) {
  .section-ttl.ttl-3::before {
    left: 14%;
    max-width: 135px;
  }
}

@media (max-width: 335px) {
  .section-ttl.ttl-3::before {
    left: 20%;

    max-width: 106px;
  }
}

.section3 {
  position: relative;
  padding-top: 225px;
}

.section3::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background: url("../img/pic/deco.png") center / contain no-repeat;
  width: 37.618%;
  top: -4%;
  right: -3%;
  aspect-ratio: 521 / 443;
  transform: translate(0, 0);
}

@media (max-width: 1024px) {
  .section3 {
    padding-top: 150px;
  }
}

@media (max-width: 768px) {
  .section3::before {
    top: -3%;
  }
}
@media (max-width: 480px) {
  .section3::before {
    width: 53%;
  }
}

.env-txt {
  font-weight: var(--Regular);
  text-align: start;

  padding: 88px 0 110px;
}

/* .point-set {
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-left: 16.786%;
} */
/* .man {
  max-width: 251px;
}
.hukidashi {
  width: 100%;
  max-width: 649px;
  aspect-ratio: 649 / 263;
  transform: translateY(-35%);
} */

.point-img {
  max-width: 1400px;
  width: 100%;
}

@media (max-width: 1024px) {
  .env-txt {
    padding: 50px 0 70px;
  }
}

@media (max-width: 768px) {
  .env-txt {
    padding: 50px 0;
  }
  .point-set {
    text-align: center;
  }
  .point-img {
    max-width: 500px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .env-txt {
    padding: 50px 0 20px;
  }
  .point-img {
    width: 90%;
  }
}
/******** box *******/
.point-outer {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7rem;
  padding-bottom: 120px;
}

.point-box {
  gap: 4rem;
  border: 6px solid var(--color);
  border-radius: var(--border20);
}

.point-box:nth-child(2) {
  flex-direction: row-reverse;
}

.point-box:nth-child(1) {
  --color: #55aacd;
}
.point-box:nth-child(2) {
  --color: #32afb9;
}
.point-box:nth-child(3) {
  --color: #00afcd;
}

.num {
  width: 77px;
}

.point-head {
  font-size: var(--size32);
  color: var(--color);
  border-bottom: 3px solid var(--pink);
  width: fit-content;
  padding-bottom: 8px;
  margin-bottom: 30px;
}

.txt-set {
  max-width: 552px;
  width: 100%;
  padding: 52px 0 25px 60px;
}

.point-box:nth-child(2) .txt-set {
  padding: 52px 60px 25px 0;
}
.point-txt {
  font-weight: var(--Regular);
  letter-spacing: var(--ls50);
}

.point-pic {
  flex: 1;
  min-width: 300px;
}

.point-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.point-box:nth-child(odd) .point-pic img {
  border-radius: 0 var(--border10) var(--border10) 0;
}

.point-box:nth-child(even) .point-pic img {
  border-radius: var(--border10) 0 0 var(--border10);
}

@media (max-width: 1024px) {
  .point-outer {
    padding-bottom: 80px;
  }
  .point-box {
    gap: 2rem;
  }
  .num {
    width: 60px;
  }

  .txt-set {
    max-width: 400px;
  }
}

@media (max-width: 860px) {
  .txt-set {
    padding: 30px 0 25px 35px;
  }

  .point-box:nth-child(2) .txt-set {
    padding: 30px 35px 25px 0;
  }
}

@media (max-width: 768px) {
  .point-outer {
    gap: 4rem;
    padding-bottom: 60px;
  }

  .point-box {
    flex-direction: column-reverse;
    max-width: 500px;
  }

  .point-box:nth-child(2) {
    flex-direction: column-reverse;
  }

  .txt-set,
  .point-box:nth-child(2) .txt-set {
    max-width: none;
    padding: 0 20px 30px;
  }

  .point-box:nth-child(odd) .point-pic img,
  .point-box:nth-child(even) .point-pic img {
    border-radius: var(--border10) var(--border10) 0 0;
  }

  .point-head {
    padding-bottom: 0;
    margin-bottom: 15px;
  }

  .point-pic {
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .num {
    width: 45px;
  }

  .point-head {
    margin-bottom: 10px;
  }
}

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

.section-ttl.ttl-4::before {
  background-image: url("../img/item/item_data.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 30%;
  left: 30%;
  max-width: 208px;
  aspect-ratio: 208 / 188;
  transform: translate(100%, -50%);
}

@media (max-width: 768px) {
  .section-ttl.ttl-4::before {
    left: 13%;
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .section-ttl.ttl-4::before {
    top: 0;

    max-width: 150px;
  }
}

@media (max-width: 375px) {
  .section-ttl.ttl-4::before {
    left: 6%;
    max-width: 135px;
  }
}

@media (max-width: 335px) {
  .section-ttl.ttl-4::before {
    left: 20%;
    max-width: 106px;
  }
}

.section4 {
  position: relative;
  z-index: 1;
  background-color: var(--green01);
  padding: 100px 0 114px;
}

.section4::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  background: url("../img/item/back_deco03.png") center / contain no-repeat;
  /* width: 32.997%; */
  max-width: 457px;
  width: 100%;
  top: 8%;
  right: 8%;
  aspect-ratio: 457 / 289;
  transform: translate(50%, 0);
}

.section4::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  background: url("../img/item/back_deco04.png") center / contain no-repeat;
  /* width: 32.997%; */
  max-width: 457px;
  width: 100%;
  bottom: 5%;
  left: 5%;
  aspect-ratio: 457 / 289;
  transform: translate(-50%, 0);
}

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

@media (max-width: 860px) {
  .section4::after {
    bottom: 1%;
  }
}

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

.data-outer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
  padding-top: 80px;
}

.data-box {
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  background-color: var(--white02);

  border: 3px solid var(--green02);
  border-radius: var(--border20);
  padding: 30px 35px;
}

.data-head {
  font-size: 3rem;
  letter-spacing: var(--ls50);
  text-align: center;
  padding-bottom: 15px;
}
.data-img {
  max-width: 280px;
  width: 100%;
}

.data-txt {
  font-size: var(--size18);
  font-weight: var(--Regular);
  letter-spacing: var(--ls50);
  padding-top: 30px;
}

@media (max-width: 1024px) {
  .data-head {
    font-size: 2.5rem;
  }
}

@media (max-width: 860px) {
  .data-outer {
    grid-template-columns: repeat(2, 1fr);
  }
  .data-box {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .data-outer {
    padding-top: 60px;
  }
}

@media (max-width: 600px) {
  .data-outer {
    grid-template-columns: repeat(1, 1fr);
    padding-top: 45px;
  }
  .data-box {
    max-width: 350px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  .data-box:nth-child(n + 4) .data-head {
    padding-bottom: 0;
  }

  .data-head {
    font-size: 2.3rem;
  }
  .data-img {
    max-width: 240px;
  }
  .data-box:nth-child(n + 4) .data-txt {
    padding-top: 0;
  }
}
/*******************************************************
05_section
*******************************************************/
.section-ttl.ttl-5::before {
  background-image: url("../img/item/item_search.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 30%;
  left: 40%;

  max-width: 208px;
  aspect-ratio: 208 / 188;
  transform: translate(100%, -50%);
}

@media (max-width: 768px) {
  .section-ttl.ttl-5::before {
    left: 13%;
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .section-ttl.ttl-5::before {
    max-width: 150px;
  }
}

@media (max-width: 375px) {
  .section-ttl.ttl-5::before {
    left: 16%;
    max-width: 135px;
  }
}

@media (max-width: 335px) {
  .section-ttl.ttl-5::before {
    top: 10%;
    left: 17%;
    max-width: 123px;
  }
}

/******** btn-section *******/
.btn-section {
  position: relative;
  z-index: 1;
  background-color: var(--green04);
  padding-top: 114px;
}

.btn-section::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  background: url("../img/item/back_deco05.png") center / contain no-repeat;
  /* width: 30.975%; */
  max-width: 429px;
  width: 100%;
  top: 5%;
  right: 8%;
  aspect-ratio: 429 / 368;
  transform: translate(50%, 0);
}

.btn-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  background: url("../img/item/back_deco06.png") center / contain no-repeat;
  /* width: 38.196%; */
  max-width: 529px;
  width: 100%;
  bottom: 11%;
  left: 5%;
  aspect-ratio: 529 / 409;
  transform: translate(-50%, 0);
}

.search-wrapper {
  padding: 85px 0 140px;
}

@media (max-width: 1024px) {
  .btn-section {
    padding-top: 80px;
  }
}

@media (max-width: 860px) {
  .btn-section::before {
    top: 4%;
  }
  .btn-section::after {
    bottom: 1%;
  }
}

@media (max-width: 768px) {
  .search-wrapper {
    padding: 50px 0 100px;
  }
}

/******** 共通 *******/
.search-head {
  font-size: var(--size40);
  font-weight: var(--Regular);
  text-align: center;
  padding-bottom: 10px;
}

.search-box {
  background-color: var(--white);
  border-radius: var(--border10);
  padding: 85px 0;
}

.search-outer:not(:last-child) .search-box {
  margin-bottom: 85px;
}

.search_btn {
  font-size: 2rem;
  font-weight: var(--Medium);
  width: 100%;
  height: 80px;

  color: var(--white02);
  background-color: var(--blue06);
  border-radius: var(--border10);
}

@media (max-width: 768px) {
  .search-box {
    padding: 70px 0;
  }

  .search-outer:not(:last-child) .search-box {
    margin-bottom: 50px;
  }

  .search_btn {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .search_btn {
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  .search_btn {
    max-width: 280px;
    height: 70px;
    font-size: 1.6rem;
  }
}

/******** 職種から探す *******/
.list_kinds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
  gap: 3rem;
}

@media (max-width: 860px) {
  .list_kinds {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .list_kinds {
    grid-template-columns: repeat(1, 1fr);
  }
}
/******** 施設から探す *******/

.list_facility {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
  gap: 4.4rem;
}

.facility_btn {
  position: relative;

  overflow: hidden;
}

.btn_txt {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: var(--Regular);
  letter-spacing: 0;
  line-height: var(--line09);
  text-align: end;
  padding-right: 2%;
  background-image: linear-gradient(90deg, #ffffff4d, #fffffff0 31%, #ffffff);
  min-height: 50px;

  width: 100%;
  bottom: 0;
  transform: translateY(5px);
  transition: transform 0.4s ease;
}

.facility_btn:hover .btn_txt {
  transform: translateY(0);
}

.facility_button {
  width: 100%;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.facility_btn:hover .facility_button {
  transform: scale(1.1);
  filter: brightness(0.7);
}

@media (max-width: 1024px) {
  .list_facility {
    grid-template-columns: repeat(2, 1fr);
    gap: 4.4rem;
  }
}

@media (max-width: 860px) {
  .btn_txt {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .list_facility {
    grid-template-columns: repeat(1, 1fr);
    gap: 4.4rem;
  }

  .facility_btn {
    max-width: 300px;
  }

  .btn_txt {
    font-size: 1.6rem;
  }
}

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

/******** 雇用形態から探す *******/
.list_type {
  justify-content: center;
  gap: 19rem;
}

.type_btn {
  max-width: 300px;
}

@media (max-width: 1024px) {
  .list_type {
    gap: 10rem;
  }
}

@media (max-width: 860px) {
  .list_type {
    gap: 3rem;
  }
}
@media (max-width: 600px) {
  .list_type {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}

/******** joinus-section *******/

.joinus-section {
  position: relative;
  background-color: var(--white);
  /* padding-top: 60px; */
}

.joinus-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
  background: url("../img/item/tori02.png") center / contain no-repeat;
  /* max-width: 181px; */
  width: 13.069%;
  bottom: 50%;
  right: 10%;
  aspect-ratio: 181 / 121;
  transform: translate(-50%, 50%);
}

@media (max-width: 1024px) {
  .joinus-section::after {
    bottom: 33%;
    right: 8%;
  }
}

@media (max-width: 860px) {
  .joinus-section::after {
    width: 16%;
    bottom: 31%;
  }
}

@media (max-width: 640px) {
  .joinus-section::after {
    width: 19%;
    bottom: 24%;
  }
}

@media (max-width: 480px) {
  .joinus-section::after {
    width: 23%;
    bottom: 30%;
  }
}

@media (max-width: 375px) {
  .joinus-section::after {
    width: 28%;
    bottom: 23%;
    right: 0;
  }
}

.character {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 50px;
}

@media (max-width: 768px) {
  .character {
    width: 70%;

    padding-bottom: 40px;
  }
}

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

.join-txt {
  position: relative;
  display: block;
  width: fit-content;
  text-align: center;

  font-size: var(--size40);
  font-weight: var(--Black);
  letter-spacing: var(--ls200);
  color: var(--blue02);
  margin: 0 auto;
}

.join-txt::after {
  content: "";
  position: absolute;
  bottom: -5%;
  left: 0;
  max-width: 649px;
  width: 100%;
  aspect-ratio: 649 / 6;

  background: url("../img/common/line.jpg") center / contain no-repeat;
}

.join-img {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 480px) {
  .join-img {
    width: 150%;
  }
}
/*******************************************************
フッター
*******************************************************/
footer {
  position: relative;
  background-color: var(--blue07);
  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;
  }
}

/*******************************************************
トップボタン
*******************************************************/
.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(--green03);
  cursor: pointer;
}

.pagetop::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 12px solid var(--white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pagetop:hover {
  opacity: 0.7;
}

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

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

  .pagetop::before {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 9px solid var(--white);
  }
}
