/* Foundation
-------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

.p-menu-page {
  background: #050403;
}

.p-menu-page__hero {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 10vw, 150px) 0 clamp(70px, 8vw, 110px);
  border-bottom: 1px solid rgba(184, 154, 79, 0.28);
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.2), rgba(5, 4, 3, 0.1)),
    url("../images/menu-top.jpg") right center / cover no-repeat;
  background-attachment: fixed;
}

.p-menu-page__hero::before {
  position: absolute;
  inset: 24px;
  content: "";
  border: 1px solid rgba(184, 154, 79, 0.58);
  pointer-events: none;
}

.p-menu-page__hero-inner {
  position: relative;
  z-index: 1;
  padding-inline: clamp(24px, 4vw, 48px);
}

.p-menu-page__hero .c-heading__en,
.p-menu-page__title,
.p-menu-page__lead {
  color: #fff;
}

.p-menu-page__title {
  font-family: var(--font-mincho);
  font-size: clamp(22px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.28;
  white-space: nowrap;
}

.p-menu-page__lead {
  max-width: 620px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 2;
}

.p-menu-page__hero-decoration {
  width: min(460px, 72%);
  margin-top: 30px;
  opacity: 0.84;
}

.p-menu-page__nav {
  position: sticky;
  top: 96px;
  z-index: 10;
  background: rgba(5, 4, 3, 0.92);
  border-bottom: 1px solid rgba(184, 154, 79, 0.24);
  backdrop-filter: blur(10px);
}

.p-menu-page__nav-list {
  display: flex;
  gap: 0;
  overflow-x: auto;
}

  .p-menu-page__nav-link {
  display: block;
  padding: 18px clamp(18px, 3vw, 34px);
  color: var(--color-white);
  font-family: var(--font-mincho);
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.p-menu-page__nav-link:hover {
  color: #b48200;
}

.p-menu-page__section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 130px) 0 0;
}

.p-menu-page__section#drink {
  padding-bottom: clamp(72px, 9vw, 130px);
}

.p-menu-page__section::before {
  position: absolute;
  top: clamp(28px, 5vw, 72px);
  right: max(20px, calc((100vw - 1200px) / 2));
  width: min(360px, 36vw);
  height: 42px;
  content: "";
  background: url("../images/ashirai3.png") center/contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.p-menu-page__section-head {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.p-menu-page__heading {
  color: var(--color-white);
  font-family: var(--font-mincho);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.p-menu-page__summary {
  color: var(--color-ink);
  font-size: 15px;
  line-height: 2;
}

.p-menu-page__note {
  color: #b48200;
  font-family: var(--font-mincho);
  font-size: 15px;
  line-height: 1.8;
}

.p-menu-page__lunch-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 70px);
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(184, 154, 79, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(234, 223, 203, 0.18)), rgba(244, 239, 228, 0.64);
}

.p-menu-page__lunch-price {
  color: #b48200;
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
}

.p-menu-page__lunch-tax {
  display: inline-block;
  margin-left: 6px;
  font-family: var(--font-mincho);
  font-size: 0.38em;
  letter-spacing: 0.04em;
  vertical-align: 0.18em;
}

.p-menu-page__lunch-time {
  margin-top: 18px;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 18px;
}

.p-menu-page__set {
  margin-top: 22px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 2;
}

.p-menu-page__lunch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.p-menu-page__lunch-card {
  position: relative;
  padding: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(234, 223, 203, 0.18)), rgba(244, 239, 228, 0.64);
  border: 1px solid rgba(184, 154, 79, 0.2);
}

.p-menu-page__lunch-mark {
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1;
}

.p-menu-page__lunch-name {
  margin-top: 12px;
  color: var(--color-white);
  font-family: var(--font-mincho);
  font-size: 21px;
  line-height: 1.5;
}

.p-menu-page__lunch-text {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.8;
}
.p-menu-page__lunch-news {
  margin-top: clamp(22px, 3vw, 34px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(184, 154, 79, 0.28);
  background: rgba(244, 239, 228, 0.92);
}
.p-menu-page__lunch-news-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}
.p-menu-page__lunch-news-date {
  color: #b48200;
  font-family: var(--font-serif);
  font-size: 15px;
}
.p-menu-page__lunch-news-title {
  margin-top: 12px;
  color: var(--color-ink);
  font-family: var(--font-mincho);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.5;
}
.p-menu-page__lunch-news-title a {
  color: inherit;
}
.p-menu-page__lunch-news-content {
  margin-top: 16px;
  color: var(--color-ink);
  font-size: 15px;
  line-height: 1.9;
}
.p-menu-page__lunch-news-content > * + * {
  margin-top: 1em;
}

.p-menu-page__pending {
  color: rgba(245, 240, 232, 0.58);
}

.p-menu-page__category {
  position: relative;
  margin-top: clamp(42px, 6vw, 78px);
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(184, 154, 79, 0.16);
  background: linear-gradient(135deg, rgba(184, 154, 79, 0.045), transparent 34%), rgba(255, 255, 255, 0.012);
}

.p-menu-page__category:first-of-type {
  margin-top: 0;
}

.p-menu-page__category::before,
.p-menu-page__category::after {
  position: absolute;
  z-index: 1;
  width: 54px;
  height: 54px;
  content: "";
  background: url("../images/ashirai1.png") left top/contain no-repeat;
  opacity: 0.34;
  pointer-events: none;
}

.p-menu-page__category::before {
  top: -1px;
  left: -1px;
}

.p-menu-page__category::after {
  right: -1px;
  bottom: -1px;
  transform: rotate(180deg);
}

.p-menu-page__category--with-image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 34%);
  column-gap: clamp(24px, 4vw, 54px);
  row-gap: 0;
  align-items: start;
}

.p-menu-page__category-title {
  position: relative;
  display: grid;
  grid-template-columns: max-content max-content minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 18px;
  color: #b48200;
  font-family: var(--font-mincho);
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 500;
}

.p-menu-page__category-title::before {
  grid-column: 1;
  width: min(300px, 100%);
  height: 22px;
  margin: 8px 0 0;
  content: "";
  background: url("../images/ashirai2.png") left center/contain no-repeat;
  opacity: 0.48;
}

.p-menu-page__category--with-image .p-menu-page__category-title {
  grid-column: 1 / -1;
}

.p-menu-page__category-title::after {
  grid-column: 3;
  grid-row: 1 / 3;
  height: 1px;
  content: "";
  background: rgba(184, 154, 79, 0.32);
}

.p-menu-page__category-title-main,
.p-menu-page__category-title-en {
  grid-column: 1;
}

.p-menu-page__category-title-main {
  grid-row: 1;
}

.p-menu-page__category-title-en {
  grid-row: 2;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.p-menu-page__category-time {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: #b48200;
  font-family: var(--font-mincho);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

.p-menu-page__category-media {
  position: relative;
  grid-column: 2;
  grid-row: 2 / span 2;
  margin: 12px 0 0;
  padding: 8px;
  border: 1px solid rgba(184, 154, 79, 0.42);
  background: rgba(255, 255, 255, 0.035);
}

.p-menu-page__category-media::before,
.p-menu-page__category-media::after {
  position: absolute;
  width: 34px;
  height: 34px;
  content: "";
  pointer-events: none;
}

.p-menu-page__category-media::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--color-gold);
  border-left: 2px solid var(--color-gold);
}

.p-menu-page__category-media::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
}

.p-menu-page__category-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.p-menu-page__category-media figcaption {
  margin-top: 10px;
  color: #b48200;
  font-family: var(--font-mincho);
  font-size: 15px;
  text-align: center;
}

.p-menu-page__table {
  --menu-price-width: clamp(96px, 12vw, 150px);
  grid-column: 1;
  width: 100%;
  margin-top: 12px;
  border-collapse: collapse;
  table-layout: fixed;
}

.p-menu-page__table--drink {
  display: block;
  grid-column: auto;
}

.p-menu-page__table--drink thead {
  display: none;
}

.p-menu-page__table--drink tbody {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: none;
  grid-auto-flow: row;
  column-gap: 0;
}

.p-menu-page__table--drink tr {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--menu-price-width);
  align-items: center;
}

.p-menu-page__drink-heading {
  display: grid;
}

.p-menu-page__drink-category {
  grid-template-columns: 1fr;
  margin-top: 26px;
}

.p-menu-page__drink-category:first-child {
  margin-top: 0;
}

.p-menu-page__drink-category th {
  width: 100% !important;
  padding: 20px 12px 12px;
  color: #b48200;
  font-family: var(--font-mincho);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  text-align: left !important;
  border-bottom-color: rgba(184, 154, 79, 0.36);
}

.p-menu-page__table--drink .p-menu-page__drink-category th {
  font-size: clamp(22px, 2.4vw, 28px);
}

.p-menu-page__drink-category-en {
  display: inline-block;
  margin-left: 14px;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  vertical-align: 0.08em;
}

.p-menu-page__drink-option {
  display: inline-block;
  margin-left: 0.6em;
  color: var(--color-gold);
  font-size: 0.9em;
}

.p-menu-page__drink-subcategory {
  grid-template-columns: 1fr;
  margin-top: 12px;
  margin-left: clamp(12px, 3vw, 28px);
}

.p-menu-page__drink-subcategory th {
  width: 100% !important;
  padding: 12px 12px 8px;
  color: rgba(214, 189, 116, 0.9);
  font-family: var(--font-mincho);
  font-size: 15px;
  font-weight: 500;
  text-align: left !important;
  border-bottom-color: rgba(184, 154, 79, 0.24);
}

.p-menu-page__drink-subcategory span {
  display: inline-block;
  margin-right: 0.75em;
  color: rgba(245, 240, 232, 0.58);
  font-family: var(--font-serif);
  font-size: 0.78em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.p-menu-page__drink-child {
  padding-left: clamp(24px, 5vw, 48px);
}

.p-menu-page__drink-child .p-menu-page__name {
  color: rgba(245, 240, 232, 0.86);
}

.p-menu-page__drink-subcategory .p-menu-page__drink-subnote {
  color: inherit;
  font-size: 0.82em;
}

.p-menu-page__drink-note {
  font-size: 0.82em;
}

.p-menu-page__table th:last-child,
.p-menu-page__table td:last-child {
  width: var(--menu-price-width);
  text-align: right;
}

.p-menu-page__table th,
.p-menu-page__table td {
  padding: 17px 12px;
  border-bottom: 1px solid rgba(184, 154, 79, 0.18);
  vertical-align: middle;
}

.p-menu-page__table th {
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
}

.p-menu-page__table td {
  color: var(--color-muted);
  font-size: 16px;
}

.p-menu-page__tax {
  display: inline-block;
  margin-left: 2px;
  font-size: 0.78em;
  letter-spacing: 0.04em;
}

.p-menu-page__price {
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 18px;
  white-space: nowrap;
}

.p-menu-page__name {
  color: var(--color-muted);
  font-family: var(--font-mincho);
  font-size: 18px;
}

.p-menu-page__table td.p-menu-page__name {
  color: var(--color-muted);
  font-size: 18px;
}

.p-menu-page__table td.p-menu-page__price {
  font-size: 18px;
}

.p-menu-page__chinese {
  display: block;
  margin-bottom: 4px;
  color: rgba(214, 189, 116, 0.84);
  font-family: var(--font-mincho);
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
}

.p-menu-page__name-text {
  display: block;
  color: var(--color-muted);
}

.p-menu-page__drink-box {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(184, 154, 79, 0.28);
  background: linear-gradient(135deg, rgba(126, 17, 24, 0.28), rgba(255, 255, 255, 0.02));
}

@media (max-width: 1024px) {
  .p-menu-page__nav {
    top: auto;
  }

  .p-menu-page__section-head,
  .p-menu-page__lunch-panel {
    grid-template-columns: 1fr;
  }

  .p-menu-page__category--with-image {
    grid-template-columns: 1fr;
  }

  .p-menu-page__category-media,
  .p-menu-page__category--with-image .p-menu-page__table,
  .p-menu-page__category--with-image .p-menu-page__note {
    grid-column: 1;
  }

  .p-menu-page__category-media {
    grid-row: auto;
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 767px) {
  .p-menu-page__hero::before {
    inset: 16px;
  }

.p-menu-page__nav-link {
    padding: 10px 12px;
    font-size: 13px;
  }

  .p-menu-page__nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px 6px;
    overflow-x: visible;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .p-menu-page__category {
    padding: clamp(16px, 4.8vw, 22px);
  }

  .p-menu-page__category-title {
    grid-template-columns: minmax(0, 1fr);
  }

  .p-menu-page__category-title::after {
    display: none;
  }

  .p-menu-page__category-title::before {
    width: min(260px, 100%);
  }

  .p-menu-page__category-title-en {
    overflow-wrap: anywhere;
  }

  .p-menu-page__category-time {
    grid-column: 1;
    grid-row: 3;
    margin-top: 8px;
  }

  .p-menu-page__lunch-grid {
    grid-template-columns: 1fr;
  }

  .p-menu-page__table {
    --menu-price-width: clamp(106px, 30vw, 118px);
    display: table;
    overflow-x: visible;
    white-space: normal;
  }

  .p-menu-page__table th:last-child {
    white-space: nowrap;
  }

  .p-menu-page__table--drink tbody {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    width: 100%;
  }

  .p-menu-page__table--drink {
    display: block;
    width: 100%;
  }

  .p-menu-page__table--drink tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--menu-price-width);
    align-items: end;
    width: 100%;
  }

  .p-menu-page__table--drink td.p-menu-page__name {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: keep-all;
  }

  .p-menu-page__table--drink td.p-menu-page__price {
    align-self: end;
    justify-self: end;
    white-space: nowrap;
  }

  .p-menu-page__drink-note {
    display: block;
    margin-top: 2px;
    line-height: 1.4;
    white-space: normal;
  }

  .p-menu-page__drink-child {
    margin-left: 0;
  }

  .p-menu-page__drink-child .p-menu-page__name {
    padding-left: 0;
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .p-menu-page__drink-child .p-menu-page__price {
    width: auto;
  }

  .p-menu-page__table--drink .p-menu-page__drink-heading--secondary {
    display: none !important;
  }

  .p-menu-page__table th,
  .p-menu-page__table td {
    padding: 14px 6px;
  }

  .p-menu-page__table td.p-menu-page__name,
  .p-menu-page__table td.p-menu-page__price {
    font-size: 16px;
  }

  .p-menu-page__chinese {
    font-size: 12px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .p-menu-page__name-text {
    overflow-wrap: anywhere;
  }
}

.p-banquet-page {
  background: #050403;
}

.p-banquet-page__hero {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 10vw, 150px) 0 clamp(70px, 8vw, 112px);
  border-bottom: 1px solid rgba(184, 154, 79, 0.28);
  background: linear-gradient(90deg, rgba(5, 4, 3, 0.2), rgba(5, 4, 3, 0.1)), url("../images/enkai-menu.jpg") right center/cover no-repeat;
  background-attachment: fixed;
}

.p-banquet-page__hero::before {
  position: absolute;
  inset: 24px;
  content: "";
  border: 1px solid rgba(184, 154, 79, 0.58);
  pointer-events: none;
}

.p-banquet-page__hero-inner {
  position: relative;
  z-index: 1;
  padding-inline: clamp(24px, 4vw, 48px);
}

.p-banquet-page__hero .c-heading__en,
.p-banquet-page__title,
.p-banquet-page__title-small,
.p-banquet-page__lead {
  color: #fff;
}

.p-banquet-page__title {
  max-width: 900px;
  font-family: var(--font-mincho);
  font-size: clamp(22px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
}

.p-banquet-page__title-small {
  display: block;
  margin-top: 10px;
  font-size: clamp(20px, 2.5vw, 32px);
}

.p-banquet-page__lead {
  max-width: 620px;
  margin-top: 24px;
  font-size: 16px;
  line-height: 2;
}

.p-banquet-page__hero-decoration {
  width: min(460px, 72%);
  margin-top: 30px;
  opacity: 0.82;
}

.p-banquet-page__course-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 130px) 0;
}

.p-banquet-page__course-section::before {
  position: absolute;
  top: clamp(28px, 5vw, 72px);
  right: max(20px, calc((100vw - 1200px) / 2));
  width: min(360px, 36vw);
  height: 42px;
  content: "";
  background: url("../images/ashirai3.png") center/contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.p-banquet-page__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.p-banquet-page__heading {
  color: var(--color-white);
  font-family: var(--font-mincho);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 500;
  line-height: 1;
}

.p-banquet-page__text {
  margin-top: 22px;
  color: var(--color-ink);
  font-size: 15px;
  line-height: 2.1;
}

.p-banquet-page__image {
  position: relative;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(184, 154, 79, 0.42);
  background: rgba(255, 255, 255, 0.035);
}

.p-banquet-page__image::before,
.p-banquet-page__image::after {
  position: absolute;
  width: 56px;
  height: 56px;
  content: "";
  background: url("../images/ashirai1.png") left top/contain no-repeat;
  opacity: 0.48;
  pointer-events: none;
}

.p-banquet-page__image::before {
  top: -1px;
  left: -1px;
}

.p-banquet-page__image::after {
  right: -1px;
  bottom: -1px;
  transform: rotate(180deg);
}

.p-banquet-page__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.p-banquet-page__course-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
  margin-top: clamp(36px, 5vw, 62px);
}

.p-banquet-page__course-card {
  position: relative;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(184, 154, 79, 0.58);
  background: linear-gradient(135deg, rgba(184, 154, 79, 0.055), transparent 36%), rgba(255, 255, 255, 0.018);
}

.p-banquet-page__course-card::before {
  display: block;
  width: min(300px, 100%);
  height: 22px;
  margin-bottom: 18px;
  content: "";
  background: url("../images/ashirai2.png") left center/contain no-repeat;
  opacity: 0.52;
}

.p-banquet-page__course-name {
  color: var(--color-white);
  font-family: var(--font-mincho);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.35;
}

.p-banquet-page__course-price {
  margin-top: 18px;
  color: #b48200;
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.15;
}

.p-banquet-page__course-price span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-muted);
  font-family: var(--font-mincho);
  font-size: 15px;
  font-weight: 500;
}

.p-banquet-page__course-price .p-banquet-page__course-tax {
  display: inline-block;
  margin: 0 0 0 6px;
  color: #b48200;
  font-size: 0.38em;
  letter-spacing: 0.04em;
  vertical-align: 0.18em;
}

.p-banquet-page__course-note {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.9;
}

.p-banquet-page__benefit {
  margin-top: 28px;
  padding: 16px 22px;
  border: 1px solid rgba(184, 154, 79, 0.36);
  color: #b48200;
  font-family: var(--font-mincho);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.8;
  background: rgba(184, 154, 79, 0.08);
}

.p-banquet-page__notice {
  margin-top: 16px;
  padding: 18px 22px;
  border-left: 1px solid rgba(184, 154, 79, 0.58);
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.9;
  background: rgba(126, 17, 24, 0.14);
}

@media (max-width: 1024px) {
  .p-banquet-page__intro {
    grid-template-columns: 1fr;
  }

  .p-banquet-page__image {
    max-width: 620px;
  }
}

@media (max-width: 767px) {
  .p-banquet-page__hero::before {
    inset: 16px;
  }

  .p-banquet-page__title {
    font-size: clamp(22px, 6.4vw, 32px);
  }

  .p-banquet-page__course-grid {
    grid-template-columns: 1fr;
  }

}
.p-news-page {
  background: #050403;
}

.p-news-page__hero {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 10vw, 150px) 0 clamp(70px, 8vw, 112px);
  border-bottom: 1px solid rgba(184, 154, 79, 0.28);
  background: linear-gradient(90deg, rgba(5, 4, 3, 0.2), rgba(5, 4, 3, 0.1)), url("../images/news-top.JPG") right bottom/cover no-repeat;
  background-attachment: fixed;
}

.p-news-page__hero::before {
  position: absolute;
  inset: 24px;
  content: "";
  border: 1px solid rgba(184, 154, 79, 0.58);
  pointer-events: none;
}

.p-news-page__hero-inner {
  position: relative;
  z-index: 1;
  padding-inline: clamp(24px, 4vw, 48px);
}

.p-news-page__hero .c-heading__en,
.p-news-page__title,
.p-news-page__lead {
  color: #fff;
}

.p-news-page__title {
  font-family: var(--font-mincho);
  font-size: clamp(22px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.28;
  white-space: nowrap;
}

.p-news-page__lead {
  max-width: 620px;
  margin-top: 24px;
  font-size: 16px;
  line-height: 2;
}

.p-news-page__hero-decoration {
  width: min(460px, 72%);
  margin-top: 30px;
  opacity: 0.82;
}

.p-news-page__section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 130px) 0;
}

.p-news-page__section::before {
  position: absolute;
  top: clamp(28px, 5vw, 72px);
  right: max(20px, calc((100vw - 1200px) / 2));
  width: min(360px, 36vw);
  height: 42px;
  content: "";
  background: url("../images/ashirai3.png") center/contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.p-news-page__head {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.p-news-page__heading {
  color: var(--color-white);
  font-family: var(--font-mincho);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.p-news-page__summary {
  color: var(--color-ink);
  font-size: 15px;
  line-height: 2;
}

.p-news-page__list {
  display: grid;
  gap: 0;
  background: rgba(244, 239, 228, 0.95);
  border: 1px solid rgba(184, 154, 79, 0.28);
}

.p-news-page__item {
  position: relative;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) auto;
  align-items: center;
  padding: 15px 30px;
  border-bottom: 1px solid rgba(184, 154, 79, 0.28);
}

.p-news-page__item--single {
  padding: 50px 50px;
  background: rgba(244, 239, 228, 0.95);
  border: 1px solid rgba(184, 154, 79, 0.28);
}

.p-news-page__item-link {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  grid-column: 1 / -1;
  width: 100%;
}

.p-news-page__item::before,
.p-news-page__item::after {
  content: none;
}

.p-news-page__list .p-news-page__item::before,
.p-news-page__list .p-news-page__item::after {
  position: absolute;
  z-index: 1;
  width: 44px;
  height: 44px;
  content: "";
  background: url("../images/ashirai1.png") left top/contain no-repeat;
  opacity: 0.26;
  pointer-events: none;
}

.p-news-page__list .p-news-page__item::before {
  top: -1px;
  left: -1px;
}

.p-news-page__list .p-news-page__item::after {
  right: -1px;
  bottom: -1px;
  transform: rotate(180deg);
}

.p-news-page__date {
  color: #b48200;
  font-family: var(--font-serif);
  font-size: 18px;
  white-space: nowrap;
}

.p-news-page__content {
  min-width: 0;
}

.p-news-page__category {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 0;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--color-gold);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}
.p-news-page__category--lunch {
  background: #b8442d;
}

.p-news-page__title-link {
  display: inline;
  padding-left: 0;
  color: var(--color-ink);
  font-family: var(--font-mincho);
  font-size: 18px;
  line-height: 1.55;
}

.p-news-page__text {
  margin-top: 10px;
  color: var(--color-ink);
  font-size: 14px;
  line-height: 1.9;
}

.p-news-page__article,
.p-news-page__article p,
.p-news-page__article .wp-block-paragraph {
  color: var(--color-ink);
}

.p-news-page__arrow {
  display: inline-block;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 22px;
  transition: transform 0.28s ease, color 0.28s ease;
}

.p-news-page__item:hover .p-news-page__arrow {
  color: #b48200;
  transform: translateX(8px);
}

.p-news-page__foot {
  margin-top: clamp(34px, 5vw, 58px);
  text-align: center;
}

.p-news-page__item--single ~ .p-news-page__foot .c-button--outline {
  width: 250px;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .p-news-page__head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .p-news-page__hero::before {
    inset: 16px;
  }

  .p-news-page__heading {
    white-space: normal;
  }

  .p-news-page__item {
    padding: 15px 30px;
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
  }

  .p-news-page__item--single {
    padding: 50px 50px;
  }

  .p-news-page__item-link {
    grid-template-columns: 1fr auto;
    gap: 8px 0;
  }

  .p-news-page__date,
  .p-news-page__content {
    grid-column: 1;
  }

  .p-news-page__arrow {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: end;
  }
}

.p-access-page {
  background: #050403;
}

.p-access-page__hero {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 10vw, 150px) 0 clamp(70px, 8vw, 112px);
  border-bottom: 1px solid rgba(184, 154, 79, 0.28);
  background: linear-gradient(90deg, rgba(5, 4, 3, 0.2), rgba(5, 4, 3, 0.1)), url("../images/access-hero.jpg") center bottom/cover no-repeat;
  background-attachment: fixed;
}

.p-access-page__hero::before {
  position: absolute;
  inset: 24px;
  content: "";
  border: 1px solid rgba(184, 154, 79, 0.58);
  pointer-events: none;
}

.p-access-page__hero-inner {
  position: relative;
  z-index: 1;
  padding-inline: clamp(24px, 4vw, 48px);
}

.p-access-page__hero .c-heading__en,
.p-access-page__title,
.p-access-page__lead {
  color: #fff;
}

.p-access-page__title {
  font-family: var(--font-mincho);
  font-size: clamp(22px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.28;
  white-space: nowrap;
}

.p-access-page__lead {
  max-width: 660px;
  margin-top: 24px;
  font-size: 16px;
  line-height: 2;
}

.p-access-page__hero-decoration {
  width: min(460px, 72%);
  margin-top: 30px;
  opacity: 0.82;
}

.p-access-page__section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 130px) 0;
}

.p-access-page__section + .p-access-page__section {
  padding-top: clamp(28px, 4vw, 56px);
}

.p-access-page__section::before {
  position: absolute;
  top: clamp(28px, 5vw, 72px);
  right: max(20px, calc((100vw - 1200px) / 2));
  width: min(360px, 36vw);
  height: 42px;
  content: "";
  background: url("../images/ashirai3.png") center/contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.p-access-page__head {
  color: var(--color-ink);
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.p-access-page__heading {
  color: var(--color-white);
  font-family: var(--font-mincho);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.p-access-page__summary {
  color: var(--color-ink);
  font-size: 15px;
  line-height: 2;
}

.p-access-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: stretch;
}

.p-access-page__panel {
  position: relative;
  display: grid;
  align-content: center;
  height: 100%;
  padding: clamp(24px, 3.2vw, 38px);
  border: 1px solid rgba(184, 154, 79, 0.22);
  background: linear-gradient(135deg, rgba(184, 154, 79, 0.045), transparent 34%), rgba(255, 255, 255, 0.012);
}

.p-access-page__panel::before,
.p-access-page__panel::after {
  position: absolute;
  z-index: 1;
  width: 54px;
  height: 54px;
  content: "";
  background: url("../images/ashirai1.png") left top/contain no-repeat;
  opacity: 0.34;
  pointer-events: none;
}

.p-access-page__panel::before {
  top: -1px;
  left: -1px;
}

.p-access-page__panel::after {
  right: -1px;
  bottom: -1px;
  transform: rotate(180deg);
}

.p-access-page__table {
  width: 100%;
  border-collapse: collapse;
}

.p-access-page__table th,
.p-access-page__table td {
  padding: 18px 14px;
  border-bottom: 1px solid rgba(184, 154, 79, 0.18);
  vertical-align: top;
}

.p-access-page__table tr:last-child th,
.p-access-page__table tr:last-child td {
  border-bottom: 0;
}

.p-access-page__table th {
  width: 150px;
  color: #b48200;
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.p-access-page__table td {
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.9;
}

.p-access-page__latin {
  font-family: var(--font-serif);
  font-size: 18px;
}

.p-access-page__payment {
  display: grid;
  gap: 12px;
}

.p-access-page__payment-group {
  display: grid;
  gap: 6px;
}

.p-access-page__payment-group + .p-access-page__payment-group {
  padding-top: 12px;
  border-top: 1px solid rgba(184, 154, 79, 0.24);
}

.p-access-page__payment-label {
  color: #b48200;
  font-family: var(--font-mincho);
  font-size: 15px;
  line-height: 1.5;
}

.p-access-page__payment-text {
  color: var(--color-white);
  font-size: 15px;
  line-height: 1.8;
}

.p-access-page__media {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
  height: 100%;
}

.p-access-page__photo {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(184, 154, 79, 0.42);
  background: rgba(255, 255, 255, 0.035);
}

.p-access-page__photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.p-access-page__photo figcaption {
  margin-top: 10px;
  color: #b48200;
  font-family: var(--font-mincho);
  font-size: 15px;
  text-align: center;
}

.p-access-page__map-wrap {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(184, 154, 79, 0.28);
  overflow: hidden;
}

.p-access-page__map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.p-access-page__map-button {
  position: absolute;
  right: 22px;
  bottom: 22px;
  white-space: nowrap;
}

.p-access-page__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
}

@media (max-width: 1024px) {
  .p-access-page__head,
  .p-access-page__layout {
    grid-template-columns: 1fr;
  }

  .p-access-page__media {
    grid-template-rows: none;
    height: auto;
  }

  .p-access-page__photo img {
    height: auto;
    aspect-ratio: 4/3;
  }
}

@media (max-width: 767px) {
  .p-access-page__hero::before {
    inset: 16px;
  }

  .p-access-page__heading {
    white-space: normal;
  }

  .p-access-page__panel {
    padding: 22px 12px;
  }

.p-access-page__table th,
.p-access-page__table td {
  display: block;
  width: 100%;
  padding: 12px 6px;
  text-align: center;
}

  .p-access-page__table th {
    padding-bottom: 2px;
    border-bottom: 0;
  }

  .p-access-page__hours-close {
    display: block;
  }

  .p-access-page__gallery {
    grid-template-columns: 1fr;
  }

  .p-access-page__map-button {
    right: 50%;
    min-width: 220px;
    transform: translateX(50%);
  }
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
dl,
dd,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

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

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

:root {
  --color-black: #050403;
  --color-ink: #0d0b09;
  --color-charcoal: #17120f;
  --color-gold: #b89a4f;
  --color-gold-light: #d6bd74;
  --color-burgundy: #7e1118;
  --color-white: #f5f0e8;
  --color-muted: #c8bca7;
  --font-latin: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-serif: var(--font-latin);
  --font-mincho: var(--font-latin), "Yu Mincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --font-sans: var(--font-latin), "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

body {
  min-width: 320px;
  background: #050403;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-weight: 300;
  font-variant-numeric: lining-nums proportional-nums;
  font-feature-settings: "lnum" 1, "pnum" 1;
  line-height: 1.9;
  letter-spacing: 0;
  text-align: justify;
  text-justify: inter-character;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 10% 12%, rgba(184, 154, 79, 0.12), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 9px);
  opacity: 0.8;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes fade-in-left {
  from {
    opacity: 0;
    transform: translateX(-22px);
  }

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

@keyframes image-breathe {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.045);
  }
}

@keyframes gold-line {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 0.82;
    transform: scaleX(1);
  }
}

.p-hero__content,
.p-news__inner,
.p-concept__content,
.p-menu__intro,
.p-banquet__content,
.p-cta__inner {
  animation: fade-in-up 0.9s ease both;
}

.p-hero__content {
  animation-delay: 0.1s;
}

.p-hero__image,
.p-concept__image {
  animation: fade-in-left 1s ease both;
}

.p-hero__image img {
  animation: image-breathe 12s ease-in-out infinite alternate;
  transform-origin: center;
}

@supports (animation-timeline: view()) {
  .p-menu__list .p-menu__media {
    will-change: opacity, transform;
    animation: fade-in-up 0.9s ease-out both;
    animation-timeline: view();
    animation-range: entry 8% cover 34%;
  }
}

.p-menu__title::after {
  transform-origin: left center;
  animation: gold-line 0.9s ease both;
}

.c-button,
.l-header__tel-number,
.c-logo__link {
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}

.c-button:hover,
.l-header__tel-number:hover,
.c-logo__link:hover {
  transform: translateY(-2px);
}

.c-logo__link:hover,
.l-header__tel-number:hover {
  filter: brightness(1.15);
}

.l-footer .c-logo__link,
.l-footer .c-logo__link:hover {
  filter: none;
  transform: none;
  transition: none;
}

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

/* Layout
-------------------------------------------------- */
.l-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 4, 3, 0.94);
  border-bottom: 1px solid rgba(184, 154, 79, 0.28);
  backdrop-filter: blur(12px);
}

