:root {
  --ink: #1c130e;
  --muted: #6b5848;
  --paper: #ead7bd;
  --paper-strong: #d9bb93;
  --coal: #120d0a;
  --coal-soft: #2a1a12;
  --amber: #c47624;
  --amber-light: #e4a052;
  --line: rgba(69, 43, 21, 0.18);
  --shadow: 0 26px 80px rgba(27, 14, 7, 0.26);
  --section-title-size: clamp(22px, 4vw, 52px);
}

.proposal-sample-notice { position: fixed; z-index: 100; top: 0; right: 0; left: 0; display: flex; min-height: 56px; align-items: center; justify-content: center; margin: 0; padding: 8px 16px; pointer-events: none; background: #221710; color: #fff; font-size: clamp(.75rem, 3.4vw, .9rem); line-height: 1.5; text-align: center; }.proposal-sample-notice strong { margin-right: .35em; }.site-header { top: 56px; } body { padding-top: 56px; } @media (min-width: 641px) { .proposal-sample-notice { min-height: 40px; }.site-header { top: 40px; } body { padding-top: 40px; } }

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid #1b6cc2;
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  align-items: center;
  gap: 22px;
  padding: 18px clamp(18px, 4vw, 52px);
  color: #fff8e8;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(241, 228, 211, 0.95);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  display: grid;
  width: clamp(150px, 18vw, 192px);
  min-height: 70px;
  align-content: center;
  justify-items: center;
  padding: 4px 0 6px;
  flex: 0 0 auto;
  justify-self: start;
  color: #fff8ea;
  text-align: center;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.32));
}

.brand-kicker,
.brand-name {
  display: block;
  width: 100%;
  color: currentColor;
  font-family:
    "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22),
    0 2px 7px rgba(0, 0, 0, 0.62);
}

.brand-kicker {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.46em;
  margin-bottom: 8px;
  padding-left: 0.04em;
  font-size: clamp(16px, 1.85vw, 22px);
}

.brand-kicker span {
  display: inline-block;
}

.brand-kicker .brand-kana {
  font-size: 0.76em;
}

.brand-name {
  font-size: clamp(34px, 4.4vw, 48px);
  letter-spacing: 0.12em;
  padding-left: 0.12em;
}

.site-header.is-scrolled .brand {
  color: #2a2018;
  filter: none;
}

.site-header.is-scrolled .brand-kicker,
.site-header.is-scrolled .brand-name {
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.78),
    0 6px 16px rgba(64, 42, 22, 0.12);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  justify-self: center;
}

.site-nav a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-toggle { display: none; }

.header-tel {
  flex: 0 0 auto;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.42em;
  border: 0;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  justify-self: end;
}

.tel-icon {
  font-size: 1.05em;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: clip;
  color: #fff8e8;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 6, 4, 0.76), rgba(8, 6, 4, 0.28) 50%, rgba(8, 6, 4, 0.58)),
    linear-gradient(0deg, rgba(8, 6, 4, 0.82), rgba(8, 6, 4, 0.08) 64%);
}

.hero-content {
  width: min(1160px, calc(100% - 36px));
  justify-self: center;
  padding: clamp(82px, 11vh, 112px) clamp(18px, 4vw, 52px);
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--amber-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 14px 0 24px;
  font-size: clamp(38px, 5.3vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

h1 span {
  display: block;
  width: fit-content;
  max-width: 100%;
  text-align: center;
  white-space: nowrap;
}

.hero-lead {
  max-width: 640px;
  margin: 0;
  margin-inline: auto;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 2;
  text-align: center;
}

.hero-actions,
.access-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 14px 21px;
  font-size: 14px;
  font-weight: 900;
}

.primary-button {
  background: var(--amber);
  color: #1b1109;
}

.secondary-button {
  border: 1px solid currentColor;
  color: inherit;
}

.secondary-button.dark {
  color: var(--ink);
}

.access-panel dl {
  display: grid;
  gap: 13px;
  margin: 0;
}

.access-panel div {
  min-width: 0;
}

.access-panel dl > div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
}

