:root {
  --ink: #15120e;
  --paper: #fbf1dd;
  --paper-deep: #efdcae;
  --white: #fffaf0;
  --yellow: #f4c841;
  --green: #159b68;
  --red: #e7472f;
  --blue: #2357c6;
  /* 白文字を載せる背景・紙の上の文字用(コントラストAA確保) */
  --green-deep: #10835a;
  --red-deep: #c0341d;
  --shadow: rgba(21, 18, 14, 0.28);
  --muted: #625b50;
  --header-height: 64px;
  --cta-height: 58px;
  /* ホームインジケータ等の切り欠きぶん。非対応端末は0pxにフォールバック */
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --fv-ease: cubic-bezier(0.22, 0.9, 0.3, 1);

  /* 本文=角ゴ / 見出し=看板ポップ体 / 英字・価格=ポスター体 */
  --font-body:
    "Zen Kaku Gothic New",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Yu Gothic",
    Meiryo,
    system-ui,
    sans-serif;
  --font-display: "RocknRoll One", var(--font-body);
  --font-latin: "Bebas Neue", var(--font-display);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: calc(var(--cta-height) + var(--safe-bottom));
  color: var(--ink);
  background:
    radial-gradient(circle at 1px 1px, rgba(21, 18, 14, 0.14) 1px, transparent 0) 0 0 / 9px 9px,
    var(--paper);
  font-family: var(--font-body);
  letter-spacing: 0;
}

body[data-page="home"] {
  height: 100svh;
  padding-bottom: 0;
  overflow: hidden;
  overscroll-behavior: none;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--ink);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 12px;
  color: var(--white);
  background: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

/* ------------------------------ header ------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  min-height: var(--header-height);
  background: rgba(251, 241, 221, 0.96);
  border-bottom: 3px solid var(--ink);
  backdrop-filter: blur(8px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: var(--header-height);
  min-width: 0;
  padding: 0 10px;
  text-decoration: none;
}

.brand-logo {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-separator {
  flex: 0 0 auto;
  width: 2px;
  height: 32px;
  background: var(--ink);
  transform: rotate(8deg);
  opacity: 0.75;
}

.header-nav {
  display: flex;
  margin-left: auto;
  border-left: 3px solid var(--ink);
}

.header-nav a {
  display: grid;
  place-items: center;
  min-width: 54px;
  padding: 0 8px;
  border-right: 2px solid var(--ink);
  font-size: 0.72rem;
  font-weight: 950;
  text-decoration: none;
}

.header-nav a:last-child {
  border-right: 0;
}

.header-nav a[aria-current="page"] {
  background: var(--yellow);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.header-reserve {
  display: grid;
  align-content: center;
  place-items: center;
  gap: 2px;
  min-width: 58px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--yellow);
  border-left: 3px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  text-decoration: none;
}

.header-reserve small {
  font-size: 0.62rem;
}

/* --------------------------- first view ----------------------------- */

.fv {
  display: flex;
  flex-direction: column;
  height: calc(100svh - var(--header-height) - var(--cta-height) - var(--safe-bottom));
}

.fv-tabbar {
  background: var(--white);
  border-bottom: 3px solid var(--ink);
}

.fv-tabs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}

.fv-tab-lunch {
  order: 1;
}

.fv-home {
  order: 2;
}

.fv-tab-night {
  order: 3;
}