.l-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(100% - 48px, 1280px);
  min-height: 96px;
  margin: 0 auto;
}

.l-header__logo {
  display: flex;
  align-items: center;
  flex: 0 0 180px;
}

.l-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
}

.l-header__menu-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.l-header__menu-button {
  display: none;
}

.l-header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 30px);
}

.l-header__nav-link {
  position: relative;
  display: inline-block;
  padding: 12px 0;
  color: var(--color-white);
  font-family: var(--font-mincho);
  font-size: 15px;
}

.l-header__nav-link::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.l-header__nav-link:hover::after {
  transform: scaleX(1);
}

.l-header__tel {
  flex: 0 0 auto;
  color: inherit;
  text-align: right;
  text-decoration: none;
}

.l-header__tel::before {
  display: none;
}

.l-header__tel-number {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.2;
}

.l-header__tel-number::before {
  width: 0.72em;
  height: 0.72em;
  content: "";
  background: var(--color-gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='black'%20d='M19.96%2015.62c-1.39-.02-2.74-.24-4.01-.66-.61-.2-1.29-.04-1.73.4l-1.78%201.78a15.4%2015.4%200%200%201-5.58-5.58l1.78-1.78c.44-.44.6-1.12.4-1.73-.42-1.27-.64-2.62-.66-4.01A2.04%202.04%200%200%200%206.34%202H3.36C2.61%202%202%202.61%202%203.36%202%2013.66%2010.34%2022%2020.64%2022c.75%200%201.36-.61%201.36-1.36v-2.98c0-1.12-.91-2.02-2.04-2.04Z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='black'%20d='M19.96%2015.62c-1.39-.02-2.74-.24-4.01-.66-.61-.2-1.29-.04-1.73.4l-1.78%201.78a15.4%2015.4%200%200%201-5.58-5.58l1.78-1.78c.44-.44.6-1.12.4-1.73-.42-1.27-.64-2.62-.66-4.01A2.04%202.04%200%200%200%206.34%202H3.36C2.61%202%202%202.61%202%203.36%202%2013.66%2010.34%2022%2020.64%2022c.75%200%201.36-.61%201.36-1.36v-2.98c0-1.12-.91-2.02-2.04-2.04Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.l-header__tel-text {
  display: block;
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 12px;
}

.l-main {
  overflow: hidden;
}

.l-section {
  padding: 80px 0 clamp(80px, 10vw, 150px);
}

.l-container {
  width: min(100% - 48px, 1200px);
  margin: 0 auto;
}

.l-footer {
  position: relative;
  padding: 26px 0 12px;
  background:
    linear-gradient(rgba(3, 3, 2, 0.9), rgba(3, 3, 2, 0.94)),
    #030302;
  border-bottom: 1px solid rgba(184, 154, 79, 0.18);
}

.l-footer__inner {
  display: grid;
  grid-template-columns: fit-content(320px) repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(28px, 4vw, 52px);
}

.l-footer__brand,
.l-footer__photo,
.l-footer__contact {
  align-self: stretch;
  height: 200px;
}

.l-footer__brand {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding-right: clamp(8px, 1.6vw, 18px);
}

.l-footer__logo {
  align-self: start;
}

.l-footer__info {
  min-width: 0;
}

.l-footer__heading {
  margin-bottom: 8px;
  color: var(--color-gold);
  font-family: var(--font-mincho);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.l-footer__table {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 4px 14px;
  color: rgba(245, 240, 232, 0.78);
  font-size: 12px;
  line-height: 1.6;
}

.l-footer__term {
  color: rgba(245, 240, 232, 0.92);
  font-weight: 400;
}

.l-footer__description {
  min-width: 0;
}

.l-footer__photo {
  overflow: hidden;
}

.l-footer__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  filter: brightness(0.82) saturate(0.9);
}

.l-footer__contact {
  display: grid;
  justify-items: stretch;
  text-align: right;
}

.l-footer__map {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #111;
}

.l-footer__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) brightness(0.72);
}

