@charset "UTF-8";
/* ============================================================
   カウンセリングルーム キカセテ — LP stylesheet
   ------------------------------------------------------------
   骨格は ~/Claude/ever_pilates/DESIGN.md の型に準拠
     - コンテンツは max-width 480px の単一カラムで中央固定
     - PCでも段組みしない。常にスマホと同じ縦積み
     - PC時の両サイドは body の固定背景で埋める
     - サイドの固定要素は予約CTAのみ
     - SP時は CTA を画面下部の追従バーにする
   配色はロゴのテラコッタ系に合わせている。
   ============================================================ */

/* ------------------------------------------------------------
   1. デザイントークン
   ------------------------------------------------------------ */
:root {
  /* ブルー系（メイン） */
  --terra:      #1B3A5C;   /* 見出し・フッター */
  --terra-deep: #12283F;
  --orange:     #3E6E9E;   /* 装飾用 */
  --orange-mid: #7FA6C8;   /* 罫線 */
  --orange-soft:#C6D9E8;   /* 枠線 */
  --cream:      #E9F1F7;
  --cream-pale: #E9F1F7;   /* セクション背景 */
  --cream-mist: #F4F8FB;
  --terra-text: #2F5A85;   /* 文字にブルーを使うとき */

  /* アクセント（くすみローズ）— CTAと強調のみ */
  --green:      #C48D95;
  --green-deep: #AE757F;
  --green-pale: #F6EDEE;

  /* ニュートラル */
  --ivory:      #FBF9F7;   /* カラムの地色 */
  --white:      #FFFFFF;
  --text:       #253544;
  --text-mute:  #556878;
  --line:       #DCE6EE;
  --line-soft:  #EBF1F6;

  /* タイポグラフィ */
  --serif:   "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans:    "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --num:     "Jost", "Helvetica Neue", sans-serif;

  /* レイアウト */
  --column: 480px;
  --gutter: 20px;
  --radius: 4px;
  --radius-lg: 16px;
  --shadow:    0 2px 20px rgba(27, 58, 92, 0.07);
  --shadow-lg: 0 8px 36px rgba(27, 58, 92, 0.10);
}

/* ------------------------------------------------------------
   2. リセット / ベース
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html.lock {
  overflow: hidden;
}

/* PC時の両サイドを埋めるブランド背景（ぼかし装飾） */
body {
  font-family: var(--sans);
  font-feature-settings: "palt";
  font-size: 16px;
  line-height: 1.95;
  letter-spacing: 0.05em;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(52vw 52vw at 10% 16%, rgba(126, 166, 200, 0.34), transparent 62%),
    radial-gradient(44vw 44vw at 92% 76%, rgba(196, 141, 149, 0.20), transparent 64%),
    radial-gradient(38vw 38vw at 78% 8%, rgba(198, 217, 232, 0.45), transparent 60%),
    linear-gradient(165deg, #EDF3F8 0%, #F6F1F1 52%, #E7EFF6 100%);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s ease, color 0.25s ease;
}

a:hover {
  opacity: 0.72;
}

table {
  border-collapse: collapse;
  width: 100%;
}

h1, h2, h3, h4 {
  font-weight: 400;
  line-height: 1.5;
}

/* ------------------------------------------------------------
   3. レイアウト骨格 — 単一カラムを中央固定
   ------------------------------------------------------------ */
.lp-container {
  width: min(var(--column), 100%);
  margin-inline: auto;
  position: relative;
  min-height: 100dvh;
  background: var(--ivory);
  box-shadow: 0 0 90px rgba(27, 58, 92, 0.14);
  overflow-x: clip;
}

/* 768px以下はカラムを画面幅いっぱいに。サイドの余白は出さない */
@media (max-width: 768px) {
  .lp-container {
    width: 100%;
    box-shadow: none;
  }
}

.container {
  width: calc(100% - (var(--gutter) * 2));
  margin-inline: auto;
}

.sec {
  padding-block: clamp(56px, 14vw, 76px);
  position: relative;
}

/* セクションの交互背景 */
.reason-sec,
.price-sec,
.voice-sec,
.message-sec {
  background: var(--cream-mist);
}

.ba-sec,
.flow-sec {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream-pale) 100%);
}

/* ------------------------------------------------------------
   4. 共通パーツ
   ------------------------------------------------------------ */

/* --- セクション見出し（英字ラベル + 和文） --- */
.section-title {
  text-align: center;
}

.section-title > p {
  font-family: var(--display);
  font-size: 0.875rem;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  text-transform: uppercase;
  color: var(--terra-text);
  margin-bottom: 12px;
}

.section-title > h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.4375rem, 5.8vw, 1.6875rem);
  letter-spacing: 0.08em;
  color: var(--terra);
  line-height: 1.45;
}

.section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  margin: 20px auto 0;
  background: var(--orange-mid);
}

/* --- 汎用テキスト --- */
.lead {
  font-family: var(--serif);
  font-size: clamp(1rem, 4vw, 1.125rem);
  letter-spacing: 0.12em;
  color: var(--terra);
}

.text {
  font-size: clamp(0.9375rem, 3.6vw, 1rem);
  line-height: 2.05;
}

.note {
  font-size: clamp(0.8125rem, 3.2vw, 0.875rem);
  line-height: 1.9;
  color: var(--text-mute);
}

.highlight {
  background: linear-gradient(transparent 62%, var(--green-pale) 62%);
  padding-bottom: 0.05em;
  font-weight: 500;
}

.strong,
.bold {
  font-weight: 700;
  color: var(--terra);
}

.medium {
  font-weight: 500;
}

/* --- ユーティリティ --- */
.t-center { text-align: center; }
.t-right  { text-align: right; }
.al-center { align-items: center; }
.jc-center { justify-content: center; }
.ml-auto  { margin-left: auto; }

.mt8  { margin-top: 8px; }
.mt16 { margin-top: 16px; }
.mt24 { margin-top: 24px; }
.mt32 { margin-top: 32px; }
.mt40 { margin-top: 40px; }
.mt48 { margin-top: 44px; }
.mt64 { margin-top: 56px; }
.mt80 { margin-top: 64px; }
.mt96 { margin-top: 72px; }

.ff-barlow {
  font-family: var(--num);
  letter-spacing: 0.02em;
}

/* --- 区切り線 --- */
.bar-container {
  width: calc(100% - (var(--gutter) * 2));
  margin-inline: auto;
}

.hr-bar {
  height: 1px;
  background: var(--line);
  border: 0;
}

/* --- 装飾アイコン画像をブルーへ寄せる --- */
.method-sub-heading img,
.level-text img,
.program-content-detail .step img {
  filter: brightness(0) saturate(100%) invert(43%) sepia(14%) saturate(1420%)
    hue-rotate(168deg) brightness(93%) contrast(88%);
}

/* ------------------------------------------------------------
   5. ヘッダー / ナビゲーション
   ------------------------------------------------------------ */
/* サイドの固定要素はCTAのみとするため、PC用ロゴは出さない */
.site-logo-pc {
  display: none;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px;
  display: flex;
  align-items: center;
  padding-inline: var(--gutter);
  z-index: 400;
}

.site-logo {
  width: 158px;
}

