/* 共通 / デザイントークン・基本設定 */
:root {
  --red: #b71918;
  --red-dark: #7e1010;
  --yellow: #f4c547;
  --cream: #fff3d0;
  --paper: #f7e4bb;
  --paper-deep: #ecd09b;
  --ink: #15294b;
  --brown: #4b2117;
  --muted: #6b4b3f;
  --line: rgba(21, 41, 75, 0.22);
  --panel: rgba(255, 243, 208, 0.78);
  --white: #ffffff;
  --header-height: 82px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(183, 25, 24, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(21, 41, 75, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(183, 25, 24, 0.04), transparent 38%),
    var(--paper);
  background-size: 42px 42px, 42px 42px, auto, auto;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(21, 41, 75, 0.035) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(183, 25, 24, 0.025) 0 1px, transparent 1px 7px);
  opacity: 0.72;
  content: "";
}

body::after {
  position: absolute;
  top: calc(var(--header-height) + min(calc(100vw * 0.571), calc(100svh - var(--header-height))));
  right: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  height: 22px;
  background:
    linear-gradient(45deg, var(--red) 25%, transparent 25% 75%, var(--red) 75%) 0 0 / 28px 28px,
    linear-gradient(45deg, transparent 25%, var(--red) 25% 75%, transparent 75%) 14px 0 / 28px 28px,
    var(--paper);
  border-top: 5px solid var(--red-dark);
  border-bottom: 5px solid var(--red-dark);
  content: "";
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

main {
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--ink));
}

.pointer-light {
  display: none;
}

/* 共通 / ヘッダー・グローバルナビ */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: var(--header-height);
  padding: 14px 34px;
  background:
    linear-gradient(180deg, rgba(21, 41, 75, 0.98), rgba(11, 24, 48, 0.96));
  border-bottom: 4px solid var(--red);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand__logo {
  width: 116px;
  height: 116px;
  object-fit: contain;
  transform-origin: 50% 50%;
  transition: transform 0.42s cubic-bezier(0.2, 0.9, 0.18, 1);
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.32));
}

.brand:hover .brand__logo,
.brand:focus-visible .brand__logo {
  transform: rotate(-5deg) scale(1.03);
}

.global-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: var(--cream);
  font-family: "Anton", sans-serif;
  font-size: 1rem;
}

.global-nav a,
.header-call {
  position: relative;
  line-height: 1;
}

.global-nav a::after,
.header-call::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
  content: "";
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after,
.header-call:hover::after,
.header-call:focus-visible::after {
  transform: scaleX(1);
}

.header-call {
  color: var(--yellow);
  font-family: "Anton", sans-serif;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.28);
}

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

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  background: rgba(255, 243, 208, 0.12);
  border: 2px solid rgba(255, 243, 208, 0.4);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--cream);
}

/* 共通 / セクション・見出し・ボタン */
.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 118px 0;
}

.section-kicker {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 42px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.section-kicker p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  max-width: 720px;
}

.eyebrow {
  margin: 0;
  color: var(--red);
  font-family: "Anton", sans-serif;
  font-size: 1.02rem;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 rgba(255, 243, 208, 0.7);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 0.95;
}

h1 {
  margin-bottom: 28px;
  color: var(--red);
  font-family: "Anton", sans-serif;
  font-size: 6.9rem;
  font-weight: 400;
  white-space: nowrap;
  text-shadow: 5px 5px 0 #fff;
}

h2 {
  margin-bottom: 0;
  font-family: "Anton", sans-serif;
  font-size: 5.4rem;
  font-weight: 400;
  text-shadow: 4px 4px 0 rgba(183, 25, 24, 0.12);
}

h3 {
  font-size: 1.55rem;
  line-height: 1.28;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 24px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  font-weight: 900;
  box-shadow: 4px 4px 0 rgba(21, 41, 75, 0.18);
  transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button--primary {
  color: var(--cream);
  background: var(--red);
  border-color: var(--ink);
}

.button--ghost {
  color: var(--ink);
  background: var(--paper);
}

/* トップページ / ファーストビュー */
.hero {
  position: relative;
  overflow: hidden;
  height: min(calc(100vw * 0.571), calc(100svh - var(--header-height)));
  min-height: 620px;
  margin-top: var(--header-height);
  background: var(--ink);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__main-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  right: 34px;
  bottom: clamp(42px, 6.4vw, 92px);
  left: clamp(32px, 5.2vw, 96px);
  z-index: 2;
  pointer-events: none;
}

.hero__overlay .hero__actions {
  pointer-events: auto;
}

.hero__overlay .button {
  border-radius: 999px;
  box-shadow: none;
}

.hero__overlay .button--primary {
  color: var(--white);
  background: #ef1714;
  border-color: #ef1714;
}

.hero__overlay .button--ghost {
  color: #fff2cf;
  background: rgba(255, 242, 207, 0.08);
  border-color: rgba(255, 242, 207, 0.28);
}

/* トップページ / ニュース・お知らせ一覧 */
.news {
  padding-top: 68px;
}

.news.lower-section {
  padding-bottom: 38px;
}

.menu.lower-section {
  padding-top: 58px;
}

.official-goods.lower-section {
  padding-bottom: 44px;
}

.visit-contact.lower-section {
  padding-top: 58px;
  padding-bottom: 42px;
}

.contact-cta.lower-section {
  padding-top: 54px;
}

.news-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1.22fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.news-card a {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 18px;
  min-height: 340px;
  padding: 28px;
  background: rgba(23, 10, 7, 0.94);
  transition: background 0.24s ease, transform 0.24s ease;
}

.news-card a:hover,
.news-card a:focus-visible {
  background: var(--red-dark);
  transform: translateY(-6px);
}

.news-card time,
.news-card span {
  color: var(--yellow);
  font-family: "Anton", sans-serif;
}

.news-card h3 {
  margin-bottom: 0;
}

.news-card p {
  align-self: end;
  margin-bottom: 0;
  color: var(--muted);
}

.news-card--feature a {
  background: var(--cream);
  color: var(--ink);
}

.news-card--feature h3 {
  color: var(--ink);
}

.news-card--feature p {
  color: #6d5146;
}

/* メニュー・サービスページ相当 / メニュー一覧 */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.menu-card button {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 620px;
  padding: 0;
  overflow: hidden;
  text-align: left;
  background: var(--brown);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.menu-card button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 10, 7, 0.96), rgba(23, 10, 7, 0.18) 55%, rgba(23, 10, 7, 0.58));
  content: "";
}

.menu-card button:hover img,
.menu-card button:focus-visible img {
  filter: saturate(1.18);
  transform: scale(1.06);
}

.menu-card__number,
.menu-card strong,
.menu-card span:not(.menu-card__number) {
  position: relative;
  z-index: 1;
}

.menu-card__number {
  align-self: start;
  justify-self: end;
  margin: 22px;
  color: var(--yellow);
  font-family: "Anton", sans-serif;
  font-size: 5.4rem;
  line-height: 0.82;
}

.menu-card strong {
  align-self: end;
  padding: 0 24px;
  color: var(--cream);
  font-size: 1.75rem;
}

.menu-card span:not(.menu-card__number) {
  padding: 0 24px 26px;
  color: var(--muted);
  font-weight: 800;
}

/* 会社・店舗紹介ページ相当 / コンセプト */
.concept {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 52px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 118px 0;
  border-top: 1px solid var(--line);
}

.concept__statement h2 {
  color: var(--red);
  text-shadow: 4px 4px 0 #fff;
}

.concept__body p {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
}

.concept-list {
  display: grid;
  gap: 1px;
  margin: 34px 0 0;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
}

.concept-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: rgba(255, 242, 207, 0.06);
  font-weight: 900;
}

.concept-list span {
  color: var(--yellow);
  font-family: "Anton", sans-serif;
  font-size: 1.3rem;
}

/* アクセス・営業時間ページ相当 / 店舗情報 */
.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
}

.shop-info,
.map-embed {
  min-width: 0;
  overflow: hidden;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 0;
  box-shadow: 8px 8px 0 rgba(21, 41, 75, 0.14);
}

.shop-info {
  padding: 28px;
}

