@charset "utf-8";

html {
  scroll-behavior: smooth; /* CSSだけで滑らかに移動できる */
  font-size: 62.5%; /* 1rem = 10px */
}

/* main {
  overflow: hidden;
} */

a {
  transition: 0.3s ease;
}

@media (max-width: 840px) {
  main {
    overflow: hidden;
  }
}

:root {
  /* 色 例）color: var(--white); */
  --white: #ffffff;
  --white02: rgba(255, 255, 255, 0.5);
  --black: #000000;
  --black02: #333333;
  --black03: rgba(90, 87, 88, 0.8);
  --gray: #adadad;
  --pink01: #ffefef;
  --pink02: #e78895;
  --pink03: #ffe3e3;
  --yellow01: #fff8e3;
  --yellow02: #fff5dc;

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

  /* font-family */
  --Outfit: "Outfit", sans-serif;
  --NotoSansJP: "Noto Sans JP", sans-serif;

  /* font-weight */

  --weightM: 500;
  --weightSB: 600;
  --weightB: 700;
  --weightEB: 800;

  /* font */
  --size16: 1.6rem;
  --size18: 1.8rem;
  --size20: 2rem;
  --size24: 2.4rem;
  --size25: 2.5rem;
  --size28: 2.8rem;
  --size36: 3.6rem;
  --size110: 11rem;

  /* border-radius */
  --boder20: 20px;
  --boder50: 50%;
}

@media (max-width: 1024px) {
  :root {
    --size18: 1.7rem;
    --size36: 3.4rem;
    --size110: 9rem;
  }
}

@media (max-width: 860px) {
  :root {
    --size18: 1.6rem;
    --size28: 2.5rem;
    --size36: 3.2rem;
    --size110: 8.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --size24: 2.4rem;
    --size36: 3rem;
    --size110: 8rem;
  }
}

@media (max-width: 710px) {
  :root {
    --size16: 1.5rem;
    --size18: 1.5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --size20: 1.8rem;
    --size25: 2.3rem;
    --size28: 2.3rem;
    --size36: 2.6rem;
    --size60: 6rem;
    --size110: 7rem;
  }
}

@media (max-width: 375px) {
  :root {
    /* --size18: 1.4rem; */
    --size20: 1.6rem;
    --size24: 2.2rem;
    --size25: 2.1rem;
    --size28: 2.3rem;
    --size36: 2.4rem;
    --size60: 5rem;
    --size110: 6rem;
  }
}

body {
  color: var(--black);
  font-family: var(--NotoSansJP);
  font-weight: var(--weightB);
  font-size: var(--size18);
  background-color: var(--white);

  letter-spacing: 0.06em;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height100);
  z-index: 5;
  padding-left: 1.8%;
  padding-right: 1.9%;
  transition: position 0.3s;
}

/* ヘッダースクロール(不要ならJSとともに消す) */
.header.scrolled {
  background-color: rgba(255, 255, 255, 0.8);
}

.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(130px, 20vw, 218px);
  width: 100%;
  display: block;
}

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

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

.jamp-list {
  display: inline-block;
  font-size: 16px;
  color: var(--black02);
  line-height: 50px;
  letter-spacing: 0.15em;
}

.jamp-list:hover,
.jamp-list:hover * {
  color: var(--pink02);
}

@media (max-width: 1200px) {
  .header-right {
    gap: 15px;
  }

  .jamp-list {
    display: none;
  }
}

@media (max-width: 1024px) {
  .header {
    height: var(--header-height70);
  }
  .header-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .header {
    position: relative;
    margin-bottom: calc(var(--header-height70) * -1);
  }

  /* スクロール後のクラス (★★★js)*/
  /* 透明化 */
  /* .header.scrolled {
    background-color: transparent; 
  } */
}

@media (max-width: 580px) {
  .header-left {
    gap: 10px;
  }
}

@media (max-width: 550px) {
  .header-left {
    gap: 0px;
    justify-content: flex-start;
  }
}
/*******************************************************
ハンバーガー
*******************************************************/
.hamburger {
  display: none;
  position: relative;
  z-index: 10;
  cursor: pointer;
  transition: all 0.4s;
  height: 55px;
  width: 55px;
  align-items: center;
  right: 2%;
  top: 20px;
}

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

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

.hamburger.active span:nth-of-type(3) {
  top: 50%;
  transform: translateX(-50%) rotate(-315deg);
}

.hamburger:hover {
  opacity: 0.7;
}

@media (max-width: 1200px) {
  .hamburger {
    display: block;
    position: fixed;
  }
}

@media (max-width: 1024px) {
  .hamburger {
    height: 45px;
    width: 45px;
    top: 13px;
  }

  .hamburger span {
    width: 32px;
  }
}

@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: 2;
  top: 0;
  right: -100%;
  max-width: 100%;
  width: 100%;
  height: 100%;
  background-color: var(--pink01);
  text-align: center;
  overflow-x: hidden;
  overflow-y: auto;
  visibility: hidden;
  transition: all 0.6s;
}

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

