@charset "UTF-8";

/* ============================================================
   お食事処やまびこ - トップページスタイル
   配色: 赤(朱)・黒・白を基調とした和風暖色系
   コンテンツ最大幅: 1200px
   ============================================================ */

:root {
  --primary: #8b0000;
  --primary-dark: #6b0000;
  --primary-light: #b22222;
  --accent: #c89b3c;
  --accent-light: #e6c178;
  --bg: #fdf8f0;
  --bg-alt: #f5ede0;
  --bg-image-pad: #efe5d0;
  --bg-curry: #eae2ba;
  --bg-dark: #1a1612;
  --text: #1a1a1a;
  --text-sub: #555;
  --text-light: #888;
  --border: #d4c4a8;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);

  --cat-magazine: #8b0000;
  --cat-tv: #2c5f2d;
  --cat-web: #1d3557;
  --cat-news: #6c3a1f;
  --cat-honor: #b8860b;
  --cat-release: #5e3a7a;
  --cat-other: #555;

  --content-max: 1200px;
  --header-h: 72px;
  --header-h-sp: 60px;

  --font-mincho: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "YuMincho",
    "Hiragino Mincho ProN", "MS PMincho", serif;
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    "Meiryo", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  /* ページ内容がビューポートより短い場合、フッター下の余白も
     フッターと同じダークカラーで埋まるように。 */
  background: var(--bg-dark);
  /* iOS Safari 等の実機モバイルで、画面外に押し出された
     ハンバーガーメニューに右スワイプで到達できないようにする。 */
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
  /* スマホで画面外に隠したハンバーガーメニューを、右スワイプで見えないようにする */
  overflow-x: hidden;
  position: relative;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font-mincho);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
}

/* ---------- 共通レイアウト ---------- */
.container {
  width: 92%;
  max-width: var(--content-max);
  margin-inline: auto;
}

.section {
  padding: 80px 0;
}

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

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head__ja {
  font-family: var(--font-mincho);
  font-size: 2rem;
  color: var(--primary);
  letter-spacing: 0.08em;
  position: relative;
  display: inline-block;
  padding: 0 24px;
}

.section-head__ja::before,
.section-head__ja::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.section-head__ja::before {
  right: 100%;
}

.section-head__ja::after {
  left: 100%;
}

.section-head__en {
  display: block;
  font-family: var(--font-mincho);
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.3em;
  margin-top: 8px;
}

/* ============================================================
   ヘッダー
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 240, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.header__inner {
  width: 92%;
  max-width: var(--content-max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-mincho);
  color: var(--text);
}

.logo__main {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.logo__sub {
  font-size: 0.7rem;
  color: var(--text-sub);
  letter-spacing: 0.2em;
}

.logo:hover {
  color: var(--primary);
}

.nav__list {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav__link {
  font-family: var(--font-mincho);
  font-size: 1rem;
  color: var(--text);
  letter-spacing: 0.08em;
  padding: 8px 0;
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease, left 0.25s ease;
}

.nav__link:hover::after {
  width: 100%;
  left: 0;
}

/* ハンバーガー */
.hamburger {
  display: none;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.hamburger span {
  display: block;
  position: absolute;
  left: 4px;
  width: 28px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}

.hamburger span:nth-child(1) { top: 10px; }
.hamburger span:nth-child(2) { top: 17px; }
.hamburger span:nth-child(3) { top: 24px; }

.hamburger.is-open span:nth-child(1) {
  top: 17px;
  transform: rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  top: 17px;
  transform: rotate(-45deg);
}

/* ============================================================
   ヒーロー
   看板画像 (top.jpg) は 950×362px (約2.62:1) と低解像度のため、
   表示サイズを 1200px に抑えて拡大による劣化を防ぐ。
   左右の帯は現サイトの body 背景 (frame.png) を踏襲。
   ============================================================ */
.hero {
  position: relative;
  background-color: var(--bg-curry);
  background-image: url("../img/frame.png");
  background-repeat: repeat;
  overflow: hidden;
}

.hero__media {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  aspect-ratio: 950 / 362;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================================================
   英語メニューPDFダウンロードバナー
   ヒーローのテクスチャを引き継がず、独立したセクションとして表示。
   ============================================================ */
.lang-banner {
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 20px 16px;
  text-align: center;
}

.lang-banner__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text);
  font-family: var(--font-mincho);
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lang-banner__link:hover {
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.lang-banner__icon {
  color: var(--primary);
  flex-shrink: 0;
}

.lang-banner__text {
  font-size: 1.05rem;
  font-weight: 600;
}

.lang-banner__sub {
  font-size: 0.78rem;
  color: var(--text-sub);
  letter-spacing: 0.2em;
  padding-left: 12px;
  border-left: 1px solid var(--border);
}

@media (max-width: 480px) {
  .lang-banner {
    padding: 14px 12px;
  }
  .lang-banner__link {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 12px;
    padding: 10px 20px;
  }
  .lang-banner__sub {
    padding-left: 0;
    border-left: none;
    width: 100%;
  }
}

/* ============================================================
   お知らせ
   ============================================================ */
.news__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  background: #fff;
  padding: 24px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
}

.news-item--no-image {
  grid-template-columns: 1fr;
}

.news-item__figure {
  width: 240px;
  height: 240px;
  background: var(--bg-image-pad);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.news-item__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.news-item__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-item__date {
  font-family: var(--font-mincho);
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

/* 日付が空または未記載の場合、余分な空白を生じさせない */
.news-item__date:empty {
  display: none;
}

.news-item__title {
  font-family: var(--font-mincho);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 12px;
}

.news-item__text {
  margin: 0;
  color: var(--text-sub);
  font-size: 0.95rem;
  line-height: 1.9;
}

/* ============================================================
   ウマさの秘密
   ============================================================ */
.secret {
  background: var(--bg-alt);
}

.secret__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.secret__figure {
  position: relative;
}

.secret__figure::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--accent);
  z-index: 0;
}

.secret__img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}

