@charset "UTF-8";
/* ============================================================
   store-restaurant.css — 洋食・レストランテーマ(イタリアン・フレンチ・ビストロ・焼肉・アジア料理ほか)
   方向: 大人のレストラン。生成りの麻 × 墨 × 深緑 × ボルドー、細い罫と広い余白
   シグネチャー: 額縁の二重罫で囲んだ献立表(コースのメニューカード)と、ローマ数字の皿順
   店の個性は写真が担う(焼肉・アジア料理でも破綻しないよう、色は落ち着いた中間色に限る)
   ============================================================ */
:root {
  --st-bg: #f4efe6;          /* 生成りの麻 */
  --st-surface: #fbf8f2;
  --st-ink: #1c1a17;         /* 墨 */
  --st-muted: #5e574e;
  --st-line: #d7cebf;
  --st-accent: #6d1f2c;      /* ボルドー */
  --st-accent-ink: #fbf8f2;
  --green: #1e3a31;          /* 深緑 */
  --green-2: #264a3e;
  --sumi: #161513;
  --brass: #c2a36b;          /* 真鍮(暗い面の上だけで使う) */
  --on-dark: #f1ebe0;
  --on-dark-muted: rgba(241, 235, 224, 0.72);
  --st-font-display: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --st-font-latin: "Cormorant Garamond", "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --st-font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --st-radius: 0px;
  --wrap: min(1120px, 100% - 40px);
}

body { font-size: 16px; line-height: 1.95; }
h1, h2, h3 { font-family: var(--st-font-display); font-weight: 600; line-height: 1.55; letter-spacing: 0.06em; }
.rs-wrap { width: var(--wrap); margin-inline: auto; }
.rs-narrow { max-width: 820px; margin-inline: auto; }
.rs-section { padding-block: clamp(80px, 11vw, 144px); }
.rs-num { font-family: var(--st-font-latin); font-weight: 600; font-feature-settings: "lnum" 1, "tnum" 1; letter-spacing: 0.02em; }

/* 飾り罫: ─── ◇ ─── */
.rs-orn { position: relative; display: block; width: 132px; height: 9px; margin: 18px auto 0; color: var(--st-accent); }
.rs-orn::before {
  content: ""; position: absolute; left: 0; right: 0; top: 4px; height: 1px; opacity: 0.6;
  background: linear-gradient(to right, currentColor 0 calc(50% - 11px), transparent calc(50% - 11px) calc(50% + 11px), currentColor calc(50% + 11px));
}
.rs-orn::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 6px; height: 6px;
  border: 1px solid currentColor; transform: translate(-50%, -50%) rotate(45deg);
}
.rs-orn--light { color: var(--brass); }

/* 見出し: 欧文の斜体の小見出し+明朝の見出し+飾り罫 */
.rs-head { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }
.rs-head__label {
  font-family: var(--st-font-latin); font-style: italic; font-weight: 500;
  font-size: clamp(17px, 1.8vw, 20px); letter-spacing: 0.06em; color: var(--st-accent);
  margin-bottom: 6px;
}
.rs-head__title { font-size: clamp(25px, 3.4vw, 36px); }
.rs-head__lead { margin: 20px auto 0; max-width: 34em; color: var(--st-muted); font-size: 15px; }
.rs-head--left { text-align: left; }
.rs-head--left .rs-orn { margin-left: 0; }
.rs-head--left .rs-head__lead { margin-left: 0; }