.l-footer__map-button {
  position: absolute;
  right: 22px;
  bottom: 18px;
  z-index: 2;
  min-width: 210px;
  min-height: 42px;
  padding: 10px 18px;
  white-space: nowrap;
}

.l-footer__copyright {
  margin-top: 14px;
  color: rgba(248, 244, 234, 0.52);
  font-family: var(--font-serif);
  font-size: 13px;
  text-align: center;
}

/* Object / Component
-------------------------------------------------- */
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 50px;
  padding: 12px 24px;
  color: var(--color-white);
  font-family: var(--font-mincho);
  font-size: 14px;
  border: 1px solid var(--color-gold);
  background: var(--color-gold);
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}

.c-button::after {
  display: inline-block;
  width: 22px;
  height: 13px;
  margin-left: 18px;
  content: "";
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2044%2026'%3E%3Cg%20fill='none'%20stroke='black'%20stroke-width='3'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M3%2016h11c0-4%203-7%207-7%202.7%200%205%201.5%206.2%203.7C28.4%209.3%2031.6%207%2035.4%207c4.2%200%207.6%203.4%207.6%207.6S39.6%2022%2035.4%2022H18'/%3E%3Cpath%20d='M9%2016c0%203%202.4%205.5%205.5%205.5S20%2019%2020%2016'/%3E%3Cpath%20d='M27%2015c0%202.5%202%204.5%204.5%204.5S36%2017.5%2036%2015'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2044%2026'%3E%3Cg%20fill='none'%20stroke='black'%20stroke-width='3'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M3%2016h11c0-4%203-7%207-7%202.7%200%205%201.5%206.2%203.7C28.4%209.3%2031.6%207%2035.4%207c4.2%200%207.6%203.4%207.6%207.6S39.6%2022%2035.4%2022H18'/%3E%3Cpath%20d='M9%2016c0%203%202.4%205.5%205.5%205.5S20%2019%2020%2016'/%3E%3Cpath%20d='M27%2015c0%202.5%202%204.5%204.5%204.5S36%2017.5%2036%2015'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}

