@charset "UTF-8";

/* ------------------------------------------------------------
   見出し用フォント（Zen Maru Gothic 700）を自分のサーバーに置いて読み込む
   ・見出し（h1〜h3）とロゴで実際に使う文字だけに絞った軽量版（約29KB）
   ・外部（Google Fonts）へ接続しないので表示が速く、通信も止めません
   ・font-display: swap … フォント到着前は標準フォントで先に表示します
   ・文字を絞っているため、見出しに新しい漢字を追加したときは
     標準フォントで表示されることがあります（表示が崩れることはありません）
------------------------------------------------------------ */
@font-face {
  font-family: 'Zen Maru Gothic';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/zen-maru-gothic-700.woff2") format("woff2");
  unicode-range: U+20, U+30-39, U+41-5a, U+61-7a, U+2026, U+3001-3002, U+300c-300d, U+3042, U+3044, U+3048, U+304a-305a, U+305f-3062, U+3064-306c, U+306e, U+3078-307a, U+307e, U+3081-3082, U+3088-308d, U+308f, U+3092, U+3099-309a, U+30a2-30a4, U+30a6, U+30ab-30ac, U+30af-30b2, U+30b5-30b6, U+30b9-30ba, U+30bf-30c3, U+30c6-30cb, U+30ce-30de, U+30e0-30e1, U+30e5, U+30e9-30ed, U+30f3-30f4, U+30fb-30fc, U+4e00, U+4e8b, U+4eba, U+4eca, U+4f55, U+4f5c, U+5143, U+51fa, U+5473, U+554f, U+5730, U+57df, U+5831, U+585a, U+58f0, U+5927, U+5b50, U+5b89, U+5ba2, U+5bb6, U+5c0f, U+5c45, U+5e2d, U+5e73, U+5e97, U+5ead, U+5fc3, U+60c5, U+611b, U+611f, U+624b, U+63a5, U+65cf, U+65e5, U+6642, U+6728, U+6750, U+6765, U+697d, U+69d8, U+6c17, U+6e80, U+70b9, U+713c, U+751f, U+7684, U+7686, U+7740, U+7a7a, U+7aaf, U+7dd2, U+7f8e, U+8217, U+826f, U+843d, U+8cea, U+8db3, U+8fce, U+9593, U+98df, U+ff01, U+ff08-ff09, U+ff1f, U+ff5e;
}

/* ============================================================
   トールレストラン｜スタイルシート（見た目の設定）

   【編集のヒント】
   - 色・余白・角丸などのよく変える値は、下の「:root（設定値）」に
     まとめてあります。まずはここを変えると全体の印象を調整できます。
   - 各セクションは index.html と同じ順番・同じ名前で並んでいます。
   - スマホ→パソコンの順（モバイルファースト）で書いています。
     画面が広いときの調整は、一番下の「@media（画面幅ごとの調整）」にあります。
============================================================ */

/* ------------------------------------------------------------
   :root … サイト全体で使う「設定値」
   ここの数字や色を変えるだけで全体のデザインを調整できます
------------------------------------------------------------ */
:root {
  /* 色 */
  --color-bg:        #fdfbf7;   /* 背景（ベースのクリーム色） */
  --color-cream:     #f5eee2;   /* セクションの薄いベージュ背景 */
  --color-text:      #3a322c;   /* 基本の文字色（こげ茶） */
  --color-muted:     #7d7368;   /* 補足の文字色（グレージュ） */
  --color-primary:   #b5502f;   /* メインカラー（テラコッタ／トマト色） */
  --color-accent:    #7b8a4e;   /* アクセントカラー（オリーブ） */
  --color-dark:      #2f2823;   /* ボタンなどの濃い色 */
  --color-border:    #e7ddce;   /* 枠線の色 */
  --color-star:      #e8a13a;   /* レビューの星の色 */

  /* 余白・角丸・影 */
  --radius:   14px;             /* 角丸の大きさ */
  --shadow:   0 8px 24px rgba(60, 45, 30, 0.08);  /* カードの影 */
  --gap:      24px;             /* 要素間のすき間 */

  /* 中身の最大幅（これ以上は横に広がりません） */
  --container: 1120px;
}

/* ------------------------------------------------------------
   全体の初期設定（リセット）
------------------------------------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* 幅の計算に枠線・内側余白を含める */
}

html {
  scroll-behavior: smooth;   /* メニュークリック時になめらかにスクロール */
  scroll-padding-top: 72px;  /* 固定ヘッダーに隠れないよう上に余白 */
}