/* ボタン */
.rs-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 28px;
  background: var(--st-accent); color: var(--st-accent-ink);
  border: 1px solid var(--st-accent);
  font-size: 15px; font-weight: 500; letter-spacing: 0.1em; text-decoration: none;
  transition: background 0.3s var(--st-ease), color 0.3s var(--st-ease);
}
.rs-btn svg { width: 17px; height: 17px; }
.rs-btn:hover { background: #561722; }
.rs-btn--line { background: transparent; color: var(--st-ink); border-color: var(--st-ink); }
.rs-btn--line:hover { background: var(--st-ink); color: var(--st-bg); }
.rs-btn--gold { background: transparent; color: var(--brass); border-color: var(--brass); }
.rs-btn--gold:hover { background: var(--brass); color: var(--sumi); }

/* ヘッダー: 生成りに細罫。夜の色は使わない(小料理と分ける) */
.rs-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: color-mix(in srgb, var(--st-bg) 94%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--st-line);
}
.rs-header__inner { width: var(--wrap); margin-inline: auto; min-height: 64px; display: flex; align-items: center; gap: 28px; }
.rs-header__name {
  font-family: var(--st-font-display); font-weight: 600; font-size: 18px; letter-spacing: 0.14em;
  text-decoration: none; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.rs-header__nav { margin-left: auto; display: flex; gap: 26px; font-size: 14px; letter-spacing: 0.08em; }
.rs-header__nav a { text-decoration: none; padding-block: 4px; border-bottom: 1px solid transparent; }
.rs-header__nav a:hover { border-color: var(--st-accent); color: var(--st-accent); }
.rs-header__cta {
  display: inline-flex; align-items: center; min-height: 40px; padding: 0 18px;
  background: var(--st-accent); color: var(--st-accent-ink); font-size: 14px; letter-spacing: 0.12em; text-decoration: none;
}
.rs-header__tel {
  display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; white-space: nowrap; text-decoration: none;
  font-family: var(--st-font-latin); font-weight: 600; font-size: 19px; letter-spacing: 0.04em;
}
.rs-header__tel svg { width: 16px; height: 16px; color: var(--st-accent); }

/* お知らせ */
.rs-today { background: var(--green); color: var(--on-dark); }
.rs-today__inner { display: flex; align-items: baseline; gap: 14px; padding-block: 12px; font-size: 15px; }
.rs-today__label { flex: none; font-size: 12px; letter-spacing: 0.14em; color: var(--brass); border: 1px solid currentColor; padding: 1px 10px; }

/* ヒーロー: 写真を大きく。店名は写真の上に白で */
.rs-hero { position: relative; background: var(--sumi); }
.rs-hero__photo { position: relative; height: min(86vh, 780px); min-height: 520px; overflow: hidden; }
.rs-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.rs-hero__photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top, rgba(14, 13, 11, 0.86) 0%, rgba(14, 13, 11, 0.5) 38%, rgba(14, 13, 11, 0) 70%),
    linear-gradient(to right, rgba(14, 13, 11, 0.35), rgba(14, 13, 11, 0) 60%);
}
.rs-hero__photo .img-note { top: 12px; bottom: auto; }
.rs-hero__body {
  position: absolute; left: 0; right: 0; bottom: 118px; z-index: 2;
  width: var(--wrap); margin-inline: auto; color: var(--on-dark);
}
.rs-hero__en {
  font-family: var(--st-font-latin); font-style: italic; font-size: clamp(18px, 2vw, 22px);
  letter-spacing: 0.08em; color: var(--brass);
}
.rs-hero__en--ja { font-family: var(--st-font-display); font-style: normal; font-size: 15px; letter-spacing: 0.24em; }
.rs-hero__name { margin-top: 6px; font-size: clamp(34px, 5.6vw, 64px); font-weight: 800; letter-spacing: 0.1em; line-height: 1.3; text-wrap: balance; }
.rs-hero .rs-orn { margin-left: 0; }
.rs-hero__catch { margin-top: 18px; font-family: var(--st-font-display); font-size: clamp(18px, 2vw, 22px); letter-spacing: 0.1em; line-height: 1.8; }
.rs-hero__lead { margin-top: 12px; max-width: 30em; font-size: 15px; color: var(--on-dark-muted); }
.rs-hero__tags { margin-top: 18px; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.rs-hero__tags li { padding: 3px 12px; border: 1px solid rgba(194, 163, 107, 0.6); color: var(--on-dark); font-size: 13px; letter-spacing: 0.08em; }

/* ヒーローの下の帯(営業中・道のり・予約) */
.rs-strip { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; }
.rs-strip__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px 28px;
  padding: 20px clamp(20px, 3vw, 32px); background: var(--st-surface); color: var(--st-ink);
  border-top: 3px double var(--st-accent);
  transform: translateY(50%);
  box-shadow: 0 18px 40px -24px rgba(22, 21, 19, 0.45);
}
.rs-strip__info { display: grid; gap: 2px; min-width: 0; }
.rs-strip__place { font-size: 14px; color: var(--st-muted); }
.rs-strip__actions { display: flex; flex-wrap: wrap; gap: 10px; flex: none; }
.rs-hero { margin-bottom: 60px; }