.shop-info dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.shop-info div {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

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

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

.shop-info dt {
  color: var(--red);
  font-family: "Anton", sans-serif;
}

.shop-info dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.access-phone-link--mobile {
  display: none;
}

.shop-info__social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 20px;
  padding: 20px 14px 10px 10px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  font-family: "Anton", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  transition: transform 180ms ease;
}

.shop-info__social span {
  padding: 10px 14px 10px 10px;
  background: rgba(255, 242, 207, 0.82);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 rgba(21, 41, 75, 0.12);
  transition: box-shadow 180ms ease;
}

.shop-info__social img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
}

.shop-info__social:hover,
.shop-info__social:focus-visible {
  transform: translate(-2px, -2px);
}

.shop-info__social:hover span,
.shop-info__social:focus-visible span {
  box-shadow: 7px 7px 0 rgba(21, 41, 75, 0.16);
}

.map-embed {
  min-height: 460px;
}

.access-map-video {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  min-height: 0;
  background: var(--ink);
  cursor: pointer;
  filter: saturate(0.96) contrast(1.04);
  transition: filter 180ms ease, transform 180ms ease;
}

.access-map-video:hover {
  filter: saturate(1.08) contrast(1.08);
}

.access-map-video:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: -8px;
}

.access-map-video__label {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 7px 12px;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  background: rgba(21, 41, 75, 0.9);
  border: 1px solid rgba(255, 242, 207, 0.72);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(21, 41, 75, 0.22);
  pointer-events: none;
}

.access-map-video video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  object-fit: contain;
}

/* お問い合わせページ相当 / お問い合わせフォーム */
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(21, 41, 75, 0.2);
  border: 3px solid var(--ink);
  border-radius: 0;
}

.contact-form label {
  display: grid;
  gap: 10px;
  padding: 24px;
  background: var(--paper);
  color: var(--red);
  font-family: "Anton", sans-serif;
}

.contact-form label span {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
}

.contact-form label em {
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form__wide {
  grid-column: 1 / -1;
}

.contact-form__trap {
  position: absolute;
  left: -9999px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 2px dotted rgba(21, 41, 75, 0.34);
  border-radius: 0;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--red);
}

.contact-form .button {
  width: auto;
  margin: 24px;
}

.contact-form__actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  background: var(--paper);
}

.contact-form__actions .button {
  min-width: 170px;
}

.contact-form__actions .button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.form-message {
  min-height: 1.5em;
  margin: 0;
  padding: 0 24px 24px;
  color: var(--red);
  font-weight: 900;
}

.form-message[data-state="success"] {
  color: #1f6f3b;
}

.form-message[data-state="pending"] {
  color: var(--ink);
}

/* お問い合わせページ / 専用ページとトップ導線 */
.contact-page-main {
  padding-top: var(--header-height);
}

.contact-page::after {
  display: none;
}

.contact-page-shell {
  width: min(100% - 40px, 1020px);
  margin: 0 auto;
  padding: 70px 0 110px;
}

.contact-page-card {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(183, 25, 24, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(21, 41, 75, 0.03) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
  border: 8px solid var(--red);
  box-shadow:
    0 0 0 2px var(--ink),
    8px 8px 0 rgba(21, 41, 75, 0.14);
}

.contact-page-card__masthead {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 42px 36px 30px;
  text-align: center;
}

.contact-page-card__masthead::before {
  display: block;
  width: min(100%, 820px);
  height: 26px;
  background:
    linear-gradient(45deg, var(--red) 25%, transparent 25% 75%, var(--red) 75%) left top / 26px 26px,
    linear-gradient(45deg, transparent 25%, var(--red) 25% 75%, transparent 75%) 13px 0 / 26px 26px;
  content: "";
  mask-image: linear-gradient(90deg, #000 0 22%, transparent 22% 78%, #000 78% 100%);
}

.contact-page-card__masthead p,
.contact-page-card__masthead strong {
  margin: 0;
  font-family: "Anton", sans-serif;
  line-height: 0.9;
  text-transform: uppercase;
}

.contact-page-card__masthead p {
  color: var(--red);
  font-size: clamp(2.5rem, 6vw, 5.1rem);
  text-shadow:
    2px 2px 0 var(--cream),
    4px 4px 0 var(--ink);
}

.contact-page-card__masthead strong {
  color: var(--ink);
  font-size: clamp(2.8rem, 7vw, 6.3rem);
  font-weight: 400;
  text-shadow:
    2px 2px 0 var(--cream),
    4px 4px 0 rgba(183, 25, 24, 0.28);
}

.contact-page-card__masthead::after {
  display: block;
  width: min(76%, 760px);
  height: 12px;
  margin-top: 10px;
  background: var(--ink);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 243, 208, 0.18);
  content: "";
}

.contact-page-intro {
  display: grid;
  gap: 18px;
  padding: 0 clamp(24px, 5vw, 58px) 34px;
}

.contact-page-intro h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.4rem, 8vw, 7.1rem);
  white-space: normal;
  text-shadow: 5px 5px 0 rgba(183, 25, 24, 0.16);
}

.contact-page-intro p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.contact-form--page {
  margin: 0 clamp(18px, 5vw, 58px) clamp(20px, 5vw, 58px);
  box-shadow: 6px 6px 0 rgba(21, 41, 75, 0.14);
}

.contact-form--page textarea {
  min-height: 190px;
  resize: vertical;
}

.contact-cta {
  width: min(1240px, calc(100% - 40px));
  padding-top: 70px;
}

.contact-cta__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-top: 12px solid var(--red);
  box-shadow: 8px 8px 0 rgba(21, 41, 75, 0.14);
}

.contact-cta__panel h2 {
  color: var(--red);
  text-shadow: 4px 4px 0 #fff;
}

.contact-cta__panel p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.contact-cta__panel .button {
  grid-column: 3;
  justify-self: end;
  white-space: nowrap;
  width: auto;
}

/* 共通 / フッター */
.site-footer {
  display: grid;
  place-items: center;
  padding: 28px 34px 30px;
  color: var(--cream);
  background: var(--ink);
  border-top: 8px solid var(--red);
}

.site-footer img {
  width: min(96px, 34vw);
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.38));
}

/* 下部ページ群 / 編集的な下層構成 */
.slice-marquee {
  overflow: hidden;
  border-top: 5px solid var(--red-dark);
  border-bottom: 5px solid var(--red-dark);
  color: var(--cream);
  background: var(--ink);
  font-family: "Anton", sans-serif;
  font-size: clamp(2rem, 6vw, 6.2rem);
  line-height: 0.9;
  white-space: nowrap;
  text-shadow: 4px 4px 0 var(--red-dark);
}

.slice-marquee span {
  display: inline-block;
  padding: 18px 0 22px;
  animation: marquee 22s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-42%);
  }
}

.lower-section {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0;
}

.lower-heading {
  display: grid;
  grid-template-columns: 0.42fr 1.1fr 0.76fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
  padding: 34px;
  background:
    linear-gradient(90deg, transparent 0 20px, rgba(183, 25, 24, 0.055) 20px 21px, transparent 21px 42px),
    var(--paper);
  border: 3px solid var(--ink);
  border-top: 12px solid var(--red);
  box-shadow: 8px 8px 0 rgba(21, 41, 75, 0.14);
}

.lower-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.news-heading,
.menu-heading {
  grid-template-columns: 1fr;
  align-items: center;
  margin-bottom: 24px;
  padding: 24px 32px 26px;
}

.news-heading h2,
.menu-heading h2 {
  color: var(--ink);
  font-size: clamp(3rem, 5.4vw, 4.35rem);
  line-height: 0.9;
  text-shadow: 3px 3px 0 rgba(183, 25, 24, 0.16);
}

.menu-heading {
  color: var(--cream);
  background:
    linear-gradient(90deg, var(--red), var(--red-dark));
}

.menu-heading h2 {
  color: var(--cream);
  text-shadow: 3px 3px 0 rgba(21, 41, 75, 0.56);
}

.news-feed {
  overflow: hidden;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 0;
  box-shadow: 8px 8px 0 rgba(21, 41, 75, 0.14);
}