.fv-tab {
  min-width: 0;
  min-height: 46px;
  appearance: none;
  border: 0;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 950;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.fv-tab-lunch.is-active {
  background: var(--green-deep);
  color: var(--white);
}

.fv-tab-night.is-active {
  background: var(--red-deep);
  color: var(--white);
}

.fv-home {
  display: grid;
  place-items: center;
  width: 52px;
  appearance: none;
  border: 0;
  border-right: 3px solid var(--ink);
  border-left: 3px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-size: 0.68rem;
  font-weight: 950;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.fv-home.is-active {
  background: var(--yellow);
}

.fv-viewport {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background: var(--ink);
  touch-action: pan-y;
  cursor: grab;
}

.fv-viewport:has(.fv-track.is-dragging) {
  cursor: grabbing;
}

.fv-viewport img {
  user-select: none;
  -webkit-user-drag: none;
}

.fv-track {
  display: flex;
  width: 300%;
  height: 100%;
  transform: translateX(-33.3333%);
  transition: transform 260ms var(--fv-ease);
}

.fv-track.is-dragging {
  transition: none;
}

.fv-panel {
  position: relative;
  flex: 0 0 calc(100% / 3);
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.fv-panel-scroll {
  height: 100%;
  overflow-y: auto;
  /* 指を離した後の吸着をなくし、縦スクロールを自然な慣性にする。 */
  scroll-snap-type: none;
  -webkit-overflow-scrolling: touch;
  /* 店舗FVの上端ではラバーバンドを止め、TOPへの横スワイプを優先する。 */
  overscroll-behavior: none;
  scrollbar-width: thin;
  scrollbar-color: var(--ink) rgba(255, 250, 240, 0.45);
}

.fv-panel-scroll::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.fv-panel-scroll::-webkit-scrollbar-thumb {
  background: var(--ink);
  border: 2px solid var(--paper);
}

.fv-panel-scroll:focus-visible {
  outline: 4px solid var(--blue);
  outline-offset: -4px;
  box-shadow: none;
}

/* --------------------------- cover panel ---------------------------- */

.fv-cover {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cover-half {
  position: relative;
  min-width: 0;
  appearance: none;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
}

.cover-lunch {
  border-right: 3px solid var(--ink);
}

.cover-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  filter: saturate(1.02) contrast(1.04);
  transform: scale(1.02);
  transition: opacity 0.25s ease, transform 0.6s var(--fv-ease);
}

.cover-half:hover img,
.cover-half:focus-visible img {
  opacity: 1;
  transform: scale(1.06);
}

.cover-half::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(21, 18, 14, 0.8), rgba(21, 18, 14, 0.18) 46%, rgba(21, 18, 14, 0.1));
}

.cover-label {
  position: absolute;
  right: 10px;
  bottom: 96px;
  left: 10px;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 4px;
  color: var(--white);
  text-align: center;
}

.cover-name {
  font-size: 1.18rem;
  font-weight: 950;
  text-shadow: 0 2px 8px rgba(21, 18, 14, 0.7);
}

.cover-hours {
  font-size: 0.86rem;
  font-weight: 800;
  opacity: 0.9;
}

.cover-value {
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(21, 18, 14, 0.75);
}

.cover-center {
  position: absolute;
  top: 19%;
  left: 50%;
  z-index: 3;
  translate: -50% 0;
  width: max-content;
  max-width: calc(100% - 32px);
  padding: 16px 20px;
  color: var(--ink);
  text-align: center;
  background:
    radial-gradient(circle at 2px 2px, rgba(21, 18, 14, 0.16) 1px, transparent 0) 0 0 / 8px 8px,
    rgba(255, 250, 240, 0.94);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--ink);
  pointer-events: none;
}

.cover-title {
  margin: 0;
  font-size: 1.52rem;
  font-family: var(--font-body);
  line-height: 1.15;
  font-weight: 950;
}

.cover-title b,
.cover-title i {
  font-style: normal;
}

.cover-title b {
  color: var(--green-deep);
}

.cover-title i {
  color: var(--red-deep);
}

.cover-phase {
  margin-right: 0.12em;
  color: var(--ink);
  font-size: 1em;
  font-weight: 900;
}

.cover-phase-night {
  margin-right: -0.04em;
}

.cover-particle {
  font-size: 0.62em;
}

.cover-comma {
  color: var(--ink);
}

.cover-place {
  margin: 0 0 5px;
  font-size: 0.74rem;
  font-weight: 900;
}

.cover-tagline {
  position: absolute;
  top: 42%;
  left: 50%;
  z-index: 3;
  width: max-content;
  max-width: calc(100% - 32px);
  margin: 0;
  translate: -50% 0;
  color: var(--paper);
  text-align: center;
  text-shadow: 0 2px 0 var(--ink), 0 0 12px rgba(21, 18, 14, 0.72);
  font-size: 0.9rem;
  font-weight: 950;
  pointer-events: none;
}

.cover-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  z-index: 3;
  translate: -50% 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 9px 14px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.92);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.76rem;
  font-weight: 950;
  white-space: nowrap;
  pointer-events: none;
}

.hint-copy-desktop {
  display: none;
}

.hint-arrow {
  width: 12px;
  height: 8px;
  background: currentColor;
}

