/* Kachisai 公式サイト モックアップ 共通スタイル v4
   方向性: ベースホワイト × ブランドテーマカラー（2026-07-13 定例PT決定）
   - ベース = ホワイト／明るい実用UI（参考: japan-guide.com のさっぱり感）
   - テーマカラー: blue pine #324851 ／ new grass #86AC41 ／ reflection #34675C ／ mist #7DA3A1
   - 黒背景・朱色は全廃。ダーク面は blue pine に置換
   - 変数名は互換維持（--shu 等は新パレットに再割当。既存ページの inline style を壊さない） */
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@500;600;700&family=Noto+Sans+JP:wght@400;500;700&family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --pine: #324851;                    /* blue pine（ダーク面・見出し） */
  --grass: #86AC41;                   /* new grass（CTA・グラフィック） */
  --grass-deep: #6f9433;              /* grass の濃色（ボタン等） */
  --refl: #34675C;                    /* reflection（テキストアクセント） */
  --mist: #7DA3A1;                    /* mist（淡アクセント・罫線） */

  --ink: #223038;                     /* 本文（pine寄りのダークグレー） */
  --ink-70: rgba(34, 48, 56, 0.74);
  --ink-50: rgba(34, 48, 56, 0.52);
  --ring: rgba(50, 72, 81, 0.14);
  --well: rgba(125, 163, 161, 0.10);
  --paper: #ffffff;                   /* ベースホワイト */
  --white: #ffffff;
  --sumi: #324851;                    /* 旧ダーク面 → pine */
  --sumi-2: #3b515b;
  --shu: #34675C;                     /* 旧朱 → reflection */
  --shu-dark: #2a5249;
  --navy: #34675C;
  --navy-deep: #324851;               /* フッター等 → pine */
  --gold: #9fc3c1;                    /* ダーク面上のアクセント → mist明色 */
  --serif: 'Shippori Mincho', 'Hiragino Mincho ProN', serif;
  --latin: 'Cormorant Garamond', serif;
  --sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --radius: 5px;                      /* カード角丸（控えめ・2026-07-22調整） */
  --radius-inner: 3px;                /* 写真角丸 */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans); color: var(--ink); background: var(--paper);
  line-height: 1.95; font-size: 15.5px; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---- モック注記バー ---- */
.mock-note { background: var(--well); font-size: 12px; padding: 7px 0; color: var(--ink-70); border-bottom: 1px solid var(--ring); }
.mock-note .wrap { display: flex; gap: 16px; justify-content: space-between; flex-wrap: wrap; }
.mock-note a { color: var(--refl); text-decoration: underline; text-underline-offset: 3px; }

