/* =========================================================
   厚切りとんかつランチ LP  ―  styles.css
   かつ将・ぽるしぇ本店 / 和モダン・ダークテーマ
   デザイントークンは :root のCSS変数で一元管理。
   ブランド色を変えるときは --primary / --primary-light だけ触ればよい。
   ブレークポイントは 600px 単一（LP.md 6-3）。
   ========================================================= */

:root {
  /* ブランド色（横展開時はこの2つを差し替える） */
  --primary:       #b39355;   /* 金 */
  --primary-light: #d9bc7f;   /* 明るい金（ホバー） */
  --accent-red:    #8e1f24;   /* 差し色の赤 */

  /* ダーク背景（地の色） */
  --dark:   #16120e;
  --dark-2: #100d0a;
  --dark-3: #1c1712;

  /* ライト面（紙・和紙） */
  --paper:   #efeadf;
  --paper-2: #e9e4d8;
  --paper-3: #f4f0e6;
  --cream:   #efe8da;

  /* 文字色 */
  --ink:      #241f1a;
  --ink-soft: #57503f;
  --ink-mute: #6d6450;
  --on-dark:      #faf5e9;
  --on-dark-soft: #d8cfbe;
  --on-dark-mute: #8f7f63;

  --maxw: 1240px;
  --cut: 3.5vw;   /* セクション斜めカットの高さ */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--ink);
  background: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: opacity .25s, background .25s, color .25s, border-color .25s; }
a:hover { color: var(--primary-light); }

.mincho { font-family: 'Shippori Mincho B1', serif; }
.tate { writing-mode: vertical-rl; text-orientation: mixed; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: clamp(16px, 3vw, 32px); padding-right: clamp(16px, 3vw, 32px); }

/* ---------- 写真プレースホルダー ----------
   実写真が images/photos/<name>.jpg に置かれると <img> が全面を覆う。
   まだ無い間は下地グラデ＋ラベルが見える（差し替えは HTML 編集不要）。 */