.c-button:hover {
  color: var(--color-white);
  background: var(--color-gold-light);
  border-color: #b48200;
}

.c-button--outline {
  color: var(--color-white);
  background: var(--color-gold);
}

.c-button--outline::after {
  color: currentColor;
}

.c-button--outline:hover {
  color: var(--color-white);
  background: var(--color-gold-light);
  border-color: #b48200;
}

.c-button--outline:hover::after {
  color: var(--color-white);
}

.c-button--gold {
  color: var(--color-white);
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.c-button--gold:hover {
  background: var(--color-gold-light);
  border-color: #b48200;
}

.c-button--map {
  position: absolute;
  right: 24px;
  bottom: 24px;
  background: rgba(5, 4, 3, 0.78);
}

.c-heading {
  color: var(--color-white);
  font-family: var(--font-mincho);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.55;
}

.c-heading__en {
  margin-bottom: 14px;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.c-logo__link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.c-logo__label {
  width: 100%;
  color: #b48200;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.c-logo__image {
  width: 180px;
  mix-blend-mode: screen;
}

.c-news-list__item {
  border-bottom: 1px solid rgba(184, 154, 79, 0.28);
}

.c-news-list__item .p-news__arrow {
  display: inline-block;
  transition: transform 0.28s ease, color 0.28s ease;
}

.c-news-list__item:hover .p-news__arrow {
  color: #b48200;
  transform: translateX(8px);
}

.c-menu-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(184, 154, 79, 0.22);
}

.c-menu-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.c-menu-card__body {
  padding: 22px;
}

.c-menu-card__en {
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
}

.c-menu-card__title {
  margin-top: 4px;
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 600;
}

.c-menu-card__text {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.8;
}

.c-page-top {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 90;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184, 154, 79, 0.72);
  background: rgba(5, 4, 3, 0.82);
  box-shadow: 0 12px 30px rgba(5, 4, 3, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.24s ease, transform 0.24s ease, background-color 0.24s ease;
  backdrop-filter: blur(8px);
}

.c-page-top::before {
  width: 12px;
  height: 12px;
  content: "";
  border-top: 2px solid #f5f0e8;
  border-left: 2px solid #f5f0e8;
  transform: translateY(4px) rotate(45deg);
}

.c-page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.c-page-top:hover {
  background: rgba(184, 154, 79, 0.92);
}

@media (max-width: 767px) {
  .c-page-top {
    width: 44px;
    height: 44px;
  }
}

.c-info-table {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px 18px;
  color: var(--color-muted);
  font-size: 14px;
}

.c-info-table__term {
  color: #b48200;
  font-weight: 500;
}

/* Object / Project
-------------------------------------------------- */
.p-hero {
  position: relative;
  min-height: min(760px, calc(100svh - 96px));
  background: var(--color-black);
}

.p-hero::before {
  position: absolute;
  top: clamp(82px, 12vw, 132px);
  left: max(18px, (100vw - 1280px) / 2 + 8px);
  z-index: 0;
  content: "福寿康寧";
  white-space: nowrap;
  color: rgba(184, 154, 79, 0.12);
  font-family: KaiTi, STKaiti, "DFKai-SB", "BiauKai", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.24em;
  writing-mode: vertical-rl;
  pointer-events: none;
}

.p-hero__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.6fr);
  align-items: center;
  width: min(100% - 48px, 1280px);
  min-height: inherit;
  margin: 0 auto;
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(72px, 9vw, 120px) 0;
}

