:root {
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", system-ui, sans-serif;
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --ink: #172623;
  --text: #354540;
  --muted: #69766f;
  --paper: #fffaf1;
  --stone: #eee7da;
  --stone-deep: #ddd1bd;
  --green: #087968;
  --green-deep: #064f45;
  --leaf: #8fb85f;
  --crab: #c94b38;
  --sky: #8fc4d6;
  --door: #151918;
  --line: rgba(23, 38, 35, 0.14);
  --shadow: 0 22px 64px rgba(16, 31, 27, 0.16);
  --shadow-soft: 0 16px 36px rgba(16, 31, 27, 0.1);
  --radius: 8px;
  --container: 1120px;
  --header-height: 76px;
  --proposal-notice-height: 35px;
  --hero-shift: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.8;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.nav-locked {
  overflow: hidden;
}

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

.text-nowrap {
  white-space: nowrap;
}

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

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

:focus-visible {
  outline: 3px solid rgba(201, 75, 56, 0.72);
  outline-offset: 4px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: calc(var(--proposal-notice-height) + 12px);
  z-index: 200;
  transform: translateY(-160%);
  background: var(--green-deep);
  color: #fff;
  padding: 10px 14px;
  border-radius: 4px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 250, 241, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(16px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 241, 0.96);
  box-shadow: 0 14px 36px rgba(16, 31, 27, 0.12);
}

.header-inner {
  width: min(100% - 32px, 1180px);
  min-height: var(--header-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  transition: min-height 220ms ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 62px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 0;
}

.brand img {
  width: 154px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 3px rgba(6, 79, 69, 0.16));
  transition: width 220ms ease;
}

.site-header.is-scrolled .brand img {
  width: 132px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: clamp(14px, 2.2vw, 26px);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding-block: 8px;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  content: "";
  background: var(--crab);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: var(--green-deep);
  color: #fff;
  box-shadow: 0 12px 26px rgba(6, 79, 69, 0.18);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-call:hover {
  transform: translateY(-1px);
  background: var(--green);
  box-shadow: 0 16px 30px rgba(6, 79, 69, 0.22);
}

.header-call-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: #90d7ca;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-call-number {
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--green-deep);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 132px 0 88px;
  color: #fff;
  background: var(--door);
}

.hero-bg {
  position: absolute;
  inset: -6% 0;
  z-index: -2;
  background: url("assets/hero-main.jpg") center 64% / cover no-repeat;
  transform: translate3d(0, var(--hero-shift), 0) scale(1.06);
  animation: ken-burns 20s ease-out both;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 20, 17, 0.55) 0%, rgba(10, 20, 17, 0.28) 55%, rgba(10, 20, 17, 0.12) 100%),
    linear-gradient(180deg, rgba(10, 20, 17, 0.05) 45%, rgba(10, 20, 17, 0.4) 100%);
}

@keyframes ken-burns {
  from {
    transform: translate3d(0, var(--hero-shift), 0) scale(1);
  }
  to {
    transform: translate3d(0, var(--hero-shift), 0) scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(2.55rem, 6.6vw, 5.8rem);
  font-weight: 700;
  line-height: 1.17;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  max-width: 860px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  font-weight: 700;
  line-height: 1.9;
  white-space: nowrap;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.34);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--crab);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd7b4;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--crab);
  color: #fff;
  box-shadow: 0 18px 40px rgba(201, 75, 56, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(8px);
}

.button-outline {
  border-color: var(--green);
  color: var(--green-deep);
  background: #fff;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  transform: translateX(-50%);
}

.signature-dish {
  margin: 22px 0 0;
  color: var(--crab);
  font-size: 1.08rem;
  font-weight: 800;
}

.menu-categories {
  max-width: 780px;
  margin: 34px auto 0;
  text-align: center;
}

.menu-categories p {
  margin: 0;
}

.menu-categories ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.menu-categories li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 6px 14px;
  color: var(--green-deep);
  font-weight: 800;
  line-height: 1.5;
}

.menu-categories-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.shop-list a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.scroll-indicator-label {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.scroll-chevrons {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.scroll-chevron {
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0;
  transform: translateY(-4px) rotate(45deg);
  animation: scroll-chevron-flow 2s ease-in-out infinite;
}

.scroll-chevron:nth-child(2) {
  animation-delay: 0.32s;
}

@keyframes scroll-chevron-flow {
  0% {
    opacity: 0;
    transform: translateY(-5px) rotate(45deg);
  }
  35% {
    opacity: 1;
  }
  80%, 100% {
    opacity: 0;
    transform: translateY(7px) rotate(45deg);
  }
}

.section {
  padding: clamp(72px, 9vw, 116px) 0;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.visitors .section-head {
  max-width: 920px;
}

.section-head h2,
.section-copy h2,
.access-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4.7vw, 3.4rem);
  line-height: 1.25;
  font-weight: 700;
}

.visitors .section-head h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  white-space: nowrap;
}

