:root {
  color-scheme: dark;
  --bg: #11100e;
  --surface: #1d1a17;
  --surface-2: #29231d;
  --line: rgba(255,255,255,.14);
  --text: #f7f0e8;
  --muted: #c9b7a7;
  --gold: #d8ad62;
  --amber: #b8702f;
  --wine: #6f2832;
  --green: #4c6a57;
  --shadow: 0 24px 70px rgba(0,0,0,.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans JP", "Inter", sans-serif;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(12,10,8,.86), rgba(12,10,8,.48));
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: #21170f;
  font-family: "Inter", sans-serif;
  font-weight: 800;
}

.brand-name {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 2px;
}

.brand-en {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text);
}

.brand-jp {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.32em;
  font-weight: 500;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.hero-title .hero-en {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: clamp(56px, 11vw, 140px) !important;
  line-height: 0.95;
  letter-spacing: 0.01em;
  font-weight: 800;
  color: var(--text);
}

.hero-title .hero-jp {
  display: block;
  font-size: clamp(13px, 1.6vw, 18px) !important;
  font-weight: 500;
  letter-spacing: 0.5em;
  color: var(--muted);
  padding-left: 4px;
  margin-top: 6px;
}

.nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover,
.header-call:hover {
  color: var(--gold);
}

.header-call {
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-weight: 800;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  margin-left: 14px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 820px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(17, 16, 14, 0.97);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 18px 24px 24px;
    gap: 18px;
    z-index: 50;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    font-size: 16px;
    padding: 6px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .header-call {
    font-size: 14px;
  }
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  padding: 112px clamp(20px, 5vw, 72px) clamp(26px, 4vw, 48px);
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(17,16,14,.94) 0%, rgba(17,16,14,.55) 50%, rgba(17,16,14,.72) 100%),
    linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.5)),
    url("./assets/counter.jpg");
  background-position: center;
  background-size: cover;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 84px),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.68) 100%);
}

.hero-media::after {
  content: none;
}

.hero-shade {
  background: linear-gradient(180deg, rgba(17,16,14,0) 62%, var(--bg) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding-bottom: 92px;
}

.hero-sign {
  display: block;
  width: clamp(260px, 38vw, 440px);
  height: auto;
  margin-bottom: 22px;
  border-radius: 4px;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,.6));
}

.eyebrow,
.section-label,
.menu-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(54px, 10vw, 128px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
}

.lead {
  max-width: 640px;
  margin-bottom: 30px;
  color: #efe1d5;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.55;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 800;
}

.button.primary {
  background: var(--gold);
  color: #21170f;
}

.button.ghost {
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(255,255,255,.06);
  color: var(--text);
}

.quick-info {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  background: rgba(29,26,23,.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.quick-info dl,
.details {
  margin: 0;
}

.quick-info dl {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
}

.quick-info div {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.quick-info div:last-child {
  border-right: 0;
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(160px, 260px) minmax(0, 760px);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.intro h2,
.section-heading h2,
.access h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.18;
  letter-spacing: 0;
}

.intro p,
.menu-item p,
.details dd {
  color: #dbcabd;
}

.menu {
  background: #171512;
}

.photo-band {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, .95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, #15120f, #211b16);
}

.photo-band img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  filter: brightness(.72) saturate(.9);
}

.photo-band h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.18;
}

.photo-band p {
  color: #dbcabd;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.menu-item {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    var(--surface);
  overflow: hidden;
}

.bottles {
  background: #15120f;
  padding: 0 0 clamp(64px, 9vw, 118px);
}

.bottles-hero {
  position: relative;
  margin-bottom: clamp(32px, 5vw, 64px);
}

.bottles-hero img {
  display: block;
  width: 100%;
  height: clamp(280px, 48vh, 520px);
  object-fit: cover;
  filter: brightness(.55) saturate(.9);
}

.bottles-hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(20px, 5vw, 72px);
  max-width: 880px;
}

.bottles-hero-text h2 {
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--text);
}

.bottles-hero-text p {
  color: #dbcabd;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 600;
  max-width: 640px;
}

.bottles-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 0 clamp(20px, 5vw, 72px);
}

.bottle-item {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform .18s ease;
}

.bottle-item:hover {
  transform: translateY(-3px);
}

.bottle-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.bottle-item figcaption {
  padding: 14px 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--text);
  text-align: center;
  background: var(--surface);
}

.bottle-item figcaption span {
  color: var(--muted);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .08em;
}

@media (max-width: 900px) {
  .bottles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bottles-hero img {
    height: clamp(260px, 60vw, 380px);
  }
}

.menu-item img {
  display: block;
  width: calc(100% + 52px);
  margin: -26px -26px 20px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.menu-item h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.35;
}