.news-row__body {
  display: grid;
  grid-template-columns: minmax(118px, 0.28fr) minmax(82px, 0.16fr) minmax(0, 0.56fr);
  gap: clamp(16px, 2.4vw, 34px);
  align-items: center;
  min-height: 84px;
  padding: 12px clamp(18px, 2.6vw, 34px);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(183, 25, 24, 0.045) 1px, transparent 1px) 0 0 / 36px 36px,
    var(--paper);
  border-bottom: 2px solid rgba(21, 41, 75, 0.2);
  transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.news-row a.news-row__body:hover,
.news-row a.news-row__body:focus-visible {
  color: var(--ink);
  background: var(--yellow);
  transform: translateX(6px);
}

.news-row__body--static {
  cursor: default;
}

.news-row time,
.news-row span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  font-weight: 900;
  line-height: 1.2;
}

.news-row span {
  color: var(--red);
}

.news-row h3,
.news-row p {
  margin-bottom: 0;
}

.news-row h3 {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.65vw, 1.55rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.news-row p {
  color: var(--muted);
  font-weight: 800;
}

.news-row a.news-row__body:hover p,
.news-row a.news-row__body:focus-visible p,
.news-row a.news-row__body:hover h3,
.news-row a.news-row__body:focus-visible h3,
.news-row a.news-row__body:hover span,
.news-row a.news-row__body:focus-visible span {
  color: var(--ink);
}

.news-empty {
  min-height: 84px;
  padding: 26px 28px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(183, 25, 24, 0.045) 1px, transparent 1px) 0 0 / 36px 36px,
    var(--paper);
}

.news-empty p {
  margin-bottom: 0;
  font-weight: 900;
  color: var(--muted);
}

/* ニュース詳細ページ / 投稿詳細テンプレート */
.news-detail-main {
  padding-top: var(--header-height);
}

.news-detail-page::after {
  display: none;
}

.news-detail-shell {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 96px;
}

.news-detail-back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 18px;
  color: var(--red);
  font-family: "Anton", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}

.news-detail-back::before {
  margin-right: 8px;
  content: "<";
}

.news-detail-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 26% 18%, rgba(255, 255, 255, 0.24), transparent 23%),
    linear-gradient(90deg, transparent 0 23px, rgba(183, 25, 24, 0.035) 23px 24px, transparent 24px 46px),
    linear-gradient(0deg, transparent 0 23px, rgba(21, 41, 75, 0.028) 23px 24px, transparent 24px 46px),
    #fadbae;
  border: 9px solid var(--red);
  box-shadow:
    0 0 0 3px var(--ink),
    12px 12px 0 rgba(21, 41, 75, 0.16);
}

.news-detail-card::before,
.news-detail-card::after {
  display: none;
}

.news-detail-card__masthead {
  display: grid;
  justify-items: center;
  padding: 22px 18px 30px;
  text-align: center;
  pointer-events: none;
}

.news-detail-card__masthead::before {
  display: block;
  width: 100%;
  height: 34px;
  margin-bottom: 18px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='198' height='38' viewBox='0 0 198 38'%3E%3Cpath fill='%23b71918' d='M0 0h18v19H0zm36 0h18v19H36zm72 0h18v19h-18zm72 0h18v19h-18zM18 19h18v19H18zm36 0h18v19H54zm36 0h18v19H90zm36 0h18v19h-18zm36 0h18v19h-18zM72 0h18v19H72zm72 0h18v19h-18z'/%3E%3C/svg%3E") left top / 178px 34px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='198' height='38' viewBox='0 0 198 38'%3E%3Cpath fill='%23b71918' d='M0 0h18v19H0zm36 0h18v19H36zm72 0h18v19h-18zm72 0h18v19h-18zM18 19h18v19H18zm36 0h18v19H54zm36 0h18v19H90zm36 0h18v19h-18zm36 0h18v19h-18zM72 0h18v19H72zm72 0h18v19h-18z'/%3E%3C/svg%3E") right top / 178px 34px no-repeat;
  content: "";
}

.news-detail-card__masthead::after {
  display: block;
  width: min(74%, 700px);
  height: 20px;
  margin-top: 18px;
  background-color: #10294f;
  background-image:
    linear-gradient(90deg, rgba(255, 242, 207, 0.1), transparent 18%, transparent 82%, rgba(255, 242, 207, 0.1));
  border-radius: 999px;
  box-shadow:
    inset 0 2px 0 rgba(255, 243, 208, 0.16),
    inset 0 -2px 0 rgba(23, 10, 7, 0.22),
    0 2px 0 rgba(23, 10, 7, 0.2);
  content: "";
}

.news-detail-header-image {
  display: block;
  width: min(32vw, 396px);
  max-width: 46%;
  height: auto;
  margin: 0 auto;
}

.news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  padding: 0 42px 0;
  color: var(--red);
  font-family: "Anton", sans-serif;
  font-size: 1.05rem;
}

.news-detail-meta time {
  color: var(--ink);
}

.news-detail-card h1 {
  max-width: 860px;
  margin: 0;
  padding: 16px 42px 30px;
  color: var(--navy);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.24;
  white-space: normal;
  overflow-wrap: anywhere;
  text-shadow:
    2px 2px 0 var(--paper-deep),
    4px 4px 0 rgba(183, 25, 24, 0.16);
}

.news-detail-image {
  display: flex;
  justify-content: center;
  margin: 0 42px 30px;
  padding: clamp(16px, 2vw, 26px);
  background: rgba(255, 243, 208, 0.68);
  border: 3px solid var(--navy);
  box-shadow:
    6px 6px 0 rgba(21, 41, 75, 0.16),
    inset 0 0 0 8px rgba(236, 208, 155, 0.5);
}

.news-detail-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(68vh, 760px);
  object-fit: contain;
}

.news-detail-content {
  margin: 0 42px 54px;
  padding: 30px 34px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 243, 208, 0.82), rgba(247, 228, 187, 0.74));
  border-top: 8px solid var(--navy);
  border-right: 2px solid rgba(21, 41, 75, 0.28);
  border-bottom: 8px solid var(--navy);
  border-left: 2px solid rgba(21, 41, 75, 0.28);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 800;
  line-height: 1.9;
}

.news-detail-card:not(.has-content) .news-detail-content {
  display: none;
}

.news-detail-card:not(.has-image) .news-detail-content {
  margin-top: 4px;
}

.news-detail-content > *:last-child {
  margin-bottom: 0;
}

.news-detail-content a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.news-detail-content ul,
.news-detail-content ol {
  padding-left: 1.3em;
}

/* メニュー詳細ページ / メニュー一覧テンプレート */
.menu-page-main {
  padding-top: var(--header-height);
}

.menu-page::after {
  display: none;
}

.menu-page-shell {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 96px;
}

.menu-page-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 14%, rgba(255, 255, 255, 0.24), transparent 22%),
    linear-gradient(90deg, transparent 0 23px, rgba(183, 25, 24, 0.035) 23px 24px, transparent 24px 46px),
    linear-gradient(0deg, transparent 0 23px, rgba(21, 41, 75, 0.028) 23px 24px, transparent 24px 46px),
    #fadbae;
  border: 9px solid var(--red);
  box-shadow:
    0 0 0 3px var(--ink),
    12px 12px 0 rgba(21, 41, 75, 0.16);
}

.menu-page-card__masthead {
  display: grid;
  justify-items: center;
  padding: 22px 18px 30px;
  pointer-events: none;
}

.menu-page-card__masthead::before {
  display: block;
  width: 100%;
  height: 34px;
  margin-bottom: 16px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='198' height='38' viewBox='0 0 198 38'%3E%3Cpath fill='%23b71918' d='M0 0h18v19H0zm36 0h18v19H36zm72 0h18v19h-18zm72 0h18v19h-18zM18 19h18v19H18zm36 0h18v19H54zm36 0h18v19H90zm36 0h18v19h-18zm36 0h18v19h-18zM72 0h18v19H72zm72 0h18v19h-18z'/%3E%3C/svg%3E") left top / 178px 34px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='198' height='38' viewBox='0 0 198 38'%3E%3Cpath fill='%23b71918' d='M0 0h18v19H0zm36 0h18v19H36zm72 0h18v19h-18zm72 0h18v19h-18zM18 19h18v19H18zm36 0h18v19H54zm36 0h18v19H90zm36 0h18v19h-18zm36 0h18v19h-18zM72 0h18v19H72zm72 0h18v19h-18z'/%3E%3C/svg%3E") right top / 178px 34px no-repeat;
  content: "";
}