.secret__body {
  font-size: 1rem;
  line-height: 2;
}

.secret__lead {
  font-family: var(--font-mincho);
  font-size: 1.4rem;
  color: var(--primary);
  margin: 0 0 24px;
  line-height: 1.6;
}

.secret__text {
  margin: 0 0 16px;
  color: var(--text);
}

.secret__more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.secret__more.is-open {
  max-height: 2000px;
}

.secret__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 32px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 2px;
  font-family: var(--font-mincho);
  font-size: 1rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.secret__toggle:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.secret__toggle-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.secret__toggle.is-open .secret__toggle-icon {
  transform: rotate(180deg);
}

/* ============================================================
   ヒストリー（掲載記録）
   ============================================================ */
.history__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.history-card {
  background: #fff;
  padding: 24px 24px 24px 28px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--cat-other);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.history-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.history-card[data-cat="magazine"] { border-left-color: var(--cat-magazine); }
.history-card[data-cat="tv"]       { border-left-color: var(--cat-tv); }
.history-card[data-cat="web"]      { border-left-color: var(--cat-web); }
.history-card[data-cat="news"]     { border-left-color: var(--cat-news); }
.history-card[data-cat="honor"]    { border-left-color: var(--cat-honor); }
.history-card[data-cat="release"]  { border-left-color: var(--cat-release); }

.history-card__date {
  font-family: var(--font-mincho);
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}

/* 日付が空または未記載の場合、余分な空白を生じさせない */
.history-card__date:empty {
  display: none;
}

.history-card__title {
  font-family: var(--font-mincho);
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.5;
}

.history-card__cat {
  display: inline-block;
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--cat-other);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.history-card[data-cat="magazine"] .history-card__cat { background: var(--cat-magazine); }
.history-card[data-cat="tv"]       .history-card__cat { background: var(--cat-tv); }
.history-card[data-cat="web"]      .history-card__cat { background: var(--cat-web); }
.history-card[data-cat="news"]     .history-card__cat { background: var(--cat-news); }
.history-card[data-cat="honor"]    .history-card__cat { background: var(--cat-honor); }
.history-card[data-cat="release"]  .history-card__cat { background: var(--cat-release); }

/* 画像つきカード（あゆみ）
   PC ではカードの高さがバラバラになって見栄えが悪くなるため非表示、
   スマホでは情報量を補うために表示する。 */
.history-card__figure {
  display: none;
  margin: 4px 0 12px;
  background: var(--bg-image-pad);
  aspect-ratio: 1 / 1;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 2px;
}

.history-card__img {
  max-width: 80%;
  max-height: 92%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .history-card__figure {
    display: flex;
  }
}