.menu {
  text-align: center;
  padding: 50px;
}

.menu-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--pink02);
  text-decoration: none;
  line-height: 1.5;
  min-height: 60px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.menu li:last-child .menu-list {
  margin-bottom: 0;
}

.menu-en {
  font-size: clamp(24px, 4vw, 30px);
}

.menu-jp {
  font-size: clamp(14px, 2.5vw, 18px);
  padding-bottom: 10px;
}

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

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

  .menu-list {
    margin-bottom: 10px;
  }
}

/*******************************************************
ボタン
*******************************************************/
/* ボタン共通 */
.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
  letter-spacing: 0.08em;
  padding: 0 10px;
}

.btn-pink {
  color: var(--white);
  background-color: var(--pink02);
}

.btn-pink02 {
  color: var(--pink02);
  background-color: var(--pink03);
}

.btn-white {
  color: var(--pink02);
  border: 2px solid var(--pink02);
  background-color: var(--white);
}

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

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

.header-button {
  font-size: 16px;
}

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

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

/* セクションPOINTボタン */
.link-btn {
  max-width: 470px;
  width: 100%;
  height: 70px;
  margin: 40px auto 0;
}

.link-button {
  border-radius: 50px;
}

/* タブパネル中身ボタン */
.panel-btn {
  max-width: 350px;
  width: 100%;
  height: 70px;
  margin: 0 auto;
}

.panel-button {
  border-radius: 50px;
  font-weight: var(--weightM);
}

@media (max-width: 1300px) {
  .header-btn {
    max-width: 145px;
    height: 50px;
  }

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

@media (max-width: 1200px) {
  .header-btn {
    max-width: 210px;
    height: 54px;
    padding-right: 70px;
  }
}

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

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

  .link-btn,
  .panel-btn {
    height: 60px;
  }
}

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

/* ↓↓↓↓矢印(白)↓↓↓↓ */
.arrow2::after {
  content: "";
  position: absolute;
  right: 10%; /* ボタンの右端から 10%内側に配置 */
  top: 50%; /* ボタンの高さの中央に配置 */
  transform: translateY(-50%) rotate(45deg); /* top:50% でずれる分を中央に補正 */
  border-top: 2px solid var(--white); /* 上の線を描く（矢印の一辺） */
  border-right: 2px solid var(--white); /* 右の線を描く（矢印のもう一辺） */
  width: 12px; /* 疑似要素の横幅（矢印の大きさ） */
  height: 12px; /* 疑似要素の高さ（矢印の大きさ） */
}
/* ↑↑↑↑矢印↑↑↑↑ */

/* ↓↓↓↓矢印(ピンク)↓↓↓↓ */
.arw-pink::after {
  border-top: 2px solid var(--pink02);
  border-right: 2px solid var(--pink02);
}
/* ↑↑↑↑矢印↑↑↑↑ */

/*******************************************************
mv
*******************************************************/

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

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

@keyframes sectionInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sectionInUp {
  visibility: hidden;
}

.wow.sectionInUp {
  animation-name: sectionInUp;
  animation-duration: 1.5s;
  animation-fill-mode: both;
}

/*******************************************************
共通
*******************************************************/
.section {
  overflow: hidden;
}

.section .section5 {
  overflow: visible;
}

.section-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1250px) {
  .section-inner {
    padding-right: max(5%, 20px);
    padding-left: max(5%, 20px);
  }
}

.section-inner-wide {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1450px) {
  .section-inner-wide {
    padding-right: max(5%, 20px);
    padding-left: max(5%, 20px);
  }
}

.section-inner_narrow {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .section-inner_narrow {
    padding-right: max(5%, 20px);
    padding-left: max(5%, 20px);
  }
}

.bg-white {
  position: relative;
  background-color: var(--white);
  z-index: 1;
  margin-top: -1px;
}

.section-ttl {
  position: relative;
  text-align: center;
}

.ttl-en {
  font-size: var(--size110);
  font-family: var(--Outfit);
  font-weight: var(--weightEB);
  letter-spacing: 0.12em;
  line-height: 1;
}

.ttl-jp {
  font-size: var(--size36);
  letter-spacing: 0.14em;
  text-align: center;
}

.ttl-24 {
  font-size: var(--size24);
}

.ttl-white {
  color: var(--white);
  opacity: 0.5;
}

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

.ttl-pink {
  color: var(--pink01);
}

.ttl-pink02 {
  color: var(--pink02);
}

.ttl-yellow {
  color: var(--yellow02);
  text-align: end;
}

.jp {
  margin-top: -0.7em;
}

.jp-faq {
  text-align: start;
}

.txt {
  font-size: var(--size16);
  font-weight: var(--weightM);
  color: var(--black02);
  letter-spacing: 0.12em;
  line-height: 1.7;
  flex: 1;
  text-align: justify;
}

@media (max-width: 1340px) {
  .jp-left {
    text-align: center;
  }
}