.menu-page-card__masthead::after {
  display: block;
  width: min(74%, 700px);
  height: 20px;
  margin-top: 18px;
  background-color: #10294f;
  background-image:
    linear-gradient(90deg, rgba(255, 242, 207, 0.1), transparent 18%, transparent 82%, rgba(255, 242, 207, 0.1));
  border-radius: 999px;
  box-shadow:
    inset 0 2px 0 rgba(255, 243, 208, 0.16),
    inset 0 -2px 0 rgba(23, 10, 7, 0.22),
    0 2px 0 rgba(23, 10, 7, 0.2);
  content: "";
}

.menu-page-header-image {
  width: min(40vw, 420px);
  max-width: 48%;
  height: auto;
}

.menu-page-intro {
  padding: 0 42px 28px;
}

.menu-page-intro h1 {
  margin-bottom: 0;
  color: var(--ink);
  font-family: "Anton", sans-serif;
  font-size: clamp(2.65rem, 5.2vw, 5rem);
  font-weight: 400;
  line-height: 0.92;
  text-shadow:
    3px 3px 0 var(--paper-deep),
    5px 5px 0 rgba(183, 25, 24, 0.16);
  text-transform: uppercase;
}

.menu-page-banner {
  position: relative;
  margin: 0 42px 34px;
  overflow: hidden;
  background: var(--ink);
  border: 3px solid var(--ink);
  border-top: 9px solid var(--red);
  box-shadow: 7px 7px 0 rgba(21, 41, 75, 0.16);
}

.menu-page-banner::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 243, 208, 0.18), transparent 18%, transparent 82%, rgba(255, 243, 208, 0.18)),
    linear-gradient(0deg, rgba(23, 10, 7, 0.24), transparent 18%, transparent 82%, rgba(255, 243, 208, 0.1));
  content: "";
}

.menu-page-banner img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
}

.menu-page-list {
  display: grid;
  gap: 18px;
  padding: 0 42px 54px;
}

.menu-secret-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: -34px 52px 26px auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.72;
}

.menu-secret-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-secret-button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.secret-comic-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 28px;
  visibility: hidden;
  background: rgba(13, 27, 52, 0.84);
  opacity: 0;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.secret-comic-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.secret-comic-modal__panel {
  position: relative;
  display: grid;
  place-items: center;
  width: min(92vw, 760px);
  max-height: 88vh;
}

.secret-comic-modal__panel img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 88vh;
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.28);
}

.secret-comic-modal__close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--cream);
  background: var(--red);
  border: 2px solid var(--cream);
  border-radius: 50%;
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
  font-family: "Anton", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.secret-comic-modal__close:focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: 3px;
}

.menu-page-item {
  --menu-photo-width: 288px;
  --menu-photo-height: 264px;
  --menu-photo-ratio: 288 / 264;
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow: hidden;
  background: rgba(255, 243, 208, 0.72);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(21, 41, 75, 0.14);
}

.menu-page-item--reverse {
  flex-direction: row-reverse;
}

.menu-page-item--wide-photo {
  --menu-photo-width: 603px;
  --menu-photo-height: 388px;
  --menu-photo-ratio: 603 / 388;
}

.menu-page-item--side-photo {
  --menu-photo-width: 486px;
  --menu-photo-height: 389px;
  --menu-photo-ratio: 486 / 389;
}

.menu-page-item--dessert-photo {
  --menu-photo-width: 288px;
  --menu-photo-height: 264px;
  --menu-photo-ratio: 288 / 264;
}

.menu-page-item--shake-photo {
  --menu-photo-width: 287px;
  --menu-photo-height: 271px;
  --menu-photo-ratio: 287 / 271;
}

.menu-page-item figure {
  flex: 0 0 var(--menu-photo-width);
  flex-shrink: 0;
  width: var(--menu-photo-width);
  height: var(--menu-photo-height);
  aspect-ratio: var(--menu-photo-ratio);
  min-width: var(--menu-photo-width);
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(21, 41, 75, 0.08) 25%, transparent 25% 50%, rgba(21, 41, 75, 0.08) 50% 75%, transparent 75%),
    var(--paper-deep);
  background-size: 24px 24px, auto;
}

.menu-page-item--reverse figure {
  order: 0;
}

.menu-page-item figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-page-item--photo-zoom figure {
  display: block;
}

.menu-page-item__body {
  flex: 1;
  position: relative;
  display: grid;
  align-content: center;
  min-width: 0;
  padding: clamp(24px, 4vw, 42px);
  padding-bottom: clamp(74px, 7vw, 100px);
  background:
    linear-gradient(90deg, rgba(183, 25, 24, 0.045) 1px, transparent 1px) 0 0 / 36px 36px,
    rgba(255, 243, 208, 0.82);
}

.menu-page-item--body-top .menu-page-item__body {
  align-content: start;
}

.menu-page-item--compact-body .menu-page-item__body {
  padding-bottom: clamp(44px, 4vw, 56px);
}

.menu-page-item__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  margin-bottom: 16px;
}

.menu-page-item__head span,
.menu-page-item__head h2,
.menu-page-item__head strong {
  font-family: "Anton", sans-serif;
  line-height: 1;
}

.menu-page-item__head span {
  position: absolute;
  right: clamp(20px, 3vw, 34px);
  bottom: clamp(20px, 3vw, 34px);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--cream);
  background: var(--red);
  border: 2px solid var(--cream);
  border-radius: 50%;
  box-shadow: 2px 2px 0 var(--ink);
}

.menu-page-item__head h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-page-item__head strong {
  color: var(--red);
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
  white-space: nowrap;
}

.menu-page-item__body p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  font-weight: 900;
  line-height: 1.8;
}

.menu-page-menu-groups {
  display: grid;
  gap: 12px;
  width: 100%;
  min-width: 0;
  max-width: 620px;
}

.menu-page-menu-group {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.menu-page-menu-group b {
  width: fit-content;
  color: var(--red);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.82rem, 1.12vw, 0.96rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.menu-page-menu-group .menu-page-menu-line {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  width: 100%;
  min-width: 0;
  max-width: none;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  font-weight: 900;
  line-height: 1.65;
}

.menu-page-menu-group span {
  flex: 0 0 auto;
  white-space: nowrap;
}

.menu-page-price-list {
  display: grid;
  gap: 4px;
  width: min(100%, 360px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-page-price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  color: var(--muted);
  font-size: clamp(0.86rem, 1.18vw, 0.98rem);
  font-weight: 900;
  line-height: 1.55;
}

.menu-page-price-list span {
  min-width: 0;
  white-space: nowrap;
}

.menu-page-price-list b {
  color: var(--red);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1em;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.menu-head {
  max-width: none;
  margin-bottom: 24px;
  padding: 40px;
  color: var(--cream);
  background:
    linear-gradient(90deg, var(--red), var(--red-dark));
  border: 3px solid var(--ink);
  border-radius: 0;
  box-shadow: 8px 8px 0 rgba(21, 41, 75, 0.14);
}

.menu-head h2,
.menu-head .eyebrow {
  color: var(--cream);
  text-shadow: 3px 3px 0 rgba(21, 41, 75, 0.48);
}

.menu-head p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 243, 208, 0.84);
  font-weight: 800;
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.72fr);
  gap: 24px;
  align-items: start;
}

.menu-side {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  display: grid;
  gap: 14px;
  min-width: 0;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(21, 41, 75, 0.14);
}

.menu-poster {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(21, 41, 75, 0.14);
}

.menu-poster img {
  width: 100%;
  height: auto;
}

.menu-order-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.menu-order-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(200px, 1.14fr);
  grid-template-areas: "body image";
  align-items: center;
  min-height: 246px;
  padding: 24px 20px 22px 24px;
  overflow: hidden;
  color: var(--cream);
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255, 242, 207, 0.1), transparent 42%),
    var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(21, 41, 75, 0.16);
  isolation: isolate;
  transition: transform 0.22s ease;
}

