/* ========================================
   鮮炙（せんじゃく）— okkon.jp layout
   ======================================== */

:root {
  --color-bg: #fff;
  --color-bg-gray: #f5f5f5;
  --color-text: #000;
  --color-text-muted: #555;
  --color-border: #ddd;
  --color-border-light: #eee;
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  --font-serif: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  --inner-max: 1180px;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

.l-inner {
  position: relative;
  width: 92.1875%;
  max-width: var(--inner-max);
  margin-inline: auto;
}

/* Header — okkon: absolute over video, solid on scroll */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  transition: background var(--transition), border-color var(--transition);
}

.header--solid {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--color-border-light);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding-block: 12px;
}

.header__logo a {
  display: block;
  line-height: 1.25;
  color: #fff;
  transition: color var(--transition);
}

.header--solid .header__logo a {
  color: var(--color-text);
}

.header__logo-sub {
  display: block;
  font-size: 11px;
  letter-spacing: 0.06em;
  opacity: 0.85;
}

.header__logo-main {
  display: block;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
}

.header__logo-ruby {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
}

.global-nav ul {
  display: flex;
  list-style: none;
}

.global-nav a {
  display: block;
  padding: 0.75em 1em;
  font-size: 14px;
  color: #fff;
  transition: background var(--transition), color var(--transition);
}

.header--solid .global-nav a {
  color: var(--color-text);
}