.section-head p:not(.eyebrow),
.section-copy p:not(.eyebrow),
.access-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.signature {
  background:
    radial-gradient(circle at 16% 8%, rgba(143, 184, 95, 0.18), transparent 28%),
    linear-gradient(180deg, var(--paper), #f7fbf8 100%);
}

.signature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.menu-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

.menu-photo-large {
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow);
}

.menu-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-photo.is-fallback {
  background-image: url("assets/popular-menu-best3.svg");
  background-repeat: no-repeat;
  background-size: 300% auto;
}

.menu-photo.is-fallback::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  content: "画像差し替え前";
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.92);
  color: var(--green-deep);
  font-size: 0.75rem;
  font-weight: 800;
}

.menu-photo.is-fallback.crop-1 {
  background-position: 0% 45%;
}

.menu-photo.is-fallback.crop-2 {
  background-position: 50% 45%;
}

.menu-photo > .photo-note {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 1;
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(21, 25, 24, 0.55);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.7rem;
  font-weight: 700;
  text-align: right;
  text-shadow: none;
}

.photo-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
}

.hero .photo-note-hero {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 3;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.quick-info {
  position: relative;
  z-index: 3;
  scroll-margin-top: calc(var(--header-height) + 12px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.quick-info-inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.58fr) minmax(0, 1.42fr);
  gap: 28px;
  align-items: center;
  padding-block: 34px;
}

.quick-info-heading .eyebrow {
  margin-bottom: 5px;
}

.quick-info-heading h2 {
  margin: 0;
  color: var(--green-deep);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.35;
}

.quick-info-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-info-list li {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.quick-info-list span,
.quick-info-note {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.quick-info-list strong {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
}

.quick-info-note {
  grid-column: 2;
  margin: -14px 0 0;
  line-height: 1.65;
}

.quick-info-note a {
  color: var(--green-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.menu-photo.is-fallback.crop-3 {
  background-position: 100% 45%;
}

.signature-copy {
  max-width: 620px;
}

.signature-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 18px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(201, 75, 56, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.signature-price span {
  color: var(--ink);
  font-weight: 900;
}

.signature-price strong {
  color: var(--crab);
  font-size: 1.35rem;
}

.signature-notes {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 1.2em;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.best-menu {
  background: #f7fbf8;
}

.menu-lead {
  max-width: 880px;
  margin: 16px auto 0;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.9;
  text-align: center;
}

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

.best-card {
  overflow: hidden;
  border: 1px solid rgba(8, 121, 104, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 32px rgba(30, 54, 48, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.best-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(30, 54, 48, 0.16);
}

.best-card .menu-photo {
  border-radius: 0;
  box-shadow: none;
}

.best-card-body {
  padding: 22px;
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 32px;
  padding: 4px 12px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  line-height: 1;
}

.rank-gold {
  background: #c78900;
}

.rank-silver {
  background: #7d7b78;
}

.rank-bronze {
  background: #bd5b00;
}

.best-card h3 {
  margin: 16px 0 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.35;
}

.best-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.best-card strong {
  display: block;
  margin-top: 14px;
  color: var(--crab);
  font-size: 1.2rem;
}

.visitors {
  background:
    linear-gradient(135deg, rgba(143, 196, 214, 0.16), rgba(143, 184, 95, 0.12)),
    var(--paper);
}

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

.visitor-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(8, 121, 104, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 32px rgba(30, 54, 48, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.visitor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(30, 54, 48, 0.13);
}

.visitor-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  line-height: 1;
}

.visitor-icon img {
  display: block;
  width: 100%;
  height: 100%;
  flex: 0 0 auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.visitor-card h3 {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.45;
}

.visitor-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.menu-list {
  background:
    linear-gradient(180deg, #f7fbf8 0%, var(--paper) 34%),
    var(--paper);
}

.menu-tax-note {
  font-weight: 700;
}

.menu-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.menu-table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(30, 54, 48, 0.06);
}

.menu-table-wrap h3 {
  margin: 0;
  padding: 16px 18px;
  background: var(--green-deep);
  color: #fff;
  font-size: 1rem;
  line-height: 1.4;
}

.menu-heading-note {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.88;
  vertical-align: baseline;
}

.menu-table {
  display: block;
  width: 100%;
  border-collapse: initial;
}

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

.menu-table tr {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: start;
  min-height: 64px;
  padding: 12px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu-table tr:nth-child(3n) {
  border-right: 0;
}

.menu-table th,
.menu-table td {
  display: block;
  padding: 0;
  border-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  vertical-align: top;
}

.menu-table th {
  width: auto;
  color: var(--ink);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-align: left;
}

.menu-item {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.menu-status {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(201, 75, 56, 0.1);
  color: var(--crab);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.menu-description {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.55;
}

.menu-description-strong {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.menu-table td {
  color: var(--crab);
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.menu-table-notes {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 13px 14px 14px 28px;
  border-top: 1px solid var(--line);
  background: #fbf7ee;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.morning-menu-body {
  padding: 14px;
}

.morning-menu-body > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

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

.morning-option {
  padding: 12px 14px;
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.86);
}

.morning-option-wide {
  grid-column: auto;
}

.morning-option h4 {
  margin: 0;
  color: var(--green-deep);
  font-size: 1rem;
  font-weight: 800;
}

.morning-option p {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.55;
}

.morning-option ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.morning-option li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.morning-option li span {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.55;
  word-break: keep-all;
}

.morning-option strong {
  color: var(--crab);
  white-space: nowrap;
}

.access {
  background:
    linear-gradient(135deg, rgba(8, 121, 104, 0.08), rgba(201, 75, 56, 0.06)),
    #eef6f2;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.access-copy {
  grid-column: 1 / -1;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.access-copy .visit-actions {
  justify-content: center;
}

.shop-panel,
.map-panel {
  min-height: 0;
  border: 1px solid rgba(8, 121, 104, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.shop-panel {
  padding: 32px;
}

.shop-list {
  margin: 0;
}

.shop-list div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.shop-list div:first-child {
  padding-top: 0;
}

.shop-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.shop-list dt,
.shop-list dd {
  margin: 0;
}

.shop-list dt {
  color: var(--green-deep);
  font-weight: 900;
}

.shop-list dd {
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.shop-list dd span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: normal;
}

.access-confirmation {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.access-confirmation p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.map-panel {
  overflow: hidden;
  min-height: 420px;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

@media (min-width: 1080px) {
  .access-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: stretch;
  }

  .shop-panel,
  .map-panel {
    height: 100%;
  }
}

.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 104px 0;
  color: #fff;
  background: url("assets/hero-main.jpg") center 58% / cover no-repeat;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(10, 20, 17, 0.84) 0%, rgba(10, 20, 17, 0.66) 42%, rgba(10, 20, 17, 0.42) 100%);
}

.final-cta-content {
  max-width: none;
}

.final-cta-content > * {
  max-width: 660px;
}

.final-cta .eyebrow {
  color: #ffd7b4;
}

.final-cta h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4.7vw, 3.4rem);
  line-height: 1.25;
}

.final-cta-content > p:not(.eyebrow):not(.photo-note) {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.final-cta-copy span {
  display: block;
}

.final-cta .visit-actions {
  margin-top: 32px;
}

.final-cta-note.photo-note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  text-align: left;
}

.site-footer {
  background: var(--door);
  color: rgba(255, 255, 255, 0.82);
  padding: 24px 0;
}

.copyright {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-group] [data-reveal] {
  transition-delay: calc(var(--reveal-order, 0) * 80ms);
}

@media (max-width: 980px) {
  .signature-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .visitor-grid,
  .best-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-call {
    padding-inline: 14px;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 64px;
  }

  .header-inner {
    width: min(100% - 24px, 1180px);
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: 132px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-call {
    min-height: 44px;
    padding: 8px 12px;
  }

  .header-call-number {
    font-size: 0.82rem;
  }

  .nav-toggle {
    display: block;
    flex-shrink: 0;
    min-width: 44px;
    min-height: 44px;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--proposal-notice-height) + var(--header-height)) 12px auto;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 250, 241, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    justify-self: stretch;
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
    white-space: normal;
  }

  .site-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .site-header[data-nav-open="true"] .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-header[data-nav-open="true"] .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header[data-nav-open="true"] .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header[data-nav-open="true"] .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .menu-table tbody {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-table tr:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .menu-table tr:nth-child(2n) {
    border-right: 0;
  }

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

  .morning-option-wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    min-height: 780px;
    padding: 104px 0 58px;
  }

  .hero-bg {
    background-position: 58% 68%;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.55rem);
  }

  .hero h1 .text-nowrap {
    font-size: clamp(1.75rem, 8.7vw, 1em);
  }

  .hero-lead,
  .visitors .section-head h2 {
    white-space: normal;
  }

  .section-copy h2 .text-nowrap {
    font-size: clamp(1.55rem, 7.8vw, 1em);
  }

  .hero-actions,
  .visit-actions {
    display: grid;
  }

  .quick-info-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 26px;
  }

  .quick-info-list {
    gap: 8px;
  }

  .quick-info-list li {
    padding: 12px 10px;
  }

  .quick-info-list strong {
    font-size: 0.88rem;
  }

  .quick-info-note {
    grid-column: auto;
    margin: -4px 0 0;
  }

  .access-confirmation {
    align-items: stretch;
  }

  .scroll-indicator {
    display: none;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .section {
    padding: 64px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .best-card-grid,
  .visitor-grid {
    grid-template-columns: 1fr;
  }

  .visitor-card {
    min-height: auto;
  }

  .menu-table tbody,
  .morning-options {
    grid-template-columns: 1fr;
  }

  .menu-table tr,
  .menu-table tr:nth-child(2n),
  .menu-table tr:nth-child(3n) {
    border-right: 0;
  }

  .menu-heading-note {
    display: block;
    margin: 4px 0 0;
  }

  .shop-panel {
    padding: 22px;
  }

  .shop-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .shop-list dd {
    white-space: normal;
  }

  .final-cta {
    padding: 76px 0;
    text-align: center;
    background-position: 58% center;
  }

  .final-cta::before {
    background: rgba(10, 20, 17, 0.72);
  }

  .final-cta-content {
    margin-inline: auto;
  }

  .final-cta-content > p:not(.eyebrow):not(.photo-note) {
    max-width: 100%;
  }

  .final-cta .visit-actions {
    justify-content: center;
  }

  .final-cta-note.photo-note {
    text-align: center;
  }
}

@media (max-width: 420px) {
  .brand img,
  .site-header.is-scrolled .brand img {
    width: 118px;
  }

  .header-call {
    padding-inline: 10px;
  }

  .header-call-number {
    font-size: 0.76rem;
  }

  .hero {
    min-height: 720px;
  }

  .menu-table th,
  .menu-table td {
    font-size: 0.86rem;
  }

  .menu-table tr {
    padding-inline: 12px;
  }
}

@media (max-width: 360px) {
  .header-inner {
    gap: 8px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-call-icon {
    display: none;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: 104px;
  }

  .header-call {
    gap: 6px;
    padding-inline: 8px;
  }

  .header-call-number {
    font-size: 0.72rem;
  }
}

@media (max-width: 400px) and (max-height: 620px) {
  .hero {
    min-height: 0;
    padding: 78px 0 24px;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.7rem;
  }

  .hero h1 {
    font-size: clamp(1.62rem, 8.6vw, 2.1rem);
    line-height: 1.22;
  }

  .hero-lead {
    margin-top: 12px;
    font-size: 0.84rem;
    line-height: 1.5;
  }

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

  .button {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 0.86rem;
  }

  .scroll-indicator {
    display: none;
  }

  .hero .photo-note-hero {
    bottom: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .hero-bg {
    transform: none !important;
  }

  .scroll-chevron {
    opacity: 0.9;
    transform: rotate(45deg);
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* data-motion="off"（動きOFFスイッチ）でも上記reduced-motionと同じ停止結果にする */
html[data-motion="off"] {
  scroll-behavior: auto;
}

html[data-motion="off"] *,
html[data-motion="off"] *::before,
html[data-motion="off"] *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  scroll-behavior: auto !important;
  transition-duration: 0.001ms !important;
}

html[data-motion="off"] .hero-bg {
  transform: none !important;
}

html[data-motion="off"] .scroll-chevron {
  opacity: 0.9;
  transform: rotate(45deg);
}

html[data-motion="off"] [data-reveal] {
  opacity: 1;
  transform: none;
}

html[data-motion="off"] .scroll-indicator {
  display: none;
}

.proposal-sample-notice {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  margin: 0;
  padding: 7px 16px;
  border-bottom: 1px solid rgba(23, 38, 35, 0.16);
  background: #fff7df;
  color: #3d3524;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.site-header {
  inset: var(--proposal-notice-height) 0 auto;
}

@media (max-width: 640px) {
  :root {
    --proposal-notice-height: 31px;
  }

  .proposal-sample-notice {
    padding: 6px 12px;
    font-size: 0.68rem;
  }

  .site-header {
    inset: var(--proposal-notice-height) 0 auto;
  }
}