/* --- ハンバーガー --- */
/* カラムの右端に合わせて画面に固定する */
.toggle {
  position: fixed;
  top: 16px;
  right: max(var(--gutter), calc(50vw - (var(--column) / 2) + var(--gutter)));
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 520;
  display: grid;
  place-items: center;
}

/* 768px以下はカラムが全幅なので、画面右端からの余白に戻す */
@media (max-width: 768px) {
  .toggle {
    right: var(--gutter);
  }
}

.toggle span,
.toggle span::before,
.toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: var(--terra);
  transition: transform 0.32s ease, background 0.2s ease;
}

.toggle span {
  position: relative;
}

.toggle span::before,
.toggle span::after {
  position: absolute;
  left: 0;
  top: 0;
}

.toggle span::before { transform: translateY(-6px); }
.toggle span::after  { transform: translateY(6px); }

.toggle.is-active span { background: transparent; }
.toggle.is-active span::before { transform: rotate(45deg); }
.toggle.is-active span::after  { transform: rotate(-45deg); }

/* --- ドロワー（メニューはここにのみ格納。サイドには出さない） --- */
.gnav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86%, 340px);
  height: 100dvh;
  background: var(--terra);
  color: var(--white);
  padding: 84px 26px 40px;
  overflow-y: auto;
  z-index: 500;
  transform: translateX(102%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.gnav.is-open {
  transform: none;
}

.gnav ul {
  display: flex;
  flex-direction: column;
}

.gnav li {
  opacity: 0;
  transform: translateX(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.gnav li.fadein {
  opacity: 1;
  transform: none;
}

.gnav li:nth-child(1)  { transition-delay: 0.05s; }
.gnav li:nth-child(2)  { transition-delay: 0.09s; }
.gnav li:nth-child(3)  { transition-delay: 0.13s; }
.gnav li:nth-child(4)  { transition-delay: 0.17s; }
.gnav li:nth-child(5)  { transition-delay: 0.21s; }
.gnav li:nth-child(6)  { transition-delay: 0.25s; }
.gnav li:nth-child(7)  { transition-delay: 0.29s; }
.gnav li:nth-child(8)  { transition-delay: 0.33s; }
.gnav li:nth-child(9)  { transition-delay: 0.37s; }
.gnav li:nth-child(10) { transition-delay: 0.41s; }
.gnav li:nth-child(11) { transition-delay: 0.45s; }
.gnav li:nth-child(12) { transition-delay: 0.49s; }

.gnav li a {
  display: block;
  padding: 14px 4px;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  position: relative;
}

.gnav li a.current {
  color: var(--orange-soft);
}

.gnav li a.current::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--orange-soft);
}

/* ------------------------------------------------------------
   6. CTA
   ------------------------------------------------------------ */
/* ページ全体が淡いので、CTAだけは彩度と明度差をはっきり付ける。
   --green は装飾用の色なので、ボタンには別の濃い色を使う */
.cta {
  display: block;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, #D28793 0%, #B85F72 52%, #9E4A60 100%);
  color: var(--white);
  border-radius: 999px;
  padding: 18px 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 8px 26px rgba(158, 74, 96, 0.38);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: cta-pulse 3.2s ease-in-out infinite;
}

/* 影をゆっくり呼吸させて視線を引く */
@keyframes cta-pulse {
  0%,
  100% {
    box-shadow: 0 8px 26px rgba(158, 74, 96, 0.36);
  }
  50% {
    box-shadow: 0 12px 36px rgba(158, 74, 96, 0.56);
  }
}

/* 光沢が斜めに走る。数秒に一度だけ光らせて主張しすぎないようにする */
.cta::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -70%;
  width: 36%;
  height: 220%;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(16deg);
  pointer-events: none;
  animation: cta-shine 4.2s ease-in-out infinite;
}

@keyframes cta-shine {
  0%,
  68% {
    left: -70%;
  }
  100% {
    left: 135%;
  }
}

.cta:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(174, 117, 127, 0.4);
}

.cta .sub {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.cta .main {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.1875rem, 5.2vw, 1.375rem);
  letter-spacing: 0.06em;
  margin-top: 5px;
  line-height: 1.45;
}

/* 押せることが分かるよう矢印を添える */
.cta .main::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 12px;
  border-top: 2px solid rgba(255, 255, 255, 0.9);
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  transform: translateY(-2px) rotate(45deg);
}

.cta .main span {
  padding-bottom: 3px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
}

.cta-wrap {
  width: calc(100% - (var(--gutter) * 2));
  margin: 16px auto 0;
  padding-bottom: 24px;
}

/* 本文中に置くCTA。.container の内側なので幅は親に任せる。
   .cta-sp は付けない（付けると下部固定になって重なる） */
.cta-block {
  width: 100%;
}

/* --- PC: サイドに固定するCTA（サイド唯一の固定要素） ---
   カラム(480px)の右外に 264px + 左右余白 が取れる幅から表示する。
   1120px = 480 + (264 + 24*2) * 2 */
.cta-pc {
  display: none;
}

@media (min-width: 1120px) {
  .cta-pc {
    display: block;
    position: fixed;
    /* カラム左端と画面左端の間に、左下寄せで置く */
    bottom: 40px;
    left: calc((50vw - (var(--column) / 2) - 288px) / 2);
    width: 288px;
    z-index: 450;
    padding: 18px 20px 20px;
    border-radius: var(--radius-lg);
  }

  /* 幅が狭いので、中途半端な位置で折り返さないよう1行に収める */
  .cta-pc .sub {
    font-size: 0.75rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .cta-pc .main {
    font-size: 1.0625rem;
    letter-spacing: 0.04em;
    margin-top: 7px;
    white-space: nowrap;
  }
}

/* --- サイドCTAが出せない幅: 画面下部の追従CTAバー --- */
@media (max-width: 1119px) {
  .cta-sp {
    position: fixed;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(100% - 32px), calc(var(--column) - 32px));
    z-index: 460;
  }
}

/* カラムが全幅の帯では、追従バーも画面幅に合わせる */
@media (max-width: 768px) {
  .cta-sp {
    width: calc(100% - 32px);
  }

  .cta-sp:hover {
    transform: translateX(-50%) translateY(-2px);
  }

  /* CTAが流れから抜けて中身が空になるので、余白は持たせない */
  .cta-wrap {
    margin-top: 0;
    padding-bottom: 0;
  }

  /* 追従バーがフッターに被らないよう余白を足す */
  .footer {
    padding-bottom: 104px;
  }
}

/* バナー（.container の中に置くので、余白は親に任せる） */
.bnr-wrap {
  width: 100%;
}

.bnr-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
}

/* ------------------------------------------------------------
   7. FV（ファーストビュー）
   ------------------------------------------------------------ */
.hero-sec {
  position: relative;
  padding: 108px var(--gutter) 32px;
  /* 写真は右上に濃い棚、下に人物。
     コピーが乗る上半分はしっかり起こし、人物のいる下半分は素のまま見せる */
  background:
    linear-gradient(180deg,
      rgba(251, 249, 247, 0.94) 0%,
      rgba(251, 249, 247, 0.88) 22%,
      rgba(251, 249, 247, 0.60) 40%,
      rgba(251, 249, 247, 0.10) 54%,
      rgba(251, 249, 247, 0) 74%,
      rgba(251, 249, 247, 0.94) 100%),
    url(../images/hero.jpg) no-repeat center 52% / cover;
  text-align: left;
  overflow: hidden;
  min-height: clamp(580px, 132vw, 660px);
  display: flex;
  flex-direction: column;
}