.menu-order-card::before {
  position: absolute;
  inset: 8px;
  z-index: -1;
  border: 1px dashed rgba(255, 242, 207, 0.36);
  content: "";
}

.menu-order-card::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 210, 0, 0.2), transparent 28%),
    linear-gradient(135deg, transparent 42%, rgba(0, 0, 0, 0.18));
  content: "";
}

.menu-order-card--delivery {
  background:
    linear-gradient(180deg, rgba(255, 242, 207, 0.14), transparent 42%),
    var(--red);
}

.menu-order-card__image {
  grid-area: image;
  display: grid;
  place-items: center;
  min-height: 160px;
}

.menu-order-card__image img {
  width: min(108%, 318px);
  max-height: 212px;
  object-fit: contain;
  filter: drop-shadow(4px 5px 0 rgba(21, 41, 75, 0.34));
  transition: transform 0.28s ease;
}

.menu-order-card--delivery .menu-order-card__image img {
  width: min(116%, 350px);
  max-height: 232px;
  transform: scale(1.2);
}

.menu-order-card__body {
  grid-area: body;
  align-self: end;
  display: grid;
  gap: 8px;
}

.menu-order-card__label {
  color: var(--yellow);
  font-family: "Anton", sans-serif;
  font-size: 0.78rem;
  line-height: 1;
  text-transform: uppercase;
}

.menu-order-card strong {
  color: var(--cream);
  font-family: "Anton", sans-serif;
  font-size: clamp(1.95rem, 2.9vw, 2.9rem);
  line-height: 0.95;
  text-shadow: 2px 2px 0 rgba(21, 41, 75, 0.64);
}

.menu-order-card:hover,
.menu-order-card:focus-visible {
  transform: translateY(-3px);
}

.menu-order-card:hover .menu-order-card__image img,
.menu-order-card:focus-visible .menu-order-card__image img {
  transform: rotate(-2deg) scale(1.06);
}

.menu-order-card.is-animating .menu-order-card__image img {
  opacity: 0;
}

.order-flight {
  position: fixed;
  z-index: 80;
  pointer-events: none;
  object-fit: contain;
  filter: drop-shadow(6px 8px 0 rgba(21, 41, 75, 0.34));
  transform-origin: center;
  will-change: transform, opacity;
}

.menu-line {
  position: relative;
  display: block;
  min-width: 0;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  text-align: left;
  background: var(--paper);
  border: 0;
  border-right: 2px solid rgba(21, 41, 75, 0.2);
  border-bottom: 2px solid rgba(21, 41, 75, 0.2);
  cursor: pointer;
  transition: color 0.22s ease, transform 0.22s ease;
}

.menu-line::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247, 228, 187, 0.1), rgba(21, 41, 75, 0.08) 45%, rgba(21, 41, 75, 0.72)),
    linear-gradient(135deg, rgba(183, 25, 24, 0.14), transparent 48%);
  content: "";
}

.menu-line__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.34s ease, filter 0.34s ease;
}

.menu-line__number,
.menu-line__content,
.menu-line__play {
  position: absolute;
  z-index: 1;
}

.menu-line:hover,
.menu-line:focus-visible {
  color: var(--cream);
  transform: translateY(-3px);
}

.menu-line:hover .menu-line__image,
.menu-line:focus-visible .menu-line__image {
  filter: saturate(1.12) brightness(1.06);
  transform: scale(1.08);
}

.menu-line__number,
.menu-line em {
  color: var(--yellow);
  font-family: "Anton", sans-serif;
  font-style: normal;
  line-height: 1;
}

.menu-line__number {
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--cream);
  background: var(--red);
  border: 2px solid var(--cream);
  border-radius: 50%;
  box-shadow: 2px 2px 0 var(--ink);
}

.menu-line__content {
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 10px;
}

.menu-line strong {
  color: var(--cream);
  overflow-wrap: anywhere;
  font-size: clamp(1.24rem, 2vw, 2.12rem);
  line-height: 1.05;
  text-shadow: 0 2px 14px rgba(8, 3, 2, 0.84);
}

.menu-line em {
  font-size: 0.88rem;
  text-shadow: 0 2px 12px rgba(8, 3, 2, 0.92);
}

.menu-line__ingredients--spacer {
  display: block;
  min-height: 2em;
}

.menu-line__play {
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  color: var(--cream);
  background: var(--ink);
  border: 2px solid var(--cream);
  border-radius: 4px;
  font-family: "Anton", sans-serif;
  font-size: 0.82rem;
  line-height: 1;
  text-transform: uppercase;
}

.menu-line__play::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 7px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--cream);
  content: "";
}

.menu-line:hover em,
.menu-line:focus-visible em {
  color: var(--red);
}

.concept.lower-section {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: 0;
  width: min(1240px, calc(100% - 40px));
  padding: 0;
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 rgba(21, 41, 75, 0.14);
}

.concept-panel,
.concept-metrics {
  min-width: 0;
  background:
    linear-gradient(90deg, transparent 0 20px, rgba(183, 25, 24, 0.05) 20px 21px, transparent 21px 42px),
    var(--paper);
}

.concept-panel {
  padding: clamp(28px, 3.8vw, 44px) clamp(34px, 5vw, 64px);
}

.concept-panel h2 {
  color: var(--red);
  text-shadow: 4px 4px 0 #fff;
}

.concept-panel h2 span {
  display: inline;
}

.concept-panel h2 + .concept-panel__body {
  margin-top: clamp(16px, 2.2vw, 28px);
}

.concept-panel__body {
  max-width: 760px;
}

.concept-panel__body p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.95;
}

.concept-panel__body p + p {
  margin-top: 0.9em;
}

.concept-mobile-break {
  display: inline;
}

.concept-metrics {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.concept-metrics li {
  display: grid;
  grid-template-columns: clamp(70px, 8vw, 104px) minmax(180px, 0.92fr) minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  gap: 8px 22px;
  align-items: start;
  padding: clamp(28px, 3.8vw, 44px);
}

.concept-metrics li + li {
  padding-top: 10px;
}

.concept-metrics span,
.concept-metrics strong {
  font-family: "Anton", sans-serif;
}

.concept-metrics span {
  grid-row: 1 / span 3;
  color: var(--red);
  align-self: start;
  font-size: clamp(1.6rem, 3.5vw, 2.9rem);
  line-height: 0.88;
  text-shadow: 3px 3px 0 #fff;
}

.concept-metrics strong {
  grid-column: 3;
  grid-row: 1;
  display: block;
  color: var(--ink);
  font-size: clamp(2.35rem, 4.2vw, 4.2rem);
  line-height: 1;
}

.concept-photo-slot {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 3;
  display: block;
  align-self: start;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  padding: 0;
  margin-top: 0;
  overflow: hidden;
  cursor: default;
  background:
    linear-gradient(135deg, rgba(21, 41, 75, 0.08) 25%, transparent 25% 50%, rgba(21, 41, 75, 0.08) 50% 75%, transparent 75%),
    rgba(255, 243, 208, 0.72);
  background-size: 22px 22px, auto;
  border: 2px dashed rgba(21, 41, 75, 0.38);
  box-shadow: inset 0 0 0 3px rgba(255, 243, 208, 0.62);
}

.concept-photo-slot--media {
  cursor: zoom-in;
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 rgba(21, 41, 75, 0.16);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.concept-photo-slot--media:hover,
.concept-photo-slot--media:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(21, 41, 75, 0.2);
  outline: 0;
}

.concept-photo-slot img,
.concept-photo-slot video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-photo-slot::after {
  position: absolute;
  inset: auto 12px 10px;
  color: rgba(21, 41, 75, 0.6);
  font-family: "Anton", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  content: "Photo";
}

.concept-photo-slot--media::after {
  content: none;
}

.story-media-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 44px);
  background: rgba(8, 3, 2, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.story-media-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.story-media-modal__frame {
  display: grid;
  place-items: center;
  max-width: calc(100vw - clamp(36px, 8vw, 88px));
  max-height: calc(100svh - clamp(96px, 16vw, 150px));
  background: var(--paper);
  border: 3px solid var(--cream);
  box-shadow: 12px 12px 0 rgba(183, 25, 24, 0.36);
}

.story-media-modal__frame img,
.story-media-modal__frame video {
  display: block;
  max-width: calc(100vw - clamp(42px, 9vw, 96px));
  max-height: calc(100svh - clamp(104px, 18vw, 164px));
  width: auto;
  height: auto;
  object-fit: contain;
}

.story-media-modal__frame video {
  background: #000;
}

.story-media-modal__close {
  position: fixed;
  top: max(14px, env(safe-area-inset-top));
  right: max(14px, env(safe-area-inset-right));
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--cream);
  font-size: 2.1rem;
  line-height: 1;
  background: var(--red);
  border: 2px solid var(--cream);
  border-radius: 999px;
  box-shadow: 5px 5px 0 rgba(21, 41, 75, 0.42);
  cursor: pointer;
}