/* ランチとディナー */
.rs-times__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 40px); }
.rs-times__grid--1 { grid-template-columns: minmax(0, 560px); justify-content: center; }
.rs-times__grid--3 { grid-template-columns: repeat(3, 1fr); }
.rs-time { background: var(--st-surface); border: 1px solid var(--st-line); display: grid; grid-template-rows: auto 1fr; }
.rs-time__img { aspect-ratio: 4 / 3; overflow: hidden; }
.rs-time__img img { width: 100%; height: 100%; object-fit: cover; }
.rs-time__body { padding: clamp(24px, 3vw, 36px); text-align: center; }
.rs-time__en { font-family: var(--st-font-latin); font-style: italic; font-size: 19px; color: var(--st-accent); }
.rs-time h3 { font-size: 24px; }
.rs-time__facts { margin: 16px 0 0; display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; text-align: left; border-block: 1px solid var(--st-line); padding-block: 14px; }
.rs-time__facts dt { font-size: 13px; color: var(--st-muted); letter-spacing: 0.08em; padding-top: 3px; }
.rs-time__facts dd { font-size: 15px; }
.rs-time__facts dd.rs-num { font-size: 21px; line-height: 1.5; }
.rs-time__text { margin-top: 16px; text-align: left; font-size: 15px; color: var(--st-muted); }

/* コース: 深緑の面に、額縁の献立表 */
.rs-courses { background: var(--green); color: var(--on-dark); }
.rs-courses .rs-head__label { color: var(--brass); }
.rs-courses .rs-head__lead { color: var(--on-dark-muted); }
.rs-courses .rs-orn { color: var(--brass); }
.rs-courses__img { max-width: 1040px; margin: 0 auto clamp(40px, 5vw, 64px); aspect-ratio: 21 / 9; overflow: hidden; }
.rs-courses__img img { width: 100%; height: 100%; object-fit: cover; }
.rs-cards { display: grid; gap: clamp(20px, 2.6vw, 32px); grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }
.rs-cards--1 { max-width: 460px; margin-inline: auto; }
.rs-cards--2 { max-width: 860px; margin-inline: auto; }
.rs-card {
  position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: clamp(40px, 4vw, 52px) clamp(22px, 3vw, 36px) clamp(32px, 3.4vw, 44px);
  background: var(--st-surface); color: var(--st-ink);
  outline: 1px solid var(--st-line); outline-offset: -10px;
  box-shadow: inset 0 0 0 13px var(--st-surface), inset 0 0 0 14px var(--st-line);
}
.rs-card__badge {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  padding: 4px 16px; background: var(--st-accent); color: var(--st-accent-ink);
  font-size: 12px; letter-spacing: 0.16em; white-space: nowrap;
}
.rs-card__name { font-family: var(--st-font-latin); font-weight: 600; font-size: clamp(26px, 2.6vw, 32px); letter-spacing: 0.04em; line-height: 1.3; }
.rs-card__sub { margin-top: 6px; font-size: 13px; letter-spacing: 0.12em; color: var(--st-muted); }
.rs-card__dishes { list-style: none; padding: 20px 0 0; margin: 20px 0 0; display: grid; gap: 12px; counter-reset: dish; width: 100%; border-top: 1px solid var(--st-line); }
.rs-card__dishes li { counter-increment: dish; font-family: var(--st-font-display); font-size: 15px; line-height: 1.6; }
.rs-card__dishes li::before {
  content: counter(dish, upper-roman); display: block;
  font-family: var(--st-font-latin); font-style: italic; font-size: 14px; color: var(--st-accent); letter-spacing: 0.1em; line-height: 1.3;
}
.rs-card__price { margin-top: auto; padding-top: 24px; display: flex; flex-direction: column; align-items: center; }
.rs-card__price::before { content: ""; width: 40px; height: 1px; background: var(--st-accent); margin-bottom: 18px; }
.rs-card__price .rs-num { font-size: 36px; line-height: 1.1; color: var(--st-accent); }
.rs-card__price small { margin-top: 4px; font-size: 12px; color: var(--st-muted); letter-spacing: 0.06em; }
.rs-card__note { margin-top: 12px; font-size: 13px; line-height: 1.7; color: var(--st-muted); }
.rs-courses__note { margin-top: clamp(28px, 3vw, 40px); text-align: center; font-size: 13px; color: var(--on-dark-muted); }

