/* ===========================================================
   con-ani+ LP スタイル
   色やフォントを変えたいときは、まず下の :root を見てください。
   =========================================================== */

:root {
  --teal: #6fc3c3;          /* ブランドのティール */
  --teal-light: #83d5df;    /* 明るいティール（見出しの英字など） */
  --teal-pale: #e8f6f6;     /* 薄い背景 */
  --line: #00b900;          /* LINEの緑 */
  --orange: #ff9130;        /* 予約ボタンのオレンジ */
  --text: #333333;
  --cream: #fef7ef;         /* クリーム色の背景 */
  --cream-deep: #fff1e3;
  --white: #ffffff;

  --w-wide: 840px;          /* 一番広いブロック */
  --w: 780px;               /* 標準のブロック */
  --w-narrow: 702px;        /* 少し狭いブロック */

  --font: "Noto Sans JP";
  --font-script: "Allura", cursive;
  --font-hand: "Yusei Magic", var(--font);
  --font-serif: "Noto Serif", serif;
}

/* 本番で使っている版を同梱し、アイコンの字形を揃える。 */
@font-face { font-family: 'Material Icons'; src: url('fonts/MaterialIcons-Regular.woff2') format('woff2'); font-style: normal; font-weight: 400; font-display: block; }
@font-face { font-family: 'Font Awesome 6 Free'; src: url('fonts/fa-solid-900.woff2') format('woff2'); font-style: normal; font-weight: 900; font-display: block; }
@font-face { font-family: 'Font Awesome 6 Brands'; src: url('fonts/fa-brands-400.woff2') format('woff2'); font-style: normal; font-weight: 400; font-display: block; }
.fa-solid { font-family: 'Font Awesome 6 Free'; font-weight: 900; font-style: normal; line-height: 1; }
.fa-brands { font-family: 'Font Awesome 6 Brands'; font-weight: 400; font-style: normal; line-height: 1; }
* { box-sizing: border-box; }
picture.image-variants { display: contents; }
picture source { display: none; }
@font-face { font-family: 'FontAwesome'; src: url('fonts/fontawesome-webfont.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: block; }
.fa-legacy { font-family: 'FontAwesome'; font-style: normal; line-height: 1; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--font);
  word-spacing: 1px;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
p { margin: 0; }

/* 本番の中央840pxの紙面と、その内側90%の淡いオレンジ。幅は組版に影響させない。 */
.features, .point, .benefit, .price, .faq, .media {
  background: linear-gradient(var(--cream), var(--cream)) center / min(840px, 100%) 100% no-repeat;
}
.point--point2, .ba {
  background: linear-gradient(var(--cream-deep), var(--cream-deep)) center / min(840px, 100%) 100% no-repeat;
}
.worries, .promise, .training, .atmos, .voice, .flow, .access {
  background: linear-gradient(var(--cream-deep), var(--cream-deep)) center / min(756px, 90%) 100% no-repeat,
    linear-gradient(var(--cream), var(--cream)) center / min(840px, 100%) 100% no-repeat;
}

/* 各セクションの共通の入れ物 */
main > section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 30px;
}

/* ---------- ヘッダー ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 0;
  height: 80px; padding: 0 30px;
  background: rgba(255,255,255,.6);
}
body { padding-top: 80px; }
.header__logo { display: block; flex: 0 0 180px; height: 80px; background: url('images/logo-header-live.webp') center / cover; }
.header__logo img { width: 180px; height: 80px; object-fit: cover; }
.header__nav { margin-left: auto; }
.header__actions { margin-left: auto; display: flex; align-items: center; }
.header__list { display: flex; gap: 0; }
.header__list a {
  display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 600; line-height: 1.4; color: var(--teal);
  padding: 10px; transition: opacity .2s;
}
.header__list a:hover { opacity: .6; }
.header__cta {
  background: var(--teal); color: var(--white);
  font-size: 16px; font-weight: 700; line-height: 1.4;
  padding: 15px 30px; margin-left: 20px; border-radius: 8px;
  box-shadow: 1px 3px 10px rgba(0,0,0,.1);
  transition: opacity .2s;
}
.header__cta:hover { opacity: .85; }
.header__tel { display: none; }
.header__menu { display: none; }

/* 本番のスマホメニュー：余白20pxの全面パネル。 */
.mobileMenu[hidden] { display: none; }
.mobileMenu { position: fixed; inset: 0; z-index: 200; }
.mobileMenu__backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; padding: 0; background: rgba(0,0,0,.16); }
.mobileMenu__panel { position: absolute; inset: 20px; display: flex; flex-direction: column; align-items: center; background: var(--cream); border-radius: 10px; box-shadow: 0 6px 15px rgba(0,0,0,.2); overflow-y: auto; }
.mobileMenu__close { position: absolute; top: 21px; right: 21px; width: 24px; height: 24px; padding: 0; border: 0; background: none; color: #8e8e8e; cursor: pointer; }
.mobileMenu__logo { flex: 0 0 78px; width: 160px; margin-top: 40px; background: url('images/logo-menu-live.webp') center / cover; }
.mobileMenu__links { width: 100%; padding: 20px; }
.mobileMenu__links a { display: flex; align-items: center; width: 100%; padding: 7px 0; }
.mobileMenu__links a:nth-child(1) { gap: 59px; }
.mobileMenu__links a:nth-child(2) { gap: 33px; }
.mobileMenu__links a:nth-child(3) { gap: 8px; }
.mobileMenu__links a:nth-child(4) { gap: 67px; }
.mobileMenu__links a:nth-child(5) { gap: 71px; }
.mobileMenu__links a:nth-child(6) { gap: 76px; height: 50px; }
.mobileMenu__links a:nth-child(7) { gap: 54px; }
.mobileMenu__en { flex-shrink: 0; font: 16px/1.4 var(--font); letter-spacing: .15em; color: var(--teal); }
.mobileMenu__ja { font: 13px/1.4 var(--font); letter-spacing: .15em; color: var(--text); }
.mobileMenu__instagram { flex: 0 0 32px; width: 32px; background: url('images/live-88605ed1-small.webp') center / cover no-repeat; }

/* ---------- ボタン ---------- */
.btn {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); text-align: center;
  padding: 18px 56px 18px 32px;
  border-radius: 12px;
  transition: transform .15s, opacity .2s;
}
.btn:hover { opacity: .9; transform: translateY(-2px); }
.btn--pill { border-radius: 64px; }
.btn--teal { background: var(--teal); }
.btn--line { background: var(--line); }
.btn--orange { background: var(--orange); }
.btn__note { font-size: 18px; font-weight: 600; line-height: 1.4; }
.btn__label { font-size: 24px; font-weight: 600; line-height: 1.4; }
.btn__lineMark {
  display: inline-block; background: var(--white); color: var(--line);
  font-size: .7em; font-weight: 700; letter-spacing: .05em;
  padding: 2px 8px; border-radius: 6px; vertical-align: 3px;
}
.btn__arrow {
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--white);
}
.btn__arrow::after {
  content: ""; position: absolute; left: 11px; top: 10px;
  width: 9px; height: 9px;
  border-top: 2px solid currentColor; border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.btn--teal .btn__arrow { color: var(--teal); }
.btn--line .btn__arrow { color: var(--line); }
.btn--orange .btn__arrow { color: var(--orange); }

/* ---------- 見出し ---------- */
.heading { text-align: center; margin: 150px 0 56px; }
.heading__en {
  font-size: 50px; font-weight: 400; color: var(--teal-light);
  letter-spacing: .04em; line-height: 1.2;
}
.heading__ja { font-size: 24px; color: var(--teal); margin-top: 8px; }
.voice .heading, .price .heading, .flow .heading, .access .heading { width: min(780px, 100%); text-align: left; }
.flow .heading, .access .heading { max-width: 696px; }
.voice .heading__en, .price .heading__en, .flow .heading__en, .access .heading__en { color: var(--text); display: flex; align-items: center; gap: 30px; }
.voice .heading__en::after, .price .heading__en::after, .flow .heading__en::after, .access .heading__en::after { content: ''; height: 2px; flex: 1; background: var(--teal); }

/* ---------- ファーストビュー ---------- */
.fv { padding-top: 0; position: relative; }
.fv__h1 {
  font-size: 20px; font-weight: 400; color: var(--text);
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%);
  text-align: center; margin: 0; padding: 0; line-height: 1.6;
}
.fv__pic, .fv__img { width: 100%; max-width: var(--w-wide); }
.fv__img--sp { display: none; }
.fv__strip { width: 100%; max-width: var(--w-wide); margin-top: 0; }
.fv__btns {
  display: flex; gap: 24px; flex-wrap: wrap; justify-content: center;
  position: fixed; bottom: 25px; margin-top: 0; z-index: 90;
}

