/*
Theme Name: ビストロ日和 DEMO
Theme URI: /web/demo/inshoku/
Author: Paras Japan
Description: 飲食店（ビストロ・カフェ）向けのデモ用オリジナルテーマ。有効化するだけで全ページとナビゲーションが自動生成されます。掲載情報はすべて架空のものです。
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bistro-hiyori
*/

/* ============================================================
   1. Design tokens
   ============================================================ */
:root {
  --ink:      #1A1A18;
  --ink-2:    #2E2C28;
  --ink-3:    #4A4740;
  --cream:    #F4F0E8;
  --cream-2:  #EAE4D8;
  --white:    #FFFCF7;
  --terra:    #B5563A;
  --terra-l:  #C96B4E;
  --terra-d:  #94422B;
  --body:     #55524C;
  --mute:     #8D877C;
  --line:     #DED7C8;
  --line-d:   #3D3A34;

  --ff-min: "Zen Old Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  --ff-san: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;

  --w-max: 1080px;
  --w-wide: 1320px;
  --w-narrow: 760px;
  --pad-x: 28px;

  --header-h: 84px;
  --admin-bar-h: 0px;
}

/* ============================================================
   2. Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--admin-bar-h) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--ff-san);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 2.05;
  letter-spacing: .04em;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
  font-feature-settings: "palt" 1;
}

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

a { color: var(--terra); text-decoration: none; transition: color .3s ease, opacity .3s ease; }
a:hover { color: var(--terra-d); }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--ff-min);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: .08em;
  color: var(--ink);
}

p { margin: 0 0 1.6em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
table { border-collapse: collapse; width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* 文節単位で折り返す（固定 br を使わないため） */
.bh-nb { display: inline-block; }

h1, h2, h3, h4, .bh-faq__q {
  text-wrap: balance;
  line-break: strict;
  word-break: normal;
  overflow-wrap: normal;
}
p, li, td, th, dd, dt, small, span {
  text-wrap: pretty;
  line-break: strict;
  word-break: normal;
  overflow-wrap: break-word;
}

/* ============================================================
   3. Layout
   ============================================================ */
.bh-wrap { width: 100%; max-width: var(--w-max); margin-inline: auto; padding-inline: var(--pad-x); }
.bh-wrap--wide { max-width: var(--w-wide); }
.bh-wrap--narrow { max-width: var(--w-narrow); }

.bh-sec { padding: 132px 0; position: relative; }
.bh-sec--tight { padding: 88px 0; }
.bh-sec--cream { background: var(--cream); }
.bh-sec--ink { background: var(--ink); color: rgba(255,252,247,.78); }
.bh-sec--ink h2, .bh-sec--ink h3 { color: var(--white); }

/* ============================================================
   4. Typography blocks
   ============================================================ */
.bh-label {
  display: block;
  font-family: var(--ff-san);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 20px;
}
.bh-sec--ink .bh-label { color: var(--terra-l); }

.bh-h2 {
  font-size: clamp(23px, 3.4vw, 34px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: .1em;
  margin-bottom: 26px;
}
.bh-h3 {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.8;
  margin-bottom: 14px;
}
.bh-lead {
  font-size: 14.5px;
  line-height: 2.25;
  color: var(--body);
  max-width: 60ch;
}
.bh-sec--ink .bh-lead { color: rgba(255,252,247,.7); }

.bh-head { margin-bottom: 72px; }
.bh-head--c { text-align: center; }
.bh-head--c .bh-lead { margin-inline: auto; }

/* 縦の細い装飾線 */
.bh-rule {
  width: 1px; height: 56px;
  background: var(--line);
  margin: 0 auto 32px;
}
.bh-sec--ink .bh-rule { background: rgba(255,252,247,.24); }

/* ============================================================
   5. Buttons
   ============================================================ */
.bh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 19px 46px;
  font-family: var(--ff-san);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .14em;
  border: 1px solid transparent;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
  text-align: center;
}
.bh-btn--fill { background: var(--terra); color: var(--white); }
.bh-btn--fill:hover { background: var(--terra-d); color: var(--white); }
.bh-btn--line { border-color: var(--ink); color: var(--ink); }
.bh-btn--line:hover { background: var(--ink); color: var(--white); }
.bh-btn--ghost { border-color: rgba(255,252,247,.45); color: var(--white); }
.bh-btn--ghost:hover { background: rgba(255,252,247,.12); color: var(--white); }
.bh-btn--block { width: 100%; }