/* アラカルト */
.rs-carte__grid { display: grid; grid-template-columns: minmax(0, 380px) minmax(0, 1fr); gap: clamp(40px, 6vw, 88px); align-items: start; }
.rs-carte__grid--solo { grid-template-columns: minmax(0, 320px) minmax(0, 1fr); }
.rs-carte__side { position: sticky; top: 96px; }
.rs-carte__img { margin-top: 8px; aspect-ratio: 4 / 5; overflow: hidden; }
.rs-carte__img img { width: 100%; height: 100%; object-fit: cover; }
.rs-carte__lists { display: grid; gap: 40px; }
.rs-carte__group h3 {
  display: flex; align-items: center; gap: 14px; font-size: 18px; letter-spacing: 0.14em; margin-bottom: 6px;
}
.rs-carte__group h3::after { content: ""; flex: 1; height: 1px; background: var(--st-ink); opacity: 0.8; }
.rs-carte__group ul { list-style: none; padding: 0; }
.rs-carte__row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--st-line); }
.rs-carte__name { min-width: 0; font-size: 16px; }
.rs-carte__name small { display: block; margin-top: 2px; font-size: 13px; color: var(--st-muted); line-height: 1.6; }
.rs-carte__price { flex: none; font-size: 21px; max-width: 50%; text-align: right; white-space: normal; }
.rs-carte__note { font-size: 14px; color: var(--st-muted); }

/* 写真と文の2列(ワイン・記念日) */
.rs-drinks { background: var(--st-surface); border-block: 1px solid var(--st-line); }
.rs-split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 88px); align-items: center; }
.rs-split--rev { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
.rs-split--solo { grid-template-columns: minmax(0, 720px); justify-content: center; }
.rs-split__img { aspect-ratio: 4 / 5; overflow: hidden; }
.rs-split__img img { width: 100%; height: 100%; object-fit: cover; }
.rs-split .rs-head { margin-bottom: 28px; }
.rs-split__text p + p { margin-top: 1em; }
.rs-split__note { margin-top: 18px; font-size: 14px; color: var(--st-muted); }
.rs-prices { list-style: none; padding: 0; margin-top: 28px; border-top: 1px solid var(--st-ink); }
.rs-prices li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--st-line); }
.rs-prices .rs-num { font-size: 20px; flex: none; }
.rs-gifts { list-style: none; padding: 0; margin-top: 28px; display: grid; gap: 14px; }
.rs-gifts li { padding: 16px 20px; background: var(--st-surface); border-left: 2px solid var(--st-accent); }
.rs-gifts__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.rs-gifts b { font-family: var(--st-font-display); font-weight: 600; font-size: 17px; }
.rs-gifts .rs-num { font-size: 20px; color: var(--st-accent); flex: none; }
.rs-gifts p { margin-top: 4px; font-size: 14px; color: var(--st-muted); line-height: 1.75; }

/* お席とご来店の前に */
.rs-seats { background: var(--st-surface); border-block: 1px solid var(--st-line); }
.rs-seats__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 400px); gap: clamp(40px, 6vw, 88px); align-items: center; }
.rs-seats__grid--solo { grid-template-columns: minmax(0, 1fr); }
.rs-seats__nums { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--st-line); border: 1px solid var(--st-line); }
.rs-seats__nums > div { background: var(--st-surface); padding: 20px 22px; }
.rs-seats__nums dt { font-size: 13px; letter-spacing: 0.12em; color: var(--st-muted); }
.rs-seats__nums dd { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0 4px; }
.rs-seats__nums b { font-size: 46px; line-height: 1.1; color: var(--st-accent); }
.rs-seats__nums small { font-size: 14px; }
.rs-seats__nums span { flex-basis: 100%; font-size: 13px; color: var(--st-muted); line-height: 1.6; margin-top: 4px; }
.rs-seats__img { aspect-ratio: 3 / 4; overflow: hidden; }
.rs-seats__img img { width: 100%; height: 100%; object-fit: cover; }
.rs-guide { margin-top: clamp(72px, 9vw, 112px); }
.rs-seats__grid + .rs-guide { padding-top: clamp(64px, 8vw, 96px); border-top: 1px solid var(--st-line); }
.rs-guide__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(28px, 4vw, 56px); max-width: 960px; margin-inline: auto; }
.rs-guide__list > div { display: grid; grid-template-columns: 7.5em 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--st-line); }
.rs-guide__list dt { font-family: var(--st-font-display); font-weight: 600; letter-spacing: 0.1em; color: var(--st-accent); }
.rs-guide__list dd { font-size: 15px; line-height: 1.85; }

