/* ============================================================
   誠真会館 久米川道場 — 体験LP / main.css
   明るいキッズ空手 (お手本=田畑道場 寄せ) / キッズ特化
   ============================================================ */
@import url("tokens.css");

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.85;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}
body.nav-locked { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.32; letter-spacing: 0.01em; }
:focus-visible { outline: 3px solid var(--teal-deep); outline-offset: 3px; border-radius: 3px; }

/* skip link */
.skip-link {
  position: absolute; left: 1rem; top: -120%; z-index: 999;
  background: var(--teal-deep); color: #fff; padding: 0.7rem 1.2rem; border-radius: var(--radius-sm);
  font-weight: 700; box-shadow: var(--shadow); transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- layout helpers ---------- */
.wrap { width: min(100% - 2 * var(--gutter), var(--maxw)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2 * var(--gutter), var(--maxw-narrow)); margin-inline: auto; }
.section { padding-block: var(--space-section); position: relative; }
.section--cream { background: var(--cream); }
.section--mint { background: var(--mint); }

/* セクション見出し */
.eyebrow {
  font-family: var(--font-en); font-size: var(--text-eyebrow); font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--teal-deep);
  display: inline-flex; align-items: center; gap: 0.6em;
}
.eyebrow::before { content: "●"; font-size: 0.5em; }
.section-title { font-size: var(--text-h2); margin-top: 0.5rem; letter-spacing: 0.02em; text-wrap: pretty; }
.section-title .accent { color: var(--red); white-space: nowrap; }
.section-title .teal { color: var(--teal-deep); white-space: nowrap; }
.section-head { margin-bottom: var(--space-block); max-width: 42ch; }
.section-head--center { margin-inline: auto; text-align: center; max-width: 42rem; }

/* バナー帯ヘッドライン(お手本の看板表現) */
.ribbon {
  display: inline-block; position: relative; color: #fff; font-family: var(--font-display);
  font-weight: 900; padding: 0.1em 0.7em; background: var(--teal-deep); border-radius: 8px;
  box-shadow: 4px 5px 0 rgba(4, 74, 61, 0.35); transform: rotate(-1.2deg);
}
.ribbon--red { background: var(--red); box-shadow: 4px 5px 0 rgba(156, 0, 0, 0.4); transform: rotate(1deg); }
.ribbon--sun { background: var(--sun); color: var(--ink); box-shadow: 4px 5px 0 rgba(240, 165, 0, 0.4); }