@media (max-width: 1260px) {
  .jp-right {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .ttl-msg {
    font-size: var(--size60);
  }

  .jp {
    margin-top: -0.9em;
  }
}
/*******************************************************
改行
*******************************************************/

.br-663,
.br-700,
.br-881,
.br-860,
.br-828,
.br-1450 {
  display: none;
}

@media (max-width: 1450px) {
  .br-1450 {
    display: block;
  }
}

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

@media (max-width: 840px) {
  .br-1450 {
    display: none;
  }
}

@media (max-width: 828px) {
  .br-828 {
    display: block;
  }
}

@media (max-width: 700px) {
  .br-700 {
    display: block;
  }
}

@media (max-width: 663px) {
  .br-663 {
    display: block;
  }
}

@media (max-width: 481px) {
  .br-700,
  .br-600non,
  .br-481non {
    display: none;
  }
}

@media (max-width: 410px) {
  .br-828,
  .br-663,
  .br-410non {
    display: none;
  }
}

@media (max-width: 361px) {
  .br-361non {
    display: none;
  }
}

/*******************************************************
1.セクション
*******************************************************/
.section1 {
  position: relative;
  padding-top: 110px;
}

.section1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../img/03-message/woman_back.jpg) top center / cover no-repeat;
  background-attachment: fixed;
  pointer-events: none;
}

.message {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.5em;
  color: var(--white);
  padding-top: 45px;
  padding-bottom: 103px;
}

.message::before,
.message::after {
  content: "";
  position: absolute;
  top: 40%;
  width: 100%;
  max-width: 170px;
  aspect-ratio: 170 / 215;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translate(-50%, 50%);
  pointer-events: none;
  z-index: 1;
}

.message::before {
  left: 6%;
  background-image: url("../img/03-message/tori01.png");
}

.message::after {
  right: -9%;
  background-image: url("../img/03-message/tori02.png");
}

.message-txt {
  font-size: var(--size18);
  font-weight: var(--weightM);
  line-height: 2;
  letter-spacing: 0.18em;
}

@media (max-width: 1140px) {
  .message::before,
  .message::after {
    top: 63%;
  }
}

@media (max-width: 1024px) {
  .message::before,
  .message::after {
    max-width: 130px;
  }
}

@media (max-width: 768px) {
  .section1::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: url(../img/03-message/woman_back_sp.jpg) top center / cover
      no-repeat;
    background-attachment: initial;
    pointer-events: none;
  }

  .message {
    padding-top: 30px;
  }

  .message::before,
  .message::after {
    width: 22%;
  }

  .message::after {
    right: -13%;
  }

  main-visual,
  .section2,
  .section3,
  .section4,
  .section5,
  .section6 {
    position: relative;
    z-index: 1;
  }

  .message-txt {
    letter-spacing: 0.12em;
  }
}

@media (max-width: 663px) {
  .message::before,
  .message::after {
    top: 70%;
  }

  .message::after {
    right: -17%;
  }
}

@media (max-width: 510px) {
  .message::before,
  .message::after {
    top: 74%;
  }
}

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

@media (max-width: 375px) {
  .message::before,
  .message::after {
    width: 28%;
    top: 78%;
  }

  .message::before {
    left: 11%;
  }
}

/*******************************************************
2.セクション
*******************************************************/
#point {
  padding-top: 11rem;
  margin-top: -11.1rem;
}

.section2 {
  background-color: var(--white);
  padding-bottom: 178px;
}

.ttl-img {
  width: 48.75%;
  margin: -40px auto 0;
}

.ttl-2 {
  position: relative;
  z-index: 0;
}

.ttl-2::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 28%;
  width: 100%;
  max-width: 170px;
  aspect-ratio: 170 / 170;
  background: center/contain no-repeat url("../img/04-point/tori01.png");
  transform: translate(-100%, 50%);
  pointer-events: none;
  z-index: -1;
}

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

  .ttl-2::before {
    top: 30%;
    width: 25%;
  }

  .ttl-img {
    max-width: 400px;
    width: 100%;
    margin: -30px auto 0;
  }
}

@media (max-width: 500px) {
  .ttl-2::before {
    top: 54%;
  }
}

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

  .ttl-img {
    width: 80%;
    margin: -15px auto 0;
  }
}

/* ページ内リンク(ボタン) */

.page-links {
  display: flex;
  justify-content: center;
  gap: 3.313vw;
  padding-top: 63px;
  padding-bottom: 155px;
}

.link-point {
  position: relative;
  background-color: var(--yellow01);
  border-radius: var(--boder50);
  width: clamp(118px, 25vw, 250px);
  height: clamp(118px, 25vw, 250px);
  text-align: center;
  transition: all 0.3s ease;
}

.link-point::after {
  content: "";
  position: absolute;
  bottom: 12%;
  left: 46%;
  transform: rotate(135deg);
  border-top: 3px solid var(--pink02);
  border-right: 3px solid var(--pink02);
  width: 8%;
  height: 8%;
}

