@charset "utf-8";
/* ==========================================================================
   肉焼く 芦山（ロザン）  /  style.css
   Design: 大衆焼肉。黒地 × 赤 × 提灯の黄 — 既存のお客様に向けた1ファイル構成。
   ========================================================================== */

/* ---------- 1. tokens ---------- */
:root {
  /* ネイティブUI（select のドロップダウン・日付ピッカー・スクロールバー）を暗色で描かせる。
     これが無いと select の選択肢が「白背景 × 白文字」で読めなくなる。 */
  color-scheme: dark;

  /* 大衆焼肉テーマ：黒地 × 赤 × 提灯の黄。
     旧・金色系の変数名（--kin 等）は参照箇所が多いため名前を残し、値だけ差し替えている。

     ★赤の使い分け（黒地に赤字は読みづらいので役割を分けている）
       --shu     #d7000f … 赤ベタの背景専用。白文字とのコントラスト 5.39:1（AA合格）
       --kin     #ff6a52 … 黒地に置く赤い文字。#131110 に対して 6.7:1（旧 #e8412f は 4.69:1 で実質読めなかった）
       --kin-hi  #ff9c86 … リンク・価格など、赤字で目立たせたいもの。8.9:1
       --chochin #ffc93c … 提灯の灯りの黄。11px前後の小さいラベルはすべてこれ。12.4:1
     小さい字（11〜12px＋字間広め）に赤を使うのをやめ、黄に振ったのが今回の一番の変更点。 */
  --ink:        #0c0b0a;
  --sumi:       #131110;
  --charcoal:   #1c1917;
  --charcoal-2: #262220;
  --ember:      #e8541f;
  --ember-hi:   #ff8b45;
  --shu:        #d7000f;
  --shu-dark:   #a8000c;
  --kin:        #ff6a52;
  --kin-hi:     #ff9c86;
  --chochin:    #ffc93c;
  --chochin-dk: #d99b00;
  --kinari:     #f5efe4;
  --washi:      #f7f1e3;
  --muted:      #b3aaa0;
  --line:       rgba(255,106,82,.42);
  --line-soft:  rgba(245,239,228,.14);

  /* 見出し＝大衆感のある極太、本文＝丸ゴシック、ロゴ＝筆文字 */
  --serif: "Reggae One", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  --sans:  "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
           "Yu Gothic", YuGothic, Meiryo, sans-serif;
  /* ロゴ：看板の切り文字（太く・先が広がる）に最も近いのが Reggae One */
  --brush: "Reggae One", "Yu Mincho", serif;

  --wrap: 1140px;
  --gut: clamp(20px, 5vw, 48px);
  --sec: clamp(72px, 11vw, 140px);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--kinari);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: .04em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.5; margin: 0; letter-spacing: .08em; }
p { margin: 0 0 1.4em; }
ul { margin: 0; padding: 0; list-style: none; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 2px solid var(--kin-hi); outline-offset: 3px; }

/* ---------- 3. layout primitives ---------- */
.wrap { width: min(100% - var(--gut) * 2, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - var(--gut) * 2, 820px); margin-inline: auto; }
.section { padding-block: var(--sec); position: relative; }
.section--sumi { background: var(--sumi); }
.section--charcoal { background: var(--charcoal); }

/* 和紙 / 炭のテクスチャ（noise を data-uri で） */
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- 4. 見出し ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--chochin); margin: 0 0 14px; display: flex; align-items: center; gap: 12px; font-weight: 700;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--chochin); opacity: .85; }
.center .eyebrow { justify-content: center; }
.center { text-align: center; }

.h-sec { font-size: clamp(26px, 4.4vw, 40px); margin-bottom: 26px; }
.h-sec .sm { display: block; font-size: .44em; letter-spacing: .3em; color: var(--chochin); font-family: var(--sans); font-weight: 700; margin-top: 14px; }
.lead { color: #ded5c9; font-size: clamp(14px, 1.6vw, 16px); line-height: 2.1; }


/* ---------- 5. header ---------- */
.hdr {
  position: fixed; inset: 0 0 auto; z-index: 90;
  display: flex; align-items: center; gap: 24px;
  padding: 16px var(--gut);
  transition: background .45s var(--ease), padding .45s var(--ease), border-color .45s;
  border-bottom: 1px solid transparent;
}
.hdr.is-stuck {
  background: rgba(11, 9, 8, .88);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line-soft);
  padding-block: 10px;
}
/* ロゴ：実物の看板をトレースしたベクター（assets/logo.svg）をそのまま使う。
   縦横比 1059:397 なので高さだけ指定し、幅は auto に任せる。 */