/* 3項目は下端に寄せる */
.hero-sec .fv-feature-wrap {
  margin-top: auto;
}

h1.site-title {
  font-size: clamp(0.9375rem, 3.8vw, 1.0625rem);
  letter-spacing: 0.1em;
  color: var(--terra);
  font-weight: 700;
}

/* 資格バッジ */
/* コピーは左寄せ。右側は写真の人物を見せる */
.hero-copy-wrap {
  margin-top: 20px;
  max-width: 88%;
  /* 写真の上でも輪郭が立つよう、地色のハローを重ねる */
  text-shadow:
    0 0 10px rgba(251, 249, 247, 0.95),
    0 0 22px rgba(251, 249, 247, 0.85),
    0 1px 2px rgba(251, 249, 247, 1);
}

.hero-copy-wrap .subcopy {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(0.9375rem, 4vw, 1.0625rem);
  letter-spacing: 0.1em;
  line-height: 2;
  color: var(--terra-text);
}

.hero-copy-wrap .maincopy {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 7.6vw, 2.125rem);
  letter-spacing: 0.05em;
  line-height: 1.34;
  color: var(--terra);
  margin-top: 16px;
  font-weight: 500;
}

.hero-copy-wrap .maincopy .small {
  font-size: 0.58em;
  letter-spacing: 0.04em;
}

/* 「-5歳」がこのページで一番強い訴求。
   サイズ・色・マーカーの3つで他と差をつける */
.hero-copy-wrap .maincopy .main {
  font-size: 1.4em;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #12283F;
  padding-inline: 0.05em;
  /* 蛍光ペン風の下線。背景グラデなので文字の下に必ず回り込む */
  background: linear-gradient(
    transparent 66%,
    rgba(200, 116, 140, 0.34) 66%,
    rgba(200, 116, 140, 0.34) 90%,
    transparent 90%
  );
}

/* 人物の顔にかからないよう、左寄せかつ控えめな幅にする */
.hero-feature {
  width: min(74%, 290px);
  margin: 24px 0 0;
}

/* FV下の3項目 */
.fv-feature-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: calc(100% - 8px);
  margin-inline: auto;
}

.fv-feature-wrap > li {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--orange-soft);
  border-radius: var(--radius);
  padding: 12px 5px 13px;
  font-size: clamp(0.75rem, 3.2vw, 0.875rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--terra);
  text-align: center;
}

/* ------------------------------------------------------------
   8. メソッド（骨の仕組みからととのえる）
   ------------------------------------------------------------ */
.method-sec {
  padding-block: clamp(48px, 12vw, 68px);
  background: var(--white);
}

/* 大きい文字は語幹、小さい文字は助詞・活用語尾。
   サイズ差をつけすぎると読みにくいので 0.7em に留める */
.section-heading {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.75rem, 7.4vw, 2.125rem);
  letter-spacing: 0.09em;
  line-height: 1.55;
  color: var(--terra);
  text-align: center;
}

.section-heading span {
  font-size: 0.7em;
  color: var(--terra-text);
}

/* 「エバー独自メソッド」を左右の罫線で挟んだラベルに */
.method-sec .lead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(0.9375rem, 3.8vw, 1.0625rem);
  letter-spacing: 0.14em;
  color: var(--terra-text);
}

.method-sec .lead::before,
.method-sec .lead::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--orange-mid);
  flex-shrink: 0;
}

/* 「評価してから動かす」という順序が伝わるよう、
   2枚のカードを縦線でつないだ流れとして見せる。
   HTMLの並び（見出し→時間→写真→本文）は order で組み替える */
.method-wrap {
  counter-reset: method;
  display: grid;
  gap: 46px;
}

/* 写真を全面に敷き、下側に半透明の白パネルを重ねる。
   パネルは専用のラッパーを持たないので、
   時間・見出し・本文に同じ地色を与えて1枚に見せている */
.method-wrap > div {
  counter-increment: method;
  position: relative;
  min-height: clamp(400px, 96vw, 460px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

/* 写真はカード全面へ */
.method-photo {
  order: -1;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.method-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 上半身が入るよう、切り抜き位置を上寄りにする */
  object-position: center 22%;
}

/* --- 重ねる白パネル（3要素で1枚を構成） --- */
.time-text,
.method-heading,
.method-wrap .note {
  position: relative;
  z-index: 1;
  margin-inline: 18px;
  padding-inline: 20px;
  background: rgba(255, 255, 255, 0.93);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.time-text {
  order: 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-top: 20px;
  border-radius: var(--radius) var(--radius) 0 0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--terra-text);
}

/* 通し番号。ブロックを増減しても自動で振り直される */
.time-text::before {
  content: counter(method, decimal-leading-zero);
  font-family: var(--num);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--orange);
}

.method-heading {
  order: 1;
  padding-top: 8px;
  padding-bottom: 12px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.3125rem, 5.2vw, 1.5rem);
  letter-spacing: 0.1em;
  color: var(--terra);
}

.method-wrap .note {
  order: 2;
  padding-bottom: 22px;
  margin-bottom: 18px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: clamp(0.875rem, 3.4vw, 0.9375rem);
  line-height: 2;
  color: var(--text);
}

/* 見出しと本文の間の細い区切り */
.method-heading::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  margin-top: 12px;
  background: var(--orange-mid);
}

/* 2ステップの下に置く、メソッドの狙いを説明する一文 */
.method-lead {
  font-size: clamp(0.9375rem, 3.5vw, 1rem);
  line-height: 2.05;
  text-align: center;
}

/* ------------------------------------------------------------
   9. 美姿勢を叶えられる理由
   ------------------------------------------------------------ */
.reason-heading {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.25rem, 5vw, 1.5rem);
  letter-spacing: 0.1em;
  line-height: 1.85;
  color: var(--terra);
  text-align: center;
}

.reason-heading .large {
  display: inline-block;
  font-weight: 700;
  font-size: 1.85em;
  color: var(--orange);
  line-height: 1.25;
}

.reason-heading .strong {
  color: var(--green-deep);
  font-weight: 700;
}

/* 「エバーで向き合うお悩み」— 装飾記号は使わず、
   濃紺の帯で見出しであることを示す */
.method-sub-heading {
  background: var(--terra);
  color: var(--white);
  text-align: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.0625rem, 4.4vw, 1.1875rem);
  letter-spacing: 0.12em;
  padding: 12px 16px 13px;
  border-radius: var(--radius) var(--radius) 0 0;
}

/* お悩み一覧（イラストを廃してテキストに）
   見出しの帯と地続きの1枚のカードに見せる */
/* お悩み一覧：1行ずつチェックマークを添えて並べる */
.onayami-list {
  display: grid;
  gap: 10px;
}

.onayami-list > li {
  background: var(--white);
  border: 1px solid var(--orange-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 15px 16px 16px 46px;
  font-size: clamp(0.9375rem, 3.6vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.6;
  color: var(--terra);
  position: relative;
}

/* チェックの下地となる丸 */
.onayami-list > li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 1px solid var(--green);
}

/* チェックマーク */
.onayami-list > li::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 50%;
  width: 5px;
  height: 9px;
  margin-top: -6px;
  border-right: 2px solid var(--green-deep);
  border-bottom: 2px solid var(--green-deep);
  transform: rotate(42deg);
}