.bh-btns { display: flex; flex-wrap: wrap; gap: 16px; }
.bh-btns--c { justify-content: center; }

/* ============================================================
   6. Header
   ============================================================ */
.bh-header {
  position: sticky;
  top: 0;
  z-index: 320;
  background: rgba(255,252,247,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
body.admin-bar .bh-header { top: 32px; }
body.admin-bar { --admin-bar-h: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .bh-header { top: 46px; }
  body.admin-bar { --admin-bar-h: 46px; }
}
@media screen and (max-width: 600px) {
  body.admin-bar .bh-header { top: 0; }
  body.admin-bar { --admin-bar-h: 0px; }
}

.bh-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: var(--w-wide);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.bh-logo { flex-shrink: 0; color: var(--ink); line-height: 1.3; }
.bh-logo:hover { color: var(--ink); opacity: .7; }
.bh-logo__name {
  display: block;
  font-family: var(--ff-min);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .18em;
  white-space: nowrap;
}
.bh-logo__sub {
  display: block;
  font-size: 9px;
  letter-spacing: .3em;
  color: var(--mute);
  margin-top: 3px;
  white-space: nowrap;
}

.bh-nav { margin-left: auto; }
.bh-nav ul { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.bh-nav li { flex-shrink: 0; }
.bh-nav a {
  display: block;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--ink);
  white-space: nowrap;
  position: relative;
}
.bh-nav a::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 2px;
  height: 1px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.bh-nav a:hover { color: var(--terra); }
.bh-nav a:hover::after { transform: scaleX(1); }
.bh-nav .current-menu-item > a { color: var(--terra); }
.bh-nav .current-menu-item > a::after { transform: scaleX(1); }

.bh-header__cta { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.bh-header__tel { text-align: right; color: var(--ink); line-height: 1.3; }
.bh-header__tel strong {
  display: block;
  font-family: var(--ff-min);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: .04em;
}
.bh-header__tel span { font-size: 9.5px; letter-spacing: .1em; color: var(--mute); }
.bh-header__btn {
  background: var(--terra);
  color: var(--white);
  padding: 13px 24px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .12em;
  white-space: nowrap;
}
.bh-header__btn:hover { background: var(--terra-d); color: var(--white); }

/* Hamburger */
.bh-burger {
  display: none;
  width: 44px; height: 44px;
  margin-left: auto;
  position: relative;
  flex-shrink: 0;
}
.bh-burger span {
  position: absolute;
  left: 11px; right: 11px;
  height: 1px;
  background: var(--ink);
  transition: transform .35s ease, opacity .25s ease;
}
.bh-burger span:nth-child(1) { top: 16px; }
.bh-burger span:nth-child(2) { top: 22px; }
.bh-burger span:nth-child(3) { top: 28px; }
.bh-burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.bh-burger.is-open span:nth-child(2) { opacity: 0; }
.bh-burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Drawer（ヘッダーの外に置く：backdrop-filter が fixed の包含ブロックを作るため） */
.bh-drawer {
  position: fixed;
  inset: var(--admin-bar-h) 0 0 0;
  z-index: 310;
  background: var(--cream);
  padding: calc(var(--header-h) + 32px) 28px 48px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s;
}
.bh-drawer.is-open { opacity: 1; visibility: visible; }
.bh-drawer ul { display: flex; flex-direction: column; }
.bh-drawer a {
  display: block;
  padding: 20px 4px;
  font-family: var(--ff-min);
  font-size: 18px;
  letter-spacing: .12em;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.bh-drawer__foot { margin-top: 40px; display: grid; gap: 14px; }
.bh-drawer__tel {
  display: block;
  text-align: center;
  color: var(--ink);
  font-family: var(--ff-min);
  font-size: 26px;
  letter-spacing: .06em;
  padding: 18px;
  border: 1px solid var(--line);
}
.bh-drawer__tel small { display: block; font-family: var(--ff-san); font-size: 10.5px; letter-spacing: .12em; color: var(--mute); margin-top: 6px; }

/* ============================================================
   7. Hero
   ============================================================ */
.bh-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.bh-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: bh-zoom 20s ease-out forwards;
}
@keyframes bh-zoom { to { transform: scale(1); } }
.bh-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,24,.82) 0%, rgba(26,26,24,.34) 46%, rgba(26,26,24,.20) 100%);
}
.bh-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 0 92px;
  color: var(--white);
}
.bh-hero__label {
  font-size: 10.5px;
  letter-spacing: .36em;
  color: rgba(255,252,247,.7);
  margin-bottom: 26px;
}
.bh-hero__title {
  font-family: var(--ff-min);
  font-size: clamp(28px, 5.2vw, 52px);
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: .12em;
  color: var(--white);
  margin-bottom: 28px;
  text-shadow: 0 2px 24px rgba(0,0,0,.28);
}
.bh-hero__text {
  font-size: 14.5px;
  line-height: 2.2;
  color: rgba(255,252,247,.82);
  max-width: 34em;
  margin-bottom: 40px;
}
.bh-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 32px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,252,247,.2);
  font-size: 12.5px;
  letter-spacing: .08em;
  color: rgba(255,252,247,.72);
}
.bh-hero__meta b { font-weight: 500; color: var(--white); }