.history-card__link {
  color: inherit;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  transition: color 0.2s ease;
}

.history-card__link::after {
  content: "↗";
  font-size: 0.78em;
  color: var(--accent);
  transition: transform 0.25s ease;
}

/* カードボックス全体をホバーで、リンクの矢印とタイトル色をアニメーション */
.history-card:hover .history-card__link {
  color: var(--primary);
}

.history-card:hover .history-card__link::after {
  transform: translate(3px, -3px);
}

/* 3カラム・4カラム表示時のみ「エスビー食品」の後で改行する
   （概ね viewport 960px 以上で 3カラム以上になる） */
.title-br-narrow {
  display: none;
}

@media (min-width: 960px) {
  .title-br-narrow {
    display: initial;
  }
}

/* あゆみ ― アーカイブへのリンク */
.history__more {
  text-align: center;
  margin-top: 48px;
}

.history__more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  font-family: var(--font-mincho);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: #fff;
  border: 1px solid var(--primary);
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.history__more-link:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.history-card__note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.8;
}

/* ============================================================
   店舗情報
   ============================================================ */
.access {
  background: var(--bg-alt);
}

.access__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
}

.access__info {
  background: #fff;
  padding: 36px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.access__name {
  font-family: var(--font-mincho);
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.access__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.access__table th,
.access__table td {
  padding: 12px 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px dashed var(--border);
}

.access__table th {
  font-family: var(--font-mincho);
  font-weight: 500;
  color: var(--primary);
  width: 6em;
  white-space: nowrap;
}

.access__table tr:last-child th,
.access__table tr:last-child td {
  border-bottom: none;
}

.access__hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.access__hours-list li {
  padding: 2px 0;
}

.access__hours-list strong {
  display: inline-block;
  width: 4em;
  color: var(--accent);
  font-family: var(--font-mincho);
  font-weight: 500;
}

.access__note {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ---------- お支払い（キャッシュレス）---------- */
.access__payment-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 4px 14px;
  font-family: var(--font-mincho);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  border-radius: 2px;
  margin-bottom: 10px;
}

.access__payment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-sub);
}

.access__payment-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(212, 196, 168, 0.5);
}

.access__payment-list li:last-child {
  border-bottom: none;
}

.access__payment-list strong {
  flex-shrink: 0;
  min-width: 6em;
  font-family: var(--font-mincho);
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.access__map {
  position: relative;
  min-height: 360px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--bg-image-pad);
}

.access__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.access__cta {
  text-align: center;
  margin-top: 40px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-mincho);
  letter-spacing: 0.12em;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ============================================================
   Q&A ページ
   ============================================================ */
.faq-page {
  padding: 64px 0 80px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 14px;
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
}

.faq-item__q {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 60px;
  font-family: var(--font-mincho);
  font-size: 1.05rem;
  color: var(--text);
  position: relative;
  user-select: none;
  transition: background 0.2s ease;
  line-height: 1.6;
}

.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::marker { display: none; }