.global-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.header--solid .global-nav a:hover {
  background: rgba(0, 0, 0, 0.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.header--solid .nav-toggle span {
  background: var(--color-text);
}

.header__right {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 4px;
}

.lang-switch {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.lang-switch__item {
  padding: 4px 5px;
  opacity: 0.65;
  transition: opacity var(--transition);
}

.lang-switch__item:hover,
.lang-switch__item.is-current {
  opacity: 1;
  font-weight: 700;
}

.header:not(.header--solid) .lang-switch {
  color: #fff;
}

.lang-switch__sep {
  opacity: 0.45;
}

.header__reserve {
  flex-shrink: 0;
}

.header:not(.header--solid) .p-btn--header {
  color: #fff;
  background: transparent;
  border-color: #fff;
}

.header:not(.header--solid) .p-btn--header:hover {
  color: #000;
  background: #fff;
}

@media (max-width: 991px) {
  .header__inner {
    gap: 6px;
  }

  .header__logo {
    flex: 1 1 auto;
    min-width: 0;
  }

  .header__logo-sub {
    font-size: 9px;
    letter-spacing: 0.02em;
  }

  .header__logo-main {
    font-size: 17px;
  }

  .header__logo-ruby {
    font-size: 11px;
  }

  .header__right {
    flex-shrink: 0;
    gap: 2px;
  }

  .lang-switch {
    font-size: 10px;
  }

  .lang-switch__item {
    padding: 2px 4px;
  }

  .nav-toggle {
    display: flex;
    order: 3;
    flex-shrink: 0;
  }

  .header__reserve {
    order: 2;
  }

  .lang-switch {
    order: 1;
  }

  .header__reserve.p-btn--header {
    padding: 3px 8px;
    font-size: 10px;
  }

  .global-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 20px;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }

  body.nav-open .global-nav {
    transform: translateX(0);
  }

  .global-nav ul {
    flex-direction: column;
  }

  .global-nav a {
    color: var(--color-text);
    padding: 1em;
    border-bottom: 1px solid var(--color-border-light);
    font-size: 16px;
  }

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

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

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

@media (max-width: 480px) {
  .header__logo-sub {
    display: none;
  }

  .header__reserve .header__reserve-label--pc {
    display: none;
  }

  .header__reserve .header__reserve-label--sp {
    display: inline;
  }
}

@media (min-width: 481px) {
  .header__reserve .header__reserve-label--sp {
    display: none;
  }
}

@media (min-width: 992px) {
  .header__right {
    gap: 8px;
  }

  .global-nav {
    margin-left: 0;
  }
}

/* Hero video — okkon 16:9 */
.hero-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #000;
}

.hero-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(32px, 8vh, 72px);
  pointer-events: none;
}

.hero-video__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.hero-video__title--vertical span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.hero-video__title--horizontal {
  text-align: center;
  max-width: min(92%, 720px);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/* Index intro — p-index-content01 */
.index-intro {
  position: relative;
  margin-bottom: 30px;
  padding: 36px 0 40px;
  text-align: center;
  background: #000;
  color: #fff;
}

.index-intro__catch {
  font-family: var(--font-serif);
  font-size: clamp(14px, 2.8vw, 18px);
  font-weight: 600;
  line-height: 1.65;
  margin-bottom: 0.6rem;
}

.index-intro__title {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 0.6rem;
}

.index-intro__desc {
  font-family: var(--font-serif);
  font-size: clamp(13px, 2.2vw, 16px);
  font-weight: 600;
  line-height: 1.65;
  margin-bottom: 0.75rem;
  max-width: 720px;
  margin-inline: auto;
}

.index-intro__tagline {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

/* Index feature — p-index-content02 */
.index-feature {
  margin-bottom: 30px;
}

.index-feature__images {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.index-feature__images img {
  width: 50%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
}

@media (min-width: 768px) {
  .index-feature__images img {
    width: 25%;
  }
}

.index-feature__content {
  padding: 36px 25px 33px;
  background: var(--color-bg-gray);
  text-align: center;
}

@media (min-width: 768px) {
  .index-feature__content {
    padding: 51px 20px 49px;
  }
}

.index-feature__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}

.index-feature__desc {
  font-size: 14px;
  line-height: 2.6;
  color: var(--color-text-muted);
}

/* Tel block — okkon style */
.telblock {
  padding: 1em 0 40px;
  text-align: center;
  background: var(--color-bg-gray);
  line-height: 1.5;
}

.telblock__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.telblock__text {
  font-size: clamp(18px, 4vw, 27px);
  margin: 0;
}

.telblock__tel {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.telblock__tel:hover {
  opacity: 0.75;
}

.telblock__btn {
  margin: 0;
}

.telblock__btn .p-btn {
  min-width: 220px;
}

/* p-btn — okkon black button */
.p-btn {
  display: inline-block;
  min-width: 200px;
  max-width: 100%;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background: #000;
  border: 1px solid #000;
  transition: background var(--transition), color var(--transition);
}

.p-btn:hover {
  color: #000;
  background: #fff;
}

.p-btn.p-btn--header {
  min-width: auto;
  padding: 5px 12px;
  font-size: 11px;
  line-height: 1.3;
  white-space: nowrap;
}

.header__reserve-label--sp {
  display: none;
}

@media (max-width: 767px) {
  .telblock__btn .p-btn {
    display: block;
    width: 100%;
    max-width: 280px;
    line-height: 55px;
    padding: 0 15px;
  }
}

/* Index cards — p-index-content03 */
.index-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px 0;
  padding-block: 50px 70px;
}

.index-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 768px) {
  .index-card {
    width: 31%;
  }
}

.index-card__label {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.35em;
  margin-bottom: 12px;
  padding-left: 10px;
}

.index-card__label span {
  display: inline-block;
}

.index-card__img {
  display: block;
  overflow: hidden;
  margin-bottom: 16px;
}

.index-card__img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: opacity var(--transition);
}

.index-card__img:hover img {
  opacity: 0.85;
}

.index-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.index-card__desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.index-card__btn {
  margin-top: auto;
  padding-top: 8px;
  text-align: center;
}

.index-card__btn .p-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 250px;
  min-height: 48px;
  padding-block: 10px;
}

/* Index menu — p-index-content07 */
.index-menu {
  padding: 60px 0 70px;
  background: var(--color-bg-gray);
  text-align: center;
}

.index-menu__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.08em;
}

.index-menu__desc {
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

.index-menu__btn {
  text-align: center;
}

.index-menu__btn .p-btn {
  min-width: 220px;
}

.menu-list {
  display: grid;
  gap: 24px;
  text-align: left;
  margin-bottom: 24px;
}

.menu-item {
  background: #fff;
  border: 1px solid var(--color-border-light);
}

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

.menu-item__body {
  padding: 20px;
}

.menu-item__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.menu-item__price {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 0.35rem;
  color: var(--color-text-muted);
}

@media (min-width: 480px) {
  .menu-item__price {
    display: inline;
    margin-top: 0;
    margin-left: 0.75rem;
  }
}

.menu-item__text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.menu-note {
  font-size: 13px;
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .menu-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Index review */
.index-review {
  padding: 70px 0;
  text-align: center;
  border-top: 1px solid var(--color-border-light);
}

.index-review__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.index-review__desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

.index-review__btn .p-btn {
  min-width: 260px;
}

.index-review__hint {
  margin-top: 16px;
  font-size: 12px;
  color: #999;
}

/* Index access */
.index-access {
  padding: 70px 0;
  background: var(--color-bg-gray);
  border-top: 1px solid var(--color-border-light);
  --access-photo-gap: 12px;
}

.index-access__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.shop-info__row {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.shop-info__row dt {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.shop-info__row dd {
  font-size: 15px;
  line-height: 1.7;
}

.shop-info__row dd a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.hours-table th {
  text-align: left;
  font-weight: 500;
  padding: 4px 16px 4px 0;
  white-space: nowrap;
  color: var(--color-text-muted);
  width: 5em;
}

.hours-table td {
  padding: 4px 0;
}

.index-access__photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--access-photo-gap);
  margin-top: 40px;
}

.index-access__photo {
  margin: 0;
}

.index-access__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--color-border);
  background: #fff;
}