.hint-left {
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  animation: hint-nudge-left 1.6s ease-in-out infinite;
}

.hint-right {
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  animation: hint-nudge-right 1.6s ease-in-out infinite;
}

@keyframes hint-nudge-left {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-4px);
  }
}

@keyframes hint-nudge-right {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

/* --------------------------- tab panels ----------------------------- */

.panel-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 24px 16px 88px;
  scroll-snap-align: start;
  overflow: hidden;
}

.concept-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
}

/* 写真を主役にするため覆いは薄めに。白文字の可読性ぶんだけ暗くする */
.panel-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(21, 18, 14, 0.82), rgba(21, 18, 14, 0.2) 30%, rgba(21, 18, 14, 0.1) 52%, rgba(21, 18, 14, 0.3));
}

.hero-brand {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 0 8px;
  color: var(--white);
  text-align: center;
}

.hero-brand h2 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.2;
  text-shadow: 0 3px 14px rgba(21, 18, 14, 0.75);
}

.hero-brand-logo {
  width: min(68vw, 300px);
  max-height: 38svh;
  object-fit: contain;
  opacity: 0.88;
  filter: brightness(0) invert(1) drop-shadow(0 4px 18px rgba(21, 18, 14, 0.6));
}

.hero-brand-logo-night {
  width: min(76vw, 340px);
}

.hero-summary {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(21, 18, 14, 0.9);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 2;
  translate: -50% 0;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "kicker kicker"
    "copy arrow";
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  row-gap: 3px;
  padding: 8px 10px;
  appearance: none;
  color: var(--white);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(21, 18, 14, 0.9);
  cursor: pointer;
}

.hero-scroll-kicker {
  grid-area: kicker;
  justify-self: center;
  padding: 4px 9px 3px;
  color: var(--ink);
  background: rgba(244, 200, 65, 0.96);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--ink);
  font-family: var(--font-latin);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-shadow: none;
}