/* ------------------------------------------------------------
   10. 特徴（FEATURES）— 常に縦積み
   ------------------------------------------------------------ */
.feature-list {
  display: grid;
  gap: 32px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 26px 22px 28px;
}

.feature-card-heading > p {
  font-family: var(--display);
  font-size: 0.8125rem;
  letter-spacing: 0.26em;
  color: var(--orange);
  text-transform: uppercase;
}

.feature-card-heading .first-letter {
  font-size: 1.3em;
}

.feature-card-heading .num {
  font-family: var(--num);
  font-size: 1.15em;
  letter-spacing: 0.08em;
}

.feature-card-heading h3 {
  font-family: var(--serif);
  font-size: clamp(1.125rem, 4.6vw, 1.3125rem);
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: var(--terra);
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.feature-card figure img {
  border-radius: var(--radius);
  width: 100%;
}

.feature-card-text {
  font-size: clamp(0.9375rem, 3.5vw, 0.96875rem);
  line-height: 2;
}

/* ------------------------------------------------------------
   12. 他サービスとの違い（横スクロール）
   ------------------------------------------------------------ */
.comparison-sec {
  background: var(--white);
}

.comparison-heading {
  text-align: center;
}

.comparison-heading > p {
  font-size: clamp(0.8125rem, 3.4vw, 0.9375rem);
  letter-spacing: 0.1em;
  color: var(--orange);
}

.comparison-heading > h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 5.6vw, 1.75rem);
  letter-spacing: 0.1em;
  color: var(--terra);
  margin-top: 8px;
}

.scroll-hint {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding-bottom: 8px;
}

.scroll-hint::-webkit-scrollbar { height: 5px; }
.scroll-hint::-webkit-scrollbar-thumb {
  background: var(--orange-soft);
  border-radius: 999px;
}

.scroll-hint::after {
  content: "→ 横にスワイプできます";
  position: sticky;
  left: 0;
  display: block;
  font-size: 0.6875rem;
  color: var(--text-mute);
  text-align: center;
  padding-top: 10px;
  transition: opacity 0.3s ease;
}

.scroll-hint.hide::after { opacity: 0; }

.comparison-table {
  display: grid;
  grid-template-columns: 88px repeat(3, minmax(168px, 1fr));
  /* 見出し行 + 4項目 */
  grid-template-rows: auto repeat(4, auto);
  min-width: 640px;
  /* 行はカードとして地続きに見せたいので、行間は空けない */
  column-gap: 6px;
  row-gap: 0;
}

/* 4つの列は独立した要素なので、そのままだと各列が別々に高さを決めてしまい
   行が揃わない。subgrid で親の行を共有させ、行高を全列で一致させる。
   ※ 後段の .own-list { display: flex } に負けないよう
      子孫セレクタで詳細度を上げている */
@supports (grid-template-rows: subgrid) {
  .comparison-table > .item-list,
  .comparison-table > .own-list,
  .comparison-table > .other-list {
    display: grid;
    grid-row: 1 / -1;
    grid-template-rows: subgrid;
    row-gap: 0;
  }
}

/* 横スクロールしても項目名が消えないよう左端に固定する */
.item-list {
  position: sticky;
  left: 0;
  z-index: 3;
  background: var(--white);
  box-shadow: 6px 0 10px -6px rgba(27, 58, 92, 0.22);
}

.comparison-table .title {
  font-family: var(--serif);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 12px 8px;
  border-radius: var(--radius) var(--radius) 0 0;
  line-height: 1.5;
}

.item-list > div:first-child { min-height: 48px; }

.item-list .item {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px 6px;
  border-bottom: 1px solid var(--line-soft);
}

.item-list .item .note {
  font-size: 0.8125rem;
  color: var(--terra);
  font-weight: 700;
  line-height: 1.5;
}

.own-list,
.other-list {
  display: flex;
  flex-direction: column;
}

.own-list .title {
  font-family: var(--display);
  font-size: 1.0625rem;
  letter-spacing: 0.16em;
  background: var(--terra);
  color: var(--white);
}

.other-list .title {
  background: var(--cream-pale);
  color: var(--terra);
  font-size: 0.8125rem;
  font-weight: 500;
}

.own-list .item,
.other-list .item {
  flex: 1;
  padding: 16px 12px 18px;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
}

/* 行の対応が追えるよう、1行おきに地色を敷く。
   どの列も先頭に見出し要素が1つあるので nth-child の番号は揃う */
.item-list .item:nth-child(odd),
.own-list .item:nth-child(odd),
.other-list .item:nth-child(odd) {
  background: rgba(27, 58, 92, 0.035);
}

.own-list .item:last-child,
.other-list .item:last-child,
.item-list .item:last-child {
  border-bottom: 0;
}