.bh-scroll {
  position: absolute;
  right: 28px;
  bottom: 0;
  z-index: 3;
  writing-mode: vertical-rl;
  font-size: 9.5px;
  letter-spacing: .3em;
  color: rgba(255,252,247,.62);
  padding-bottom: 62px;
}
.bh-scroll::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  margin-left: -.5px;
  width: 1px; height: 52px;
  background: rgba(255,252,247,.3);
}
.bh-scroll::before {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  margin-left: -.5px;
  width: 1px; height: 52px;
  background: var(--terra-l);
  z-index: 1;
  animation: bh-line 2.4s ease-in-out infinite;
}
@keyframes bh-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Sub page hero */
.bh-phero {
  position: relative;
  background: var(--ink);
  padding: 108px 0 92px;
  overflow: hidden;
  text-align: center;
}
.bh-phero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .42;
}
.bh-phero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,24,.55), rgba(26,26,24,.75));
}
.bh-phero__inner { position: relative; z-index: 2; }
.bh-phero__en { display: block; font-size: 10px; letter-spacing: .36em; color: var(--terra-l); margin-bottom: 16px; }
.bh-phero__title {
  font-family: var(--ff-min);
  font-size: clamp(25px, 4.2vw, 38px);
  font-weight: 400;
  letter-spacing: .16em;
  color: var(--white);
}
.bh-phero__text { margin-top: 20px; font-size: 13.5px; line-height: 2.1; color: rgba(255,252,247,.7); }

/* Breadcrumb */
.bh-crumb { border-bottom: 1px solid var(--line); }
.bh-crumb ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  padding: 14px 0; font-size: 11.5px; letter-spacing: .06em; color: var(--mute);
}
.bh-crumb a { color: var(--mute); }
.bh-crumb a:hover { color: var(--terra); }
.bh-crumb li + li::before { content: "—"; margin-right: 8px; color: var(--line); }

/* ============================================================
   8. Grids
   ============================================================ */