.hero-scroll-copy {
  grid-area: copy;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.hero-scroll-cue:hover .hero-scroll-copy {
  text-decoration-thickness: 2px;
}

.hero-top-return {
  position: absolute;
  top: 50%;
  z-index: 3;
  translate: 0 -50%;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  appearance: none;
  color: rgba(255, 250, 240, 0.92);
  background: rgba(21, 18, 14, 0.38);
  border: 2px solid rgba(255, 250, 240, 0.72);
  border-radius: 999px;
  box-shadow: none;
  font: inherit;
  cursor: pointer;
  opacity: 0.68;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.hero-top-return:hover,
.hero-top-return:focus-visible {
  background: rgba(21, 18, 14, 0.68);
  opacity: 1;
}

/* 向きだけでTOPの位置を示す。ボタン自体はタップでも利用できる。 */
.hero-top-return > span:not(.hero-top-return-arrow) {
  display: none;
}

.hero-top-return-left {
  left: 10px;
}

.hero-top-return-right {
  right: 10px;
}

.hero-top-return-arrow {
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1;
}

.panel-concept {
  padding: 28px 16px;
  background:
    radial-gradient(circle at 16px 16px, rgba(35, 87, 198, 0.13) 2px, transparent 3px) 0 0 / 32px 32px,
    var(--paper-deep);
  scroll-snap-align: start;
}

.concept-copy {
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 16px;
  color: var(--ink);
  background:
    radial-gradient(circle at 2px 2px, rgba(21, 18, 14, 0.16) 1px, transparent 0) 0 0 / 8px 8px,
    rgba(255, 250, 240, 0.95);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--ink);
}

.concept-copy h3 {
  margin: 10px 0 8px;
  font-size: 1.62rem;
  line-height: 1.14;
  font-weight: 950;
}

.concept-copy > p:not(.stamp) {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 800;
}

/* スクロールで現れる(JSがis-waitingを付け、見えたらis-revealedに) */
.js-reveal {
  transition: opacity 640ms ease, transform 640ms var(--fv-ease);
}

.js-reveal.is-waiting {
  opacity: 0;
  transform: translateY(20px);
}

.scroll-hint-arrow {
  grid-area: arrow;
  width: 14px;
  height: 9px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  animation: hint-nudge-down 1.6s ease-in-out infinite;
}

@keyframes hint-nudge-down {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

.panel-details {
  display: grid;
  grid-template-columns: min(100%, 560px);
  justify-content: center;
  align-content: start;
  min-height: 100%;
  padding: 24px 16px calc(96px + var(--safe-bottom));
  background:
    radial-gradient(circle at 16px 16px, rgba(35, 87, 198, 0.13) 2px, transparent 3px) 0 0 / 32px 32px,
    var(--paper-deep);
  border-top: 2px solid var(--ink);
  scroll-snap-align: start;
}

/* チップ類はグリッドで引き伸ばさず内容幅のまま左揃え */
.panel-details .tag,
.panel-details .stamp {
  justify-self: start;
}

.panel-details h3 {
  margin: 0 0 14px;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 950;
}

.instagram-shop-link {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  margin: 0 3px 6px 0;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 10px;
  box-shadow: 3px 3px 0 var(--ink);
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.instagram-shop-link:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

.instagram-shop-link-lunch {
  border-color: var(--green-deep);
  box-shadow: 3px 3px 0 var(--green-deep);
}

.instagram-shop-link-night {
  border-color: var(--red-deep);
  box-shadow: 3px 3px 0 var(--red-deep);
}

.instagram-shop-link-lunch:hover {
  box-shadow: 1px 1px 0 var(--green-deep);
}

.instagram-shop-link-night:hover {
  box-shadow: 1px 1px 0 var(--red-deep);
}

.instagram-shop-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.instagram-shop-copy {
  display: grid;
  gap: 1px;
}

.instagram-shop-copy strong {
  font-family: var(--font-latin);
  font-size: 1.18rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.instagram-shop-copy small {
  font-size: 0.72rem;
  line-height: 1.35;
  font-weight: 800;
}

.instagram-shop-arrow {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.instagram-reservation-note {
  margin: 6px 0 0;
  color: rgba(21, 18, 14, 0.72);
  font-size: 0.72rem;
  line-height: 1.5;
  font-weight: 800;
}

.party-callout,
.notice-callout {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  background:
    repeating-linear-gradient(-8deg, rgba(231, 71, 47, 0.08) 0 10px, transparent 10px 20px),
    var(--white);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--ink);
}

.notice-callout {
  background: var(--white);
}

.party-callout p:not(.stamp),
.notice-callout p:not(.stamp) {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 800;
}

.party-quick-link {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--ink);
  text-decoration: none;
}

.party-quick-link strong {
  font-family: var(--font-display);
  font-size: 1rem;
}

.party-quick-link span,
.party-quick-link b {
  font-size: 0.76rem;
  line-height: 1.45;
}

.party-quick-link b {
  justify-self: end;
}

#lunch-menu,
#night-menu,
#private-party-lunch,
#private-party {
  scroll-margin-top: 18px;
}

#lunch-menu:focus,
#night-menu:focus,
#private-party-lunch:focus,
#private-party:focus {
  outline: 3px dashed var(--blue);
  outline-offset: 5px;
}

.party-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2px 0 0;
  overflow: hidden;
  background: var(--paper);
  border: 2px solid var(--ink);
}

.party-facts > div {
  display: grid;
  gap: 3px;
  padding: 9px 6px;
  border-right: 1px solid var(--ink);
  text-align: center;
}

.party-facts > div:last-child {
  border-right: 0;
}

.party-facts dt,
.party-facts dd {
  margin: 0;
}

.party-facts dt {
  font-size: 0.7rem;
  font-weight: 950;
}

.party-facts dd {
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1.35;
}

.party-dm-note,
.party-cancel {
  padding-top: 10px;
  border-top: 1px solid rgba(21, 18, 14, 0.22);
}

.party-cancel {
  color: rgba(21, 18, 14, 0.82);
  font-size: 0.78rem !important;
  line-height: 1.65 !important;
}

/* ----------------------------- メニュー ------------------------------ */

.menu-paper {
  margin-top: 18px;
}

.menu-paper-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 13px;
  appearance: none;
  list-style: none;
  color: var(--ink);
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 6px;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.86rem;
  font-weight: 950;
  cursor: pointer;
}

.menu-paper-toggle::-webkit-details-marker {
  display: none;
}

.menu-paper-close-label {
  display: none;
}

.menu-paper[open] .menu-paper-open-label {
  display: none;
}

.menu-paper[open] .menu-paper-close-label {
  display: inline;
}