.access {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, var(--surface), #12110f);
}

.reserve {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(111,40,50,.28), transparent 48%),
    var(--bg);
}

.reserve-copy p {
  max-width: 520px;
  color: #dbcabd;
}

.inline-call {
  display: inline-flex;
  margin-top: 8px;
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-weight: 800;
}

.reserve-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(29,26,23,.86);
  box-shadow: var(--shadow);
}

.reserve-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  background: #12110f;
  color: var(--text);
  font: inherit;
}

textarea {
  resize: vertical;
}

button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

.instagram {
  background: #171512;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.instagram-grid iframe {
  width: 100%;
  min-height: 600px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  display: block;
}

@media (max-width: 900px) {
  .instagram-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.instagram-panel {
  min-height: 360px;
  display: grid;
  align-items: center;
  justify-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216,173,98,.14), transparent 38%),
    linear-gradient(315deg, rgba(76,106,87,.22), transparent 42%),
    var(--surface);
}

.insta-placeholder {
  width: min(640px, calc(100% - 32px));
  padding: clamp(24px, 5vw, 42px);
  text-align: left;
}

.insta-placeholder h3 {
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.25;
}

.insta-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.details {
  display: grid;
  gap: 16px;
}

.details div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.map {
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: 8px;
  filter: grayscale(.15) contrast(1.02);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.thanks-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 70% 20%, rgba(216,173,98,.22), transparent 28%),
    var(--bg);
}

.thanks-box {
  width: min(720px, 100%);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(29,26,23,.9);
  box-shadow: var(--shadow);
}

.thanks-box h1 {
  font-size: clamp(34px, 7vw, 72px);
}

.thanks-details {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.thanks-details div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.error-list {
  margin: 0 0 26px;
  color: #ffd7d7;
}

.footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    min-height: 66px;
  }

  .nav {
    display: none;
  }

  .header-call {
    font-size: 13px;
  }

  .hero {
    min-height: 92svh;
    padding-top: 96px;
  }

  .hero-media::after {
    right: -20px;
    bottom: 24%;
    width: 78vw;
    opacity: .45;
  }

  .hero-inner {
    padding-bottom: 28px;
  }

  .quick-info dl,
  .intro,
  .photo-band,
  .menu-grid,
  .access,
  .reserve {
    grid-template-columns: 1fr;
  }

  .quick-info div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-info div:last-child {
    border-bottom: 0;
  }

  .section-heading {
    display: block;
  }

  .map {
    min-height: 360px;
  }

  .footer {
    display: block;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-call {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}

/* Editorial restaurant-style direction, adapted for a dark bar atmosphere. */
:root {
  --bg: #100f0d;
  --paper: #e8dfd0;
  --paper-2: #f2eadf;
  --ink: #1d1a17;
}

.site-header {
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(12,10,8,.84);
}

.brand-mark {
  border-radius: 2px;
}

.nav {
  color: #e8d9c8;
  font-size: 13px;
}

.hero {
  min-height: 92svh;
}

.hero-inner {
  width: min(820px, 100%);
  padding-bottom: 104px;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(58px, 11vw, 142px);
}

.lead {
  max-width: 620px;
}

.news-strip {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 22px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #17130f;
}

.news-strip p {
  margin: 0;
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.news-strip a {
  color: #eaded2;
  font-weight: 700;
}

.message {
  padding: clamp(76px, 11vw, 142px) clamp(20px, 5vw, 72px);
  text-align: left;
}

.message p:first-child {
  color: var(--gold);
  font-weight: 800;
}

.message h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.22;
  letter-spacing: 0;
}

.message p:last-child {
  max-width: 720px;
  margin: 0;
  color: #dbcabd;
}

.section {
  padding: clamp(80px, 11vw, 148px) clamp(20px, 5vw, 72px);
}

.menu,
.instagram {
  background: var(--paper);
  color: var(--ink);
}

.menu .section-label,
.menu .menu-kicker,
.instagram .section-label,
.instagram .menu-kicker {
  color: #8f5d24;
}

.menu-grid {
  gap: 1px;
  background: rgba(29,26,23,.22);
  border: 1px solid rgba(29,26,23,.18);
}

.menu-item {
  min-height: 260px;
  padding: clamp(24px, 4vw, 38px);
  border: 0;
  border-radius: 0;
  background: var(--paper-2);
}

.menu-item p {
  color: #5a4d41;
}

.party {
  padding: clamp(82px, 12vw, 160px) clamp(20px, 5vw, 72px);
  text-align: left;
  background:
    linear-gradient(180deg, rgba(16,15,13,.28), rgba(16,15,13,.88)),
    url("./assets/shop-google.jpg");
  background-position: center;
  background-size: cover;
}

.party h2 {
  margin: 0 0 18px;
  max-width: 900px;
  font-size: clamp(34px, 6vw, 76px);
  line-height: 1.15;
}

.party p {
  max-width: 640px;
  margin: 0 0 28px;
  color: #efe1d5;
  font-weight: 700;
}

.reserve {
  background: #15130f;
}

.instagram-panel {
  border: 1px solid rgba(29,26,23,.18);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(184,112,47,.12), transparent 38%),
    var(--paper-2);
}