.story-media-modal__close:hover,
.story-media-modal__close:focus-visible {
  transform: translate(-1px, -1px);
  outline: 0;
}

.concept-metrics em {
  grid-column: 3;
  grid-row: 2;
  display: block;
  color: var(--red);
  font-size: 1.02rem;
  font-style: normal;
  font-weight: 800;
}

.concept-metrics p {
  grid-column: 3;
  grid-row: 3;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.85;
}

.visit-contact {
  width: min(1240px, calc(100% - 40px));
}

.visit-contact__head {
  display: grid;
  grid-template-columns: 0.4fr 1fr auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 32px;
  padding: 34px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-top: 12px solid var(--red);
  box-shadow: 8px 8px 0 rgba(21, 41, 75, 0.14);
}

.visit-contact__head .button {
  white-space: nowrap;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 0.4fr);
  gap: 1px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  box-shadow: 8px 8px 0 rgba(21, 41, 75, 0.14);
}

.visit-grid .shop-info,
.visit-grid .map-embed {
  border: 0;
  border-radius: 0;
}

.contact-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  box-shadow: 8px 8px 0 rgba(21, 41, 75, 0.14);
}

.contact-strip .contact-form {
  border: 0;
  border-radius: 0;
}

.contact-strip > div {
  padding: 34px;
  background: var(--cream);
  color: var(--ink);
}

.contact-strip h3 {
  margin-bottom: 18px;
  color: var(--red);
  font-family: "Anton", sans-serif;
  font-size: clamp(2.1rem, 4vw, 4.3rem);
  font-weight: 400;
  text-shadow: 3px 3px 0 #fff;
}

.contact-strip p:last-child {
  margin-bottom: 0;
  color: #65473e;
  font-weight: 800;
}

.official-goods {
  width: min(1240px, calc(100% - 40px));
}

.official-goods__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(21, 41, 75, 0.14);
}

.official-goods__copy {
  padding: 38px;
  background: var(--paper);
  border-top: 12px solid var(--red);
}

.official-goods__copy h2 {
  margin-bottom: 18px;
  color: var(--red);
  font-size: clamp(3.2rem, 8vw, 7rem);
  text-shadow: 5px 5px 0 #fff;
}

.official-goods__copy p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 900;
}

.official-goods__link {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  grid-template-areas:
    "copy icon"
    "arrow icon";
  gap: 14px 30px;
  align-items: center;
  align-content: center;
  min-height: 346px;
  padding: 34px;
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(255, 242, 207, 0.12), transparent 44%),
    radial-gradient(circle at 82% 18%, rgba(255, 210, 0, 0.2), transparent 28%),
    var(--red);
  isolation: isolate;
}

.official-goods__link::before {
  position: absolute;
  inset: 10px;
  z-index: -1;
  border: 1px dashed rgba(255, 242, 207, 0.42);
  content: "";
}

.official-goods__link-copy {
  grid-area: copy;
  display: grid;
  gap: 10px;
  transform: translateY(-43px);
}

.official-goods__link-copy span {
  color: var(--yellow);
  font-size: 1rem;
  font-weight: 900;
}

.official-goods__link-copy strong {
  max-width: 460px;
  color: var(--cream);
  font-family: "Anton", sans-serif;
  font-size: clamp(2.5rem, 4.35vw, 5rem);
  font-weight: 400;
  line-height: 0.88;
  text-shadow: 4px 4px 0 rgba(21, 41, 75, 0.58);
  text-transform: uppercase;
}

.official-goods__arrow {
  position: relative;
  grid-area: arrow;
  align-self: start;
  justify-self: end;
  display: block;
  width: min(86%, 336px);
  height: 104px;
  transform: translate(-28px, -54px);
}

.official-goods__arrow::after {
  display: none;
  position: absolute;
  top: 50%;
  right: -1px;
  width: 18px;
  height: 18px;
  border-top: 4px solid var(--yellow);
  border-right: 4px solid var(--yellow);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.official-goods__arrow img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: min(100%, 336px);
  height: auto;
  filter: drop-shadow(4px 5px 0 rgba(21, 41, 75, 0.24));
}

.official-goods__icon {
  position: relative;
  grid-area: icon;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  align-self: end;
  justify-self: end;
  width: min(100%, 340px);
  min-width: 280px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--ink);
  border: 6px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(21, 41, 75, 0.28);
  cursor: pointer;
  text-decoration: none;
  transform: translateY(51px);
  transition: transform 0.28s ease, opacity 0.18s ease;
}

.official-goods__icon:hover,
.official-goods__icon:focus-visible {
  transform: translateY(51px) rotate(-4deg) scale(1.05);
}

.official-goods__icon.is-animating {
  opacity: 0;
}

.official-goods__icon-inner {
  display: grid;
  place-items: center;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(90deg, var(--red) 0 12%, transparent 12% 24%, var(--red) 24% 36%, transparent 36% 48%, var(--red) 48% 60%, transparent 60% 72%, var(--red) 72% 84%, transparent 84%),
    var(--paper);
  border: 3px solid var(--ink);
}

.official-goods__icon-mark {
  display: grid;
  place-items: center;
  width: 58%;
  aspect-ratio: 1;
  color: var(--cream);
  font-family: "Anton", sans-serif;
  font-size: 0.92rem;
  line-height: 1;
  text-transform: uppercase;
  background: var(--ink);
  border-radius: 50%;
}

.official-goods__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.goods-flight {
  position: fixed;
  z-index: 80;
  display: grid;
  place-items: center;
  pointer-events: none;
  border-radius: 50%;
  filter: drop-shadow(6px 8px 0 rgba(21, 41, 75, 0.32));
  transform-origin: center;
  will-change: transform, opacity;
}

/* メニュー・サービスページ相当 / 詳細モーダル */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(8, 3, 2, 0.78);
  backdrop-filter: blur(12px);
}

.modal.is-open {
  display: grid;
}

.modal__panel {
  position: relative;
  width: min(620px, 100%);
  padding: 34px;
  background: var(--cream);
  border-radius: var(--radius);
  color: var(--ink);
}

.modal__panel h2 {
  margin-bottom: 18px;
  color: var(--red);
  font-family: "Anton", sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 0.95;
  text-shadow: 3px 3px 0 #fff;
}

.modal__panel p:last-child {
  margin-bottom: 0;
  color: #604238;
  font-weight: 800;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--cream);
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

/* メニュー・サービスページ相当 / スマホ用全画面動画 */
.video-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: max(18px, env(safe-area-inset-top)) 18px max(18px, env(safe-area-inset-bottom));
  background: rgba(8, 3, 2, 0.94);
}

.video-fullscreen.is-open {
  display: grid;
}

.video-fullscreen__media {
  width: 100%;
  height: 100%;
  max-width: min(100vw, 62vh);
  max-height: 100%;
  object-fit: contain;
}

.video-fullscreen__close {
  position: fixed;
  top: calc(14px + env(safe-area-inset-top));
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--cream);
  background: rgba(23, 10, 7, 0.66);
  border: 1px solid rgba(255, 242, 207, 0.35);
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  backdrop-filter: blur(12px);
  cursor: pointer;
}