.link-point:hover {
  opacity: 0.5;
}

.link-point .point {
  display: block;
  width: 84.4%;
  height: auto;
}

.link-point .link-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(14px, 3vw, 26px);
  font-weight: var(--weightSB);
  color: var(--black02);
  line-height: 1.4;
  width: 100%;
}

.link-box {
  scroll-margin-top: 255px;
}

@media (max-width: 1024px) {
  .link-box {
    scroll-margin-top: 225px;
  }
}

@media (max-width: 860px) {
  .page-links {
    padding-bottom: 140px;
  }
  .link-box {
    scroll-margin-top: 210px;
  }

  .link-box:nth-of-type(2),
  .link-box:nth-of-type(3) {
    scroll-margin-top: 200px;
  }
}

@media (max-width: 768px) {
  .link-point::after {
    width: 9%;
    height: 9%;
  }

  .link-box {
    scroll-margin-top: 140px;
  }

  .link-box:nth-of-type(2),
  .link-box:nth-of-type(3) {
    scroll-margin-top: 130px;
  }
}

@media (max-width: 480px) {
  .page-links {
    padding-bottom: 100px;
  }

  .link-box {
    scroll-margin-top: 100px;
  }

  .link-box:nth-of-type(2),
  .link-box:nth-of-type(3) {
    scroll-margin-top: 90px;
  }
}

@media (max-width: 430px) {
  .page-links {
    flex-wrap: wrap;
    padding-top: 30px;
  }
}

/* ページ内リンク(内容) */

.link-outer {
  display: flex;
  flex-direction: column;
  gap: 170px;
}

.link-box {
  position: relative;
  background-color: var(--yellow01);
  border-radius: 30px;
}

.link-ttl {
  position: absolute;
  width: 467px;
  top: 60px;
  left: 50%;
  transform: translate(-50%, -100%);
}

.link-contents {
  display: flex;
  justify-content: center;
  gap: 56px;
  padding: 70px 25px;
}

.contents01,
.contents02 {
  position: relative;
  z-index: 0;
}

.contents01::before {
  content: "";
  position: absolute;
  bottom: 25%;
  left: 10%;
  width: 100%;
  max-width: 208px;
  aspect-ratio: 208 / 208;
  background: center/contain no-repeat url("../img/04-point/tori02.png");
  transform: translate(-50%, 100%);
  pointer-events: none;
  z-index: -1;
}

.contents02::before {
  content: "";
  position: absolute;
  top: 4%;
  right: 15%;
  width: 100%;
  max-width: 153px;
  aspect-ratio: 153 / 153;
  background: center/contain no-repeat url("../img/04-point/tori03.png");
  transform: translate(50%, -100%);
  pointer-events: none;
  z-index: -1;
}

.data-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 470px;
  width: 100%;
}

.link-head {
  position: relative;
  font-size: var(--size28);
  font-weight: var(--weightSB);
  letter-spacing: 0.08em;
  text-align: center;
  padding-bottom: 0.5em;
  margin-bottom: 30px;
  min-height: 90px;
  display: flex;
  align-items: flex-end;
}

.link-head::after {
  content: "";
  position: absolute;
  left: -0.2em;
  right: -0.2em;
  bottom: 0;
  height: 3px;
  background-color: var(--pink02);
}

.link-img {
  width: 100%;
  padding-bottom: 30px;
  flex: 1;
}

.link-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.link-list li {
  position: relative;
  font-size: var(--size20);
  letter-spacing: 0.12em;
  line-height: 1.352;
  padding-left: 2.058em;
}

.link-list li::before {
  content: "";
  position: absolute;
  left: 0;
  transform: translateY(6%);
  width: 24px;
  height: 24px;
  background: url(../img/04-point/icon.png) no-repeat 0 0 / 100%;
}

@media (max-width: 1024px) {
  .ttl-2::before {
    left: 23%;
    max-width: 140px;
  }

  .contents01::before {
    max-width: 160px;
  }

  .contents02::before {
    max-width: 115px;
  }
}

@media (max-width: 860px) {
  .link-outer {
    gap: 130px;
  }

  .link-contents {
    gap: 25px;
  }

  .link-ttl {
    width: 400px;
  }
}

@media (max-width: 768px) {
  .contents01::before {
    width: 28%;
  }

  .contents02::before {
    width: 22%;
    top: -2%;
  }

  #link01 {
    .link-img {
      padding-bottom: 0;
    }
  }

  .link-contents {
    flex-direction: column;
    align-items: center;
    gap: 35px;
    padding-bottom: 40px;
  }

  .link-head {
    min-height: auto;
    display: block;
  }
}

@media (max-width: 480px) {
  .link-outer {
    gap: 110px;
  }
  .link-ttl {
    width: 310px;
    top: 40px;
  }

  .link-list li {
    padding-left: 1.5em;
  }
  .link-list li::before {
    width: 20px;
    transform: translateY(12%);
  }
}