/* ---------- キャンペーン ---------- */
main > .fv, main > .campaign { padding: 0; }
.campaign { padding-top: 0; background: linear-gradient(var(--cream), var(--cream)) center / min(840px, 100%) 100% no-repeat; }
.campaign__banner { width: 100%; max-width: var(--w-wide); }
.campaign__lead { font-size: 26px; font-weight: 500; margin: 15px 0 5px; line-height: 1.7; text-align: center; }
.campaign > .btn, .coupon > .btn { min-height: 96px; padding: 30px 94px; }
.campaign > .btn { width: min(641px, 100%); }
.campaign__lead { display: flex; align-items: center; gap: 0; letter-spacing: .05em; }
.campaign__lead > span { margin: 0 5px -13px 0; }
.campaign__lead::before, .campaign__lead::after { content: ''; display: block; flex-shrink: 0; width: 40px; height: 2px; background: currentColor; transform: rotate(65deg); }
.campaign__lead::after { transform: rotate(-65deg); }
.campaign > .btn--campaign-line { flex-direction: row; justify-content: flex-start; width: 641.296875px; min-height: 96px; padding: 30px; margin-top: 20px; margin-bottom: 40px; overflow: hidden; box-shadow: 5px 5px 0 #0003; }
.campaign__line-logo { flex: 0 0 28px; width: 28px; height: 28px; font-size: 28px; margin-right: 16px; }
.btn--campaign-line .btn__label { font-size: 24px; line-height: 36px; letter-spacing: .15em; white-space: nowrap; }
.campaign__arrows { position: relative; flex: 0 0 64px; height: 36px; margin-left: 0; }
.campaign__arrows .material-icons { position: absolute; top: -14px; left: 0; width: 64px; height: 64px; font-size: 64px; line-height: 1; transform: rotate(90deg); }
.campaign__arrows .material-icons:last-child { left: 20px; opacity: .53; }
.coupon > .btn { width: min(604px, 100%); }

/* ---------- クーポン ---------- */
.coupon { width: min(840px, 100%); margin: 0 auto; padding: 50px 30px 80px; background: var(--cream); }
.coupon__card { display: flex; flex-direction: column; align-items: center; width: 100%; padding: 30px 0; background: #fff; border-radius: 32px; box-shadow: 0 2px 5px #0003; }
.coupon__img { width: 100%; max-width: var(--w); }
.coupon__down { position: relative; height: 106px; width: 66px; flex-shrink: 0; }
.coupon__down .material-icons { position: absolute; left: 0; top: 20px; width: 66px; height: 33px; font-size: 100px; display: flex; align-items: center; justify-content: center; color: var(--teal-light); }
.coupon__down .material-icons:last-child { top: 53px; color: var(--teal); }
.coupon__small {
  font-size: 24px; font-weight: 500; line-height: 1.7; letter-spacing: .05em; margin: 20px 0 5px;
  display: flex; align-items: center; gap: 0;
}
.coupon__small > span:first-child { margin: 0 5px -13px 0; }
.coupon__small::before, .coupon__small::after { content: ''; width: 45px; height: 2px; background: var(--text); rotate: 65deg; flex-shrink: 0; }
.coupon__small::after { rotate: -65deg; }
.coupon__big { font-size: 36px; font-weight: 700; color: #ff9332; margin-right: 5px; }
.coupon__card > .btn { width: min(604.05px, calc(100% - 20px)); min-height: 96px; padding: 30px; flex-direction: row; justify-content: flex-start; overflow: hidden; }
.coupon__note { font-size: 20px; line-height: 1.4; letter-spacing: .1em; margin: 40px 0; text-align: center; }
/* 東小金井は本番のキャンペーン後の間隔が吉祥寺と異なる。 */
[data-store="higakoganei"] .campaign__lead { margin-top: 40px; }
[data-store="higakoganei"] .coupon { padding-top: 110px; }
/* 吉祥寺のフォーム版はクーポン枠を外したので、キャンペーン画像の下に東小金井と同じ間隔をとる（2026-09-23）。 */
[data-store="kichijoji"][data-form] .campaign__lead { margin-top: 40px; }

/* ---------- About ---------- */
.about { position: relative; width: min(840px, 100%); margin: 0 auto; background: linear-gradient(var(--cream) 160px, #fff 160px); }
main > .about { padding: 0 30px; }
.about::before, .about::after { content: ''; position: absolute; top: 0; height: 160px; background: #fff; pointer-events: none; }
.about::before { left: 0; width: 40%; }
.about::after { right: 0; width: 60%; border-top-right-radius: 100%; }
.about .heading { width: min(780px, 100%); text-align: left; margin-top: 231px; margin-bottom: 80px; }
.about .heading__en { line-height: 1.4; letter-spacing: .15em; }
.about .heading__en { display: flex; align-items: center; gap: 30px; color: var(--text); }
.about .heading__en::after { content: ''; height: 1px; background: var(--text); flex: 1; }
.about .heading__ja { height: 53px; line-height: 1.4; margin-top: 0; letter-spacing: .15em; color: var(--text); }
.about__headline { font-size: 48px; line-height: 1.4; letter-spacing: .1em; font-weight: 900; color: var(--text); text-align: center; width: 90%; border-bottom: 1px solid #767676; padding-bottom: 10px; }
.about__sub { font-size: 32px; line-height: 1.4; letter-spacing: .1em; color: var(--teal); font-weight: 600; margin-top: 10px; text-align: center; }
.about__lead { font-size: 24px; line-height: 1.4; letter-spacing: .1em; font-weight: 600; margin-top: 70px; text-align: center; }
.about__video {
  width: 90%; max-width: var(--w-narrow); height: 400px; margin-top: 10px;
  background: transparent; overflow: hidden;
}
.about__video iframe { width: 100%; height: 100%; border: 0; }

/* ---------- 口コミ ---------- */
.reviews { width: min(780px, calc(100% - 30px)); margin: 50px auto 0; padding: 80px 0; background: #fcf8f3; }
.reviews__small { display: flex; align-items: center; gap: 25px; font-size: 20px; line-height: 1.7; letter-spacing: .1em; color: #63c3c2; font-weight: 500; text-align: center; }
.reviews__small::before, .reviews__small::after { content: ''; display: block; width: 1px; height: 30px; background: currentColor; transform: rotate(-25deg); }
.reviews__small::after { transform: rotate(25deg); }
.reviews__headline { font-size: 36px; font-weight: 700; margin-top: 0; text-align: center; line-height: 1.7; letter-spacing: .15em; }
.reviews__score { width: 90%; max-width: var(--w-narrow); margin-top: 0; }
.reviews__score > img { width: 100%; }

/* ---------- スライダー ---------- */
.slider { position: relative; width: 100%; max-width: var(--w-wide); margin-top: 32px; }
.slider__track {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding-bottom: 8px;
}
.slider__track::-webkit-scrollbar { display: none; }
.slider__item { flex: 0 0 auto; width: 300px; scroll-snap-align: center; }
.slider--ba .slider__item { width: 663px; }
.slider--ba { margin-top: 132px; }
.slider--ba .slider__track { min-height: 818px; align-items: center; }
.slider__img { width: 100%; border-radius: 8px; }
/* 本番は画像の左右19pxと下側の操作部品領域を含めた幅。 */
.slider--review { margin-top: 80px; }
.slider--review .slider__track { align-items: center; min-height: 0; gap: 0; padding: 0 max(0px, calc((100% - 593px) / 2)); }
.slider--review .slider__item { width: 593px; }
.slider--review picture { display: block; }
.slider--review .slider__img { padding: 0 19px 88px; border-radius: 0; }
.slider--review .slider__controls { position: absolute; left: 0; bottom: 0; width: 100%; height: 88px; margin: 0; gap: 24px; align-items: center; }
.slider--review .slider__controls .slider__nav { display: flex; align-items: center; justify-content: center; padding: 0; background: #fff; color: var(--text); }
.slider--review .slider__controls [data-pause] .material-icons { font-size: 18px; }
.slider__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border: 0; border-radius: 50%;
  background: rgba(255, 255, 255, .85); box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
  cursor: pointer;
}
.slider__nav::after {
  content: ""; position: absolute; left: 15px; top: 14px;
  width: 10px; height: 10px;
  border-top: 2px solid var(--teal); border-right: 2px solid var(--teal);
}
.slider__nav--prev { left: -8px; }
.slider__nav--prev::after { transform: rotate(-135deg); left: 17px; }
.slider__nav--next { right: -8px; }
.slider__nav--next::after { transform: rotate(45deg); }
.material-icons { font-family: 'Material Icons'; font-weight: normal; font-style: normal; font-size: 24px; line-height: 1; display: inline-block; text-rendering: optimizeLegibility; }
.slider__controls { display: flex; justify-content: center; gap: 16px; margin-top: 8px; }
.slider__controls .slider__nav { position: static; transform: none; background: none; box-shadow: none; color: var(--teal); }
.slider__controls .slider__nav::after { content: none; }

/* ---------- コンセプト ---------- */
main > .concept { width: min(840px, 100%); margin: 0 auto; padding: 0 30px 80px; }
.concept .heading { margin: 100px 0 40px; }
.concept .heading__en { font-size: 48px; font-weight: 800; line-height: 1.4; letter-spacing: normal; color: var(--text); }
.concept .heading__ja { font-size: 24px; line-height: 1.4; margin-top: 10px; color: var(--text); }
.concept__catch { width: 100%; max-width: var(--w); }
.concept__photo { width: 100%; max-width: var(--w); margin-top: 75px; border-radius: 24px; box-shadow: 8px 8px 10px rgba(51,51,51,.5); }
.concept__body {
  font-size: 32px; line-height: 2; text-align: left; letter-spacing: 4.8px;
  max-width: 662px; margin-top: 40px;
}

/* ---------- 3つの特徴 ---------- */
main > .features { padding: 0; }
.features__intro { display: flex; flex-direction: column; align-items: center; width: min(840px, 100vw); padding: 0 30px 190px; background: white; border-bottom-right-radius: 60% 160px; }
.features__title, .features__reason {
  font-size: 36px; font-weight: 400; text-align: center; line-height: 1.6; margin: 0;
}
.features__title { display: flex; align-items: flex-end; justify-content: center; width: 100%; height: 68px; color: var(--teal); letter-spacing: .25em; line-height: 1.4; }
.features__title .num { display: flex; align-items: center; justify-content: center; flex: 0 0 37px; height: 68px; padding: 0; margin-right: 10px; font-size: 70px; line-height: 1; letter-spacing: normal; }
.features__reason { display: flex; flex-direction: column; align-items: center; justify-content: center; width: min(756px, 90%); height: 195px; margin: 65px 0 70px; color: var(--teal); font-size: 36px; letter-spacing: .2em; line-height: 1.4; }
.features__rule { width: 695px; max-width: 100%; height: 4px; background: rgba(204,235,240,.7); margin-bottom: 20px; }
.features__rule--short { width: 237px; margin-bottom: 0; }
.features__reason-row { display: flex; align-items: center; height: 64px; }
.features__reason-row > span:not(.num) { margin-top: 10px; }
.features__reason-row > span:last-child { letter-spacing: .25em; }
.features__reason .num { display: flex; align-items: center; justify-content: center; width: 59px; height: 64px; padding: 0; font-size: 65px; line-height: 1.4; letter-spacing: .02em; }
.num { font-family: var(--font-serif); font-size: 1.9em; color: var(--teal); padding: 0 .1em; }
.features__img { width: 100%; max-width: var(--w); margin-top: 33px; }

/* ---------- 選ばれる理由 ---------- */
.point { padding-top: 130px; }
/* 「選ばれる理由は3つ」の直後だけは詰める。
   本番はこの見出しが要素ごとに分かれていて縦に短く収まっているため、
   こちらは1つの見出しにまとめたぶん背が高くなる。その差をここで吸収する。 */
.features + .point { padding-top: 0; }
main > .point { width: min(840px, 100%); margin: 0 auto; padding: 80px 30px 100px; }
main > .point--point1 { padding: 0 0 100px; background-color: #fff7ef; }
main > .point--point3 { padding-bottom: 230px; background-color: #fff7ef; }
.point__label { display: flex; align-items: center; justify-content: center; width: 70%; height: 61px; font-family: var(--font-script); font-size: 80px; color: var(--text); line-height: 1.4; }
.point__title { width: 100%; font-size: 20px; line-height: 1.4; letter-spacing: .2em; margin: 0 0 50px; text-align: center; }
.point__sub { font-size: 32px; line-height: 1.4; letter-spacing: .2em; color: var(--teal); margin: 0 0 20px; text-align: center; }
.point__img { width: 100%; max-width: var(--w); margin: 0; }
.point__badge { width: 30%; margin: 0; align-self: flex-end; }
.point--point1 .point__title, .point--point1 .point__img { width: 90%; }
.point--point1 .point__badge { width: 27%; margin-top: -20px; margin-right: 5%; margin-bottom: 100px; }
.point--point2 .point__badge { margin-top: -20px; margin-bottom: 80px; }
.point__leadTitle { width: 100%; height: 60px; display: flex; align-items: center; font-size: 32px; line-height: 1.4; letter-spacing: .15em; margin: 0 0 45px; text-align: left; }
.point__leadBody { font-size: 28px; line-height: 1.7; letter-spacing: .15em; width: 100%; margin: 0; text-align: left; }
.point__block { width: 100%; margin-top: 80px; text-align: left; }
.point__blockTitle { font-size: 36px; font-weight: 500; line-height: 1.4; letter-spacing: .15em; color: var(--teal); padding-bottom: 15px; border-bottom: 1px solid var(--teal); }
.point__blockBody { font-size: 28px; margin-top: 15px; line-height: 1.7; letter-spacing: .15em; }

/* ---------- 6つのプログラム ---------- */
.programs { position: relative; width: 100%; max-width: var(--w-wide); margin: 0; overflow: hidden; }
.programs__track {
  display: flex; align-items: flex-start; gap: 50px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; height: 640px; padding: 20px max(0px, calc((100% - 484px) / 2)) 0;
}
.programs__track::-webkit-scrollbar { display: none; }
.program {
  flex: 0 0 auto; width: 484px; height: 527px; scroll-snap-align: center;
  background: var(--white); border-radius: 30%; padding: 30px; text-align: center;
}
.program__en { font-size: 20px; color: var(--teal-light); line-height: 1.4; letter-spacing: normal; }
.program__en::after { content: ''; display: block; width: 30%; height: 1px; background: var(--teal-light); margin: 0 auto 15px; }
.program__ja { font-size: 20px; line-height: 1.4; font-weight: 700; color: var(--teal-light); margin: 0 0 30px; }
.program__body { font-size: 16px; letter-spacing: .2em; margin: 0; line-height: 1.7; text-align: center; }
.program { will-change: transform; }
.program__icon { width: 100px; height: auto; margin: 0 auto 30px; }
.programs__lead { font-size: 28px; line-height: 1.7; letter-spacing: .15em; width: 90%; max-width: 756px; margin-top: 100px; text-align: center; }
.programs .slider__controls { position: absolute; left: 0; bottom: 0; width: 100%; height: 96px; align-items: center; gap: 24px; margin: 0; }
.programs .slider__controls .slider__nav { display: flex; justify-content: center; align-items: center; width: 40px; height: 40px; padding: 0; background: white; color: var(--text); }
.programs .slider__nav[data-pause] .material-icons { font-size: 18px; }

/* ---------- Before & After ---------- */
main > .ba { width: min(840px, 100%); margin: 0 auto; padding: 0 0 100px; }
.ba__heading { display: flex; flex-direction: column; align-items: center; border: 2px solid var(--teal); border-radius: 50%; background: var(--cream); margin: -90px 0 100px; }
.ba__small { margin-top: 45px; }
.ba__title { margin: 0 70px 45px; }
.ba .slider--ba { margin: 0; }
.slider--ba .slider__track { min-height: 0; gap: 45px; padding: 0 max(0px, calc((100% - 663px) / 2)); }
.slider--ba .slider__img { padding-bottom: 88px; border-radius: 0; }
.slider--ba .slider__controls { position: absolute; left: 0; bottom: 0; width: 100%; height: 88px; margin: 0; gap: 24px; align-items: center; }
.slider--ba .slider__controls .slider__nav { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: #fff; color: var(--text); padding: 0; }
.slider--ba .slider__nav[data-pause] .material-icons { font-size: 18px; }
main > .amenities { width: min(840px, 100%); margin: 0 auto; padding: 0; background: var(--cream); }
.amenities__top { display: flex; align-items: flex-end; width: 100%; height: 270px; background: var(--cream-deep); }
.amenities__arch { display: flex; align-items: center; justify-content: center; width: 100%; height: 270px; border-radius: 100% 100% 0 0; background: white; }
.amenities__content { width: 100%; background: white; display: flex; flex-direction: column; align-items: center; }
.amenities__bottom { width: 100%; height: 270px; border-radius: 0 0 100% 100%; background: white; }
.ba__badge { width: 210px; margin: 0; }
.ba__amenity { width: 100%; max-width: var(--w-wide); margin-top: -73px; }

/* ---------- 入会特典 ---------- */
main > .benefit:not(.benefit--repeat) { width: min(840px, 100%); margin: 0 auto; padding: 80px 20px 0; }
.benefit__small { margin: 0 0 15px; text-align: center; }
.benefit__title { margin: 0; text-align: center; }
.benefit__down { display: flex; flex-direction: column; margin: 40px 0 50px; }
.benefit__down .material-icons { display: flex; justify-content: center; align-items: center; font-size: 100px; width: 66px; height: 33px; color: var(--teal-light); }
.benefit__down .material-icons:last-child { color: var(--teal); }
.benefit__img { width: 90%; max-width: 720px; margin-top: 0; }
.benefit--repeat { padding-top: 130px; }

/* ---------- 予約の帯 ---------- */
.band {
  width: 100%; margin-top: 70px; padding: 0 0 80px;
  background: linear-gradient(var(--cream), var(--cream)) center / min(840px, 100%) 100% no-repeat;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.band__text { display: flex; align-items: center; font-size: 24px; font-weight: 700; text-align: center; line-height: 1.7; letter-spacing: .05em; }
.band__text::before, .band__text::after { content: ''; width: 80px; height: 2px; background: var(--teal); transform: rotate(65deg); }
.band__text::after { transform: rotate(-65deg); }
.band > .btn { flex-direction: row; justify-content: flex-start; width: min(527.609375px, 100%); min-height: 132px; padding: 30px; }
.band .btn__label { margin-left: 80px; }

/* ---------- お悩み ---------- */
.worries { padding-top: 150px; }
.worries__title { font-size: 36px; text-align: center; line-height: 1.7; }
.worries__lead, .worries__solve {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-size: 32px; margin-top: 44px; text-align: center; line-height: 1.6;
}
.worries__leaf { width: 110px; }
.worries__solve { font-size: 32px; margin-top: 84px; }
.check {
  width: 100%; max-width: 756px; margin-top: 106px; padding: 70px 26px 24px;
  background: var(--white); border-radius: 100% 100% 0 0 / 160px 160px 0 0;
}
.check__label {
  font-size: 40px; line-height: 1.4; color: var(--teal); text-align: center; letter-spacing: .2em;
}
.check__list { margin-top: 66px; display: flex; flex-direction: column; gap: 0; }
.check__photo { width: 295px; height: 256px; object-fit: cover; margin: 20px auto 0; border-radius: 50%; }
.check__list li {
  font-size: 28px; line-height: 1.4; min-height: 86px; padding-left: 44px; position: relative;
}
.check__list li::before {
  content: ""; position: absolute; left: 6px; top: .45em;
  width: 20px; height: 11px;
  border-left: 4px solid var(--teal); border-bottom: 4px solid var(--teal);
  transform: rotate(-45deg);
}
.worries__hurdle { width: 100%; max-width: 756px; margin-top: 84px; }
.worries__solve { max-width: 780px; min-height: 177px; margin-top: 50px; letter-spacing: .15em; }

/* ---------- しない約束 ---------- */
.promise { padding-top: 150px; }
.promise__title { font-size: 40px; text-align: center; }
.promise__img { width: 100%; max-width: var(--w-narrow); margin-top: 56px; }
.promise__lead, .promise__after {
  font-size: 28px; margin-top: 48px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.promise__leaf { width: 110px; }
.promise__focus { width: 100%; max-width: var(--w-narrow); margin-top: 20px; }

/* ---------- 筋トレ×ストレッチ ---------- */
.training { padding-top: 140px; }
.training__why { width: 100%; max-width: 661px; }
.training__composition { width: 100%; max-width: 696px; height: 533px; margin-top: 100px; background: url('images/047_画像670x538_0568ac2a.webp') center / cover no-repeat; }
.training__ribbon { width: 100%; max-width: 696px; margin-top: 168px; }
.training__body { font-size: 26px; line-height: 1.7; letter-spacing: .15em; max-width: 696px; margin-top: 100px; text-align: left; }
.training__effectTitle { font-size: 28px; line-height: 1.7; max-width: 560px; font-weight: 500; margin-top: 72px; text-align: center; }
.training__effect { width: 100%; max-width: 696px; margin-top: 100px; }

/* ---------- 空間 ---------- */
.atmos { padding-top: 4px; }
.atmos__lead {
  font-size: 28px; line-height: 1.7; letter-spacing: .15em; max-width: 600px; font-weight: 500; text-align: center;
}
.atmos__leaf { width: 110px; }
.atmos__title { font-size: 28px; line-height: 1.4; margin-top: 141px; text-align: center; display: flex; align-items: center; gap: 15px; min-height: 80px; }
.atmos__collage { position: relative; width: 450px; max-width: 100%; height: 340px; margin-top: 61px; }
.atmos__collage .atmos__photo { position: absolute; width: 188px; height: 320px; object-fit: cover; left: 128px; top: 0; border-radius: 0; }
.atmos__green { position: absolute; width: 150px; height: 237px; object-fit: cover; left: 282px; top: 33px; }
.atmos__water { position: absolute; width: 127px; height: 212px; left: 21px; top: 123px; background: url('https://images.unsplash.com/photo-1517384084767-6bc118943770?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w2MzQ2fDB8MXxzZWFyY2h8Mzh8fHdhdGVyfGVufDB8fHx8MTY5MzgxMTY2NXww&ixlib=rb-4.0.3&q=80&w=1080') center / cover; }
.atmos__row {
  display: flex; align-items: center; gap: 32px;
  max-width: var(--w); margin-top: 56px;
}
.atmos__photo { width: 188px; flex: 0 0 auto; border-radius: 8px; }
.atmos__photo2 { width: 180px; flex: 0 0 auto; border-radius: 8px; }
.atmos__body { font-size: 28px; line-height: 1.7; letter-spacing: .15em; max-width: 696px; margin-top: 160px; text-align: left; }
.atmos__women { font-size: 32px; font-weight: 500; margin-top: 159px; text-align: center; min-height: 177px; position: relative; display: flex; align-items: center; }
.atmos__women .atmos__photo2 { position: absolute; width: 248px; height: 177px; object-fit: contain; left: -80px; top: 0; }
.atmos__women span { position: relative; }
.atmos__womenImg { width: 100%; max-width: var(--w); margin-top: 90px; }
@media (min-width: 441px) {
  .atmos + .benefit--repeat { padding-top: 49px; }
  .atmos + .benefit--repeat .benefit__img { margin-top: 0; max-width: 702px; }
  .atmos + .benefit--repeat + .band { margin-top: 0; padding-top: 30px; }
}
.fv__btns { left: 0; right: 0; width: 100%; gap: 50px; flex-wrap: nowrap; align-items: center; }
.fv__btns .btn { flex: 0 0 auto; flex-direction: row; border: 5px solid white; border-radius: 64px; padding: 15px 50px; }
.sticky__copy { display: flex; flex-direction: column; align-items: center; }
.fv__btns .btn__note { font-size: 18px; letter-spacing: .15em; margin-bottom: 5px; white-space: nowrap; }
.fv__btns .btn__label { padding: 10px; font-size: 24px; letter-spacing: .15em; white-space: nowrap; }
.sticky__line-row { display: flex; align-items: center; }
.sticky__logo { font-size: 48px; width: 48px; height: 48px; }
.sticky__arrow { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 5px solid white; border-radius: 50%; background: white; font-size: 24px; }
.btn--teal .sticky__arrow { color: var(--teal); }
.btn--line .sticky__arrow { color: var(--line); }

/* ---------- お客様の声 ---------- */
.voice__lead { font-size: 28px; line-height: 1.7; letter-spacing: .15em; max-width: 449px; font-weight: 500; text-align: center; }
main > .voice { padding-bottom: 180px; }
.voice__list {
  display: flex; flex-direction: column; gap: 80px; align-items: center;
  width: 100%; max-width: var(--w); margin-top: 85px;
}
.voiceCard { background: var(--white); border: 3px solid #3ec0d1; border-radius: 30%; padding: 60px 30px 20px; width: 449px; max-width: 100%; min-height: 600px; box-shadow: 10px 10px 0 white; }
.voiceCard__heading { display: flex; gap: 20px; align-items: center; border-bottom: 1px dashed #3ec0d1; padding-bottom: 20px; min-height: 130px; }
.voiceCard:nth-child(2) .voiceCard__heading { flex-direction: row-reverse; }
.voiceCard__photo { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; flex: none; }
.voiceCard__title { font-family: var(--font-hand); font-size: 20px; font-weight: 600; line-height: 1.6; letter-spacing: .2em; text-align: center; }
.voiceCard__body { font-size: 20px; margin-top: 20px; line-height: 1.7; letter-spacing: .15em; }
.voiceCard__name { font-size: 20px; margin-top: 20px; text-align: center; line-height: 1.4; letter-spacing: .15em; }

/* ---------- 料金 ---------- */
.price__lead { font-size: 28px; line-height: 2; max-width: var(--w); text-align: center; }
.price__table { width: 100%; max-width: var(--w-narrow); margin-top: 56px; }
.price__note { font-size: 20px; margin-top: 20px; max-width: var(--w); }
.price__compare { width: 100%; max-width: var(--w); margin-top: 64px; }

/* ---------- 流れ ---------- */
.flow__list {
  display: flex; flex-direction: column; gap: 80px; align-items: center; margin-top: 44px;
  width: 100%; max-width: var(--w-narrow);
}
.flowStep { position: relative; padding: 25px; text-align: center; width: 557px; max-width: 100%; min-height: 323px; background: white; border-radius: 64px; }
.flowStep:first-child { width: 369px; min-height: 152px; }
.flowStep:last-child { min-height: 546px; }
.flowStep:not(:last-child)::after {
  content: ""; position: absolute; left: 50%; bottom: -62px; transform: translateX(-50%);
  width: 6px; height: 44px;
  background: repeating-linear-gradient(var(--teal) 0 6px, transparent 6px 12px);
}
.flowStep__no { font-size: 24px; line-height: 1.4; color: var(--text); text-decoration: underline; }
.flowStep__title { font-size: 20px; font-weight: 500; margin: 30px auto 0; line-height: 1.4; width: fit-content; max-width: 100%; background: #c9e9ec; box-shadow: 0 0 0 10px #c9e9ec; }
.flowStep__detail { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 23px; }
.flowStep:nth-child(3) .flowStep__detail { flex-direction: row-reverse; }
.flowStep__photo { width: 120px; height: 107px; object-fit: cover; border-radius: 8px; flex: none; }
.flowStep__body { font-size: 24px; line-height: 1.5; letter-spacing: .15em; width: 345px; text-align: left; }
.flowStep:last-child .flowStep__detail { flex-direction: column; }
.flowStep:last-child .flowStep__photo { width: 456px; height: 115px; }
.flowStep:last-child .flowStep__body { width: 456px; max-width: 100%; }

/* ---------- よくある質問 ---------- */
.faq__list { width: 100%; max-width: var(--w); display: flex; flex-direction: column; gap: 1px; }
.faqItem { background: var(--cream); border-radius: 12px; overflow: hidden; }
.faqItem__q {
  display: flex; align-items: center; gap: 16px; min-height: 150px;
  font-size: 24px; line-height: 1.7; letter-spacing: .15em; padding: 30px 56px 30px 24px;
  cursor: pointer; position: relative; list-style: none;
}
.faqItem__q::-webkit-details-marker { display: none; }
.faqItem__q::after {
  content: ""; position: absolute; right: 24px; top: 32px;
  width: 12px; height: 12px;
  border-right: 2px solid var(--teal); border-bottom: 2px solid var(--teal);
  transform: rotate(45deg); transition: transform .2s;
}
.faqItem[open] .faqItem__q::after { transform: rotate(-135deg); top: 36px; }
.faqItem__mark {
  flex: 0 0 auto; font-size: 32px; font-weight: 500; color: var(--teal); line-height: 1.2;
}
.faqItem__a {
  display: flex; align-items: flex-start; gap: 16px;
  font-size: 24px; line-height: 1.9; padding: 0 24px 24px;
  background: var(--white); margin: 0 12px 12px; border-radius: 8px; padding-top: 20px;
}

/* ---------- メディア掲載 ---------- */
.media { padding-top: 150px; }
.media__title { font-size: 48px; color: var(--teal-light); text-align: center; }
.media__img { width: 100%; max-width: var(--w-narrow); margin-top: 44px; }

/* ---------- 店舗情報 ---------- */
@media (min-width: 441px) { .access > .heading { margin-top: 204px; } }
.store { width: 100%; max-width: 512px; margin-top: 72px; text-align: center; position: relative; }
.store::before { content: ''; position: absolute; inset: -50px -55px; background: white; border: 4px solid var(--teal); border-radius: 100px; }
.store > * { position: relative; }
.store + .store { margin-top: 205px; }
.store__name { font-size: 28px; }
.store__map {
  width: 100%; max-width: 512px; aspect-ratio: 512 / 300;
  margin: 20px auto 0; border-radius: 8px; overflow: hidden;
}
.store__map iframe { width: 100%; height: 100%; border: 0; }
.store__tel {
  display: inline-block; font-size: 20px; color: var(--teal); margin-top: 20px;
  border-bottom: 1px solid currentColor;
}
.store__address { font-size: 20px; margin-top: 12px; }
.store__walk {
  font-size: 20px; margin-top: 12px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.store__pin {
  width: 18px; height: 18px; border-radius: 50% 50% 50% 0;
  background: var(--teal); transform: rotate(-45deg); flex: 0 0 auto;
}

/* 本番と同じMaterial Icons。使用する文字だけをWebフォントで取得する。 */
.btn .btn__arrow { display: grid; place-items: center; }
.btn .btn__arrow::after { content: '\e5cc'; font-family: 'Material Icons'; font-size: 28px; line-height: 1; position: static; width: auto; height: auto; border: none; transform: none; }
.check .check__list li::before { content: '\e5ca'; font-family: 'Material Icons'; color: var(--teal); font-size: 32px; line-height: 1; width: 32px; height: 32px; border: none; transform: none; top: 0; }
.store__pin { font-family: 'Material Icons'; font-size: 24px; line-height: 1; width: 24px; height: 24px; background: none; border-radius: 0; color: var(--teal); transform: none; }
.store__pin::before { content: '\e0c8'; }
.store__tel, .store__address { display: block; padding-left: 66px; text-align: left; color: var(--text); border: 0; letter-spacing: .15em; }
.store__address { line-height: 30px; }
.store__tel::before, .store__address::before { position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: var(--teal); font-family: 'Material Icons'; font-size: 32px; }
.store__tel::before { content: '\e0cd'; }
.store__address::before { content: '\e0c8'; }
.store__walk { justify-content: flex-start; gap: 42px; }

/* ---------- フッター ---------- */
.footer {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  padding: 100px 20px 56px; margin-top: 0;
  background: linear-gradient(var(--cream), var(--cream)) center / min(840px, 100%) 100% no-repeat;
}
.footer__logo { width: 336px; }
.footer__ig {
  width: 32px; height: 32px; border: 2px solid var(--teal); border-radius: 9px;
  position: relative;
}
.footer__ig::before {
  content: ""; position: absolute; left: 7px; top: 7px; width: 14px; height: 14px;
  border: 2px solid var(--teal); border-radius: 50%;
}
.footer__ig::after {
  content: ""; position: absolute; right: 4px; top: 4px; width: 4px; height: 4px;
  background: var(--teal); border-radius: 50%;
}
.footer__links { display: flex; flex-wrap: wrap; gap: 28px; justify-content: center; }
.access > .footer__ig { margin-top: 100px; margin-bottom: 30px; flex-shrink: 0; }
.footer__ig span { position: absolute; top: 42px; left: 50%; transform: translateX(-50%); font-size: 13px; letter-spacing: .15em; color: var(--teal); }
.footer__links a { font-size: 20px; color: var(--text); letter-spacing: .15em; }
.footer__links li:last-child { flex-basis: 100%; text-align: center; }
.footer__copy { font-size: 14px; margin-top: 12px; }

/* ===========================================================
   スマホ表示（767px以下）
   =========================================================== */
@media (max-width: 440px) {
  :root { --w-wide: 100%; --w: 100%; --w-narrow: 100%; }

  html { scroll-padding-top: 64px; }
  body { line-height: 1.75; }
  main > section { padding: 0 16px; }

  /* ヘッダー：ナビを隠して電話ボタンを出す */
  .header { height: 80px; padding: 0 20px; gap: 15px; }
  .header__actions { gap: 15px; }
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__menu { display: grid; place-items: center; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; color: var(--teal); cursor: pointer; }
  .header__tel {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--teal); width: 28px; margin-left: auto;
  }
  .header__telIcon {
    width: 28px; height: 28px; border: 0;
    position: relative;
  }
  .header__telIcon::after {
    content: '\e0cd'; font-family: 'Material Icons'; font-size: 28px; line-height: 1;
  }
  .header__telText { font-size: 12px; font-weight: 600; line-height: 1.4; letter-spacing: .1em; }

  .fv__h1 { font-size: 13px; padding: 0; }
  .fv__img--sp { display: block; }
  .fv__img--pc { display: none; }
  .fv__btns { gap: 0; justify-content: space-around; bottom: 35px; margin-top: 0; width: 100%; }
  .fv__btns .btn { flex: 0 0 47.5%; min-width: 0; border-width: 2px; border-radius: 64px; padding: 15px 0; }
  .sticky__copy { margin-left: 9px; }
  .fv__btns .btn__note { font-size: 9px; margin-bottom: 0; }
  .fv__btns .btn__label { font-size: 11px; letter-spacing: .1em; padding: 2px; }
  .sticky__logo { font-size: 16px; width: 16px; height: 16px; }
  .sticky__arrow { width: 18px; height: 18px; border-width: 2px; margin-right: 9px; font-size: 12px; }

  .btn { padding: 14px 46px 14px 18px; border-radius: 10px; }
  .btn__note { font-size: 11px; }
  .btn__label { font-size: 14px; }
  .btn__arrow { width: 24px; height: 24px; right: 12px; }
  .btn__arrow::after { left: 8px; top: 7px; width: 7px; height: 7px; }

  .heading { margin: 56px 0 24px; }
  .heading__en { font-size: 32px; }
  .heading__ja { font-size: 16px; }

  .campaign { padding-top: 0; }
  .campaign__lead { font-size: 16px; margin: 30px 0 16px; }
  .campaign > .btn, .coupon > .btn { min-height: 48px; padding: 14px 34px; width: auto; max-width: 100%; }
  .campaign__lead { font-size: 12px; line-height: 18px; letter-spacing: .1em; gap: 0; margin-bottom: 5px; }
  .campaign__lead > span { margin: 0 3px -7px 0; }
  .campaign__lead::before, .campaign__lead::after { width: 20px; height: 1px; }
  .campaign__lead::after { margin-left: -5px; }
  .campaign > .btn--campaign-line { width: 342.421875px; max-width: calc(100% - 20px); min-height: 44px; padding: 10px; margin-top: 10px; margin-bottom: 35px; }
  .campaign__line-logo { flex-basis: 24px; width: 24px; height: 24px; font-size: 24px; margin-right: 10px; }
  .btn--campaign-line .btn__label { font-size: clamp(11px, 3.59vw, 14px); line-height: 21px; }
  .campaign__arrows { flex-basis: 18px; height: 24px; margin-left: 6px; }
  .campaign__arrows .material-icons { top: -2px; left: -10px; width: 28px; height: 28px; font-size: 28px; opacity: .53; }
  .campaign__arrows .material-icons:last-child { left: -1px; opacity: 1; }

  main > .coupon { padding: 20px 10px 50px; }
  .coupon__down { height: 30px; width: 66px; }
  .coupon__down .material-icons { width: 66px; height: 10px; font-size: 48px; top: 0; }
  .coupon__down .material-icons:last-child { height: 20px; top: 10px; }
  .coupon__small { font-size: 12px; line-height: 1.5; letter-spacing: .1em; margin: 10px 0 5px; gap: 0; }
  .coupon__small > span:first-child { margin: 0 3px -7px 0; }
  .coupon__small::before, .coupon__small::after { width: 25px; height: 1px; }
  .coupon__small::before { margin-right: -5px; }
  .coupon__small::after { margin-left: -5px; }
  .coupon__big { font-size: 20px; letter-spacing: .15em; }
  .coupon__card > .btn { width: min(320.71px, calc(100% - 20px)); min-height: 44px; padding: 10px; border-radius: 12px; }
  .coupon__note { font-size: 12px; margin: 25px 10px 30px; }

  .about { background: linear-gradient(var(--cream) 60px, #fff 60px); }
  main > .about { padding: 0 15px; }
  .about::before, .about::after { height: 60px; }
  .about__headline { font-size: 22px; }
  .about .heading { margin-top: 75px; margin-bottom: 20px; }
  .about .heading__en { font-size: 20px; height: 40px; }
  .about .heading__ja { font-size: 12px; }
  .about__sub { font-size: 14px; margin-top: 10px; }
  .about__lead { font-size: 14px; margin-top: 20px; line-height: 1.4; }
  .about__video { margin-top: 10px; height: 200px; }

  main > .reviews { padding: 80px 0; }
  .reviews__small { font-size: 13px; line-height: 1.5; letter-spacing: .15em; gap: 8px; }
  .reviews__small::before, .reviews__small::after { height: 18px; }
  .reviews__headline { font-size: 20px; line-height: 1.5; margin-top: 10px; }
  .reviews__score { margin-top: 0; }

  .slider__item { width: 220px; }
  .slider--review { margin-top: 30px; }
  .slider--review .slider__track { min-height: 0; padding: 0; }
  .slider--review .slider__item { width: min(360px, 100%); }
  .slider--review .slider__img { padding: 0 19px 50px; }
  .slider--review .slider__controls { height: 25px; }
  .slider--review .slider__controls .slider__nav { width: 25px; height: 25px; }
  .slider--review .slider__controls .material-icons { font-size: 18px; }
  .slider--review .slider__controls [data-pause] .material-icons { font-size: 14px; }
  .slider--ba .slider__item { width: 306px; }
  .slider--ba { margin-top: 94px; }
  .slider--ba .slider__track { min-height: 0; gap: 30px; padding: 0 max(0px, calc((100% - 306px) / 2)); }
  .slider__nav { width: 32px; height: 32px; }
  .slider__nav--prev { left: 0; }
  .slider__nav--next { right: 0; }

  main > .concept { padding: 0 15px 80px; }
  .concept .heading { margin: 60px 0 0; }
  .concept .heading__en { font-size: 28px; font-weight: 600; }
  .concept .heading__ja { font-size: 16px; }
  .concept__photo { margin-top: 25px; }
  .concept__body { font-size: 14px; line-height: 28px; letter-spacing: 2.1px; width: 90%; max-width: 324px; margin-top: 40px; }

  .features { padding-top: 0; }
  .features__intro { padding: 0 15px 75px; border-bottom-right-radius: 60% 60px; }
  .features__title, .features__reason { font-size: 21px; }
  .features__title { font-size: 20px; height: 63px; }
  .features__title .num { font-size: 64px; line-height: 1; margin-right: 5px; margin-bottom: -5px; }
  .features__reason { height: 150px; margin: 65px 0 35px; font-size: 20px; line-height: 1.4; }
  .features__rule { width: 100%; margin-bottom: 6px; }
  .features__rule--short { width: 190px; margin-bottom: 0; }
  .features__reason-row { height: 50px; align-items: flex-end; }
  .features__reason .num { font-size: 48px; width: 45px; margin-bottom: -10px; }
  .features + .point { padding-top: 0; }
  .voice .heading__en, .price .heading__en, .flow .heading__en, .access .heading__en { font-size: 20px; }
  .voice .heading__ja, .price .heading__ja, .flow .heading__ja, .access .heading__ja { font-size: 12px; color: var(--text); }

  main > .point { padding: 80px 15px 70px; }
  main > .point--point1 { padding: 0 0 100px; }
  main > .point--point3 { padding-bottom: 140px; }
  .point__label { font-size: 40px; line-height: 1.4; height: 40px; }
  .point__title { font-size: 15px; }
  .point__sub { font-size: 18px; }
  .point--point1 .point__badge { margin-top: -10px; margin-bottom: 60px; }
  .point--point2 .point__badge { margin-top: -10px; margin-bottom: 40px; }
  .point__leadTitle { font-size: 16px; margin-bottom: 10px; }
  .point__leadBody { font-size: 14px; line-height: 1.9; }
  .point__blockTitle { font-size: 16px; padding-bottom: 10px; }
  .point__block:first-of-type .point__blockTitle { padding-bottom: 9px; }
  .point__blockBody { font-size: 14px; }
  .point__block { margin-top: 40px; }
  .program { width: 308px; height: 493px; padding: 30px 20px; }
  .programs__track { height: 600px; gap: 20px; padding: 20px max(0px, calc((100% - 308px) / 2)) 0; }
  .program__en { font-weight: 500; }
  .program__ja { margin-bottom: 20px; }
  .program__body { font-size: 14px; }
  .program__icon { width: 70px; margin-bottom: 20px; }
  .programs .slider__controls { height: 90px; }
  .programs__lead { font-size: 14px; max-width: 351px; margin-top: 60px; text-align: left; }

  .ba__heading { width: 70%; margin: -65px 0 70px; }
  .ba__small { margin-top: 30px; }
  .ba__title { margin: 0 25px 30px; }
  .ba__badge { width: 100px; margin: 0; }
  .ba__amenity { width: 100%; margin-top: -73px; }
  .amenities__top { height: 220px; }
  .amenities__arch, .amenities__bottom { height: 200px; }
  main > .benefit:not(.benefit--repeat) { padding: 40px 15px 0; }
  .benefit__down { margin: 30px 0; }
  .benefit__down .material-icons { font-size: 48px; height: 20px; }

  .benefit { padding-top: 240px; }
  .benefit--repeat { padding-top: 44px; }
  .benefit__small { font-size: 20px; }
  .benefit__title { font-size: 17px; }

  .band { margin-top: 70px; padding: 0 0 60px; gap: 10px; }
  .band__text { font-size: 14px; line-height: 1.5; letter-spacing: .15em; }
  .band__text > span { margin: 0 14px; }
  .band__text::before, .band__text::after { width: 50px; height: 1px; }
  .band__text::before { margin-right: -25px; }
  .band__text::after { margin-left: -25px; }
  .band > .btn { justify-content: center; width: min(324px, 100%); min-height: 82px; padding: 20px 10px; }
  .band .btn__label { margin: 0; }

  .worries { padding-top: 98px; }
  .worries__title { font-size: 21px; }
  .worries__lead, .worries__solve { font-size: 17px; gap: 8px; }
  .worries__leaf { width: 58px; }
  .check { margin-top: 56px; padding: 24px 18px 20px; }
  .check__photo { width: 137px; height: 133px; margin-top: 55px; }
  .check__list { margin-top: 24px; gap: 14px; }
  .check__list li { min-height: 0; }
  .check__label { font-size: 24px; }
  .check__list li { font-size: 15px; padding-left: 30px; }
  .check__list li::before { width: 14px; height: 8px; border-width: 3px; left: 4px; }
  .worries__solve { min-height: 100px; letter-spacing: .1em; margin-top: 50px; }

  .promise { padding-top: 48px; }
  .promise__title { font-size: 16px; }
  .promise__img { max-width: 321px; margin-top: 20px; }
  .promise__focus { max-width: 321px; }
  .promise__lead, .promise__after { font-size: 15px; }
  .promise__leaf { width: 58px; }

  .training__body { font-size: 15px; }
  .training { padding-top: 60px; }
  .training__composition { height: 240px; max-width: 321px; margin-top: 54px; }
  .training__ribbon { margin-top: 74px; max-width: 321px; }
  .training__body { font-size: 14px; margin-top: 66px; max-width: 321px; }
  .training__why, .training__effect { max-width: 321px; }
  .training__effectTitle { font-size: 16px; }
  .training__effect { margin-top: 44px; }

  .atmos__lead { font-size: 15px; }
  .atmos__leaf { width: 58px; }
  .atmos { padding-top: 140px; }
  .atmos__title { font-size: 17px; margin-top: 12px; min-height: 40px; }
  .atmos__collage { width: 250px; height: 170px; margin-top: 43px; }
  .atmos__collage .atmos__photo { width: 93px; height: 158px; left: 82px; }
  .atmos__green { width: 76px; height: 109px; left: 166px; top: 14px; }
  .atmos__water { width: 83px; height: 124px; left: 18px; top: 43px; }
  .atmos__row { flex-direction: column; gap: 16px; }
  .atmos__photo, .atmos__photo2 { width: 150px; }
  .atmos__body { font-size: 14px; max-width: 321px; margin-top: 72px; }
  .atmos__women { font-size: 18px; margin-top: 90px; min-height: 80px; }
  .atmos__women .atmos__photo2 { width: 112px; height: 80px; left: 0; }
  .atmos__womenImg { margin-top: 45px; }

  .voice__lead { font-size: 14px; max-width: 300px; }
  main > .voice { padding-bottom: 90px; }
  .voice__list { gap: 44px; }
  .voiceCard { padding: 20px 18px; width: 300px; min-height: 346px; }
  .voiceCard__heading { gap: 10px; min-height: 100px; }
  .voiceCard__photo { width: 65px; height: 65px; }
  .voiceCard__title { font-size: 15px; }
  .voiceCard__body, .voiceCard__name { font-size: 12px; }

  .price__lead { font-size: 15px; }
  .price__note { font-size: 12px; }

  .flowStep__no { font-size: 15px; }
  .flowStep, .flowStep:first-child { width: 257px; }
  .flowStep:first-child { min-height: 126px; }
  .flowStep:nth-child(2) { min-height: 266px; }
  .flowStep:nth-child(3) { min-height: 236px; }
  .flowStep:nth-child(4) { min-height: 217px; }
  .flowStep:last-child { min-height: 396px; }
  .flowStep__photo { width: 45px; height: 75px; }
  .flowStep__detail { gap: 10px; margin-top: 20px; }
  .flowStep:last-child .flowStep__photo { width: 186px; height: 50px; }
  .flowStep__title { font-size: 14px; }
  .flowStep__body { font-size: 12px; width: 130px; }
  .flowStep:last-child .flowStep__body { width: 179px; }

  .faqItem__q { font-size: 14px; min-height: 110px; padding: 20px 40px 20px 16px; }
  .faqItem__q::after { right: 16px; top: 22px; width: 9px; height: 9px; }
  .faqItem[open] .faqItem__q::after { top: 26px; }
  .faqItem__mark { font-size: 20px; }
  .faqItem__a { font-size: 14px; padding: 14px 16px 18px; margin: 0 8px 8px; }

  .media { padding-top: 58px; }
  .media__title { font-size: 28px; }

  .store__name { font-size: 18px; }
  .store__tel, .store__address, .store__walk { font-size: 14px; }

  .store { max-width: 284px; }
  .store::before { inset: -25px -18px; border-width: 2px; border-radius: 50px; }
  .store__map { aspect-ratio: auto; height: 210px; }
  .store__tel, .store__address { padding-left: 43px; font-size: 12px; line-height: 18px; }
  .store__tel { min-height: 24.5px; }
  .store__tel::before, .store__address::before { font-size: 24px; }
  .store__walk { gap: 19px; font-size: 12px; min-height: 24.5px; }
  .access > .footer__ig { margin-top: 70px; }
  .footer { padding: 48px 16px 28px; margin-top: 0; }
  .footer__logo { width: 200px; }
  .footer__links { gap: 16px; }
  .footer__links a { font-size: 14px; }
  .footer__copy { font-size: 11px; }
  [data-store="higakoganei"] .campaign__lead { margin-top: 20px; }
  [data-store="higakoganei"] .coupon { padding-top: 60px; }
  .store + .store { margin-top: 148px; }
  .btn .btn__arrow::after { width: 1em; height: 1em; left: auto; top: auto; font-size: 20px; }
  .fv__btns .btn .btn__arrow::after { width: 1em; height: 1em; left: auto; top: auto; font-size: 16px; }
}

/* 本番のお悩み欄：上下別々の楕円、本文とアイコンを独立した列にする。 */
.ba__small, .ba__title { display: flex; align-items: center; justify-content: center; }
main > .worries { width: min(840px, 100%); margin: 0 auto; padding: 0 calc(min(840px, 100vw) * .05) 0; }
.worries > * { flex-shrink: 0; }
.worries__title { font: 36px/1.4 var(--font); letter-spacing: .15em; margin: 80px 0 0; display: flex; }
.worries__title--second { margin-top: 11px; }
.worries__rule { width: 350px; height: 4px; background: var(--teal-light); }
.worries__rule--second { width: 430px; height: 5px; }
.worries__lead { width: 100%; margin: 62px 0 50px; gap: 0; }
.worries__lead span { flex-shrink: 0; }
.worries__lead .worries__leaf { width: 18%; }
/* 白い楕円と重なる装飾を手前に描く。位置・寸法は変えない。 */
.worries__accent { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-end; justify-content: center; width: 90%; min-height: 0; }
.worries__accent .worries__leaf { width: 25%; flex-shrink: 0; margin-bottom: -93px; }
.check { width: 100%; margin: 0 0 180px; padding: 0; border-radius: 0; background: transparent; }
.check__top, .check__bottom { display: flex; flex-direction: column; align-items: center; background: white; }
.check__top { height: 452px; border-radius: 100% 100% 0 0; }
.check__bottom { height: 400px; border-radius: 0 0 100% 100%; }
.check__top > *, .check__bottom > * { flex-shrink: 0; }
.check__label { margin-top: 70px; display: flex; }
.check__rule { width: 200px; height: 3px; background: #333; }
.check__rows { display: flex; width: 100%; height: 260px; margin-top: 63px; }
.check__icons { display: flex; flex-direction: column; width: 7%; height: 100%; }
.check__icons > div { height: 33%; padding-left: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check__icons i { display: flex; align-items: center; justify-content: center; font-size: 36px; color: var(--teal-light); }
.check__list { width: 93%; height: 100%; margin: 0; gap: 0; align-items: flex-start; }
.check__list li { display: flex; align-items: flex-start; justify-content: center; flex-direction: column; width: 100%; height: 33%; min-height: 0; padding: 10px; font: 28px/1.4 var(--font); letter-spacing: normal; flex-shrink: 0; }
.check__list li span { flex-shrink: 0; display: flex; max-width: 100%; text-align: left; }
.check .check__list li::before { content: none; }
.check__bottom .check__rows { height: 176.5625px; margin-top: 0; }
.check__bottom .check__list, .check__bottom .check__icons { justify-content: center; }
.check__bottom .check__list li:last-child { height: auto; margin-top: 19px; }
.check__bottom .check__icons > div:first-child { height: calc(33% + 35px); margin-top: -35px; }
.check__photo { width: 39%; height: 256px; margin: 20px 0 0; border-radius: 0; background: url('images/live-7a6a2e3b-small.webp') 0% 50% / cover; }
.worries__hurdle { width: 100%; margin: 0 0 50px; }
.worries__solve-arrow { width: 103px; margin-bottom: 20px; }
.worries__solve { min-height: 0; margin: 0; gap: 0; max-width: 100%; }
.worries__solve-leaf { width: 124px; margin: -68px 0 0 23px; rotate: 5deg; }
.worries__down { display: flex; flex-direction: column; margin: 40px 0 50px; }
.worries__down .material-icons { display: flex; align-items: center; justify-content: center; width: 66px; height: 33px; font-size: 100px; color: var(--teal-light); }
.worries__down .material-icons:last-child { color: #3bc1d2; }
@media (max-width: 440px) {
  .worries__title { font-size: 18px; }
  .worries__rule { width: 180px; }
  .worries__rule--second { width: 220px; }
  .worries__lead { margin: 40px 0 30px; gap: 0; }
  .check { margin-bottom: 72px; }
  .check__top, .check__bottom { height: 250px; }
  .check__rule { width: 100px; height: 1px; }
  .check__rows { height: 138px; margin-top: 16px; }
  .check__icons i { font-size: 20px; }
  .check__list li { font-size: 14px; letter-spacing: .15em; padding: 10px; }
  .check__bottom .check__rows { height: 111px; }
  .check__bottom .check__list li:last-child { margin-top: 10px; }
  .check__bottom .check__icons > div:first-child { height: calc(33% + 25px); margin-top: -25px; }
  .check__photo { height: 132.5px; margin-top: 40px; }
  .worries__solve-arrow { width: 69px; }
  .worries__solve-leaf { width: 66px; margin: -36px 0 0 9px; }
  .worries__down { margin: 26px 0 30px; }
  .worries__down .material-icons { height: 20px; font-size: 48px; }
}

/* しない約束〜空間紹介：本番の共通内幅と実画像の縦横比。 */
main > .promise, main > .training, main > .atmos { width: min(840px, 100%); margin: 0 auto; padding: 0 72px; }
main > .promise { padding-top: 77px; padding-bottom: 145px; }
.promise__title { margin: 0 0 56px; display: flex; }
.promise__img { width: 100%; max-width: none; margin: 0 0 80px; }
.promise__lead { margin: 0 0 30px; gap: 8px; width: 100%; }
.promise__leaf { width: 118.71875px; }
.promise__focus { width: 100%; max-width: none; margin: 0 0 30px; }
.promise__after { margin: 0; }
.training__why { width: 95%; max-width: none; margin: 0 0 100px; }
.training__composition { width: 100%; height: 533px; margin: 0 0 100px; display: flex; align-items: center; background-image: url('images/live-0568ac2a-small.webp'); }
.training__ribbon { width: 100%; margin: 0; }
.training__body { margin: 0 0 150px; }
.training__effectTitle { margin: 0 0 100px; }
.training__effect { width: 100%; margin: 0; }
.atmos__lead-wrap { width: 100%; height: 168px; display: flex; align-items: center; justify-content: flex-end; margin-bottom: 102px; }
.atmos__lead { margin: 0; max-width: 100%; }
.atmos__title { width: 664.375px; max-width: 100%; min-height: 0; margin: 0 0 105px; gap: 0; justify-content: center; }
.atmos__leaf { width: 18%; }
.atmos__collage { width: 336px; height: 256px; margin: 0 0 200px; display: flex; align-items: center; }
.atmos__water { position: static; width: 127px; height: 212px; margin: 79px 0 -35px -36px; flex-shrink: 0; }
.atmos__collage .atmos__photo { position: static; width: 188px; height: auto; margin: -40px 0 -15px -20px; flex-shrink: 0; border-radius: 0; }
.atmos__green { position: static; width: 150px; height: 237px; margin: -40px 0 0 -34px; flex-shrink: 0; background: url('images/live-04446181-small.webp') center / cover; }
.atmos__body { width: 100%; margin: 0 0 100px; }
main > .women { width: min(840px, 100%); margin: 0 auto; padding: 0 30px; background: var(--cream); }
.atmos__women { display: flex; flex-direction: column; width: 100%; min-height: 0; margin: 130px 0 100px; }
.atmos__women .atmos__photo2 { position: static; width: 235px; height: auto; margin: -106px 0 0 -136px; rotate: -5deg; border-radius: 0; }
.atmos__womenImg { width: 100%; margin: 0; }
.worries__solve-leaf { rotate: -5deg; }
@media (max-width: 440px) {
  main > .promise, main > .training, main > .atmos { padding: 0 34.5px; }
  main > .promise { padding-top: 41px; padding-bottom: 80px; }
  .promise__title { margin-bottom: 20px; }
  .promise__img { margin-bottom: 52px; }
  .promise__leaf { width: 51.21875px; }
  .promise__focus { margin-bottom: 15px; }
  .training__why { width: 100%; margin-bottom: 50px; }
  .training__composition { height: 240px; margin-bottom: 66px; }
  .training__body { margin-bottom: 89px; }
  .training__effectTitle { margin-bottom: 80px; }
  .atmos__lead-wrap { height: 95px; margin-bottom: 60px; }
  .atmos__title { margin-bottom: 60px; }
  .atmos__collage { width: 176px; height: 124px; margin-bottom: 101px; }
  .atmos__water { width: 83px; height: 124px; margin: 25px 0 -25px -23px; }
  .atmos__collage .atmos__photo { width: 93px; height: auto; margin: 0 0 0 -19px; }
  .atmos__green { width: 76px; height: 109px; margin: -23px 0 0 -9px; }
  main > .women { padding: 0 15px; }
  .atmos__women { height: 74px; justify-content: center; margin: 88px 0 22px; }
  .atmos__women .atmos__photo2 { width: 106px; margin: -47px 0 0 -61px; }
}

/* 特典の再掲とお客様の声 */
main > .benefit--repeat { width: min(840px, 100%); margin: 0 auto; padding: 80px 30px 0; }
.benefit--repeat .benefit__img { width: 90%; max-width: none; margin: 0; }
.benefit--repeat + .band { margin-top: 60px; padding-bottom: 110px; }
main > .voice { width: min(840px, 100%); margin: 0 auto; padding: 71px 42px 150px; }
.voice > .heading { width: 100%; margin: 0 0 100px; padding: 0 15px; }
.voice .heading__en { margin: 0; }
.voice .heading__ja { height: auto; margin: 0; text-align: left; font: 24px/1.4 var(--font); letter-spacing: .05em; color: var(--text); }
.voice__lead { width: max-content; max-width: 100%; margin: 0 0 100px; }
.voice__list { width: 100%; max-width: none; margin: 0; gap: 80px; }
.voiceCard { width: 449.375px; height: 600px; min-height: 0; padding: 0; border: none; border-radius: 30%; box-shadow: none; }
.voiceCard__frame { display: flex; flex-direction: column; align-items: center; width: 100%; height: 100%; border: 3px solid #3ec0d1; border-radius: 30%; padding: 60px 0 20px 15px; margin: -15px 15px 15px -15px; }
.voiceCard__heading { width: 88%; height: 130px; min-height: 0; flex-shrink: 0; gap: 0; padding: 20px 0; margin-bottom: 20px; border-bottom: 4px solid #bde6eb; }
.voiceCard__photo { width: 90px; height: 90px; margin-right: 20px; background: #eee center / cover; }
.voiceCard__photo--1 { background-image: url('images/live-5bab35ac-small.webp'); }
.voiceCard__photo--2 { background-image: url('images/live-e38209d5-small.webp'); }
.voiceCard__photo--3 { background-image: url('images/live-bbf04641-small.webp'); }
.voiceCard:nth-child(2) .voiceCard__photo { margin: 0 0 0 20px; }
.voiceCard__title { margin-bottom: 10px; rotate: -5deg; }
.voiceCard__body { width: 90%; padding: 5px; margin: 0; flex-shrink: 0; }
.voiceCard__name { margin-top: 20px; }
.training__effectTitle, .atmos__lead { width: max-content; max-width: 100%; }
@media (max-width: 440px) {
  main > .promise, main > .training, main > .atmos { padding-left: calc(5% + 15px); padding-right: calc(5% + 15px); }
  main > .benefit--repeat { padding: 60px 10px 0; }
  .benefit--repeat + .band { padding-bottom: 70px; }
  .benefit--repeat + .band > .btn { width: calc((100% - 20px) * .9); max-width: 333px; }
  main > .voice { padding: 71px calc(5% + 15px) 130px; }
  .voice > .heading { padding: 0; margin-bottom: 50px; }
  .voice .heading__ja { font-size: 12px; letter-spacing: .15em; }
  .voice__lead { margin-bottom: 50px; }
  .voice__list { gap: 50px; }
  .voiceCard { width: 300px; height: auto; margin-left: 20px; }
  .voiceCard:nth-child(2) { margin-left: -20px; }
  .voiceCard__frame { padding: 17px 0 30px; border-width: 2px; margin: -5px 5px 5px -5px; height: auto; }
  .voiceCard__heading { height: 100px; margin-bottom: 15px; padding: 20px 0 10px; }
  .voiceCard__photo { width: 65px; height: 65px; margin-right: 10px; }
  .voiceCard:nth-child(2) .voiceCard__photo { margin-left: 10px; }
  .voiceCard__name { margin-top: 10px; }
  .voiceCard:nth-child(2) .voiceCard__name { margin-top: 0; }
}

/* 料金と体験の流れ */
.voice .heading__en { gap: 20px; }
.voice .heading__en::after, .price .heading__en::after, .flow .heading__en::after, .access .heading__en::after { height: 1px; background: #000; }
.voiceCard__heading { align-items: flex-end; }
main > .price { width: min(840px, 100%); margin: 0 auto; padding: 130px 30px 30px; }
.price > .heading, .flow > .heading { width: 100%; margin: 0 0 80px; }
.price .heading__ja, .flow .heading__ja { height: 53px; margin: 0; text-align: left; }
.price__lead { width: 90%; margin: 0 0 80px; }
.price__table { width: 90%; max-width: none; margin: 0; }
.price__note { margin: 0 0 80px; }
.price__compare { margin: 0; width: 100%; }
main > .flow { width: min(840px, 100%); margin: 0 auto; padding: 130px 72px 150px; }
.flow__list { margin: 0; width: 100%; max-width: none; gap: 0; }
.flowStep { display: flex; flex-direction: column; align-items: center; width: 80%; height: auto; min-height: 0; padding: 25px; }
.flowStep > * { flex-shrink: 0; }
.flowStep:first-child { width: 53%; min-height: 0; }
.flowStep:last-child { min-height: 0; }
.flowStep:not(:last-child)::after { content: none; }
.flowStep__no { margin: 0 0 20px; }
.flowStep__title-wrap { padding: 10px; background: #ccebf0; max-width: 100%; }
.flowStep__title { margin: 0; padding: 0; background: none; box-shadow: none; font-weight: 400; }
.flowStep__detail { width: 100%; height: 171px; margin: 0; padding: 10px; gap: 0; justify-content: flex-start; }
.flowStep__photo { width: calc(25% - 2px); height: 107px; margin-right: 2px; border-radius: 24px; background: center / cover; }
.flowStep__photo--1 { background-image: url('images/live-6c3a06ab-small.webp'); background-position: 0% 50%; }
.flowStep__photo--2 { background-image: url('images/live-f6d5f6b6-small.webp'); width: 25%; margin: 0; }
.flowStep__photo--3 { background-image: url('images/live-d795f42b-small.webp'); background-position: 50% 50%; }
.flowStep__photo--4 { background-image: url('images/live-be24632b-small.webp'); background-position: 50% 0%; }
.flowStep__body-wrap { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; width: 75%; height: 129px; padding: 10px; }
.flowStep__body { width: 100%; flex-shrink: 0; }
.flowStep:nth-of-type(5) .flowStep__detail { flex-direction: row-reverse; }
.flowStep:last-child .flowStep__title-wrap { margin-bottom: 20px; }
.flowStep:last-child .flowStep__detail { padding: 0; height: auto; }
.flowStep:last-child .flowStep__photo { width: 90%; height: 115px; margin: 0 0 10px; }
.flowStep:last-child .flowStep__body-wrap { width: 100%; height: 249px; padding: 20px; }
.flowStep:last-child .flowStep__body { width: 100%; }
.flow__dots { display: flex; align-items: center; flex-direction: column; padding-bottom: 5px; }
.flow__dots .material-icons { font-size: 10px; width: 10px; height: 10px; margin-top: 5px; color: var(--teal-light); }
.flow__dots .material-icons:nth-child(2), .flow__dots .material-icons:nth-child(4) { margin-left: 10px; }
.flow__dots .material-icons:nth-child(3) { margin-left: 13px; }
@media (max-width: 440px) {
  main > .price { padding: 65px 15px; }
  .price > .heading { padding: 0 10px; margin-bottom: 20px; }
  .price__lead { width: 100%; padding: 10px; margin-bottom: 20px; }
  .price__table { width: 100%; margin-bottom: 30px; }
  main > .flow { padding: 65px calc(5% + 15px) 100px; }
  .flow > .heading { margin-bottom: 20px; }
  .flow .heading__en { height: 40px; }
  .flowStep, .flowStep:first-child { width: 80%; min-height: 0; }
  .flow .flowStep__title { font: 14px/1.4 var(--font); letter-spacing: .15em; }
  .flowStep__title-wrap { padding: 5px; }
  .flowStep:first-child .flowStep__title { padding: 5px; }
  .flowStep:nth-of-type(7) .flowStep__title-wrap, .flowStep:last-child .flowStep__title-wrap { padding: 10px; }
  .flowStep:last-child .flowStep__title { letter-spacing: normal; }
  .flowStep__detail { height: auto; }
  .flowStep__photo { height: 75px; border-radius: 12px; }
  .flowStep__photo--3 { height: 70px; }
  .flowStep__body-wrap { height: auto; padding: 10px 0 10px 10px; }
  .flowStep:nth-of-type(5) .flowStep__body-wrap { padding: 5px; }
  .flowStep:nth-of-type(7) { height: 217px; }
  .flowStep:last-child .flowStep__photo { height: 50px; }
  .flowStep:last-child .flowStep__body-wrap { height: auto; padding: 14px; }
}

/* FAQから店舗情報、フッターまで。 */
.voiceCard__heading { border-bottom-width: 2px; }
.flow .flowStep { min-height: 0; }
.flow .flowStep .flowStep__detail { flex-direction: row; }
.flow .flowStep:nth-of-type(5) .flowStep__detail { flex-direction: row-reverse; }
.flow .flowStep:last-child .flowStep__detail { flex-direction: column; }
.flow + .benefit--repeat { padding: 80px 20px 0; }
.flow + .benefit--repeat + .band { margin-top: 70px; padding-bottom: 80px; }
main > .faq { width: min(840px, 100%); margin: 0 auto; padding: 100px 0; }
.faq > .heading { margin: 0 0 40px; }
.faq .heading__en { margin: 0 0 10px; }
.faq .heading__ja { margin: 0; }
.faq__list { width: 100%; max-width: none; gap: 0; }
.faqItem { border-radius: 0; overflow: visible; }
.faqItem::before, .faqItem:last-child::after { content: ''; display: block; width: 90%; height: 1px; background: #333; margin: 0 auto; }
.faqItem__q { width: 100%; height: 150px; min-height: 0; padding: 0 45px; gap: 20px; justify-content: center; }
.faqItem__q > span:not([class]) { flex: 0 0 calc(90% - 2px); }
.faqItem__q .faqItem__mark { font: 500 32px/1 var(--font); letter-spacing: normal; }
.faqItem__q::after { content: '\e5c7'; position: static; width: 25px; height: 48px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 0; transform: rotate(180deg); font: 48px/1 'Material Icons'; color: #333; letter-spacing: normal; text-rendering: optimizeLegibility; }
.faqItem[open] .faqItem__q::after { transform: none; }
.faqItem__a { width: 100%; margin: 0; padding: 50px 45px; background: none; border-radius: 0; gap: 20px; justify-content: center; align-items: flex-start; overflow: hidden; }
.faqItem__a .faqItem__mark { font: 500 32px/1.4 var(--font); margin-left: -40px; }
.faqItem__a > span:not([class]) { flex: 0 0 calc(90% - 2px); max-width: none; font: 24px/1.7 var(--font); letter-spacing: .15em; }
main > .media { width: min(840px, 100%); margin: 0 auto; padding: 100px 0; }
.media__title { margin-bottom: 15px; }
.media__rule { width: 12%; height: 8px; background: var(--teal-light); margin-bottom: 50px; }
.media__img { width: 80%; max-width: none; margin: 0; }
main > .access { width: min(840px, 100%); margin: 0 auto; padding: 130px 72px 31px; }
.access > .heading { width: 100%; margin: 0 0 80px; }
.access .heading__en { height: 78px; }
.access .heading__ja { height: 53px; margin: 0; text-align: left; }
.store, .store + .store { width: 90%; max-width: none; height: 709px; padding: 25px; margin: 0 0 100px; border: 4px solid var(--teal); border-radius: 96px; background: white; display: flex; flex-direction: column; align-items: center; }
.store > * { flex-shrink: 0; }
.store::before { content: none; }
.store__name { margin: 25px 0 50px; }
.store__map { width: 90%; max-width: none; height: 300px; aspect-ratio: auto; margin: 0; border-radius: 0; }
.store__info { width: 90%; height: 243px; }
.store__row { height: 33%; width: 100%; display: flex; align-items: center; }
.store__row i { font-size: 36px; line-height: 1; color: var(--teal); margin-right: 30px; flex-shrink: 0; }
.store__tel, .store__address, .store__walk { display: block; padding: 0; margin: 0; width: max-content; max-width: 100%; border: 0; }
.store__tel::before, .store__address::before { content: none; }
.access > .footer__ig { width: 40px; height: 40px; margin: 0 0 10px; border: 0; border-radius: 0; background: url('images/live-88605ed1-small.webp') center / cover; }
.footer__ig::before, .footer__ig::after { content: none; }
.footer__ig span { top: 50px; }
.access > .footer__ig { margin-bottom: 28.1875px; }
.footer { width: min(840px, 100%); margin: 0 auto; padding: 50px 0 200px; gap: 0; }
.footer__logo { width: 40%; }
.footer__links { width: 100%; gap: 0; align-items: center; }
.footer__links li:first-child { margin-right: 70px; }
.footer__links a { font: 500 20px/1.4 var(--font); letter-spacing: .15em; }
.footer__links li:last-child { margin: 20px 0 40px; }
.footer__links li:last-child a { font-weight: 400; letter-spacing: normal; }
.footer__copy { margin: 0; font: 14px/1.4 var(--font); letter-spacing: .15em; }
@media (max-width: 440px) {
  .voiceCard__title { width: 70%; flex-shrink: 0; }
  .voiceCard:last-child .voiceCard__title { width: 60%; }
  .flow + .benefit--repeat + .band { padding-bottom: 90px; }
  .flow + .benefit--repeat + .band > .btn { width: calc(100% - 40px); max-width: none; }
  main > .faq, main > .media { padding-top: 60px; }
  .faqItem__q { height: 100px; }
  .faqItem__q .faqItem__mark { font-size: 20px; }
  .faqItem__q::after { height: 36px; font-size: 36px; }
  .faqItem__a { padding: 30px 45px; }
  .faqItem__a .faqItem__mark { font-size: 20px; }
  .faqItem__a > span:not([class]) { font-size: 12px; }
  .media__title { margin-bottom: 10px; }
  main > .access { padding: 45px calc(5% + 15px) 31px; }
  .access > .heading { margin-bottom: 31px; }
  .access .heading__en { height: 40px; }
  .store, .store + .store { width: 100%; height: auto; padding: 0 0 30px; border-width: 3px; border-radius: 64px; margin-bottom: 80px; }
  .store__name { margin: 25px 0 30px; }
  .store__map { height: 170px; margin: 0 0 20px; }
  .store__info { height: auto; }
  .store__row { height: auto; min-height: 28px; }
  .store__row i { font-size: 28px; margin-right: 15px; }
  .store__address { width: max-content; max-width: none; flex-shrink: 0; }
  .store:nth-of-type(3) .store__address { max-width: 240.96875px; }
  .footer { padding: 30px 0 150px; }
  .footer__links a { font-size: 14px; }
  .footer__links li:last-child a { font-size: 20px; }
  .footer__copy { font-size: 11px; }
}
.voiceCard__heading { border-bottom: 2px dashed #3ec0d1; }
.voiceCard:nth-child(2) .voiceCard__heading { align-items: center; }
.media__rule { background: #333; }
.voice .heading__ja, .price .heading__ja, .flow .heading__ja, .access .heading__ja { display: flex; align-items: flex-start; justify-content: flex-start; }
.footer__links li { display: flex; justify-content: center; }
@media (max-width: 440px) {
  .voiceCard:last-child .voiceCard__title { width: auto; }
}

/* 東小金井は本番にある店舗別の余白・文字設定を保持する。 */
body[data-store="higakoganei"] .ba { padding-top: 8px; }
@media (min-width: 441px) {
  body[data-store="higakoganei"] .ba__title { margin-left: 60px; margin-right: 60px; }
  body[data-store="higakoganei"] .coupon__big { letter-spacing: .075em; }
}
@media (max-width: 440px) {
  body[data-store="higakoganei"] .price .price__lead { font-size: 14px; letter-spacing: .15em; }
  body[data-store="higakoganei"] .price__table { margin-bottom: 0; }
  .store .store__address { width: 85%; max-width: none; }
  body[data-store="higakoganei"] .store { height: 450px; padding: 0; }
  body[data-store="higakoganei"] .store__info { height: 155px; }
  body[data-store="higakoganei"] .store__row { height: 33%; }
}

/* 個別の画像比較で確認した背景の連続性。 */
main > .band { width: min(840px, 100%); margin: 0 auto; padding-top: 70px; background: var(--cream); }
.benefit--repeat + .band { margin-top: 0; padding-top: 60px; }
.flow + .benefit--repeat + .band { margin-top: 0; padding-top: 70px; }
.band__text { color: var(--teal); }
.atmos__collage { background: var(--teal); }
main > .access { border-bottom: 1px solid var(--teal); padding-bottom: 30px; }

/* 本番のタブレット指定。本文のスマホ切替は440px、ナビの切替は840px。 */
@media (min-width: 441px) and (max-width: 840px) {
  .header__nav, .header__cta { display: none; }
  .header__menu { display: grid; place-items: center; width: 44px; height: 44px; padding: 10px; border: 0; background: none; color: var(--teal); cursor: pointer; }
  .campaign__lead { font-size: 16px; }
  .campaign__lead::before, .campaign__lead::after, .coupon__small::before, .coupon__small::after { width: 35px; }
  .coupon__small { font-size: 16px; }
  .coupon__big { font-size: 28px; }
  .coupon__note { font-size: 16px; }
  .coupon__card > .btn { padding: 20px; min-height: 0; }
  .coupon__card > .btn .btn__label { font-size: 20px; }
  .reviews__lead { font-size: 20px; }
  .features__title { font-size: 32px; }
  .features__title .num { font-size: 66px; }
  .program { width: calc(80vw - 6px); }
  .programs__track { gap: 30px; padding-left: calc((100% - (80vw - 6px)) / 2); padding-right: calc((100% - (80vw - 6px)) / 2); }
  main > .campaign { padding-bottom: 80px; }
  .campaign > .btn--campaign-line { width: 533.75px; max-width: 100%; min-height: 0; padding: 20px; }
  .btn--campaign-line .btn__label { font-size: 20px; line-height: 1.5; }
  .campaign__line-logo { margin-right: 25px; }
  .campaign__arrows { flex-basis: 48px; height: 30px; }
  .campaign__arrows .material-icons { width: 48px; height: 48px; font-size: 48px; top: -9px; }
  .campaign__arrows .material-icons:last-child { left: 15px; }
  .coupon__card > .btn { width: 502.703125px; max-width: 100%; }
  .coupon__card > .btn .btn__label { line-height: 1.5; }
  main > .reviews { width: calc(100% - 60px); margin-left: 30px; margin-right: 30px; }
  .slider--review .slider__item { width: min(593px, 100%); }
  .slider--ba .slider__item { width: calc(80vw - 9px); }
  .slider--ba .slider__track { padding-left: calc((100% - (80vw - 9px)) / 2); padding-right: calc((100% - (80vw - 9px)) / 2); }
  .band .band__text { font-size: 20px; }
  .band .btn__label { font-size: 20px; letter-spacing: .15em; }
  .worries .worries__lead span:not([class]) { font-size: 24px; letter-spacing: .1em; }
  .worries .worries__solve span:not([class]) { font-size: 20px; letter-spacing: .15em; }
  .promise .promise__lead span:not([class]) { font-size: 22px; letter-spacing: .15em; }
  .promise .promise__after { font-size: 24px; letter-spacing: .15em; }
  .atmos .atmos__title span:not([class]) { font-size: 24px; letter-spacing: .15em; }
  .voice .heading__en, .price .heading__en, .flow .heading__en, .access .heading__en, .about .heading__en { font-size: 40px; }
  .voiceCard, .voiceCard__frame { height: auto; }
  .voiceCard__frame { padding-bottom: 35px; }
  .voiceCard__name { margin-top: 15px; }
  .faq .faqItem__q span:not([class]), .faq .faqItem__a span:not([class]) { font-size: 20px; letter-spacing: .15em; }
  .footer { padding-bottom: 259px; }
  .fv__btns { gap: 10px; bottom: 40px; }
  .fv__btns .btn { border-width: 3px; padding: 20px 0; }
  .fv__btns .btn__note { font-size: 12px; }
  .fv__btns .btn__label { font-size: 16px; letter-spacing: .1em; padding: 4px; }
  .sticky__copy { margin-left: 20px; }
  .sticky__logo { font-size: 24px; width: 24px; height: 24px; }
  .sticky__arrow { width: 30px; height: 30px; border-width: 3px; margin-right: 20px; font-size: 20px; }
}

/* ---------------------------------------------------------------
   体験予約フォーム（フォーム版LPだけ）

   色はLPと同じ変数（--teal / --orange / --cream）から取ります。
   参考にした かたぎり塾 のフォームは必須欄を淡いピンクで塗り分けていましたが、
   こちらはブランドのティールに置き換えています。
   赤はエラーだけに残します（間違いを知らせる色はブランドより分かりやすさを優先）。
   --------------------------------------------------------------- */
.form {
  background: var(--cream);
  padding: 48px 16px 64px;
  scroll-margin-top: 90px;  /* 固定ヘッダーの下に見出しが隠れないように */
}

/* 予約フォームだけのページ（別タブで開く）。
   LPと同じ .form をそのまま使い、囲いの余白と電話番号だけ足す。 */
.reservePage { background: var(--cream); padding-bottom: 48px; }
.reservePage .form { padding-top: 48px; padding-bottom: 32px; }
/* 見出し（Reservation）はLPの各セクション用に上150pxが付いているが、単独ページでは空きすぎる
   （PCでヘッダー下から182pxあった。明石さん 2026-09-21）。ヘッダー下から見出しまで 48px にする */
.reservePage .heading { margin-top: 0; }
.reservePage__telLead { margin: 0; text-align: center; font-size: 14px; color: #777; }
.reservePage__tel {
  display: block;
  margin-top: 4px;
  text-align: center;
  color: var(--teal);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .04em;
}

/* 入力中は下の固定ボタンを引っ込める（入力欄に被るため）。
   フォームまで来た人にとって「予約はこちら」の用は済んでいる。 */
.fv__btns { transition: opacity .2s, visibility .2s; }
body.form-open .fv__btns { opacity: 0; visibility: hidden; }

/* 見出しの直下の一押し。「お金」と「持ち物」の不安をここで消します。
   囲み（コールアウト）は作りません。このLPに1つも無い形だからです（DESIGN.md「やらないこと」）。
   色はブランドのティール。オレンジは予約ボタンだけに取っておきます。 */
.form__lead {
  max-width: var(--w-narrow);
  margin: 0 auto 6px;
  color: var(--teal);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
}
/* 一押しの裏付け。下の注意書き（.form__notice）と同じ大きさ・色にして、
   「強い1行＋小さい説明」の1かたまりに見せます。 */
.form__leadNote {
  max-width: var(--w-narrow);
  margin: 0 auto 20px;
  color: #777;
  font-size: 13px;
  line-height: 1.8;
}
/* 注意書き。囲みや色帯を付けず、本文と同じ地の上に小さく置く。
   左に色の棒を立てた囲みは、このLPの他のどこにも無い形。 */
.form__notice {
  max-width: var(--w-narrow);
  margin: 0 auto 24px;
  color: #777;
  font-size: 13px;
  line-height: 1.8;
}
.form__box {
  max-width: var(--w-narrow);
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  padding: 28px 20px 32px;
}
.form__subtitle {
  margin: 32px 0 8px;
  padding-top: 24px;
  border-top: 1px solid #dbeeee;
  font-size: 20px;
  font-weight: 700;
}
.form__field { margin-top: 20px; }
.form__label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
}
/* 「必須」はブランドのオレンジの札。白抜きだと小さい字で読みにくいので、
   淡いオレンジに濃いオレンジの字（白背景との明暗比 約6:1）。 */
.form__required {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 10px;
  background: #ffe4c7;
  color: #a34700;
  font-size: 12px;
  font-weight: 700;
  vertical-align: 2px;
}
.form__input {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid #cfe7e7;
  border-radius: 6px;
  background: var(--teal-pale);   /* 必須の欄 */
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;       /* 16px未満にするとiOSで拡大されるため下げない */
  line-height: 1.6;
}
.form__input:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}
.form__input--area {
  background: var(--white);  /* 任意の欄 */
  resize: vertical;
}
/* 選ぶ欄だと分かるように、右端に下向きの矢印を出す。
   ブラウザ既定の矢印は見た目がOSごとに違うので消し、ブランドのティール（#6fc3c3）で描く。
   🔴 矢印が無いと、入力済みの文字が入っているただの欄に見える。 */
select.form__input {
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%236fc3c3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  cursor: pointer;
}
/* まだ選んでいないあいだは、ほかの欄のプレースホルダと同じ薄さにする */
select.form__input:has(option[value=""]:checked) { color: #9aa5a5; }
/* 🔴 開いたときの選択肢の色は、はっきり指定する。
   上の薄い色が中の選択肢にまで移り、ブラウザが「選べない」選択肢を標準の濃いグレーで描くので、
   指定しないと**選べる方が薄く、選べない方が濃く**なる（2026-09-17 明石さんの指摘）。 */
select.form__input option { color: var(--text); }
select.form__input option:disabled { color: #c3c9c9; }
/* 姓と名は横に並べる（スマホでも2列。名前は短いので半分の幅で足りる） */
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 12px;
}
.form__row .form__input { min-width: 0; }

/* 罠の欄（人には見えない）。display:none だと自動入力が避けて通るので、画面の外へ出す */
.form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form__note {
  margin-top: 8px;
  color: #777;
  font-size: 13px;
  line-height: 1.7;
}
/* 送信ボタンの上の同意の一文。注意書きと同じ見た目で、リンクだけ分かるようにする（囲まない） */
.form__note--privacy { margin-top: 20px; }
.form__note--privacy a { color: var(--teal); text-decoration: underline; }
.form__error {
  margin-top: 20px;
  padding: 12px 14px;
  border-radius: 6px;
  background: #fdecec;
  color: #c0392b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}
.form__submit {
  width: 100%;
  margin-top: 28px;
}
.form__submit[disabled] { opacity: .6; pointer-events: none; }
