:root {
  --color-bg: #faf6f0;
  --color-bg-soft: #fffaf3;
  --color-paper: #ffffff;
  --color-ink: #211b18;
  --color-muted: #665953;
  --color-line: #eaded1;
  --color-accent: #b7352a;
  --color-accent-dark: #84261f;
  --color-accent-soft: #f6ddd8;
  --color-gold: #c48b33;
  --shadow-soft: 0 18px 50px rgba(65, 38, 24, 0.12);
  --shadow-card: 0 12px 28px rgba(65, 38, 24, 0.08);
  --radius-sm: 8px;
  --radius-md: 8px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

body,
button,
input,
textarea,
select {
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: var(--radius-sm);
  background: var(--color-ink);
  color: #fff;
  padding: 10px 14px;
  font-weight: 700;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.88);
  border-bottom: 1px solid rgba(234, 222, 209, 0.65);
  backdrop-filter: blur(14px);
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 243, 0.96);
  box-shadow: 0 10px 28px rgba(65, 38, 24, 0.09);
}

.site-header__inner {
  width: min(calc(100% - 32px), var(--max-width));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.site-logo img {
  width: 108px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 18px;
  min-width: 0;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--color-muted);
}

.site-nav a {
  border-radius: 999px;
  padding: 6px 4px;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--color-accent);
}

.header-call {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  padding: 8px 18px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(183, 53, 42, 0.22);
}

.header-call__icon {
  flex: 0 0 auto;
}

.header-call strong {
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #2c201b;
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(25, 15, 12, 0.82) 0%, rgba(25, 15, 12, 0.52) 48%, rgba(25, 15, 12, 0.16) 100%),
    linear-gradient(0deg, rgba(25, 15, 12, 0.48), rgba(25, 15, 12, 0.05) 42%);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  animation: heroZoom 22s ease-out both;
}

.hero__inner {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 86px 0 74px;
}

.hero__eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero__eyebrow {
  color: #ffe6d6;
}

.hero__title,
.section h2 {
  margin: 0;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

.hero__title {
  max-width: 680px;
  font-size: 4rem;
}

.hero__subtitle {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1.65;
}

.hero__lead {
  max-width: 670px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px 14px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}

.button--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(183, 53, 42, 0.25);
}

.button--primary:hover {
  background: var(--color-accent-dark);
}

.button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

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

.load-in {
  animation: loadIn 720ms ease both;
}

.hero__title.load-in {
  animation-delay: 120ms;
}

.hero__subtitle.load-in {
  animation-delay: 220ms;
}

.hero__lead.load-in {
  animation-delay: 320ms;
}

.hero__actions.load-in {
  animation-delay: 430ms;
}

.business-info {
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: var(--color-bg-soft);
}

.business-info__inner {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.business-info__item {
  min-width: 0;
  margin: 0;
  padding: 16px 24px 17px;
  text-align: center;
}

.business-info__item + .business-info__item {
  border-left: 1px solid var(--color-line);
}

.business-info__item dt {
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.business-info__item dd {
  margin: 3px 0 0;
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.section {
  padding: 92px 0;
}

.section--light {
  background: var(--color-bg-soft);
}

.section__inner {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

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

.section-heading--center {
  margin: 0 auto 38px;
  text-align: center;
}

.section h2 {
  font-size: 2.35rem;
}

.section-heading p:not(.section-kicker) {
  margin: 16px 0 0;
  color: var(--color-muted);
}

.section-photo {
  max-width: 760px;
  margin: 0 auto 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-paper);
  box-shadow: var(--shadow-soft);
}

.section-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.section-photo figcaption {
  padding: 10px 14px;
  color: var(--color-muted);
  font-size: 0.82rem;
}

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

.menu-cards {
  margin-top: 30px;
}

.menu-card,
.info-card,
.visit-card {
  min-width: 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-paper);
  box-shadow: var(--shadow-card);
}

.menu-card {
  overflow: hidden;
  padding: 0;
}

.menu-card__photo {
  margin: 0;
}

.menu-card__photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.menu-card__body {
  padding: 24px;
}

.menu-card__label {
  margin: 0 0 10px;
  color: var(--color-accent);
  font-size: 0.88rem;
  font-weight: 700;
}

.menu-card h3,
.info-card h3,
.visit-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.55;
}

.menu-card p:not(.menu-card__label),
.info-card p,
.visit-card p {
  margin: 12px 0 0;
  color: var(--color-muted);
}

.menu-card strong {
  display: block;
  margin-top: 18px;
  color: var(--color-accent-dark);
  font-size: 1.55rem;
  line-height: 1.2;
}

.info-card small {
  display: inline-flex;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  padding: 3px 10px;
  font-size: 0.78rem;
  font-weight: 700;
}

.info-card {
  padding: 22px;
}

.visit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.visit-card {
  padding: 26px;
}

.menu-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 34px;
}