.bh-grid { display: grid; gap: 40px; }
.bh-grid--2 { grid-template-columns: repeat(2, 1fr); }
.bh-grid--3 { grid-template-columns: repeat(3, 1fr); }
.bh-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* 昼と夜 */
.bh-scene { position: relative; }
.bh-scene__media { position: relative; overflow: hidden; aspect-ratio: 3 / 2; }
.bh-scene__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,.61,.36,1); }
.bh-scene:hover .bh-scene__media img { transform: scale(1.04); }
.bh-scene__tag {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  background: rgba(255,252,247,.92);
  font-family: var(--ff-min);
  font-size: 13px; letter-spacing: .2em; color: var(--ink);
  padding: 9px 18px;
}
.bh-scene__body { padding-top: 26px; }
.bh-scene__time { font-size: 11.5px; letter-spacing: .16em; color: var(--terra); margin-bottom: 10px; }
.bh-scene__title { font-size: 20px; margin-bottom: 12px; }
.bh-scene__text { font-size: 13.5px; line-height: 2.1; }
.bh-scene__price { margin-top: 16px; font-size: 13px; color: var(--ink); letter-spacing: .04em; }
.bh-scene__price b { font-family: var(--ff-min); font-size: 17px; font-weight: 500; }

/* 料理カード */
.bh-dish { }
.bh-dish__media { aspect-ratio: 1 / 1; overflow: hidden; background: var(--cream-2); }
.bh-dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,.61,.36,1); }
.bh-dish:hover .bh-dish__media img { transform: scale(1.05); }
.bh-dish__body { padding-top: 20px; }
.bh-dish__name { font-size: 16px; margin-bottom: 8px; line-height: 1.7; }
.bh-dish__text { font-size: 12.5px; line-height: 1.95; color: var(--mute); margin-bottom: 10px; }
.bh-dish__price { font-family: var(--ff-min); font-size: 15px; color: var(--ink); letter-spacing: .04em; }
.bh-dish__price small { font-family: var(--ff-san); font-size: 10.5px; color: var(--mute); margin-left: 4px; }

/* ギャラリー */
.bh-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.bh-gallery figure { margin: 0; overflow: hidden; aspect-ratio: 4 / 3; }
.bh-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,.61,.36,1); }
.bh-gallery figure:hover img { transform: scale(1.06); }
.bh-gallery figure:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

/* 分割（画像＋文章） */
.bh-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.bh-split--rev > *:first-child { order: 2; }
.bh-split__media img { width: 100%; }

/* ============================================================
   9. メニュー表
   ============================================================ */
.bh-menu { border-top: 1px solid var(--line); }
.bh-menu__item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.bh-menu__main { flex: 1; }
.bh-menu__name { font-family: var(--ff-min); font-size: 16.5px; color: var(--ink); letter-spacing: .06em; line-height: 1.7; }
.bh-menu__desc { font-size: 12.5px; line-height: 1.95; color: var(--mute); margin-top: 6px; }
.bh-menu__dot { flex: 0 1 auto; min-width: 20px; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.bh-menu__price {
  flex-shrink: 0;
  font-family: var(--ff-min);
  font-size: 16px;
  color: var(--ink);
  letter-spacing: .04em;
  white-space: nowrap;
}
.bh-menu__badge {
  display: inline-block;
  font-family: var(--ff-san);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--terra);
  border: 1px solid currentColor;
  padding: 2px 8px;
  margin-left: 10px;
  vertical-align: 2px;
}

.bh-menu-head {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 8px;
}
.bh-menu-head h3 { font-size: 21px; letter-spacing: .12em; }
.bh-menu-head span { font-size: 11px; letter-spacing: .18em; color: var(--terra); }

.bh-note { font-size: 11.5px; line-height: 1.95; color: var(--mute); margin-top: 20px; }