.brand { display: flex; align-items: center; flex: none; }
/* flex の中で潰れないように flex:none。width:auto だけだと幅0まで縮む */
.brand__logo { height: 48px; width: auto; flex: none; }
@media (max-width: 700px) { .brand__logo { height: 38px; } }
/* フッターは看板らしく大きく */
.ftr__brand .brand__logo { height: 68px; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav__list a { font-size: 12.5px; letter-spacing: .16em; color: #cfc5b9; position: relative; padding-block: 6px; }
.nav__list a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--kin); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.nav__list a:hover::after, .nav__list a[aria-current="page"]::after { transform: scaleX(1); }
.nav__list a[aria-current="page"] { color: var(--kin-hi); }

.hdr__tel { display: none; font-family: var(--serif); font-size: 17px; letter-spacing: .1em; color: var(--kin-hi); }
.hdr__tel small { display: block; font-family: var(--sans); font-size: 9px; letter-spacing: .24em; color: var(--muted); }

.burger { display: none; width: 44px; height: 44px; position: relative; z-index: 100; margin-left: auto; }
.burger span { position: absolute; left: 11px; width: 22px; height: 1px; background: var(--kinari); transition: .4s var(--ease); }
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 27px; }
.is-open .burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.is-open .burger span:nth-child(2) { opacity: 0; }
.is-open .burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ---------- 6. hero ---------- */
.hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
/* 背景スロット（FV・下層ページ見出し）の中の figure は必ず親いっぱいに */
.hero__bg > *, .phead__bg > * { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,9,8,.80) 0%, rgba(11,9,8,.28) 34%, rgba(11,9,8,.96) 100%),
    linear-gradient(90deg, rgba(11,9,8,.62) 0%, rgba(11,9,8,.10) 46%, transparent 72%),
    radial-gradient(120% 70% at 78% 82%, rgba(217,84,31,.26), transparent 62%);
}
/* 下の余白は SCROLL 表示（.hero__scroll は約73px＋下18px）と重ならない値を最低値にする。
   以前 56px にしていたため、スマホ・タブレットでボタンに重なっていた。
   上の余白は固定ヘッダーのぶん。これが無いと、下の余白を増やした反動で
   画面の低い端末（360×640など）で見出しがヘッダーに潜る。
   両方の余白と内容が 100svh に収まらない場合は、FVが画面より少し高くなる（切れるより良い）。 */
.hero__inner {
  position: relative; z-index: 2; width: 100%;
  padding: 96px var(--gut) clamp(104px, 9vw, 116px);
}
/* FVの大きいロゴ。ヘッダーのものとは別に、看板として見せる。
   縦横比 1059:397 は width/height 属性から効くので、高さだけ指定して幅は auto。
   影は装飾ではなく、写真の明るい部分でロゴが沈まないようにするためのもの。
   高さは「FVの中身が 100svh に収まる範囲」で決めている（実測：1440×900 で 808px、
   360×640 の短い画面では専用の詰めルールが効いて 555px）。 */
.hero__logo {
  height: clamp(84px, 13vw, 148px);
  width: auto; flex: none;
  margin: 0 0 clamp(18px, 2.4vw, 30px);
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, .6));
}

.hero__copy { font-size: clamp(34px, 7.6vw, 78px); line-height: 1.34; letter-spacing: .1em; text-shadow: 0 3px 40px rgba(0,0,0,.6); }
.hero__copy em { font-style: normal; color: var(--kin-hi); }
.hero__sub { margin-top: 26px; font-size: clamp(12px, 1.5vw, 14px); letter-spacing: .2em; color: #d3c9bd; }
.hero__sub b { color: var(--kinari); font-weight: 500; }
.hero__meta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: 11.5px; letter-spacing: .18em; color: var(--muted); }
.hero__meta span { display: flex; align-items: center; gap: 9px; }
.hero__meta span::before { content: ""; width: 4px; height: 4px; background: var(--kin); border-radius: 50%; }

.hero__vert {
  position: absolute; z-index: 2; top: 18vh; right: clamp(16px, 4vw, 56px);
  writing-mode: vertical-rl; font-family: var(--serif);
  font-size: clamp(13px, 1.5vw, 16px); letter-spacing: .5em; color: rgba(242,236,225,.6);
}
.hero__scroll {
  position: absolute; z-index: 2; left: 50%; bottom: 18px; transform: translateX(-50%);
  font-size: 9px; letter-spacing: .3em; color: var(--muted); display: grid; justify-items: center; gap: 10px;
}
.hero__scroll::after { content: ""; width: 1px; height: 46px; background: linear-gradient(var(--kin), transparent); animation: drip 2.4s infinite var(--ease); }
@keyframes drip { 0% { transform: scaleY(.2); transform-origin: top; opacity: 0; } 40% { opacity: 1; } 100% { transform: scaleY(1); transform-origin: top; opacity: 0; } }
/* 画面が低くて横も狭い端末（360×640 など）では FV が画面に収まらないため、
   SCROLL 表示をやめて全体を詰める。
   ★FVに大きいロゴを足したときに 66px はみ出したので、
     ロゴだけでなく行間・余白もまとめて縮めている（実測 706px → 640px 以下）。 */