.instagram .button.ghost {
  border-color: rgba(29,26,23,.32);
  color: var(--ink);
}

.instagram .insta-link {
  color: #8f5d24;
}

@media (max-width: 860px) {
  .news-strip,
  .quick-info dl,
  .intro,
  .photo-band,
  .menu-grid,
  .access,
  .reserve {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-bottom: 36px;
  }
}

/* ===== 予約カレンダー ===== */
.booking-calendar {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(16px, 3vw, 28px);
  margin-bottom: 28px;
}

.bc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.bc-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}

.bc-prev, .bc-next {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: background .15s ease;
}

.bc-prev:hover, .bc-next:hover {
  background: rgba(216,173,98,.18);
}

.bc-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}

.bc-legend b {
  font-weight: 800;
  margin-right: 4px;
}

.bc-legend .ok { color: #6cd58a; }
.bc-legend .few { color: #e0b04a; }
.bc-legend .full { color: #d56c6c; }
.bc-legend .closed { color: var(--muted); }
.bc-legend .tel { color: #6c9bd5; }

.bc-weekdays, .bc-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.bc-weekdays {
  margin-bottom: 4px;
}

.bc-weekdays span {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  padding: 6px 0;
  font-weight: 700;
}

.bc-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  position: relative;
  gap: 2px;
  transition: background .15s ease, transform .15s ease;
}

.bc-day:hover:not(.is-disabled):not(.is-empty) {
  background: rgba(216,173,98,.16);
  transform: translateY(-1px);
}

.bc-day.is-empty {
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.bc-day.is-disabled {
  cursor: not-allowed;
  background: rgba(255,255,255,.02);
}

.bc-day.is-disabled .bc-day-num {
  opacity: .5;
}

.bc-day.is-sunday .bc-day-num,
.bc-day.is-holiday .bc-day-num { color: #d56c6c; }
.bc-day.is-saturday .bc-day-num { color: #6c9bd5; }

.bc-day.is-selected {
  background: var(--gold);
  color: #21170f;
  border-color: var(--gold);
}

.bc-day.is-selected .bc-day-num,
.bc-day.is-selected .bc-day-status {
  color: #21170f;
}

.bc-day-num {
  font-size: 14px;
  font-weight: 700;
}

.bc-day-status {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
}

.bc-day-status.ok { color: #6cd58a; }
.bc-day-status.few { color: #e0b04a; }
.bc-day-status.full { color: #d56c6c; }
.bc-day-status.closed { color: var(--muted); }
.bc-day-status.tel { color: #6c9bd5; }

.bc-time-slots {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.bc-time-title {
  font-size: 13px;
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bc-times {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(78px, 1fr));
  gap: 8px;
}

.bc-time {
  padding: 10px 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: background .15s ease;
}

.bc-time:hover:not(.is-full) {
  background: rgba(216,173,98,.18);
}

.bc-time.is-selected {
  background: var(--gold);
  color: #21170f;
  border-color: var(--gold);
}

.bc-time.is-full {
  color: var(--muted);
  cursor: not-allowed;
  opacity: .45;
  text-decoration: line-through;
}

/* 予約フォーム説明＋選択中の日時表示 */
.reserve-instruction {
  background: rgba(216,173,98,.10);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.6;
}

.reserve-selected {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: rgba(216,173,98,.06);
  border: 1px solid rgba(216,173,98,.3);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 18px;
}

.reserve-selected-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reserve-selected-label {
  font-size: 11px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reserve-selected-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.reserve-selected-value:not(:empty)[id$="-time"]:not([id="display-time"]),
#display-date:empty::before,
#display-time:empty::before {
  content: '未選択';
  color: var(--muted);
}

@media (max-width: 600px) {
  .reserve-selected {
    grid-template-columns: 1fr;
  }

  /* カレンダーがモバイルで右はみ出る対策 */
  .booking-calendar {
    padding: 12px;
  }
  .bc-weekdays, .bc-grid {
    gap: 2px;
  }
  .bc-day {
    min-width: 0;
    border-radius: 4px;
    font-size: 12px;
  }
  .bc-day-num {
    font-size: 12px;
  }
  .bc-day-status {
    font-size: 9px;
  }
  .bc-weekdays span {
    font-size: 11px;
    padding: 4px 0;
  }

}