/* お品書きの絞り込みタブ */
.bh-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 28px;
  margin-bottom: 64px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.bh-tab {
  font-family: var(--ff-min);
  font-size: 15px;
  letter-spacing: .12em;
  color: var(--mute);
  padding: 8px 4px;
  position: relative;
  transition: color .3s ease;
}
.bh-tab::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -21px;
  height: 1px;
  background: var(--terra);
  transform: scaleX(0);
  transition: transform .35s ease;
}
.bh-tab:hover { color: var(--ink); }
.bh-tab.is-active { color: var(--terra); }
.bh-tab.is-active::after { transform: scaleX(1); }

.bh-menu-group + .bh-menu-group { margin-top: 72px; }

/* ============================================================
   10. 情報表
   ============================================================ */
.bh-info th, .bh-info td {
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  text-align: left;
  vertical-align: top;
  line-height: 2;
}
.bh-info th {
  width: 28%;
  font-family: var(--ff-min);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .1em;
  white-space: nowrap;
}
.bh-info td { color: var(--body); }
.bh-sec--ink .bh-info th, .bh-sec--ink .bh-info td { border-color: var(--line-d); }
.bh-sec--ink .bh-info th { color: var(--white); }
.bh-sec--ink .bh-info td { color: rgba(255,252,247,.72); }

/* 営業時間 */
.bh-hours { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.bh-hours__row { background: var(--white); display: flex; flex-wrap: wrap; gap: 4px 20px; padding: 18px 22px; }
.bh-hours__label { font-family: var(--ff-min); font-size: 14px; color: var(--ink); letter-spacing: .12em; min-width: 5em; }
.bh-hours__time { font-size: 13.5px; letter-spacing: .04em; }
.bh-hours__note { font-size: 11.5px; color: var(--mute); width: 100%; }

/* ============================================================
   11. FAQ
   ============================================================ */
.bh-faq { border-top: 1px solid var(--line); }
.bh-faq__item { border-bottom: 1px solid var(--line); }
.bh-faq__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 40px 26px 0;
  text-align: left;
  font-family: var(--ff-min);
  font-size: 16px;
  letter-spacing: .06em;
  color: var(--ink);
  line-height: 1.8;
  position: relative;
}
.bh-faq__q::before { content: "Q."; flex-shrink: 0; color: var(--terra); font-size: 14px; }
.bh-faq__q::after {
  content: "";
  position: absolute;
  right: 6px; top: 34px;
  width: 12px; height: 1px;
  background: var(--ink);
}
.bh-faq__q .bh-faq__cross {
  position: absolute;
  right: 6px; top: 34px;
  width: 12px; height: 1px;
  background: var(--ink);
  transform: rotate(90deg);
  transition: transform .35s ease, opacity .35s ease;
}
.bh-faq__item.is-open .bh-faq__cross { transform: rotate(0); opacity: 0; }
.bh-faq__q:hover { color: var(--terra); }

.bh-faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s ease; }
.bh-faq__item.is-open .bh-faq__a { grid-template-rows: 1fr; }
.bh-faq__inner { overflow: hidden; }
.bh-faq__body {
  display: flex;
  gap: 16px;
  padding: 0 0 28px;
  font-size: 13.5px;
  line-height: 2.15;
  color: var(--body);
}
.bh-faq__body::before { content: "A."; flex-shrink: 0; color: var(--mute); font-family: var(--ff-min); font-size: 14px; }

/* ============================================================
   12. フォーム
   ============================================================ */
.bh-form { display: grid; gap: 26px; }
.bh-field label { display: block; font-family: var(--ff-min); font-size: 14px; color: var(--ink); letter-spacing: .08em; margin-bottom: 10px; }
.bh-req, .bh-any {
  display: inline-block;
  font-family: var(--ff-san);
  font-size: 10px;
  letter-spacing: .1em;
  padding: 2px 8px;
  margin-left: 10px;
  vertical-align: 2px;
}
.bh-req { background: var(--terra); color: var(--white); }
.bh-any { background: var(--cream-2); color: var(--mute); }