.p-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
}

.p-hero__label {
  margin-top: 34px;
  color: #b48200;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.5;
}

.p-hero__title {
  font-family: var(--font-mincho);
  font-size: clamp(42px, 5.4vw, 68px);
  font-weight: 600;
  line-height: 1.45;
  word-break: keep-all;
  overflow-wrap: normal;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.72);
}

.p-hero__text {
  margin-top: 28px;
  color: var(--color-muted);
  font-family: var(--font-mincho);
  font-size: clamp(17px, 2.2vw, 24px);
  line-height: 1.9;
}

.p-hero__image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.p-hero__image::before,
.p-hero__image::after {
  position: absolute;
  top: 0;
  z-index: 1;
  width: clamp(110px, 16vw, 240px);
  height: 100%;
  content: "";
  pointer-events: none;
}

.p-hero__image::before {
  left: 0;
  width: clamp(56px, 10vw, 150px);
  background: linear-gradient(90deg, rgba(5, 4, 3, 0.92) 0%, rgba(5, 4, 3, 0.45) 48%, rgba(5, 4, 3, 0) 100%);
}

.p-hero__image::after {
  right: 0;
  width: clamp(56px, 10vw, 150px);
  background: linear-gradient(270deg, rgba(5, 4, 3, 0.92) 0%, rgba(5, 4, 3, 0.45) 48%, rgba(5, 4, 3, 0) 100%);
}

.p-hero__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: brightness(1.18) saturate(1.04) contrast(1.02);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 100%);
}

.p-news {
  background: #070605;
}

.p-news__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 42px;
  padding: 48px 0;
}

.p-news__body {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
}

.p-news__item {
  padding: 15px 0;
}

.p-news__item-link {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.p-news__date {
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 15px;
}

.p-news__category {
  display: inline-block;
  margin-right: 10px;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--color-gold);
  color: #fffaf0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}
.p-news__category--lunch {
  background: #b8442d;
}

.p-news__title {
  overflow: hidden;
  color: var(--color-ink);
  font-size: 18px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.p-news__arrow {
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 20px;
  text-align: right;
}

.p-concept {
  position: relative;
  background-color: #080705;
}

.p-concept::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: min(58vw, 720px);
  height: 82%;
  content: "";
  background: url("../images/bg_language.png") right center / contain no-repeat;
  filter: invert(1) sepia(24%) saturate(280%) hue-rotate(350deg) brightness(1.03) contrast(0.55);
  mix-blend-mode: multiply;
  opacity: 0.24;
  transform: translateY(-50%);
  pointer-events: none;
}
.p-concept.l-section::before {
  opacity: 0.15;
}

.p-concept__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 640px);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
  width: 100%;
  max-width: none;
}

.p-concept__image {
  position: relative;
  overflow: hidden;
}

.p-concept__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 68%, rgba(8, 7, 5, 0.72) 88%, #080705 100%);
  pointer-events: none;
}

.p-concept__image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-left: 1px solid rgba(184, 154, 79, 0.5);
  border-bottom: 1px solid rgba(184, 154, 79, 0.5);
}

.p-concept__content {
  position: relative;
  width: min(100%, 640px);
  margin-right: clamp(24px, 5vw, 96px);
}

  .p-concept__title {
  color: #b48200;
  font-size: clamp(27px, 3.2vw, 42px);
  white-space: nowrap;
}

.p-concept__text {
  max-width: 38em;
  margin-top: 30px;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
}

.p-menu {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(184, 154, 79, 0.12), transparent 28%),
    radial-gradient(circle at 88% 62%, rgba(126, 17, 24, 0.18), transparent 30%),
    linear-gradient(rgba(5, 4, 3, 0.9), rgba(5, 4, 3, 0.94)),
    #050403;
  padding-top: clamp(48px, 6vw, 88px);
}

.p-menu::before,
.p-menu::after {
  position: absolute;
  content: "";
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.065;
  pointer-events: none;
}

.p-menu::before {
  top: clamp(78px, 8vw, 128px);
  right: max(18px, calc((100vw - 1280px) / 2 - 56px));
  width: min(500px, 40vw);
  aspect-ratio: 1349 / 856;
  background-image: url("../images/top-image.svg");
}

.p-menu::after {
  bottom: clamp(72px, 9vw, 128px);
  left: max(18px, calc((100vw - 1280px) / 2 - 76px));
  width: min(520px, 42vw);
  aspect-ratio: 1349 / 856;
  background-image: url("../images/top-image-flipped.svg");
  opacity: 0.055;
}

.p-menu__inner {
  position: relative;
  z-index: 1;
}

.p-menu__intro {
  max-width: 820px;
  margin: 0 auto clamp(62px, 8vw, 112px);
  text-align: center;
}

.p-menu__heading {
  color: #b48200;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.45;
}

.p-menu__heading span {
  color: var(--color-burgundy-light);
  white-space: nowrap;
}

.p-menu__text {
  margin-top: 24px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 2;
}

.p-menu__intro-decoration {
  width: min(540px, 84%);
  margin: 24px auto 0;
  opacity: 0.9;
}

.p-menu__list {
  display: grid;
  gap: clamp(76px, 9vw, 126px);
}

.p-menu__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(280px, 0.74fr);
  align-items: center;
  gap: clamp(28px, 4vw, 46px);
}

.p-menu__item::before {
  position: absolute;
  z-index: 0;
  content: "";
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  pointer-events: none;
}

.p-menu__item--featured {
  min-height: 520px;
}

.p-menu__item--featured::before {
  right: min(6vw, 72px);
  bottom: clamp(-58px, -4vw, -24px);
  width: min(560px, 45vw);
  aspect-ratio: 1349 / 856;
  background-image: url("../images/top-image-flipped.svg");
  opacity: 0.07;
}

.p-menu__item--noodles::before {
  top: 50%;
  right: max(-72px, -5vw);
  width: min(500px, 40vw);
  aspect-ratio: 1349 / 856;
  background-image: url("../images/top-image.svg");
  opacity: 0.065;
  transform: translateY(-50%);
}

.p-menu__item--rice .p-menu__media {
  width: min(100%, 430px);
  height: clamp(280px, 30vw, 390px);
}

.p-menu__content {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
}

.p-menu__eyebrow {
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.p-menu__title {
  margin-top: 10px;
  color: var(--color-white);
  font-family: var(--font-mincho);
  font-size: clamp(36px, 4.8vw, 62px);
  font-weight: 500;
  line-height: 1.25;
}

.p-menu__title::after {
  display: block;
  width: min(360px, 100%);
  height: 28px;
  margin-top: 12px;
  content: "";
  background: url("../images/ashirai2.png") left center / contain no-repeat;
  opacity: 0.82;
}

.p-menu__lead {
  margin-top: 18px;
  color: var(--color-white);
  font-family: var(--font-mincho);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.7;
}

.p-menu__description {
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 2;
}

.p-menu__media {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  overflow: visible;
}

.p-menu__media::before,
.p-menu__media::after {
  position: absolute;
  z-index: 1;
  width: 74px;
  height: 74px;
  content: "";
  background: url("../images/ashirai1.png") left top / contain no-repeat;
  opacity: 0.88;
  pointer-events: none;
}

.p-menu__media::before {
  top: -14px;
  left: -14px;
}

.p-menu__media::after {
  right: -14px;
  bottom: -14px;
  transform: rotate(180deg);
}

.p-menu__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.12) saturate(1.06) contrast(1.08);
}

.p-menu__item .p-menu__media {
  justify-self: center;
  width: min(100%, 430px);
  height: auto;
}

.p-menu__item:not(.p-menu__item--featured) .p-menu__media img {
  height: auto;
  object-fit: contain;
}

.p-menu__item--featured .p-menu__media {
  width: fit-content;
  height: auto;
}

.p-menu__item--featured .p-menu__media img {
  width: auto;
  max-width: 100%;
  height: clamp(420px, 50vw, 620px);
  object-fit: contain;
}
.p-menu__item .p-menu__content {
  justify-self: end;
}

.p-menu__footer {
  display: flex;
  justify-content: center;
  margin-top: clamp(8px, 2vw, 24px);
}

.p-banquet {
  position: relative;
  overflow: hidden;
  background: #050403;
  padding-bottom: 80px;
}

.p-banquet::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(5, 4, 3, 0.58), rgba(5, 4, 3, 0.38) 48%, rgba(5, 4, 3, 0.56));
  pointer-events: none;
}

.p-banquet__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.p-banquet__bg {
  min-width: 0;
  overflow: hidden;
}

.p-banquet__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-banquet__inner {
  position: relative;
  z-index: 2;
}

.p-banquet__content {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}

.p-banquet__content .c-heading__en,
.p-banquet__title.c-heading,
.p-banquet__content .p-banquet__text {
  color: #fff;
}