/* シェフ */
.rs-chef__grid { display: grid; grid-template-columns: minmax(0, 420px) minmax(0, 1fr); gap: clamp(40px, 6vw, 88px); align-items: center; }
.rs-chef__grid--solo { grid-template-columns: minmax(0, 720px); justify-content: center; }
.rs-chef__photo { aspect-ratio: 3 / 4; overflow: hidden; }
.rs-chef__photo img { width: 100%; height: 100%; object-fit: cover; }
.rs-chef .rs-head { margin-bottom: 26px; }
.rs-chef__name { font-family: var(--st-font-display); font-size: 22px; font-weight: 600; letter-spacing: 0.12em; margin-bottom: 18px; }
.rs-chef__name small { display: block; font-family: var(--st-font-body); font-size: 13px; font-weight: 400; color: var(--st-muted); letter-spacing: 0.1em; }
.rs-chef__name span { margin-left: 12px; font-family: var(--st-font-body); font-size: 13px; font-weight: 400; color: var(--st-muted); letter-spacing: 0.06em; }
.rs-chef__text p + p { margin-top: 1em; }
.rs-chef__career { list-style: none; padding: 18px 0 0; margin-top: 24px; border-top: 1px solid var(--st-line); display: grid; gap: 4px; font-size: 14px; color: var(--st-muted); }
.rs-chef__career li::before { content: "— "; color: var(--st-accent); }

/* お客さまの声 */
.rs-voices-sec { background: var(--st-surface); border-block: 1px solid var(--st-line); }
.rs-voices { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: clamp(24px, 3vw, 40px); }
.rs-voice { padding-top: 22px; border-top: 1px solid var(--st-ink); position: relative; }
.rs-voice::before { content: "\201C"; position: absolute; top: -6px; right: 0; font-family: var(--st-font-latin); font-size: 64px; line-height: 1; color: var(--st-accent); opacity: 0.5; }
.rs-voice__head { font-family: var(--st-font-display); font-weight: 600; font-size: 18px; line-height: 1.6; margin-bottom: 10px; padding-right: 30px; }
.rs-voice p:not([class]) { font-size: 15px; color: var(--st-muted); }
.rs-voice__who { margin-top: 12px; font-size: 13px; letter-spacing: 0.06em; }
.rs-voices-note { margin-top: 28px; font-size: 13px; color: var(--st-muted); text-align: center; }

/* よくある質問 */
.rs-faq { margin-top: 8px; border-top: 1px solid var(--st-ink); }
.rs-access .rs-faq { margin-top: clamp(56px, 7vw, 80px); }
.rs-faq details { border-bottom: 1px solid var(--st-line); }
.rs-faq summary { position: relative; padding: 20px 40px 20px 2.2em; font-family: var(--st-font-display); font-weight: 600; font-size: 16px; line-height: 1.7; }
.rs-faq summary::before { content: "Q."; position: absolute; left: 0; top: 17px; font-family: var(--st-font-latin); font-style: italic; font-size: 20px; color: var(--st-accent); }
.rs-faq summary::after { content: ""; position: absolute; right: 8px; top: 28px; width: 9px; height: 9px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg); transition: transform 0.3s var(--st-ease); }
.rs-faq details[open] summary::after { transform: rotate(-135deg); top: 32px; }
.rs-faq details p { padding: 0 8px 22px 2.2em; color: var(--st-muted); font-size: 15px; }