@media (max-height: 700px) and (max-width: 600px) {
  .hero__scroll { display: none; }
  .hero__inner { padding-top: 88px; padding-bottom: 36px; }
  .hero__logo { height: 56px; margin-bottom: 10px; }
  .hero__copy { font-size: 30px; }
  .hero__sub { margin-top: 16px; }
  .hero__meta { margin-top: 20px; gap: 6px 20px; }
}

/* ---------- 7. 写真スロット（差し替え用プレースホルダ） ---------- */
.shot { position: relative; overflow: hidden; background: var(--charcoal); margin: 0; }
.shot > img { width: 100%; height: 100%; object-fit: cover; }
/* 実写が入ったら自動でプレースホルダ描画を止める */
.shot:has(img) { background: none; }
.shot:has(img)::before, .shot:has(img)::after { display: none; }

.shot::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(115deg, rgba(255,255,255,.07) 0%, transparent 34%, transparent 66%, rgba(0,0,0,.18) 100%),
    repeating-linear-gradient(90deg, rgba(0,0,0,.14) 0 1px, transparent 1px 38px),
    var(--ph, radial-gradient(120% 100% at 30% 20%, #7a2a1c, #2a1410 62%, #150c0a));
  background-blend-mode: overlay, soft-light, normal;
}
.shot::after {
  content: attr(data-ph);
  position: absolute; left: 0; bottom: 0;
  font-size: 9.5px; letter-spacing: .18em; color: rgba(242,236,225,.62);
  background: rgba(11,9,8,.62); backdrop-filter: blur(3px);
  padding: 5px 11px; border-top-right-radius: 2px;
}
/* 開発用：body に show-ph を付けると、実写の上にも撮影指示ラベルを重ねて表示できる */
body.show-ph .shot::after { display: block !important; }

.ph-meat  { --ph: radial-gradient(140% 120% at 26% 18%, #a8382a, #58201a 46%, #21100d 78%, #140b09); }
.ph-fire  { --ph: radial-gradient(120% 110% at 50% 105%, #ff8b45, #b2401a 30%, #3a1710 62%, #130b09); }
.ph-room  { --ph: radial-gradient(120% 120% at 70% 25%, #4a3a28, #2a2018 48%, #14100e); }
.ph-taisho{ --ph: radial-gradient(90% 110% at 40% 28%, #5a4632, #2c2119 52%, #100c0a); }

/* ---------- 8. buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 17px 40px; font-size: 12.5px; letter-spacing: .2em; font-family: var(--sans);
  border: 1px solid var(--line); color: var(--kinari); background: transparent;
  position: relative; overflow: hidden; transition: color .4s var(--ease), border-color .4s;
}
.btn::before {
  content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, var(--shu), var(--ember));
  transform: translateY(101%); transition: transform .45s var(--ease);
}
.btn > * , .btn { position: relative; }
.btn span { position: relative; z-index: 1; }
.btn:hover { border-color: transparent; color: #fff; }
.btn:hover::before { transform: translateY(0); }
.btn--fill { background: linear-gradient(100deg, var(--shu), var(--ember)); border-color: transparent; color: #fff; }
.btn--fill::before { background: linear-gradient(100deg, #8e2a20, #b8451a); }
.btn--gold { border-color: var(--kin); color: var(--kin-hi); }
.btn--wide { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

.arrow-link { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; letter-spacing: .2em; color: var(--kin-hi); }
.arrow-link::after { content: ""; width: 34px; height: 1px; background: currentColor; transition: width .4s var(--ease); }
.arrow-link:hover::after { width: 52px; }

/* ---------- 9. concept（概要） ---------- */
.concept { display: grid; gap: clamp(36px, 6vw, 78px); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .concept { grid-template-columns: 1.05fr .95fr; } }
.concept__shot { aspect-ratio: 4 / 5; }
.concept__shot--stack { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.concept__shot--stack .shot:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
.concept__shot--stack .shot { aspect-ratio: 1; }

.pillars { display: grid; gap: 1px; background: var(--line-soft); margin-top: 54px; }
@media (min-width: 760px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar { background: var(--sumi); padding: 38px clamp(20px, 3vw, 34px); }
.pillar__no { font-family: var(--serif); font-size: 11px; letter-spacing: .3em; color: var(--chochin); }
.pillar h3 { font-size: 19px; margin: 14px 0 14px; }
.pillar p { font-size: 13.5px; color: #d3c9bd; margin: 0; line-height: 2.05; }

/* ---------- 11. menu ---------- */
.menu-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 48px; }
.menu-tabs button {
  padding: 11px 24px; font-size: 12px; letter-spacing: .18em;
  border: 1px solid var(--line-soft); color: var(--muted); transition: .35s var(--ease);
}
.menu-tabs button[aria-selected="true"] { border-color: transparent; color: #fff; background: var(--shu); font-weight: 700; box-shadow: 0 3px 0 var(--shu-dark); }

.menu-panel[hidden] { display: none; }
.menu-grid { display: grid; gap: clamp(30px, 5vw, 60px); }
@media (min-width: 860px) { .menu-grid { grid-template-columns: 1fr 1fr; } }
.menu-block h3 {
  font-size: 18px; padding-bottom: 12px; margin-bottom: 6px;
  border-bottom: 1px solid var(--line); display: flex; align-items: baseline; gap: 14px;
}
.menu-block h3 small { font-size: 10px; letter-spacing: .26em; color: var(--chochin); font-family: var(--sans); font-weight: 700; }
.menu-row { display: flex; align-items: center; gap: 18px; padding: 14px 0; border-bottom: 1px dashed rgba(242,236,225,.09); }
/* お品書きの写真（全品に添える）。素材は 400px 角なので2倍表示にも耐える */
.menu-row__shot {
  width: 104px; height: 104px; flex: none;
  border: 1px solid rgba(242,236,225,.08);
}
.menu-row__name { font-family: var(--serif); font-size: 16px; letter-spacing: .06em; flex: none; max-width: 54%; }
.menu-row__dots { flex: 1; min-width: 10px; border-bottom: 1px dotted rgba(242,236,225,.2); }
.menu-row__price {
  font-family: var(--serif); font-size: 16px; letter-spacing: .02em;
  color: var(--chochin); white-space: nowrap; flex: none;
}
@media (max-width: 520px) {
  .menu-row { gap: 13px; }
  .menu-row__shot { width: 84px; height: 84px; }
  .menu-row__name { font-size: 14.5px; max-width: 48%; }
}
.menu-row__badge {
  display: inline-block; font-family: var(--sans); font-style: normal;
  font-size: 9.5px; letter-spacing: .16em; color: #fff; background: var(--shu);
  padding: 2px 8px; margin-left: 10px; vertical-align: 2px;
}

/* ---------- 14. info / access ---------- */
.info-grid { display: grid; gap: clamp(36px, 5vw, 66px); }
@media (min-width: 900px) { .info-grid { grid-template-columns: 1fr 1.15fr; } }
.dl { border-top: 1px solid var(--line-soft); }
.dl > div { display: grid; gap: 2px 24px; padding: 17px 2px; border-bottom: 1px solid var(--line-soft); }
@media (min-width: 560px) { .dl > div { grid-template-columns: 108px 1fr; } }
.dl dt { font-size: 11.5px; letter-spacing: .2em; color: var(--chochin); font-weight: 700; }
.dl dd { margin: 0; font-size: 14px; }
.dl dd small { display: block; color: var(--muted); font-size: 11.5px; margin-top: 4px; }
.map { aspect-ratio: 4 / 3; border: 1px solid var(--line-soft); filter: grayscale(.35) brightness(.85) contrast(1.1); }
.map iframe { width: 100%; height: 100%; border: 0; }
/* 外観の実写（地図の上）。「この建物」が主役なので少し横長に */
.access-photo {
  aspect-ratio: 16 / 10; margin: 0 0 16px;
  border: 2px solid var(--line); border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 0 rgba(0, 0, 0, .5);
}

/* ---------- 17. page head（下層ページ共通） ---------- */
.phead { position: relative; padding: clamp(140px, 20vh, 210px) 0 clamp(48px, 7vw, 82px); overflow: hidden; }
.phead__bg { position: absolute; inset: 0; }
.phead__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,9,8,.86) 0%, rgba(11,9,8,.50) 48%, rgba(11,9,8,.97) 100%),
    linear-gradient(90deg, rgba(11,9,8,.66) 0%, rgba(11,9,8,.12) 52%, transparent 78%),
    radial-gradient(110% 80% at 82% 78%, rgba(217,84,31,.20), transparent 62%);
}
.phead__inner { position: relative; z-index: 2; text-shadow: 0 2px 22px rgba(0,0,0,.7); }
.phead h1 { font-size: clamp(28px, 5vw, 46px); }
.phead h1 .sm { display: block; font-family: var(--sans); font-size: 10.5px; letter-spacing: .34em; color: var(--chochin); font-weight: 700; margin-bottom: 16px; }
.crumbs { margin-top: 22px; font-size: 11px; letter-spacing: .16em; color: var(--muted); display: flex; gap: 10px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--kin-hi); }

/* ---------- 18. footer ---------- */
.ftr { background: var(--sumi); border-top: 1px solid var(--line-soft); padding-block: clamp(56px, 7vw, 86px) 30px; }
.ftr__top { display: grid; gap: 44px; }
@media (min-width: 860px) { .ftr__top { grid-template-columns: 1.2fr 1fr 1fr; } }
.ftr__brand .brand__ja { font-size: 26px; }
.ftr__addr { font-size: 12.5px; color: var(--muted); line-height: 2.1; margin-top: 18px; }
.ftr h4 { font-size: 11px; letter-spacing: .28em; color: var(--chochin); font-weight: 700; font-family: var(--sans); margin-bottom: 18px; }
.ftr__links li { margin-bottom: 11px; }
.ftr__links a { font-size: 12.5px; color: #c3b8ac; }
.ftr__links a:hover { color: var(--kin-hi); }
.ftr__bottom { margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; font-size: 11px; letter-spacing: .12em; color: #9a9088; }
.sns { display: flex; gap: 14px; margin-top: 20px; }
.sns a { width: 40px; height: 40px; border: 1px solid var(--line-soft); display: grid; place-items: center; transition: .35s var(--ease); }
.sns a:hover { border-color: var(--kin); background: rgba(193,160,90,.1); }
.sns svg { width: 17px; height: 17px; fill: currentColor; }

/* ---------- 19. mobile nav ---------- */
@media (max-width: 1024px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 0; background: rgba(11,9,8,.97); backdrop-filter: blur(10px);
    display: grid; place-items: center; margin: 0;
    opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s;
  }
  .is-open .nav { opacity: 1; visibility: visible; }
  .nav__list { flex-direction: column; gap: 26px; text-align: center; }
  .nav__list a { font-size: 17px; letter-spacing: .22em; font-family: var(--serif); }
  .nav__list .nav__tel { margin-top: 14px; font-size: 21px; color: var(--kin-hi); font-family: var(--serif); }
}
@media (min-width: 1025px) {
  .hdr__tel { display: block; margin-left: 26px; padding-left: 26px; border-left: 1px solid var(--line-soft); }
  .nav__list .nav__tel { display: none; }
  .nav { margin-left: auto; }
}

/* ---------- 20. reveal ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv.is-in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .1s; } .rv-d2 { transition-delay: .2s; } @media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__scroll::after { animation: none; }
}

/* ---------- 21. 電話番号のコピー通知（PCのみ。main.js が生成） ---------- */
.toast {
  position: fixed; z-index: 300; left: 50%; bottom: 36px;
  transform: translate(-50%, 14px);
  background: rgba(11, 9, 8, .95); border: 1px solid var(--kin);
  color: var(--kin-hi); font-size: 12.5px; letter-spacing: .12em;
  padding: 13px 24px; backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.toast.is-in { opacity: 1; transform: translate(-50%, 0); }
/* PCでは「発信」ではなく「コピー」であることをカーソルで示す */
body.no-tel a[href^="tel:"] { cursor: copy; }

/* ---------- 22. 大衆焼肉テーマの追加コンポーネント ---------- */

/* ---- アイコン（assets/icons.svg を main.js が差し込み、<use> で参照） ----
   以前は絵文字を使っていたが、ベースラインと字幅が環境依存でズレるためSVGに変更した。
   線だけ（塗りなし・currentColor）なので、赤地に白でも黒地に赤でも同じ形で出る。 */
.ico {
  /* リセットの `svg { display: block }` を打ち消す。
     block のままだと文中で行が分かれ、ボタンの文字が折り返されてしまう。 */
  display: inline-block;
  width: 1em; height: 1em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* 丸い赤地の中に白のアイコン。grid の place-items で必ず中心に来る */
.icon-dot {
  display: inline-grid; place-items: center; flex: none;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--shu); box-shadow: 0 3px 0 rgba(0,0,0,.45);
}
.icon-dot .ico { width: 25px; height: 25px; color: #fff; stroke-width: 2.1; }
.pillar .icon-dot { margin-bottom: 14px; }

/* 見出しラベル（— NEWS など）の前に置くアイコン */
.eyebrow .ico { width: 1.6em; height: 1.6em; color: var(--chochin); }

/* 文中に置くアイコン。行の高さに合わせて少し下げる */
.seat-note .ico { width: 1.35em; height: 1.35em; color: var(--chochin); vertical-align: -.3em; margin-right: 2px; }
.btn .ico { width: 1.35em; height: 1.35em; vertical-align: -.3em; margin-right: 8px; }


/* お品書き：名物の大きいカード */
.feature-cards { display: grid; gap: 16px; margin-bottom: 40px; }
@media (min-width: 720px) { .feature-cards { grid-template-columns: 1fr 1fr; } }
.feature-card {
  position: relative; display: flex; align-items: center; gap: 20px;
  padding: 18px; border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(150deg, rgba(215,0,15,.14), rgba(215,0,15,.02));
}
.feature-card img { width: 128px; height: 128px; object-fit: cover; border-radius: 12px; flex: none; }
.feature-card h3 { font-size: 24px; }
.feature-card p { margin: 8px 0 0; font-size: 12.5px; color: #cfc5ba; line-height: 1.9; }
.feature-card .price { font-family: var(--serif); color: var(--chochin); font-size: 21px; margin-left: 10px; }
.feature-card .ribbon {
  position: absolute; top: -11px; left: 16px;
  background: var(--shu); color: #fff; font-size: 11px; letter-spacing: .2em;
  padding: 4px 14px; border-radius: 999px; font-weight: 700;
  box-shadow: 0 3px 0 rgba(0,0,0,.4);
}

/* お席のご案内 */
.seat-cards { display: grid; gap: 18px; }
@media (min-width: 760px) { .seat-cards { grid-template-columns: 1fr 1fr; } }
.seat-card { background: var(--charcoal); border: 1px solid var(--line-soft); border-radius: 16px; overflow: hidden; }
.seat-card .shot { aspect-ratio: 16 / 10; }
.seat-card__body { padding: 20px 22px 24px; }
.seat-card__body h3 { font-size: 20px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
/* 卓数・定員（テーブル席 5卓・各4名さま）。見出しより小さく、提灯の黄で */
.seat-card__body h3 small {
  font-family: var(--sans); font-size: 11.5px; font-weight: 700;
  letter-spacing: .12em; color: var(--chochin); white-space: nowrap;
}
.seat-card__body p { margin: 10px 0 0; font-size: 13.5px; color: #d8cec2; line-height: 2; }
.seat-note {
  margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px 26px;
  font-size: 13px; color: var(--kinari); font-weight: 700;
}
.seat-note span { display: flex; align-items: center; gap: 8px; }

/* Instagram 最新投稿（/api/ig から取得した実投稿のタイル） */
.ig-feed {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 1140px; margin-inline: auto;
}
.ig-tile {
  display: block; aspect-ratio: 1; overflow: hidden;
  border-radius: 14px; border: 1px solid var(--line-soft); background: var(--charcoal);
}
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.ig-tile:hover img { transform: scale(1.06); }
@media (max-width: 520px) {
  .ig-feed { gap: 8px; }
  .ig-tile { border-radius: 10px; }
}
.ig-handle { text-align: center; margin: 26px 0 14px; font-size: 12.5px; letter-spacing: .16em; color: var(--muted); font-weight: 700; }

/* Instagram フォローボタン（IGのグラデーション） */
.btn--ig {
  border: 0; color: #fff; border-radius: 999px;
  background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
}
.btn--ig::before { background: linear-gradient(45deg, #d97f26, #c94f2e 25%, #b81c34 50%, #a81a54 75%, #97136e); }
.btn--ig svg { width: 18px; height: 18px; fill: #fff; }

/* 角丸を全体に少し効かせて「洗練」から「大衆」へ寄せる */
.btn { border-radius: 999px; }
.menu-row__shot { border-radius: 10px; }
.shot > img { border-radius: inherit; }

/* ==========================================================================
   24. 大衆焼肉のあしらい
   「黒地に赤」だけでは高級店にも見えてしまうので、大衆酒場の記号を足している。
   ・暖簾の赤白ストライプ
   ・提灯の黄色い灯り
   ・貼り紙（短冊）の価格
   ・厚い枠とベタ影（印刷物のような硬さ。ぼかし影は使わない）
   画像は増やさず、すべてCSSで描いている。
   ========================================================================== */

/* ---- 24-1. 暖簾（のれん）のストライプ帯 ----
   セクションの上端に赤白の縦縞を敷く。暖簾の裾のようにギザギザで切る。 */
.noren-band {
  --noren-w: 22px;             /* 縞1本の幅 */
  height: 17px; position: relative; z-index: 3;
  background: repeating-linear-gradient(90deg,
    var(--shu) 0 var(--noren-w),
    var(--washi) var(--noren-w) calc(var(--noren-w) * 2));
}
/* 裾の三角。SVGのマスクで山を切り出す（conic-gradient より確実）。
   ★viewBox を必ず付ける。無いと mask-size で縮めたときに拡大縮小されず、
     縞幅を狭めるスマホ側（15px）で三角が途中で切れる。 */
.noren-band::after {
  content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 9px;
  background: inherit;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 9' preserveAspectRatio='none'%3E%3Cpath d='M0 0h22L11 9z' fill='%23000'/%3E%3C/svg%3E") 0 0 / var(--noren-w) 9px repeat-x;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 9' preserveAspectRatio='none'%3E%3Cpath d='M0 0h22L11 9z' fill='%23000'/%3E%3C/svg%3E") 0 0 / var(--noren-w) 9px repeat-x;
}
@media (max-width: 520px) { .noren-band { --noren-w: 15px; height: 13px; } }

/* ---- 24-2. 見出しの影は付けない ----
   一度「看板風の赤いベタ影」を入れたが、見た目が悪いというご指摘で撤去した。
   見出しは白文字のみ。ただし写真の上に載る FV と下層ページの見出しは、
   写真の明るい部分で文字が消えるため、色の付かない黒のぼかし影だけ残している
   （これは装飾ではなく可読性のためのもの）。 */
.h-sec { text-shadow: none; }
.h-sec .sm, .phead h1 .sm { text-shadow: none; }

/* ---- 24-2b. 文の途中で改行させない見出し ----
   「真栄で大衆焼肉として三十年。」は14文字あり、放っておくと文の途中で折り返す。
   ① white-space: nowrap で途中改行を禁止（<br> による意図した改行は効いたまま）
   ② それだけでは入りきらないので、収まる大きさまで字を小さくする。
      全角14文字の実幅 ＝ 14 × 1.08em（font-size ＋ letter-spacing .08em）。

   ★注意：nowrap は要素の min-content 幅を「1行ぶんの長さ」に固定する。
     .concept は 900px 以上で `1.05fr .95fr` の2カラムになるが、fr の最小値は
     min-content なので、字が大きいままだと**見出しの列が勝手に広がり、
     写真の列が潰れる**（実測：404px → 234px）。そのため2カラム域では
     カラム幅（≒ wrap の 52.5%）を基準に別途サイズを決めている。 */
.h-sec--nobreak {
  white-space: nowrap;
  /* 1カラム域：幅は wrap いっぱい（100vw − 左右の余白）。14×1.08 で割ると約 5.6vw */
  font-size: min(clamp(26px, 4.4vw, 40px), 5.6vw);
}
@media (min-width: 900px) {
  /* 2カラム域：見出しの列は (wrap − gap) × 1.05/2。
     900px→約389px、1236px以上→約558px。14×1.08 で割ると 2.9vw 相当だが、
     ★vw はスクロールバーの幅を含む一方、実際のレイアウト幅は含まない。
       PCでは 15px ぶん（1024pxで約1.5%）計算が大きく出るので 2.8vw に落としている。
       この差を見落として 2.9vw にしたときは、1024px で 2px はみ出していた。 */
  .h-sec--nobreak { font-size: min(2.8vw, 36px); }
}
/* サブラベル（芦山のこと）は別行なので折り返してよい */
.h-sec--nobreak .sm { white-space: normal; }

/* ---- 24-3. 提灯の灯り（黄色いグロー） ----
   FVと予約帯の隅を、提灯を吊ったときの光の落ち方に寄せる。 */
.hero__bg::after {
  background:
    linear-gradient(180deg, rgba(11,9,8,.82) 0%, rgba(11,9,8,.30) 34%, rgba(11,9,8,.96) 100%),
    linear-gradient(90deg, rgba(11,9,8,.66) 0%, rgba(11,9,8,.10) 46%, transparent 72%),
    radial-gradient(58% 40% at 88% 8%, rgba(255,201,60,.30), transparent 66%),
    radial-gradient(120% 70% at 78% 82%, rgba(217,84,31,.26), transparent 62%);
}

/* ---- 24-4. 板壁のテクスチャ ----
   縦の板目を薄く入れる。木の色は使わず、明暗差だけで板の継ぎ目を出す
   （黒地の統一感を壊さないため）。 */
.section--sumi::before, .ftr::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(90deg,
      rgba(255,255,255,.022) 0 1px,
      transparent 1px 3px,
      rgba(0,0,0,.10) 3px 4px,
      transparent 4px 88px);
}
.ftr { position: relative; }
.section--sumi > *, .ftr > * { position: relative; z-index: 1; }

/* ---- 24-5. 貼り紙（短冊）の価格札 ----
   壁に貼った値札。生成りの紙に赤い文字。少し傾けて「貼った」感じを出す。 */
.fuda {
  display: inline-block; background: var(--washi);
  font-family: var(--serif); font-size: 15px; letter-spacing: .02em;
  padding: 3px 13px 4px; border-radius: 2px;
  box-shadow: 0 2px 0 rgba(0,0,0,.45);
  transform: rotate(-1.4deg);
  text-shadow: none;
}
.fuda--lg { font-size: 21px; padding: 5px 17px 6px; }
/* 生成りの紙の上なので文字は必ず濃い赤。
   .feature-card .price など、他の色指定に負けないよう :where で下げずに書く
   （黄色のままだと紙の上で 1.36:1 になり完全に読めなくなる）。 */
.fuda, .feature-card .price.fuda, .menu-row__price.fuda { color: var(--shu-dark); }

/* ---- 24-6. カードを厚い枠＋ベタ影に ----
   細い1pxの枠は上品に見えるが大衆感が出ない。枠を2pxにして、
   ぼかしゼロの影を下に落とす（紙を重ねたような硬さ）。 */
.pillar, .seat-card, .feature-card, .ig-tile, .menu-row__shot {
  box-shadow: 0 4px 0 rgba(0, 0, 0, .5);
}
.seat-card, .feature-card, .ig-tile { border-width: 2px; border-color: var(--line); }
.pillars { gap: 2px; background: var(--shu); }
.pillar { border-radius: 0; }
.pillar .icon-dot { box-shadow: 0 3px 0 var(--shu-dark); }



/* ---- 24-9. ボタンをもう少し骨太に ---- */
.btn { font-weight: 700; letter-spacing: .16em; }
.btn--fill { box-shadow: 0 4px 0 var(--shu-dark); }
.btn--fill:hover { box-shadow: 0 2px 0 var(--shu-dark); transform: translateY(2px); }
.btn--gold { border-width: 2px; border-color: var(--chochin); color: var(--chochin); }
.btn--ig { box-shadow: 0 4px 0 rgba(0,0,0,.45); }

/* ---- 24-10. 電話番号は黄色で最大級に目立たせる ---- */
.hdr__tel { color: var(--chochin); }
.nav__list .nav__tel { color: var(--chochin) !important; }

/* ---- 24-11. Instagram の見出し・ハンドル ---- */
.ig-handle { color: var(--chochin); }

/* ==========================================================================
   25. 既存のお客様向けの導線
   「電話をかける」「お知らせを読む」の2つ。
   お店がサイトを更新できない前提なので、どちらも更新作業ゼロで成立させている。
   ========================================================================== */

/* ---- 25-2. Instagram 最新投稿の本文 ----
   写真だけでは「何のお知らせか」が伝わらない。臨時休業などは文章が本体なので、
   本文のある一番新しい投稿を1件だけ、貼り紙のように見せる。 */
.ig-latest { max-width: 720px; margin: 0 auto 34px; }
.ig-latest__card {
  display: block; background: var(--washi); color: #2b2320;
  border-radius: 4px; padding: 20px 22px 18px;
  box-shadow: 0 4px 0 rgba(0,0,0,.45);
  transform: rotate(-.5deg);
  transition: transform .35s var(--ease);
}
.ig-latest__card:hover { transform: rotate(0deg) translateY(-2px); }
.ig-latest__card time {
  display: block; font-family: var(--serif); font-size: 12px;
  letter-spacing: .12em; color: var(--shu-dark); margin-bottom: 10px;
}
.ig-latest__body {
  margin: 0; font-size: 14.5px; line-height: 1.95; color: #2b2320;
  white-space: pre-line;              /* 投稿の改行を活かす */
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 6;
  overflow: hidden;                    /* 長文は6行で切る */
}
.ig-latest__more {
  display: inline-block; margin-top: 12px;
  font-size: 12px; letter-spacing: .1em; font-weight: 700; color: var(--shu-dark);
  text-decoration: underline; text-underline-offset: 3px;
}

/* ---- 25-3. スマホ用の固定電話バー ----
   PCでは tel: が使えないうえヘッダーに番号が出ているので、1024px 以下だけ。 */
.callbar { display: none; }
@media (max-width: 1024px) {
  .callbar {
    position: fixed; z-index: 95; left: 0; right: 0; bottom: 0;
    display: flex; align-items: center; gap: 10px;
    padding: 13px var(--gut) calc(13px + env(safe-area-inset-bottom, 0px));
    background: var(--shu); color: #fff;
    box-shadow: 0 -4px 0 var(--shu-dark), 0 -14px 24px rgba(0,0,0,.35);
    font-family: var(--sans); letter-spacing: .08em;
  }
  .callbar[hidden] { display: none; }
  .callbar .ico { width: 22px; height: 22px; flex: none; }
  /* 1行に固定する。折り返すとバーが2段になり、画面を大きく塞いでしまう */
  .callbar__t {
    font-size: 13px; font-weight: 700; white-space: nowrap;
    display: flex; align-items: baseline; gap: 9px;
  }
  .callbar__t b { font-family: var(--serif); font-size: 17px; letter-spacing: .02em; }
  .callbar__sub { margin-left: auto; font-size: 11px; opacity: .92; white-space: nowrap; }
  /* バーがフッターの最後の行を隠さないように、その高さぶん余白をとる */
  .ftr { padding-bottom: calc(30px + 62px + env(safe-area-inset-bottom, 0px)); }
}
/* 幅が足りない端末では営業状態を省く（番号を優先。状態はFV直下の帯で分かる） */
@media (max-width: 430px) {
  .callbar__sub { display: none; }
}