.ph { position: relative; overflow: hidden; background:
        linear-gradient(135deg, #2a231b 0%, #1c1712 55%, #100d0a 100%); }
.ph::before { /* 微かな和のテクスチャ感 */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(179,147,85,.10), rgba(179,147,85,0) 60%);
  pointer-events: none;
}
.ph.light { background: linear-gradient(135deg, #e6ddc9 0%, #d8cdb4 100%); }
.ph > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.ph-label {
  position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 12px; gap: 10px; flex-direction: column;
  color: rgba(217,188,127,.5); font-family: 'Shippori Mincho B1', serif;
  font-size: 12.5px; letter-spacing: 4px; line-height: 1.9;
}
/* 上品な装飾：ラベル上に細い金の菱形 */
.ph-label::before {
  content: "◇"; font-size: 13px; opacity: .55; line-height: 1;
}
.ph.light .ph-label { color: rgba(87,80,63,.42); }
.ph-label small { font-size: 10px; letter-spacing: 2px; opacity: .7; font-family: 'Noto Sans JP', sans-serif; }
/* 全面背景パネル（ヒーロー・肉汁・ビール）は文字が乗るのでラベルを出さない */
.bg .ph-label { display: none; }

/* ================= HEADER ================= */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(18,14,11,.94); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(179,147,85,.22);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 12px; padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 18px; }
.brand img { height: 30px; width: auto; }
.brand img.porsche { height: 28px; }
.gnav { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); flex-wrap: wrap; }
.gnav a { color: var(--on-dark-soft); font-size: 13px; letter-spacing: 2px; white-space: nowrap; }
.gnav a:hover { color: var(--primary-light); }
.gnav .btn-reserve {
  background: var(--primary); color: #1c1712; font-family: 'Shippori Mincho B1', serif;
  font-weight: 700; letter-spacing: 3px; padding: 11px 26px;
}
.gnav .btn-reserve:hover { background: var(--primary-light); color: #1c1712; }

/* ================= HERO ================= */
.hero {
  position: relative;
  /* 動画未配置でも様になる、温かみのあるダークグラデ */
  background: radial-gradient(ellipse at 68% 40%, #241b12 0%, #16110c 46%, #0c0906 100%);
  min-height: max(100vh, 720px); overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.hero .bg { position: absolute; inset: 0; }
.hero .bg .ph { position: absolute; inset: 0; }
/* トップ動画（16:9ソースを全面カバー表示） */
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; background: transparent; }
.hero .veil-1 { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 66% 38%, rgba(16,13,10,.05) 0%, rgba(16,13,10,.55) 52%, rgba(16,13,10,.95) 100%); }
.hero .veil-2 { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(16,13,10,.6) 0%, rgba(16,13,10,.1) 28%, rgba(16,13,10,.1) 55%, rgba(16,13,10,.92) 100%); }
.hero .veil-3 { position: absolute; top: 0; bottom: 0; right: 0; width: 56%; pointer-events: none;
  background: linear-gradient(270deg, rgba(16,13,10,.85) 0%, rgba(16,13,10,.45) 55%, rgba(16,13,10,0) 100%); }
.hero-inner {
  position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: clamp(64px, 12vh, 140px) clamp(16px,3vw,32px) 170px;
  display: flex; justify-content: flex-end;
}
.hero-copy { display: flex; flex-direction: row-reverse; gap: clamp(18px, 3vw, 44px); align-items: flex-start; }
.hero h1 { display: block; margin: 0; line-height: 0; }
/* 筆文字キャッチ（縦組み画像）。高さ基準でPC/スマホとも収める */
.hero h1 img { display: block; height: clamp(360px, 72vh, 780px); width: auto;
  filter: drop-shadow(0 3px 24px rgba(0,0,0,.9)) drop-shadow(0 0 10px rgba(0,0,0,.55));
  transform-origin: center center;
  animation: brushReveal 2.6s cubic-bezier(.33,.12,.22,1) .2s both; }
/* 上から下へゆっくり展開しつつ、わずかにズーム＋透明から徐々にフェードイン（同時進行） */
@keyframes brushReveal {
  0%   { opacity: 0; clip-path: inset(0 0 100% 0); transform: scale(.93); }
  100% { opacity: 1; clip-path: inset(0 0 0 0);    transform: scale(1); }
}
.hero .sub {
  color: #e6ca8c; font-size: clamp(18px, 2.1vw, 25px); font-weight: 600; letter-spacing: 6px;
  line-height: 2; white-space: nowrap; text-shadow: 0 0 10px rgba(0,0,0,.95), 0 3px 26px rgba(0,0,0,.9);
}
.hero .tags { display: flex; flex-direction: row-reverse; gap: 12px; }
.hero .tag-box {
  border: 1px solid #c9a865; color: #f0e4c4; font-size: 14px; letter-spacing: 5px;
  padding: 24px 11px; background: rgba(12,10,8,.78);
}
.hero .tag-line { color: var(--primary-light); font-size: 13px; letter-spacing: 4px; padding: 24px 4px;
  text-shadow: 0 0 10px rgba(0,0,0,.95); }
.hero-foot {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 0 clamp(16px,3vw,32px) 38px; pointer-events: none;
}
.hero-foot .lead {
  color: #e4dccb; font-size: 13px; line-height: 2.3; letter-spacing: 1px; max-width: 440px;
  background: rgba(12,10,8,.6); padding: 16px 20px; backdrop-filter: blur(2px);
  border-left: 2px solid var(--primary);
}
.scroll-cue { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue span.txt { color: var(--on-dark-mute); font-size: 10px; letter-spacing: 3px; }
.scroll-cue span.line { display: block; width: 1px; height: 56px; background: var(--primary);
  animation: scrollline 2.2s ease-in-out infinite; }
@keyframes scrollline {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ================= 共通セクション ================= */
section { position: relative; }
.sec-pad { padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px); }
.cut-down { clip-path: polygon(0 0, 100% var(--cut), 100% 100%, 0 100%); margin-top: calc(-1 * var(--cut)); padding-top: var(--cut); }
.cut-up   { clip-path: polygon(0 var(--cut), 100% 0, 100% 100%, 0 100%); margin-top: calc(-1 * var(--cut)); padding-top: var(--cut); }
.bg-dark   { background: var(--dark-2); }
.bg-dark3  { background: var(--dark-3); }
.bg-paper  { background: var(--paper); }
.bg-paper2 { background: var(--paper-2); }
.eyebrow { color: var(--primary); font-size: 14px; letter-spacing: 6px; margin-bottom: 14px; }
.sec-head { text-align: center; margin-bottom: clamp(40px, 6vw, 72px); }
.sec-head h2 { font-size: clamp(28px, 3.6vw, 46px); font-weight: 700; letter-spacing: 6px; color: var(--ink); }
.sec-head.on-dark h2 { color: #efe8da; }
.big-num { font-size: 1.6em; color: var(--primary); }
.pill { display: inline-block; border: 1px solid var(--primary); color: var(--primary-light);
  font-size: 13px; letter-spacing: 5px; padding: 9px 26px; margin-top: 20px; font-family: 'Shippori Mincho B1', serif; }

/* ---------- 一口で、違いがわかる ---------- */
.intro { display: flex; gap: clamp(28px, 5vw, 72px); align-items: center; flex-wrap: wrap; }
.intro-fig { flex: 1.3 1 380px; min-width: min(100%, 380px); position: relative; }
.intro-fig .ph { height: clamp(260px, 34vw, 420px);
  box-shadow: 14px 14px 0 rgba(36,31,26,.1), 0 18px 44px rgba(0,0,0,.22); }
.intro-fig .badge { position: absolute; top: -26px; right: -14px; z-index: 3; background: var(--ink);
  color: var(--primary-light); font-size: 13px; letter-spacing: 5px; padding: 18px 9px; }
.intro-txt { flex: 1 1 300px; min-width: min(100%, 300px); display: flex; gap: clamp(20px,3vw,36px); align-items: flex-start; }
.intro-txt h2 { font-size: clamp(30px, 3.4vw, 44px); font-weight: 700; letter-spacing: 10px; line-height: 1.6; color: var(--ink); white-space: nowrap; }
.rule { width: 44px; height: 1px; background: var(--primary); margin-bottom: 22px; }
.intro-txt p { font-size: 14px; line-height: 2.5; color: var(--ink-soft); letter-spacing: 1px; }

/* ---------- 3つの秘訣 ---------- */
.secrets { display: flex; flex-direction: column; gap: clamp(48px, 6vw, 88px); }
.secret { display: flex; gap: clamp(24px, 4vw, 56px); align-items: center; flex-wrap: wrap; }
.secret.reverse { flex-direction: row-reverse; }
.secret-fig { flex: 1.2 1 360px; min-width: min(100%, 360px); position: relative; }
.secret-fig .ph { height: clamp(230px, 28vw, 360px); box-shadow: 0 16px 40px rgba(0,0,0,.18); }
.secret-fig .ord { position: absolute; top: -46px; left: -8px; z-index: 3; font-size: clamp(60px,7vw,96px);
  font-weight: 800; color: rgba(36,31,26,.1); letter-spacing: 4px; pointer-events: none; font-family: 'Shippori Mincho B1', serif; }
.secret-txt { flex: 1 1 300px; min-width: min(100%, 300px); display: flex; gap: clamp(18px,2.6vw,32px); align-items: flex-start; }
.secret-txt h3 { background: var(--ink); color: #e8dcc0; font-size: clamp(17px,1.6vw,21px); font-weight: 600;
  letter-spacing: 6px; line-height: 1.9; padding: 20px 12px; flex: none; }
.secret-sub { color: var(--primary); font-size: 15px; letter-spacing: 4px; margin-bottom: 12px; }
.secret-body { font-size: 13.5px; line-height: 2.4; color: var(--ink-soft); letter-spacing: .5px; max-width: 400px; }

/* ---------- 肉汁 full-bleed ---------- */
.fullbleed { overflow: hidden; }
.fullbleed .bg { position: absolute; inset: 0; }
.fullbleed .bg .ph { position: absolute; inset: 0; }
.fullbleed .veil { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(270deg, rgba(16,13,10,.97) 0%, rgba(16,13,10,.82) 40%, rgba(16,13,10,.15) 78%); }
.fullbleed-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto;
  padding: clamp(72px,10vw,130px) clamp(16px,3vw,32px); display: flex; justify-content: flex-end; }
.fullbleed-copy { display: flex; flex-direction: row-reverse; gap: clamp(20px,3vw,40px); }
.fullbleed h2 { color: var(--on-dark); font-size: clamp(28px,3.6vw,46px); font-weight: 700; letter-spacing: 10px;
  line-height: 1.6; white-space: nowrap; text-shadow: 0 0 12px rgba(0,0,0,.9), 0 3px 30px rgba(0,0,0,.85); }
.fullbleed p { color: #e0d8c6; font-size: 13px; line-height: 2.6; letter-spacing: 2px; white-space: nowrap;
  text-shadow: 0 0 8px rgba(0,0,0,.95); }

/* ---------- お品書き（3サイズ） ---------- */
.menu-glow { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(179,147,85,.08) 0%, rgba(179,147,85,0) 55%); }
.sizes { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); gap: clamp(18px,2.6vw,30px); }
.size-card { background: var(--paper); padding: 0 0 24px; position: relative; box-shadow: 0 14px 34px rgba(0,0,0,.35); }
.size-card .ph { height: clamp(180px, 18vw, 220px); }
.size-card .tag { position: absolute; top: 14px; right: 14px; z-index: 3; color: #f3ecdd; font-size: 12px; letter-spacing: 4px; padding: 14px 8px; }
.size-body { padding: 20px 22px 0; }
.grams { text-align: center; font-size: clamp(28px,2.6vw,36px); font-weight: 700; color: var(--ink); letter-spacing: 2px; font-family: 'Shippori Mincho B1', serif; }
.grams-rule { width: 36px; height: 1px; background: var(--primary); margin: 12px auto 16px; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid rgba(36,31,26,.14); padding: 8px 0; }
.price-row .lbl { font-size: 12.5px; letter-spacing: 2px; color: var(--ink-soft); }
.price-row .val { font-family: 'Shippori Mincho B1', serif; }
.price-row .val b { font-size: 24px; font-weight: 700; color: var(--ink); }
.price-row .val small { font-size: 11.5px; color: var(--ink-soft); }
.size-note { font-size: 12px; line-height: 2; color: var(--ink-mute); margin-top: 12px; }
.menu-foot { text-align: center; font-size: 11.5px; color: var(--on-dark-mute); margin-top: 28px; line-height: 2; letter-spacing: 1px; }

/* ---------- 食べ方 ---------- */
.tips { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: clamp(20px,3vw,32px); }
.tip { position: relative; background: var(--paper-3); box-shadow: 0 10px 26px rgba(0,0,0,.1); padding-bottom: 20px; }
.tip .ord { position: absolute; top: -18px; left: 14px; z-index: 3; font-size: 52px; font-weight: 800; color: var(--primary);
  line-height: 1; text-shadow: 0 2px 8px rgba(0,0,0,.12); font-family: 'Shippori Mincho B1', serif; }
.tip .ph { height: 150px; }
.tip-body { padding: 18px 18px 0; }
.tip-body h3 { font-size: 16.5px; font-weight: 700; letter-spacing: 2px; color: var(--ink); line-height: 1.7; font-family: 'Shippori Mincho B1', serif; }
.tip-body p { font-size: 12.5px; line-height: 2.1; color: var(--ink-soft); margin-top: 8px; }

/* ---------- ビール ---------- */
.beer .bg { position: absolute; inset: 0; }
.beer .bg .ph { position: absolute; inset: 0; }
.beer .veil { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(16,13,10,.96) 0%, rgba(16,13,10,.78) 42%, rgba(16,13,10,.08) 80%); }
.beer-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto;
  padding: clamp(64px,9vw,120px) clamp(16px,3vw,32px); display: flex; gap: clamp(20px,3vw,40px); }