dt {
  color: var(--amber-light);
  font-size: 12px;
  font-weight: 900;
}

dd {
  margin: 0;
  line-height: 1.65;
}

.section {
  padding: clamp(56px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
}

.section-heading h2 {
  margin: 10px 0 0;
  font-size: var(--section-title-size);
  line-height: 1.12;
  letter-spacing: 0;
}

.photo-story {
  background:
    radial-gradient(circle at 15% 12%, rgba(196, 118, 36, 0.11), transparent 34%),
    linear-gradient(180deg, #ead5ba 0%, #e2c39d 100%);
}

.photo-story .section-heading {
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.photo-story .section-heading h2 {
  display: inline-block;
  margin-inline: auto;
  font-size: var(--section-title-size);
  white-space: nowrap;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  max-width: 1180px;
  margin-top: 36px;
  margin-inline: auto;
}

.photo-card {
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(57, 36, 20, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: #fff0dc;
  box-shadow: 0 18px 50px rgba(69, 40, 16, 0.13);
}

.photo-card img {
  width: 100%;
  height: clamp(260px, 31vw, 420px);
  object-fit: cover;
}

.photo-card figcaption {
  padding: 13px 15px 15px;
  color: var(--muted);
  line-height: 1.65;
}

.menu-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(196, 118, 36, 0.15), transparent 32%),
    linear-gradient(180deg, #ecd6ba 0%, #f4e5d1 100%);
}

.food-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(196, 118, 36, 0.13), transparent 34%),
    linear-gradient(180deg, #ead1b0 0%, #f5e8d6 100%);
}

.drink-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(228, 160, 82, 0.18), transparent 36%),
    radial-gradient(circle at 8% 85%, rgba(196, 118, 36, 0.12), transparent 34%),
    linear-gradient(180deg, #130d0a 0%, #24160f 56%, #332014 100%);
  color: #fff6e8;
}

.menu-section .section-heading {
  max-width: 980px;
}

.menu-section .section-heading h2 {
  max-width: 900px;
}

.food-section .section-heading {
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.food-section .section-heading h2 {
  display: inline-block;
  max-width: none;
  font-size: var(--section-title-size);
  white-space: nowrap;
}

.food-section .menu-feature {
  margin-left: auto;
  margin-right: auto;
}

.food-section .menu-visual,
.food-section .menu-copy {
  grid-column: 1 / -1;
}

.food-section .menu-visual {
  justify-self: center;
  width: min(100%, 780px);
}

.food-section .menu-copy {
  justify-items: center;
  text-align: center;
}

.food-section .menu-copy p {
  width: 100%;
}

.food-section .menu-copy p span {
  display: block;
}

.drink-section .section-heading {
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.drink-section .section-heading h2 {
  display: inline-block;
  max-width: none;
  color: #fff6e8;
}

.drink-section .menu-feature {
  margin-left: auto;
  margin-right: auto;
}

.drink-section .menu-feature.reverse .menu-visual,
.drink-section .menu-copy {
  grid-column: 1 / -1;
}

.drink-section .menu-feature.reverse .menu-visual {
  order: 0;
  justify-self: center;
  width: min(100%, 780px);
}

.drink-section .menu-copy {
  justify-items: center;
  text-align: center;
}

.menu-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  width: min(94%, 1080px);
  max-width: 1180px;
  margin-top: 38px;
  margin-right: auto;
}

.menu-feature.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.menu-feature.reverse .menu-visual {
  order: 2;
}

.menu-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(57, 36, 20, 0.16);
  background: #1d1410;
  box-shadow: var(--shadow);
}

.drink-section .menu-visual {
  border-color: rgba(255, 246, 232, 0.12);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.menu-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.menu-copy {
  display: grid;
  gap: 24px;
}

.menu-copy p {
  margin: 0;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 2;
  color: var(--muted);
}

.drink-section .menu-copy p {
  color: rgba(255, 246, 232, 0.76);
  width: 100%;
}

.drink-section .menu-copy p span {
  display: block;
}

.menu-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list li {
  position: relative;
  padding: 15px 18px 15px 34px;
  border: 1px solid rgba(57, 36, 20, 0.15);
  border-radius: 8px;
  background: rgba(255, 246, 232, 0.48);
  color: var(--ink);
  line-height: 1.65;
}

.drink-section .menu-list li {
  border-color: rgba(255, 246, 232, 0.16);
  background: rgba(255, 246, 232, 0.08);
  color: rgba(255, 246, 232, 0.88);
}

.menu-list li::before {
  content: "";
  position: absolute;
  top: 1.45em;
  left: 16px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--amber);
}

.access {
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 240, 220, 0.28), transparent 34%),
    linear-gradient(180deg, #d7ba92 0%, #c9aa80 100%);
}

