@charset "UTF-8";
/*================================================================
Chrome/Firefox/Edge/Safariなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

/* 共通クラス */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  font-size: 14px;
  line-height: 2;
  font-weight: 400;
  background-color: #fff;
}

.inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 40px;
  }
}

.img {
  display: block;
  width: 100%;
}

.heading {
  text-align: center;
  padding-top: 60px;
}
@media screen and (min-width: 900px) {
  .heading {
    padding-top: 100px;
  }
}

.heading__ja {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.heading__en {
  color: #43e97b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  padding-top: 7px;
}

@media screen and (min-width: 768px) {
  .hidden-md {
    display: none; /* 768px以上で非表示 */
  }
}

@media (max-width: 767px) {
  .hidden-md2 {
    display: none; /* 767px以下で非表示 */
  }
}

@media screen and (min-width: 1200px) {
  .hidden-xl {
    display: none; /* 1200px以上で非表示 */
  }
}

@media (max-width: 1199px) {
  .hidden-xl2 {
    display: none; /* 1199px以下で非表示 */
  }
}

/* header */
.header {
  height: 64px;
  padding-block: 20px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
@media screen and (min-width: 900px) {
  .header {
    height: 90px;
    padding-block: 32px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 100;
}

.header__logo {
  width: 182px;
  height: 25px;
}
.header__logo img {
  margin-bottom: 7px;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 900px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .header__nav {
    gap: 40px;
  }
}

.header__nav-link:hover {
  color: #43e97b;
}
@media screen and (min-width: 900px) {
  .header__nav-link {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.03em;
  }
}
@media screen and (min-width: 1200px) {
  .header__nav-link {
    font-size: 16px;
  }
}

.drawer-icon {
  background-image: url(../img/sp/drawer-icon1-img.png);
  width: 30px;
  height: 18px;
  background-size: 30px 18px;
  background-repeat: no-repeat;
  border: none; /* これを追加してボタンの標準装飾を消す */
  background-color: transparent; /* これを追加してボタンの標準装飾を消す */
  cursor: pointer;
  position: relative;
  z-index: 9999;
  pointer-events: auto;
  outline: none;
}
@media screen and (min-width: 900px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-checked {
  background-image: url(../img/sp/drawer-icon2-img.png);
}

.drawer-content {
  background: #fff;
  width: min(85vw, 320px);
  height: 100dvh;
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}

.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: right;
  padding: 90px 27px 0 0;
  gap: 28px;
}

.drawer-content__menu-link {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
}

/* fvはスタイルなし */
/* theme */
.theme__heading {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin-top: 35px;
}
@media screen and (min-width: 900px) {
  .theme__heading {
    font-size: 24px;
    margin-top: 100px;
  }
}

.theme__text-main {
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .theme__text-main {
    font-size: 16px;
    margin-top: 38px;
  }
}

.theme__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 41px 29px;
  margin-top: 38px;
}
@media screen and (min-width: 600px) {
  .theme__cards {
    gap: 41px 50px;
  }
}
@media screen and (min-width: 768px) {
  .theme__cards {
    gap: 41px 29px;
  }
}
@media screen and (min-width: 900px) {
  .theme__cards {
    margin-top: 52px;
    max-width: 1102px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1200px) {
  .theme__cards {
    gap: 48px 91px;
  }
}

.theme__card {
  width: 153px;
  height: 97px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-top: 4px solid #43e97b;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .theme__card {
    width: 210px;
    height: 115px;
  }
}
@media screen and (min-width: 900px) {
  .theme__card {
    width: 254px;
    height: 130px;
  }
}
@media screen and (min-width: 1200px) {
  .theme__card {
    width: 291px;
    height: 140px;
  }
}

.theme__card-circle {
  width: 36px;
  height: 36px;
  border-radius: 36px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#43e97b), to(#d4f26b));
  background: linear-gradient(180deg, #43e97b, #d4f26b);
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: -21px;
  left: calc(50% - 69px);
}
@media screen and (min-width: 768px) {
  .theme__card-circle {
    left: calc(50% - 98px);
  }
}
@media screen and (min-width: 900px) {
  .theme__card-circle {
    width: 52px;
    height: 52px;
    border-radius: 52px;
    top: -29px;
    left: calc(50% - 120px);
  }
}
@media screen and (min-width: 1200px) {
  .theme__card-circle {
    top: -25px;
    left: calc(50% - 132px);
  }
}

.theme__card-number {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (min-width: 900px) {
  .theme__card-number {
    font-size: 22px;
  }
}

.theme__card-text {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .theme__card-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .theme__card-text {
    font-size: 16px;
  }
}

.theme__text-box {
  background-image: url(../img/sp/theme-img.png);
  background-size: cover;
  margin-left: -20px; /* 親のpadding分を打ち消す */
  margin-right: -20px; /* 親のpadding分を打ち消す */
  margin-top: 20px;
  color: #fff;
  padding: 30px 20px;
}
@media screen and (min-width: 900px) {
  .theme__text-box {
    background-image: url(../img/theme-img.png);
    margin-left: -40px; /* 親のpadding分を打ち消す */
    margin-right: -40px; /* 親のpadding分を打ち消す */
    margin-top: 50px;
    padding: 50px 40px;
  }
}
@media screen and (min-width: 1200px) {
  .theme__text-box {
    width: 100vw; /* 画面幅ぴったり */
    margin-left: calc(-50vw + 50%); /* 中央基準で左へ */
    margin-right: calc(-50vw + 50%); /* 同上（保険） */
  }
}

.theme__text-sub1 {
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (min-width: 900px) {
  .theme__text-sub1 {
    line-height: 2;
  }
}

.theme__text-sub2 {
  padding-top: 20px;
}
@media screen and (min-width: 900px) {
  .theme__text-sub2 {
    padding-top: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .theme__text-sub2 {
    font-size: 16px;
    max-width: 1056px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* about */
@media screen and (min-width: 900px) {
  .about__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 100px;
  }
}

.about__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.about__img img {
  display: block;
  margin: 0 auto;
  margin-top: 20px;
}

.about__text-box {
  margin-top: 20px;
}

/* suggest */
.suggest {
  background-image: url("../img/sp/suggest-img.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 54px;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .suggest {
    padding-bottom: 100px;
  }
}

.suggest__text-container {
  width: 301px;
  margin: 0 auto;
}

.suggest__text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  margin-top: 14px;
}
.suggest__text-box img {
  width: 21px;
  height: 21px;
}

/* 可変パラメータ（必要なら数値だけ調整） */
:root {
  --sb-height-sp: 100px; /* SPの総高さ（切り欠き込み） */
  --sb-height-pc: 155px; /* PCの総高さ（切り欠き込み） */
  --sb-notch: 30px; /* 切り欠きの深さ（今の見た目に合わせて調整可） */
  --sb-bg: #5a5a5a; /* 帯の色 */
}
@media screen and (min-width: 768px) {
  :root {
    --sb-notch: 55px; /* 切り欠きの深さ（今の見た目に合わせて調整可） */
  }
}

.suggest__banner {
  /* フルブリード（親のpaddingを無視して画面幅いっぱい） */
  width: 100vw;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: var(--sb-height-sp);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  overflow: hidden;
  /* 帯の形状（下辺の中央を切り欠く） */
  background: var(--sb-bg);
  /* 0,0 → 100%,0 → 100%,(100%-notch) → 50%,100% → 0,(100%-notch) */
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - var(--sb-notch)), 50% 100%, 0% calc(100% - var(--sb-notch)));
}

/* 768px以上で高さだけ切替（横はそのまま100vw） */
@media (min-width: 768px) {
  .suggest__banner {
    height: var(--sb-height-pc);
  }
}
.suggest__banner-title {
  position: relative;
  margin-bottom: 12px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  /* 文字があふれて高さ固定で切れるのを防ぐ（2行まで表示） */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-clamp: 3; /* 標準プロパティを追加 */
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .suggest__banner-title {
    font-size: 22px;
  }
}

/* 背景に模様やテクスチャを重ねたい場合（任意）
   画像が切れないよう “contain” で敷き、余白は帯色で埋める */
.suggest__banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center/contain no-repeat url("../img/sp/suggest2-pattern.png");
  opacity: 0.15; /* 模様をうっすら */
  pointer-events: none;
}

@media (min-width: 768px) {
  .suggest__banner::before {
    background-image: url("../img/pc/suggest2-pattern.png");
  }
}
.suggest__sub-text-box {
  text-align: center;
  margin-top: 10px;
}

.suggest__sub-text {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .suggest__sub-text {
    font-size: 16px;
    margin-top: 32px;
  }
}

.suggest__sub-text-per {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .suggest__sub-text-per {
    font-size: 22px;
  }
}

.suggest__sub-text-big {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(#43e97b), to(#d4f26b));
  background: linear-gradient(to bottom, #43e97b, #d4f26b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin: 0px 5px 0 5px;
}
@media screen and (min-width: 768px) {
  .suggest__sub-text-big {
    font-size: 80px;
  }
}

.suggest__sub-text-weight {
  font-weight: 900;
}

/* point */
.point__container {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .point__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 33px;
  }
}

@media screen and (min-width: 768px) {
  .row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.point__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .point__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 380px;
            flex: 0 0 380px; /* 固定幅 */
  }
}
.point__img img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
}

.point-text__container {
  margin-top: 10px;
}

.point-title__number {
  color: #43e97b;
  text-shadow: 6px 3px 1px rgba(0, 0, 0, 0.14);
  font-size: 30px;
  line-height: 1;
}

.point-title__text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 5px;
}

.point-text {
  margin-top: 5px;
}

/* access */
.access {
  background: #fafafa;
  margin-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 900px) {
  .access {
    padding-bottom: 100px;
  }
}

@media screen and (min-width: 900px) {
  .access__head {
    margin-top: 100px;
  }
}

.access__container {
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .access__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.access__sm__container {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .access__sm__container {
    width: 31%;
  }
}

.access__img img {
  display: block;
  margin: 0 auto;
  width: 100%;
}

.access__text {
  margin-top: 10px;
}

/* price */
.price__container {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .price__text__main {
    text-align: center;
  }
}

.price__text__sub {
  text-align: center;
  font-size: 10px;
  line-height: 1.5;
  margin-top: 5px;
}

.price__slide__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .price__slide__links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
  }
}