.own-list {
  background: var(--cream-mist);
  border: 1px solid var(--orange-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.other-list {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.own-list .item img,
.other-list .item img {
  width: 26px;
  margin-inline: auto;
}

.own-list .item .heading,
.other-list .item .heading {
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 8px;
  line-height: 1.5;
}

.own-list .item .heading { color: var(--terra); }
.other-list .item .heading  { color: var(--text-mute); }

.own-list .item .note,
.other-list .item .note {
  font-size: 0.75rem;
  margin-top: 6px;
  line-height: 1.7;
}

/* ------------------------------------------------------------
   13. 料金プラン
   ------------------------------------------------------------ */
.price-table {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.price-table td {
  border-bottom: 1px solid var(--line);
  padding: 16px 4px;
  text-align: center;
  vertical-align: middle;
}

/* 金額の2列を仕切って、どちらの数字か迷わないようにする */
.price-table td + td + td {
  border-left: 1px solid var(--line);
}

.price-table tr:last-child td { border-bottom: 0; }

.price-table td:first-child {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(0.8125rem, 3.4vw, 0.9375rem);
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: var(--white);
  background: var(--orange);
  width: 26%;
}

.price-table td.m3 { background: #5C89B4; }
.price-table td.m4 { background: #4A7AA8; }
.price-table td.m6 { background: #1B3A5C; }
.price-table td.m8 { background: var(--terra); }
.price-table td.entry { background: var(--terra-deep); }

.price-table .yen {
  font-family: var(--num);
  font-size: 0.8125rem;
  color: var(--terra);
}

.price-table .price-text {
  font-family: var(--num);
  font-size: clamp(1.125rem, 5vw, 1.4375rem);
  font-weight: 500;
  letter-spacing: 0;
  color: var(--terra);
}

.price-table .price-sub {
  font-size: 0.75rem;
  color: var(--text);
}

/* 「(税抜)」は横に続けると窮屈なので改行させる */
.price-table .price-sub-small {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-mute);
  margin-top: 1px;
}

.price-table .tax-text {
  font-size: 0.75rem;
  color: var(--text-mute);
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px dashed var(--line);
  display: inline-block;
}

/* ------------------------------------------------------------
   13-a. 料金カード
   ------------------------------------------------------------ */
.price-card {
  background: var(--white);
  border: 1px solid var(--orange-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 0 22px 24px;
  text-align: center;
  position: relative;
}

/* カード上端に差し込むラベル */
.price-card-tab {
  display: inline-block;
  background: var(--terra);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  padding: 7px 22px 8px;
  border-radius: 0 0 var(--radius) var(--radius);
}

/* --- 初回料金 --- */
.price-first {
  margin-top: 22px;
}

.price-first-ttl {
  font-size: clamp(0.9375rem, 3.6vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--terra);
}

.price-first-ttl span {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 10px 3px;
  border-radius: 999px;
  background: var(--cream-mist);
  border: 1px solid var(--orange-soft);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--terra-text);
  vertical-align: 0.1em;
}

/* 金額が主役。数字だけを大きく */
.price-first-val {
  font-family: var(--num);
  font-weight: 500;
  font-size: clamp(3.25rem, 14vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--green-deep);
  margin-top: 6px;
}

.price-first-val .cur {
  font-size: 0.46em;
  margin-right: 2px;
  vertical-align: 0.22em;
}

.price-first-val .tax {
  font-family: var(--sans);
  font-size: 0.2em;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  margin-left: 8px;
  vertical-align: 0.5em;
}

/* 通常料金は控えめに、斜めの取り消し線で */
.price-first-was {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--text-mute);
  position: relative;
  margin-top: 4px;
}

.price-first-was::after {
  content: "";
  position: absolute;
  left: 3.2em;
  width: 5.2em;
  top: 52%;
  height: 1px;
  background: var(--text-mute);
  transform: rotate(-5deg);
}

.price-note {
  font-size: 0.8125rem;
  line-height: 1.9;
  color: var(--text-mute);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

/* --- 2回目以降 --- */
.price-regular {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 16px 15px;
  background: var(--cream-mist);
  border-radius: var(--radius);
  text-align: left;
}

.price-regular dt {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--terra);
  line-height: 1.5;
}

.price-regular dt span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}

.price-regular dd {
  font-family: var(--num);
  font-weight: 500;
  font-size: clamp(1.375rem, 5.6vw, 1.625rem);
  line-height: 1;
  color: var(--terra);
  white-space: nowrap;
}

.price-regular dd i {
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.55em;
  font-weight: 700;
  margin-left: 2px;
}

.price-tax {
  font-size: 0.75rem;
  line-height: 1.8;
  color: var(--text-mute);
  margin-top: 14px;
  text-align: left;
}

/* --- 予約ボタン --- */
.price-btn {
  display: block;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  background: linear-gradient(135deg, #D28793 0%, #B85F72 52%, #9E4A60 100%);
  color: var(--white);
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.0625rem, 4.6vw, 1.1875rem);
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 15px 20px 17px;
  box-shadow: 0 6px 20px rgba(158, 74, 96, 0.4);
  transition: transform 0.25s ease;
}

.price-btn::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -70%;
  width: 36%;
  height: 220%;
  background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.55) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(16deg);
  pointer-events: none;
  animation: cta-shine 4.2s ease-in-out infinite;
}

.price-btn::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 12px;
  border-top: 2px solid rgba(255, 255, 255, 0.9);
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  transform: translateY(-2px) rotate(45deg);
}

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

/* ------------------------------------------------------------
   14. 初回体験の流れ
   ------------------------------------------------------------ */
.flow-list {
  display: grid;
  gap: 18px;
}

.flow-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.step-bar {
  background: linear-gradient(180deg, var(--orange) 0%, var(--terra) 100%);
  color: var(--white);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 16px 4px;
  gap: 2px;
}

.step-bar span {
  font-family: var(--display);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

.step-bar p {
  font-family: var(--num);
  font-size: 1.3125rem;
  line-height: 1;
  font-weight: 300;
}

.flow-card .item {
  padding: 18px 18px 20px;
  position: relative;
}

.flow-card .timer {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--num);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--terra-text);
  border: 1px solid var(--orange-soft);
  border-radius: 999px;
  padding: 2px 10px 3px;
  background: var(--cream-mist);
}

.flow-card .title {
  font-family: var(--serif);
  font-size: clamp(1rem, 4.2vw, 1.125rem);
  letter-spacing: 0.08em;
  color: var(--terra);
  padding-right: 58px;
}

.media-text {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
}

.media-text figure img {
  border-radius: var(--radius);
  width: 100%;
}

.flow-text {
  font-size: clamp(0.875rem, 3.4vw, 0.9375rem);
  line-height: 1.9;
}

/* 体験時に必要なもの */
.enphasis-box {
  background: var(--white);
  border: 1px solid var(--orange-soft);
  border-radius: var(--radius-lg);
  padding: 26px 22px 28px;
}

.enphasis-box .title {
  font-family: var(--serif);
  font-size: clamp(1.0625rem, 4.4vw, 1.1875rem);
  letter-spacing: 0.1em;
  color: var(--terra);
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}

.list-star {
  display: grid;
  gap: 12px;
}

.list-star > li {
  position: relative;
  padding-left: 24px;
  font-size: clamp(0.875rem, 3.4vw, 0.9375rem);
  line-height: 1.7;
}

.list-star > li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.62em;
  width: 7px;
  height: 7px;
  background: var(--green);
  transform: rotate(45deg);
}

.list-star .note {
  margin-top: 2px;
}

/* ------------------------------------------------------------
   17. アクセス — 常に縦積み
   ------------------------------------------------------------ */
.access-sec {
  background: var(--white);
}

.shop-name {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 5.2vw, 1.5rem);
  letter-spacing: 0.1em;
  color: var(--terra);
  text-align: center;
}

.shop-info-list {
  display: grid;
  gap: 12px;
}

.shop-info-list .icon {
  position: relative;
  padding-left: 28px;
  font-size: clamp(0.9375rem, 3.5vw, 1rem);
  line-height: 1.8;
  background-repeat: no-repeat;
  background-position: 0 0.28em;
  background-size: 17px 17px;
}

.shop-info-list .map {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232F5A85' stroke-width='1.5'%3E%3Cpath d='M12 21s7-6.3 7-11a7 7 0 1 0-14 0c0 4.7 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.6'/%3E%3C/svg%3E");
}

.shop-info-list .walk {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232F5A85' stroke-width='1.5' stroke-linecap='round'%3E%3Ccircle cx='13' cy='4' r='2'/%3E%3Cpath d='M13 8l-3 4 2 3 1 6M10 12L7 15M15 11l3 2'/%3E%3C/svg%3E");
}

.shop-info-list .hour {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232F5A85' stroke-width='1.5' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3.2 2'/%3E%3C/svg%3E");
}

.map-wrap {
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.access-step-heading {
  font-family: var(--serif);
  font-size: clamp(1.0625rem, 4.4vw, 1.1875rem);
  letter-spacing: 0.1em;
  color: var(--terra);
  text-align: center;
  position: relative;
  padding-bottom: 16px;
}

.access-step-list {
  display: grid;
  gap: 20px;
  counter-reset: step;
}

.access-step-list > li {
  counter-increment: step;
}

.access-step-list figure {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}

.access-step-list figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.access-step-list figure::after {
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--terra);
  color: var(--white);
  font-family: var(--num);
  font-size: 0.8125rem;
}

.access-step-list .note {
  margin-top: 10px;
}

.shop-info-box {
  background: var(--cream-mist);
  border-radius: var(--radius-lg);
  padding: 30px 24px 34px;
  text-align: center;
}