/* ご予約: 墨の面に真鍮の罫。電話番号は欧文の数字で大きく */
.rs-reserve { background: var(--sumi); color: var(--on-dark); padding-block: clamp(88px, 11vw, 136px); text-align: center; position: relative; }
.rs-reserve::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(194, 163, 107, 0.35); pointer-events: none; }
.rs-reserve__inner { position: relative; }
.rs-reserve__en { font-family: var(--st-font-latin); font-style: italic; font-size: 20px; color: var(--brass); letter-spacing: 0.08em; }
.rs-reserve h2 { margin-top: 6px; font-size: clamp(24px, 3.2vw, 34px); }
.rs-reserve__text { margin: 22px auto 0; max-width: 32em; color: var(--on-dark-muted); font-size: 15px; }
.rs-reserve__actions { margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 28px; }
.rs-reserve__tel { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; color: var(--on-dark); }
.rs-reserve__tel svg { width: 26px; height: 26px; color: var(--brass); }
.rs-reserve__tel .rs-num { font-size: clamp(36px, 5vw, 52px); line-height: 1.1; letter-spacing: 0.04em; }
.rs-reserve__hours { margin-top: 18px; font-size: 14px; color: var(--on-dark-muted); }
.rs-reserve__notes { margin-top: 22px; padding: 0; list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 12px; }
.rs-reserve__notes li { padding: 3px 14px; border: 1px solid rgba(194, 163, 107, 0.45); font-size: 13px; letter-spacing: 0.06em; }

/* フォーム */
.rs-form .st-form { border-radius: 0; }
.rs-form .st-form__submit { border-radius: 0; letter-spacing: 0.12em; }

/* アクセス */
.rs-access { background: var(--st-bg); }
.rs-access__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 64px); align-items: start; }
.rs-access__table { display: grid; grid-template-columns: 7em 1fr; border-top: 1px solid var(--st-ink); }
.rs-access__table dt, .rs-access__table dd { padding: 14px 0; border-bottom: 1px solid var(--st-line); font-size: 15px; }
.rs-access__table dt { font-family: var(--st-font-display); font-weight: 600; letter-spacing: 0.08em; }
.rs-access__table dd { min-width: 0; }
.rs-access__table dd small { color: var(--st-muted); font-size: 13px; }
.rs-access__table a { color: var(--st-accent); }
.rs-hours { width: 100%; margin-top: 28px; border-collapse: collapse; font-size: 14px; text-align: center; }
.rs-hours th, .rs-hours td { padding: 10px 4px; border-bottom: 1px solid var(--st-line); line-height: 1.5; }
.rs-hours thead th { font-family: var(--st-font-display); font-weight: 600; border-bottom: 1px solid var(--st-ink); }
.rs-hours tbody th { text-align: left; font-weight: 500; font-size: 13px; white-space: nowrap; padding-right: 10px; }
.rs-hours td { color: var(--st-accent); }
.rs-hours td.is-off { color: var(--st-muted); }

/* フッター */
.rs-footer { background: var(--green); color: var(--on-dark-muted); text-align: center; padding-block: 56px; font-size: 14px; }
.rs-footer__name { font-family: var(--st-font-display); font-weight: 600; font-size: 22px; letter-spacing: 0.14em; color: var(--on-dark); }
.rs-footer .rs-orn { margin-bottom: 18px; }

/* 電話バー(SP) */
.call-bar a:first-child { background: var(--st-accent); color: var(--st-accent-ink); }
.call-bar a:nth-child(2) { border: 1px solid var(--st-ink); color: var(--st-ink); }

/* ---- 受け取り前の下書きだけの部品 ---- */
.rs-place { padding-bottom: clamp(48px, 6vw, 72px); }
.rs-facts { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--st-line); }
.rs-facts > div { padding: 18px 12px; text-align: center; }
.rs-facts > div + div { border-left: 1px solid var(--st-line); }
.rs-facts dt { font-size: 12px; letter-spacing: 0.12em; color: var(--st-muted); }
.rs-facts dd { font-family: var(--st-font-display); font-weight: 600; font-size: 19px; line-height: 1.5; }
.rs-facts small { font-size: 12px; margin-left: 2px; }
.rs-draft-menu { background: var(--st-surface); border-block: 1px solid var(--st-line); }
.rs-draft-menu .ph { max-width: 960px; margin-inline: auto; border-color: var(--st-line); }
.rs-draft-menu .ph__slot { text-align: center; }
.rs-draft-menu .ph__lead { text-align: center; }
.rs-draft-menu .ph__actions { justify-content: center; }
.rs-draft-menu .om__cat { border-bottom-color: var(--st-ink); }
.rs-draft-menu .om__price { font-family: var(--st-font-latin); font-size: 19px; font-weight: 600; }
.p-restaurant .nr { background: var(--st-surface); }