/* 共通 / 表示アニメーション */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

  .reveal,
  .menu-card img,
  .button {
    transition: none;
  }
}

/* 共通 / レスポンシブ対応 */
@media (max-width: 1040px) {
  h1 {
    font-size: 4.7rem;
  }

  h2 {
    font-size: 4.1rem;
  }

  .hero {
    height: min(calc(100vw * 0.571), calc(100svh - var(--header-height)));
    min-height: 560px;
  }

  .news-list,
  .menu-grid,
  .concept,
  .access-layout {
    grid-template-columns: 1fr;
  }

  .lower-heading,
  .news-row__body,
  .concept.lower-section,
  .visit-contact__head,
  .visit-grid,
  .contact-strip,
  .official-goods__panel {
    grid-template-columns: 1fr;
  }

  .contact-cta__panel {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .contact-cta__panel .button {
    grid-column: 2;
    justify-self: end;
  }

  .news-row__body {
    gap: 12px;
    min-height: auto;
    padding: 24px;
  }

  .news-heading,
  .menu-heading {
    padding: 22px 24px 24px;
  }

  .news-card a,
  .menu-card button {
    min-height: 430px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 12px 18px;
  }

  .brand__logo {
    width: 100px;
    height: 100px;
  }

  .header-call {
    display: none;
  }

  .header-order-call {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    padding: 0 12px;
    color: var(--cream);
    font-family: "Anton", sans-serif;
    font-size: 0.94rem;
    line-height: 1;
    text-transform: uppercase;
    background: var(--red);
    border: 2px solid var(--yellow);
    border-radius: 6px;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.28);
  }

  .header-order-call svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .header-order-call:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px;
  }

  .nav-toggle {
    justify-self: end;
    display: block;
  }

  .global-nav {
    position: fixed;
    top: var(--header-height);
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(23, 10, 7, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

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

  .hero {
    height: min(680px, calc(100svh - var(--header-height)));
    min-height: 620px;
  }

  h1 {
    font-size: 3rem;
    text-shadow: 3px 3px 0 #fff;
  }

  h2 {
    font-size: 3rem;
  }

  .section-shell,
  .concept,
  .lower-section,
  .visit-contact,
  .official-goods {
    width: min(100% - 28px, 1180px);
    padding: 82px 0;
  }

  .news.lower-section {
    padding-bottom: 30px;
  }

  .menu.lower-section {
    padding-top: 50px;
  }

  .official-goods.lower-section {
    padding-bottom: 34px;
  }

  .visit-contact.lower-section {
    padding-top: 48px;
    padding-bottom: 34px;
  }

  .contact-cta.lower-section {
    padding-top: 44px;
  }

  .concept.lower-section {
    width: min(100% - 28px, 1180px);
    padding: 0;
  }

  .section-kicker {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

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

  .menu-side {
    position: static;
    max-width: 680px;
    margin: 0 auto;
  }

  .menu-order-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .menu-order-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "body";
    min-height: 150px;
    padding: 14px;
  }

  .menu-order-card__body {
    gap: 2px;
  }

  .menu-order-card strong {
    font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  }

  .menu-order-card__image {
    min-height: 86px;
  }

  .menu-order-card__image img {
    width: min(100%, 182px);
    max-height: 76px;
  }

  .menu-order-card--delivery .menu-order-card__image img {
    width: min(100%, 182px);
    max-height: 76px;
    transform: none;
  }

  .menu-line strong {
    font-size: clamp(1.08rem, 4.9vw, 1.45rem);
  }

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

  .access-phone-link--desktop {
    display: none;
  }

  .access-phone-link--mobile {
    display: inline;
  }

  .visit-grid .access-map-video {
    order: -1;
  }

  .contact-form,
  .contact-form__actions,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .contact-form__actions .button {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
  }

  .site-footer {
    align-items: start;
  }

  .news-detail-shell {
    width: min(100% - 28px, 980px);
    padding: 44px 0 82px;
  }

  .contact-page-shell {
    width: min(100% - 28px, 980px);
    padding: 44px 0 82px;
  }

  .news-detail-card {
    border-width: 6px;
    box-shadow:
      0 0 0 2px var(--ink),
      6px 6px 0 rgba(21, 41, 75, 0.14);
  }

  .news-detail-card__masthead {
    padding: 14px 14px 26px;
  }

  .news-detail-card__masthead::before {
    height: 28px;
    margin-bottom: 16px;
    background-size: 132px 28px, 132px 28px;
  }

  .news-detail-card__masthead::after {
    height: 17px;
    margin-top: 16px;
  }

  .news-detail-header-image {
    width: min(46vw, 340px);
    max-width: 62%;
  }

  .news-detail-meta,
  .news-detail-card h1,
  .news-detail-image,
  .news-detail-content {
    margin-right: 22px;
    margin-left: 22px;
  }

  .news-detail-meta {
    padding-right: 0;
    padding-left: 0;
  }

  .news-detail-card h1 {
    padding-right: 0;
    padding-left: 0;
    font-size: clamp(1.55rem, 7.8vw, 2.55rem);
  }

  .news-detail-image {
    padding: 12px;
  }

  .news-detail-image img {
    max-height: 58vh;
  }

  .news-detail-content {
    padding: 22px;
  }

  .contact-page-card {
    border-width: 6px;
    box-shadow:
      0 0 0 2px var(--ink),
      6px 6px 0 rgba(21, 41, 75, 0.14);
  }

  .contact-page-card__masthead {
    padding: 24px 16px 24px;
  }

  .contact-page-card__masthead::before {
    height: 24px;
    background-size: 24px 24px, 24px 24px;
  }

  .contact-page-card__masthead::after {
    width: 76%;
    height: 12px;
  }

  .contact-page-intro {
    padding-right: 22px;
    padding-left: 22px;
  }

  .contact-form--page {
    margin-right: 22px;
    margin-left: 22px;
  }

  .contact-cta {
    width: min(100% - 28px, 1240px);
    padding-top: 52px;
  }

  .contact-cta__panel {
    gap: 18px;
    padding: 24px;
  }

  .contact-cta__panel .button {
    width: auto;
  }

  .menu-page-shell {
    width: min(100% - 28px, 980px);
    padding: 44px 0 82px;
  }

  .menu-page-card {
    border-width: 6px;
    box-shadow:
      0 0 0 2px var(--ink),
      6px 6px 0 rgba(21, 41, 75, 0.14);
  }

  .menu-page-card__masthead {
    padding: 14px 14px 26px;
  }

  .menu-page-card__masthead::before {
    height: 28px;
    margin-bottom: 16px;
    background-size: 132px 28px, 132px 28px;
  }

  .menu-page-card__masthead::after {
    height: 17px;
    margin-top: 16px;
  }

  .menu-page-header-image {
    width: min(54vw, 340px);
    max-width: 66%;
  }

  .menu-page-intro,
  .menu-page-banner,
  .menu-page-list {
    padding-right: 22px;
    padding-left: 22px;
  }

  .menu-page-banner {
    margin: 0 22px 28px;
    padding: 0;
    border-width: 2px;
    border-top-width: 7px;
    box-shadow: 5px 5px 0 rgba(21, 41, 75, 0.14);
  }

  .menu-page-item,
  .menu-page-item--reverse,
  .menu-page-item--side-photo,
  .menu-page-item--wide-photo,
  .menu-page-item--wide-photo.menu-page-item--reverse {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-page-item--reverse figure {
    order: 0;
  }

  .menu-page-item figure {
    flex-basis: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-width: 0;
  }

  .menu-page-item__head {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-page-item__head strong {
    grid-column: 2;
    justify-self: start;
  }

  .menu-secret-button {
    width: 36px;
    height: 36px;
    margin: -18px 28px 22px auto;
  }

  .secret-comic-modal {
    padding: 12px;
  }

  .secret-comic-modal__panel {
    width: 100%;
    max-height: 94vh;
    padding-top: 42px;
  }

  .secret-comic-modal__panel img {
    max-height: calc(94vh - 42px);
    border-width: 2px;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.24);
  }

  .secret-comic-modal__close {
    top: 0;
    right: 0;
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }
}

@media (max-width: 520px) {
  .brand__logo {
    width: 92px;
    height: 92px;
  }

  h1 {
    font-size: 2.14rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .concept__body p {
    font-size: 1rem;
  }

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

  .hero__main-image {
    position: static;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .hero__overlay {
    display: none;
  }

  .button {
    width: 100%;
  }

  .button--primary {
    min-height: 58px;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 0.95rem;
  }

  .contact-form .button {
    width: calc(100% - 48px);
    margin: 24px;
  }

  .menu-card button {
    min-height: 500px;
  }

  .lower-section,
  .visit-contact,
  .official-goods {
    width: min(100% - 28px, 1240px);
    padding: 68px 0;
  }

  .news.lower-section {
    padding-bottom: 24px;
  }

  .menu.lower-section {
    padding-top: 42px;
  }

  .official-goods.lower-section {
    padding-bottom: 26px;
  }

  .visit-contact.lower-section {
    padding-top: 38px;
    padding-bottom: 26px;
  }

  .contact-cta.lower-section {
    padding-top: 36px;
  }

  .slice-marquee span {
    padding: 12px 0 14px;
  }

  .news-row__body {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }

  .news-heading,
  .menu-heading {
    margin-bottom: 18px;
    padding: 18px 20px 20px;
  }

  .news-heading h2,
  .menu-heading h2 {
    font-size: 2.35rem;
  }

  .news-detail-card__masthead {
    padding: 10px 10px 22px;
  }

  .news-detail-card__masthead::before {
    height: 24px;
    margin-bottom: 14px;
    background-size: 114px 24px, 114px 24px;
  }

  .news-detail-card__masthead::after {
    width: 76%;
    height: 12px;
    margin-top: 14px;
  }

  .news-detail-header-image {
    width: 64%;
    max-width: 64%;
  }

  .news-detail-meta,
  .news-detail-card h1,
  .news-detail-image,
  .news-detail-content {
    margin-right: 16px;
    margin-left: 16px;
  }

  .news-detail-content {
    margin-bottom: 28px;
    padding: 18px;
    font-size: 0.98rem;
  }

  .contact-page-card__masthead {
    padding: 18px 10px 22px;
  }

  .contact-page-card__masthead::before {
    height: 22px;
    background-size: 22px 22px, 22px 22px;
  }

  .contact-page-card__masthead p {
    font-size: clamp(1.95rem, 11vw, 3.1rem);
  }

  .contact-page-card__masthead strong {
    font-size: clamp(2.2rem, 14vw, 3.8rem);
  }

  .contact-page-intro {
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 24px;
  }

  .contact-page-intro h1 {
    font-size: clamp(2.75rem, 15vw, 4.1rem);
  }

  .contact-form--page {
    margin-right: 16px;
    margin-left: 16px;
    margin-bottom: 28px;
  }

  .contact-form label {
    padding: 20px;
  }

  .contact-cta__panel h2 {
    font-size: clamp(2.15rem, 9.7vw, 2.55rem);
    min-width: 0;
  }

  .contact-cta__panel {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(8px, 3vw, 16px);
    padding: clamp(20px, 5vw, 24px);
  }

  .contact-cta__panel .button {
    min-width: clamp(150px, 40vw, 188px);
    min-height: 54px;
    padding: 12px clamp(16px, 4vw, 22px);
    font-size: clamp(0.86rem, 3.5vw, 0.95rem);
  }

  .menu-page-card__masthead {
    padding: 10px 10px 22px;
  }

  .menu-page-card__masthead::before {
    height: 24px;
    margin-bottom: 14px;
    background-size: 114px 24px, 114px 24px;
  }

  .menu-page-card__masthead::after {
    width: 76%;
    height: 12px;
    margin-top: 14px;
  }

  .menu-page-header-image {
    width: 68%;
    max-width: 68%;
  }

  .menu-page-intro,
  .menu-page-banner,
  .menu-page-list {
    padding-right: 16px;
    padding-left: 16px;
  }

  .menu-page-banner {
    margin: 0 16px 24px;
    padding: 0;
    border-top-width: 6px;
  }

  .menu-page-intro h1 {
    font-size: clamp(2.2rem, 12vw, 3.15rem);
  }

  .menu-page-list {
    gap: 14px;
    padding-bottom: 28px;
  }

  .menu-page-item {
    box-shadow: 4px 4px 0 rgba(21, 41, 75, 0.14);
  }

  .menu-page-item__body {
    padding: 22px;
    padding-bottom: 72px;
  }

  .menu-page-item__head {
    gap: 10px 12px;
    margin-bottom: 14px;
  }

  .menu-page-item__head span {
    width: 38px;
    height: 38px;
  }

  .menu-page-item__head h2 {
    font-size: clamp(1.55rem, 8.8vw, 2.55rem);
  }

  .menu-order-panels {
    gap: 8px;
  }

  .menu-order-card {
    min-height: 136px;
    padding: 12px;
  }

  .menu-order-card strong {
    font-size: 1.18rem;
  }

  .menu-order-card__label {
    font-size: 0.68rem;
  }

  .menu-head,
  .concept-panel,
  .contact-strip > div,
  .official-goods__copy {
    padding: 24px;
  }

  .official-goods__link {
    grid-template-columns: minmax(0, 1fr) 128px;
    grid-template-areas:
      "copy copy"
      "arrow icon";
    gap: 14px 16px;
    min-height: 188px;
    padding: 20px;
  }

  .official-goods__link-copy strong {
    max-width: 250px;
    font-size: 2.05rem;
  }

  .official-goods__link-copy {
    transform: none;
  }

  .official-goods__arrow {
    align-self: center;
    justify-self: end;
    width: 178px;
    max-width: 100%;
    height: 70px;
    transform: translate(6px, -2px);
  }

  .official-goods__arrow img {
    top: 0;
    left: 0;
    width: 178px;
  }

  .official-goods__icon {
    justify-self: end;
    width: 128px;
    min-width: 0;
    border-width: 4px;
    box-shadow: 5px 5px 0 rgba(21, 41, 75, 0.24);
    transform: none;
  }

  .official-goods__icon:hover,
  .official-goods__icon:focus-visible {
    transform: rotate(-4deg) scale(1.05);
  }

  .menu-line__number {
    top: 12px;
    left: 12px;
  }

  .menu-line__content {
    right: 12px;
    bottom: 12px;
    left: 12px;
    gap: 7px;
  }

  .menu-line strong {
    font-size: clamp(0.98rem, 4.8vw, 1.1rem);
  }

  .menu-line em {
    font-size: 0.72rem;
  }

  .menu-line__play {
    top: 10px;
    right: 10px;
    min-height: 30px;
    padding: 7px 9px;
    font-size: 0.72rem;
  }

  .concept-metrics li {
    grid-template-columns: minmax(58px, 0.22fr) minmax(0, 1fr);
    gap: 12px 16px;
    padding: 24px;
  }

  .concept-metrics span,
  .concept-metrics strong,
  .concept-photo-slot,
  .concept-metrics em,
  .concept-metrics p {
    grid-column: auto;
    grid-row: auto;
  }

  .concept-metrics span {
    grid-column: 1;
    grid-row: 1 / span 4;
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .concept-photo-slot {
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: 16 / 9;
    min-height: 0;
    margin-top: 0;
  }

  .concept-metrics strong,
  .concept-metrics em,
  .concept-metrics p {
    grid-column: 2;
  }

  .concept-metrics strong {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .concept-panel h2 span {
    display: block;
  }

  .concept-mobile-break {
    display: block;
  }

  .visit-contact__head {
    gap: 14px;
  }

  .menu-card__number {
    font-size: 4rem;
  }

  .modal__panel h2 {
    font-size: 2.6rem;
  }
}

@media (max-width: 370px) {
  .contact-cta__panel {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-cta__panel .button {
    grid-column: 1;
    justify-self: start;
    min-width: 0;
    width: min(100%, 220px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .order-flight {
    display: none;
  }
}