.menu-paper-toggle-icon {
  width: 10px;
  height: 7px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: transform 0.2s ease;
}

.menu-paper[open] .menu-paper-toggle-icon {
  transform: rotate(180deg);
}

.menu-images {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.menu-image-card {
  display: grid;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--ink);
  text-decoration: none;
}

.menu-image-card img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--white);
}

.menu-image-card span {
  display: block;
  padding: 10px 12px;
  background: var(--yellow);
  border-top: 3px solid var(--ink);
  font-size: 0.86rem;
  font-weight: 950;
}

.menu-modal {
  width: min(calc(100vw - 24px), 1180px);
  max-width: none;
  max-height: calc(100dvh - 24px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 var(--ink);
}

.menu-modal::backdrop {
  background: rgba(18, 18, 18, 0.82);
}

.menu-modal-frame {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 14px;
}

.menu-modal-title {
  margin: 0;
  padding-right: 42px;
  font-size: 0.82rem;
  font-weight: 950;
}

.menu-modal-image {
  display: block;
  width: 100%;
  max-height: calc(100dvh - 94px);
  object-fit: contain;
  background: var(--white);
  border: 1px solid rgba(22, 22, 22, 0.2);
}

.menu-modal-close {
  position: absolute;
  top: 9px;
  right: 9px;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.menu-modal-close:hover,
.menu-modal-close:focus-visible {
  color: var(--ink);
  background: var(--yellow);
}

.menu-feature,
.menu-group {
  margin-top: 18px;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--ink);
}

.menu-feature {
  padding: 16px;
}

.menu-group {
  padding: 0 16px 16px;
  overflow: hidden;
}

.menu-feature {
  background:
    linear-gradient(-24deg, transparent 0 62%, rgba(21, 155, 104, 0.12) 62%),
    var(--white);
}

.menu-feature h4 {
  margin: 0 0 4px;
  font-size: 1.32rem;
  line-height: 1.2;
  font-weight: 950;
}

.menu-feature-sub {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
}

.plate-prices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 12px 0 0;
  overflow: hidden;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 6px;
}

.plate-prices > div {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 2px;
  padding: 10px 6px;
  border-right: 2px solid var(--ink);
  text-align: center;
}

.plate-prices > div:last-child {
  border-right: 0;
}

.plate-prices span {
  font-size: 0.72rem;
  font-weight: 950;
}

.plate-prices strong {
  font-size: 1.05rem;
  font-weight: 950;
}

.menu-choices-title {
  margin: 14px 0 8px;
  font-size: 0.8rem;
  font-weight: 950;
}

.menu-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-choices li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2px 6px;
  min-height: 40px;
  padding: 6px 10px;
  text-align: center;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
  line-height: 1.3;
  font-weight: 950;
}

.menu-choices em {
  font-style: normal;
  color: var(--red-deep);
  font-size: 0.72rem;
  font-weight: 950;
  white-space: nowrap;
}

/* 追加料金のある選択肢は、2列分を使う横長の表示にする */
.menu-choices .menu-choice-wide {
  grid-column: 1 / -1;
  flex-wrap: nowrap;
  gap: 4px;
  white-space: nowrap;
}

.menu-group-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  margin: 0 -16px 14px;
  padding: 10px 14px 11px;
  color: var(--white);
  background: var(--green-deep);
  border-bottom: 3px solid var(--ink);
  font-size: 1.2rem;
  line-height: 1.1;
  font-weight: 950;
}

.menu-group-title span {
  font-size: 0.68rem;
  font-weight: 800;
  opacity: 0.94;
}

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

.menu-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.menu-name {
  font-size: 0.95rem;
  font-weight: 950;
}

.menu-leader {
  flex: 1;
  min-width: 24px;
  align-self: flex-end;
  margin-bottom: 5px;
  border-bottom: 2px dotted var(--ink);
}

.menu-price {
  font-size: 0.95rem;
  font-weight: 950;
  white-space: nowrap;
}

.menu-desc {
  margin: 2px 0 0;
  font-size: 0.78rem;
  line-height: 1.6;
  font-weight: 800;
}

.menu-notes {
  display: grid;
  gap: 6px;
  margin: 18px 0 0;
  padding-left: 1.1em;
  font-size: 0.78rem;
  line-height: 1.6;
  font-weight: 800;
}