/* ---- レスポンシブ ---- */
@media (max-width: 1023px) {
  .rs-header__nav { display: none; }
  .rs-header__inner { justify-content: space-between; gap: 12px; }
  .rs-times__grid--3 { grid-template-columns: 1fr 1fr; }
  .rs-carte__grid, .rs-carte__grid--solo { grid-template-columns: 1fr; }
  .rs-carte__side { position: static; }
  .rs-carte__img { aspect-ratio: 16 / 10; }
  .rs-split, .rs-split--rev { grid-template-columns: 1fr; }
  .rs-split--rev .rs-split__img { order: -1; }
  .rs-split__img { aspect-ratio: 16 / 11; }
  .rs-seats__grid { grid-template-columns: 1fr; }
  .rs-seats__img { aspect-ratio: 4 / 3; order: -1; }
  .rs-chef__grid { grid-template-columns: 1fr; }
  .rs-chef__photo { max-width: 360px; }
  .rs-access__grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .rs-section { padding-block: 72px; }
  .rs-header__inner { min-height: 56px; }
  .rs-header__name { font-size: 16px; letter-spacing: 0.1em; }
  .rs-header__cta { min-height: 38px; padding: 0 14px; }
  .rs-header__tel { font-family: var(--st-font-body); font-size: 14px; font-weight: 500; min-height: 38px; padding: 0 12px; border: 1px solid var(--st-ink); }
  .rs-header__tel svg { width: 15px; height: 15px; }
  .rs-hero { margin-bottom: 0; }
  /* 写真と文字を同じ升に重ねる(文字が長い店でも写真が伸びてはみ出さない) */
  .rs-hero { display: grid; }
  .rs-hero__photo, .rs-hero__body { grid-area: 1 / 1; }
  .rs-hero__photo { height: auto; min-height: min(128vw, 600px); }
  .rs-hero__photo img { position: absolute; inset: 0; object-position: 38% center; }
  .rs-hero__photo::after { background: linear-gradient(to top, rgba(14, 13, 11, 0.92) 0%, rgba(14, 13, 11, 0.72) 50%, rgba(14, 13, 11, 0.3) 78%, rgba(14, 13, 11, 0.1) 100%); }
  .rs-hero__body { position: relative; bottom: auto; align-self: end; padding: 44vw 0 30px; }
  .rs-hero__name { font-size: clamp(30px, 9vw, 40px); letter-spacing: 0.06em; }
  .rs-hero__catch { margin-top: 14px; font-size: 17px; }
  .rs-hero__lead { font-size: 14px; line-height: 1.8; }
  .rs-hero__tags { margin-top: 14px; gap: 6px; }
  .rs-hero__tags li { font-size: 12px; padding: 2px 10px; }
  .rs-strip { position: static; }
  .rs-strip__inner { width: 100%; transform: none; flex-direction: column; align-items: stretch; padding: 20px; box-shadow: none; border-top-width: 3px; border-bottom: 1px solid var(--st-line); }
  .rs-strip__actions { display: grid; grid-template-columns: 1fr; }
  .rs-strip__actions .rs-btn { width: 100%; }
  .rs-times__grid, .rs-times__grid--3 { grid-template-columns: 1fr; }
  .rs-courses__img { aspect-ratio: 4 / 3; margin-inline: -20px; max-width: none; }
  .rs-card { padding-inline: 28px; }
  .rs-seats__nums b { font-size: 40px; }
  .rs-guide__list { grid-template-columns: 1fr; }
  .rs-guide__list > div { grid-template-columns: 1fr; gap: 4px; padding: 18px 0; }
  .rs-reserve::before { inset: 10px; }
  .rs-reserve__actions { flex-direction: column; }
  .rs-reserve__actions .rs-btn { width: 100%; max-width: 320px; }
  .rs-access__table { grid-template-columns: 5.5em 1fr; }
  .rs-facts { grid-template-columns: 1fr 1fr; }
  .rs-facts > div:nth-child(3) { border-left: 0; }
  .rs-facts > div:nth-child(n + 3) { border-top: 1px solid var(--st-line); }
  .rs-hours { font-size: 13px; }
  .rs-hours tbody th { font-size: 12px; white-space: normal; }
}