body {
  /* 本文は端末に最初から入っている日本語フォントを使用（追加の読み込みゼロ＝高速）。
     Mac/iPhone→ヒラギノ、Windows→游ゴシック／メイリオ が自動で選ばれます */
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.9;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* 見出しには丸みのあるフォントを使用（やわらかい印象） */
h1, h2, h3,
.logo__jp {
  font-family: "Zen Maru Gothic", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.5;
}

/* 中身をまとめる「枠」。左右に余白をつけて中央寄せ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 760px; } /* FAQなど幅を狭くしたい場所用 */

/* 各セクション共通の上下余白 */
.section { padding: 72px 0; }
.section--cream { background: var(--color-cream); } /* 薄ベージュ背景のセクション */

/* ------------------------------------------------------------
   セクション見出し（ラベル＋タイトル）共通パーツ
------------------------------------------------------------ */
.section__label {
  text-align: center;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  margin-bottom: 8px;
}
.section__title {
  text-align: center;
  font-size: clamp(1.4rem, 4vw, 2rem); /* 画面幅に応じて自動で大きさ調整 */
  margin-bottom: 40px;
  position: relative;
}
/* 見出しの下に小さな飾り線 */
.section__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 16px auto 0;
}
/* 左寄せにしたい見出し（About・ポテチくんなど） */
.section__title--left { text-align: left; }
.section__title--left::after { margin-left: 0; }

/* ラベルを大きく目立たせたいとき用（例：看板犬ポテチくん）
   ↓この数字を変えると大きさを調整できます */
.section__label--lg {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

/* ------------------------------------------------------------
   ボタン共通
------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;      /* 丸いボタン */
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn__icon { width: 22px; height: 22px; }

/* 濃い色のボタン（メイン） */
.btn--primary { background: var(--color-dark); color: #fff; }
.btn--primary:hover { background: #000; }

/* 白抜き（枠線）ボタン */
.btn--outline { background: #fff; color: var(--color-dark); border-color: var(--color-dark); }
.btn--outline:hover { background: var(--color-dark); color: #fff; }
/* CTAなど暗い背景の上に置く白抜きボタン */
.btn--outline-light { background: transparent; color: #fff; border-color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--color-dark); }

.btn--small { padding: 11px 22px; font-size: 0.85rem; }

/* ============================================================
   ヘッダー（上部の固定メニュー）
============================================================ */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
/* スクロールすると背景が付く（script.js が is-scrolled を付け外し） */
.header.is-scrolled {
  background: rgba(253, 251, 247, 0.95);
  box-shadow: 0 2px 12px rgba(60, 45, 30, 0.08);
  backdrop-filter: blur(6px);
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ロゴ */
.logo { display: flex; flex-direction: column; line-height: 1.2; }
.logo__jp { font-size: 1.15rem; color: var(--color-text); }
.logo__en {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--color-muted);
}

/* パソコン用ナビ（スマホでは下の @media で開閉式に変わります） */
.nav__list { display: flex; align-items: center; gap: 26px; }
.nav__list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s ease;
}
.nav__list a:hover { color: var(--color-primary); }
/* 「ご予約」だけボタン風に強調 */
.nav__reserve {
  background: var(--color-primary);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 999px;
}
.nav__reserve:hover { background: #97401f; }

/* スマホ用メニューボタン（初期は隠しておく） */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
/* メニューを開いたとき、3本線が「×」に変化 */
.hamburger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ============================================================
   ① ファーストビュー（ヒーロー）
============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  /* 背景に店内写真を敷く */
  background: url("images/photo-interior.webp") center/cover no-repeat;
}
/* 写真の上に薄い白のグラデーションを重ねて文字を読みやすく */
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(253, 251, 247, 0.94) 0%,
    rgba(253, 251, 247, 0.85) 45%,
    rgba(253, 251, 247, 0.35) 100%
  );
}
.hero__inner { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 40px; }
/* 地域名＋業種の小見出し（h1の上に表示） */
.hero__eyebrow {
  display: inline-block;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--color-accent);
}
.hero__title {
  font-size: clamp(1.9rem, 6vw, 3.2rem);
  color: var(--color-text);
  margin-bottom: 24px;
}
.hero__text { color: var(--color-text); margin-bottom: 32px; font-weight: 500; }
.hero__buttons { display: flex; flex-wrap: wrap; gap: 16px; }

/* ============================================================
   ② トールレストランについて
============================================================ */
.about__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about__image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.about__body p { margin-bottom: 18px; }
/* 概要文（何を・どこで・誰向けに、を1文でまとめた導入。左に飾り線で目立たせる） */
.about__lead {
  font-size: 1.02rem;
  font-weight: 500;
  border-left: 4px solid var(--color-accent);
  padding-left: 16px;
}
.about__lead strong { color: var(--color-primary); font-weight: 700; }

/* ============================================================
   ③ 人気メニュー
============================================================ */
/* おすすめ3品のカード */
.menu__cards {
  display: grid;
  grid-template-columns: 1fr;   /* スマホは縦1列 */
  gap: var(--gap);
  margin-bottom: 56px;
}
.menu-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.menu-card:hover { transform: translateY(-6px); }
.menu-card__image { position: relative; aspect-ratio: 4 / 3; }
.menu-card__image img { width: 100%; height: 100%; object-fit: cover; }
/* 「人気No.1」の帯 */
.menu-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}
.menu-card__name { font-size: 1.15rem; padding: 18px 18px 0; }
.menu-card__desc { padding: 8px 18px 22px; color: var(--color-muted); font-size: 0.9rem; }

/* ジャンル別メニュー（ランチ／ディナー／デザート） */
.menu__lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}
.menu-list {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.menu-list__image { aspect-ratio: 16 / 9; }
.menu-list__image img { width: 100%; height: 100%; object-fit: cover; }
.menu-list__title {
  font-size: 1.1rem;
  padding: 16px 20px 4px;
  color: var(--color-primary);
}
.menu-list ul { padding: 0 20px 22px; }
.menu-list li {
  position: relative;
  padding-left: 18px;
  color: var(--color-muted);
  font-size: 0.92rem;
}
.menu-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

/* ============================================================
   ④ こだわり ＆ ⑤ 店内紹介（アイコン＋文章の共通レイアウト）
============================================================ */
.features, .interior__seats {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* スマホは2列 */
  gap: var(--gap);
}
.feature, .seat { text-align: center; }

/* 丸い背景の中にアイコンを入れる（見た目を統一） */
.feature__icon, .seat__icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.section--cream .feature__icon,
.section--cream .seat__icon { background: var(--color-bg); }
.feature__icon img, .seat__icon img { width: 56px; height: 56px; object-fit: contain; }
.feature__icon svg, .seat__icon svg { width: 46px; height: 46px; }

.feature__title, .seat__name { font-size: 1.05rem; margin-bottom: 6px; }
.feature p, .seat p { color: var(--color-muted); font-size: 0.88rem; }

/* ============================================================
   ⑥ 看板犬ポテチくん
============================================================ */
.potechi__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.potechi__image {
  flex-shrink: 0;
  width: 240px;
  background: var(--color-cream);
  border-radius: var(--radius);
  padding: 20px;
}
.potechi__body p { margin-bottom: 16px; }
/* 「毎日出勤中♪」などの丸バッジ */
.potechi__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.potechi__badges li {
  background: var(--color-cream);
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
}
.potechi__note { font-size: 0.8rem; color: var(--color-muted); }

/* ============================================================
   ⑦ ペットと一緒に
============================================================ */
.pets__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.pets__image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.pets__body > p { margin-bottom: 20px; }

/* チェックマーク付きリスト */
.checklist li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
  font-weight: 500;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 24px; height: 24px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* ============================================================
   ⑧ お客様の声
============================================================ */
.reviews__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}
.review-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.review-card__stars { color: var(--color-star); letter-spacing: 2px; margin-bottom: 10px; }
.review-card__title { font-size: 1.05rem; margin-bottom: 10px; }
.review-card p:last-child { color: var(--color-muted); font-size: 0.9rem; }

