/* =========================================================
   感謝ご飯 ｜ クラウドファンディング サイト
   デザイントークン & 共通スタイル
   ========================================================= */

:root {
  /* 配色 */
  --bg:         #f6f0e6;   /* 生成り（基調） */
  --bg-alt:     #efe7d9;   /* 一段濃い生成り（交互セクション） */
  --bg-deep:    #241e1a;   /* フッター／濃色面 */
  --card:       #fffdf8;   /* カード白 */
  --ink:        #2a2320;   /* 本文・見出し */
  --ink-soft:   #6f665b;   /* 補足テキスト */
  --ink-mute:   #9a8f80;   /* 注記 */
  --cta:        #9e2b25;   /* 朱赤（支援・強調） */
  --cta-deep:   #872019;
  --accent:     #b08d4f;   /* 金（ラベル・罫） */
  --accent-ink: #a98a4f;
  --line:       rgba(42, 35, 32, .10);
  --line-soft:  rgba(42, 35, 32, .06);

  /* 書体 */
  --serif: 'Shippori Mincho', 'Hiragino Mincho ProN', serif;       /* 見出し（明朝） */
  --sans:  'Zen Kaku Gothic New', 'Hiragino Sans', sans-serif;     /* 本文 */
  --en:    'Cormorant Garamond', serif;                            /* 欧文ラベル・数字 */

  /* リズム */
  --section-y: 80px;        /* セクション縦余白（仕様：80pxで統一） */
  --shell: 1200px;          /* 最大幅 */
  --gutter: 32px;           /* 左右余白 */
  --radius: 14px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.5; letter-spacing: .03em; }

/* スキップリンク（アクセシビリティ） */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--cta); color: #fff; padding: 10px 18px; border-radius: 0 0 6px 0;
  font-size: 14px; font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--cta); outline-offset: 3px; border-radius: 3px; }

/* スマホ時だけ有効になる改行（PCでは無視） */
br.sp { display: none; }
@media (max-width: 768px) { br.sp { display: inline; } }

/* ---------- レイアウト部品 ---------- */
.shell { max-width: var(--shell); margin: 0 auto; padding: 0 var(--gutter); }
.shell--narrow { max-width: 880px; }
.shell--mid    { max-width: 1100px; }

.section { padding: var(--section-y) 0; }
.section--alt { background: var(--bg-alt); }

/* セクション見出しブロック */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--accent); }
.eyebrow span {
  font-family: var(--en); font-size: 13px; letter-spacing: .34em;
  text-transform: uppercase; color: var(--accent-ink);
}
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 {
  font-size: clamp(27px, 5vw, 42px); margin: 0 0 18px; color: var(--ink);
  text-wrap: balance;
}
.section-head .lead {
  max-width: 600px; margin: 0 auto; color: var(--ink-soft); line-height: 1.95;
  text-wrap: pretty;
}

/* ボタン */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-size: 15px; font-weight: 700; letter-spacing: .06em;
  text-decoration: none; border: none; cursor: pointer; border-radius: 6px;
  padding: 16px 30px; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn--cta { background: var(--cta); color: #fff; box-shadow: 0 16px 34px -16px rgba(158, 43, 37, .9); }
.btn--cta:hover { background: var(--cta-deep); transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.4); }
.btn--ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.btn--lg { padding: 19px 44px; font-size: 16px; }
.btn--outline { background: transparent; color: var(--cta); border: 1.5px solid var(--cta); }
.btn--outline:hover { background: var(--cta); color: #fff; transform: translateY(-2px); }

/* カード共通 */
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
}

/* 飾り罫 */
.divider-knot { display: block; width: 280px; max-width: 64%; margin: 30px auto 0; opacity: .9; }