.p-banquet__text {
  margin: 26px 0 34px;
  font-size: 15px;
}

@media (max-width: 767px) {
  .p-banquet__background {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
}

.p-cta {
  position: relative;
  overflow: hidden;
  padding: 54px 0;
  background:
    linear-gradient(90deg, rgba(126, 17, 24, 0.96), rgba(101, 9, 16, 0.98)),
    var(--color-burgundy);
}

.p-cta::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: min(100%, 1200px);
  content: "";
  background:
    url("../images/phoenix_left.svg") left bottom / 260px auto no-repeat,
    url("../images/phoenix_right.svg") right bottom / 260px auto no-repeat;
  opacity: 0.18;
  transform: translateX(-50%);
  pointer-events: none;
}

.p-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  justify-content: space-between;
  gap: 18px clamp(28px, 4vw, 56px);
}

.p-cta__label {
  margin-bottom: 0;
}

.p-cta__content {
  display: grid;
  justify-content: center;
  justify-items: start;
  row-gap: 8px;
  text-align: left;
}

.p-cta__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: calc(1.4em + 12px);
  text-align: center;
}

.p-cta__title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: clamp(42px, 4.2vw, 56px);
  font-family: var(--font-mincho);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.p-cta__text {
  margin-top: 10px;
  color: rgba(248, 244, 234, 0.82);
  font-size: 14px;
  white-space: nowrap;
}

.p-cta__tel {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: clamp(42px, 4.2vw, 56px);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1;
  white-space: nowrap;
}

.p-cta__tel::before {
  width: 0.64em;
  height: 0.64em;
  content: "";
  background: var(--color-gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='black'%20d='M19.96%2015.62c-1.39-.02-2.74-.24-4.01-.66-.61-.2-1.29-.04-1.73.4l-1.78%201.78a15.4%2015.4%200%200%201-5.58-5.58l1.78-1.78c.44-.44.6-1.12.4-1.73-.42-1.27-.64-2.62-.66-4.01A2.04%202.04%200%200%200%206.34%202H3.36C2.61%202%202%202.61%202%203.36%202%2013.66%2010.34%2022%2020.64%2022c.75%200%201.36-.61%201.36-1.36v-2.98c0-1.12-.91-2.02-2.04-2.04Z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='black'%20d='M19.96%2015.62c-1.39-.02-2.74-.24-4.01-.66-.61-.2-1.29-.04-1.73.4l-1.78%201.78a15.4%2015.4%200%200%201-5.58-5.58l1.78-1.78c.44-.44.6-1.12.4-1.73-.42-1.27-.64-2.62-.66-4.01A2.04%202.04%200%200%200%206.34%202H3.36C2.61%202%202%202.61%202%203.36%202%2013.66%2010.34%2022%2020.64%2022c.75%200%201.36-.61%201.36-1.36v-2.98c0-1.12-.91-2.02-2.04-2.04Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.p-cta__hours {
  color: rgba(245, 240, 232, 0.86);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  white-space: nowrap;
}

.p-footer-nav {
  margin-bottom: 24px;
}

.p-footer-nav__list {
  display: flex;
  justify-content: center;
  gap: 10px 28px;
}

.p-footer-nav__item {
  display: flex;
  align-items: center;
}

.p-footer-nav__item:not(:last-child)::after {
  width: 1px;
  height: 16px;
  margin: 0 clamp(16px, 2.8vw, 30px);
  content: "";
  background: rgba(184, 154, 79, 0.38);
}

.p-footer-nav__link {
  color: var(--color-white);
  font-family: var(--font-mincho);
  font-size: 15px;
  white-space: nowrap;
}

.p-footer-nav__link:hover {
  color: #b48200;
}

/* Object / Utility
-------------------------------------------------- */
.u-text-gold {
  color: var(--color-gold);
}

.u-text-center {
  text-align: center;
}

.u-hidden-pc {
  display: none;
}

@media (max-width: 1024px) {
  .l-header__inner {
    flex-wrap: wrap;
    gap: 12px 28px;
    padding: 18px 0;
  }

  .l-header__logo {
    flex-basis: 160px;
  }

  .l-header__nav {
    order: 3;
    flex-basis: 100%;
  }

  .l-header__nav-list {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .p-hero {
    min-height: auto;
  }

  .p-hero__inner,
  .p-news__inner,
  .p-menu__inner {
    grid-template-columns: 1fr;
  }

  .p-hero__inner {
    padding-top: 70px;
  }

  .p-hero__content {
    min-height: auto;
  }

  .p-hero__image {
    min-height: 380px;
  }

  .p-hero__image img {
    height: 420px;
  }

  .p-news__body {
    grid-template-columns: 1fr;
  }

  .p-menu__item {
    grid-template-columns: 1fr;
  }

  .p-menu__content,
  .p-menu__item .p-menu__content {
    justify-self: center;
    width: min(100%, 620px);
  }

  .p-menu__media {
    justify-self: center;
  }

  .p-concept__inner {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 1200px);
    max-width: 1200px;
  }

  .p-concept::before {
    right: -8vw;
    width: min(78vw, 620px);
    opacity: 0.2;
  }

  .p-concept__image {
    order: 2;
  }

  .p-concept__content {
    margin-right: 0;
  }

  .p-cta__inner {
    grid-template-columns: 1fr;
    justify-content: stretch;
    text-align: center;
  }

  .p-cta__contact {
    margin-top: 0;
  }

  .p-cta__title,
  .p-cta__tel {
    justify-content: center;
  }

  .l-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .l-footer__contact {
    justify-items: center;
    text-align: center;
  }

  .l-footer__brand,
  .l-footer__photo,
  .l-footer__contact {
    width: min(100%, 520px);
  }

  .l-footer__brand {
    height: auto;
    justify-items: center;
    text-align: center;
  }

  .l-footer__map {
    max-width: 520px;
  }
}

@media (max-width: 767px) {
  .l-container,
  .l-header__inner,
  .p-hero__inner {
    width: min(100% - 32px, 1200px);
  }

  .l-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    min-height: 0;
    gap: 8px 10px;
    justify-content: space-between;
    padding: 10px 0 8px;
  }

  .l-header__logo {
    order: 1;
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    flex: none;
  }

  .c-logo__link {
    gap: 2px;
  }

  .c-logo__label {
    font-size: clamp(9px, 2.8vw, 11px);
    white-space: nowrap;
  }

  .c-logo__image {
    width: clamp(138px, 39vw, 160px);
  }

  .l-header__tel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 2;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: 42px;
    height: 42px;
    color: var(--color-gold);
    border: 1px solid rgba(184, 154, 79, 0.58);
    background: rgba(184, 154, 79, 0.08);
    text-align: center;
  }

  .l-header__tel::before {
    display: block;
    flex: 0 0 auto;
    width: 19px;
    height: 19px;
    content: "";
    background: var(--color-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='black'%20d='M19.96%2015.62c-1.39-.02-2.74-.24-4.01-.66-.61-.2-1.29-.04-1.73.4l-1.78%201.78a15.4%2015.4%200%200%201-5.58-5.58l1.78-1.78c.44-.44.6-1.12.4-1.73-.42-1.27-.64-2.62-.66-4.01A2.04%202.04%200%200%200%206.34%202H3.36C2.61%202%202%202.61%202%203.36%202%2013.66%2010.34%2022%2020.64%2022c.75%200%201.36-.61%201.36-1.36v-2.98c0-1.12-.91-2.02-2.04-2.04Z'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='black'%20d='M19.96%2015.62c-1.39-.02-2.74-.24-4.01-.66-.61-.2-1.29-.04-1.73.4l-1.78%201.78a15.4%2015.4%200%200%201-5.58-5.58l1.78-1.78c.44-.44.6-1.12.4-1.73-.42-1.27-.64-2.62-.66-4.01A2.04%202.04%200%200%200%206.34%202H3.36C2.61%202%202%202.61%202%203.36%202%2013.66%2010.34%2022%2020.64%2022c.75%200%201.36-.61%201.36-1.36v-2.98c0-1.12-.91-2.02-2.04-2.04Z'/%3E%3C/svg%3E") center/contain no-repeat;
  }

  .l-header__tel:hover,
  .l-header__tel:active,
  .l-header__tel:focus-visible {
    transform: none;
  }

  .l-header__tel-number {
    display: none;
  }

  .l-header__tel-text {
    display: none;
  }

  .l-header__menu-button {
    position: relative;
    order: 3;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(184, 154, 79, 0.58);
    background: rgba(184, 154, 79, 0.08);
    cursor: pointer;
  }

  .l-header__menu-line,
  .l-header__menu-line::before,
  .l-header__menu-line::after {
    display: block;
    width: 19px;
    height: 1px;
    content: "";
    background: var(--color-gold);
    transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
  }

  .l-header__menu-line {
    position: relative;
  }

  .l-header__menu-line::before,
  .l-header__menu-line::after {
    position: absolute;
    left: 0;
  }

  .l-header__menu-line::before {
    top: -7px;
  }

  .l-header__menu-line::after {
    top: 7px;
  }

  .l-header__menu-toggle:checked + .l-header__menu-button .l-header__menu-line {
    background: transparent;
  }

  .l-header__menu-toggle:checked + .l-header__menu-button .l-header__menu-line::before {
    transform: translateY(7px) rotate(38deg);
  }

  .l-header__menu-toggle:checked + .l-header__menu-button .l-header__menu-line::after {
    transform: translateY(-7px) rotate(-38deg);
  }

  .l-header__nav {
    position: absolute;
    order: 4;
    grid-column: 1/-1;
    grid-row: 2;
    top: calc(100% + 1px);
    left: 50%;
    display: block;
    width: 100vw;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: rgba(5, 4, 3, 0.98);
    border-top: 1px solid rgba(184, 154, 79, 0.28);
    border-bottom: 1px solid rgba(184, 154, 79, 0.28);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.34);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%);
    transition: max-height 0.32s ease, padding 0.32s ease, opacity 0.24s ease, visibility 0.24s ease;
  }

  .l-header__menu-toggle:checked ~ .l-header__nav {
    max-height: 320px;
    padding-top: 12px;
    padding-bottom: 14px;
    opacity: 1;
    visibility: visible;
  }

  .l-header__nav-list {
    display: grid;
    justify-content: stretch;
    width: 100%;
    max-width: min(100% - 32px, 520px);
    margin-inline: auto;
    gap: 0;
    overflow-x: visible;
  }

  .l-header__nav-link {
    display: block;
    padding: 14px 4px;
    font-size: 14px;
    white-space: nowrap;
    border-bottom: 1px solid rgba(184, 154, 79, 0.2);
    text-align: center;
  }

  .l-section {
    padding: 80px 0 72px;
  }

  .l-footer {
    padding-top: 30px;
  }

  .l-footer__table {
    grid-template-columns: 68px 1fr;
    text-align: left;
  }

  .l-footer__brand {
    height: auto;
  }

  .l-footer__photo img {
    height: 200px;
  }

  .l-footer__map-button {
    right: 50%;
    min-width: 220px;
    transform: translateX(50%);
  }

  .p-hero__inner {
    gap: 40px;
    padding: 56px 0 64px;
  }

  .p-hero__title {
    margin-top: 22px;
  }

  .p-hero__image {
    min-height: 300px;
    margin-right: -16px;
    margin-left: -16px;
  }

  .p-hero__image img {
    height: 330px;
  }

  .p-hero::before {
    top: 26px;
    left: 18px;
    font-size: 40px;
    letter-spacing: 0.18em;
    opacity: 0.52;
  }

  .p-menu {
    padding-top: 80px;
  }

  .p-concept::before {
    top: 38%;
    right: -18vw;
    width: 110vw;
    height: 54%;
    opacity: 0.16;
  }

  .p-news__inner {
    gap: 18px;
    padding: 40px 0;
  }

  .p-news__item {
    padding: 15px 0;
  }

  .p-news__item-link {
    grid-template-columns: 1fr 24px;
    gap: 8px 12px;
  }

  .p-news__date {
    grid-column: 1 / -1;
  }

  .p-news__title {
    white-space: normal;
  }

  .p-news__link {
    width: 100%;
  }

  .p-concept__image img {
    height: 320px;
  }