.bh-field input[type="text"],
.bh-field input[type="email"],
.bh-field input[type="tel"],
.bh-field input[type="date"],
.bh-field select,
.bh-field textarea {
  width: 100%;
  padding: 15px 16px;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.bh-field textarea { min-height: 150px; resize: vertical; line-height: 1.9; }
.bh-field input:focus, .bh-field select:focus, .bh-field textarea:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(181,86,58,.12);
}
.bh-radios { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.bh-radios label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-san); font-size: 13.5px; margin-bottom: 0; cursor: pointer; }

.bh-formnote {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 20px 22px;
  font-size: 12px;
  line-height: 1.95;
  color: var(--body);
}

/* 予約ボックス */
.bh-resv {
  background: var(--ink);
  color: var(--white);
  padding: 44px 36px;
  text-align: center;
}
.bh-resv__label { font-size: 10.5px; letter-spacing: .28em; color: rgba(255,252,247,.6); }
.bh-resv__tel {
  display: block;
  font-family: var(--ff-min);
  font-size: clamp(28px, 4.4vw, 38px);
  letter-spacing: .06em;
  color: var(--white);
  margin: 12px 0 8px;
}
.bh-resv__tel:hover { color: var(--terra-l); }
.bh-resv__time { font-size: 12px; color: rgba(255,252,247,.6); letter-spacing: .06em; }

/* ============================================================
   13. CTA band
   ============================================================ */
.bh-cta { position: relative; padding: 128px 0; overflow: hidden; text-align: center; background: var(--ink); }
.bh-cta__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .3; }
.bh-cta__bg::after { content: ""; position: absolute; inset: 0; background: rgba(26,26,24,.6); }
.bh-cta__inner { position: relative; z-index: 2; }
.bh-cta__title {
  font-family: var(--ff-min);
  font-size: clamp(22px, 3.6vw, 32px);
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: .14em;
  color: var(--white);
  margin-bottom: 20px;
}
.bh-cta__text { font-size: 13.5px; line-height: 2.15; color: rgba(255,252,247,.72); margin-bottom: 42px; }

/* ============================================================
   14. Footer
   ============================================================ */
.bh-footer { background: var(--ink); color: rgba(255,252,247,.6); padding: 88px 0 0; font-size: 13px; }
.bh-footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 60px; }
.bh-footer .bh-logo__name { color: var(--white); }
.bh-footer__addr { margin-top: 22px; line-height: 2.05; font-size: 12.5px; }
.bh-footer__tel {
  display: inline-block;
  font-family: var(--ff-min);
  font-size: 22px;
  letter-spacing: .06em;
  color: var(--white);
  margin-top: 14px;
}
.bh-footer__tel:hover { color: var(--terra-l); }
.bh-footer h4 {
  font-family: var(--ff-san);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .24em;
  color: var(--terra-l);
  margin-bottom: 20px;
}
.bh-footer ul li { margin-bottom: 12px; }
.bh-footer a { color: rgba(255,252,247,.6); font-size: 12.5px; letter-spacing: .04em; }
.bh-footer a:hover { color: var(--white); }
.bh-footer__bottom {
  border-top: 1px solid var(--line-d);
  padding: 22px 0 28px;
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: .06em;
}
.bh-demo-note {
  border: 1px solid rgba(181,86,58,.45);
  background: rgba(181,86,58,.12);
  color: #E0A48C;
  padding: 12px 18px;
  font-size: 11.5px;
  line-height: 1.9;
  text-align: center;
  margin-bottom: 24px;
}

/* ============================================================
   15. モバイル固定バー
   ============================================================ */
.bh-fixbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 250;
  background: rgba(26,26,24,.97);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
}
.bh-fixbar__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bh-fixbar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 12px 6px;
  font-size: 13px; letter-spacing: .08em; line-height: 1.4;
}
.bh-fixbar__tel { background: var(--white); color: var(--ink); }
.bh-fixbar__tel:hover { color: var(--ink); }
.bh-fixbar__resv { background: var(--terra); color: var(--white); }
.bh-fixbar__resv:hover { color: var(--white); }
.bh-fixbar small { font-size: 9.5px; opacity: .7; letter-spacing: .06em; }