.menu-list-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-paper);
  box-shadow: var(--shadow-card);
  padding: 0;
}

.menu-katsudon-photo {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.menu-katsudon-photo img {
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
}

.menu-list-card h3 {
  margin: 0;
  background: var(--color-accent-dark);
  color: #fff;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 1.14rem;
  line-height: 1.45;
  padding: 13px 18px 14px;
}

.menu-list-lead {
  margin: 0;
  padding: 16px 18px 0;
  color: var(--color-muted);
  font-size: 0.86rem;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-line);
  list-style: none;
}

.menu-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 14px;
  align-items: start;
  min-width: 0;
  padding: 15px 16px;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.menu-list--fill-1::after,
.menu-list--fill-2::before,
.menu-list--fill-2::after {
  content: "";
  order: 1;
  display: block;
  min-height: 58px;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: var(--color-paper);
}

.menu-list li:nth-child(3n),
.menu-list--fill-1::after,
.menu-list--fill-2::after {
  border-right: 0;
}

.menu-list:not(.menu-list--fill-1):not(.menu-list--fill-2) li:nth-last-child(-n + 3),
.menu-list--fill-1 li:nth-last-child(-n + 2),
.menu-list--fill-2 li:last-child,
.menu-list--fill-1::after,
.menu-list--fill-2::before,
.menu-list--fill-2::after {
  border-bottom: 0;
}

.menu-list li > span {
  min-width: 0;
  color: var(--color-ink);
  font-weight: 700;
  line-height: 1.55;
}

.menu-list li small {
  display: block;
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
}

.menu-list li > small {
  grid-column: 1 / -1;
}

.menu-list li > small + small {
  margin-top: -7px;
}

.menu-list li strong {
  flex: 0 0 auto;
  justify-self: end;
  color: var(--color-accent);
  font-weight: 700;
  line-height: 1.55;
  text-align: right;
  white-space: nowrap;
}

.menu-list-note {
  margin: 0;
  padding: 12px 18px 14px;
  border-top: 1px solid var(--color-line);
  background: var(--color-bg-soft);
  color: var(--color-muted);
  font-size: 0.8rem;
  line-height: 1.65;
}

.menu-list-note span {
  display: block;
}

.menu-list-note span + span {
  margin-top: 4px;
}

.hors-doeuvre-heading h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.hors-doeuvre-badge {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  padding: 5px 13px 6px;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 8px 18px rgba(183, 53, 42, 0.18);
}

.hors-doeuvre-heading .hors-doeuvre-summary {
  color: var(--color-accent-dark);
  font-size: 1.08rem;
  font-weight: 700;
}

.hors-doeuvre-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: start;
  margin-top: 34px;
}

.hors-doeuvre-photo,
.hors-doeuvre-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-paper);
  box-shadow: var(--shadow-card);
}

.hors-doeuvre-photo {
  margin: 0;
}

.hors-doeuvre-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hors-doeuvre-photo figcaption {
  padding: 10px 14px;
  color: var(--color-muted);
  font-size: 0.82rem;
}

.hors-doeuvre-card h3 {
  margin: 0;
  background: var(--color-accent-dark);
  color: #fff;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 1.14rem;
  line-height: 1.45;
  padding: 13px 18px 14px;
}

.hors-doeuvre-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
  list-style: none;
  margin: 0;
  padding: 18px 22px 20px;
}

.hors-doeuvre-list li {
  padding: 6px 0;
  color: var(--color-ink);
  font-weight: 700;
  line-height: 1.6;
}

.hors-doeuvre-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 22px;
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(460px, 1fr) minmax(560px, 1.1fr);
  gap: 44px;
  align-items: start;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--color-accent-dark);
  font-weight: 700;
}

.shop-table-wrap {
  min-width: 0;
  overflow-x: auto;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-paper);
  box-shadow: var(--shadow-card);
}

.shop-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

.shop-table th,
.shop-table td {
  border-bottom: 1px solid var(--color-line);
  padding: 17px 18px;
  text-align: left;
  vertical-align: top;
}

.shop-table tr:last-child th,
.shop-table tr:last-child td {
  border-bottom: 0;
}

.shop-table th {
  width: 116px;
  background: #fbf1e7;
  color: var(--color-accent-dark);
  font-weight: 700;
}

.shop-table td {
  color: var(--color-muted);
}

.shop-table a {
  color: var(--color-accent-dark);
  font-weight: 700;
}

.site-footer {
  background: #1e1714;
  color: rgba(255, 255, 255, 0.8);
  padding: 34px 0;
}