/* reveal */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- 説明つき画像プレースホルダー ---------- */
.ph {
  display: grid; place-content: center; gap: 0.5rem; text-align: center; padding: 1.4rem;
  background: repeating-linear-gradient(45deg, var(--mint) 0 14px, #eef8f7 14px 28px);
  border: 2px dashed var(--teal-bright); border-radius: var(--radius);
  color: var(--teal-deep); min-height: 140px;
}
.ph::before { content: "🥋"; font-size: 1.9rem; line-height: 1; }
/* ID チップ: クリックで全選択できる(ファイル名にそのまま使える) */
.ph__id {
  font-family: var(--font-en); font-weight: 700; font-size: 0.82rem; color: var(--teal-deep);
  background: #fff; border: 1px solid var(--teal-wash); border-radius: 999px; padding: 0.2em 0.8em;
  user-select: all; -webkit-user-select: all; cursor: text;
}
.ph__desc {
  font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; line-height: 1.5;
  max-width: 26ch; opacity: 0.92; user-select: text;
}
.ph--photo::before { content: "📷"; }
.ph--map::before { content: "🗺"; }
.ph--banner::before { content: "🖼"; }
.ph--portrait::before { content: "🙂"; }
/* 既定の写真スロットは 16:9 (用意できる素材が横長主体のため) */
.ph--169 { aspect-ratio: 16 / 9; }

/* 差し込み済みの実画像 */
.shot { display: block; width: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.shot--169 { aspect-ratio: 16 / 9; }
.shot--portrait { aspect-ratio: 3 / 4; }
.hero__visual .shot { aspect-ratio: 5 / 4; border: 8px solid #fff; box-shadow: var(--shadow); }
.kids-banner .shot { max-width: 854px; margin: 0 auto var(--space-block); }
/* 指導員ポートレート: 余白を詰めて人物に寄せるズームクロップ */
.portrait-crop { aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.portrait-crop img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 58%; transform: scale(1.72); transform-origin: center 56%; }
.reason--feature .shot { box-shadow: var(--shadow-sm); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  padding: 1rem 2rem; border-radius: 999px; font-weight: 700; font-family: var(--font-display);
  line-height: 1.2; white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-back), box-shadow var(--dur) var(--ease), background var(--dur-fast), filter var(--dur-fast);
}
.btn--primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn--primary:hover { background: var(--red-deep); transform: translateY(-3px) scale(1.02); }
.btn--teal { background: var(--teal-deep); color: #fff; box-shadow: var(--shadow-teal); }
.btn--teal:hover { background: var(--teal-darkest); transform: translateY(-3px) scale(1.02); }
.btn--line { background: #06c755; color: #fff; box-shadow: 0 16px 40px -16px rgba(6, 199, 85, 0.55); }
.btn--line:hover { filter: brightness(1.06); transform: translateY(-3px) scale(1.02); }
.btn--ghost { background: #fff; color: var(--ink); border: 2px solid rgba(42,38,34,0.14); }
.btn--ghost:hover { border-color: var(--teal-deep); color: var(--teal-deep); transform: translateY(-2px); }
/* 濃いティール帯の上のCTA: 白地+ティール文字で確実にコントラスト確保(白文字は地が明るくなり逆効果のため不可) */
.btn--on-dark { background: #fff; color: var(--teal-deep); border: 2px solid #fff; }
.btn--on-dark:hover { background: var(--sun); color: var(--ink); border-color: var(--sun); transform: translateY(-3px) scale(1.02); }
.btn--lg { padding: 1.15rem 2.5rem; font-size: 1.1rem; }
.btn--block { width: 100%; }

/* ============================================================
   HEADER (明るいヒーロー前提=既定は濃い文字)
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.9rem var(--gutter); color: var(--ink);
  transition: background var(--dur), padding var(--dur), box-shadow var(--dur);
}
.header.is-scrolled { background: rgba(255,255,255,0.94); backdrop-filter: blur(10px); padding-block: 0.5rem; box-shadow: var(--shadow-sm); }
.brand { display: flex; align-items: center; gap: 0.7rem; font-family: var(--font-display); font-weight: 700; }
.brand__logo { width: 48px; height: 48px; border-radius: 50%; object-fit: contain; flex: none; }
.footer .brand__logo { background: #fff; padding: 3px; }
.brand .name { font-size: 1.05rem; letter-spacing: 0.04em; }
.brand .name small { display: block; font-family: var(--font-en); font-size: 0.6rem; letter-spacing: 0.3em; opacity: 0.65; font-weight: 500; }
.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav a { font-size: 0.92rem; font-weight: 700; transition: color var(--dur-fast); }
.nav a:hover { color: var(--teal-deep); }
.nav .btn { padding: 0.6rem 1.4rem; font-size: 0.9rem; }
.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px; width: 46px; height: 46px;
    align-items: center; justify-content: center; z-index: 60; background: var(--red); border-radius: 50%;
  }
  .nav-toggle span { width: 22px; height: 2px; background: #fff; transition: transform var(--dur), opacity var(--dur); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav {
    position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 1.6rem;
    background: rgba(255, 248, 236, 0.98); transform: translateX(100%); transition: transform var(--dur) var(--ease);
  }
  .nav.is-open { transform: none; }
  .nav a { font-size: 1.25rem; }
}

/* ============================================================
   HERO (明るいスプリット / 16:9 ビジュアル)
   ============================================================ */
.hero {
  position: relative; overflow: hidden; padding-block: 8rem 4rem;
  background:
    radial-gradient(60% 50% at 90% 8%, var(--teal-wash), transparent 60%),
    radial-gradient(40% 40% at 5% 95%, var(--red-wash), transparent 60%),
    var(--cream);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: 0.5;
  background-image: radial-gradient(rgba(10,157,134,0.12) 1.6px, transparent 1.6px);
  background-size: 22px 22px;
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.68fr 1.32fr; gap: clamp(1.25rem, 2.5vw, 2.5rem); align-items: center; }
.hero h1 { font-size: var(--text-hero); line-height: 1.16; font-weight: 900; white-space: nowrap; }
.hero .ribbon--sun { margin-bottom: 1.2rem; }
.hero__lead { font-size: var(--text-lead); margin-top: 1.4rem; max-width: 32ch; color: var(--ink-soft); font-weight: 500; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }
.hero__note { margin-top: 1rem; font-size: var(--text-sm); color: var(--ink-mute); }
.hero__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.6rem; }
.hero__chips span { background: #fff; border: 2px solid var(--teal-wash); color: var(--teal-deep); font-weight: 700; font-size: 0.8rem; padding: 0.35em 0.9em; border-radius: 999px; box-shadow: var(--shadow-sm); }
.hero__visual { position: relative; }
.hero__visual .ph { aspect-ratio: 16 / 9; min-height: 0; border-style: solid; border-color: #fff; box-shadow: var(--shadow); }
.hero__badge {
  position: absolute; right: -10px; top: -26px; z-index: 3;
  width: clamp(96px, 13vw, 124px); aspect-ratio: 1; border-radius: 50%; display: grid; place-content: center;
  text-align: center; background: var(--sun); color: var(--ink); box-shadow: 0 14px 30px -10px rgba(240,165,0,0.6);
  transform: rotate(-10deg); animation: badgePop 3s var(--ease-back) infinite; border: 4px solid #fff;
}
.hero__badge b { font-family: var(--font-display); font-size: clamp(1.1rem, 2.4vw, 1.45rem); display: block; line-height: 1; }
.hero__badge small { font-size: 0.62rem; letter-spacing: 0.1em; font-weight: 700; }
@keyframes badgePop { 0%,100% { transform: rotate(-10deg) scale(1);} 50% { transform: rotate(-10deg) scale(1.07);} }
@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__chips, .hero__cta { justify-content: center; }
  .hero__lead { margin-inline: auto; }
  .hero__visual { max-width: 520px; margin-inline: auto; width: 100%; }
}

/* ============================================================
   導入 / 共感 (16:9 スタック)
   ============================================================ */
.intro__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.intro__copy p + p { margin-top: 1.2rem; }
.intro__copy .big { font-size: var(--text-h3); font-family: var(--font-display); font-weight: 700; line-height: 1.6; }
.intro__copy .big mark { background: linear-gradient(transparent 60%, rgba(255,200,61,0.55) 60%); color: inherit; padding-inline: 0.05em; }
/* 道場の様子カルーセル(自動再生) */
.carousel { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16 / 9; background: var(--mint); }
.carousel__track { display: flex; height: 100%; transition: transform 0.7s var(--ease); will-change: transform; }
.carousel__slide { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; }
.carousel__dots { position: absolute; left: 0; right: 0; bottom: 0.8rem; display: flex; gap: 0.5rem; justify-content: center; }
.carousel__dot { width: 9px; height: 9px; padding: 0; border-radius: 999px; background: rgba(255,255,255,0.6); box-shadow: 0 1px 4px rgba(0,0,0,0.35); transition: width var(--dur) var(--ease), background var(--dur); }
.carousel__dot.is-active { width: 22px; background: #fff; }
@media (max-width: 760px) { .intro__grid { grid-template-columns: 1fr; } }

/* ============================================================
   キャンペーン帯 (明るいティール×サン)
   ============================================================ */
.campaign { background: linear-gradient(110deg, var(--teal-darkest), var(--teal-deep)); color: #fff; text-align: center; overflow: hidden; }
.campaign__count { display: inline-flex; align-items: baseline; gap: 0.35em; background: var(--sun); color: var(--ink); padding: 0.45em 1.3em; border-radius: 999px; margin-bottom: 1rem; font-weight: 700; box-shadow: var(--shadow-sm); }
.campaign__count b { font-family: var(--font-en); font-size: 1.7rem; }
.campaign__tag { font-family: var(--font-en); letter-spacing: 0.28em; font-size: var(--text-sm); font-weight: 600; opacity: 0.85; }
.campaign h2 { font-size: clamp(1.7rem, 1rem + 3.6vw, 3.1rem); margin: 0.5rem 0 0.5rem; color: #fff; }
.campaign h2 em { font-style: normal; color: var(--sun); }
.campaign__sub { font-size: var(--text-lead); margin-bottom: 1.8rem; opacity: 0.95; }

/* ============================================================
   選ばれる理由
   ============================================================ */
.reasons { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); gap: 1.4rem; }
.reason {
  position: relative; background: #fff; border-radius: var(--radius); padding: 2.6rem 1.8rem 2rem;
  box-shadow: var(--shadow-sm); border: 2px solid transparent;
  transition: transform var(--dur) var(--ease-back), box-shadow var(--dur), border-color var(--dur);
}
.reason:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--teal-wash); }
.reason__num {
  position: absolute; top: -18px; left: 1.6rem; width: 46px; height: 46px; border-radius: 50%;
  background: var(--teal); color: #fff; display: grid; place-content: center; font-family: var(--font-en);
  font-weight: 700; font-size: 1.2rem; box-shadow: var(--shadow-teal);
}
.reason h3 { font-size: var(--text-h3); margin: 0.4rem 0 0.6rem; }
.reason p { font-size: 0.97rem; color: var(--ink-soft); }
.reasons .reason--feature { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr 1fr; gap: 2rem; align-items: center; background: var(--mint); }
.reasons .reason--feature .ph { background: repeating-linear-gradient(45deg, #fff 0 14px, #f1faf9 14px 28px); }
@media (max-width: 760px) { .reasons .reason--feature { grid-template-columns: 1fr; } }

/* ============================================================
   こんな方におすすめ
   ============================================================ */
.checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 1rem 1.6rem; }
.check { display: flex; gap: 0.9rem; align-items: flex-start; background: #fff; border-radius: var(--radius); padding: 1.2rem 1.4rem; box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease-back); }
.check:hover { transform: translateY(-4px); }
.check__mark { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--teal-deep); color: #fff; display: grid; place-content: center; font-size: 0.95rem; margin-top: 2px; }
.check p { font-weight: 700; }
.check p span { display: block; font-weight: 400; font-size: 0.92rem; color: var(--ink-soft); margin-top: 0.2rem; }

/* ============================================================
   キッズ空手で身につく力 (写真バナー + 3つの力カード)
   ============================================================ */
.kids-banner .ph { aspect-ratio: 16 / 9; max-height: 480px; margin-inline: auto; margin-bottom: var(--space-block); }
.powers { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 1.6rem; }
.power { background: #fff; border-radius: var(--radius); padding: 2.2rem 1.8rem; box-shadow: var(--shadow-sm); text-align: center; transition: transform var(--dur) var(--ease-back), box-shadow var(--dur); }
.power:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.power__icon { width: 76px; height: 76px; border-radius: 50%; display: grid; place-content: center; font-size: 2.2rem; margin: 0 auto 1rem; background: var(--mint); border: 2px solid var(--teal-wash); }
.power h3 { font-size: var(--text-h3); margin-bottom: 0.5rem; }
.power h3 small { display: block; font-family: var(--font-en); font-size: 0.7rem; letter-spacing: 0.18em; color: var(--teal-deep); margin-bottom: 0.2rem; }
.power p { font-size: 0.95rem; color: var(--ink-soft); }

/* ============================================================
   会費テーブル
   ============================================================ */
.fee-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); background: #fff; }
.fee { width: 100%; border-collapse: collapse; min-width: 560px; }
.fee th, .fee td { padding: 1rem 1.1rem; text-align: center; border-bottom: var(--line); }
.fee thead th { background: var(--teal-deep); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; }
.fee tbody th { text-align: left; font-weight: 700; background: var(--mint); white-space: nowrap; }
.fee tbody th small { display: block; font-weight: 400; color: var(--ink-mute); font-size: 0.78rem; }
.fee .yen { font-family: var(--font-en); font-weight: 600; }
.fee .yen .price { color: var(--red); font-size: 1.15rem; }
.fee tr:last-child td { border-bottom: 0; }
.fee-note { font-size: var(--text-sm); color: var(--ink-mute); margin-top: 0.9rem; }

/* ============================================================
   体験の流れ
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 1.8rem; }
.step { position: relative; background: #fff; border-radius: var(--radius); padding: 2.8rem 1.6rem 1.8rem; box-shadow: var(--shadow-sm); text-align: center; }
.step__no { position: absolute; top: -26px; left: 50%; transform: translateX(-50%); width: 56px; height: 56px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-content: center; font-family: var(--font-en); font-weight: 700; font-size: 1.6rem; box-shadow: var(--shadow-teal); border: 4px solid #fff; }
.step .label { font-family: var(--font-en); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.16em; color: var(--teal-deep); }
.step h3 { font-size: var(--text-h3); margin: 0.3rem 0 0.5rem; }
.step p { font-size: 0.95rem; color: var(--ink-soft); }

/* ============================================================
   スケジュール / アクセス (16:9)
   ============================================================ */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
@media (max-width: 800px) { .info-grid { grid-template-columns: 1fr; } }
.info-card { background: #fff; border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.info-card h3 { font-size: var(--text-h3); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.info-card h3::before { content: ""; width: 0.5rem; height: 1.4rem; background: var(--teal); border-radius: 3px; }
.dl { display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1.2rem; }
.dl dt { font-weight: 700; color: var(--teal-deep); }
.dl dd { color: var(--ink-soft); }
/* キッズ スケジュール表(テキスト) */
.sched { width: 100%; border-collapse: collapse; margin-top: 0.4rem; }
.sched th, .sched td { padding: 0.7rem 0.5rem; text-align: center; border-bottom: var(--line); font-size: 0.92rem; }
.sched thead th { background: var(--teal-deep); color: #fff; font-family: var(--font-display); font-weight: 700; border-bottom: 0; }
.sched thead th:first-child { border-top-left-radius: var(--radius-sm); }
.sched thead th:last-child { border-top-right-radius: var(--radius-sm); }
.sched tbody th { text-align: left; background: var(--mint); font-weight: 700; white-space: nowrap; }
.sched tbody th small { display: block; font-weight: 400; font-size: 0.72rem; color: var(--teal-deep); font-family: var(--font-en); }
.sched td { font-family: var(--font-en); font-weight: 600; color: var(--ink-soft); }
.sched tbody tr:last-child th, .sched tbody tr:last-child td { border-bottom: 0; }
.map-link { display: block; margin-top: 1rem; transition: transform var(--dur) var(--ease), box-shadow var(--dur); border-radius: var(--radius); }
.map-link:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* ============================================================
   指導員メッセージ (縦長ポートレートはそのまま)
   ============================================================ */
.message__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.message blockquote { font-size: var(--text-lead); line-height: 2; }
.message blockquote p + p { margin-top: 1.1rem; }
.message .ribbon { margin-bottom: 1rem; }
.message__sign { margin-top: 1.6rem; display: flex; align-items: baseline; gap: 0.8rem; }
.message__sign .role { font-size: var(--text-sm); color: var(--ink-mute); }
.message__sign .who { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; }
@media (max-width: 760px) { .message__grid { grid-template-columns: 1fr; } .message__photo { max-width: 280px; margin-inline: auto; } }

/* ============================================================
   会員の声
   ============================================================ */
.voices { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 1.4rem; }
.voice { background: #fff; border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); position: relative; transition: transform var(--dur) var(--ease-back); }
.voice:hover { transform: translateY(-6px); }
.voice__head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.voice__avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--mint); display: grid; place-content: center; font-size: 1.5rem; border: 2px solid var(--teal-wash); }
.voice__who { font-weight: 700; font-size: 0.95rem; }
.voice__who span { display: block; font-weight: 400; font-size: 0.8rem; color: var(--teal-deep); }
.voice p { font-size: 0.95rem; color: var(--ink-soft); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: var(--maxw-narrow); margin-inline: auto; }
.faq details { background: #fff; border-radius: var(--radius); margin-bottom: 0.9rem; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary { display: flex; gap: 0.9rem; align-items: flex-start; padding: 1.2rem 1.4rem; font-weight: 700; font-family: var(--font-display); cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q { flex: none; color: #fff; background: var(--teal-deep); width: 1.7em; height: 1.7em; border-radius: 50%; display: grid; place-content: center; font-family: var(--font-en); font-weight: 700; font-size: 0.85em; }
.faq summary .plus { margin-left: auto; flex: none; transition: transform var(--dur); color: var(--teal-deep); font-size: 1.3rem; line-height: 1; }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq details[open] summary { background: var(--mint); }
.faq .a { padding: 0 1.4rem 1.3rem 4rem; color: var(--ink-soft); font-size: 0.97rem; }

/* ============================================================
   申込導線 + フォーム
   ============================================================ */
.contact__hub { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 1.2rem; margin-bottom: var(--space-block); }
.hub-card { background: #fff; border-radius: var(--radius); padding: 1.8rem; text-align: center; box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease-back), box-shadow var(--dur); display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.hub-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.hub-card__icon { width: 60px; height: 60px; border-radius: 50%; display: grid; place-content: center; font-size: 1.6rem; }
.hub-card--line .hub-card__icon { background: #06c755; }
.hub-card--tel .hub-card__icon { background: var(--mint); border: 2px solid var(--teal-wash); }
.hub-card--form .hub-card__icon { background: var(--red); }
.hub-card h3 { font-size: 1.1rem; }
.hub-card p { font-size: var(--text-sm); color: var(--ink-soft); }
.hub-card .big-tel { font-family: var(--font-en); font-weight: 700; font-size: 1.4rem; color: var(--ink); }

.form-card { background: #fff; border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 3rem); box-shadow: var(--shadow); border-top: 6px solid var(--teal-deep); }
.form-card h3 { font-size: var(--text-h3); margin-bottom: 1.4rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.4rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }
.field .req { background: var(--red); color: #fff; font-size: 0.65rem; padding: 0.15em 0.5em; border-radius: 4px; font-weight: 700; }
.field .opt { color: var(--ink-mute); font-size: 0.7rem; font-weight: 400; }
.field input, .field select, .field textarea {
  font: inherit; padding: 0.85rem 1rem; border: 2px solid rgba(42,38,34,0.12); border-radius: var(--radius-sm);
  background: var(--cream); transition: border-color var(--dur-fast), background var(--dur-fast); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal-deep); background: #fff; }
.field input:focus:not(:focus-visible), .field select:focus:not(:focus-visible), .field textarea:focus:not(:focus-visible) { outline: none; }
.field textarea { min-height: 110px; resize: vertical; }
.form-submit { margin-top: 0.5rem; }
.form-note { background: var(--teal-wash); border: 1px solid var(--teal-deep); color: var(--teal-deep); padding: 1rem 1.2rem; border-radius: var(--radius-sm); font-size: 0.92rem; margin-top: 1rem; }
.form-noscript { color: var(--red-deep); font-weight: 700; margin-bottom: 1rem; display: block; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--surface-dark); color: rgba(255,255,255,0.82); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer .brand .name { color: #fff; }
.footer__about p { font-size: 0.9rem; margin-top: 1rem; opacity: 0.72; max-width: 32ch; }
.footer h4 { font-family: var(--font-display); font-size: 0.95rem; color: #fff; margin-bottom: 1rem; }
.footer__links a, .footer__contact li { font-size: 0.88rem; display: block; padding: 0.3rem 0; opacity: 0.82; }
.footer__links a:hover { opacity: 1; color: var(--teal-light); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 1.5rem; font-size: 0.78rem; opacity: 0.6; font-family: var(--font-en); letter-spacing: 0.1em; text-align: center; }
@media (max-width: 700px) { .footer__grid { grid-template-columns: 1fr; gap: 1.6rem; } }

/* sticky モバイルCTA */
.mobile-cta { position: fixed; inset: auto 0 0; z-index: 40; display: none; gap: 0.6rem; padding: 0.7rem var(--gutter); background: rgba(255,255,255,0.97); backdrop-filter: blur(8px); box-shadow: 0 -6px 20px -10px rgba(42,38,34,0.3); }
.mobile-cta .btn { flex: 1; padding: 0.85rem; font-size: 0.92rem; }
@media (max-width: 640px) { .mobile-cta { display: flex; } body { padding-bottom: 4.6rem; } .hero__badge { width: 88px; } }
