@charset "UTF-8";
/* ============================================================================
   b.css — 案B：黒×赤の大衆酒場系
   方向性の参考：365酒場 ※デザインは複製せず、方向性のみ

   濃い黒地に赤を差す。太いゴシック、余白は詰める、写真は大きく。
   見出しは赤い帯。活気と勢いを優先し、料理を先に見せる構成。
   ============================================================================ */

:root {
  --bg:    #1a1714;   /* 地。カードもこの色にして surface より明るくする */
  --bg2:   #0f0d0b;   /* 一段沈めた背景 */
  --fg:    #f4f0ea;
  --sub:   #a39a90;
  --line:  #35302a;
  --red:   #e0261c;

  --gothic: "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;

  /* common.css の固定CTAへ流し込む配色 */
  --cta-bg: var(--red);
  --cta-fg: #fff;
  --cta-radius: 0;
  --cta-weight: 800;
  --bar-bg: #080706;
  --bar-fg: #ffffff;
}

body {
  font-family: var(--gothic);
  font-size: 17px;
  line-height: 1.8;
  color: var(--fg);
  background: var(--bg);
}

.wrap { width: 100%; max-width: 1120px; margin-inline: auto; padding-inline: 18px; }

.sec { padding-bottom: 56px; }
.sec--about { padding-bottom: 56px; }
@media (min-width: 768px) { .sec { padding-bottom: 84px; } }

/* ---- 赤い帯の見出し ---- */
.bar {
  background: var(--red);
  color: #fff;
  padding: 12px 18px;
  margin-bottom: 26px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: clamp(1.05rem, 4.4vw, 1.5rem);
  font-weight: 800;
  letter-spacing: .06em;
}
.bar em {
  font-style: normal;
  font-size: .5em;
  font-weight: 400;
  letter-spacing: .22em;
  opacity: .85;
}
@media (min-width: 768px) {
  .bar { padding: 14px 28px; margin-bottom: 36px; }
}

/* ---- ヘッダー ---- */
.hdr {
  gap: 16px;
  padding-inline: 16px;
  background: rgba(15, 13, 11, .96);
  border-bottom: 2px solid var(--red);
}
.hdr__brand {
  font-size: 1.05rem; font-weight: 800; letter-spacing: .04em;
  text-decoration: none; white-space: nowrap; line-height: 1.2;
}
.hdr__brand b { display: block; font-size: .6em; font-weight: 400; color: var(--sub); }
.hdr__tel { display: none; }

@media (min-width: 768px) {
  .hdr { padding-inline: 26px; gap: 22px; }
  .hdr__brand { font-size: 1.35rem; }
  .hdr__tel {
    display: block; margin-left: auto;
    text-align: right; text-decoration: none; line-height: 1.25; white-space: nowrap;
  }
  .hdr__tel span { display: block; font-size: 1.2rem; font-weight: 800; letter-spacing: .03em; }
  .hdr__tel small { font-size: .6rem; color: var(--sub); letter-spacing: .06em; }
}

/* ---- ① ファーストビュー：店名は左下 ---- */
.hero {
  position: relative;
  min-height: 54svh;
  display: flex;
  align-items: center;          /* 上下の中央に置く */
  justify-content: center;
  overflow: hidden;
  color: #fff;
}
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.86) 0%, rgba(0,0,0,.35) 50%, rgba(0,0,0,.5) 100%);
}
/* 店名は画面の中央に置く。左下は切替バーと重なるので避ける。 */
.hero__box {
  position: relative; z-index: 1;
  padding: 0 20px;
  width: 100%;
  text-align: center;
}
.hero__type {
  font-size: clamp(1.15rem, 4.9vw, 1.32rem); letter-spacing: .2em; color: var(--red);
  font-weight: 700; margin-bottom: 8px;
}
.hero__name {
  font-size: clamp(2.9rem, 13vw, 4.4rem);
  font-weight: 800; letter-spacing: .02em; line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0,0,0,.7);
}
.hero__name b {
  display: block; font-size: .38em; font-weight: 400;
  letter-spacing: .2em; margin-top: .5em; color: var(--sub);
}
@media (min-width: 768px) {
  .hero { min-height: 88svh; }
  .hero__box { padding: 0 44px 64px; max-width: 1160px; margin-inline: auto; }
}