/* ------------------------ shared components ------------------------- */

.section-kicker,
.stamp,
.tag {
  margin: 0 0 9px;
  font-size: 0.76rem;
  line-height: 1.2;
  font-weight: 950;
}

.stamp {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 4px 9px;
  color: var(--white);
  background: var(--blue);
  border: 2px solid var(--ink);
  border-radius: 999px;
}

.stamp-lunch {
  background: var(--green-deep);
}

.stamp-night {
  background: var(--red-deep);
}

.tag {
  display: inline-flex;
  padding: 4px 8px;
  color: var(--white);
  background: var(--green-deep);
  border: 2px solid var(--ink);
}

.tag-lunch {
  background: var(--green-deep);
}

.tag-night {
  background: var(--red-deep);
}

.detail-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
}

.detail-list dt,
.detail-list dd {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
}

.detail-list dt {
  font-weight: 950;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 6px;
  font-size: 0.88rem;
  line-height: 1.2;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-multiline {
  flex-direction: column;
  gap: 2px;
  line-height: 1.12;
}

.btn-primary {
  background: var(--yellow);
}

.btn-secondary {
  background: var(--white);
}

.btn-ghost {
  display: flex;
  width: 100%;
  margin-top: 12px;
  appearance: none;
  background: var(--paper);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.seat-note {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.seat-note article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 12px;
  align-items: center;
  padding: 12px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.seat-note .seat-icon {
  grid-row: span 2;
  width: 42px;
  height: 42px;
}

.seat-note h4 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.25;
  font-weight: 950;
}

.seat-note p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.7;
}

.night-recommendations {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  background:
    linear-gradient(-24deg, transparent 0 62%, rgba(231, 71, 47, 0.12) 62%),
    var(--white);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--ink);
}

.night-recommendations h4,
.night-recommendations > p {
  margin: 0;
}

.night-recommendations h4 {
  font-size: 1.22rem;
  line-height: 1.2;
  font-weight: 950;
}

.night-recommendations > p {
  font-size: 0.86rem;
  line-height: 1.7;
  font-weight: 800;
}

.night-menu-picks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.night-menu-picks li {
  display: grid;
  min-height: 42px;
  place-items: center;
  padding: 7px 8px;
  text-align: center;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.25;
}

.night-today-note {
  display: grid;
  gap: 4px;
  margin: 2px -16px 0;
  padding: 13px 16px;
  color: var(--white);
  background: var(--red-deep);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.night-today-note p,
.night-today-note h5,
.night-today-note span {
  margin: 0;
}

.night-today-note p {
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 950;
}

.night-today-note h5 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.18;
}

.night-today-note span {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.55;
}

.night-drinks {
  display: grid;
  gap: 3px;
  padding-top: 10px;
}

.night-drinks span {
  color: var(--red-deep);
  font-size: 0.72rem;
  font-weight: 950;
}

.night-drinks p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 950;
}

.seat-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-weight: 950;
}

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

/* ---------------------------- sub pages ----------------------------- */

.sub-section {
  background:
    radial-gradient(circle at 16px 16px, rgba(35, 87, 198, 0.13) 2px, transparent 3px) 0 0 / 32px 32px,
    var(--paper-deep);
  border-bottom: 2px solid var(--ink);
}

.section-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 44px 18px;
}

.section-kicker {
  color: var(--red-deep);
}

/* 暗いヒーロー写真の上では濃赤が沈むので黄色にする */
.sub-hero .section-kicker {
  color: var(--yellow);
}

.sub-hero h1 {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.18;
  font-weight: 950;
}

.access-grid,
.party-grid,
.about-layout {
  display: grid;
  gap: 18px;
}

.info-card {
  overflow: hidden;
  padding: 18px;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--ink);
}

.info-card h2 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.25;
  font-weight: 950;
}

.info-card p,
.sub-hero p {
  line-height: 1.75;
}

.sub-hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  border-bottom: 2px solid var(--ink);
}

.sub-hero .section-inner {
  position: relative;
  z-index: 2;
  min-height: 42svh;
  display: grid;
  align-content: end;
}

.sub-hero p {
  max-width: 42rem;
  margin: 12px 0 0;
  font-weight: 800;
}

.photo-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.access-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(21, 18, 14, 0.78), rgba(21, 18, 14, 0.08) 72%);
  pointer-events: none;
}

