@charset "UTF-8";
/* ============================================================================
   h.css — 案H：ビストロ・洋風

   ダークグリーン／ボルドー × クリーム。セリフ体。黒板メニュー風の一覧。
   バル・イタリアン・欧風居酒屋向け。

   ※ この案は業態が洋風なので、HTML側の店名・メニュー・営業時間も
      居酒屋案とは別内容にしてある（サンプル食堂／パスタ・ワイン／17:00-24:00）。

   案I（白レンガ）との違い：Hは暗く落ち着いた夜のビストロ、Iは明るく開放的な昼バル。
   ============================================================================ */

:root {
  --green:  #2f5d4a;   /* ダークグリーン */
  --green-d:#20402f;
  --wine:   #7b2b3a;   /* ボルドー */
  --cream:  #f7f2e7;
  --ink:    #26241f;
  --sub:    #7d7668;
  --line:   #ded3bd;
  --board:  #1f2a24;   /* 黒板 */

  /* 欧文はセリフ、和文は明朝で受ける */
  --serif: Georgia, "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  --sans:  "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;

  /* common.css の固定CTAへ流し込む配色 */
  --cta-bg: var(--wine);
  --cta-fg: #fff;
  --cta-radius: 2px;
  --cta-weight: 600;
  --bar-bg: var(--green-d);
  --bar-fg: var(--cream);
  --barcta-bg: var(--wine);
  --barcta-fg: #fff;
}

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 2;
  color: var(--ink);
  background: var(--cream);
}

.wrap   { width: 100%; max-width: 1060px; margin-inline: auto; padding-inline: 20px; }
.narrow { max-width: 720px; }

.sec { padding-top: 46px; padding-bottom: 72px; }
.sec--board { background: var(--board); color: var(--cream); }
@media (min-width: 768px) { .sec { padding-top: 70px; padding-bottom: 108px; } }

/* ---- 見出し：セリフ体の欧文＋和文 ---- */
.ttl {
  text-align: center;
  margin-bottom: 44px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 4.6vw, 1.75rem);
  font-weight: 400;
  letter-spacing: .14em;
  text-indent: .14em;
}
.ttl em {
  display: block;
  font-style: italic;
  font-size: .62em;
  letter-spacing: .06em;
  text-indent: 0;
  color: var(--wine);
  margin-bottom: 6px;
}
.ttl--light { color: var(--cream); }
.ttl--light em { color: #c9a227; }

/* ---- ヘッダー ---- */
.hdr {
  gap: 20px;
  padding-inline: 18px;
  background: var(--green);
  color: var(--cream);
  border-bottom: 3px solid #c9a227;
}
.hdr__brand {
  font-family: var(--serif);
  font-size: 1.05rem; letter-spacing: .1em;
  text-decoration: none; white-space: nowrap; color: var(--cream);
  line-height: 1.2;
}
.hdr__brand span {
  display: block;
  font-size: .5em; font-style: italic; letter-spacing: .3em;
  opacity: .75;
}
.hdr__nav { display: none; }
@media (min-width: 768px) {
  .hdr { padding-inline: 30px; gap: 28px; }
  .hdr__brand { font-size: 1.3rem; }
  .hdr__nav {
    display: flex; gap: 24px; margin-left: auto;
    font-size: 0.89rem; letter-spacing: .06em;
  }
  .hdr__nav a {
    text-decoration: none; padding-block: 5px;
    border-bottom: 1px solid transparent; transition: border-color .2s;
  }
  .hdr__nav a:hover { border-bottom-color: #c9a227; }
}

/* ---- ① ファーストビュー ---- */
.hero {
  position: relative;
  min-height: 50svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  color: var(--cream);
}
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(20,32,26,.62), rgba(20,32,26,.78));
}
/* 「まるダイニングバー」は9文字あり、余白と字間が広いと2行に折り返す。
   枠の内外の余白を詰めて幅を稼ぎ、字間も詰めて1行に収める。 */
.hero__in {
  position: relative; z-index: 1;
  padding: 30px 16px;
  border: 1px solid rgba(247, 242, 231, .45);
  margin: 0 10px;
}
.hero__est {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(.85rem, 3.5vw, .95rem); letter-spacing: .26em;
  color: #c9a227;
  margin-bottom: 14px;
}
.hero__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 8vw, 3rem);
  letter-spacing: .04em;
  text-indent: .04em;
  white-space: nowrap;
  line-height: 1.5;
}
.hero__type {
  margin-top: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(.95rem, 4vw, 1.15rem);
  letter-spacing: .18em;
  opacity: .95;
}
@media (min-width: 768px) {
  .hero { min-height: 88svh; }
  .hero__in { padding: 52px 76px; margin: 0 20px; }
}