.p-concept__title {
    font-size: clamp(22px, 6.6vw, 29px);
    line-height: 1.55;
    white-space: normal;
  }

  .p-concept__text {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.9;
  }

  .p-menu::before {
    top: 86px;
    right: -24vw;
    width: 78vw;
    opacity: 0.055;
  }

  .p-menu::after {
    bottom: 36px;
    left: -32vw;
    width: 82vw;
    opacity: 0.048;
  }

  .p-menu__intro {
    text-align: left;
  }

  .p-menu__heading {
    font-size: 28px;
    line-height: 1.55;
  }

  .p-menu__heading span {
    white-space: normal;
  }

  .p-menu__intro-decoration {
    width: 100%;
  }

  .p-menu__list {
    gap: 58px;
  }

  .p-menu__item--featured::before {
    right: -18vw;
    bottom: -20px;
    width: 80vw;
    opacity: 0.055;
  }

  .p-menu__item--noodles::before {
    top: auto;
    right: -24vw;
    bottom: -28px;
    width: 78vw;
    opacity: 0.05;
    transform: none;
  }

  .p-menu__content {
    width: 100%;
  }

  .p-menu__media img {
    max-height: 420px;
  }

  .p-menu__item--noodles .p-menu__content {
    order: 1;
  }

  .p-menu__item--featured .p-menu__content {
    order: 1;
  }

  .p-menu__item--noodles .p-menu__media {
    order: 2;
  }

  .p-menu__item--featured .p-menu__media {
    order: 2;
  }

  .p-menu__item--rice .p-menu__media {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    opacity: 1;
    animation: none;
    transform: none;
  }

  .p-menu__item--rice .p-menu__media img {
    filter: brightness(1.16) saturate(1.12) contrast(1.12);
  }

  .p-menu__item .p-menu__media {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
  }

  .p-menu__item--featured .p-menu__media {
    width: fit-content;
    height: auto;
    aspect-ratio: auto;
  }

  .p-menu__item--featured .p-menu__media img {
    height: auto;
    max-height: 420px;
  }
  .p-menu__media::before,
  .p-menu__media::after {
    width: 54px;
    height: 54px;
  }

  .p-cta {
    padding: 48px 0;
  }

  .p-cta::before {
    background: url("../images/phoenix_background_vector.svg") center bottom / 340px auto no-repeat;
    opacity: 0.14;
  }

  .p-cta__tel {
    font-size: 36px;
  }

  .p-cta__hours {
    font-size: 12px;
    line-height: 1.8;
    white-space: normal;
  }

  .c-button--map {
    right: 16px;
    bottom: 16px;
    min-width: 170px;
  }

  .p-footer-nav__list {
    flex-wrap: wrap;
  }

  .u-hidden-sp {
    display: none;
  }

  .u-hidden-pc {
    display: initial;
  }
}

/* Top slider override
-------------------------------------------------- */
.p-hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(184, 154, 79, 0.06) 0 1px, transparent 1px 8px), #f5f0e8;
}

.p-hero::before {
  display: none;
}

.p-hero__inner {
  display: block;
  width: min(100% - clamp(32px, 5.8vw, 110px), 1800px);
  min-height: 0;
  overflow: hidden;
  margin: 0 auto;
  padding: clamp(24px, 3.5vw, 48px) 0;
}

.p-hero__slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 1780 / 690;
  min-height: 460px;
  overflow: hidden;
  background: #17120f;
}

.p-hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  animation: heroSlideFade 24s infinite;
}

.p-hero__slide:nth-child(2) {
  animation-delay: 6s;
}

.p-hero__slide:nth-child(3) {
  animation-delay: 12s;
}

.p-hero__slide:nth-child(4) {
  animation-delay: 18s;
}

.p-hero__slide img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.03);
  animation: heroSlideZoom 24s infinite;
}

.p-hero__slide:nth-child(2) img {
  object-position: center 58%;
  animation-delay: 6s;
}

.p-hero__slide:nth-child(3) img {
  object-position: center 50%;
  animation-delay: 12s;
}

.p-hero__slide:nth-child(4) img {
  object-position: center 54%;
  animation-delay: 18s;
}

.p-hero__slide.p-hero__slide--cilantro-dumpling img {
  object-position: center center;
}

@keyframes heroSlideFade {
  0%, 25% {
    opacity: 1;
  }
  33%, 100% {
    opacity: 0;
  }
}