.access-hero img {
  opacity: 0.72;
  filter: brightness(1.18) saturate(1.06) contrast(0.96);
}

.access-guide {
  margin-bottom: 18px;
}

.access-facts {
  display: grid;
  gap: 0;
  margin: 2px 0 0;
}

.access-facts > div {
  display: grid;
  grid-template-columns: 5.9rem minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid rgba(21, 18, 14, 0.24);
}

.access-facts > div:last-child {
  border-bottom: 1px solid rgba(21, 18, 14, 0.24);
}

.access-facts dt,
.access-facts dd {
  margin: 0;
}

.access-facts dt {
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 5px 7px;
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
}

.access-facts dd {
  align-self: center;
  padding-left: 12px;
  border-left: 2px solid rgba(21, 18, 14, 0.2);
  line-height: 1.7;
  font-weight: 700;
}

.hours-note {
  margin: 14px 0 0;
  padding: 10px 12px;
  background: rgba(255, 250, 240, 0.72);
  border-left: 4px solid var(--blue);
  font-size: 0.76rem;
  line-height: 1.6;
  font-weight: 700;
}

.lunch-visit-note {
  margin: 12px 0 0;
  color: rgba(22, 22, 22, 0.72);
  font-size: 0.78rem;
  line-height: 1.6;
  font-weight: 700;
}

.access-hours-note {
  margin-top: 18px;
}

.access-map {
  margin-top: 18px;
}

.access-map-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.access-map-heading h2 {
  margin: 5px 0 0;
  font-size: 1.25rem;
}

.access-map-heading > p,
.map-caption {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.access-map-heading > p {
  max-width: 18rem;
  text-align: right;
}

.map-embed {
  height: clamp(300px, 56vw, 400px);
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--paper-deep);
  box-shadow: 4px 4px 0 var(--ink);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-caption {
  margin-top: 12px;
}

.party-grid .info-card,
.access-grid .info-card {
  display: grid;
  gap: 12px;
}

/* グリッド化したカード内でチップを引き伸ばさない */
.info-card .stamp {
  justify-self: start;
}

.interior-gallery {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.interior-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--ink);
}

.callout-card {
  background:
    repeating-linear-gradient(-8deg, rgba(231, 71, 47, 0.08) 0 10px, transparent 10px 20px),
    var(--white);
}

.about-layout > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--ink);
}

/* --------------------------- mobile CTA ----------------------------- */

.mobile-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: var(--cta-height);
  padding-bottom: var(--safe-bottom);
  background: var(--yellow);
  border-top: 3px solid var(--ink);
}

.mobile-cta a {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 8px 4px;
  border-right: 2px solid var(--ink);
  font-size: clamp(0.72rem, 3vw, 0.86rem);
  font-weight: 950;
  text-decoration: none;
}

.mobile-cta a:last-child {
  border-right: 0;
}