.faq-item__q::before {
  content: "Q.";
  position: absolute;
  left: 24px;
  top: 18px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.faq-item__q::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: translateY(-75%) rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-item__q::after {
  transform: translateY(-25%) rotate(-135deg);
}

.faq-item__q:hover {
  background: var(--bg-alt);
}

.faq-item__a {
  position: relative;
  padding: 18px 28px 22px 60px;
  border-top: 1px dashed var(--border);
  font-family: var(--font-mincho);
  line-height: 1.9;
  color: var(--text-sub);
}

.faq-item__a::before {
  content: "A.";
  position: absolute;
  left: 24px;
  top: 18px;
  color: var(--accent);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.faq-item__a p {
  margin: 0 0 12px;
}

.faq-item__a p:last-child {
  margin-bottom: 0;
}

.faq-item__a-list {
  list-style: none;
  margin: 8px 0 12px;
  padding: 0;
}

.faq-item__a-list li {
  padding: 4px 0;
  font-size: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
}

.faq-item__a-list li strong {
  display: inline-block;
  min-width: 6em;
  color: var(--primary);
  font-family: var(--font-mincho);
  font-weight: 500;
}

.faq-item__a-note {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 6px;
  font-family: var(--font-mincho);
}

@media (max-width: 768px) {
  .faq-page {
    padding: 48px 0 64px;
  }
  .faq-item__q {
    padding: 16px 44px 16px 48px;
    font-size: 0.98rem;
  }
  .faq-item__q::before {
    left: 18px;
    top: 16px;
    font-size: 1rem;
  }
  .faq-item__q::after {
    right: 20px;
  }
  .faq-item__a {
    padding: 16px 20px 20px 48px;
    font-size: 0.95rem;
  }
  .faq-item__a::before {
    left: 18px;
    top: 16px;
    font-size: 1rem;
  }
}

/* ============================================================
   店舗案内ページ
   ============================================================ */
.access-page {
  padding: 64px 0 80px;
}

.shop-photo {
  max-width: 360px;
  margin: 0 auto 48px;
  text-align: center;
}

.shop-photo__frame {
  display: block;
  background: #fff;
  padding: 12px 12px 14px;
  border-radius: 2px;
  box-shadow: var(--shadow-md);
}

.shop-photo__frame img {
  display: block;
  width: 100%;
  height: auto;
}

.shop-photo__caption {
  display: block;
  font-family: var(--font-mincho);
  font-size: 0.85rem;
  color: var(--text-sub);
  margin-top: 12px;
  letter-spacing: 0.15em;
}

.shop-cert {
  display: inline-block;
  margin: 0 auto 32px;
  padding: 8px 24px;
  font-family: var(--font-mincho);
  font-size: 0.9rem;
  color: var(--primary);
  border: 1px solid var(--primary);
  letter-spacing: 0.12em;
  border-radius: 2px;
}

.shop-cert-wrap {
  text-align: center;
}

.shop-essay {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 0 0;
}

.shop-essay + .shop-essay {
  padding-top: 48px;
  margin-top: 48px;
  border-top: 1px dashed var(--border);
}

.shop-essay__title {
  font-family: var(--font-mincho);
  font-size: 1.5rem;
  color: var(--primary);
  text-align: center;
  margin: 0 0 32px;
  padding-bottom: 14px;
  position: relative;
  letter-spacing: 0.1em;
}

.shop-essay__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60px;
  height: 2px;
  background: var(--accent);
  transform: translateX(-50%);
}

.shop-essay__body {
  font-family: var(--font-mincho);
  line-height: 2;
  color: var(--text);
  font-size: 1rem;
}

.shop-essay__body p {
  margin: 0 0 18px;
}

.shop-essay__body p:last-child {
  margin-bottom: 0;
}

.shop-essay__lead {
  font-size: 1.18rem;
  color: var(--primary);
  margin-bottom: 24px;
  text-align: center;
}

.shop-essay__sign {
  text-align: right;
  font-size: 0.95rem;
  color: var(--text-sub);
  margin-top: 24px;
}

@media (max-width: 768px) {
  .access-page {
    padding: 48px 0 64px;
  }
  .shop-photo {
    max-width: 280px;
    margin-bottom: 36px;
  }
  .shop-essay {
    padding-top: 48px;
  }
  .shop-essay + .shop-essay {
    padding-top: 36px;
    margin-top: 36px;
  }
  .shop-essay__title {
    font-size: 1.3rem;
  }
  .shop-essay__lead {
    font-size: 1.05rem;
  }
}

/* ============================================================
   お品書き（メニュー）ページ
   ============================================================ */
.menu-page {
  padding: 64px 0 80px;
}

.menu-notes {
  background: #fff;
  border: 1px solid var(--border);
  padding: 22px 28px;
  margin: 0 auto 56px;
  max-width: 820px;
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
}

.menu-notes ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 28px;
  font-size: 0.88rem;
  color: var(--text-sub);
  font-family: var(--font-mincho);
}

.menu-notes ul li::before {
  content: "・";
  color: var(--accent);
}

.menu-category {
  margin-bottom: 64px;
}

.menu-category__head {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 14px;
  position: relative;
}

.menu-category__head::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 64px;
  height: 2px;
  background: var(--accent);
  transform: translateX(-50%);
}

.menu-category__title {
  font-family: var(--font-mincho);
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin: 0 0 4px;
}

.menu-category__sub {
  font-family: var(--font-mincho);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.3em;
  margin: 0;
}

.menu-category__hero {
  margin: 0 auto 36px;
  max-width: 480px;
  text-align: center;
}

.menu-category__hero img {
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  width: 100%;
  height: auto;
}