@keyframes heroSlideZoom {
  0% {
    transform: scale(1.03);
  }
  33%, 100% {
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-hero__slide,
  .p-hero__slide img {
    animation: none;
  }

  .p-hero__slide:first-child {
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .p-hero__inner {
    display: block;
    width: min(100% - 40px, 1200px);
    padding: 28px 0 34px;
  }

  .p-hero__slider {
    aspect-ratio: 16 / 8;
    min-height: 360px;
  }
}

@media (max-width: 767px) {
  .p-hero__inner {
    width: 100%;
    padding: 16px;
  }

  .p-hero__slider {
    aspect-ratio: 4 / 3.35;
    min-height: 320px;
  }
}

/* Paper texture color theme override
-------------------------------------------------- */
:root {
  --color-black: #efe8d8;
  --color-ink: #2b170f;
  --color-charcoal: #4a2a1c;
  --color-gold: #a88535;
  --color-gold-light: #c8aa5c;
  --color-burgundy: #8f0926;
  --color-white: #2b170f;
  --color-muted: #735f4a;
  --color-paper: #f4efe4;
  --color-paper-deep: #eadfcb;
  --color-brown: #3a1f15;
}

html,
body {
  background-color: #050403;
}

body {
  color: var(--color-ink);
}

body::before {
  background:
    radial-gradient(circle at 10% 12%, rgba(184, 154, 79, 0.12), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 9px);
  opacity: 0.8;
}

.l-main,
.p-hero,
.p-news,
.p-concept,
.p-menu,
.p-cta,
.p-news-page,
.p-menu-page,
.p-banquet-page,
.p-access-page {
  background:
    radial-gradient(circle at 18% 16%, rgba(168, 133, 53, 0.08), transparent 24rem),
    repeating-linear-gradient(11deg, rgba(58, 31, 21, 0.022) 0 1px, transparent 1px 8px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(234, 223, 203, 0.2)),
    var(--color-paper);
  color: var(--color-ink);
}

.l-header {
  background: rgba(244, 239, 228, 0.95);
  border-bottom: 1px solid rgba(58, 31, 21, 0.2);
  box-shadow: 0 12px 34px rgba(58, 31, 21, 0.08);
}

.l-header__nav-link,
.l-header__tel-number,
.c-logo__label,
.c-heading,
.p-news__title,
.p-menu__title,
.p-banquet__title,
.p-cta__title,
.l-footer__heading,
.l-footer__description,
.l-footer__term {
  color: var(--color-ink);
}

.c-logo__image {
  filter: brightness(0) saturate(100%) invert(13%) sepia(34%) saturate(1122%) hue-rotate(340deg) brightness(92%) contrast(93%);
  mix-blend-mode: normal;
  opacity: 0.98;
}

.l-header__tel-text,
.p-news__date,
.p-menu__text,
.p-menu__lead,
.p-menu__description,
.p-banquet__text,
.p-concept__text,
.p-cta__text,
.p-cta__hours,
.c-info-table__description,
.c-heading__en {
  color: var(--color-muted);
}

.p-news__arrow,
.c-news-list__item,
.c-button,
.c-button--outline {
  color: #fffaf0;
}

.c-button,
.c-button--outline {
  border-color: rgba(168, 133, 53, 0.58);
}

.c-button--gold {
  color: #fffaf0;
  background: var(--color-gold);
  border-color: rgba(168, 133, 53, 0.58);
}

.c-button--gold:hover {
  color: #fffaf0;
  background: var(--color-gold-light);
  border-color: #b48200;
}

.p-news__item,
.c-news-list__item,
.p-footer-nav__link,
.l-footer__table {
  border-color: rgba(58, 31, 21, 0.18);
}

.c-menu-card,
.p-news-page__item,
.p-menu-page__category,
.p-access-page__info,
.p-banquet-page__course {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(234, 223, 203, 0.18)),
    rgba(244, 239, 228, 0.64);
  border-color: rgba(168, 133, 53, 0.26);
  box-shadow: 0 18px 46px rgba(58, 31, 21, 0.07);
}

.p-news-page__item {
  background: none;
  border-color: rgba(58, 31, 21, 0.18);
  box-shadow: none;
}

.p-news-page__item--single {
  padding: 50px 50px;
  background: rgba(244, 239, 228, 0.95);
  border: 1px solid rgba(184, 154, 79, 0.28);
}

.p-hero {
  background:
    repeating-linear-gradient(8deg, rgba(58, 31, 21, 0.024) 0 1px, transparent 1px 8px),
    var(--color-paper);
}

.p-hero__slider {
  background: var(--color-paper-deep);
}

.p-concept__image::after {
  background: linear-gradient(90deg, transparent 68%, rgba(244, 239, 228, 0.72) 88%, var(--color-paper) 100%);
}

.p-menu::before,
.p-menu::after,
.p-cta::before,
.p-cta::after {
  opacity: 0.28;
}

.p-cta {
  background: linear-gradient(90deg, rgba(126, 17, 24, 0.96), rgba(101, 9, 16, 0.98)), var(--color-burgundy);
  color: #f5f0e8;
}

.p-cta__title,
.p-cta__text,
.p-cta__tel,
.p-cta__hours,
.p-cta__label {
  color: #f5f0e8;
}

.l-footer {
  background: linear-gradient(90deg, rgba(126, 17, 24, 0.96), rgba(101, 9, 16, 0.98)), var(--color-burgundy);
  color: #f5f0e8;
}

.l-footer__copyright {
  color: rgba(245, 240, 232, 0.68);
}

.l-footer .c-logo__label,
.l-footer__heading,
.l-footer__description,
.l-footer__term,
.l-footer .p-footer-nav__link {
  color: #f5f0e8;
}

.l-footer .c-logo__image {
  width: 100%;
  filter: brightness(0) saturate(100%) invert(79%) sepia(33%) saturate(526%) hue-rotate(2deg) brightness(96%) contrast(91%);
  mix-blend-mode: normal;
  opacity: 1;
}

/* Compact footer layout
-------------------------------------------------- */
.l-footer {
  padding: clamp(22px, 3.2vw, 34px) 0 12px;
}

.l-footer .p-footer-nav {
  width: min(100% - 32px, 980px);
  margin: 0 auto clamp(16px, 2.4vw, 24px);
}

.l-footer .p-footer-nav__list {
  align-items: center;
  justify-content: center;
}

.l-footer__inner {
  display: block;
  width: min(100% - 32px, 760px);
  text-align: center;
}

.l-footer__brand {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px 28px;
  width: 100%;
  height: auto;
  padding-right: 0;
}

.l-footer__logo {
  width: min(320px, 76vw);
}

.l-footer__info {
  width: min(100%, 520px);
}

.l-footer__heading {
  margin-bottom: 6px;
  font-size: 16px;
}

.l-footer__table {
  grid-template-columns: max-content minmax(0, 1fr);
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  gap: 3px 14px;
  font-size: 11px;
  line-height: 1.55;
  text-align: left;
}

.l-footer__photo,
.l-footer__contact {
  display: none;
}

.l-footer__copyright {
  margin-top: clamp(14px, 2.4vw, 22px);
}

@media (max-width: 767px) {
  .l-footer .p-footer-nav {
    margin-bottom: 20px;
  }

  .l-footer .p-footer-nav__list {
    gap: 10px 28px;
  }

  .l-footer__table {
    grid-template-columns: 64px minmax(0, 1fr);
    width: min(100%, 360px);
  }
}

@media (max-width: 767px) {
  .l-header__tel-number,
  .l-header__menu-button {
    background: rgba(168, 133, 53, 0.08);
    border-color: rgba(58, 31, 21, 0.26);
  }

  .l-header__nav {
    background:
      repeating-linear-gradient(8deg, rgba(58, 31, 21, 0.028) 0 1px, transparent 1px 8px),
      rgba(244, 239, 228, 0.98);
    border-color: rgba(58, 31, 21, 0.2);
  }

  .l-header__nav-link {
    border-bottom-color: rgba(58, 31, 21, 0.18);
  }
}

/* Dark textured footer override
-------------------------------------------------- */
.l-footer {
  background:
    radial-gradient(circle at 18% 28%, rgba(124, 54, 32, 0.2), transparent 240px),
    radial-gradient(circle at 82% 8%, rgba(92, 37, 22, 0.28), transparent 260px),
    repeating-linear-gradient(14deg, rgba(255, 246, 232, 0.035) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(104deg, rgba(0, 0, 0, 0.14) 0 1px, transparent 1px 12px),
    linear-gradient(90deg, #3a180f, #291008);
  color: #fffaf0;
}

.l-footer .p-footer-nav {
  width: min(100% - 32px, 720px);
  margin-bottom: clamp(18px, 2.6vw, 26px);
}

.l-footer .p-footer-nav__list {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: center;
  gap: 10px 28px;
}

.l-footer .p-footer-nav__item {
  width: auto;
}

.l-footer .p-footer-nav__item::after {
  display: none;
}

.l-footer .p-footer-nav__link {
  color: #ffffff;
  border: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.32);
}

.l-footer .p-footer-nav__link:hover {
  color: #dec17a;
}

.l-footer__heading,
.l-footer__term,
.l-footer__description {
  color: rgba(255, 250, 240, 0.88);
}

.l-footer__copyright {
  color: rgba(255, 250, 240, 0.6);
}

@media (max-width: 767px) {
  .l-footer .p-footer-nav {
    width: min(100% - 20px, 420px);
  }

  .l-footer .p-footer-nav__list {
    grid-template-columns: repeat(4, max-content);
    gap: 10px 28px;
  }

  .l-footer .p-footer-nav__link {
    display: block;
    font-size: 12px;
    text-align: center;
  }
}

/* Larger header override
-------------------------------------------------- */
.l-header__inner {
  width: min(100% - 56px, 1360px);
  min-height: 118px;
  gap: clamp(28px, 3.2vw, 48px);
}

.l-header__logo {
  flex-basis: 230px;
}

.l-header .c-logo__image {
  width: clamp(210px, 15vw, 260px);
}

.l-header__nav-list {
  gap: clamp(20px, 2.2vw, 34px);
}

.l-header__nav-link {
  padding: 16px 0;
  font-size: 17px;
}

.l-header__tel-number {
  font-size: 32px;
}

.l-header__tel-text {
  margin-top: 6px;
  font-size: 13px;
}

@media (max-width: 1024px) {
  .l-header__inner {
    min-height: 0;
    padding: 22px 0;
  }

  .l-header__logo {
    flex-basis: 210px;
  }

  .l-header .c-logo__image {
    width: clamp(190px, 24vw, 230px);
  }
}

@media (max-width: 767px) {
  .l-header__inner {
    grid-template-columns: minmax(0, 1fr) 46px 46px;
    justify-content: stretch;
    width: min(100% - 28px, 1200px);
    padding: 16px 0 14px;
    gap: 10px 12px;
  }

  .l-header__logo {
    grid-area: 1/1/2/2;
    justify-self: start;
    min-width: 0;
  }

  .l-header .c-logo__image {
    width: clamp(150px, 42vw, 190px);
  }

  .l-header__tel {
    grid-area: 1/2/2/3;
    justify-self: end;
  }

  .l-header__menu-button {
    grid-area: 1/3/2/4;
    justify-self: end;
  }

  .l-header__nav {
    grid-area: 2/1/3/4;
  }

  .l-header__tel,
  .l-header__menu-button {
    width: 46px;
    height: 46px;
  }

  .l-header__tel::before {
    width: 20px;
    height: 20px;
  }

  .l-header__menu-line,
  .l-header__menu-line::before,
  .l-header__menu-line::after {
    width: 20px;
  }

  .l-header__menu-line::before {
    top: -8px;
  }

  .l-header__menu-line::after {
    top: 8px;
  }

  .l-header__menu-toggle:checked + .l-header__menu-button .l-header__menu-line::before {
    transform: translateY(8px) rotate(38deg);
  }

  .l-header__menu-toggle:checked + .l-header__menu-button .l-header__menu-line::after {
    transform: translateY(-8px) rotate(-38deg);
  }

  .l-header__nav-link {
    padding: 16px 4px;
    font-size: 15px;
  }
}

/* Menu text contrast override
-------------------------------------------------- */
.p-menu__list .p-menu__lead {
  color: #3a2015;
}

.p-menu__list .p-menu__description {
  color: #4b3426;
}

.p-concept__text {
  color: var(--color-ink);
}

.l-section.p-concept {
  padding: clamp(80px, 10vw, 80px) 0;
}

.l-section.p-banquet {
  padding-bottom: 80px;
}

/* Top page background consolidation
-------------------------------------------------- */
.home .l-main {
  background:
    radial-gradient(circle at 18% 16%, rgba(168, 133, 53, 0.08), transparent 24rem),
    repeating-linear-gradient(11deg, rgba(58, 31, 21, 0.022) 0 1px, transparent 1px 8px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(234, 223, 203, 0.2)),
    var(--color-paper);
}

.home .p-hero,
.home .p-news,
.home .p-concept,
.home .p-menu {
  background: transparent;
}

.home .p-cta {
  background: linear-gradient(90deg, rgba(126, 17, 24, 0.96), rgba(101, 9, 16, 0.98)), var(--color-burgundy);
}

.home .p-cta__title,
.home .p-cta__text,
.home .p-cta__tel,
.home .p-cta__hours,
.home .p-cta__label {
  color: #f5f0e8;
}

.home .l-main .c-button {
  width: 250px;
  max-width: 100%;
}

.l-footer__table {
  grid-template-columns: 1fr;
  justify-items: center;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  gap: 4px;
  text-align: center;
}

.l-footer__term {
  display: none;
}

.l-footer__description {
  text-align: center;
}

.l-footer__info,
.l-footer__info .l-footer__table {
  font-size: 14px;
}

.l-footer__copyright {
  font-size: 11px;
}

@media (max-width: 767px) {
  .p-banquet .c-button--outline {
    width: 100%;
  }
}