.mobile-cta a[aria-current="page"] {
  background: var(--paper);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* デスクトップの黄色い予約ボタンに相当する強調 */
.mobile-cta-reserve {
  align-content: center;
  gap: 2px;
  color: var(--paper);
  background: var(--ink);
  line-height: 1.05;
}

.mobile-cta-reserve span {
  font-size: 0.72rem;
}

.mobile-cta-reserve small {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 900;
}

/* ------------------------- typography ------------------------------- */

/* 看板役: 見出し・タブ・店名・料理名はポップ体(1ウェイトのみなので400固定) */
.fv-tab,
.cover-name,
.hero-brand h2,
.concept-copy h3,
.panel-details h3,
.menu-feature h4,
.menu-group-title,
.menu-name,
.seat-note h4,
.night-recommendations h4,
.info-card h2,
.sub-hero h1,
.mobile-cta a {
  font-family: var(--font-display);
  font-weight: 400;
}

/* メニュー見出しの注記(〜付/無料など)は本文書体に戻す */
.menu-group-title span {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
}

/* 値札役: 英字ラベルと価格はポスター体(和文が混ざる場合は自動で本文へフォールバック) */
.fv-home,
.stamp,
.tag,
.section-kicker,
.cover-hours,
.menu-price,
.plate-prices strong {
  font-family: var(--font-latin);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.fv-home {
  font-size: 0.82rem;
}

.menu-price,
.plate-prices strong {
  font-size: 1.12rem;
}

/* 読み物役: 説明文はZen Kakuの700で(旧800指定は900に化けて重すぎるため) */
.concept-copy > p:not(.stamp),
.cover-place,
.menu-feature-sub,
.menu-desc,
.menu-notes,
.sub-hero p,
.party-callout p:not(.stamp),
.notice-callout p:not(.stamp) {
  font-weight: 700;
}

/* -------------------------- media queries --------------------------- */

@media (max-width: 759px) {
  .site-header {
    justify-content: center;
  }

  .brand {
    margin: 0 auto;
  }

  .header-nav {
    display: none;
  }

  /* 下部固定バーの「予約」と重複するため非表示(常時表示同士でかぶるのを回避) */
  .header-reserve {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 480px) {
  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .fv {
    height: calc(100svh - var(--header-height));
  }

  .brand {
    gap: 10px;
    padding: 0 14px;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand-separator {
    height: 38px;
  }

  .header-nav a {
    font-size: 0.92rem;
  }

  .header-reserve {
    min-width: 84px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .header-nav a {
    min-width: 92px;
    padding: 0 16px;
  }

  .fv-tab {
    min-height: 52px;
    font-size: 0.95rem;
  }

  .fv-home {
    width: 64px;
    font-size: 0.95rem;
  }

  .cover-center {
    padding: 22px 28px;
  }

  .cover-title {
    font-size: 2.8rem;
  }

  .cover-tagline {
    top: 48%;
    font-size: 1.12rem;
  }

  .cover-place {
    font-size: 0.92rem;
  }

  .cover-label {
    bottom: 120px;
  }

  .cover-name {
    font-size: 1.72rem;
  }

  .cover-hours {
    font-size: 1rem;
  }

  .cover-value {
    font-size: 0.96rem;
  }

  .hint-copy-touch {
    display: none;
  }

  .hint-copy-desktop {
    display: inline;
  }

  .concept-copy {
    width: min(640px, 100%);
    padding: 24px;
  }

  .concept-copy h3 {
    font-size: 2.4rem;
  }

  .concept-copy > p:not(.stamp) {
    font-size: 1rem;
  }

  .panel-concept {
    padding: 44px 24px;
  }

  .hero-brand h2 {
    font-size: 3.4rem;
  }

  .hero-brand-logo {
    width: min(34vw, 380px);
  }

  .hero-brand-logo-night {
    width: min(38vw, 420px);
  }

  .hero-top-return {
    width: 40px;
    height: 40px;
  }

  .hero-top-return-left {
    left: 18px;
  }

  .hero-top-return-right {
    right: 18px;
  }

  .hero-top-return-arrow {
    font-size: 1.05rem;
  }

  .panel-details {
    grid-template-columns: min(100%, 640px);
    padding: 40px 24px 72px;
  }

  .detail-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-inner {
    padding: 72px 28px;
  }

  .sub-hero h1 {
    font-size: 2.65rem;
  }

  .access-grid,
  .about-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .interior-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-cta {
    display: none;
  }
}

/* 横向きスマホなど高さが足りない画面での退避 */
@media (max-height: 480px) {
  body[data-page="home"] {
    height: auto;
    min-height: 100svh;
    overflow-y: auto;
    overscroll-behavior: auto;
  }

  .site-header {
    position: static;
  }

  .fv {
    height: max(420px, 100svh);
  }

  .mobile-cta {
    position: static;
  }

  .fv-panel-scroll {
    /* 横向きでも上端のバウンスだけは復活させない。 */
    overscroll-behavior: none;
  }

  .cover-center {
    top: 8%;
    padding: 10px 14px;
  }

  .cover-title {
    font-size: 1.3rem;
  }

  .cover-place {
    display: none;
  }

  .cover-label {
    bottom: 68px;
    gap: 4px;
  }

  .cover-hours {
    display: none;
  }

  .cover-value {
    display: none;
  }

  .cover-hint,
  .hero-scroll-cue {
    bottom: 8px;
    padding: 6px 12px;
    font-size: 0.7rem;
  }

  .hero-brand-logo {
    max-height: 120px;
  }

  .panel-hero {
    min-height: 360px;
    padding-bottom: 56px;
  }

  .hero-summary {
    font-size: 0.72rem;
  }

}