@media (max-width: 375px) {
  .link-ttl {
    width: 280px;
  }
}

/*******************************************************
3.セクション
*******************************************************/

.section3 {
  position: relative;
  background-color: var(--pink01);
  border-radius: 80px;
  padding-top: 110px;
  padding-bottom: 130px;
  z-index: 0;

  overflow: visible;

  .section-inner {
    overflow: hidden;
  }
}

.back-top {
  position: absolute;
  width: 36.089%;
  top: 0;
  left: 0;
}

.back-top img {
  border-radius: 80px 0 0 0;
}

.back-bottom {
  position: absolute;
  width: 36.089%;
  bottom: 0;
  right: 0;
}

.back-bottom img {
  border-radius: 0 0 80px 0;
}

.section3::before {
  content: "";
  position: absolute;
  top: -2%;
  right: 35%;
  width: 100%;
  max-width: 462px;
  aspect-ratio: 462 / 205;
  background: center/contain no-repeat url("../img/05-about/tori.png");
  transform: translate(100%, -50%);
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 1400px) {
  .section3::before {
    right: 40%;
  }
}

@media (max-width: 1260px) {
  .section3::before {
    right: 50%;
  }
}

@media (max-width: 1024px) {
  .section3::before {
    max-width: 370px;
  }

  .back-top,
  .back-bottom {
    width: 52%;
  }
}

@media (max-width: 860px) {
  .section3 {
    border-radius: 30px;
  }

  .back-top img {
    border-radius: 30px 0 0 0;
  }
  .back-bottom img {
    border-radius: 0 0 30px 0;
  }
}

@media (max-width: 790px) {
  .section3::before {
    right: 52%;
  }
}

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

  .section3::before {
    width: 49%;
  }
}

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

  .section3::before {
    top: -1%;
    z-index: 1;
  }
}

@media (max-width: 375px) {
  .section3::before {
    top: 1%;
  }
}
/* ↓↓↓↓↓↓↓↓↓↓タブ切り替え↓↓↓↓↓↓↓↓↓↓ */

.tab-wrapper {
  position: relative;
  padding-top: 57px;
  z-index: 2;
}

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

/******** タブボタン *******/
.tab-menu {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 14px;
  list-style: none;
}

.tab-item {
  flex: 1; /* 幅を均等にする */
}