/* ---- ② お店について ---- */
.prose { text-align: center; font-size: 1.00rem; }
.prose p + p { margin-top: 1.4em; }

/* ---- ③ 黒板メニュー ---- */
.board {
  border: 6px solid #6b4f2a;          /* 木枠 */
  background: var(--board);
  padding: 26px 20px;
  max-width: 760px;
  margin-inline: auto;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, .5);
}
.board__list { font-size: 0.99rem; }
.board__list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 0;
  color: var(--cream);
}
.board__list .nm { white-space: nowrap; }
.board__list .dot {
  flex: 1 1 auto;
  border-bottom: 1px dotted rgba(247, 242, 231, .45);
  transform: translateY(-4px);
}
.board__list .pr {
  white-space: nowrap;
  font-family: var(--serif);
  color: #c9a227;
}
@media (min-width: 768px) {
  .board { padding: 40px 48px; }
  .board__list { font-size: 1rem; }
}

/* 料理写真：黒板の下に小さめのグリッドで並べる */
.shots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 32px;
}
.shots img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
@media (min-width: 768px) {
  .shots { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 44px; }
  .shots img { aspect-ratio: 4 / 3; }
}

/* ---- ④ コース：罫線のみ ---- */
.rows { border-top: 1px solid var(--line); }
.row { border-bottom: 1px solid var(--line); padding: 26px 0; }
.row h3 {
  font-family: var(--serif);
  font-size: 1.05rem; font-weight: 400; letter-spacing: .1em;
}
.row__p {
  font-family: var(--serif);
  font-size: 1.6rem; color: var(--wine); line-height: 1.4; margin-top: 2px;
}
.row__p small { font-size: .4em; color: var(--sub); letter-spacing: .08em; }
.row__d { font-size: 0.89rem; color: var(--sub); margin-top: 4px; }
@media (min-width: 768px) {
  .row { display: grid; grid-template-columns: 1fr auto; align-items: baseline; column-gap: 32px; }
  .row h3   { grid-column: 1; }
  .row__d   { grid-column: 1; }
  .row__p   { grid-column: 2; grid-row: 1 / 3; text-align: right; }
}

/* ---- ⑤ ご予約（黒板の面） ---- */
.reserve__lead { text-align: center; font-size: 0.97rem; margin-bottom: 32px; opacity: .9; }
.reserve__btns { display: grid; gap: 14px; max-width: 460px; margin-inline: auto; }
.rbtn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 68px; border-radius: 2px;
  text-decoration: none; font-weight: 600; letter-spacing: .08em; line-height: 1.3;
  transition: opacity .2s;
}
.rbtn:hover { opacity: .85; }
.rbtn small { font-size: .64rem; font-weight: 400; opacity: .85; margin-top: 3px; }
.rbtn--net { background: var(--wine); color: #fff; }
.rbtn--tel { border: 1px solid var(--cream); color: var(--cream); }
@media (min-width: 600px) { .reserve__btns { grid-template-columns: 1fr 1fr; } }

/* ---- ⑥ 店舗情報 ---- */
.dl {
  display: grid; grid-template-columns: 6.5em 1fr;
  font-size: 0.93rem;
  border-top: 1px solid var(--line);
}
.dl dt, .dl dd { padding: 15px 2px; border-bottom: 1px solid var(--line); }
.dl dt { color: var(--sub); letter-spacing: .06em; white-space: nowrap; }
.dl dd a { color: var(--wine); font-weight: 600; }

/* ---- ⑦ 地図 ---- */
.map { margin-top: 64px; line-height: 0; filter: saturate(.8); }
.map iframe { width: 100%; height: 330px; border: 0; display: block; }
@media (min-width: 768px) { .map iframe { height: 420px; } }

/* ---- フッター ---- */
.ftr {
  background: var(--green-d); color: var(--cream);
  text-align: center; padding: 48px 20px; font-size: 0.85rem;
  border-top: 3px solid #c9a227;
}
.ftr__name {
  font-family: var(--serif);
  font-size: 1.2rem; letter-spacing: .16em; text-indent: .16em; margin-bottom: 12px;
}
.ftr p + p { margin-top: .6em; }
.ftr a { color: #c9a227; }
.ftr__note { margin-top: 20px; opacity: .6; font-size: .68rem; line-height: 1.8; }

/* ---- Googleマップ周りの余白 ----
   地図の上には .map の margin-top、下には店舗情報セクションの下パディングが
   入っていて、地図だけが宙に浮いたように見えていた。
   上下とも詰めて、地図を帯として画面幅いっぱいに置く。
   #info はIDセレクタなので、前にある .sec の指定より確実に優先される。 */
#info { padding-bottom: 0; }
.map { margin-top: 0; }