/* ============================================================
   ⑨ お子様連れ歓迎
============================================================ */
.kids__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* スマホは2列 */
  gap: var(--gap);
  margin-bottom: 28px;
}
.kids-item { text-align: center; }
.kids-item__icon {
  width: 84px; height: 84px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
}
.kids-item__icon img { width: 48px; height: 48px; object-fit: contain; }
.kids-item__icon svg { width: 44px; height: 44px; }
.kids-item p { font-size: 0.85rem; font-weight: 500; }
.kids__note { text-align: center; color: var(--color-muted); }

/* ============================================================
   ⑩ 店舗情報
============================================================ */
.info__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.info__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.info__table th, .info__table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
  font-size: 0.92rem;
}
.info__table tr:last-child th,
.info__table tr:last-child td { border-bottom: none; }
.info__table th {
  width: 40%;
  background: var(--color-cream);
  font-weight: 700;
  white-space: nowrap;
}
.info__icon { width: 20px; height: 20px; display: inline-block; vertical-align: middle; margin-right: 8px; }

/* 地図エリア（今はプレースホルダー。実際の埋め込み地図に差し替え可） */
.info__map {
  background: var(--color-cream);
  border-radius: var(--radius);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info__map-inner { text-align: center; }
.info__map-pin { width: 48px; height: 48px; margin: 0 auto 14px; opacity: 0.7; }

/* ============================================================
   ⑪ よくある質問（アコーディオン）
============================================================ */
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}
/* 質問（クリックできるボタン） */
.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 52px 18px 20px;
  font-size: 0.98rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--color-text);
  cursor: pointer;
  position: relative;
}
/* 右側の「＋」マーク（開くと「×」に回転） */
.faq-item__mark {
  position: absolute;
  right: 20px; top: 50%;
  width: 16px; height: 16px;
  transform: translateY(-50%);
}
.faq-item__mark::before,
.faq-item__mark::after {
  content: "";
  position: absolute;
  background: var(--color-primary);
  transition: transform 0.3s ease;
}
.faq-item__mark::before { top: 7px; left: 0; width: 16px; height: 2px; }        /* 横棒 */
.faq-item__mark::after  { top: 0; left: 7px; width: 2px; height: 16px; }        /* 縦棒 */
.faq-item.is-open .faq-item__mark::after { transform: rotate(90deg); opacity: 0; }