.access .section-heading {
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.access-panel {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(22px, 5vw, 70px);
  max-width: 1120px;
  margin-top: 34px;
  margin-inline: auto;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(57, 36, 20, 0.16);
  border-radius: 8px;
  background: rgba(255, 241, 222, 0.84);
  box-shadow: 0 22px 70px rgba(69, 40, 16, 0.12);
  text-align: center;
}

.access-panel dl {
  width: min(100%, 680px);
  gap: 0;
  justify-items: stretch;
  text-align: left;
}

.access-panel dl > div {
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: start;
  justify-items: stretch;
  gap: clamp(12px, 3vw, 26px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(139, 85, 30, 0.18);
}

.access-panel dt {
  color: #8b551e;
  text-align: left;
}

.access-panel dd {
  text-align: left;
}

.access-panel dd a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.access-note {
  align-content: start;
  justify-content: center;
  width: min(100%, 720px);
  margin-top: 0;
}

.access-note p {
  flex: 0 0 100%;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  text-align: center;
}

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: var(--coal);
  color: rgba(255, 247, 230, 0.72);
  font-size: 12px;
  text-align: center;
}

.site-footer p {
  width: 100%;
  margin: 0;
}

@media (max-width: 920px) {
  .site-header {
    align-items: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    padding: 12px;
    color: var(--ink);
    background: rgba(241, 228, 211, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open { display: grid; }
  .site-nav a { min-height: 44px; padding: 10px 8px; text-align: center; }
  .menu-toggle { display: grid; grid-column: 2; justify-self: center; width: 44px; min-height: 44px; gap: 5px; padding: 11px; border: 1px solid currentColor; color: currentColor; background: transparent; }
  .menu-toggle span { display: block; height: 2px; background: currentColor; }

  .hero {
    min-height: 820px;
  }

  .photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .photo-card img {
    height: 260px;
  }

  .menu-feature,
  .menu-feature.reverse,
  .access-panel {
    grid-template-columns: 1fr;
  }

  .menu-feature.reverse .menu-visual {
    order: 0;
  }
}

@media (max-width: 720px) {
  h1 {
    flex-direction: column;
    align-items: center;
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: fixed;
    gap: 12px;
    padding: 16px 18px;
  }

  .brand {
    width: 132px;
    min-height: 56px;
    padding: 2px 0 4px;
  }

  .brand-kicker {
    gap: 0.36em;
    margin-bottom: 6px;
    padding-left: 0.02em;
    font-size: 14px;
  }

  .brand-name {
    font-size: 32px;
    letter-spacing: 0.1em;
    padding-left: 0.1em;
  }

  .header-tel {
    min-height: 44px;
    padding: 8px 4px;
    font-size: 12px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(8, 6, 4, 0.9), rgba(8, 6, 4, 0.2) 64%),
      linear-gradient(90deg, rgba(8, 6, 4, 0.58), rgba(8, 6, 4, 0.12));
  }

  .hero-content {
    width: 100%;
    padding: 96px 18px;
  }

  h1 {
    font-size: clamp(30px, 9.2vw, 42px);
  }

  h1 span,
  .section-heading h2,
  .food-section .section-heading h2,
  .drink-section .section-heading h2,
  .photo-story .section-heading h2 {
    max-width: 100%;
    white-space: normal;
  }

  .hero-actions,
  .access-note {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-card img {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .primary-button,
  .secondary-button {
    width: min(100%, 320px);
    max-width: 100%;
  }

  .menu-feature,
  .food-section .menu-feature {
    width: 100%;
  }

  .access-panel dl > div {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 12px;
  }

  .access-panel,
  .access-note {
    width: 100%;
  }

  .access-note p {
    flex: 0 1 auto;
    width: 100%;
    text-align: left;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .section {
    padding-inline: 16px;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button,
  .access-note .primary-button,
  .access-note .secondary-button {
    width: 100%;
  }

  .access-panel {
    padding: 20px 16px;
  }

  .access-panel dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .access-panel dt,
  .access-panel dd,
  .access-note p {
    text-align: center;
  }
}

@media (max-width: 360px) {
  .site-header {
    gap: 6px;
    padding: 10px 8px;
  }

  .brand {
    width: 104px;
    min-height: 48px;
  }

  .brand-kicker {
    margin-bottom: 4px;
    font-size: 12px;
  }

  .brand-name {
    font-size: 26px;
  }

  .menu-toggle {
    width: 44px;
    min-height: 44px;
    padding: 9px;
  }

  .header-tel {
    font-size: 11px;
  }
}

@media (max-width: 400px) and (max-height: 620px) {
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 74px 16px 20px;
  }

  .hero-eyebrow {
    margin-bottom: 6px;
    font-size: 11px;
  }

  h1 {
    margin: 6px 0 14px;
    font-size: clamp(26px, 8vw, 34px);
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 16px;
    gap: 8px;
  }

  .primary-button,
  .secondary-button {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 13px;
  }
}

.disclaimer-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.disclaimer-note--hero {
  display: inline-block;
  margin-top: 18px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(18, 13, 10, 0.45);
  color: rgba(255, 248, 232, 0.92);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.disclaimer-note--menu {
  padding: 12px 16px 14px;
  color: #fff6e8;
  background: var(--coal-soft);
}

.drink-section .disclaimer-note--menu {
  color: rgba(255, 246, 232, 0.72);
  background: rgba(255, 246, 232, 0.08);
}

.disclaimer-note--group {
  max-width: 780px;
  margin: 20px auto 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.photo-card.reveal:nth-child(2) {
  transition-delay: 120ms;
}

.photo-card.reveal:nth-child(3) {
  transition-delay: 240ms;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* 固有演出：お席カードが暖簾を開くように左右の短い移動から収まる（1回限り、1.2秒以内） */
.card-noren.reveal {
  transform: translateY(24px) translateX(-18px);
}

.card-noren.reveal:nth-child(2) {
  transform: translateY(24px) translateX(0);
}

.card-noren.reveal:nth-child(3) {
  transform: translateY(24px) translateX(18px);
}

.card-noren.reveal.is-visible {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .card-noren.reveal {
    transform: none;
  }
}

.no-js .card-noren.reveal {
  transform: none;
}

/* ヒーロー画像のスクロール連動拡大（タイプ2標準） */
.hero-image {
  transform: scale(calc(1 + var(--hp, 0) * 0.08));
  transform-origin: center;
}

html.fx-on .hero-image {
  will-change: transform;
}

/* SCROLLキュー（タイプ2標準） */
.scroll-cue {
  display: none;
  position: absolute;
  bottom: clamp(14px, 3vh, 26px);
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-align: center;
  text-decoration: none;
  min-width: 44px;
  min-height: 44px;
  opacity: calc(0.82 - var(--hp, 0) * 3);
}

html.fx-on .scroll-cue {
  display: block;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 34px;
  margin: 9px auto 0;
  background: currentColor;
  animation: scroll-cue-line 2s ease-in-out infinite;
}

@keyframes scroll-cue-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;
  }
}

@media (max-width: 400px) and (max-height: 620px) {
  html.fx-on .scroll-cue {
    display: none;
  }
}
