@charset "utf-8";
/* WORLD MONJA ATLAS — docs/J-CATALYST-DESIGN-SYSTEM.md に従う。
   主題色は鉄板の鉄色。焦げ色（ember）は面で使わず点で使う。
   日本語のWebフォントは読み込まない（端末内蔵で足りる）。 */

/* 2026-08-12: 生成り(#f4f1e9)と真鍮の金(#9b7a38)をやめて、白とニュートラルの灰に変えた。
   理由は2つ。
   1. あの生成り＋金＋細身のセリフの組み合わせは「生成AIが作った画面」の見た目そのもので、
      中身が実データでも、そう見えてしまう。
   2. 焼いたもんじゃの写真が入った。紙が色を持っていると料理の色と喧嘩する。
      色を持つのは食べ物だけにする。
   焦げ色(ember)は面で使わず点で使う、という元の方針はそのまま。 */
:root {
  --paper: #ffffff;
  --paper-tint: #f5f5f4;
  --card: #ffffff;
  --ink: #101112;
  --ink-soft: #44474c;
  --ink-faint: #63676d;
  --night: #121417;
  --iron: #3e444b;
  --iron-lt: #6b737c;
  --ember: #a8331c;
  --brass: #6b6f75;
  --line: #e4e4e2;
  --line-soft: #efefee;

  --serif: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP",
          "Yu Gothic UI", Meiryo, system-ui, sans-serif;
  --latin: "Cormorant Garamond", "Times New Roman", serif;

  --wrap: 1120px;
  --pad: clamp(18px, 5vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.9;
  overflow-x: hidden;
}
@media (min-width: 768px) { body { font-size: 17px; } }

/* 自分で display を指定した要素は既定の [hidden]{display:none} に勝ってしまう。
   絞り込みで「件数だけ減ってカードは全部残る」事故を防ぐため !important を付ける。 */
[hidden] { display: none !important; }

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ember); }
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible {
  outline: 2px solid var(--ember); outline-offset: 3px;
}

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.32;
  text-wrap: balance;
  /* balance だけでは足りない。小書き仮名や長音符で行を始めさせない */
  line-break: strict;
  word-break: normal;
  overflow-wrap: break-word;
  margin: 0 0 .5em;
}
p { text-wrap: pretty; margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.num, .stat b, .hero__stat b, .rank__no, .fig b, time,
.shop__price, .datatable td, .bar__val {
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.wrap { width: min(100% - 2 * var(--pad), var(--wrap)); margin-inline: auto; }
.wrap--wide { width: min(100% - 2 * var(--pad), 1360px); margin-inline: auto; }

/* ───────── ヘッダ ───────── */
.topbar {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-soft);
}
/* ヘッダだけ本文より広い幅を使う。1120pxだとナビ13項目＋ロゴ＋言語切替が入らず、
   「Data / About / Changelog」だけが2行目に落ちて不格好だった（2026-08-13）。 */
.topbar__inner {
  display: flex; align-items: center; gap: 14px; min-height: 56px;
  width: min(100% - 2 * var(--pad), 1360px); margin-inline: auto;
}
.topbar__logo {
  font-family: var(--latin); font-size: 15px; letter-spacing: .16em;
  text-transform: uppercase; text-decoration: none; white-space: nowrap;
  display: flex; align-items: center; min-height: 46px; padding-inline: 2px;
}
.topbar__logo b { font-weight: 600; }
.navtoggle {
  margin-left: auto; min-height: 44px; min-width: 44px;
  background: none; border: 1px solid var(--line); border-radius: 3px;
  font-family: var(--sans); font-size: 13px; color: var(--ink); cursor: pointer;
}
/* 言語切替。ロゴの隣に置く、枠なしの小さな文字。
   2026-08-13: 枠付きボタンをナビの末尾に入れていたが、ナビが折り返すと
   ボタンだけ2行目に取り残されて不格好だった。KLフードアトラスと同じ作りにする。
   いま見ている言語は <b>（リンクにしない）。押せるのは相手側だけ。 */
.langsw {
  margin: 0 0 0 12px; display: flex; align-items: center; gap: 5px;
  font-family: var(--latin); font-size: 13.5px; letter-spacing: .1em;
  white-space: nowrap;
}
/* 狭い画面ではロゴを詰めて、ロゴ＋切替＋メニューボタンが1行に収まるようにする */
@media (max-width: 420px) {
  .topbar__logo { font-size: 13px; letter-spacing: .1em; }
  .langsw { margin-left: 8px; font-size: 13px; }
  .topbar__inner { gap: 8px; }
}
.langsw a, .langsw b {
  display: inline-flex; align-items: center;
  min-height: 44px; padding: 0 2px; text-decoration: none;
}
.langsw b { font-weight: 600; color: var(--ink); }
.langsw a { color: var(--ink-faint); }
.langsw a:hover { color: var(--ember); text-decoration: underline; text-underline-offset: 4px; }
.langsw span { color: var(--line); }

.nav { display: none; }
.nav.is-open { display: block; }
.nav__list {
  list-style: none; margin: 0; padding: 10px 0 18px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px 16px;
  border-top: 1px solid var(--line-soft);
}
.nav__list a {
  display: flex; align-items: center; min-height: 46px;
  font-size: 15px; text-decoration: none; letter-spacing: .02em;
}
.nav__list a[aria-current="page"] { color: var(--ember); }
.nav__en { font-family: var(--latin); font-size: 13px; letter-spacing: .14em;
  color: var(--ink-faint); text-transform: uppercase; margin-left: .5em; }
@media (min-width: 900px) {
  .navtoggle { display: none; }
  .nav { display: block !important; margin-left: auto; }
  /* 項目が増えた幅では折り返しを許す。nowrap のままだと画面外へ押し出す。 */
  .nav__list { border: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: flex-end;
    gap: 0 clamp(4px, .7vw, 12px); }
  .nav__list a { min-height: 56px; font-size: 13.5px; white-space: nowrap; padding-inline: 2px; }

  .nav__en { display: none; }
}

/* ───────── ヒーロー ───────── */
/* 2026-08-12: **左右に分けるのをやめ、全幅の帯に統一した。**
   分割（左に文字・右に縦長の図）は、縦長に切った画像が要るうえ、
   <picture> がフレックスの子になって高さ0に潰れ、右半分が真っ黒になる事故を
   2回起こした。帯なら画像1枚で済み、どの幅でも料理が最後まで見える。
   読ませる面と見せる面を分ける、という原則もそのまま守れる。 */
.hero { position: relative; background: var(--paper); color: var(--ink); }
.hero__inner { position: relative; padding: clamp(30px, 6vw, 56px) 0 clamp(30px, 6vw, 56px); }

.hero__fig { margin: 0; background: var(--night); }
.hero__fig img, .hero__fig svg {
  display: block; width: 100%; height: auto;
  aspect-ratio: 16 / 10; object-fit: cover; object-position: center;
}
@media (min-width: 760px) {
  .hero__fig img, .hero__fig svg { aspect-ratio: 21 / 9; }
}
@media (min-width: 1280px) {
  .hero__fig img, .hero__fig svg { aspect-ratio: 12 / 4; }
}
/* 図の下の説明。**図の上に重ねない。** */
.hero__fig figcaption {
  font-size: 14px; line-height: 1.7; color: var(--ink-soft);
  background: var(--paper-tint); border-top: 1px solid var(--line-soft);
  padding: 11px var(--pad) 12px;
}

.hero__kicker {
  font-family: var(--latin); font-size: clamp(13px, 3vw, 14px);
  letter-spacing: .28em; text-transform: uppercase; color: var(--ember); margin: 0 0 1.1em;
}
.hero__title {
  font-family: var(--latin); font-weight: 500;
  font-size: clamp(40px, 12.4vw, 92px); line-height: .98; letter-spacing: .012em;
  margin: 0 0 .3em; color: var(--ink);
}
.hero__ja { font-family: var(--serif); font-size: clamp(19px, 5.4vw, 30px); color: var(--ink); margin: 0 0 .9em; }
.hero__lead { max-width: 34em; color: var(--ink-soft); font-size: clamp(16px, 4vw, 18px); }
.hero__stats { list-style: none; margin: clamp(24px, 5vw, 36px) 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: clamp(18px, 4vw, 36px); }
.hero__stat { min-width: 84px; }
.hero__stat b { display: block; font-family: var(--latin); font-size: clamp(30px, 8.4vw, 50px); line-height: 1; color: var(--ink); }
/* --ink-faint は生成りの上だとコントラスト4.1で基準(4.5)に届かない。--ink-soft を使う。 */
.hero__stat span { display: block; font-size: 13.5px; letter-spacing: .06em; color: var(--ink-soft); margin-top: .5em; }
.hero__note { margin-top: 22px; font-size: 14.5px; color: var(--ink-soft); }

/* 下層ページのヒーロー（鉄板の帯。料理は置かない） */
.hero__media { position: relative; background: var(--night); }
.hero__media img, .hero__media svg {
  width: 100%; height: 100%; object-fit: cover; opacity: .5;
}
.hero:has(.hero__media) { background: var(--night); color: #f2ede3; }
.hero:has(.hero__media) .hero__media { position: absolute; inset: 0; }
.hero:has(.hero__media) .hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(178deg, rgba(11,13,16,.42) 0%, rgba(11,13,16,.7) 44%, rgba(11,13,16,.95) 100%);
}
.hero:has(.hero__media) .hero__title,
.hero:has(.hero__media) .hero__ja { color: #f7f2e8; }
.hero:has(.hero__media) .hero__kicker { color: #d9c69b; }

/* 英語版で本文がまだ日本語のときの断り書き。訳が済んだら出なくなる。 */
.wip { background: var(--paper-tint); border-bottom: 1px solid var(--line); }
.wip .wrap { padding: 18px 0 20px; }
.wip__title {
  font-family: var(--latin); font-size: 13px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ember); margin: 0 0 .5em;
}
.wip__body { margin: 0 0 .6em; font-size: 15px; line-height: 1.75; color: var(--ink-soft); max-width: 46em; }
.wip__link { margin: 0; font-size: 15px; }

/* ───────── セクション ───────── */
.section { padding: clamp(46px, 9vw, 96px) 0; }
.section--tint { background: var(--paper-tint); }
.section--dark { background: var(--night); color: #e8e1d4; }
.section--dark h2, .section--dark h3 { color: #f6f1e6; }
.section--dark a { color: #e0d5bb; }
.section__eyebrow {
  font-family: var(--latin); font-size: 13px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--brass); margin: 0 0 .9em;
}
.section__title { font-size: clamp(26px, 6.6vw, 44px); margin: 0 0 .6em; }
.section__lead { max-width: 42em; color: var(--ink-soft); }
.section--dark .section__lead { color: #c3bcae; }

.rule { border: 0; border-top: 1px solid var(--line); margin: clamp(30px, 6vw, 54px) 0; }

/* ───────── 目次カード（トップ） ───────── */
.gateway { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--line-soft); }
@media (min-width: 620px) { .gateway { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .gateway { grid-template-columns: repeat(3, 1fr); } }
.gateway a {
  display: block; background: var(--card); padding: clamp(20px, 3.4vw, 30px);
  text-decoration: none; min-height: 100%;
}
.gateway a:hover { background: #fffefb; }
.gateway__en { font-family: var(--latin); font-size: 13px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--brass); display: block; margin-bottom: .5em; }
.gateway__ja { font-family: var(--serif); font-size: clamp(19px, 4.4vw, 22px); display: block; margin-bottom: .45em; }
.gateway p { font-size: 16.5px; color: var(--ink-soft); margin: 0; line-height: 1.8; }

/* ───────── 統計 ───────── */
.stats { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--line-soft); }
@media (min-width: 560px) { .stats { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--card); padding: clamp(16px, 3vw, 24px); }
.stat b { display: block; font-family: var(--latin); font-size: clamp(28px, 7vw, 42px); line-height: 1; }
.stat span { display: block; font-size: 13.5px; color: var(--ink-faint); margin-top: .55em; }

/* ───────── 地図 ───────── */
.mapwrap { position: relative; border: 1px solid var(--line); background: var(--card); }
.map { height: min(66svh, 560px); width: 100%; background: #e8e3d8; }
.map--tsukishima { height: min(72svh, 620px); }
.leaflet-container { font: inherit; font-size: 14px; }
.mapbar {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  padding: 12px; border-top: 1px solid var(--line-soft); background: var(--paper-tint);
}
.mapbar__label { font-size: 13.5px; color: var(--ink-faint); }
.mapnote { font-size: 14px; color: var(--ink-faint); margin-top: 12px; }
.mappop b { font-family: var(--serif); font-size: 16px; display: block; }
.mappop span { display: block; font-size: 13.5px; color: #4a4a4a; }
.mappop a { display: inline-block; margin-top: 6px; font-size: 13.5px; }

/* ───────── チップ・絞り込み ───────── */
.filters { margin-bottom: clamp(22px, 4vw, 34px); }
.filters__row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 10px; }
.filters__label { font-size: 13.5px; letter-spacing: .08em; color: var(--ink-faint); width: 100%; }
@media (min-width: 620px) { .filters__label { width: auto; min-width: 5.4em; } }
.chip {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: 0 15px; border: 1px solid var(--line); border-radius: 999px;
  background: var(--card); font-family: var(--sans); font-size: 14.5px;
  color: var(--ink); cursor: pointer; line-height: 1;
}
.chip:hover { border-color: var(--iron-lt); }
.chip.is-on { background: var(--iron); border-color: var(--iron); color: #f6f1e6; }
.search { display: flex; align-items: center; gap: 10px; }
.search input {
  flex: 1; min-height: 46px; padding: 0 14px; font-size: 16px;
  font-family: var(--sans); color: var(--ink);
  border: 1px solid var(--line); border-radius: 3px; background: var(--card);
}
.counter { font-size: 14px; color: var(--ink-faint); margin-bottom: 14px; }
.empty { padding: 26px; border: 1px dashed var(--line); background: var(--card); color: var(--ink-soft); }

/* ───────── 店舗カード ───────── */
.cards { display: grid; gap: 1px; background: var(--line-soft); }
@media (min-width: 700px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card { background: var(--card); padding: clamp(18px, 3vw, 24px); display: flex; flex-direction: column; gap: 10px; }
.card__head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.card__name { font-size: clamp(19px, 4.4vw, 22px); margin: 0; }
.card__name a { text-decoration: none; }
.card__name a:hover { text-decoration: underline; }
.card__en { font-family: var(--latin); font-size: 13.5px; letter-spacing: .07em; color: var(--ink-faint); }
.card__where { font-size: 14px; color: var(--ink-faint); margin: 0; }
.card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.tag {
  font-size: 13.2px; line-height: 1.5; padding: 3px 9px; border-radius: 2px;
  background: var(--paper-tint); color: var(--ink-soft); border: 1px solid var(--line-soft);
}
.tag--type { background: #e7e9ec; border-color: #d5d9de; }
.tag--old { background: #f0e7d6; border-color: #e0d3b9; color: #6d5629; }
.tag--new { background: #e6ece9; border-color: #d2ddd8; color: #2f5a4c; }
.tag--overseas { background: #ece5e0; border-color: #ddd0c6; color: #7c4a2a; }
.card__meta { margin: 0; font-size: 14.5px; color: var(--ink-soft); }
.card__meta b { font-weight: 600; color: var(--ink); }
.card__foot { margin-top: auto; display: flex; flex-wrap: wrap; gap: 4px 16px; align-items: center; font-size: 14.5px; }
/* カードの操作リンクは「押す部品」なので44px以上にする（本文中の文中リンクは除く） */
.card__foot > a { display: inline-flex; align-items: center; min-height: 44px; }
.grade {
  font-family: var(--latin); font-size: 13px; letter-spacing: .1em;
  border: 1px solid var(--line); border-radius: 2px; padding: 2px 7px; color: var(--ink-faint);
}
.grade--a { border-color: #b6a271; color: #6d5629; }

/* ───────── 一覧（番号付きリスト） ───────── */
.rank { list-style: none; margin: 0; padding: 0; counter-reset: rk; }
.rank > li {
  display: grid; grid-template-columns: 2.6em 1fr; gap: 4px 14px;
  padding: clamp(15px, 2.6vw, 22px) 0; border-top: 1px solid var(--line-soft);
}
.rank > li:first-child { border-top: 0; }
.rank__no { font-family: var(--latin); font-size: clamp(22px, 5vw, 30px); color: var(--brass); line-height: 1.1; }
.rank__body h3 { font-size: clamp(18px, 4.2vw, 21px); margin: 0 0 .35em; }
.rank__body h3 a { text-decoration: none; }
.rank__body h3 a:hover { text-decoration: underline; }
.rank__why { font-size: 16.5px; color: var(--ink-soft); margin: 0 0 .35em; line-height: 1.82; }
.rank__where { font-size: 14px; color: var(--ink-faint); margin: 0; }

/* ───────── 読み物 ───────── */
.prose { max-width: 40em; }
.prose h3 { font-size: clamp(21px, 5vw, 28px); margin: clamp(30px, 6vw, 52px) 0 .5em; }
.prose h3:first-child { margin-top: 0; }
.prose .era { font-family: var(--latin); font-size: 13px; letter-spacing: .2em;
  color: var(--brass); display: block; margin-bottom: .3em; }
.prose strong { font-weight: 600; background: linear-gradient(transparent 62%, #eadfc4 62%); }
.section--dark .prose strong { background: none; color: #f3e6c6; }

.toc { list-style: none; margin: 0 0 clamp(26px, 5vw, 44px); padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px; }
.toc a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 14px;
  border: 1px solid var(--line); border-radius: 999px; background: var(--card);
  font-size: 14.5px; text-decoration: none;
}

/* ───────── 表 ───────── */
.tablewrap { overflow-x: auto; border: 1px solid var(--line); background: var(--card); }
.datatable { border-collapse: collapse; width: 100%; min-width: 520px; font-size: 15px; }
.datatable th, .datatable td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.datatable thead th { background: var(--paper-tint); font-family: var(--sans); font-size: 14px; font-weight: 600; white-space: nowrap; }
.datatable tbody tr:last-child td { border-bottom: 0; }

/* ───────── 棒グラフ（自作） ───────── */
.bars { list-style: none; margin: 0; padding: 0; }
.bars li { display: grid; grid-template-columns: minmax(6.5em, auto) 1fr auto; gap: 10px;
  align-items: center; padding: 6px 0; font-size: 14.5px; }
.bar { height: 12px; background: var(--paper-tint); border: 1px solid var(--line-soft); }
.bar > span { display: block; height: 100%; background: var(--iron); }
.bar__val { color: var(--ink-faint); font-size: 14px; }

/* ───────── 出典 ───────── */
.sources { list-style: none; margin: 0; padding: 0; }
.sources li { padding: 9px 0; border-top: 1px solid var(--line-soft); font-size: 14.5px; }
.sources li:first-child { border-top: 0; }
.sources a, a.url { word-break: break-all; overflow-wrap: anywhere; }
.callout {
  border-left: 3px solid var(--brass); background: var(--card);
  padding: clamp(16px, 3vw, 24px); margin: clamp(22px, 4vw, 34px) 0;
}
.callout h3 { font-size: clamp(18px, 4vw, 21px); margin-top: 0; }
.callout p:last-child { margin-bottom: 0; }
.callout--warn { border-left-color: var(--ember); }

/* ───────── 詳細（JSなしで開く） ───────── */
details.detail { border: 1px solid var(--line); background: var(--card); margin-top: 12px; }
details.detail > summary {
  display: flex; align-items: center; min-height: 46px; padding: 0 14px;
  cursor: pointer; font-size: 14.5px; list-style: none;
}
details.detail > summary::-webkit-details-marker { display: none; }
details.detail > summary::after { content: "＋"; margin-left: auto; color: var(--brass); }
details.detail[open] > summary::after { content: "−"; }
details.detail > div { padding: 0 14px 16px; }

/* ───────── 店舗ページ ───────── */
.shophead { padding: clamp(34px, 7vw, 64px) 0 clamp(22px, 4vw, 34px); }
.shophead h1 { font-size: clamp(28px, 7.4vw, 50px); margin-bottom: .25em; }
.shophead__en { font-family: var(--latin); font-size: clamp(14px, 3.4vw, 17px);
  letter-spacing: .1em; color: var(--ink-faint); margin: 0 0 1em; }
.dl { display: grid; grid-template-columns: 1fr; gap: 0; margin: 0; }
@media (min-width: 640px) { .dl { grid-template-columns: 10.5em 1fr; } }
.dl dt { font-size: 14.5px; color: var(--ink-faint); padding: 12px 0 0; border-top: 1px solid var(--line-soft); }
.dl dd { font-size: 15.5px; margin: 0; padding: 0 0 12px; }
@media (min-width: 640px) {
  .dl dt { padding: 12px 0; }
  .dl dd { padding: 12px 0; border-top: 1px solid var(--line-soft); }
}
.linkrow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 18px; border: 1px solid var(--iron);
  background: var(--iron); color: #f6f1e6; text-decoration: none;
  font-size: 15px; border-radius: 3px;
}
.btn:hover { background: #2f353b; color: #fff; }
.btn--ghost { background: var(--card); color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--paper-tint); color: var(--ink); }

/* ───────── フッタ ───────── */
.foot { background: var(--night); color: #a9a293; padding: clamp(38px, 7vw, 66px) 0 clamp(64px, 9vw, 88px); font-size: 14.5px; }
.foot a { color: #d6cbb2; }
.foot__grid { display: grid; gap: 26px; }
@media (min-width: 760px) { .foot__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.foot h2 { font-family: var(--latin); font-size: 15px; letter-spacing: .2em;
  text-transform: uppercase; color: #cdbd94; margin: 0 0 .9em; }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li a { display: flex; align-items: center; min-height: 44px; text-decoration: none; }
.foot__small { margin-top: 30px; font-size: 13.5px; color: #8d8678; }

/* ───────── ポータル戻り ───────── */
.portal-back {
  position: fixed; z-index: 50;
  left: max(14px, env(safe-area-inset-left));
  bottom: calc(14px + env(safe-area-inset-bottom));
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 46px; padding: 0 16px;
  background: var(--night); color: #e6dcc4; text-decoration: none;
  border: 1px solid #2c3238; border-radius: 999px; font-size: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,.24);
  transition: transform .22s ease, opacity .22s ease;
}
.portal-back.is-away { transform: translateY(150%); opacity: 0; pointer-events: none; }
@media (prefers-reduced-motion: reduce) { .portal-back { transition: none; } }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--night); color: #fff; padding: 12px 18px; z-index: 100;
}
.skip:focus { left: 8px; top: 8px; }

/* ───────── 印刷 ───────── */
@media print {
  .topbar, .portal-back, .filters, .mapbar, .navtoggle, .foot { display: none !important; }
  .section--dark, .hero { background: #fff !important; color: #000 !important; }
  .hero__scrim, .hero__media { display: none !important; }
  .hero__title, .hero__ja, .hero__stat b { color: #000 !important; }
  .card, .stat { break-inside: avoid; }
  body { font-size: 11pt; }
}

/* ───────── 地図（Leaflet）の見た目をこのサイトに合わせる ───────── */
/* 拡大・縮小は指で押す部品なので44px以上にする。既定は30pxしかない。 */
.leaflet-touch .leaflet-bar a,
.leaflet-bar a { width: 44px; height: 44px; line-height: 44px; font-size: 20px; }
.leaflet-bar { border: 1px solid var(--line); }
.leaflet-control-attribution {
  font-size: 13px; background: rgba(255, 253, 248, .9); color: var(--ink-soft);
}
.leaflet-control-attribution a { color: var(--ink); }
.leaflet-popup-content { font-size: 14.5px; margin: 12px 16px; }

/* ───────── 情景の帯（生成画像。文字は重ねない） ───────── */
.band { margin: 0; position: relative; background: var(--night); }
.band img {
  width: 100%; aspect-ratio: 3 / 1; object-fit: cover; object-position: center;
  opacity: .92;
}
/* 上下を隣の面の色へ溶かし、板が浮いて見えないようにする */
.band::before, .band::after {
  content: ""; position: absolute; left: 0; right: 0; height: clamp(28px, 6vw, 64px);
  pointer-events: none;
}
.band::before { top: 0; background: linear-gradient(var(--paper), rgba(244,241,233,0)); }
.band::after { bottom: 0; background: linear-gradient(rgba(235,230,218,0), var(--paper-tint)); }
.band figcaption {
  background: var(--paper-tint); color: var(--ink-faint);
  font-size: 13.5px; line-height: 1.75;
  padding: 14px var(--pad) 0;
  width: min(100% - 2 * var(--pad), var(--wrap)); margin-inline: auto;
  padding-inline: 0;
}
@media print { .band { display: none; } }

/* ───────── ヒーローに写真を敷くとき ───────── */
.hero__credit { margin-top: 10px; font-size: 13.5px; color: var(--ink-soft); }

/* 狭い画面では、写真を文字の下に敷かない。
   紙色のグラデーションが横76%までかかるので、スマートフォンでは
   料理がほとんど見えなくなる（＝何のサイトか分からない）。
   **見せる面と読ませる面を上下に分ける。** */
@media (max-width: 759px) {
  .hero--tall { display: flex; flex-direction: column; }
  .hero__media { position: relative; inset: auto; order: -1; }
  .hero__media img, .hero__media svg {
    width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover;
  }
  .hero__scrim { display: none; }
  .hero--tall .hero__inner {
    min-height: 0; padding-top: clamp(26px, 6vw, 40px);
  }
}