/* ---- ヘッダー（ホワイト・ロゴ入り） ---- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--ring); }
.header-inner { display: flex; align-items: center; gap: 20px; padding: 12px 24px; max-width: 1320px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--pine); flex: none; }
.brand-logo { height: 46px; width: auto; flex: none; }
.brand-text { font-family: var(--serif); font-size: 21px; font-weight: 600; letter-spacing: 0.05em; line-height: 1.1; white-space: nowrap; }
.brand-sub { display: block; font-family: var(--mono); font-size: 8.5px; font-weight: 400; color: var(--ink-50); letter-spacing: 0.18em; margin-top: 3px; }
.gnav { display: flex; gap: 18px; margin-left: auto; }
.gnav a { font-size: 12.5px; font-weight: 500; color: var(--ink-70); padding: 6px 0; letter-spacing: 0.02em; position: relative; white-space: nowrap; }
.gnav a:hover { color: var(--pine); }
.gnav a.on { color: var(--pine); font-weight: 700; }
.gnav a.on::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--grass); }
.header-tools { display: flex; align-items: center; gap: 16px; }
.lang { display: flex; gap: 2px; font-family: var(--mono); font-size: 10.5px; }
.lang a { padding: 4px 8px; color: var(--ink-50); border-radius: 99px; }
.lang a.on { background: var(--pine); color: #fff; }
.lang a:not(.on):hover { color: var(--pine); }

/* ---- ボタン（pill・グリーンCTA） ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; border-radius: 999px;
  padding: 12px 28px; font-size: 13.5px; font-weight: 700; line-height: 1.4;
  cursor: pointer; border: none; font-family: var(--sans); letter-spacing: 0.05em;
  transition: opacity .15s ease, transform .15s ease, background .15s ease;
}
.btn:hover { opacity: 0.88; }
.btn-primary { background: var(--grass-deep); color: #fff; }
.btn-primary:hover { background: var(--grass); opacity: 1; }
.btn-navy { background: var(--refl); color: #fff; }
.btn-secondary { background: transparent; color: var(--pine); box-shadow: inset 0 0 0 1px rgba(50,72,81,0.4); }
.btn-secondary:hover { background: var(--pine); color: #fff; opacity: 1; }
.btn-lg { padding: 15px 36px; font-size: 14.5px; }
.btn .arrow { font-family: var(--mono); }
/* ダーク面（pine）上のセカンダリ */
.band .btn-secondary, .cta-band .btn-secondary { color: #eef4f3; box-shadow: inset 0 0 0 1px rgba(238,244,243,0.55); }
.band .btn-secondary:hover, .cta-band .btn-secondary:hover { background: #eef4f3; color: var(--pine); }

/* ---- アイブロウ / 見出し（左揃え・グリーンラベル） ---- */
.eyebrow {
  font-family: var(--latin); font-style: italic; font-weight: 500;
  font-size: 17px; letter-spacing: 0.08em; color: var(--refl);
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.eyebrow::after { content: ""; width: 44px; height: 1px; background: var(--grass); opacity: 0.9; }
.section-head { display: flex; align-items: flex-end; gap: 28px; flex-wrap: wrap; margin-bottom: 44px; }
.section-head h2 { font-family: var(--serif); font-size: 30px; font-weight: 600; letter-spacing: 0.03em; line-height: 1.55; color: var(--pine); }
.section-head .lead { font-size: 14px; color: var(--ink-50); max-width: 46ch; text-wrap: pretty; padding-bottom: 6px; }
.section { padding: 92px 0; }

/* ---- ヒーロー（ホワイト・明るく） ---- */
.hero { background: var(--white); color: var(--ink); padding: 76px 0 68px; position: relative; }
.hero .eyebrow { color: var(--refl); }
.hero-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 56px; align-items: end; }
.hero h1 {
  font-family: var(--serif); font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 600; letter-spacing: 0.02em; line-height: 1.62; text-wrap: balance;
  color: var(--pine);
}
.hero h1 em { font-style: normal; color: var(--refl); position: relative; }
.hero h1 em::after { content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 2px; background: var(--grass); }
.hero-side { font-size: 14px; color: var(--ink-70); max-width: 40ch; text-wrap: pretty; line-height: 2.1; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* ---- ワイヤーフレーム画像プレースホルダ ---- */
.ph {
  position: relative; width: 100%; overflow: hidden; border-radius: var(--radius-inner);
  background:
    repeating-linear-gradient(45deg, rgba(50,72,81,0.05) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(-45deg, rgba(50,72,81,0.05) 0 1px, transparent 1px 14px),
    #eff3f2;
  box-shadow: inset 0 0 0 1px var(--ring);
  display: flex; align-items: center; justify-content: center;
}
.ph::before { content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom right, transparent calc(50% - 0.5px), rgba(50,72,81,0.12) calc(50% - 0.5px) calc(50% + 0.5px), transparent calc(50% + 0.5px)); }
.ph > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph span {
  position: relative; z-index: 2; text-align: center; font-family: var(--mono); font-size: 11px;
  line-height: 1.7; color: var(--ink-50); background: rgba(255,255,255,0.93);
  padding: 6px 14px; border-radius: 4px; box-shadow: 0 0 0 1px var(--ring);
}
/* ダーク面（pine）上のプレースホルダ */
.band .ph, .cta-band .ph {
  background:
    repeating-linear-gradient(45deg, rgba(238,244,243,0.06) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(-45deg, rgba(238,244,243,0.06) 0 1px, transparent 1px 14px),
    #2a3d45;
  box-shadow: inset 0 0 0 1px rgba(238,244,243,0.16);
}
.band .ph::before { background: linear-gradient(to bottom right, transparent calc(50% - 0.5px), rgba(238,244,243,0.12) calc(50% - 0.5px) calc(50% + 0.5px), transparent calc(50% + 0.5px)); }
.band .ph span { background: rgba(50,72,81,0.88); color: rgba(238,244,243,0.75); box-shadow: 0 0 0 1px rgba(238,244,243,0.2); }
.ph-16x9 { aspect-ratio: 16/9; } .ph-4x3 { aspect-ratio: 4/3; } .ph-3x4 { aspect-ratio: 3/4; }
.ph-1x1 { aspect-ratio: 1/1; } .ph-wide { aspect-ratio: 21/9; }
.ph-logo { aspect-ratio: 1/1; width: 72px; border-radius: 99px; flex: none; }

/* ---- 実績（罫線トップの数字） ---- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.stats > div { border-top: 2px solid var(--grass); padding-top: 18px; }
.stats .num { font-family: var(--serif); font-size: 38px; font-weight: 600; letter-spacing: 0.01em; line-height: 1.3; color: var(--pine); }
.stats .num small { font-size: 15px; margin-left: 3px; font-weight: 500; }
.stats .label { font-size: 12px; color: var(--ink-50); margin-top: 4px; line-height: 1.8; }

/* ---- カード ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: 0 0 0 1px var(--ring), 0 1px 3px rgba(50,72,81,0.05);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
a.card:hover { transform: translateY(-4px); box-shadow: 0 0 0 1px var(--ring), 0 14px 30px rgba(50,72,81,0.14); }
.card .ph { border-radius: 0; box-shadow: none; }
.card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 { font-family: var(--serif); font-size: 16.5px; font-weight: 600; line-height: 1.65; color: var(--pine); }
.card-body p { font-size: 13px; color: var(--ink-70); text-wrap: pretty; }
.card-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; padding-top: 10px; }

/* ---- タグ（細枠・角丸） ---- */
.tag {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em;
  padding: 3px 12px; border-radius: 99px; color: var(--ink-70);
  box-shadow: inset 0 0 0 1px rgba(50,72,81,0.25); background: transparent;
}
.tag-shu { color: var(--refl); box-shadow: inset 0 0 0 1px rgba(52,103,92,0.45); }
.tag-navy { color: var(--refl); box-shadow: inset 0 0 0 1px rgba(52,103,92,0.45); }
.tag-grass { color: var(--grass-deep); box-shadow: inset 0 0 0 1px rgba(134,172,65,0.55); }
.band .tag, .band .tag-shu { color: inherit; box-shadow: inset 0 0 0 1px rgba(238,244,243,0.35); }

/* ---- well ---- */
.well { background: var(--well); border-radius: calc(var(--radius) + 6px); padding: 8px; }
.well-inner { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: 0 0 0 1px var(--ring); }

/* ---- 5つの提供価値 ---- */
.pillars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--ring); box-shadow: 0 0 0 1px var(--ring); }
.pillars > div { background: var(--white); padding: 28px 20px 26px; }
.pillars .no { font-family: var(--latin); font-size: 22px; font-weight: 500; font-style: italic; color: var(--grass-deep); }
.pillars h3 { font-family: var(--serif); font-size: 15.5px; font-weight: 600; margin: 10px 0 8px; line-height: 1.6; color: var(--pine); }
.pillars p { font-size: 12.5px; color: var(--ink-70); line-height: 1.85; }

/* ---- ダークバンド（pine） ---- */
.band { background: var(--pine); color: #eef4f3; padding: 92px 0; }
.band .eyebrow { color: var(--gold); }
.band .eyebrow::after { background: var(--grass); }
.band .section-head h2 { color: #eef4f3; }
.band .section-head .lead { color: rgba(238,244,243,0.72); }
.band .note { color: rgba(238,244,243,0.55); }
.band .card { background: var(--sumi-2); box-shadow: 0 0 0 1px rgba(238,244,243,0.14); color: #eef4f3; }
.band .card-body h3 { color: #eef4f3; }
.band .card-body p { color: rgba(238,244,243,0.62); }
.band .stats > div { border-top-color: var(--grass); }
.band .stats .num { color: #eef4f3; }
.band .stats .label { color: rgba(238,244,243,0.55); }

/* ---- テーブル ---- */
.contact-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 48px; align-items: start; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table th, .spec-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--ring); vertical-align: top; }
.spec-table th { width: 160px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--ink-50); font-weight: 500; white-space: nowrap; }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 14px; box-shadow: 0 0 0 1px var(--ring); border-radius: var(--radius); overflow: hidden; }
.compare-table th, .compare-table td { padding: 14px 18px; border-bottom: 1px solid var(--ring); text-align: center; background: var(--white); }
.compare-table thead th { background: var(--pine); color: #eef4f3; font-family: var(--serif); font-weight: 600; font-size: 13.5px; }
.compare-table td:first-child, .compare-table th:first-child { text-align: left; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .plan-price { font-family: var(--serif); font-size: 20px; font-weight: 600; display: block; margin-top: 4px; }
.compare-table thead .plan-price small, .compare-table thead th small { color: rgba(238,244,243,0.55) !important; }

/* ---- ステップフロー ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.steps > div { position: relative; background: var(--white); border-radius: var(--radius); padding: 24px 22px; box-shadow: 0 0 0 1px var(--ring); }
.steps > div::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--latin); font-style: italic; font-size: 22px; font-weight: 500; color: var(--grass-deep);
}
.steps h3 { font-family: var(--serif); font-size: 15.5px; font-weight: 600; margin: 8px 0 4px; color: var(--pine); }
.steps p { font-size: 12.5px; color: var(--ink-70); }

/* ---- FAQ ---- */
.faq-list details { border-bottom: 1px solid var(--ring); }
.faq-list summary { cursor: pointer; padding: 22px 8px; font-weight: 600; font-size: 15.5px; font-family: var(--serif); list-style: none; display: flex; gap: 16px; align-items: baseline; color: var(--pine); }
.faq-list summary::before { content: "Q."; font-family: var(--latin); font-style: italic; font-size: 19px; color: var(--grass-deep); flex: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list .a { padding: 0 8px 24px 42px; font-size: 14px; color: var(--ink-70); max-width: 70ch; text-wrap: pretty; }

/* ---- フォーム ---- */
.form-grid { display: grid; gap: 22px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; }
.field .req { font-family: var(--mono); font-size: 9.5px; color: var(--refl); margin-left: 8px; letter-spacing: 0.1em; box-shadow: inset 0 0 0 1px rgba(52,103,92,0.45); padding: 1px 8px; border-radius: 99px; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field select, .field textarea {
  width: 100%; padding: 12px 14px; font-size: 14px; font-family: var(--sans);
  border: none; border-radius: 8px; background: var(--white);
  box-shadow: inset 0 0 0 1px var(--ring);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; box-shadow: inset 0 0 0 2px var(--refl); }
.field .hint { font-size: 12px; color: var(--ink-50); margin-top: 5px; }
.choice-list { display: grid; gap: 8px; }
.choice-list label { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 500; padding: 10px 14px; border-radius: 8px; box-shadow: inset 0 0 0 1px var(--ring); cursor: pointer; margin: 0; }
.choice-list label:hover { background: var(--well); }
.choice-list input { accent-color: var(--refl); }
.choice-cols { grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .choice-cols { grid-template-columns: 1fr; } }
.form-msg { display: none; font-size: 13px; font-weight: 700; color: #a63d2f; background: rgba(166,61,47,0.08); border-radius: 8px; padding: 10px 14px; }

/* ---- 下層ページヒーロー ---- */
.page-hero { padding: 68px 0 52px; border-bottom: 1px solid var(--ring); background: linear-gradient(to bottom, var(--well), transparent); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(29px, 3.4vw, 40px); font-weight: 600; letter-spacing: 0.03em; line-height: 1.55; color: var(--pine); }
.page-hero .lead { margin-top: 14px; font-size: 14.5px; color: var(--ink-70); max-width: 62ch; text-wrap: pretty; }
.breadcrumb { font-family: var(--mono); font-size: 10.5px; color: var(--ink-50); margin-bottom: 20px; letter-spacing: 0.1em; }
.breadcrumb a:hover { color: var(--refl); }

/* ---- フィルタ ---- */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; padding: 20px 0 6px; }
.filter-bar .flabel { font-family: var(--mono); font-size: 10.5px; color: var(--ink-50); letter-spacing: 0.14em; margin-right: 4px; }
.chip { font-size: 12.5px; font-weight: 500; padding: 7px 18px; border-radius: 99px; cursor: pointer; background: transparent; box-shadow: inset 0 0 0 1px rgba(50,72,81,0.3); color: var(--ink-70); }
.chip.on { background: var(--pine); color: #fff; box-shadow: none; }

/* ---- チーム ---- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team .role { font-family: var(--latin); font-style: italic; font-size: 15px; letter-spacing: 0.06em; color: var(--grass-deep); }
.team h3 { font-family: var(--serif); font-size: 17.5px; font-weight: 600; margin: 4px 0 2px; color: var(--pine); }
.team h3 small { font-family: var(--mono); font-size: 10px; color: var(--ink-50); font-weight: 400; margin-left: 8px; letter-spacing: 0.08em; }

/* ---- CTA帯（pine × grass） ---- */
.cta-band { background: var(--pine); color: #eef4f3; padding: 80px 0; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; right: -80px; top: 50%; transform: translateY(-50%); width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(134,172,65,0.5), rgba(134,172,65,0.08) 68%, transparent 72%); }
.cta-band .inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; position: relative; }
.cta-band h2 { font-family: var(--serif); font-size: 27px; font-weight: 600; line-height: 1.9; }
.cta-band p { color: rgba(238,244,243,0.68); font-size: 14px; margin-top: 8px; max-width: 50ch; }
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- フッター（pine） ---- */
.site-footer { background: var(--pine); color: rgba(238,244,243,0.72); padding: 60px 0 30px; font-size: 13px; border-top: 3px solid var(--grass); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-brand { font-family: var(--serif); font-size: 24px; font-weight: 600; color: #fff; letter-spacing: 0.06em; }
.footer-mission { margin-top: 12px; font-size: 12.5px; color: rgba(238,244,243,0.5); max-width: 32ch; line-height: 2; }
.site-footer h4 { font-family: var(--latin); font-style: italic; font-size: 15px; font-weight: 500; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 14px; }
.site-footer li { margin-bottom: 9px; }
.site-footer a:hover { color: #fff; }
.footer-legal { border-top: 1px solid rgba(238,244,243,0.16); padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 11.5px; color: rgba(238,244,243,0.45); }
.footer-legal .links { display: flex; gap: 18px; }
.sns-row { display: flex; gap: 10px; margin-top: 18px; }
.sns-row a { font-family: var(--mono); font-size: 10.5px; padding: 5px 15px; border-radius: 99px; box-shadow: inset 0 0 0 1px rgba(238,244,243,0.3); letter-spacing: 0.06em; }
.sns-row a:hover { background: rgba(238,244,243,0.12); }

/* ---- 英語ページ ---- */
:lang(en) .hero h1, :lang(en) .section-head h2, :lang(en) .cta-band h2, :lang(en) .footer-brand { font-family: var(--latin); font-weight: 600; letter-spacing: 0.01em; }
:lang(en) .hero h1 { font-size: clamp(40px, 5vw, 64px); line-height: 1.25; text-transform: none; }
:lang(en) .card-body h3 { font-family: var(--sans); font-weight: 700; }

/* ---- 汎用 ---- */
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; } .mt-64 { margin-top: 64px; }
.center { text-align: center; }
.note { font-size: 12px; color: var(--ink-50); }
.prose { max-width: 68ch; }
.prose p + p { margin-top: 1.3em; }
.prose h3 { font-family: var(--serif); font-size: 18px; font-weight: 600; margin: 2em 0 0.6em; color: var(--pine); }

/* ---- トップ再構成 ---- */
.hero-photo { margin-top: 60px; }
.hero-photo img { width: 100%; height: auto; display: block; }
.hero { padding-bottom: 84px; }

.statement { padding: 130px 0 110px; background: var(--well); }
.statement-grid { display: grid; grid-template-columns: repeat(12, 1fr); row-gap: 64px; column-gap: 28px; }
.statement h2 { grid-column: 1 / 11; font-family: var(--serif); font-size: clamp(32px, 4.8vw, 58px); font-weight: 600; line-height: 1.75; letter-spacing: 0.02em; color: var(--pine); }
.statement .st-img { grid-column: 1 / 6; margin: 0; }
.statement .st-img figcaption { font-family: var(--mono); font-size: 10.5px; color: var(--ink-50); margin-top: 10px; letter-spacing: 0.08em; }
.statement .st-body { grid-column: 7 / 13; align-self: center; }
.statement .st-body p { font-size: 15px; line-height: 2.3; color: var(--ink-70); max-width: 42ch; text-wrap: pretty; }

.svc-list { border-top: 1px solid var(--ring); }
.svc-row { display: grid; grid-template-columns: 90px 280px 1fr auto; gap: 20px; align-items: baseline; padding: 28px 10px; border-bottom: 1px solid var(--ring); transition: background .15s ease, padding-left .15s ease; }
.svc-row .num { font-family: var(--latin); font-style: italic; font-size: 25px; font-weight: 500; color: var(--grass-deep); }
.svc-row h3 { font-family: var(--serif); font-size: 18.5px; font-weight: 600; color: var(--pine); }
.svc-row p { font-size: 13.5px; color: var(--ink-50); }
.svc-row .go { font-family: var(--mono); color: var(--ink-50); }
.svc-row:hover { background: var(--well); padding-left: 22px; }
.svc-row:hover .go { color: var(--grass-deep); }

.members-feature { display: grid; grid-template-columns: 3fr 2fr; gap: 28px; align-items: stretch; }
.members-feature .side { display: grid; gap: 28px; align-content: stretch; }
.card-lg .card-body { padding: 26px 30px 30px; }
.card-lg .card-body h3 { font-size: 22px; }
.card-lg .card-body p { font-size: 14px; }

.band .stagger > *:nth-child(2) { transform: translateY(40px); }
.band .stagger { padding-bottom: 40px; }
a.card:hover { transform: translateY(-4px); }
.band .stagger > a.card:nth-child(2):hover { transform: translateY(36px); }

/* ---- クラファン資料の反映（About増強・引用・連携） ---- */
.mv-grid { display: grid; gap: 18px; }
.mv { display: grid; grid-template-columns: 92px 1fr; gap: 16px; align-items: baseline; border-top: 1px solid var(--ring); padding-top: 16px; }
.mv-label { font-family: var(--latin); font-style: italic; font-size: 17px; color: var(--grass-deep); }
.mv p { font-family: var(--serif); font-size: 16.5px; font-weight: 600; line-height: 1.9; color: var(--pine); }

.data-card { border-top: 2px solid var(--grass); padding: 22px 4px 0; }
.data-card .d-num { font-family: var(--latin); font-style: italic; font-size: 54px; font-weight: 500; line-height: 1.1; color: #eef4f3; }
.data-card .d-num small { font-size: 18px; font-style: normal; font-family: var(--serif); margin-left: 4px; }
.data-card .d-body { margin-top: 14px; font-size: 14px; color: rgba(238,244,243,0.78); max-width: 44ch; text-wrap: pretty; }
.data-card .d-src { margin-top: 10px; font-family: var(--mono); font-size: 10.5px; color: rgba(238,244,243,0.45); letter-spacing: 0.04em; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--ring); box-shadow: 0 0 0 1px var(--ring); }
.values > div { background: var(--white); padding: 30px 26px 28px; }
.values .v-label { font-family: var(--latin); font-style: italic; font-size: 19px; color: var(--grass-deep); }
.values h3 { font-family: var(--serif); font-size: 17px; font-weight: 600; margin: 8px 0 8px; color: var(--pine); }
.values p { font-size: 13px; color: var(--ink-70); line-height: 1.95; text-wrap: pretty; }
.values-4 { grid-template-columns: repeat(4, 1fr); }
.values-4 > div { padding: 28px 22px 26px; }

.quote { padding: 110px 0; background: var(--white); border-top: 1px solid var(--ring); border-bottom: 1px solid var(--ring); }
.quote-grid { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; align-items: center; }
.quote .q-num { font-family: var(--latin); font-style: italic; font-size: clamp(64px, 8vw, 110px); font-weight: 500; color: var(--grass-deep); line-height: 1; }
.quote .q-num small { font-size: 0.35em; }
.quote blockquote { font-family: var(--serif); font-size: clamp(24px, 3vw, 36px); font-weight: 600; line-height: 1.85; letter-spacing: 0.02em; color: var(--pine); }
.quote blockquote em { font-style: normal; color: var(--refl); }
.quote .q-src { margin-top: 16px; font-family: var(--mono); font-size: 11px; color: var(--ink-50); letter-spacing: 0.04em; max-width: 62ch; }

.net-list { display: flex; gap: 8px; flex-wrap: wrap; }
.net-list .tag { font-size: 12px; padding: 5px 14px; }
.hero-trust { margin-top: 28px; font-size: 12px; color: var(--ink-50); line-height: 2; }
.hero-trust strong { color: var(--ink-70); font-weight: 500; }

/* ---- v5: 散らばったグリッド（会員ストーリー一覧・DESIGN.md §2採用） ---- */
.story-grid { display: grid; grid-template-columns: repeat(12, 1fr); column-gap: 28px; row-gap: 76px; padding-bottom: 64px; border-top: 1px dashed var(--ring); padding-top: 48px; }
.story-card { display: block; }
.story-grid .story-card:nth-child(3n+1) { grid-column: 1 / span 6; }
.story-grid .story-card:nth-child(3n+2) { grid-column: 8 / span 5; transform: translateY(64px); }
.story-grid .story-card:nth-child(3n+3) { grid-column: 3 / span 5; }
.story-card .ph { transition: opacity .2s ease; }
.story-card:hover .ph { opacity: 0.88; }
.story-card .sc-cat { font-family: var(--latin); font-style: italic; font-size: 15px; color: var(--grass-deep); margin: 16px 0 4px; }
.story-card h3 { font-family: var(--serif); font-size: clamp(19px, 2vw, 24px); font-weight: 600; line-height: 1.7; color: var(--pine); }
.story-card .sc-person { font-size: 13px; color: var(--ink-50); margin-top: 6px; }
.story-card .card-meta { margin-top: 12px; }
@media (max-width: 800px) {
  .story-grid .story-card { grid-column: 1 / -1 !important; transform: none !important; }
  .story-grid { row-gap: 48px; padding-bottom: 0; }
}

/* 縦書きキャプション（写真の短い添え書き用・DESIGN.md §2部分採用） */
@media (min-width: 801px) {
  .v-caption { writing-mode: vertical-rl; letter-spacing: 0.2em; }
  .statement .st-img { position: relative; }
  .statement .st-img figcaption.v-caption { position: absolute; top: 12px; right: -28px; margin: 0; }
}

/* ---- v4 追加: 横スクロール列（体験・会員 6件表示） ---- */
.hscroll { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(260px, 28vw, 330px); gap: 22px; overflow-x: auto; padding: 4px 4px 18px; -webkit-overflow-scrolling: touch; }
.hscroll::-webkit-scrollbar { height: 8px; }
.hscroll::-webkit-scrollbar-track { background: var(--well); border-radius: 99px; }
.hscroll::-webkit-scrollbar-thumb { background: var(--mist); border-radius: 99px; }
.band .hscroll::-webkit-scrollbar-track { background: rgba(238,244,243,0.12); }
.hscroll-hint { font-family: var(--mono); font-size: 10.5px; color: var(--ink-50); letter-spacing: 0.1em; margin-top: 6px; }
.band .hscroll-hint { color: rgba(238,244,243,0.45); }

/* ---- v4 追加: クラファン達成メーター ---- */
.cf-panel { border-top: 2px solid var(--grass); padding-top: 18px; }
.cf-panel .cf-num { font-family: var(--serif); font-size: 52px; font-weight: 600; line-height: 1.2; color: var(--pine); }
.cf-panel .cf-num small { font-size: 18px; margin-left: 2px; }
.cf-bar { position: relative; height: 12px; border-radius: 99px; background: var(--well); overflow: visible; margin-top: 14px; }
.cf-fill { height: 100%; width: 0; border-radius: 99px; background: linear-gradient(90deg, var(--mist), var(--grass)); }
.cf-fill.run { animation: cf-fill 1.8s cubic-bezier(.22,.9,.35,1) forwards; }
@keyframes cf-fill { to { width: 100%; } }
@media (prefers-reduced-motion: reduce) { .cf-fill { width: 100%; } .cf-fill.run { animation: none; } }
.cf-goal { position: absolute; top: -6px; bottom: -6px; left: 51.8%; width: 2px; background: var(--pine); opacity: 0.5; }
.cf-goal::after { content: "目標 100%"; position: absolute; top: -22px; left: -24px; font-family: var(--mono); font-size: 10px; color: var(--ink-50); white-space: nowrap; }
.cf-label { font-size: 12px; color: var(--ink-50); margin-top: 16px; line-height: 1.8; }

/* ---- v4 追加: ネットワーク地図パネル ---- */
.net-panel { border-top: 2px solid var(--grass); padding-top: 18px; }
.net-panel .net-map { border-radius: var(--radius-inner); overflow: hidden; box-shadow: 0 0 0 1px var(--ring); }
.net-panel .net-map img { width: 100%; height: auto; display: block; }

/* ---- v4 追加: プログラム表 ---- */
.prog-list { border-top: 1px solid var(--ring); }
.prog-row { display: grid; grid-template-columns: 220px 130px 1fr; gap: 24px; padding: 26px 10px; border-bottom: 1px solid var(--ring); align-items: baseline; }
.prog-row h3 { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--pine); }
.prog-row .freq { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--grass-deep); background: rgba(134,172,65,0.12); border-radius: 99px; padding: 4px 12px; justify-self: start; white-space: nowrap; }
.prog-row .desc { font-size: 13.5px; color: var(--ink-70); }
.prog-row .desc strong { display: block; font-size: 12.5px; color: var(--refl); font-weight: 700; margin-top: 6px; }

/* ---- モバイルナビ（ハンバーガー・nav.jsが生成） ---- */
.nav-toggle { display: none; width: 44px; height: 44px; border: none; background: transparent; cursor: pointer; border-radius: 10px; padding: 10px; flex: none; }
.nav-toggle span { display: block; height: 2px; background: var(--pine); border-radius: 2px; margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }
.mobile-nav { display: none; }

/* ---- レスポンシブ ---- */
@media (max-width: 960px) {
  .gnav { display: none; }
  .header-tools { margin-left: auto; }
  .nav-toggle { display: block; }
  .mobile-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--ring); box-shadow: 0 18px 34px rgba(50,72,81,0.14); padding: 8px 24px 22px; }
  .site-header.open .mobile-nav { display: block; }
  .mobile-nav a:not(.btn) { display: block; padding: 13px 4px; font-size: 15px; font-weight: 600; color: var(--pine); border-bottom: 1px dashed var(--ring); }
  .mobile-nav a.on { color: var(--refl); }
  .mobile-nav .btn { margin-top: 18px; width: 100%; justify-content: center; display: inline-flex; }
  .mobile-nav .lang { display: flex; justify-content: center; gap: 6px; margin-top: 16px; }
  .mobile-nav .lang a:not(.btn) { display: inline-block; padding: 4px 10px; border-bottom: none; font-size: 11px; font-weight: 500; color: var(--ink-50); }
  .mobile-nav .lang a.on { background: var(--pine); color: #fff; border-radius: 99px; }
  .site-header.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid, .footer-grid { grid-template-columns: 1fr; }
  .grid-3, .team, .steps { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 20px; }
  .statement h2, .statement .st-img, .statement .st-body { grid-column: 1 / -1; }
  .values { grid-template-columns: 1fr; }
  .values-4 { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; gap: 20px; }
  .statement-grid { row-gap: 40px; }
  .members-feature { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 64px 1fr auto; }
  .svc-row p { grid-column: 2 / 3; margin-top: -6px; }
  .prog-row { grid-template-columns: 1fr; gap: 8px; }
  .band .stagger > *:nth-child(2) { transform: none; }
  .band .stagger { padding-bottom: 0; }
}
@media (max-width: 600px) {
  .grid-3, .grid-2, .team, .steps { grid-template-columns: 1fr; }
  .values-4 { grid-template-columns: 1fr; }
  .well-inner { padding: 24px; }
  .header-tools .btn { display: none; }
  .header-tools .lang { display: none; }  /* 言語切替はモバイルメニュー内に表示 */
  .brand-logo { height: 40px; }
  .brand-sub { display: none; }           /* 幅圧迫でトグルが画面外に出るのを防ぐ */
  .header-inner { gap: 12px; padding: 10px 16px; }
  .section, .band { padding: 64px 0; }
  /* ヒーロー: モバイルで見出しを2行に収め、入会案内ボタンをファーストビュー内に */
  .hero { padding: 40px 0 0; }
  .hero h1 { font-size: 30px; line-height: 1.5; letter-spacing: 0.01em; }
  .hero-grid { gap: 24px; }
  .hero-side { line-height: 1.9; }
  .hero-actions { margin-top: 20px; }
  .hero-photo { margin-top: 28px; }
  /* 法人概要テーブル: モバイルは項目名を上・内容を下の縦積みに（1文字折返し防止） */
  .spec-table th, .spec-table td { display: block; width: auto; padding: 12px 0 0; border-bottom: none; }
  .spec-table td { padding: 6px 0 14px; border-bottom: 1px solid var(--ring); }
  /* お問い合わせ: モバイルはフォームと案内サイドを1列に */
  .contact-layout { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   動き演出（v5）: スクロールリビール / ヒーロー入場 / Ken Burns
   すべて prefers-reduced-motion で無効化。JS(reveal.js)が .is-in を付与。
   ============================================================ */

/* --- スクロールリビール: 縮んだ状態から通常サイズへ素直に収束（弾みなし）＋下からスライド --- */
.reveal { opacity: 0; transform: translateY(22px) scale(.94); transition: opacity .5s ease-out, transform .7s cubic-bezier(.22,.61,.36,1); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }
/* 子要素を少しずつ遅らせる（stagger）。data-reveal-stagger を付けた親の直下 */
[data-reveal-stagger] > .reveal { transition-delay: calc(var(--i, 0) * 100ms); }

/* --- ヒーロー入場: 読み込み時に見出し→リード→ボタン→写真の順で --- */
.hero h1, .hero .eyebrow, .hero-side, .hero-photo {
  opacity: 0; transform: translateY(18px) scale(.96);
  animation: hero-in .8s cubic-bezier(.22,.61,.36,1) forwards;
}
.hero .eyebrow { animation-delay: .08s; }
.hero h1 { animation-delay: .2s; }
.hero-side { animation-delay: .36s; }
.hero-photo { animation-delay: .52s; transform: translateY(24px) scale(.97); }
@keyframes hero-in { to { opacity: 1; transform: none; } }

/* --- Ken Burns: ヒーロー写真をゆっくりズーム＆パン --- */
.hero-photo { overflow: hidden; border-radius: var(--radius-inner); }
.hero-photo picture, .hero-photo > img { display: block; }
.hero-photo img {
  transform-origin: 60% 40%;
  animation: ken-burns 22s ease-in-out 1s infinite alternate;
  will-change: transform;
}
@keyframes ken-burns {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to   { transform: scale(1.10) translate3d(-1.5%, -1.2%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero h1, .hero .eyebrow, .hero-side, .hero-photo { opacity: 1; transform: none; animation: none; }
  .hero-photo img { animation: none; }
}

/* ---- 年間スケジュール（services.html・CMS連動） ---- */
.sch-legend { display: flex; flex-wrap: wrap; gap: 10px 28px; padding: 16px 20px; margin-bottom: 22px;
  background: var(--white); border-radius: 10px; box-shadow: 0 0 0 1px var(--ring); }
.sch-legend-item { display: flex; align-items: baseline; gap: 10px; font-size: 12.5px; color: var(--ink-70); }
.sch-type { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; color: var(--grass-deep);
  text-transform: none; white-space: nowrap; }

.sch-list { display: grid; gap: 1px; background: var(--ring); box-shadow: 0 0 0 1px var(--ring); border-radius: 10px; overflow: hidden; }
.sch-month { display: grid; grid-template-columns: 104px 1fr; gap: 1px; background: var(--ring); }
.sch-when { background: var(--white); padding: 18px 16px; display: flex; flex-direction: column; justify-content: center; }
.sch-when .sch-y { font-family: var(--mono); font-size: 10.5px; color: var(--ink-50); letter-spacing: 0.08em; }
.sch-when .sch-m { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--pine); line-height: 1.3; }

.sch-cells { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--ring); }
.sch-cell { background: var(--white); padding: 16px 18px 18px; }
.sch-cell.is-empty { background: rgba(16,24,40,0.015); }
.sch-cell .sch-type { display: block; margin-bottom: 8px; }
.sch-cell p { font-size: 13px; line-height: 1.85; color: var(--ink); text-wrap: pretty; }
.sch-cell ul { margin: 6px 0 0; padding-left: 1.1em; }
.sch-cell li { font-size: 12.5px; line-height: 1.8; color: var(--ink-70); }
.sch-cell .sch-tag { display: inline-block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em;
  color: var(--reflection); background: rgba(52,103,92,0.08); border-radius: 4px; padding: 2px 7px; margin-bottom: 6px; }
.sch-none { color: var(--ink-50); }
.sch-tbd { color: var(--ink-50); font-size: 12.5px; }
.sch-tbd::before { content: "…"; margin-right: 6px; letter-spacing: 0.1em; }

@media (max-width: 960px) {
  .sch-month { grid-template-columns: 1fr; }
  .sch-when { flex-direction: row; align-items: baseline; gap: 10px; padding: 12px 16px; background: rgba(16,24,40,0.03); }
  .sch-cells { grid-template-columns: 1fr; }
}