.tab-button {
  font-size: clamp(15px, 2vw, 28px);
  font-weight: var(--weightSB);
  text-align: center;
  color: var(--gray);
  border-bottom: 3px solid var(--gray);
  width: min(100%, 228px);
  height: 60px;
  padding-bottom: 7px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.tab-button:hover {
  color: var(--black02);
  border-bottom: 3px solid var(--pink02);
}

.tab-button.active {
  font-size: clamp(15px, 2vw, 28px);

  color: var(--black02);
  border-bottom: 3px solid var(--pink02);
}

@media (max-width: 881px) {
  .tab-button {
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .tab-menu {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .tab-menu {
    flex-wrap: wrap;
    gap: 5px;
  }
  .tab-item {
    flex: 0 0 calc(33.33% - 5px);
  }
}

/******** 中身 *******/
.tab-box {
  background-color: var(--white);
  border-radius: 30px;
  min-height: 120px;
  margin-top: 35px;
  padding: 46px 100px;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-panel.active {
  display: block;
}

/* フェードイン */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 写真とテキスト */
.panel-top {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  padding-bottom: 40px;
}

.top-pic,
.top-txtbox {
  flex: 1;
}

.top-pic {
  max-width: 470px;
  width: 100%;
}

.top-txtbox {
  display: flex;
  flex-direction: column;
  gap: 34px;
  max-width: 470px;
  width: 100%;
}

.top-head {
  position: relative;
  font-size: clamp(20px, 4.5vw, 32px);
  color: var(--black);
  letter-spacing: 0.12em;
  padding-left: 0.9375em;
}

.top-head::before {
  content: "";
  position: absolute;
  display: block;
  width: 0.25em;
  height: 1.2em;
  border-radius: 0.2em;
  background-color: var(--pink02);
  left: 0;
}

.panel-list {
  font-size: 21px;
  font-weight: 700;
}

/* スケジュール */

.schedule {
  position: relative;
  font-size: 26px;
  font-size: clamp(20px, 4.5vw, 26px);
  color: var(--pink02);
  text-align: center;
  background-color: var(--yellow01);
  line-height: 2.6923em;
  border-radius: 20px;
}

.schedule::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: var(--yellow01) transparent transparent;
  translate: -50% 100%;
}

.schedule-outer {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
  margin-bottom: 53px;
}

.schedule_list {
  position: relative;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.schedule_item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.schedule_item::before {
  content: "";
  display: block;
  position: absolute;
  top: 18%;
  left: 0;
  width: 3px;
  height: 140%;
  background-color: var(--pink02);
  transform: translateX(250%);
}

.schedule_list .schedule_item:last-child::before {
  display: none;
}

.time {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--pink02);
  font-size: 24px;
  font-family: var(--Outfit);
  letter-spacing: 0.059em;
  padding-left: 1.5em;
}

.time::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: var(--pink02);
  border-radius: var(--boder50);
  left: 0;
}

.schedule_txt {
  width: 100%;
  font-size: 18px;
  font-weight: var(--weightM);
  color: var(--black02);
  letter-spacing: 0.12em;
  line-height: 1.6;
  padding-left: 2em;
}

@media (max-width: 860px) {
  .schedule_txt {
    font-size: 16px;
  }

  .schedule_item::before {
    height: 143%;
  }
}

@media (max-width: 1024px) {
  .tab-box {
    padding: max(6%, 25px) max(5%, 10px) 50px;
  }
}

@media (max-width: 768px) {
  .panel-top {
    flex-direction: column;
    gap: 30px;
  }

  .top-pic {
    margin: 0 auto;
  }

  .top-txtbox {
    max-width: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .schedule-outer {
    gap: 40px;
  }
}

@media (max-width: 562px) {
  .tab05 .list_right .schedule_item:nth-last-child(3)::before {
    top: 10%;
  }
}

@media (max-width: 493px) {
  .tab02 .list_right .schedule_item:nth-last-child(2)::before {
    height: 120%;
  }
}

@media (max-width: 481px) {
  .schedule-outer {
    flex-direction: column;
    gap: 30px;
    margin-left: 5vw;
  }

  .schedule_list {
    width: 100%;
  }

  .time {
    font-size: 20px;
  }

  .schedule_item {
    flex-direction: row;
  }

  .schedule_item::before,
  .tab02 .list_right .schedule_item:nth-last-child(2)::before {
    height: 219%;
  }

  .tab04 .schedule_item:nth-last-child(2)::before {
    height: 174%;
  }

  .schedule_list .schedule_item:last-child::before {
    display: block;
  }

  .list_right .schedule_item:last-child::before,
  .tab04 .schedule_item:last-child::before {
    display: none;
  }

  .schedule_txt {
    padding-left: 1em;
  }
}

@media (max-width: 480px) {
  .tab-box {
    margin-top: 20px;
  }
}

@media (max-width: 446px) {
  .schedule_list {
    gap: 24px;
  }

  .tab05 .list_right .schedule_item:nth-last-child(3)::before {
    height: 130%;
  }
}

@media (max-width: 436px) {
  .tab02 .list_right .schedule_item:nth-last-child(2)::before {
    height: 150%;
  }
}

@media (max-width: 395px) {
  .tab02 .list_right .schedule_item:nth-last-child(2)::before {
    height: 154%;
  }
}

@media (max-width: 353px) {
  .tab04 .schedule_item:nth-last-child(2)::before {
    height: 140%;
  }
}

@media (max-width: 329px) {
  .tab03 .list_right .schedule_item:nth-last-child(2)::before {
    height: 140%;
  }
}

@media (max-width: 320px) {
  .tab02 .list_right .schedule_item:nth-last-child(2)::before {
    height: 136%;
  }
}

/* 戻るボタン */
.back-btn {
  max-width: 185px;
  width: 100%;
  height: 50px;
  margin: 0 20px 0 auto;
}

.back-button {
  font-size: 16px;
  font-weight: var(--weightM);
  border-radius: 0 0 10px 10px;
}

#back {
  scroll-margin-top: 100px;
}

@media (max-width: 1024px) {
  #back {
    scroll-margin-top: 70px;
  }
}

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

@media (max-width: 480px) {
  .back-btn {
    max-width: 150px;
    height: 45px;
  }

  .back-button {
    font-size: 15px;
  }
}

/*******************************************************
4.セクション
*******************************************************/

.section4 {
  position: relative;
  padding: 137px 0 218px;
  background-color: var(--white);
  background: url(../img/07-voice/woman_back.png) no-repeat bottom left / 83%
    445px;

  overflow: visible;

  .section-inner {
    overflow: hidden;
  }
}

.ttl-4 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media (max-width: 1300px) {
  .section4 {
    padding: 137px 0 218px;
  }
}

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

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

.voice-wrapper {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 50px;
  z-index: 0;
}

.voice-wrapper::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: 30%;
  width: 29.429%;
  aspect-ratio: 412 / 223;
  background: center/contain no-repeat url("../img/07-voice/tori01.png");
  transform: translate(100%, 100%);
  pointer-events: none;
  z-index: -1;
}

.card-list {
  position: relative;
  display: flex;
  gap: 40px;
}

.card-pic {
  width: 100%;
}

.open-modal {
  position: relative;

  width: 100%;
}

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

.card02 {
  transform: translateY(100px);
}

.name {
  position: absolute;
  top: 3%;
  right: 2%;
  background-color: var(--white);
  color: var(--pink02);
  font-size: 18px;
  text-align: center;
  line-height: 40px;
  width: 100px;
  border-radius: 8px;
  display: inline-block;
}