.menu-category__lead {
  text-align: center;
  font-family: var(--font-mincho);
  color: var(--text-sub);
  font-size: 0.9rem;
  margin: -8px 0 24px;
}

.menu-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
}

.menu-list--single {
  grid-template-columns: 1fr;
  max-width: 640px;
}

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 4px;
  border-bottom: 1px dashed var(--border);
  font-size: 1rem;
}

.menu-item__name {
  flex: 1;
  line-height: 1.5;
}

.menu-item__detail {
  display: block;
  font-size: 0.78rem;
  color: var(--text-sub);
  margin-top: 2px;
  letter-spacing: 0;
}

.menu-item__price {
  font-family: var(--font-mincho);
  font-size: 1.1rem;
  color: var(--primary);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.menu-item__tag {
  display: inline-block;
  font-size: 0.68rem;
  padding: 2px 8px;
  background: var(--primary);
  color: #fff;
  border-radius: 2px;
  margin-right: 6px;
  vertical-align: middle;
  letter-spacing: 0.08em;
  font-family: var(--font-mincho);
}

.menu-item__tag--season {
  background: var(--cat-tv);
}

.menu-item__tag--new {
  background: var(--accent);
}

.menu-item--suspended {
  color: var(--text-light);
}

.menu-item--suspended .menu-item__name,
.menu-item--suspended .menu-item__price {
  text-decoration: line-through;
}

.menu-item__suspended-note {
  display: block;
  font-size: 0.78rem;
  color: var(--primary);
  margin-top: 2px;
  text-decoration: none;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .menu-page {
    padding: 48px 0 64px;
  }
  .menu-notes {
    padding: 18px 20px;
    margin-bottom: 40px;
  }
  .menu-notes ul {
    gap: 4px 16px;
    font-size: 0.82rem;
  }
  .menu-category {
    margin-bottom: 48px;
  }
  .menu-category__title {
    font-size: 1.25rem;
  }
  .menu-list,
  .menu-list--single {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .menu-item__price {
    font-size: 1.05rem;
  }
}

/* ============================================================
   フッター
   ============================================================ */
.footer {
  background: var(--bg-dark);
  color: #d8cfc0;
  padding: 48px 0 24px;
  text-align: center;
  font-size: 0.85rem;
}

.footer__logo {
  font-family: var(--font-mincho);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.12em;
}

.footer__nav {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0;
}

.footer__nav a {
  color: #d8cfc0;
  font-family: var(--font-mincho);
  letter-spacing: 0.08em;
}

.footer__nav a:hover {
  color: var(--accent-light);
}

.footer__copy {
  margin-top: 24px;
  color: #8a8378;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 900px) {
  .secret__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .access__inner {
    grid-template-columns: 1fr;
  }

  .access__map {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .section {
    padding: 56px 0;
  }

  .section-head__ja {
    font-size: 1.5rem;
  }

  .header {
    height: var(--header-h-sp);
  }

  html {
    scroll-padding-top: var(--header-h-sp);
  }

  .logo__main {
    font-size: 1.15rem;
  }

  .logo__sub {
    display: none;
  }

  /* ハンバーガー表示 */
  .hamburger {
    display: block;
  }

  .nav {
    position: fixed;
    top: var(--header-h-sp);
    right: 0;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - var(--header-h-sp));
    background: rgba(253, 248, 240, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0s linear 0.3s;
    overflow-y: auto;
  }

  .nav.is-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.3s ease, visibility 0s linear 0s;
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
  }

  .nav__link {
    display: block;
    padding: 18px 32px;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
  }

  .nav__link::after {
    display: none;
  }

  /* お知らせ: 縦並びに */
  .news-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .news-item__figure {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 320px;
    margin-inline: auto;
  }

  /* ウマさの秘密 */
  .secret__figure::before {
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
  }

  .secret__lead {
    font-size: 1.2rem;
  }

  /* 店舗情報 */
  .access__info {
    padding: 24px;
  }

  .access__table th {
    width: 5em;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 48px 0;
  }

  .container {
    width: 90%;
  }

  .section-head__ja {
    font-size: 1.3rem;
    padding: 0 16px;
  }

  .section-head__ja::before,
  .section-head__ja::after {
    width: 24px;
  }

  .history__list {
    grid-template-columns: 1fr;
  }

  .footer__nav {
    gap: 16px;
    font-size: 0.85rem;
  }
}