@media (min-width: 768px) {
  .index-access {
    --access-photo-gap: 16px;
  }
}

.index-access__map {
  margin-top: 30px;
  border: 1px solid var(--color-border);
  background: #fff;
}

.index-access__map iframe {
  width: 100%;
  height: 350px;
  display: block;
  border: 0;
}

@media (min-width: 768px) {
  .index-access__map iframe {
    height: 450px;
  }
}

.index-access__btn {
  text-align: center;
  margin-top: 30px;
}

/* Footer — okkon p-info */
.footer {
  padding: 50px 0 30px;
  background: #fff;
  border-top: 1px solid var(--color-border-light);
  text-align: center;
}

.footer__name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer__info {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: 24px;
}

.footer__info a:hover {
  text-decoration: underline;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin-bottom: 30px;
}

.footer-nav a {
  display: block;
  padding: 0.5em 1em;
  font-size: 13px;
  transition: opacity var(--transition);
}

.footer-nav a:hover {
  opacity: 0.6;
}

.footer__copy {
  font-size: 12px;
  color: #999;
}

/* Sub pages */
.page-sub .header--solid .header__logo a {
  color: var(--color-text);
}

.page-sub .header--solid .global-nav a {
  color: var(--color-text);
}

.global-nav a.is-current {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-hero {
  padding: 100px 0 50px;
  text-align: center;
  background: var(--color-bg-gray);
  border-bottom: 1px solid var(--color-border-light);
}

.page-hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-hero__lead {
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-text-muted);
}

.page-cta {
  padding: 50px 0 70px;
  text-align: center;
}

/* About page */
.about-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 70px;
}

.about-hero__media {
  position: absolute;
  inset: 0;
}

.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.about-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 80px 0;
}

.about-hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.about-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-hero__catch {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  line-height: 2;
  letter-spacing: 0.12em;
}

.about-quote {
  padding: 80px 0 60px;
  text-align: center;
}

.about-quote__text {
  margin: 0 0 1.5rem;
}

.about-quote__text p {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.7;
}

.about-quote__desc {
  max-width: 640px;
  margin-inline: auto;
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-muted);
}

.about-quote__tagline {
  margin-top: 2rem;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
}

.about-story {
  padding: 20px 0 70px;
  background: var(--color-bg-gray);
}

.about-story__item {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid var(--color-border);
}

.about-story__item:last-child {
  border-bottom: 0;
}

.about-story__num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: #ddd;
}

.about-story__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-story__body p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.about-story__body p:last-child {
  margin-bottom: 0;
}

.about-story__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--color-border-light);
}

@media (min-width: 768px) {
  .about-story__item {
    grid-template-columns: 80px 1fr 42%;
    gap: 40px;
  }

  .about-story__item--reverse {
    grid-template-columns: 80px 42% 1fr;
  }

  .about-story__item--reverse .about-story__body {
    order: 3;
  }

  .about-story__item--reverse .about-story__photo {
    order: 2;
  }
}

.u-sp-only {
  display: inline;
}

@media (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}

/* Menu page */
.menu-nav {
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border-light);
  position: sticky;
  top: 70px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
}

.menu-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  list-style: none;
  justify-content: center;
}

.menu-nav a {
  display: block;
  padding: 6px 14px;
  font-size: 13px;
  border: 1px solid var(--color-border);
  transition: background var(--transition), color var(--transition);
}

.menu-nav a:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.menu-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.menu-section--gray {
  background: var(--color-bg-gray);
}

.menu-section__head {
  text-align: center;
  margin-bottom: 32px;
}