/* 答え（初期は閉じている。script.js が高さを開閉） */
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item__a p { padding: 0 20px 18px; color: var(--color-muted); font-size: 0.92rem; }

/* ============================================================
   ⑫ CTA（ご予約への案内）
============================================================ */
.cta {
  position: relative;
  padding: 80px 0;
  text-align: center;
  color: #fff;
  background: url("images/photo-drink.webp") center/cover no-repeat;
}
.cta__overlay {
  position: absolute; inset: 0;
  background: rgba(47, 40, 35, 0.78); /* 濃い半透明を重ねて文字を読みやすく */
}
.cta__inner { position: relative; z-index: 2; }
.cta__title { font-size: clamp(1.5rem, 5vw, 2.2rem); margin-bottom: 20px; }
.cta__text { margin-bottom: 32px; }
.cta__buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ============================================================
   フッター
============================================================ */
.footer {
  background: var(--color-dark);
  color: #fff;
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer__logo .logo__jp { color: #fff; font-size: 1.1rem; }
.footer__logo .logo__en { color: rgba(255, 255, 255, 0.6); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.footer__nav a { font-size: 0.85rem; color: rgba(255, 255, 255, 0.85); }
.footer__nav a:hover { color: #fff; }
.footer__copy { font-size: 0.75rem; color: rgba(255, 255, 255, 0.5); }

/* ============================================================
   スクロールで「ふわっ」と表示するアニメーション
   （script.js が is-visible を付けると表示されます）
============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }


/* ============================================================
   @media（画面幅ごとの調整）

   ・スマホ用のスタイルをここまでに書き、
     ここから下で「画面が広いとき」の上書きをしています。
============================================================ */

/* ------- 767px 以下（スマホ）：ナビを開閉式に ------- */
@media (max-width: 767px) {
  .hamburger { display: flex; } /* ハンバーガーボタンを表示 */

  /* ナビを画面右から出てくるパネルに変更（初期は画面外へ） */
  .nav {
    position: fixed;
    top: 0; right: 0;
    width: 74%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-bg);
    box-shadow: -6px 0 24px rgba(60, 45, 30, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 90px 28px 40px;
  }
  .nav.is-open { transform: translateX(0); } /* 開いたとき画面内へ */
  .nav__list { flex-direction: column; align-items: flex-start; gap: 4px; }
  .nav__list li { width: 100%; }
  .nav__list a {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 1rem;
  }
  .nav__reserve {
    margin-top: 12px;
    text-align: center;
    border-bottom: none !important;
  }
}

/* ------- 768px 以上（タブレット〜パソコン） ------- */
@media (min-width: 768px) {
  .section { padding: 96px 0; }

  /* メニュー：おすすめ3品、ジャンル別、こだわりを横並びに */
  .menu__cards { grid-template-columns: repeat(3, 1fr); }
  .menu__lists { grid-template-columns: repeat(3, 1fr); }
  .features { grid-template-columns: repeat(4, 1fr); }
  .interior__seats { grid-template-columns: repeat(4, 1fr); }
  .reviews__cards { grid-template-columns: repeat(3, 1fr); }
  .kids__items { grid-template-columns: repeat(5, 1fr); } /* 5つ横並び */

  /* About：画像を左、文章を右の2カラムに */
  .about__inner {
    flex-direction: row;
    align-items: center;
  }
  .about__image, .about__body { flex: 1; }

  /* ポテチくん：画像を左、文章を右に */
  .potechi__inner { flex-direction: row; align-items: center; }
  .potechi__image { width: 280px; }
  .potechi__body { flex: 1; }

  /* ペット：文章を左、画像を右に */
  .pets__inner { flex-direction: row; align-items: center; }
  .pets__body, .pets__image { flex: 1; }

  /* 店舗情報：表を左、地図を右に */
  .info__inner { flex-direction: row; align-items: stretch; }
  .info__table { flex: 1.1; }
  .info__map { flex: 1; }
}

/* ------- 1024px 以上（大きいパソコン画面） ------- */
@media (min-width: 1024px) {
  .hero__text { font-size: 1.05rem; }
  /* ヒーローの文章が写真部分にかからないよう幅を制限 */
  .hero__inner .hero__title,
  .hero__inner .hero__text { max-width: 620px; }
}