.txt-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 50px;
}

.txt-box-head {
  position: absolute;
  bottom: 5%;
}

.card-txt {
  background-color: var(--pink02);
  font-size: var(--size25);
  color: var(--white);
  letter-spacing: 0.12em;
  width: fit-content;
  padding: 0 0.64em;
}

@media (max-width: 1260px) {
  .voice-wrapper {
    display: block;
  }

  .voice-wrapper::after {
    width: 100%;
    max-width: 412px;
    right: 100%;
    bottom: 0;
  }
}

@media (max-width: 1024px) {
  .voice-wrapper::after {
    max-width: 335px;
  }
}

@media (max-width: 840px) {
  .voice-wrapper::after {
    top: -55%;
    bottom: auto;
    width: 47%;
  }
}

@media (max-width: 768px) {
  .voice-wrapper::after {
    top: -19%;
  }

  .card-list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
  }

  .open-modal {
    max-width: 420px;
  }

  .card02 {
    transform: none;
  }
}

@media (max-width: 480px) {
  .voice-wrapper::after {
    top: -16%;
  }
}

@media (max-width: 375px) {
  .card-txt {
    padding: 0 0.3em;
  }

  .voice-wrapper::after {
    top: -18%;
    width: 50%;
  }
}

/* ===============================
  モーダル　内容
=============================== */
/* モーダル全体 */
.modal {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  pointer-events: none;

  position: fixed !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 95px 0;
  background-color: var(--black03);
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  z-index: 9999 !important;
  transition: all 0.3s ease;
}

/* 開いたとき */
.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;
  max-width: 980px;
  width: 100%;
  padding: 40px 40px 60px;
  border-radius: 30px;

  background: url(../img/07-voice/woman_back02.png) center / cover no-repeat;
}

/* 閉じるボタン */
.modal .close {
  position: absolute;
  top: 0.5%;
  right: 1.5%;
  font-size: 35px;
  color: var(--pink02);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: all 0.4s;
}

.close span {
  transform: translate(0%, -5%);
}

.close:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.person-box {
  position: relative;
  display: flex;
  gap: 44px;
  width: 100%;
  z-index: 0;
  margin-bottom: 68px;
}

.person-box::after {
  content: "";
  position: absolute;
  bottom: 12%;
  right: 15%;
  width: 100%;
  max-width: 140px;
  aspect-ratio: 140 / 140;
  background: center/contain no-repeat url("../img/07-voice/tori02.png");
  transform: translate(100%, 50%);
  pointer-events: none;
  z-index: -1;
}

.person-pic {
  width: 48.89%;
}

.person-pic img {
  border-radius: 25px;
}

.person-txt-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 15px;
}

.person-name {
  font-size: 18px;
  color: var(--pink02);
  text-align: center;
  border: 2px solid var(--pink01);
  line-height: 40px;
  width: 100px;
  border-radius: 8px;
  display: inline-block;
}

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

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

.icon-q {
  font-size: 20px;
  color: var(--white);
  background-color: var(--pink02);
  font-family: var(--Outfit);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
}

.icon-q span {
  transform: translate(2%, 9%);
}

.q-txt {
  font-size: 20px;
  flex: 1;
}

.a-box {
  background-color: var(--pink01);
  border-radius: 10px;
  padding: 17px 23px;
}

.a-txt {
  font-size: 18px;
  font-weight: var(--weightM);
  color: var(--black02);
  line-height: 1.6;
}

/* 閉じるボタン （閉じる）*/

.btn-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-btn {
  max-width: 260px;
  width: 100%;
  height: 60px;
  margin: 0 auto;
}

.modal-button {
  font-size: 15px;
  font-family: var(--ZenKaku);
  font-weight: 600;
}

.close-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* フェードアニメーション */
@keyframes fadeIn {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .person-box::after {
    bottom: 5%;
    right: 22%;
  }
}

@media (max-width: 860px) {
  .person-box {
    gap: 22px;
  }
  .person-head {
    font-size: 30px;
  }

  .modal-content {
    padding: max(5%, 20px);
  }
}

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

  .person-box::after {
    bottom: 76%;
  }

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

  .person-box {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 20px;
  }

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

  .q-txt {
    font-size: 18px;
  }

  .a-txt {
    font-size: 16px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .person-box::after {
    width: 33%;
    bottom: 52%;
    z-index: 1;
  }

  .q-txt {
    font-size: 17px;
  }

  .a-txt {
    font-size: 15px;
  }
}

@media (max-width: 375px) {
  .person-box::after {
    bottom: 45%;
  }

  .q-txt {
    font-size: 16px;
  }
}

/*******************************************************
5.セクション
*******************************************************/

.section5 {
  position: relative;
  overflow: unset;
  background-color: var(--white);
  padding-top: 120px;
  padding-bottom: 100px;
  z-index: 0;
}