.menu-section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.menu-section__lead {
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-text-muted);
  max-width: 640px;
  margin-inline: auto;
}

.menu-section__visual {
  margin-bottom: 36px;
  max-width: 720px;
  margin-inline: auto;
}

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

.menu-section__group {
  margin-bottom: 32px;
}

.menu-section__group:last-child {
  margin-bottom: 0;
}

.menu-section__subtitle {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.menu-price-list {
  list-style: none;
}

.menu-price-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px 16px;
  padding: 12px 0;
  border-bottom: 1px dotted var(--color-border-light);
  font-size: 15px;
  line-height: 1.6;
}

.menu-price-list__name {
  flex: 1;
  min-width: 180px;
}

.menu-price-list__name small {
  display: block;
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-top: 2px;
}

.menu-price-list__price {
  white-space: nowrap;
  font-weight: 500;
}

.menu-price-list__price small {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-muted);
}

.menu-section__note,
.menu-page-note {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: 24px;
}

.menu-page-note {
  padding-bottom: 40px;
  text-align: center;
}

.menu-pages-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  max-width: 920px;
  margin-inline: auto;
}

.menu-pages-grid__item {
  margin: 0;
}

.menu-pages-grid__item img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--color-border-light);
  background: #fff;
}

.menu-pages-grid__item--wide {
  grid-column: 1 / -1;
  width: calc((100% - 20px) / 2);
  max-width: calc((100% - 20px) / 2);
  margin-inline: auto;
}

@media (max-width: 640px) {
  .menu-pages-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .menu-pages-grid__item--wide {
    width: 100%;
    max-width: none;
  }
}

/* Banquet courses — horizontal washi layout */
.course-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 960px;
  margin-inline: auto;
}

.course-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 20px;
  background-color: #f2ede4;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.55) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(0, 0, 0, 0.03) 0%, transparent 40%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
}

.course-card__photo {
  flex: 0 0 auto;
  margin: 0;
}

.course-card__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.course-card__content {
  flex: 1;
  min-width: 0;
}

.course-card__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 16px;
  padding: 10px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin-bottom: 14px;
}

.course-card__name {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 2.6vw, 1.15rem);
  font-weight: 700;
  line-height: 1.5;
}

.course-card__price {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.78rem, 2vw, 0.92rem);
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
}

.course-card__price small {
  font-size: 0.9em;
  font-weight: 400;
}

.course-card__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 2.15;
}

.course-card__cat {
  display: inline-block;
  width: 5.5em;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.course-card__lead {
  margin: 0;
  font-size: 14px;
  line-height: 2.15;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .course-card {
    flex-direction: row;
    align-items: center;
    gap: 28px;
    padding: 28px 32px;
  }

  .course-card__photo {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .course-card__content {
    flex: 1;
  }
}

/* Nomihodai (all-you-can-drink) menu table */
.nomihodai-box {
  max-width: 960px;
  margin-inline: auto;
  padding: 24px 20px 28px;
  background-color: #f2ede4;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.55) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(0, 0, 0, 0.03) 0%, transparent 40%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
}

.nomihodai-box__label {
  display: inline-block;
  margin: 0 0 16px;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  background: #fce8ea;
  border-radius: 4px;
}

.nomihodai-box__subtitle {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.6vw, 1.15rem);
  font-weight: 700;
  line-height: 1.5;
}

.nomihodai-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.75;
  background: #fff;
}

.nomihodai-table th,
.nomihodai-table td {
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  vertical-align: top;
  text-align: left;
}

.nomihodai-table th {
  width: 7.5em;
  font-weight: 700;
  white-space: nowrap;
  background: var(--color-bg-gray);
}

.nomihodai-table--price {
  max-width: 360px;
  margin-bottom: 20px;
}

.nomihodai-table td small {
  font-size: 0.85em;
  font-weight: 400;
}

@media (max-width: 767px) {
  .nomihodai-table,
  .nomihodai-table tbody,
  .nomihodai-table tr,
  .nomihodai-table th,
  .nomihodai-table td {
    display: block;
    width: 100%;
  }

  .nomihodai-table tr {
    border-bottom: 1px solid var(--color-border);
  }

  .nomihodai-table tr:last-child {
    border-bottom: 0;
  }

  .nomihodai-table th {
    border-bottom: 0;
    padding-bottom: 6px;
    background: transparent;
  }

  .nomihodai-table td {
    border-top: 0;
    padding-top: 0;
  }
}