.site-footer__inner {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  text-align: center;
}

.site-footer p {
  margin: 0 auto;
}

.bottom-call {
  position: fixed;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 90;
  display: none;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(65, 38, 24, 0.25);
  transition: transform 220ms ease, opacity 220ms ease;
}

.bottom-call span {
  font-weight: 700;
}

.bottom-call strong {
  font-size: 1.06rem;
  white-space: nowrap;
}

.bottom-call.bottom-call--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(84px);
}

.js.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 720ms ease, transform 720ms ease;
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 1100px) {
  .info-layout {
    grid-template-columns: 1fr;
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

@keyframes loadIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .site-header__inner {
    min-height: 92px;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 10px 0;
  }

  .site-nav {
    order: 3;
    width: 100%;
  }

  .hero {
    min-height: 530px;
  }

  .hero__title {
    font-size: 3.2rem;
  }

  .hero__subtitle {
    font-size: 1.22rem;
  }

  .info-layout {
    grid-template-columns: 1fr;
  }

  .menu-list li small br {
    display: none;
  }

}

@media (max-width: 760px) {
  body {
    padding-bottom: 76px;
  }

  .site-header__inner {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .site-logo img {
    width: 94px;
  }

  .header-call {
    padding-right: 14px;
    padding-left: 14px;
  }

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

  .site-nav {
    width: min(100%, 250px);
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 4px 8px;
    font-size: 0.75rem;
  }

  .hero {
    min-height: 500px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(25, 15, 12, 0.82) 0%, rgba(25, 15, 12, 0.54) 100%),
      linear-gradient(0deg, rgba(25, 15, 12, 0.38), rgba(25, 15, 12, 0.05) 42%);
  }

  .hero__inner,
  .section__inner,
  .site-footer__inner {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .hero__inner {
    padding: 58px 0 50px;
  }

  .hero__title {
    font-size: 2.72rem;
  }

  .hero__subtitle {
    margin-top: 16px;
    font-size: 1.1rem;
  }

  .hero__lead {
    font-size: 0.95rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .business-info__inner {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .business-info__item {
    padding: 13px 12px 14px;
  }

  .business-info__item dd {
    font-size: 0.9rem;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .section {
    padding: 70px 0;
  }

  .section h2 {
    font-size: 2rem;
  }

  .card-grid,
  .visit-list,
  .menu-list-grid {
    grid-template-columns: 1fr;
  }

  .hors-doeuvre-layout {
    grid-template-columns: 1fr;
  }

  .hors-doeuvre-list {
    grid-template-columns: 1fr;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hors-doeuvre-card h3 {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hors-doeuvre-actions {
    align-items: stretch;
  }

  .menu-list {
    grid-template-columns: 1fr;
    margin: 0;
  }

  .menu-list--fill-1::after,
  .menu-list--fill-2::before,
  .menu-list--fill-2::after {
    display: none;
  }

  .menu-list li,
  .menu-list li:nth-child(3n),
  .menu-list:not(.menu-list--fill-1):not(.menu-list--fill-2) li:nth-last-child(-n + 3),
  .menu-list--fill-1 li:nth-last-child(-n + 2),
  .menu-list--fill-2 li:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .menu-list:not(.menu-list--fill-1):not(.menu-list--fill-2) li:last-child,
  .menu-list--fill-1 li:last-child,
  .menu-list--fill-2 li:last-child {
    border-bottom: 0;
  }

  .menu-list-card h3 {
    padding-right: 16px;
    padding-left: 16px;
  }

  .menu-list-lead {
    padding-right: 16px;
    padding-left: 16px;
  }

  .menu-list-note {
    padding-right: 16px;
    padding-left: 16px;
  }

  .info-card,
  .visit-card {
    padding: 22px;
  }

  .menu-card__body {
    padding: 22px;
  }

  .shop-table th,
  .shop-table td {
    display: block;
    width: 100%;
    padding: 13px 14px;
  }

  .shop-table th {
    border-bottom: 0;
  }

  .shop-table td {
    padding-top: 0;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .bottom-call {
    display: inline-flex;
  }
}

@media (max-width: 390px) {
  .site-header__inner {
    align-items: flex-start;
  }

  .site-logo img {
    width: 84px;
  }

  .header-call {
    min-height: 46px;
    max-width: 176px;
  }

  .hero__title {
    font-size: 2.48rem;
  }

  .hero__subtitle {
    font-size: 1.02rem;
  }

  .section h2 {
    font-size: 1.82rem;
  }

  .bottom-call {
    right: 10px;
    left: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .hero__media img {
    transform: none !important;
  }

  .js.reveal-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