.price__slide__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#43e97b), to(#d4f26b));
  background: linear-gradient(180deg, #43e97b, #d4f26b);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.price__slide__link:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
@media screen and (min-width: 600px) {
  .price__slide__link {
    width: 95px;
    height: 95px;
  }
}
@media screen and (min-width: 768px) {
  .price__slide__link {
    width: 110px;
    height: 110px;
  }
}

.price__slide__link__text {
  font-size: 26px;
  letter-spacing: 1.5px;
  font-weight: 700;
  line-height: 1;
  background: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 600px) {
  .price__slide__link__text {
    font-size: 30px;
    width: 90px;
    height: 90px;
  }
}
@media screen and (min-width: 768px) {
  .price__slide__link__text {
    font-size: 32px;
    width: 105px;
    height: 105px;
  }
}

.price__slide__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  scroll-behavior: smooth;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .price__slide__cards {
    width: 662px;
  }
}

.price__slide__card {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .price__slide__card {
    width: 662px;
  }
}

.price__slide__card__ticket {
  border: 3px solid;
  -o-border-image: linear-gradient(to left, #43e97b, #d4f26b) 1;
     border-image: -webkit-gradient(linear, right top, left top, from(#43e97b), to(#d4f26b)) 1;
     border-image: linear-gradient(to left, #43e97b, #d4f26b) 1;
  padding: 10px 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .price__slide__card__ticket {
    width: 662px;
    position: relative;
    left: calc(50% - 331px);
  }
}

.price__slide__card__ticket__text {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.192px;
}
.price__slide__card__ticket__text .margin__top {
  margin-top: 10px;
}
.price__slide__card__ticket__text .margin__right {
  font-weight: 700;
  margin-right: 13px;
}
.price__slide__card__ticket__text .font__lg {
  font-size: 23px;
  letter-spacing: 0.644px;
  font-weight: 700;
}

.price__slide__table {
  margin: 0 auto;
  border: 1px solid #000;
  border-collapse: collapse;
}

.price__slide__table-top {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .price__slide__table-top {
    width: 662px;
  }
}

.price__slide__table-th {
  border: 1px solid #000;
  border-collapse: collapse;
}

.th__black {
  background: #5f5f5f;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.144px;
  padding: 10px;
}

.th__white {
  padding: 17px 54px;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.196px;
}

.price__slide__table-td {
  border: 1px solid #000;
  border-collapse: collapse;
  text-align: center;
}

.td__black {
  background: #5f5f5f;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.144px;
  margin: auto;
}

.td__white {
  padding: 17px 54px;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.196px;
}

.price__slide__table-bottom {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .price__slide__table-bottom {
    width: 662px;
  }
}

.price__slide__table-td2 {
  height: 88px;
}

.benefits__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 23px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.benefits__content__icon1 {
  text-align: center;
}
@media screen and (min-width: 600px) {
  .benefits__content__icon1 {
    width: 150px;
  }
}
.benefits__content__icon1 img {
  width: 40px;
  height: 30px;
}

.benefits__content__icon2 {
  text-align: center;
}
@media screen and (min-width: 600px) {
  .benefits__content__icon2 {
    width: 150px;
  }
}
.benefits__content__icon2 img {
  width: 39px;
  height: 39px;
}

.benefits__content__icon3 {
  text-align: center;
}
@media screen and (min-width: 600px) {
  .benefits__content__icon3 {
    width: 150px;
  }
}
.benefits__content__icon3 img {
  width: 35px;
  height: 35px;
}

.benefit__content__text {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.208px;
  line-height: 1.5;
}

/* compare */
.compare {
  padding-top: 30px;
  padding-bottom: 60px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .compare {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.compare__heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .compare__heading {
    font-size: 24px;
  }
}

.compare__content {
  margin-top: 40px;
  overflow-x: auto;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .compare__content {
    margin-top: 60px;
    padding-bottom: 0;
  }
}

.compare__table {
  width: 620px;
  table-layout: fixed;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .compare__table {
    width: 1000px;
  }
}
.compare__table th,
.compare__table td {
  text-align: center;
  font-weight: 700;
  height: 60px;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .compare__table th,
  .compare__table td {
    height: 100px;
  }
}
.compare__table th:nth-child(1),
.compare__table td:nth-child(1) {
  width: 130px;
}
@media screen and (min-width: 768px) {
  .compare__table th:nth-child(1),
  .compare__table td:nth-child(1) {
    width: 200px;
    font-size: 16px;
  }
}
.compare__table th:nth-child(2),
.compare__table td:nth-child(2) {
  width: 140px;
  background: #d4f26b;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .compare__table th:nth-child(2),
  .compare__table td:nth-child(2) {
    font-size: 16px;
    width: 200px;
  }
}
.compare__table th:nth-child(2) img,
.compare__table td:nth-child(2) img {
  width: 70px;
}
@media screen and (min-width: 768px) {
  .compare__table th:nth-child(2) img,
  .compare__table td:nth-child(2) img {
    width: 123px;
  }
}
.compare__table th:nth-child(3),
.compare__table td:nth-child(3) {
  width: 140px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .compare__table th:nth-child(3),
  .compare__table td:nth-child(3) {
    width: 200px;
  }
}
.compare__table th:nth-child(4),
.compare__table td:nth-child(4) {
  width: 140px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .compare__table th:nth-child(4),
  .compare__table td:nth-child(4) {
    width: 200px;
  }
}
.compare__table th:nth-child(5),
.compare__table td:nth-child(5) {
  width: 140px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .compare__table th:nth-child(5),
  .compare__table td:nth-child(5) {
    width: 200px;
  }
}
@media screen and (min-width: 768px) {
  .compare__table th {
    font-size: 20px;
    letter-spacing: 0.6px;
  }
}
.compare__table td {
  font-size: 14px;
  letter-spacing: 0.42px;
}
@media screen and (min-width: 768px) {
  .compare__table td {
    font-size: 16px;
    letter-spacing: 0.48px;
  }
}
.compare__table thead th {
  letter-spacing: 1.6px;
}
.compare__table thead th:nth-child(2) {
  background: -webkit-gradient(linear, left top, left bottom, from(#43e97b), to(#d4f26b));
  background: linear-gradient(180deg, #43e97b, #d4f26b);
}
@media screen and (min-width: 768px) {
  .compare__table thead th {
    letter-spacing: 2px;
  }
}
.compare__table tbody tr {
  border-top: 1.5px solid #000;
}
@media screen and (min-width: 768px) {
  .compare__table tbody tr {
    border-top-width: 3px;
  }
}
.compare__table tbody th,
.compare__table tbody td {
  height: 58.5px;
}
@media screen and (min-width: 768px) {
  .compare__table tbody th,
  .compare__table tbody td {
    height: 100px;
  }
}

.compare-text__sm {
  font-size: 10px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .compare-text__sm {
    font-size: 12px;
  }
}

.compare__attention {
  margin-top: 11px;
  color: #686868;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .compare__attention {
    margin-top: 20px;
  }
}
@media (min-width: 1080px) {
  .compare__attention {
    display: none; /* 1080px以上で非表示 */
  }
}

.compare__bottom {
  background-image: url(../img/sp/compare-bg-img.png);
  background-size: cover;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .compare__bottom {
    background-image: url(../img/compare-bg-img.png);
    padding-inline: 40px;
  }
}

.compare__bottom-text {
  color: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .compare__bottom-text {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .compare__bottom-text1 {
    font-size: 16px;
  }
}

.compare__bottom-text2 {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .compare__bottom-text2 {
    margin-top: 30px;
    font-size: 16px;
  }
}

.compare__bottom-text3 {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .compare__bottom-text3 {
    margin-top: 30px;
    font-size: 16px;
  }
}

.compare__bottom-text4 {
  margin-top: 15px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .compare__bottom-text4 {
    margin-top: 30px;
    font-size: 16px;
  }
}

.text__deco {
  background-image: -webkit-gradient(linear, right top, left top, from(#43e97b), to(#d4f26b));
  background-image: linear-gradient(to left, #43e97b, #d4f26b);
  background-repeat: no-repeat;
  background-size: 100% 10%;
  background-position: bottom;
}

/* staff */
.staff {
  background: #fafafa;
  padding-bottom: 50px;
}

.staff__head {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .staff__head {
    padding-top: 100px;
  }
}

.staff__container__lg {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .staff__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .staff__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.staff__img img {
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .staff__img img {
    margin-right: 30px;
  }
}
@media screen and (min-width: 900px) {
  .staff__img img {
    margin-right: 30px;
  }
}

.staff__text {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .staff__text {
    width: 458px;
  }
}
@media screen and (min-width: 900px) {
  .staff__text {
    width: 644px;
  }
}

.staff__text_title {
  text-align: center;
  font-size: 10px;
  margin-top: 20px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .staff__text_title {
    font-size: 12px;
    text-align: left;
  }
}

.staff__text_name {
  text-align: center;
  font-weight: 700;
  margin-top: 5px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .staff__text_name {
    text-align: left;
    font-size: 16px;
    margin-top: 10px;
  }
}

.staff__text__main {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .staff__text__main {
    font-size: 16px;
    margin-top: 10px;
  }
}

.staff__text__certification {
  text-align: center;
  line-height: 1;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .staff__text__certification {
    text-align: left;
    font-size: 16px;
    margin-top: 15px;
  }
}

.staff__text__sub {
  line-height: 1.5;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .staff__text__sub {
    font-size: 16px;
  }
}

/* voice */
.voice__top-text {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .voice__top-text {
    font-size: 22px;
  }
}

.voice__top-text-deco {
  font-weight: 700;
  background-image: -webkit-gradient(linear, right top, left top, from(#43e97b), to(#d4f26b));
  background-image: linear-gradient(to left, #43e97b, #d4f26b);
  background-repeat: no-repeat;
  background-size: 100% 10%;
  background-position: bottom;
}

.voice__top-text2 {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .voice__top-text2 {
    text-align: left;
    margin: 0 auto;
    width: 624px;
    margin-top: 30px;
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .voice__container-lg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 56px;
    row-gap: 10px;
  }
}

.voice__container {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .voice__container {
    width: 45%;
    margin-top: 30px;
  }
}

.voice__img img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
}

.voice__text {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .voice__text {
    font-size: 16px;
    margin-top: 15px;
  }
}

/* flow */
.flow__cards {
  margin-top: 20px;
}

.flow__card {
  border-radius: 12px;
  background: rgba(212, 242, 107, 0.17);
}

.flow__card__text__container {
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .flow__card__text__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 36px;
  }
}

.flow__card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}

.flow__card__title-text {
  color: #43e97b;
  font-weight: 700;
  line-height: 1;
}

.flow__card__number {
  color: #43e97b;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.flow__card__text__main {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 10px;
}

.flow__card__text__sub {
  margin-top: 10px;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .flow__flow__img__container {
    -ms-flex-negative: 0;
        flex-shrink: 0; /* 画像が小さくならないようにする */
    width: 287px; /* 固定幅を指定 */
  }
}

.flow__img img {
  display: block;
  margin: 0 auto;
  height: auto;
  width: calc(100% - 1px);
}
@media screen and (min-width: 768px) {
  .flow__img {
    -ms-flex-negative: 0;
        flex-shrink: 0; /* 画像コンテナも縮小を防ぐ */
  }
}

.flow__arrow {
  margin-top: 20px;
}

.arrow__img img {
  display: block;
  margin: 0 auto;
  height: auto;
}

/* qa */
.qa {
  border-left: none;
  border-right: none;
}
@media screen and (min-width: 768px) {
  .qa__inner {
    max-width: 1200px;
    margin: 0 auto;
  }
}

.qa__boxes {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .qa__boxes {
    margin-top: 30px;
  }
}

.qa-box.is-open .qa-box__head {
  border-bottom: none;
}
.qa-box.is-open .qa-box__head::after {
  background: url(../img/−-icon.png) no-repeat center center/contain;
  width: 13px;
  height: 16px;
}
.qa-box.is-open .qa-box__a {
  border-bottom: #333333 1px solid;
  padding-bottom: 18px;
  padding-top: 18px;
}

.qa-box__head {
  padding: 18px 0px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border-bottom: #333333 1px solid;
  border-left: none;
  border-right: none;
  border-top: none;
  gap: 10px;
  background: #fff;
}
.qa-box:first-child .qa-box__head {
  border-top: #333333 1px solid;
}
@media screen and (min-width: 768px) {
  .qa-box__head {
    padding: 24px 0px;
  }
}
.qa-box__head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 14px;
  height: 20px;
  background: url(../img/+-icon.png) no-repeat center center/contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-top: -9px;
}
@media screen and (min-width: 768px) {
  .qa-box__head::after {
    right: 11px;
    margin-top: -8px;
  }
}

.qa-box__head-icon {
  font-size: 16px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .qa-box__head-icon {
    left: 17px;
    font-size: 18px;
  }
}

.qa-box__head-text {
  display: block;
  text-align: left;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .qa-box__head-text {
    font-size: 16px;
    line-height: normal;
  }
}

.qa-box__body {
  display: none;
}
.qa-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  background: rgba(212, 242, 107, 0.17);
}
@media screen and (min-width: 768px) {
  .qa-box__a {
    gap: 10px;
  }
}

.qa-box__a-icon {
  font-size: 16px;
  line-height: 1;
  margin-left: 2px;
}
@media screen and (min-width: 768px) {
  .qa-box__a-icon {
    font-size: 18px;
  }
}

.qa-box__a-text {
  display: block;
  text-align: left;
  line-height: 1.25;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .qa-box__a-text {
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: 0.256px;
  }
}

.qa__last__line {
  border-top: #333333 1px solid;
  margin-top: -1px;
}

/* location */
.location {
  background: #fafafa;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .location {
    margin-top: 100px;
  }
}

.location__inner {
  padding-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .location__head {
    padding-top: 100px;
  }
}

.location__container {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .location__container {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}
@media screen and (min-width: 900px) {
  .location__container {
    gap: 140px;
  }
}
@media screen and (min-width: 1200px) {
  .location__container {
    gap: 144px;
  }
}

.location__iframe__container {
  position: relative;
  padding-top: 56.25%;
}
@media screen and (min-width: 768px) {
  .location__iframe__container {
    width: 382px;
    height: 380px;
    padding-top: 0;
  }
}
@media screen and (min-width: 900px) {
  .location__iframe__container {
    width: 700px;
  }
}
@media screen and (min-width: 1200px) {
  .location__iframe__container {
    width: 700px;
  }
}
.location__iframe__container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .location__text__container {
    padding-bottom: 30px;
  }
}

.location__text_box {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .location__text_box {
    margin-top: 44px;
  }
}

.location__text__main {
  font-weight: 700;
  line-height: 1;
  border-bottom: #333333 1px solid;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .location__text__main {
    font-size: 16px;
    padding-bottom: 8px;
    margin-bottom: 15px;
  }
}

.location__text__sub {
  line-height: 1;
  margin-bottom: 10px;
}

.location__text__sub2 {
  line-height: 1;
  margin-bottom: 10px;
}

.location__text__sub3 {
  line-height: 1;
}

/* contact */
form {
  max-width: 1200px; /* 最大コンテンツ幅 */
  margin: 0 auto;
}

.form-section {
  margin-bottom: 25px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}

.required {
  color: red;
}

/* 入力欄 */
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #000;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #43e97b;
  outline: none;
}

/* ====== 日付・時間セレクト ====== */
.date-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; /* 常に1段 */
}

.date-select select {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 10px; /* 左に余白を確保 */
  text-align: left; /* 左寄せ */
  -moz-text-align-last: left;
       text-align-last: left; /* 初期表示のoptionも左寄せに */
}

/* 備考欄 */
textarea {
  height: 120px;
}

/* 注意書き */
.note {
  font-size: 12px;
  color: #555;
  margin-bottom: 20px;
}

/* 送信ボタン */
.submit-btn {
  display: block;
  margin: 0 auto;
  padding: 10px 30px;
  font-size: 16px;
  border: 1px solid #000;
  border-radius: 25px;
  background: #fff;
  color: #000; /* ← 文字色を黒に固定 */
  -webkit-text-fill-color: #000; /* ← iOS Safariでも強制黒文字 */
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  margin-bottom: 35px;
  width: 150px;
  position: relative;
  z-index: 89;
}

.submit-btn:hover {
  background: #eee;
}

/* ====== ポップアップ ====== */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1000;
}

.popup.hidden {
  display: none;
}

.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  max-width: 90%;
}

.popup-content p {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.popup-content button {
  padding: 8px 20px;
  border: 2px solid #000;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.popup-content button:hover {
  background: #eee;
}

/* ====== レスポンシブ対応 ====== */
/* スマホ (375px以下) */
@media (max-width: 375px) {
  .date-select {
    gap: 5px;
  }
  .date-select select {
    font-size: 14px;
    padding: 8px;
    min-width: auto;
  }
}
/* タブレット (768px以下) */
/* PC (1200px以上) */
@media (min-width: 1200px) {
  form {
    padding: 20px 0;
  }
}
/* footer */
.footer {
  background: #333333;
  text-align: center;
  padding-top: 4px;
  padding-bottom: 4px;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 17px;
    padding-bottom: 17px;
  }
}

.footer__copyright {
  color: #fff;
  font-size: 12px;
  line-height: normal;
  letter-spacing: 0.36px;
}

/* CTA */
.square__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  position: fixed;
  top: 90%;
  left: calc(50% - 172px);
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .square__button-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 83%;
    right: 1%;
  }
}

.square__button__gradient {
  width: 166px;
  height: 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, right top, from(#d4f26b), to(#43e97b));
  background: linear-gradient(90deg, #d4f26b 0%, #43e97b 100%);
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  margin-top: auto; /* 要素を下に押し出す */
  margin-left: auto; /* 要素を右に寄せる */
}

.square__button__text {
  text-align: center;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.182px;
  padding-top: 3px;
}

.square__button__white {
  width: 166px;
  height: 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 30px;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#fff));
  background: linear-gradient(0deg, #fff 0%, #fff 100%);
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  margin-top: auto; /* 要素を下に押し出す */
  margin-left: auto; /* 要素を右に寄せる */
}

.color_green {
  color: #43e97b;
}

/* アウトラインで確認する */