.beer h2 { color: var(--on-dark); font-size: clamp(24px,3vw,38px); font-weight: 700; letter-spacing: 8px; line-height: 1.8;
  white-space: nowrap; text-shadow: 0 0 12px rgba(0,0,0,.9), 0 3px 28px rgba(0,0,0,.85); }
.beer p { color: #e0d8c6; font-size: 13px; line-height: 2.6; letter-spacing: 2px; white-space: nowrap; text-shadow: 0 0 8px rgba(0,0,0,.95); }

/* ---------- ポイントカード ---------- */
.points { display: flex; align-items: stretch; justify-content: center; gap: clamp(12px,2vw,22px); flex-wrap: wrap; }
.pt-card { flex: 0 1 220px; min-width: 200px; background: var(--ink); color: #e8dcc0; padding: 24px 18px; text-align: center;
  display: flex; flex-direction: column; justify-content: center; box-shadow: 0 12px 28px rgba(0,0,0,.2); }
.pt-card .cap { font-size: 12px; letter-spacing: 4px; color: var(--primary); font-family: 'Shippori Mincho B1', serif; }
.pt-stamps { display: flex; justify-content: center; gap: 10px; margin: 18px 0; }
.pt-stamps span { width: 36px; height: 36px; border: 1px solid var(--primary); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; font-size: 15px; color: var(--primary-light); font-family: 'Shippori Mincho B1', serif; }
.pt-card .note { font-size: 11.5px; line-height: 1.9; letter-spacing: 1px; }
.pt-step { flex: 0 1 170px; min-width: 150px; background: var(--paper-3); padding: 22px 14px; text-align: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.08); display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.pt-step .label { font-size: 12px; font-weight: 700; letter-spacing: 3px; color: var(--primary); font-family: 'Shippori Mincho B1', serif; }
.pt-step .kanji { font-size: 30px; color: var(--ink); font-family: 'Shippori Mincho B1', serif; }
.pt-step .body { font-size: 12px; line-height: 1.7; color: var(--ink-soft); }
.pt-reward { flex: 0 1 190px; min-width: 170px; background: var(--accent-red); color: #f3ecdd; padding: 22px 16px; text-align: center;
  display: flex; flex-direction: column; justify-content: center; gap: 10px; box-shadow: 0 12px 28px rgba(0,0,0,.2); }
.pt-reward .cap { font-size: 12px; font-weight: 700; letter-spacing: 2px; }
.pt-reward .big { font-size: 16px; font-weight: 700; line-height: 1.7; letter-spacing: 1px; font-family: 'Shippori Mincho B1', serif; }

/* ---------- 店舗情報 ---------- */
.stores { display: flex; gap: clamp(20px,3vw,32px); flex-wrap: wrap; align-items: stretch; }
/* 店舗ユニット：店内写真（上）＋情報カード（下）を1店舗ぶんで縦積み */
.store-unit { flex: 1 1 340px; min-width: min(100%, 340px); display: flex; flex-direction: column; }
.store-fig { min-height: 220px; }
.store-fig .ph { height: clamp(200px, 24vw, 260px); }
.store-card { flex: 1; border: 1px solid rgba(179,147,85,.3); border-top: none;
  padding: 28px 26px; display: flex; flex-direction: column; }
.store-logo { padding: 14px 18px; margin-bottom: 18px; display: flex; align-items: center; justify-content: center; height: 92px; }
.store-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.store-card h3 { font-size: 21px; font-weight: 700; letter-spacing: 2px; color: #efe8da; font-family: 'Shippori Mincho B1', serif; }
.store-card .zip { font-size: 12.5px; color: #c9beab; letter-spacing: 1px; margin: 16px 0 0; }
.store-card dl { font-size: 12.5px; color: #a99a80; line-height: 2.1; margin-top: 12px; flex: 1;
  display: grid; grid-template-columns: auto 1fr; gap: 2px 12px; }
.store-card dt { color: var(--on-dark-mute); white-space: nowrap; }
.store-card dd, .store-card dd a { color: #bdb09a; }
.store-card .rule2 { width: 32px; height: 1px; background: var(--primary); margin: 14px 0 4px; }
.btn-tel { display: block; text-align: center; background: var(--primary); color: #1c1712; font-family: 'Shippori Mincho B1', serif;
  font-size: 13.5px; font-weight: 700; letter-spacing: 3px; padding: 13px; margin-top: 18px; }
.btn-tel:hover { background: var(--primary-light); color: #1c1712; }
.btn-tel small { display: block; font-size: 10px; letter-spacing: 1px; opacity: .8; font-family: 'Noto Sans JP', sans-serif; margin-top: 2px; }
/* 地図は各店ユニット内（情報カードの直下）にワンセットで配置 */
.map-frame { position: relative; margin-top: 12px; }
.map-frame iframe { width: 100%; height: 220px; border: 0; display: block; filter: grayscale(.15); }
.map-frame .cap { position: absolute; bottom: 10px; right: 10px; background: rgba(28,23,18,.85);
  color: var(--primary-light); font-size: 11px; letter-spacing: 2px; padding: 6px 12px; white-space: nowrap;
  font-family: 'Shippori Mincho B1', serif; }

/* ================= FOOTER ================= */
.site-footer { background: var(--dark-2); border-top: 1px solid rgba(179,147,85,.22); }
.site-footer .wrap { padding: clamp(44px,6vw,72px) clamp(16px,3vw,32px) 28px; text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; }
.footer-brand img { height: 48px; width: auto; }
.footer-brand img.porsche { height: 44px; }
.footer-cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.footer-cta .primary { background: var(--primary); color: #1c1712; font-family: 'Shippori Mincho B1', serif;
  font-size: 14px; font-weight: 700; letter-spacing: 3px; padding: 14px 44px; }
.footer-cta .primary:hover { background: var(--primary-light); }
.footer-cta .ghost { border: 1px solid rgba(179,147,85,.5); color: var(--on-dark-soft); font-size: 13px; letter-spacing: 2px; padding: 14px 36px; }
.footer-cta .ghost:hover { border-color: var(--primary-light); color: #f3ecdd; }
.footer-nav { display: flex; justify-content: center; gap: clamp(14px,2.4vw,28px); flex-wrap: wrap;
  margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.07); }
.footer-nav a { color: var(--on-dark-mute); font-size: 11.5px; letter-spacing: 2px; }
.footer-note { color: var(--on-dark-mute); font-size: 10.5px; letter-spacing: 1px; margin-top: 18px; line-height: 1.9; }
.copyright { color: #5f533f; font-size: 10px; letter-spacing: 1px; margin-top: 12px; }

/* ================= スマホ追従メニュー ================= */
.mobile-bar { display: none; }

/* ================= レスポンシブ（600px 単一） ================= */
@media (max-width: 600px) {
  :root { --cut: 5vw; }

  /* ヘッダー：ナビは主要導線だけ、追従バーへ委譲 */
  .site-header .wrap { padding-top: 10px; padding-bottom: 10px; justify-content: center; }
  .brand { gap: 12px; }
  .brand img { height: 26px; }
  .brand img.porsche { height: 24px; }
  .gnav { display: none; }

  /* ヒーロー：スマホは筆文字を画面からはみ出すほど特大に（インパクト重視） */
  .hero { min-height: max(100vh, 640px); }
  .hero-inner { padding: 18px 20px 176px; justify-content: center; }
  .hero-copy { flex-direction: column; align-items: center; gap: 0; }
  .hero .veil-3 { width: 100%; }
  .hero .sub { display: none; }        /* 装飾削減 */
  .hero .tags { display: none; }        /* 上の「蓋」バッジは撤去 */
  .hero h1 img { height: 83vh; max-height: 780px; }
  .hero-foot .lead { font-size: 12px; max-width: 100%; }
  .scroll-cue { display: none; }

  /* セクション */
  .sec-head { margin-bottom: 32px; }
  .intro-fig .badge { top: -18px; right: 0; }
  .secret, .secret.reverse { flex-direction: column; }
  .secret-fig .ord { top: -34px; }
  .intro-txt h2, .fullbleed-copy, .beer-inner { }
  .maps { gap: 14px; }

  /* 縦書きはスマホでも維持するが行間を詰める */
  .fullbleed p, .beer p { font-size: 12px; }

  /* 追従メニュー */
  .mobile-bar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    background: rgba(18,14,11,.92); backdrop-filter: blur(12px);
    border-top: 1px solid rgba(179,147,85,.28);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-bar a { flex: 1; text-align: center; padding: 9px 4px; color: var(--on-dark-soft);
    font-size: 10.5px; letter-spacing: 1px; display: flex; flex-direction: column; align-items: center; gap: 4px; }
  .mobile-bar a .ic { width: 24px; height: 24px; display: block; object-fit: contain; }
  .mobile-bar a.cta { background: var(--primary); color: #1c1712; font-weight: 700; }
  /* CTA（電話予約）はゴールド地なのでアイコンを黒に反転して視認性を確保 */
  .mobile-bar a.cta .ic { filter: brightness(0); }
  .site-footer .wrap { padding-bottom: 96px; }   /* 追従分の余白 */
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
}

/* ================= 法務ページ（privacy / terms） ================= */
.legal { background: var(--dark); min-height: 100vh; }
.legal .legal-head { border-bottom: 1px solid rgba(179,147,85,.22); }
.legal .legal-head .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 16px; padding-bottom: 16px; flex-wrap: wrap; }
.legal .legal-head .brand img { height: 26px; }
.legal .legal-head a.back { color: var(--on-dark-soft); font-size: 13px; letter-spacing: 2px; }
.legal-body { max-width: 820px; margin: 0 auto; padding: clamp(40px,6vw,72px) clamp(16px,4vw,24px) 96px; color: var(--on-dark-soft); }
.legal-body h1 { color: #efe8da; font-family: 'Shippori Mincho B1', serif; font-size: clamp(24px,4vw,34px); font-weight: 700; letter-spacing: 4px; margin-bottom: 8px; }
.legal-body .meta { color: var(--on-dark-mute); font-size: 12px; letter-spacing: 1px; margin-bottom: 36px; }
.legal-body .intro-p { font-size: 14px; line-height: 2; margin-bottom: 32px; color: #c9beab; }
.legal-body h2 { color: var(--primary-light); font-family: 'Shippori Mincho B1', serif; font-size: 17px; letter-spacing: 2px; margin: 34px 0 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(179,147,85,.18); }
.legal-body p, .legal-body li { font-size: 13.5px; line-height: 2.1; letter-spacing: .5px; color: #bdb09a; }
.legal-body ul, .legal-body ol { margin: 10px 0 10px 1.4em; }
.legal-body li { margin-bottom: 6px; }
.legal-body .todo { color: #e0b96a; background: rgba(179,147,85,.12); border: 1px dashed rgba(179,147,85,.5); padding: 1px 8px; border-radius: 3px; font-size: 12.5px; }
.legal-body a { color: var(--primary-light); }
.legal-foot { border-top: 1px solid rgba(255,255,255,.07); margin-top: 40px; padding-top: 24px; display: flex; gap: 20px; flex-wrap: wrap; }
.legal-foot a { font-size: 12.5px; letter-spacing: 1px; }