.ttl-5 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section5 .ttl-5 {
  position: -webkit-sticky;
  position: sticky;
  top: 13%;
}

.faq-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

.faq-outer {
  display: flex;
  flex-direction: column;
  gap: 670px;
}
.faq-item {
  max-width: 245px;
  width: 100%;
}

@media (max-width: 840px) {
  .section5 .ttl-5 {
    position: static;
  }

  .faq-wrap {
    position: relative;
    display: block;
  }

  .faq-outer {
    position: relative;
  }

  .faq-item {
    position: absolute;
    width: 28%;
    top: -150%;
    right: 0;
  }
}

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

  .section5::after {
    width: 25%;
  }
}

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

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

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

.toggle {
  margin: 0;
}

.faq-box {
  max-width: 1000px;
  width: 100%;
}

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

.toggle-link .left-side {
  display: flex;
  font-size: 22px;
  color: var(--black02);
  align-items: center;
  gap: 18px;
  flex: 1;
}

/* Qアイコン */
.toggle-link .q-icon {
  font-size: 32px;
  color: var(--pink02);
  font-family: var(--Outfit);
  font-weight: var(--weightB);
  line-height: 1;
}

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

.toggle-link .plus-minus::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 2rem;
  background: var(--pink02);
  top: -8px;
  left: 8px;
  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アイコン + flex */

.toggle-main dd .a-icon {
  font-size: 32px;
  color: var(--pink02);
  font-family: var(--Outfit);
  font-weight: bold;
}

.toggle-main dd {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  font-size: 18px;
  font-weight: var(--weightM);
  color: var(--black02);
  border: 2px solid var(--pink03);
  border-radius: 8px;
  padding: 33px 32px;
  margin: 10px 0 20px;
}

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

@media (max-width: 840px) {
  .faq-box {
    padding-top: 42px;
  }
}

@media (max-width: 768px) {
  .toggle-link .left-side {
    font-size: 20px;
  }
}
@media (max-width: 630px) {
  .toggle-link {
    padding: 16px;
  }

  .toggle-link .left-side {
    font-size: 16px;
  }

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

  .toggle-main dd .a-icon,
  .toggle-link .q-icon {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .toggle-link .left-side {
    font-size: 15px;
  }

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

  .toggle-main dd .a-icon,
  .toggle-link .q-icon {
    font-size: 23px;
  }

  .toggle-link .plus-minus {
    width: 1.8rem;
  }
  .toggle-link .plus-minus::after {
    height: 1.8rem;
    top: -7px;
    left: 7px;
  }
}

/*******************************************************
6.セクション
*******************************************************/

.section6 {
  position: relative;
  background-color: var(--yellow01);
  border-radius: 80px 80px 0 0;
  padding-top: 120px;
  padding-bottom: 275px;
  z-index: 0;
}

.section6::after {
  content: "";
  position: absolute;
  bottom: 24%;
  right: 35%;
  width: 100%;
  max-width: 457px;
  aspect-ratio: 457 / 260;
  background: center/contain no-repeat url("../img/09-map/tori.png");
  transform: translate(100%, 100%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 1260px) {
  .section6::after {
    right: 50%;
  }
}

@media (max-width: 1024px) {
  .section6::after {
    max-width: 370px;
  }
}

@media (max-width: 860px) {
  .section6 {
    border-radius: 30px 30px 0 0;
  }
}

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

  .section6::after {
    width: 49%;
  }
}

@media (max-width: 480px) {
  .section6 {
    padding: 80px 0 150px;
  }
  .section6::after {
    bottom: 18%;
  }
}

/* map 個別 */

/* 求人ありの地図をホバーした時の色 */
.pc_map svg .enable_pref:hover,
.pc_map svg .area_hover {
  fill: #e78895;
}

.box_map .enable_pref a:hover,
.box_map .area_hover a {
  color: #e78895;
}

.box_map button[type="submit"] {
  background-color: #e78895;
}

@media (max-width: 768px) {
  .box_map {
    padding: 2em 1.5em;
  }
}
/*******************************************************
追従ボタン
*******************************************************/
.slidebtn-wrap {
  display: none;
}

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

@media (max-width: 768px) {
  .slidebtn-wrap {
    position: fixed;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    width: 100%;
    display: none;
    z-index: 1;
  }

  .slide-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    width: 100%;
    height: 70px;
    text-align: center;
    font-size: 17px;
    letter-spacing: 0.1em;
    border-radius: 50px;

    text-decoration: none;
  }
}

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

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

/* 上向き矢印を線で表現 */
.pagetop::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--pink02);
  border-left: 2px solid var(--pink02);
  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(--pink02);
  color: var(--white);
  font-size: 16px;
  font-weight: var(--weightM);
  text-align: center;
  padding: 60px 0;
}

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

.footer-nav {
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

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

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

@media (max-width: 768px) {
  footer {
    font-size: 14px;
    padding-top: 35px;
    padding-bottom: 110px;
  }
}

@media (max-width: 566px) {
  .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;
  }
}