/* ---- ② おすすめ：3列グリッド、価格を大きく赤く ---- */
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.g { background: var(--bg); border: 1px solid var(--line); }
.g img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.g__b { padding: 10px 12px 14px; }
.g__b h3 { font-size: 0.93rem; font-weight: 700; letter-spacing: .02em; line-height: 1.5; }
.g__p {
  margin-top: 4px;
  font-size: 1.5rem; font-weight: 800; color: var(--red); line-height: 1.1;
}
.g__p small { font-size: .44em; font-weight: 400; letter-spacing: .04em; }

@media (min-width: 768px) {
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .g img { aspect-ratio: 4 / 3; }
  .g__b { padding: 14px 16px 18px; }
  .g__b h3 { font-size: 1rem; }
  .g__p { font-size: 1.9rem; }
}

/* ---- ③ お店について：全幅写真 ---- */
.fullpic { margin: 0 0 26px; line-height: 0; }
.fullpic img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
.about__txt { max-width: 820px; margin-inline: auto; font-size: 0.99rem; }
.about__txt p + p { margin-top: 1.2em; }

/* ---- ④ ご宴会 ＆ ⑥ 店舗情報：表 ---- */
.tblwrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tbl { font-size: 0.93rem; min-width: 100%; }
.tbl thead th {
  background: var(--bg2); color: var(--sub);
  font-size: .72rem; letter-spacing: .12em; font-weight: 700;
  padding: 10px 14px; text-align: left; white-space: nowrap;
  border-bottom: 1px solid var(--line);
}
.tbl tbody th, .tbl tbody td {
  padding: 16px 14px; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.tbl tbody th { font-weight: 700; white-space: nowrap; }
.tbl__p {
  color: var(--red); font-weight: 800; font-size: 1.35rem;
  line-height: 1.2; white-space: nowrap;
}
.tbl__p small { font-size: .5em; font-weight: 400; }
.tbl--info tbody th { width: 7em; color: var(--sub); font-weight: 400; }
.tbl--info a { font-weight: 700; color: var(--red); }

/* ---- ⑤ ご予約 ---- */
.reserve__lead { text-align: center; font-size: 0.99rem; margin-bottom: 28px; }
.reserve__btns { display: grid; gap: 12px; max-width: 460px; margin: 0 auto 36px; }
.rbtn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 68px; text-decoration: none; font-weight: 800; line-height: 1.3;
  transition: opacity .2s;
}
.rbtn:hover { opacity: .85; }
.rbtn small { font-size: .66rem; font-weight: 400; letter-spacing: .1em; opacity: .85; margin-top: 2px; }
.rbtn--net { background: var(--red); color: #fff; }
.rbtn--tel { border: 2px solid var(--fg); color: var(--fg); }
@media (min-width: 600px) { .reserve__btns { grid-template-columns: 1fr 1fr; } }

/* 明るいGoogleマップが浮くので少し沈める */
.map { margin-top: 40px; line-height: 0; filter: brightness(.82) saturate(.9); }
.map iframe { width: 100%; height: 340px; border: 0; display: block; }
@media (min-width: 768px) { .map iframe { height: 420px; } }

/* ---- フッター ---- */
.ftr {
  background: var(--bg2); color: var(--sub);
  text-align: center; padding: 40px 20px; font-size: 0.85rem;
  border-top: 2px solid var(--red);
}
.ftr__name { color: var(--fg); font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
.ftr__name b { display: block; font-size: .55em; font-weight: 400; color: var(--sub); }
.ftr p + p { margin-top: .6em; }
.ftr a { color: var(--fg); }
.ftr__note { margin-top: 18px; opacity: .55; font-size: .68rem; line-height: 1.8; }

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