.shop-info-heading {
  font-family: var(--serif);
  font-size: clamp(1.0625rem, 4.4vw, 1.1875rem);
  letter-spacing: 0.1em;
  color: var(--terra);
  line-height: 1.7;
}

.btn-wrap {
  display: flex;
}

.btn-wrap img {
  width: 44px;
}

/* ------------------------------------------------------------
   18. よくある質問
   ------------------------------------------------------------ */
.faq-wrap {
  display: grid;
  gap: 12px;
}

.faq-list {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.question {
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 17px 46px 18px 18px;
  font-size: clamp(0.9375rem, 3.6vw, 1rem);
  font-weight: 700;
  line-height: 1.7;
  color: var(--terra);
  position: relative;
  transition: background 0.25s ease;
}

.question:hover { background: var(--cream-mist); }

.question::before {
  content: "Q";
  font-family: var(--display);
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--orange);
  flex-shrink: 0;
}

.question::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 12px;
  height: 12px;
  background:
    linear-gradient(var(--orange), var(--orange)) center / 12px 1px no-repeat,
    linear-gradient(var(--orange), var(--orange)) center / 1px 12px no-repeat;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.question.active::after {
  transform: translateY(-50%) rotate(90deg);
  background: linear-gradient(var(--orange), var(--orange)) center / 12px 1px no-repeat;
}

.answer .content {
  display: flex;
  gap: 12px;
  margin-inline: 18px;
  padding: 16px 0 20px;
  border-top: 1px solid var(--line-soft);
}

.answer .content::before {
  content: "A";
  font-family: var(--display);
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--green-deep);
  flex-shrink: 0;
}

.answer .text {
  font-size: 0.9375rem;
  line-height: 1.95;
}

/* ------------------------------------------------------------
   19. 講師からのメッセージ — 常に縦積み
   ------------------------------------------------------------ */
.photo-founder {
  position: relative;
}

.photo-founder img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.photo-founder .profile {
  position: absolute;
  right: 0;
  bottom: -14px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 11px 16px 13px;
  text-align: right;
}

.photo-founder .founder {
  font-family: var(--display);
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  color: var(--terra-text);
  text-transform: uppercase;
}

.photo-founder .name {
  font-size: 0.8125rem;
  color: var(--text-mute);
  margin-top: 2px;
}

.photo-founder .name span {
  display: block;
  font-family: var(--serif);
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
  color: var(--terra);
  margin-top: 2px;
}

.message-heading {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 5.2vw, 1.5rem);
  letter-spacing: 0.1em;
  line-height: 1.75;
  color: var(--terra);
  text-align: center;
}

.message-text {
  font-size: clamp(0.875rem, 3.4vw, 0.9375rem);
  line-height: 2.15;
}

.career-list-wrap {
  display: grid;
  gap: 10px;
}

.career-list {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
  font-size: 0.9375rem;
}

.career-list dt {
  letter-spacing: 0.06em;
  color: var(--terra-text);
  font-weight: 500;
}

.career-list dd {
  line-height: 1.7;
}

/* ------------------------------------------------------------
   20. フッター — 常に縦積み
   ------------------------------------------------------------ */
.footer {
  background: var(--terra);
  color: var(--white);
  padding: 60px var(--gutter) 32px;
}

.footer .inner {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

/* ロゴは多色なので反転させず、白い面に載せて濃色地から浮かせる */
.f-logo {
  width: 208px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px 15px;
}

.f-info .note {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8125rem;
  line-height: 1.9;
}

.f-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

.f-nav a {
  color: rgba(255, 255, 255, 0.92);
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright {
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.66);
}

/* ------------------------------------------------------------
   21. モーション
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- アコーディオン（FAQ）--- */
.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s ease;
}

.accordion-content.open {
  grid-template-rows: 1fr;
}

.accordion-content > div {
  overflow: hidden;
}

/* 講師メッセージの本文幅 */
.message-wrap {
  width: 100%;
}

/* ------------------------------------------------------------
   22. キカセテ固有の調整
   ------------------------------------------------------------ */

/* 本文中CTAを独立したブロックとして置くとき */
.cta-block-wrap {
  padding-block: clamp(40px, 10vw, 56px);
}

/* 悩みの一覧。件数が奇数でも収まるよう最後を全幅に */
.onayami-list > li:last-child {
  grid-column: 1 / -1;
}

/* ご利用の流れ：写真を持たないので本文だけを組む */
.flow-card .item {
  padding: 20px 20px 22px;
}

.flow-card .title {
  padding-right: 0;
}

.flow-card .flow-text {
  margin-top: 10px;
}

/* LINEボタン */
.line-btn {
  display: inline-block;
  background: linear-gradient(135deg, #D28793 0%, #B85F72 52%, #9E4A60 100%);
  color: var(--white);
  font-weight: 700;
  font-size: clamp(0.875rem, 3.4vw, 0.9375rem);
  letter-spacing: 0.06em;
  border-radius: 999px;
  padding: 13px 28px 15px;
  box-shadow: 0 6px 18px rgba(158, 74, 96, 0.32);
  transition: transform 0.25s ease;
}

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

/* 料金は割引ではないので、取り消し線まわりの間隔だけ整える */
.campaign-price .val {
  gap: 0;
}

/* ------------------------------------------------------------
   23. 規約・会社情報などの下層ページ
   ------------------------------------------------------------ */
.page-header {
  padding: 84px var(--gutter) 0;
  text-align: center;
}

.page-header .site-logo-link {
  display: inline-block;
  width: 168px;
}

.page-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.375rem, 5.6vw, 1.625rem);
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: var(--terra);
  margin-top: 32px;
}

.page-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  margin: 20px auto 0;
  background: var(--orange-mid);
}

.page-body {
  padding: 40px var(--gutter) 72px;
}

.page-lead {
  font-size: clamp(0.875rem, 3.4vw, 0.9375rem);
  line-height: 2;
  color: var(--text);
}

/* --- 条文形式（プライバシーポリシー・利用規約） --- */
.article {
  margin-top: 40px;
}

.article h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.0625rem, 4.2vw, 1.1875rem);
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--terra);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.article p,
.article ul,
.article ol {
  font-size: clamp(0.875rem, 3.4vw, 0.9375rem);
  line-height: 2;
  margin-top: 14px;
}

.article ul > li,
.article ol > li {
  position: relative;
  padding-left: 1.3em;
  margin-top: 6px;
}

.article ul > li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.85em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange-mid);
}

.article ol {
  counter-reset: item;
}

.article ol > li {
  counter-increment: item;
  padding-left: 1.6em;
}

.article ol > li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  font-family: var(--num);
  color: var(--terra-text);
}

/* --- 表形式（特商法・会社概要） --- */
.info-table {
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.info-table > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 16px 2px 17px;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 560px) {
  .info-table > div {
    grid-template-columns: 8.5em 1fr;
    gap: 16px;
  }
}

.info-table dt {
  font-size: clamp(0.8125rem, 3.2vw, 0.875rem);
  font-weight: 700;
  color: var(--terra);
  line-height: 1.7;
}

.info-table dd {
  font-size: clamp(0.875rem, 3.4vw, 0.9375rem);
  line-height: 1.9;
}

.info-table dd .note {
  margin-top: 4px;
}