/* ============================================================
   16. Scroll reveal
   ============================================================ */
.bh-rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .95s cubic-bezier(.22,.61,.36,1), transform .95s cubic-bezier(.22,.61,.36,1);
}
.bh-rv.is-in { opacity: 1; transform: none; }
.bh-rv[data-d="1"] { transition-delay: .12s; }
.bh-rv[data-d="2"] { transition-delay: .24s; }
.bh-rv[data-d="3"] { transition-delay: .36s; }
.bh-rv[data-d="4"] { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  .bh-rv { opacity: 1; transform: none; transition: none; }
  .bh-hero__bg { animation: none; transform: none; }
  .bh-scroll::before { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   17. Responsive
   （ベースの display 指定より必ず後ろに置くこと）
   ============================================================ */
@media (max-width: 1180px) {
  .bh-header__tel { display: none; }
  .bh-nav a { padding: 10px 11px; font-size: 12.5px; }
}

@media (max-width: 1080px) {
  .bh-scroll { display: none; }
  .bh-nav a { padding: 10px 8px; font-size: 12px; }
  .bh-nav a::after { left: 8px; right: 8px; }
  .bh-logo__name { font-size: 19px; }
  .bh-header__btn { padding: 12px 18px; font-size: 11.5px; }
  .bh-header__inner { gap: 16px; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .bh-nav, .bh-header__cta { display: none; }
  .bh-burger { display: block; }
  .bh-fixbar { display: block; }
  body { padding-bottom: 78px; }

  .bh-sec { padding: 88px 0; }
  .bh-sec--tight { padding: 64px 0; }
  .bh-head { margin-bottom: 48px; }

  .bh-grid { gap: 32px; }
  .bh-grid--3, .bh-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .bh-split { grid-template-columns: 1fr; gap: 40px; }
  .bh-split--rev > *:first-child { order: 0; }
  .bh-footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .bh-gallery figure:first-child { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
}

@media (max-width: 640px) {
  :root { --pad-x: 20px; }
  body { font-size: 15px; line-height: 2; }

  .bh-sec { padding: 68px 0; }
  .bh-sec--tight { padding: 52px 0; }
  .bh-head { margin-bottom: 38px; }
  .bh-rule { height: 40px; margin-bottom: 24px; }

  .bh-hero { min-height: auto; }
  .bh-hero__inner { padding-block: 140px 60px; }
  .bh-hero__bg::after { background: linear-gradient(to top, rgba(26,26,24,.88) 0%, rgba(26,26,24,.46) 60%, rgba(26,26,24,.34) 100%); }
  .bh-hero__meta { gap: 8px 20px; font-size: 11.5px; }

  .bh-phero { padding: 72px 0 60px; }

  .bh-grid { gap: 26px; }
  .bh-grid--2, .bh-grid--3, .bh-grid--4 { grid-template-columns: 1fr; }
  .bh-gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .bh-gallery figure:first-child { grid-column: span 2; }
  .bh-footer__top { grid-template-columns: 1fr; gap: 32px; }

  .bh-btn { width: 100%; padding: 17px 20px; }
  .bh-btns { gap: 12px; }

  .bh-menu__item { flex-wrap: wrap; gap: 6px 12px; padding: 20px 0; }
  .bh-menu__dot { display: none; }
  .bh-menu__main { flex: 1 1 100%; }
  .bh-menu__price { margin-left: auto; }

  .bh-info th, .bh-info td { display: block; width: 100%; }
  .bh-info th { border-bottom: none; padding-bottom: 4px; }
  .bh-info td { padding-top: 0; }

  .bh-faq__q { font-size: 15px; padding-right: 30px; }
  .bh-resv { padding: 32px 22px; }
  .bh-cta { padding: 82px 0; }
  .bh-footer__bottom { flex-direction: column; text-align: center; }
}