/* =========================================================
   ヘッダー
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246, 240, 230, .9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: var(--shell); margin: 0 auto; padding: 13px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.brand img { height: 42px; width: auto; }
.brand__name {
  font-family: var(--serif); font-size: 18px; font-weight: 600;
  letter-spacing: .18em; color: var(--ink); white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-size: 14px; color: #4a443c; text-decoration: none; letter-spacing: .04em;
  position: relative; padding: 4px 0;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--cta); transition: width .3s ease;
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }
.nav__cta {
  display: inline-flex; align-items: center; padding: 11px 24px; border-radius: 6px;
  background: var(--cta); color: #fff; font-size: 14px; font-weight: 700;
  text-decoration: none; letter-spacing: .06em; transition: background .25s ease;
}
.nav__cta:hover { background: var(--cta-deep); }

/* ハンバーガー */
.hamburger {
  display: none; width: 44px; height: 44px; border: none; background: transparent;
  cursor: pointer; padding: 10px; position: relative; z-index: 80;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--ink); margin: 0 auto;
  border-radius: 2px; transition: transform .35s ease, opacity .25s ease;
}
.hamburger span + span { margin-top: 6px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* モバイルドロワー */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(16, 10, 6, .42); z-index: 65;
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* =========================================================
   フッター
   ========================================================= */
.site-footer { background: var(--bg-deep); color: #9d9388; padding: 54px 0; }
.site-footer__inner {
  max-width: var(--shell); margin: 0 auto; padding: 0 var(--gutter);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
}
.site-footer .brand__name { color: #ece4d6; font-size: 16px; letter-spacing: .14em; }
.footer-logo { display: inline-flex; background: var(--bg); border-radius: 12px; padding: 8px 12px; }
.footer-logo img { height: 36px; width: auto; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 22px 26px; }
.footer-nav a { font-size: 13.5px; color: #ddd4c6; text-decoration: none; transition: color .2s ease; }
.footer-nav a:hover { color: #fff; }
.footer-copy {
  width: 100%; text-align: center; border-top: 1px solid rgba(157, 147, 136, .28);
  padding-top: 24px; font-family: var(--en); font-size: 13px; letter-spacing: .1em; color: #c3bbad;
}

/* =========================================================
   スクロールアニメーション（フェードインアップ）
   ========================================================= */
.js .reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }
/* 連なる要素のずらし */
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* =========================================================
   ヒーロー
   ========================================================= */
.hero { position: relative; min-height: 660px; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(16,10,6,.86) 0%, rgba(16,10,6,.6) 45%, rgba(16,10,6,.32) 100%);
}
.hero__scroll {
  position: absolute; left: 16px; bottom: 34px; writing-mode: vertical-rl;
  font-family: var(--en); font-size: 12px; letter-spacing: .4em; color: rgba(255,255,255,.5);
}
.hero__inner {
  position: relative; max-width: var(--shell); width: 100%; margin: 0 auto;
  padding: clamp(56px, 8vw, 80px) var(--gutter);
  display: flex; flex-wrap: wrap; gap: 48px 56px; align-items: center;
}
.hero__copy { flex: 1 1 360px; }
.hero .eyebrow span { color: #dcc08a; font-size: 14px; }
.hero .eyebrow::before { background: #d8b878; width: 34px; }
.hero h1 {
  font-size: clamp(34px, 7vw, 60px); line-height: 1.4; letter-spacing: .04em;
  color: #fff; margin: 0 0 28px; text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero__text {
  max-width: 480px; font-size: 16.5px; line-height: 2.05; color: rgba(255,255,255,.88);
  margin: 0 0 40px; text-wrap: pretty;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* 概要カード */
.summary {
  flex: 1 1 320px; max-width: 440px; background: #f8f3ea; border-radius: 16px;
  padding: 38px 36px; box-shadow: 0 30px 70px -30px rgba(0,0,0,.6);
}
.summary__title {
  font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--ink);
  margin-bottom: 26px; letter-spacing: .04em;
}
.summary__list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.summary__row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  border-bottom: 1px solid var(--line); padding-bottom: 16px;
}
.summary__row:last-child { border-bottom: none; padding-bottom: 0; }
.summary__label { font-size: 13.5px; color: var(--ink-soft); letter-spacing: .04em; white-space: nowrap; }
.summary__num-en {
  font-family: var(--en); font-size: 34px; font-weight: 600; color: var(--cta); line-height: 1;
}
.summary__num-jp {
  font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--ink);
  line-height: 1; white-space: nowrap;
}
.summary__unit { font-size: 14px; margin-left: 3px; }
.summary__note { font-size: 12.5px; color: var(--ink-mute); margin: 16px 0 0; text-align: center; line-height: 1.7; }
.summary .btn { width: 100%; }

/* =========================================================
   課題・想い
   ========================================================= */
.problems {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.problem-card { padding: 40px 34px; }
.problem-card__n { font-family: var(--en); font-size: 38px; color: var(--accent); line-height: 1; margin-bottom: 20px; }
.problem-card h3 { font-size: 21px; line-height: 1.6; margin: 0 0 14px; }
.problem-card p { font-size: 14.5px; line-height: 1.95; color: var(--ink-soft); }
.about-conclusion {
  font-family: var(--serif); font-size: clamp(20px, 3.4vw, 25px); line-height: 1.9; color: var(--ink);
  margin: 60px 0 0; text-align: center; letter-spacing: .04em; text-wrap: balance;
}
.about-conclusion strong { color: var(--cta); font-weight: 700; }

/* =========================================================
   サービス
   ========================================================= */
.features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-bottom: 60px;
}
.feature-card { padding: 36px 30px; transition: transform .3s ease, box-shadow .3s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -28px rgba(42,35,32,.4); }
.feature-card__icon { display: block; height: 74px; width: auto; margin-bottom: 18px; color: var(--cta); }
.feature-card__icon svg { display: block; width: 56px; height: 56px; }
.feature-card__label {
  font-family: var(--en); font-size: 13px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.feature-card h3 { font-size: 22px; line-height: 1.5; margin: 0 0 14px; }
.feature-card p { font-size: 14.5px; line-height: 1.95; color: var(--ink-soft); }

.scene-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.scene {
  position: relative; aspect-ratio: 5 / 4; border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: flex-end; padding: 20px;
}
.scene img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.scene:hover img { transform: scale(1.05); }
.scene::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(20,12,8,.5));
}
.scene__tag {
  position: relative; display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px;
  background: rgba(42,35,32,.78); color: #f3ead4; border-radius: 999px; font-size: 12.5px; letter-spacing: .04em;
}

/* =========================================================
   リターン
   ========================================================= */
.return-tabs { display: flex; justify-content: center; margin-bottom: 18px; }
.return-tabs__group { display: inline-flex; gap: 4px; padding: 5px; background: #e7ddca; border-radius: 999px; }
.return-tab {
  padding: 13px 30px; border-radius: 999px; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 15px; font-weight: 500; background: transparent;
  color: var(--ink-soft); transition: all .25s ease;
}
.return-tab[aria-selected="true"] { background: var(--cta); color: #fff; font-weight: 700; }

.return-badge { display: flex; justify-content: center; margin-bottom: 26px; }
.return-badge span {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 22px;
  background: var(--bg-deep); color: #e3c07f; border-radius: 999px; font-size: 13.5px; letter-spacing: .06em;
}
.return-badge .star { color: var(--cta); }
.return-note { text-align: center; font-size: 14px; color: var(--accent-ink); margin: 0 0 40px; }

.returns { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.return-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.return-card:hover { transform: translateY(-5px); box-shadow: 0 26px 54px -30px rgba(42,35,32,.5); }
.return-card--featured {
  background: #fffaf0; border: 1.5px solid var(--cta);
  box-shadow: 0 20px 44px -28px rgba(158,43,37,.45);
}
.return-card__tag {
  align-self: flex-start; padding: 5px 14px; border-radius: 999px; background: var(--cta);
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .08em;
}
.return-card__price { display: flex; align-items: baseline; gap: 4px; }
.return-card__yen { font-family: var(--en); font-size: 20px; color: var(--ink-mute); line-height: 1; }
.return-card__amount {
  font-family: var(--en); font-size: 46px; font-weight: 600; color: var(--ink); line-height: 1; letter-spacing: .01em;
}
.return-card h3 { font-size: 20px; line-height: 1.5; margin: 0; }
.return-card p { font-size: 14px; line-height: 1.9; color: var(--ink-soft); margin: 0; flex: 1; }
.return-card__link {
  display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700;
  color: var(--cta); text-decoration: none; letter-spacing: .04em;
}
.return-card__link span { font-family: serif; transition: transform .25s ease; }
.return-card__link:hover span { transform: translateX(4px); }

/* =========================================================
   お客様の声
   ========================================================= */
.voices { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.voice-card { padding: 36px 32px; display: flex; flex-direction: column; gap: 18px; }
.voice-card__quote-mark { font-family: var(--en); font-size: 52px; color: var(--accent); line-height: .6; height: 26px; }
.voice-card__body { font-size: 15px; line-height: 1.95; color: var(--ink); margin: 0; flex: 1; }
.voice-card__person { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 18px; }
.voice-card__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(160deg, #d6c8ac, #b29a76);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px; color: #fff;
}
.voice-card__meta strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); }
.voice-card__meta span { font-size: 12.5px; color: var(--ink-mute); }

/* =========================================================
   チーム
   ========================================================= */
.team { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.team-card { padding: 40px 32px; text-align: center; }
.team-card__photo {
  width: 108px; height: 108px; border-radius: 50%; margin: 0 auto 22px;
  background: linear-gradient(160deg, #d6c8ac, #b29a76);
  display: flex; align-items: center; justify-content: center;
}
.team-card__photo span { font-family: var(--serif); font-size: 13px; color: #7a6f5c; }
.team-card__role {
  font-family: var(--en); font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.team-card__quote { font-family: var(--serif); font-size: 18px; line-height: 1.8; color: var(--ink); margin: 0 0 10px; text-wrap: pretty; }
.team-card__name { font-size: 13px; color: var(--ink-mute); }

/* =========================================================
   ロードマップ
   ========================================================= */
.roadmap { display: flex; flex-direction: column; }
.roadmap__row {
  display: grid; grid-template-columns: clamp(92px, 24vw, 170px) 1fr; gap: clamp(16px, 4vw, 30px);
  padding: 28px 0; border-top: 1px solid var(--line); align-items: start;
}
.roadmap__row:last-child { border-bottom: 1px solid var(--line); }
.roadmap__date { font-family: var(--en); font-size: 18px; letter-spacing: .12em; color: var(--cta); padding-top: 4px; }
.roadmap__row h3 { font-weight: 600; font-size: 22px; line-height: 1.5; margin: 0 0 8px; }
.roadmap__row p { font-size: 15px; line-height: 1.9; color: var(--ink-soft); }

/* =========================================================
   支援の流れ
   ========================================================= */
.flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.flow-card { padding: 34px 28px; }
.flow-card__n {
  display: inline-flex; width: 42px; height: 42px; border-radius: 50%; background: var(--cta);
  color: #fff; align-items: center; justify-content: center;
  font-family: var(--en); font-size: 18px; margin-bottom: 18px;
}
.flow-card h3 { font-size: 19px; line-height: 1.5; margin: 0 0 10px; }
.flow-card p { font-size: 14px; line-height: 1.9; color: var(--ink-soft); }

/* =========================================================
   FAQ アコーディオン
   ========================================================= */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq-item__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 28px; background: transparent; border: none; cursor: pointer; text-align: left;
  font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--ink); line-height: 1.6;
}
.faq-item__sign { font-family: var(--en); font-size: 24px; color: var(--cta); flex-shrink: 0; transition: transform .3s ease; }
.faq-item__q[aria-expanded="true"] .faq-item__sign { transform: rotate(180deg); }
.faq-item__a { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .45s ease, opacity .45s ease; }
.faq-item__a p { padding: 0 28px 24px; margin: 0; font-size: 14.5px; line-height: 1.95; color: var(--ink-soft); }
.faq-item.is-open .faq-item__a { max-height: 360px; opacity: 1; }

/* =========================================================
   下層CTA
   ========================================================= */
.cta-band { position: relative; padding: clamp(72px, 11vw, 130px) 0; text-align: center; overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,10,6,.62), rgba(16,10,6,.82));
}
.cta-band__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 var(--gutter); }
.cta-band__logo {
  display: inline-flex; background: #fff; border-radius: 20px; padding: 18px 28px; margin-bottom: 30px;
  box-shadow: 0 20px 48px -22px rgba(0,0,0,.55);
}
.cta-band__logo img { width: 120px; height: auto; }
.cta-band h2 {
  font-size: clamp(29px, 6vw, 44px); line-height: 1.5; letter-spacing: .04em; margin: 0 0 22px;
  color: #fff; text-wrap: balance;
}
.cta-band__text { font-size: 16.5px; line-height: 2; color: #f3ead4; margin: 0 0 40px; }

/* =========================================================
   下層ページ共通：ページヘッダー & 本文
   ========================================================= */
.page-hero {
  position: relative; background: var(--bg-alt); padding: clamp(56px, 9vw, 88px) 0 clamp(48px, 7vw, 64px);
  text-align: center; border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { font-size: clamp(28px, 5.4vw, 44px); color: var(--ink); margin: 0 0 16px; }
.page-hero p { max-width: 560px; margin: 0 auto; color: var(--ink-soft); line-height: 1.95; }

.breadcrumb { font-size: 13px; color: var(--ink-mute); letter-spacing: .03em; margin-bottom: 18px; }
.breadcrumb a { color: var(--accent-ink); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; }

/* 記事本文（プライバシー・特商法など） */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 {
  font-size: 22px; margin: 48px 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 17px; margin: 28px 0 10px; color: var(--ink); }
.prose p { margin: 0 0 16px; color: var(--ink-soft); line-height: 1.95; }
.prose ul, .prose ol { margin: 0 0 16px 1.4em; color: var(--ink-soft); line-height: 1.95; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--cta); }

/* 定義テーブル（会社概要・特商法） */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { text-align: left; vertical-align: top; padding: 18px 20px; border-bottom: 1px solid var(--line); font-size: 15px; line-height: 1.9; }
.spec-table th {
  width: 32%; font-family: var(--serif); font-weight: 600; color: var(--ink);
  background: rgba(176, 141, 79, .06); white-space: nowrap;
}
.spec-table td { color: var(--ink-soft); }
@media (max-width: 560px) {
  .spec-table, .spec-table tbody, .spec-table tr, .spec-table th, .spec-table td { display: block; width: 100%; }
  .spec-table th { border-bottom: none; padding-bottom: 4px; white-space: normal; }
  .spec-table td { padding-top: 4px; }
}

/* =========================================================
   ギャラリー（掲載店）＋ フィルター
   ========================================================= */
.filter-bar {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 28px; margin-bottom: 36px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px 28px; align-items: end;
}
.filter-group__label {
  display: block; font-family: var(--en); font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.filter-group__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--line); background: var(--bg); color: var(--ink-soft);
  font-family: var(--sans); font-size: 13px; padding: 7px 15px; border-radius: 999px; cursor: pointer;
  transition: all .2s ease;
}
.chip:hover { border-color: var(--accent); color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--cta); border-color: var(--cta); color: #fff; }
.filter-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-count { font-size: 14px; color: var(--ink-soft); }
.filter-count strong { font-family: var(--en); font-size: 22px; color: var(--cta); margin: 0 3px; }
.filter-reset { background: none; border: none; color: var(--accent-ink); font-size: 13.5px; cursor: pointer; text-decoration: underline; padding: 4px; }

.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.shop-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease;
}
.shop-card:hover { transform: translateY(-5px); box-shadow: 0 26px 54px -30px rgba(42,35,32,.45); }
.shop-card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.shop-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.shop-card:hover .shop-card__media img { transform: scale(1.06); }
.shop-card__area {
  position: absolute; left: 14px; top: 14px; padding: 5px 12px; border-radius: 999px;
  background: rgba(42,35,32,.78); color: #f3ead4; font-size: 12px; letter-spacing: .04em;
}
.shop-card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.shop-card__taste { font-family: var(--en); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
.shop-card h3 { font-size: 21px; line-height: 1.5; margin: 0; }
.shop-card__desc { font-size: 14px; line-height: 1.9; color: var(--ink-soft); margin: 0; flex: 1; }
.shop-card__foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 14px; }
.shop-card__budget { font-size: 13.5px; color: var(--ink-soft); }
.shop-card__budget strong { font-family: var(--en); font-size: 17px; color: var(--ink); margin-right: 2px; }
.shop-card__heart { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--cta); }
.gallery-empty { text-align: center; padding: 60px 20px; color: var(--ink-mute); font-size: 15px; display: none; }
.gallery-empty.is-shown { display: block; }

/* =========================================================
   お問い合わせフォーム
   ========================================================= */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }
.contact-aside { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 32px; }
.contact-aside h2 { font-size: 20px; margin: 0 0 18px; }
.contact-aside dl { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-ic { width: 42px; height: auto; flex-shrink: 0; margin-top: 2px; }
.contact-aside dt { font-family: var(--en); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.contact-aside dd { font-size: 15px; color: var(--ink); line-height: 1.7; }
.contact-aside dd small { color: var(--ink-mute); font-size: 13px; }

.form-note {
  background: rgba(176,141,79,.08); border: 1px solid var(--line); border-radius: 10px;
  padding: 16px 18px; font-size: 13.5px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 28px;
}
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.field .req { color: var(--cta); font-size: 12px; margin-left: 6px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--card);
  border: 1px solid var(--line); border-radius: 8px; padding: 13px 15px; line-height: 1.6;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(176,141,79,.16);
}
.field textarea { resize: vertical; min-height: 140px; }
.form-actions { margin-top: 8px; }
.form-actions .btn { width: 100%; }

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 920px) {
  .scene-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --section-y: 60px; --gutter: 22px; }

  .nav { display: none; }
  .hamburger { display: block; }

  /* ドロワー化したナビ */
  .nav.is-drawer {
    display: flex; position: fixed; top: 0; right: 0; z-index: 70;
    flex-direction: column; align-items: stretch; gap: 0;
    width: min(80vw, 320px); height: 100dvh; padding: 92px 28px 32px;
    background: var(--bg); box-shadow: -18px 0 50px -24px rgba(0,0,0,.45);
    transform: translateX(100%); transition: transform .38s cubic-bezier(.5, .12, .2, 1);
    overflow-y: auto;
  }
  .nav.is-drawer.is-open { transform: translateX(0); }
  .nav.is-drawer .nav__link {
    font-size: 16px; padding: 18px 4px; border-bottom: 1px solid var(--line);
    opacity: 0; transform: translateX(16px); transition: opacity .3s ease, transform .3s ease;
  }
  .nav.is-drawer.is-open .nav__link { opacity: 1; transform: none; }
  .nav.is-drawer.is-open .nav__link:nth-child(1) { transition-delay: .10s; }
  .nav.is-drawer.is-open .nav__link:nth-child(2) { transition-delay: .16s; }
  .nav.is-drawer.is-open .nav__link:nth-child(3) { transition-delay: .22s; }
  .nav.is-drawer.is-open .nav__link:nth-child(4) { transition-delay: .28s; }
  .nav.is-drawer.is-open .nav__link:nth-child(5) { transition-delay: .34s; }
  .nav.is-drawer .nav__link::after { display: none; }
  .nav.is-drawer .nav__cta {
    margin-top: 24px; justify-content: center; padding: 16px; font-size: 15px;
    opacity: 0; transform: translateX(16px); transition: opacity .3s ease .40s, transform .3s ease .40s, background .25s ease;
  }
  .nav.is-drawer.is-open .nav__cta { opacity: 1; transform: none; }

  .hero { min-height: 0; }
  .hero__veil { background: linear-gradient(180deg, rgba(16,10,6,.6) 0%, rgba(16,10,6,.78) 100%); }
  .hero__inner { padding: 56px var(--gutter) 64px; gap: 36px; }
  .hero__scroll { display: none; }
  .summary { max-width: 100%; padding: 32px 26px; }

  .scene-grid { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 40px; }
  .about-conclusion { margin-top: 44px; }
  .returns, .features { gap: 16px; }

  .site-footer__inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-copy { text-align: left; }
}

@media (max-width: 480px) {
  .brand__name { display: none; }
  .returns, .shop-grid, .problems, .team, .voices { grid-template-columns: 1fr; }
  .return-card__amount { font-size: 40px; }
}