.page-updated {
  font-size: 0.8125rem;
  color: var(--text-mute);
  text-align: right;
  margin-top: 32px;
}

/* 戻るリンク */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--terra-text);
}

.back-link::before {
  content: "";
  width: 7px;
  height: 7px;
  border-left: 2px solid var(--terra-text);
  border-bottom: 2px solid var(--terra-text);
  transform: rotate(45deg);
}

/* ------------------------------------------------------------
   24. 下層ページはPCで読みやすい幅にする
   ------------------------------------------------------------
   LPは480pxの単一カラムだが、規約類は読み物なので行長を優先し、
   カラムを広げて余白を増やす。 */
.doc .lp-container {
  width: min(760px, 100%);
}

@media (min-width: 800px) {
  .doc .page-header {
    padding-top: 96px;
  }

  .doc .page-body {
    padding: 48px 56px 96px;
  }

  /* 行長が伸びすぎないよう本文だけ幅を絞る */
  .doc .page-lead,
  .doc .article p,
  .doc .article ul,
  .doc .article ol {
    max-width: 40em;
  }

  .doc .footer {
    padding-inline: 56px;
  }
}

/* 見出しと本文の間隔を、広い画面では少し広げる */
@media (min-width: 800px) {
  .doc .article {
    margin-top: 52px;
  }

  .doc .info-table > div {
    padding-block: 18px 19px;
  }
}

/* 768px以下でカラムを全幅にする指定は、下層ページでも同じ挙動でよい */
@media (max-width: 768px) {
  .doc .lp-container {
    width: 100%;
  }
}

/* ------------------------------------------------------------
   25. ブランドTOP
   ------------------------------------------------------------ */

/* --- ヒーロー --- */
.brand-hero {
  position: relative;
  /* 上端はハンバーガー（top:16px）と高さを揃える */
  padding: 16px var(--gutter) 44px;
  background:
    linear-gradient(180deg,
      rgba(233, 241, 247, 0.72) 0%,
      rgba(251, 249, 247, 0.42) 26%,
      rgba(251, 249, 247, 0) 54%,
      rgba(251, 249, 247, 0) 78%,
      rgba(251, 249, 247, 0.94) 100%),
    url(../images/hero.jpg) no-repeat center 46% / cover;
  min-height: clamp(520px, 118vw, 600px);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.brand-hero .brand-logo {
  width: clamp(180px, 46vw, 220px);
}

.brand-hero-copy {
  margin-top: auto;
  padding-top: 48px;
  max-width: 92%;
  text-shadow:
    0 0 10px rgba(251, 249, 247, 0.95),
    0 0 22px rgba(251, 249, 247, 0.85),
    0 1px 2px rgba(251, 249, 247, 1);
}

.brand-hero-copy .sub {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(0.9375rem, 3.8vw, 1.0625rem);
  letter-spacing: 0.1em;
  line-height: 2;
  color: var(--terra-text);
}

.brand-hero-copy .main {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.75rem, 7.6vw, 2.125rem);
  letter-spacing: 0.05em;
  line-height: 1.36;
  color: var(--terra);
  margin-top: 14px;
}

.brand-hero-copy .main em {
  font-style: normal;
  font-weight: 700;
  color: var(--green-deep);
  background: linear-gradient(transparent 66%, rgba(200, 116, 140, 0.3) 66%, rgba(200, 116, 140, 0.3) 90%, transparent 90%);
}

/* --- 店舗一覧 --- */
.room-list {
  display: grid;
  gap: 16px;
}

.room-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--orange-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px 22px 24px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.room-card:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.room-card .area {
  font-family: var(--display);
  font-size: 0.8125rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terra-text);
}

.room-card .name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.25rem, 5vw, 1.4375rem);
  letter-spacing: 0.08em;
  color: var(--terra);
  margin-top: 4px;
}

.room-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.room-card .meta > span {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: var(--terra-text);
  background: var(--cream-mist);
  border: 1px solid var(--orange-soft);
  border-radius: 999px;
  padding: 3px 12px 4px;
}

.room-card .desc {
  font-size: clamp(0.875rem, 3.4vw, 0.9375rem);
  line-height: 1.95;
  margin-top: 14px;
  color: var(--text);
}

.room-card .more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--terra-text);
}

.room-card .more::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--terra-text);
  border-right: 2px solid var(--terra-text);
  transform: rotate(45deg);
}

/* 準備中の店舗 */
.room-card.is-soon {
  background: var(--cream-mist);
  box-shadow: none;
  border-style: dashed;
  pointer-events: none;
}

.room-card.is-soon .name,
.room-card.is-soon .area {
  color: var(--text-mute);
}

.room-card .soon-label {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 12px 4px;
}

/* --- 3つの約束 --- */
.promise-list {
  display: grid;
  gap: 14px;
  counter-reset: promise;
}

.promise-list > li {
  counter-increment: promise;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px 22px 24px 26px;
  position: relative;
  overflow: hidden;
}

.promise-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--orange-mid), var(--orange-soft));
}

.promise-list h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.125rem, 4.6vw, 1.25rem);
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: var(--terra);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.promise-list h3::before {
  content: counter(promise, decimal-leading-zero);
  font-family: var(--num);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--orange-mid);
  letter-spacing: 0;
}

.promise-list p {
  font-size: clamp(0.875rem, 3.4vw, 0.9375rem);
  line-height: 2;
  margin-top: 10px;
}

/* ------------------------------------------------------------
   26. ブランドTOPはPCで広く使う
   ------------------------------------------------------------
   店舗LP（480px単一カラム）と違い、TOPは一覧性を優先して
   カラムを広げ、カード類を段組みにする。 */
.brand .lp-container {
  width: min(1080px, 100%);
}

@media (min-width: 900px) {
  /* --- ヒーロー --- */
  /* 写真が縦長なので、横長の枠いっぱいに敷くと粗く伸びる。
     右側に立てて置き、左をコピー面として使う */
  .brand .brand-hero {
    min-height: 640px;
    padding: 16px 56px 88px;
    background-image: none;
    background-color: var(--cream-mist);
    overflow: hidden;
    justify-content: flex-start;
  }

  .brand .brand-hero::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 54%;
    background:
      linear-gradient(90deg,
        var(--cream-mist) 0%,
        rgba(244, 248, 251, 0.5) 12%,
        rgba(244, 248, 251, 0) 34%),
      url(../images/hero.jpg) no-repeat center 62% / cover;
  }

  .brand .brand-hero > * {
    position: relative;
    z-index: 1;
  }

  .brand .brand-hero-copy {
    max-width: 46%;
    margin-top: 72px;
    padding-top: 0;
    text-shadow: none;
  }

  .brand .brand-hero-copy .main {
    font-size: 2.5rem;
  }

  /* 高さ47px。上端16pxで中心が約39pxとなり、ハンバーガー(中心38px)と揃う */
  .brand .brand-hero .brand-logo {
    width: 200px;
  }

  /* --- 本文まわりの余白 --- */
  .brand .container {
    width: min(100% - 112px, 960px);
  }

  .brand .sec,
  .brand .method-sec {
    padding-block: 104px;
  }

  /* 読み物は行長を抑える */
  .brand .method-lead {
    max-width: 38em;
    margin-inline: auto;
  }

  /* --- ルーム一覧を2列に --- */
  .brand .room-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .brand .room-card {
    padding: 28px 28px 30px;
  }

  /* --- 3つの約束を3列に --- */
  /* 3枚のカードは高さを揃える（align-items:start だと内容なりに縮む） */
  .brand .promise-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
  }

  .brand .promise-list > li {
    padding: 28px 24px 30px 28px;
  }

  /* --- FAQ・CTAは中央に寄せて幅を絞る --- */
  .brand .faq-wrap,
  .brand .cta-block {
    max-width: 720px;
    margin-inline: auto;
  }

  /* FVの下端に少し重ねて、中途半端な色帯が出ないようにする */
  .brand .cta-wrap {
    max-width: 400px;
    margin-top: -32px;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
  }

  /* --- フッターを横組みに --- */
  .brand .footer {
    padding-inline: 56px;
  }

  /* 左にロゴ＋営業情報、右に3列のナビ */
  .brand .footer .inner {
    grid-template-columns: auto 1fr;
    justify-items: start;
    text-align: left;
    align-items: start;
    column-gap: 72px;
    row-gap: 0;
  }

  .brand .f-info {
    margin-top: 20px;
  }

  .brand .f-nav-group {
    grid-row: 1 / 3;
    grid-column: 2;
    margin-top: 0;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    justify-items: start;
  }

  /* 各列は左揃え。右揃えだと3列とも読み出し位置がずれて追いにくい */
  .brand .f-nav-group .f-nav {
    align-items: flex-start;
    gap: 14px;
  }

  .brand .f-legal {
    grid-column: 1 / -1;
    margin-top: 56px;
  }

  .brand .copyright {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 24px;
  }
}

/* 768px以下は全幅（店舗LPと同じ挙動） */
@media (max-width: 768px) {
  .brand .lp-container {
    width: 100%;
  }
}

/* 幅を広げた分、カラム基準で置いている固定要素を合わせる */
.brand .toggle {
  right: max(var(--gutter), calc(50vw - 540px + var(--gutter)));
}

/* サイド固定CTAはカラムの外に置く前提。TOPは1080pxで
   余白が足りないため出さない（本文中のCTAで代替する） */
.brand .cta-pc {
  display: none;
}

/* ------------------------------------------------------------
   27. 沿線からルームを選ぶ
   ------------------------------------------------------------ */
.route-finder {
  background: var(--white);
  border: 1px solid var(--orange-soft);
  border-radius: var(--radius-lg);
  padding: 24px 22px 26px;
  box-shadow: var(--shadow);
}

.route-finder-lead {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1rem, 4vw, 1.125rem);
  letter-spacing: 0.08em;
  color: var(--terra);
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.route-list {
  display: grid;
  gap: 0;
}

.route-list dt {
  font-size: clamp(0.875rem, 3.4vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.7;
  color: var(--text);
  padding-top: 18px;
}

.route-list dd {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}

.route-list dd:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

/* 行き先を矢印つきのリンクで示す */
.route-list dd a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1rem, 4vw, 1.0625rem);
  letter-spacing: 0.06em;
  color: var(--terra-text);
}

.route-list dd a::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--orange-mid);
}

.route-list dd a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--terra-text);
  border-right: 2px solid var(--terra-text);
  transform: rotate(45deg);
}

/* アンカーで飛んだとき、見出しが隠れないよう余白を確保 */
.room-card[id] {
  scroll-margin-top: 24px;
}

@media (min-width: 900px) {
  .brand .route-finder {
    padding: 30px 40px 34px;
    max-width: 760px;
    margin-inline: auto;
  }

  /* 広い画面では「路線 → ルーム」を横並びにする */
  .brand .route-list {
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 32px;
  }

  .brand .route-list dt {
    padding-block: 18px;
    border-bottom: 1px solid var(--line-soft);
  }

  .brand .route-list dd {
    padding-block: 18px;
    text-align: right;
  }

  .brand .route-list dt:last-of-type,
  .brand .route-list dd:last-child {
    border-bottom: 0;
  }

  .brand .route-list dd a {
    margin-top: 0;
  }
}

/* ------------------------------------------------------------
   28. フッターのナビを役割ごとに分ける
   ------------------------------------------------------------ */
.f-nav-group {
  display: grid;
  gap: 28px;
  width: 100%;
  justify-items: center;
}

/* 規約類はフッター最下部に横並びで置く。
   本編と役割が違うので、細く落ち着かせる */
.f-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  width: 100%;
  /* 親が justify-items:start でも幅いっぱいに伸ばす */
  justify-self: stretch;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.f-legal a {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.66);
}

.f-legal a:hover {
  color: rgba(255, 255, 255, 0.92);
}

@media (min-width: 700px) {
  .f-nav-group {
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    align-items: start;
    gap: 56px;
  }

  .f-nav-group .f-nav {
    align-items: flex-start;
  }
}
/* お客様の声（横スクロールのスライダー） */
.voice-slider {
  /* カラムの外まで伸ばし、端が切れて続きがあると分かるようにする */
  margin-inline: calc(var(--gutter) * -1);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.voice-slider::-webkit-scrollbar {
  display: none;
}

.voice-list {
  display: flex;
  gap: 16px;
  /* カード82% + 左右9%ずつ = 100%。1枚目から中央に収まる */
  padding-inline: 9%;
}

.voice-card {
  scroll-snap-align: center;
  flex: 0 0 82%;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 30px 24px 32px;
  position: relative;
}

/* 引用符 */
.voice-card::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  left: 16px;
  font-family: var(--display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--orange-soft);
  pointer-events: none;
}

.voice-attr {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--terra-text);
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}

.voice-text {
  font-size: clamp(0.9375rem, 3.5vw, 1rem);
  line-height: 2.05;
  position: relative;
}

/* --- 矢印とインジケーター --- */
.voice-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.voice-arrow {
  appearance: none;
  -webkit-appearance: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--orange-soft);
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.voice-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--terra-text);
  border-right: 2px solid var(--terra-text);
}

.voice-arrow.is-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.voice-arrow.is-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.voice-arrow:hover {
  background: var(--cream-mist);
  transform: translateY(-1px);
}

/* 端に達したら押せないことを示す */
.voice-arrow:disabled {
  opacity: 0.32;
  cursor: default;
  transform: none;
}

.voice-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.voice-dots button {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-soft);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.voice-dots button.is-active {
  background: var(--terra);
  transform: scale(1.15);
}

@media (min-width: 900px) {
  /* 広い画面でも1枚ずつ。左右に前後がのぞいて、続きがあると分かる */
  .brand .voice-slider {
    margin-inline: 0;
  }

  .brand .voice-list {
    width: auto;
    /* カード68% + 左右16%ずつ = 100%。1枚目が中央に収まる */
    padding-inline: 16%;
    gap: 24px;
  }

  .brand .voice-card {
    flex: 0 0 68%;
    width: auto;
    padding: 38px 44px 40px;
  }

  /* 前後のカードは control を薄くして、中央に視線を集める */
  .brand .voice-card:not(.is-current) {
    opacity: 0.5;
    transition: opacity 0.35s ease;
  }
}

/* TOPのCTAはFVに重ねるので、次のセクションとの間隔をここで作る */
@media (min-width: 900px) {
  .brand .method-sec {
    padding-top: 112px;
  }
}
