@charset "UTF-8";

:root {
  --ink: #191713;
  --paper: #f5edcf;
  --paper-light: #fffaf0;
  --red: #d73a2f;
  --red-dark: #9f201f;
  --yellow: #f2c94c;
  --blue: #144f83;
  --green: #679768;
  --line: rgba(25, 23, 19, 0.22);
  --shadow: 5px 5px 0 var(--ink);
  --content: min(1140px, calc(100% - 72px));
  --header-height: 86px;
  --font-display: "Dela Gothic One", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

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

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background-color: var(--paper);
  background-image: radial-gradient(rgba(25, 23, 19, 0.12) 0.7px, transparent 0.7px);
  background-size: 9px 9px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 16px;
  background: #fff;
  color: #000;
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(25, 23, 19, 0.94);
  color: #fff;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  width: var(--content);
  height: 100%;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-logo {
  display: flex;
  min-width: 222px;
  align-items: center;
  gap: 12px;
}

.site-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.site-logo-copy {
  display: grid;
  line-height: 1;
}

.site-logo-copy strong {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.05em;
}

.site-logo-copy small {
  margin-top: 8px;
  color: var(--yellow);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.desktop-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.desktop-nav a {
  position: relative;
  display: block;
  padding: 12px 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--yellow);
  content: "";
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-reserve {
  display: inline-flex;
  min-height: 48px;
  padding: 0 18px;
  border: 2px solid var(--yellow);
  background: var(--red);
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 4px 4px 0 var(--yellow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-reserve:hover {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 var(--yellow);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  place-content: center;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 990;
  inset: var(--header-height) 0 0;
  display: grid;
  overflow-y: auto;
  visibility: hidden;
  transform: translateY(-16px);
  opacity: 0;
  background: var(--ink);
  color: #fff;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  place-content: center;
}

.mobile-menu.is-open {
  visibility: visible;
  transform: none;
  opacity: 1;
}

.mobile-menu nav {
  width: min(560px, calc(100vw - 40px));
  padding: 32px 0 110px;
}

.mobile-menu ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  list-style: none;
}

.mobile-menu a {
  display: flex;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 20px;
}

.mobile-menu a::after {
  color: var(--yellow);
  content: "→";
}

.hero {
  position: relative;
  display: grid;
  min-height: 780px;
  height: 100svh;
  overflow: hidden;
  background: #1a1714;
  color: #fff;
  isolation: isolate;
  align-items: end;
}

.hero-slides,
.hero-slide,
.hero-slide::after {
  position: absolute;
  inset: 0;
}

.hero-slides {
  z-index: -3;
}

.hero-slide {
  visibility: hidden;
  opacity: 0;
  transition: opacity 1.4s ease, visibility 1.4s;
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.hero-slide:nth-child(odd).is-active img {
  animation: hero-drift-right 8s ease-out both;
}

.hero-slide:nth-child(even).is-active img {
  animation: hero-drift-left 8s ease-out both;
}

.hero-slide::after {
  background: linear-gradient(90deg, rgba(17, 14, 12, 0.86) 0%, rgba(17, 14, 12, 0.5) 45%, rgba(17, 14, 12, 0.18) 75%), linear-gradient(0deg, rgba(17, 14, 12, 0.68), transparent 55%);
  content: "";
}

@keyframes hero-drift-right {
  from { transform: scale(1.08) translateX(-1.5%); }
  to { transform: scale(1.08) translateX(1.5%); }
}

@keyframes hero-drift-left {
  from { transform: scale(1.08) translateX(1.5%); }
  to { transform: scale(1.08) translateX(-1.5%); }
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 4.5vw;
  width: 92px;
  height: 68%;
  background: var(--red);
  content: "";
  mix-blend-mode: multiply;
}

.hero::after {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 28px;
  color: rgba(255, 255, 255, 0.75);
  content: "KUMAMOTO / SHINSHIGAI / 11:00 OPEN";
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.28em;
  writing-mode: vertical-rl;
}

.hero-inner {
  display: grid;
  width: var(--content);
  margin: 0 auto;
  padding: calc(var(--header-height) + 76px) 0 76px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 60px;
}

.hero-kicker {
  display: inline-flex;
  width: max-content;
  margin: 0 0 20px;
  padding: 7px 14px;
  transform: rotate(-1.5deg);
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(50px, 7.2vw, 108px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.18;
  text-shadow: 5px 5px 0 rgba(0, 0, 0, 0.35);
}

.hero h1 em {
  color: var(--yellow);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin: 26px 0 0;
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 700;
  line-height: 2;
}

.hero-actions,
.button-row {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  padding: 0 26px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button::after {
  content: "→";
  font-size: 18px;
}

.button:hover {
  transform: translate(4px, 4px);
  box-shadow: 1px 1px 0 var(--ink);
}

.button.is-red {
  background: var(--red);
  color: #fff;
}

.button.is-white {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 5px 5px 0 #fff;
}

.button.is-white:hover {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 1px 1px 0 #fff;
}

.hero-deal {
  position: relative;
  padding: 34px 30px 30px;
  transform: rotate(1.5deg);
  border: 4px solid var(--ink);
  background: var(--paper-light);
  color: var(--ink);
  box-shadow: 12px 12px 0 var(--red);
}

.hero-deal::before {
  position: absolute;
  top: -18px;
  left: 50%;
  width: 92px;
  height: 30px;
  transform: translateX(-50%) rotate(-2deg);
  background: rgba(242, 201, 76, 0.85);
  content: "";
}

.hero-deal-label {
  margin: 0;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.06em;
  text-align: center;
}

.hero-deal strong {
  display: flex;
  margin: 8px 0 0;
  align-items: flex-end;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(58px, 7vw, 88px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.hero-deal strong span {
  padding: 0 5px 8px 0;
  font-size: 25px;
  letter-spacing: 0;
}

.hero-deal-note {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 2px dashed var(--ink);
  font-weight: 900;
  line-height: 1.7;
  text-align: center;
}

.marquee {
  overflow: hidden;
  border-block: 3px solid var(--ink);
  background: var(--yellow);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  display: block;
  padding: 14px 24px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

.marquee-track span::after {
  margin-left: 48px;
  color: var(--red);
  content: "●";
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  padding: 118px 0;
}

.section.is-tight {
  padding-block: 78px;
}

.section.is-ink {
  background: var(--ink);
  color: #fff;
}

.section.is-red {
  background: var(--red);
  color: #fff;
}

.section.is-blue {
  background: var(--blue);
  color: #fff;
}

.section-inner {
  width: var(--content);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  margin-bottom: 52px;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
}

.section-heading.has-character {
  grid-template-columns: 72px minmax(0, 1fr) clamp(220px, 25vw, 340px);
  align-items: center;
}

.section-character {
  --character-rotate: -4deg;
  --character-scale-x: 1;
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  justify-self: end;
  pointer-events: none;
  user-select: none;
  transform-origin: 50% 100%;
  filter: drop-shadow(2px 0 0 rgba(255, 248, 230, 0.86)) drop-shadow(-2px 0 0 rgba(255, 248, 230, 0.86)) drop-shadow(0 2px 0 rgba(255, 248, 230, 0.86)) drop-shadow(7px 8px 0 rgba(16, 14, 12, 0.32));
  animation: character-sway 4.8s ease-in-out infinite;
}

.section-character.is-angle-right {
  --character-rotate: 5deg;
  animation-delay: -1.4s;
}

.section-character.is-mirrored-left {
  --character-rotate: -6deg;
  --character-scale-x: -1;
  animation-delay: -2.6s;
}

.section-character.is-mirrored-right {
  --character-rotate: 4deg;
  --character-scale-x: -1;
  animation-delay: -3.5s;
}

@keyframes character-sway {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--character-rotate)) scaleX(var(--character-scale-x));
  }

  50% {
    transform: translate3d(0, -10px, 0) rotate(var(--character-rotate)) scaleX(var(--character-scale-x));
  }
}

.section-number {
  display: grid;
  width: 68px;
  height: 68px;
  transform: rotate(-4deg);
  border: 3px solid currentColor;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 20px;
  place-items: center;
}

.section-kicker {
  margin: 0 0 4px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.is-ink .section-kicker,
.is-red .section-kicker,
.is-blue .section-kicker {
  color: var(--yellow);
}

.section-heading h2,
.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 64px);
  font-weight: 400;
  line-height: 1.35;
}

.section-heading p:last-child {
  max-width: 720px;
  margin: 14px 0 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
}

.split.is-reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 4px solid var(--ink);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.is-ink .split-media img,
.is-blue .split-media img,
.is-red .split-media img {
  border-color: #fff;
  box-shadow: 8px 8px 0 var(--yellow);
}

.photo-stamp {
  position: absolute;
  right: -18px;
  bottom: -24px;
  display: grid;
  width: 104px;
  height: 104px;
  transform: rotate(9deg);
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
  place-items: center;
}

.split-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(31px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.45;
}

.split-copy h3 mark {
  padding: 0 0.08em;
  background: linear-gradient(transparent 58%, var(--yellow) 58%);
  color: inherit;
}

.split-copy p {
  margin: 24px 0 0;
}

.deal-price {
  display: flex;
  margin: 28px 0 0;
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(50px, 7vw, 88px);
  line-height: 1;
  align-items: baseline;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.deal-price small {
  margin-right: 10px;
  font-size: 24px;
}

.deal-price span {
  font-size: 28px;
}

.curry-base-price {
  margin: 30px 0 42px;
}

.curry-base-label {
  display: inline-flex;
  padding: 5px 13px;
  transform: rotate(-1.5deg);
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #bfe1ff;
  color: var(--ink);
  align-items: center;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  line-height: 1;
  box-shadow: 3px 3px 0 var(--ink);
}

#curry .curry-base-price .deal-price {
  margin: 12px 0 0;
}

.point-grid,
.feature-grid,
.scene-grid,
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.point-card {
  position: relative;
  min-height: 280px;
  padding: 34px 30px;
  border: 3px solid var(--ink);
  background: var(--paper-light);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.point-card:nth-child(2) {
  background: #dce9df;
}

.point-card:nth-child(3) {
  background: #f3c5be;
}

.point-card .card-number {
  display: block;
  margin-bottom: 32px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 16px;
}

.point-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.7vw, 35px);
  font-weight: 400;
  line-height: 1.45;
}

.point-card p {
  margin: 18px 0 0;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border: 3px solid #fff;
  background: #000;
}

.feature-card:first-child {
  grid-column: span 2;
}

.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-card:hover img {
  transform: scale(1.05);
}

.feature-card::after {
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  content: "";
}

.feature-card-copy {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.feature-card-copy span {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.feature-card-copy h3 {
  margin: 5px 0 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 400;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
}

.gallery-strip figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 3px solid var(--ink);
}

.gallery-strip figure:first-child {
  grid-row: span 2;
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-strip figure:hover img {
  transform: scale(1.04);
}

.shop-quick {
  display: grid;
  overflow: hidden;
  border: 4px solid var(--ink);
  background: var(--paper-light);
  color: var(--ink);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
}

.shop-quick-content {
  padding: clamp(36px, 6vw, 76px);
}

.shop-quick h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.4;
}

.shop-quick dl {
  margin: 32px 0 0;
}

.shop-quick dl div,
.info-list div {
  display: grid;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
}

.shop-quick dt,
.info-list dt {
  font-weight: 900;
}

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

.shop-quick-media img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.calendar-card {
  padding: clamp(24px, 4vw, 42px);
  border: 4px solid #fff;
  background: var(--paper-light);
  color: var(--ink);
  box-shadow: 9px 9px 0 var(--yellow);
}

.calendar-card header {
  display: flex;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 3px solid var(--ink);
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.calendar-card header span {
  color: var(--red);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.calendar-card header strong {
  font-family: var(--font-display);
  font-size: clamp(31px, 5vw, 52px);
  font-weight: 400;
  line-height: 1;
}

.calendar-card table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

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

.calendar-card th {
  padding: 6px 2px 10px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 900;
}

.calendar-card td {
  height: 54px;
  padding: 4px 2px;
  border-bottom: 1px solid rgba(25, 23, 19, 0.09);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.calendar-card th:first-child,
.calendar-card td:first-child {
  color: var(--red);
}

.calendar-card th:last-child,
.calendar-card td:last-child {
  color: var(--blue);
}

.calendar-card td span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  place-items: center;
}

.calendar-card td.is-closed span {
  background: var(--green);
  color: #fff;
}

.calendar-note {
  display: flex;
  margin-top: 38px;
  padding: 22px 24px;
  border: 2px dashed rgba(255, 255, 255, 0.58);
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.calendar-note p {
  margin: 0;
}

.calendar-legend {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
}

.calendar-legend::before {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 600px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  isolation: isolate;
  align-items: end;
}

.page-hero > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 14, 12, 0.86), rgba(16, 14, 12, 0.32)), linear-gradient(0deg, rgba(16, 14, 12, 0.7), transparent 60%);
  content: "";
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: var(--content);
  margin: 0 auto;
  padding: calc(var(--header-height) + 90px) 0 72px;
}

.page-kicker {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(45px, 7vw, 92px);
  font-weight: 400;
  line-height: 1.24;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.45);
}

.page-hero p:last-child {
  max-width: 700px;
  margin: 20px 0 0;
  font-size: 17px;
  font-weight: 700;
}

.local-nav-wrap {
  position: sticky;
  z-index: 50;
  top: var(--header-height);
  border-bottom: 3px solid var(--ink);
  background: var(--paper-light);
}

.local-nav {
  display: flex;
  width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: thin;
}

.local-nav a {
  display: grid;
  flex: 1 0 180px;
  min-width: 180px;
  min-height: 78px;
  padding: 12px 22px;
  border-right: 1px solid var(--line);
  align-content: center;
  font-weight: 900;
  line-height: 1.35;
  white-space: nowrap;
}

.local-nav a:first-child {
  border-left: 1px solid var(--line);
}

.local-nav span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 11px;
}

.local-nav a:hover {
  background: var(--yellow);
}

.big-deal {
  display: grid;
  border: 4px solid var(--ink);
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow);
  grid-template-columns: 0.72fr 1.28fr;
}

.big-deal-price {
  display: grid;
  min-height: 0;
  padding: 28px 24px 0;
  border-right: 4px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  place-content: center;
  text-align: center;
}

.big-deal-price small {
  font-family: var(--font-display);
  font-size: 24px;
}

.big-deal-price strong {
  font-family: var(--font-display);
  font-size: clamp(68px, 8vw, 112px);
  font-weight: 400;
  line-height: 1;
}

.big-deal-price span {
  font-size: 22px;
  font-weight: 900;
}

.big-deal-amount {
  display: flex;
  margin-top: 0;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
}

.big-deal-price.is-hanafuda {
  grid-template-columns: minmax(160px, 0.9fr) minmax(0, 1.1fr);
  grid-template-rows: auto auto;
  align-items: start;
  gap: 0 8px;
  padding: 26px 12px 0 24px;
  place-content: stretch;
  text-align: left;
}

.big-deal-hanafuda-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: start;
  min-width: 0;
  align-self: center;
  grid-column: 1;
  grid-row: 1;
}

.big-deal-hanafuda-copy small {
  font-size: clamp(22px, 2.25vw, 34px);
  line-height: 1;
}

.big-deal-hanafuda-copy .big-deal-amount {
  width: 100%;
  align-items: baseline;
  justify-content: flex-start;
}

.big-deal-hanafuda-copy .big-deal-amount strong {
  font-size: clamp(50px, 4.8vw, 72px);
  line-height: 1;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.big-deal-hanafuda-copy .big-deal-amount span {
  margin-left: 5px;
  font-size: clamp(16px, 1.55vw, 22px);
}

.big-deal-hanafuda-art {
  display: block;
  width: min(100%, 170px);
  max-width: 170px;
  height: auto;
  margin: -14px -4px -12px 0;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  transform: rotate(1.2deg);
}

.big-deal-price.is-hanafuda .big-deal-characters {
  width: min(100%, 360px);
  margin: -8px auto -4px;
  align-self: end;
  grid-column: 1 / -1;
  grid-row: 2;
}

.big-deal-characters {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin: -2px auto -4px;
  pointer-events: none;
  user-select: none;
  transform-origin: 50% 100%;
  filter: drop-shadow(5px 6px 0 rgba(16, 14, 12, 0.28));
  animation: characters-cheer 3.4s ease-in-out infinite;
}

@keyframes characters-cheer {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

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

.big-deal-copy {
  display: grid;
  padding: clamp(38px, 7vw, 88px);
  align-content: center;
}

.big-deal-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.35;
}

.big-deal-copy p {
  margin: 22px 0 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 38px 30px 32px;
  border: 3px solid var(--ink);
  background: var(--paper-light);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  counter-increment: step;
}

.step::before {
  display: block;
  margin-bottom: 22px;
  color: var(--red);
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 18px;
}

.step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
}

.step p {
  margin: 14px 0 0;
}

.howto-illustration {
  overflow: hidden;
  margin: 0 0 24px;
  border: 3px solid var(--ink);
  background: #e7dfc5;
}

.howto-illustration img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.howto-motion {
  position: relative;
  overflow: hidden;
  height: 176px;
  margin: 0 0 26px;
  border: 2px solid var(--ink);
  background-color: #e7dfc5;
  background-image: radial-gradient(rgba(25, 23, 19, 0.15) 1px, transparent 1px);
  background-size: 11px 11px;
}

.motion-menu-board {
  position: absolute;
  top: 25px;
  left: 14%;
  display: grid;
  width: 72%;
  padding: 10px;
  transform: rotate(-1deg);
  border: 3px solid var(--ink);
  background: var(--paper-light);
  gap: 8px;
}

.motion-menu-board i {
  position: relative;
  display: block;
  height: 18px;
  border-bottom: 2px solid var(--ink);
}

.motion-menu-board i::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 58%;
  height: 5px;
  background: var(--ink);
  content: "";
}

.motion-menu-board i::after {
  position: absolute;
  top: 1px;
  right: 0;
  width: 29px;
  height: 10px;
  background: var(--red);
  content: "";
}

.motion-pointer {
  position: absolute;
  bottom: 11px;
  left: 13%;
  width: 31px;
  height: 42px;
  transform: rotate(-18deg);
  border: 3px solid var(--ink);
  border-radius: 50% 50% 42% 42%;
  background: var(--yellow);
}

.motion-pointer::before {
  position: absolute;
  top: -20px;
  left: 10px;
  width: 10px;
  height: 27px;
  border: 3px solid var(--ink);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: var(--yellow);
  content: "";
}

.step.is-visible .motion-pointer {
  animation: menu-select 3.4s ease-in-out infinite;
}

@keyframes menu-select {
  0%, 16% { left: 13%; transform: rotate(-18deg) translateY(0); }
  38%, 68% { left: 59%; transform: rotate(-8deg) translateY(-18px); }
  50% { left: 59%; transform: rotate(-8deg) translateY(-11px) scale(0.9); }
  88%, 100% { left: 13%; transform: rotate(-18deg) translateY(0); }
}

.motion-pass {
  background-color: #f0d17a;
}

.motion-hand {
  position: absolute;
  bottom: -24px;
  width: 88px;
  height: 72px;
  border: 3px solid var(--ink);
  border-radius: 50% 50% 16px 16px;
  background: var(--paper-light);
}

.motion-hand.is-left {
  left: -25px;
  transform: rotate(18deg);
}

.motion-hand.is-right {
  right: -25px;
  transform: rotate(-18deg);
}

.motion-hanafuda i,
.exchange-card {
  position: absolute;
  width: 38px;
  height: 57px;
  border: 3px solid var(--ink);
  border-radius: 3px;
  background: var(--red);
  box-shadow: inset 0 0 0 5px #fff;
}

.motion-hanafuda i::before,
.exchange-card::before {
  position: absolute;
  top: 14px;
  left: 11px;
  width: 10px;
  height: 18px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.motion-hanafuda i {
  top: 56px;
  left: 25%;
}

.motion-hanafuda i:nth-child(1) { transform: translateX(-22px) rotate(-9deg); }
.motion-hanafuda i:nth-child(2) { transform: rotate(0); }
.motion-hanafuda i:nth-child(3) { transform: translateX(22px) rotate(9deg); }

.step.is-visible .motion-hanafuda {
  animation: hanafuda-pass 3.4s ease-in-out infinite;
}

@keyframes hanafuda-pass {
  0%, 18% { transform: translateX(-54px) translateY(16px); }
  48%, 72% { transform: translateX(90px) translateY(-15px); }
  88%, 100% { transform: translateX(-54px) translateY(16px); }
}

.motion-exchange {
  background-color: #c9dbcf;
}

.exchange-card {
  top: 57px;
  left: 22px;
}

.exchange-arrow {
  position: absolute;
  top: 62px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 37px;
  line-height: 1;
}

.exchange-glass {
  position: absolute;
  top: 36px;
  right: 25px;
  width: 45px;
  height: 69px;
  transform: perspective(80px) rotateX(-8deg);
  border: 3px solid var(--ink);
  border-top-width: 5px;
  border-radius: 3px 3px 11px 11px;
  background: linear-gradient(0deg, var(--yellow) 0 58%, rgba(255, 255, 255, 0.75) 58%);
}

.exchange-glass::before {
  position: absolute;
  top: -8px;
  left: 5px;
  width: 29px;
  height: 7px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  content: "";
}

.exchange-check {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 4px 9px;
  transform: rotate(-7deg) scale(0);
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
}

.step.is-visible .exchange-card {
  animation: card-exchange 3.4s ease-in-out infinite;
}

.step.is-visible .exchange-glass {
  animation: glass-exchange 3.4s ease-in-out infinite;
}

.step.is-visible .exchange-check {
  animation: exchange-done 3.4s ease-in-out infinite;
}

@keyframes card-exchange {
  0%, 18% { left: 22px; opacity: 1; }
  55%, 100% { left: calc(100% - 65px); opacity: 0; }
}

@keyframes glass-exchange {
  0%, 18% { right: 25px; }
  55%, 78% { right: calc(100% - 76px); transform: perspective(80px) rotateX(-8deg) rotate(-4deg); }
  100% { right: 25px; }
}

@keyframes exchange-done {
  0%, 48% { transform: rotate(-7deg) scale(0); }
  58%, 78% { transform: rotate(-7deg) scale(1); }
  88%, 100% { transform: rotate(-7deg) scale(0); }
}

.menu-section + .menu-section {
  margin-top: 86px;
}

.menu-heading {
  display: flex;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 4px solid var(--ink);
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.menu-heading h2,
.menu-heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
}

.menu-heading span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.menu-list li {
  display: grid;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 22px;
}

.menu-list strong {
  font-size: 17px;
}

.menu-list span {
  color: var(--red-dark);
  font-family: var(--font-display);
  font-size: 16px;
  white-space: nowrap;
}

.menu-card {
  padding: 34px 30px;
  border: 3px solid var(--ink);
  background: var(--paper-light);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.menu-card h3 {
  margin: 0 0 18px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 400;
}

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

.menu-photo-placeholder {
  overflow: hidden;
  margin: 0;
  border: 3px solid var(--ink);
  background: var(--paper-light);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.menu-photo-placeholder > div {
  display: grid;
  aspect-ratio: 4 / 3;
  border-bottom: 3px solid var(--ink);
  background-color: #e7dfc5;
  background-image: radial-gradient(rgba(25, 23, 19, 0.18) 1px, transparent 1px);
  background-size: 12px 12px;
  place-items: center;
}

.menu-photo-placeholder > div span {
  padding: 9px 18px;
  transform: rotate(-3deg);
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
}

.menu-photo-placeholder figcaption {
  display: grid;
  padding: 18px 20px;
  gap: 2px;
}

.menu-photo-placeholder figcaption strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}

.menu-photo-placeholder figcaption small {
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.lunch-photo-stack {
  display: grid;
  padding: clamp(12px, 2vw, 26px) 2% 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(24px, 4vw, 52px);
}

.lunch-photo-orb {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0;
  color: var(--ink);
}

.lunch-photo-orb:nth-child(1) {
  margin-right: 0;
  justify-self: center;
}

.lunch-photo-orb:nth-child(2) {
  width: 91%;
  margin-top: 82px;
  margin-left: 0;
  justify-self: center;
}

.lunch-photo-orb:nth-child(3) {
  width: 97%;
  margin-top: 28px;
  margin-right: 0;
  justify-self: center;
}

.lunch-photo-image {
  display: grid;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1;
  transform: rotate(2.5deg);
  border: 6px solid var(--ink);
  border-radius: 50%;
  background-color: #fff2a1;
  background-image: radial-gradient(circle, rgba(240, 79, 69, 0.34) 2px, transparent 2.35px);
  background-size: 17px 17px;
  box-shadow: 12px 12px 0 var(--yellow), 17px 17px 0 var(--ink);
  place-items: center;
}

.lunch-photo-orb:nth-child(2) .lunch-photo-image {
  transform: rotate(-3.5deg);
  background-color: #bee1ff;
  background-image: radial-gradient(circle, rgba(17, 17, 17, 0.2) 2px, transparent 2.35px);
  box-shadow: -12px 12px 0 var(--pink), -17px 17px 0 var(--ink);
}

.lunch-photo-orb:nth-child(3) .lunch-photo-image {
  transform: rotate(4deg);
  background-color: #cbeea5;
  background-image: radial-gradient(circle, rgba(17, 17, 17, 0.2) 2px, transparent 2.35px);
  box-shadow: 12px 12px 0 var(--blue), 17px 17px 0 var(--ink);
}

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

.lunch-photo-image span {
  padding: 10px 22px;
  transform: rotate(-4deg);
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  box-shadow: 4px 4px 0 var(--ink);
}

.lunch-photo-orb figcaption {
  position: absolute;
  right: -5%;
  bottom: 5%;
  display: grid;
  min-width: min(310px, 76%);
  padding: 14px 18px;
  transform: rotate(-2deg);
  border: 4px solid var(--ink);
  background: #fff;
  box-shadow: 6px 6px 0 var(--red);
  gap: 3px;
}

.lunch-photo-orb:nth-child(2) figcaption {
  right: auto;
  left: -5%;
  transform: rotate(2deg);
  box-shadow: -6px 6px 0 var(--yellow);
}

.lunch-photo-orb:nth-child(3) figcaption {
  right: -3%;
  transform: rotate(-3deg);
  box-shadow: 6px 6px 0 var(--pink);
}

.lunch-photo-orb figcaption strong {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 400;
  line-height: 1.35;
}

.lunch-photo-price {
  width: max-content;
  padding: 2px 9px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 21px);
  line-height: 1.3;
}

.lunch-photo-orb figcaption small {
  color: var(--red-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

@media (max-width: 820px) {
  .lunch-photo-stack {
    padding-inline: 20px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .lunch-photo-orb,
  .lunch-photo-orb:nth-child(2),
  .lunch-photo-orb:nth-child(3) {
    width: min(78vw, 390px);
  }

  .lunch-photo-orb:nth-child(1) {
    margin-right: 2%;
    justify-self: end;
  }

  .lunch-photo-orb:nth-child(2) {
    margin-top: -30px;
    margin-left: 1%;
    justify-self: start;
  }

  .lunch-photo-orb:nth-child(3) {
    margin-top: -24px;
    margin-right: 4%;
    justify-self: end;
  }
}

@media (max-width: 520px) {
  .lunch-photo-stack {
    padding-top: 32px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .lunch-photo-orb,
  .lunch-photo-orb:nth-child(2),
  .lunch-photo-orb:nth-child(3) {
    width: 82%;
  }

  .lunch-photo-image {
    border-width: 4px;
    box-shadow: 7px 7px 0 var(--yellow), 11px 11px 0 var(--ink);
  }

  .lunch-photo-orb:nth-child(2) .lunch-photo-image {
    box-shadow: -7px 7px 0 var(--pink), -11px 11px 0 var(--ink);
  }

  .lunch-photo-orb:nth-child(3) .lunch-photo-image {
    box-shadow: 7px 7px 0 var(--blue), 11px 11px 0 var(--ink);
  }

  .lunch-photo-orb figcaption {
    right: -2%;
    bottom: 0;
    min-width: 82%;
    padding: 10px 12px;
    border-width: 3px;
  }

  .lunch-photo-orb:nth-child(2) figcaption {
    right: auto;
    left: -2%;
  }
}

.menu-note,
.notice-box {
  margin-top: 42px;
  padding: 22px 24px;
  border: 2px dashed var(--ink);
  background: rgba(255, 250, 240, 0.75);
  color: var(--ink);
  font-size: 13px;
}

.lunch-hero-card {
  display: grid;
  overflow: hidden;
  border: 4px solid var(--ink);
  background: var(--paper-light);
  color: var(--ink);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.lunch-hero-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.lunch-hero-copy {
  display: grid;
  padding: clamp(38px, 7vw, 80px);
  align-content: center;
}

.lunch-hero-copy .time-label {
  width: max-content;
  padding: 7px 12px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.lunch-hero-copy h2 {
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-size: clamp(35px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.4;
}

.lunch-hero-copy p {
  margin: 20px 0 0;
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 7vw, 96px);
}

.info-list {
  margin: 0;
}

.map-frame {
  overflow: hidden;
  border: 4px solid var(--ink);
  background: #ddd;
  box-shadow: var(--shadow);
}

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

.contact-intro {
  display: grid;
  margin-bottom: 56px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: 48px;
}

.contact-intro.has-character {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr) minmax(190px, 0.38fr);
  align-items: center;
  gap: 30px;
}

.contact-intro.has-character .section-character {
  max-width: 270px;
}

.contact-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.4;
}

.contact-phone {
  display: grid;
  padding: 28px;
  border: 3px solid var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  align-content: center;
}

.contact-phone small {
  font-weight: 900;
}

.contact-phone strong {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: clamp(22px, 1.8vw, 26px);
  font-weight: 400;
  white-space: nowrap;
}

.contact-form-shell,
.contact-process-card {
  padding: clamp(30px, 6vw, 70px);
  border: 4px solid var(--ink);
  background: var(--paper-light);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-guide {
  display: grid;
  margin-bottom: 42px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-guide span {
  padding: 14px;
  border: 2px solid var(--ink);
  background: #e7dfc5;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.form-guide span + span {
  border-left: 0;
}

.form-guide .is-current {
  background: var(--red);
  color: #fff;
}

.form-row {
  display: grid;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 30px;
}

.form-row label,
.form-label {
  font-weight: 900;
}

.required {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 7px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  vertical-align: middle;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: #fff;
  padding: 14px 16px;
}

.form-row textarea {
  min-height: 220px;
  resize: vertical;
}

.form-row small {
  display: block;
  margin-top: 8px;
  color: #655f53;
  font-size: 12px;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-consent {
  margin: 30px 0 0;
  text-align: center;
}

.contact-submit {
  display: flex;
  width: min(420px, 100%);
  min-height: 68px;
  margin: 30px auto 0;
  padding: 0 24px;
  border: 3px solid var(--ink);
  border-radius: 0;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--ink);
}

.contact-submit:hover {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 var(--ink);
}

.contact-process-page {
  min-height: 100svh;
  padding: 54px 24px;
}

.contact-process-header {
  width: min(980px, 100%);
  margin: 0 auto 28px;
  text-align: center;
}

.contact-process-header a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 18px;
}

.contact-process-header img {
  width: 64px;
  height: 64px;
  padding: 5px;
  background: var(--ink);
  object-fit: contain;
}

.contact-process-main {
  width: min(980px, 100%);
  margin: 0 auto;
}

.contact-process-card h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(29px, 5vw, 48px);
  font-weight: 400;
}

.contact-confirm-list {
  margin: 38px 0 0;
}

.contact-confirm-list > div {
  display: grid;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
}

.contact-confirm-list dt {
  font-weight: 900;
}

.contact-confirm-list dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.contact-process-actions {
  display: flex;
  margin-top: 36px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-process-actions form {
  margin: 0;
}

.contact-process-actions .contact-submit {
  width: auto;
  min-width: 280px;
  margin: 0;
}

.contact-process-back {
  display: inline-flex;
  min-height: 58px;
  padding: 0 22px;
  border: 2px solid var(--ink);
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.contact-error-list {
  padding: 20px 20px 20px 44px;
  border: 2px solid var(--red);
  background: #fff0ed;
  color: var(--red-dark);
}

.contact-complete-mark {
  display: grid;
  width: 84px;
  height: 84px;
  margin-bottom: 26px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  font-family: var(--font-display);
  font-size: 40px;
  place-items: center;
}

.policy-body {
  max-width: 920px;
}

.policy-block + .policy-block {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 2px solid var(--ink);
}

.policy-block h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 400;
}

.policy-block p,
.policy-block ul {
  margin: 12px 0 0;
}

.mail-demo {
  max-width: 720px;
  margin: 0 auto;
  padding: 30px;
  background: #eee7d1;
}

.mail-demo-card {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 50px rgba(25, 23, 19, 0.18);
}

.mail-demo-head {
  padding: 30px;
  background: var(--red);
  color: #fff;
  text-align: center;
}

.mail-demo-head strong {
  display: block;
  font-family: var(--font-display);
  font-size: 25px;
}

.mail-demo-body {
  padding: 34px;
}

.mail-demo-table {
  width: 100%;
  border-collapse: collapse;
}

.mail-demo-table th,
.mail-demo-table td {
  padding: 13px;
  border-bottom: 1px solid #ddd4bd;
  text-align: left;
  vertical-align: top;
}

.mail-demo-table th {
  width: 150px;
  background: #f6f0dd;
}

.mail-demo-foot {
  padding: 26px;
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 82px 0 115px;
  border-top: 4px solid var(--ink);
  background: var(--ink);
  color: #fff;
}

.footer-grid {
  display: grid;
  width: var(--content);
  margin: 0 auto;
  grid-template-columns: 1.05fr 0.8fr 0.8fr;
  gap: 70px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
}

.footer-brand span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.footer-address {
  margin: 26px 0 0;
  color: #d3cec3;
  font-size: 13px;
}

.footer-phone {
  display: inline-block;
  margin-top: 12px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 27px;
}

.footer-title {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  color: #d3cec3;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-notice {
  margin-top: 24px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #d3cec3;
  font-size: 11px;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  width: var(--content);
  margin: 58px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #99938a;
  font-size: 11px;
}

.mobile-actions {
  position: fixed;
  z-index: 800;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  height: 60px;
  border-top: 2px solid var(--ink);
  background: var(--ink);
  color: #fff;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mobile-actions a {
  display: grid;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  place-content: center;
  gap: 0;
  padding: 4px 2px 3px;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.mobile-actions a:first-child {
  background: transparent;
}

.mobile-actions strong {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.05;
}

.mobile-actions span {
  line-height: 1.05;
}

.reveal {
  transform: translateY(24px);
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  transform: none;
  opacity: 1;
}

@media (max-width: 1120px) {
  :root {
    --content: min(100% - 56px, 960px);
  }

  .desktop-nav,
  .header-reserve {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 40px;
  }

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

  .point-card:last-child {
    grid-column: span 2;
  }

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

  .feature-card:first-child {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 74px;
    --content: calc(100% - 44px);
  }

  body {
    padding-bottom: 72px;
    font-size: 15px;
  }

  .site-logo {
    min-width: 0;
  }

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

  .site-logo-copy strong {
    font-size: 14px;
  }

  .site-logo-copy small {
    font-size: 8px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: 700px;
    height: auto;
  }

  .hero::before {
    right: 7vw;
    width: 54px;
  }

  .hero::after {
    display: none;
  }

  .hero-slide::after {
    background: linear-gradient(0deg, rgba(17, 14, 12, 0.92) 3%, rgba(17, 14, 12, 0.55) 57%, rgba(17, 14, 12, 0.28));
  }

  .hero-inner {
    padding: calc(var(--header-height) + 90px) 0 54px;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(44px, 12vw, 76px);
  }

  .hero-deal {
    width: min(420px, calc(100% - 16px));
    justify-self: center;
  }

  .section {
    padding: 84px 0;
  }

  .section-heading {
    margin-bottom: 38px;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }

  .section-heading.has-character {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .section-heading.has-character .section-character {
    width: min(72%, 270px);
    margin-top: -12px;
    grid-column: 2;
  }

  .section-number {
    width: 52px;
    height: 52px;
    font-size: 15px;
  }

  .split,
  .split.is-reverse,
  .shop-quick,
  .big-deal,
  .lunch-hero-card,
  .info-layout,
  .contact-intro {
    grid-template-columns: 1fr;
  }

  .contact-intro.has-character {
    grid-template-columns: 1fr;
  }

  .contact-intro.has-character .section-character {
    width: min(72%, 270px);
    margin-top: -14px;
  }

  .split.is-reverse .split-media {
    order: 0;
  }

  .point-grid,
  .feature-grid,
  .scene-grid,
  .menu-grid,
  .menu-photo-grid,
  .steps,
  .calendar-grid {
    grid-template-columns: 1fr;
  }

  .point-card:last-child,
  .feature-card:first-child {
    grid-column: auto;
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 220px 220px;
  }

  .gallery-strip figure:first-child {
    grid-row: auto;
    grid-column: span 2;
  }

  .shop-quick-media img,
  .lunch-hero-card img {
    min-height: 420px;
  }

  .page-hero {
    min-height: 530px;
  }

  .page-hero-inner {
    padding-bottom: 52px;
  }

  .local-nav {
    width: 100%;
    padding-inline: 16px;
  }

  .local-nav a {
    flex: 0 0 150px;
    min-width: 150px;
    min-height: 68px;
  }

  .big-deal-price {
    min-height: 0;
    padding: 26px 22px 0;
    border-right: 0;
    border-bottom: 4px solid var(--ink);
  }

  .big-deal-price.is-hanafuda {
    grid-template-columns: minmax(146px, 0.88fr) minmax(0, 1.12fr);
    padding: 20px 8px 0 18px;
  }

  .big-deal-hanafuda-art {
    width: min(100%, 150px);
    margin: -12px -3px -10px 0;
  }

  .big-deal-characters {
    width: min(86%, 330px);
  }

  .contact-intro {
    gap: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 28px;
  }

  .footer-grid > div:first-child {
    grid-column: span 2;
  }

  .mobile-actions {
    display: grid;
  }
}

@media (max-width: 520px) {
  :root {
    --content: calc(100% - 32px);
  }

  .header-inner {
    gap: 10px;
  }

  .site-logo {
    gap: 8px;
  }

  .site-logo-copy small {
    display: none;
  }

  .site-logo-copy strong {
    max-width: none;
    font-size: clamp(10px, 3.1vw, 12px);
    line-height: 1.2;
    white-space: nowrap;
  }

  .hero-kicker {
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(39px, 12.5vw, 62px);
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-deal {
    padding-inline: 20px;
    box-shadow: 8px 8px 0 var(--red);
  }

  .hero-deal strong {
    font-size: 62px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading.has-character {
    grid-template-columns: 1fr;
  }

  .section-heading.has-character .section-character {
    width: min(82%, 250px);
    margin-top: 4px;
    grid-column: 1;
    justify-self: center;
  }

  .section-heading h2,
  .section-title {
    font-size: clamp(29px, 9vw, 42px);
  }

  .split-copy h3 {
    font-size: 30px;
  }

  .point-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .gallery-strip {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 260px);
  }

  .gallery-strip figure:first-child {
    grid-column: auto;
  }

  .shop-quick-content {
    padding: 34px 24px;
  }

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

  .shop-quick-media img,
  .lunch-hero-card img {
    min-height: 330px;
  }

  .page-hero {
    min-height: 500px;
  }

  .page-hero h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .big-deal-price strong {
    font-size: 68px;
  }

  .big-deal-price span {
    font-size: 17px;
  }

  .big-deal-characters {
    width: min(92%, 286px);
  }

  .big-deal-hanafuda-copy small {
    font-size: 19px;
  }

  .big-deal-hanafuda-copy .big-deal-amount strong {
    font-size: 47px;
  }

  .big-deal-hanafuda-copy .big-deal-amount span {
    margin-left: 3px;
    font-size: 15px;
  }

  .big-deal-hanafuda-art {
    width: min(100%, 142px);
    margin-right: -2px;
  }

  .big-deal-copy,
  .lunch-hero-copy {
    padding: 34px 24px;
  }

  .menu-heading {
    display: block;
  }

  .menu-heading span {
    display: block;
    margin-bottom: 4px;
  }

  .menu-list li {
    gap: 12px;
  }

  .menu-list strong {
    font-size: 15px;
  }

  .menu-list span {
    font-size: 13px;
  }

  .contact-phone strong {
    font-size: 28px;
  }

  .contact-form-shell,
  .contact-process-card {
    padding: 26px 20px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .form-guide span {
    padding: 10px 5px;
    font-size: 11px;
  }

  .contact-confirm-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .contact-process-page {
    padding: 28px 12px;
  }

  .calendar-card {
    padding: 22px 14px;
    box-shadow: 6px 6px 0 var(--yellow);
  }

  .calendar-card td {
    height: 45px;
    font-size: 12px;
  }

  .calendar-card td span {
    width: 30px;
    height: 30px;
  }

  .contact-process-actions,
  .contact-process-actions form,
  .contact-process-actions .contact-submit,
  .contact-process-back {
    width: 100%;
  }

  .footer-grid,
  .footer-grid > div:first-child {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
  }

  .footer-notice {
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .footer-bottom small {
    display: block;
    white-space: nowrap;
  }

  .footer-bottom > span {
    display: block;
    margin-top: 6px;
  }

  .footer-bottom small span {
    display: inline;
    margin-top: 0;
  }
}

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

  .reveal {
    transform: none;
    opacity: 1;
  }
}

/* ========================================================================== 
   Comic pop theme
   ========================================================================== */

:root {
  --ink: #111111;
  --paper: #ffffff;
  --paper-light: #ffffff;
  --red: #f04f45;
  --red-dark: #bd2635;
  --yellow: #ffe633;
  --blue: #438fdf;
  --green: #83cf43;
  --purple: #b967df;
  --orange: #ff8a3d;
  --pink: #f573b8;
  --line: rgba(17, 17, 17, 0.42);
  --shadow: 8px 8px 0 var(--ink);
}

body {
  background-color: #fff;
  background-image: radial-gradient(circle, rgba(17, 17, 17, 0.07) 10.4px, transparent 11.1px), radial-gradient(circle, rgba(17, 17, 17, 0.07) 10.4px, transparent 11.1px);
  background-position: 0 0, 14px 28px;
  background-size: 28px 56px;
  color: var(--ink);
}

::selection {
  background: var(--pink);
  color: var(--ink);
}

:focus-visible {
  outline-color: var(--pink);
}

.site-header {
  border-bottom: 5px solid var(--ink);
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  box-shadow: 0 6px 0 var(--yellow);
  backdrop-filter: none;
}

.site-logo img,
.footer-brand img {
  filter: grayscale(1) brightness(0);
}

.site-logo-copy small {
  color: var(--red-dark);
}

.desktop-nav ul {
  gap: 7px;
}

.desktop-nav a {
  padding: 7px 10px;
  transform: rotate(-1deg);
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  box-shadow: 2px 2px 0 var(--ink);
  font-size: 11px;
}

.desktop-nav li:nth-child(even) a {
  transform: rotate(1deg);
  background: #fff6ae;
}

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

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  transform: translate(2px, 2px) rotate(0);
  background: var(--yellow);
  box-shadow: none;
}

.header-reserve {
  min-height: 46px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  box-shadow: 5px 5px 0 var(--ink);
}

.menu-toggle {
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
}

.menu-toggle span {
  height: 3px;
  background: var(--ink);
}

.mobile-menu {
  background-color: var(--yellow);
  background-image: radial-gradient(circle, rgba(17, 17, 17, 0.18) 1.2px, transparent 1.4px), repeating-linear-gradient(135deg, transparent 0 30px, rgba(255, 255, 255, 0.25) 31px 34px);
  background-size: 13px 13px, auto;
  color: var(--ink);
  overscroll-behavior: contain;
  place-content: start center;
}

.mobile-menu ul {
  border: 0;
}

.mobile-menu nav {
  padding-top: 42px;
}

.mobile-menu li + li {
  margin-top: 10px;
}

.mobile-menu a {
  padding: 15px 18px;
  transform: rotate(-0.5deg);
  border: 3px solid var(--ink);
  border-radius: 22px;
  background: #fff;
  box-shadow: 5px 5px 0 var(--ink);
}

.mobile-menu li:nth-child(even) a {
  transform: rotate(0.5deg);
  background: #fff;
}

.mobile-menu li a[aria-current="page"] {
  background: #bfe1ff;
}

.mobile-menu a::after {
  color: var(--red);
  font-size: 24px;
}

.hero {
  border-bottom: 6px solid var(--ink);
  background: #fff;
}

.hero-slides {
  inset: 13px;
  overflow: hidden;
  border: 5px solid var(--ink);
  background: var(--blue);
  box-shadow: 9px 9px 0 var(--yellow);
}

.hero-slide::after {
  background-image: linear-gradient(90deg, rgba(17, 17, 17, 0.86), rgba(17, 17, 17, 0.46) 47%, rgba(17, 17, 17, 0.12) 78%);
  background-position: 0 0;
  background-size: auto;
}

.hero::before {
  display: none;
  top: 22%;
  right: 3.2vw;
  width: 94px;
  height: 56%;
  transform: rotate(3deg);
  border: 4px solid var(--ink);
  background-color: var(--red);
  background-image: radial-gradient(circle, rgba(17, 17, 17, 0.24) 6px, transparent 6.6px), radial-gradient(circle, rgba(17, 17, 17, 0.24) 6px, transparent 6.6px);
  background-position: 0 0, 11px 22px;
  background-size: 22px 44px;
  mix-blend-mode: normal;
}

.hero-inner {
  position: relative;
  z-index: 3;
}

.hero-kicker,
.page-kicker {
  position: relative;
  display: inline-flex;
  width: max-content;
  padding: 8px 16px;
  transform: rotate(-1deg);
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  color: var(--red-dark);
  box-shadow: 4px 4px 0 var(--ink);
  letter-spacing: 0.12em;
}

.hero h1,
.page-hero h1 {
  color: #fff;
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
  text-shadow: 4px 4px 0 var(--red), 8px 8px 0 var(--ink);
}

.hero h1 em {
  color: var(--yellow);
}

.hero-lead,
.page-hero p:last-child {
  text-shadow: 2px 2px 0 var(--ink), -1px -1px 0 var(--ink);
}

.hero-deal {
  transform: translateX(24px) rotate(2deg);
  border: 5px solid var(--ink);
  border-radius: 46% 54% 48% 52% / 52% 45% 55% 48%;
  background-color: #fff;
  background-image: radial-gradient(circle, rgba(240, 79, 69, 0.22) 6px, transparent 6.6px), radial-gradient(circle, rgba(240, 79, 69, 0.22) 6px, transparent 6.6px);
  background-position: 0 0, 11px 22px;
  background-size: 22px 44px;
  box-shadow: 11px 11px 0 var(--yellow), 16px 16px 0 var(--ink);
}

.hero-deal::before {
  top: -23px;
  width: 74px;
  height: 36px;
  transform: translateX(-50%) rotate(-4deg);
  border: 3px solid var(--ink);
  background: var(--pink);
}

.hero-deal-label {
  color: var(--red-dark);
  text-shadow: 2px 2px 0 var(--yellow);
}

.hero-deal strong {
  display: grid;
  width: 100%;
  max-width: 100%;
  padding: 0 6px;
  grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  align-items: end;
  gap: 7px;
  font-size: clamp(50px, 5vw, 68px);
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-deal strong .hero-deal-count,
.hero-deal strong small {
  margin: 0;
  padding: 0 0 6px;
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: 0;
  line-height: 1;
}

.hero-deal strong .hero-deal-count {
  justify-self: end;
}

.hero-deal strong small {
  justify-self: start;
}

.hero-deal strong .hero-deal-amount {
  min-width: 0;
  padding: 0;
  justify-self: center;
  font-size: inherit;
  letter-spacing: -0.035em;
  line-height: 1;
  text-align: center;
}

.hero-deal strong .hero-deal-amount .hero-deal-comma {
  display: inline-block;
  margin: 0 0.04em;
  padding: 0;
  font-size: inherit;
  letter-spacing: 0;
  line-height: inherit;
  transform: translateY(-0.025em);
}

@media (min-width: 821px) {
  .hero-deal {
    padding-right: 22px;
    padding-left: 22px;
  }

  .hero-deal strong {
    grid-template-columns: 40px auto 40px;
    gap: 10px;
    justify-content: center;
    font-size: clamp(48px, 5vw, 58px);
  }

  .hero-deal strong .hero-deal-count,
  .hero-deal strong small {
    width: 40px;
    font-size: 16px;
  }

  .hero-deal strong .hero-deal-amount {
    width: auto;
    letter-spacing: -0.03em;
  }
}

@media (min-width: 1121px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 48px;
  }
}

.marquee {
  border-block: 5px solid var(--ink);
  background-color: var(--yellow);
  background-image: radial-gradient(circle, rgba(240, 79, 69, 0.38) 3px, transparent 3.3px), radial-gradient(circle, rgba(240, 79, 69, 0.38) 3px, transparent 3.3px);
  background-position: 0 0, 10.5px 21px;
  background-size: 21px 42px;
}

.marquee-track span::after {
  color: var(--blue);
  content: "★";
}

.section {
  position: relative;
  border-bottom: 5px solid var(--ink);
  background-color: #fff;
  background-image: radial-gradient(circle, rgba(17, 17, 17, 0.065) 6.4px, transparent 7px), radial-gradient(circle, rgba(17, 17, 17, 0.065) 6.4px, transparent 7px);
  background-position: 0 0, 11px 22px;
  background-size: 22px 44px;
}

main > .section:nth-of-type(odd):not(.is-ink):not(.is-red):not(.is-blue) {
  background-color: #fff4a8;
  background-image: radial-gradient(circle, rgba(240, 79, 69, 0.2) 6.4px, transparent 7px), radial-gradient(circle, rgba(240, 79, 69, 0.2) 6.4px, transparent 7px);
  background-position: 0 0, 11px 22px;
  background-size: 22px 44px;
}

.section.is-ink {
  background-color: #242424;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.2) 1.2px, transparent 1.45px), repeating-linear-gradient(135deg, transparent 0 35px, rgba(240, 79, 69, 0.12) 36px 42px);
  background-size: 14px 14px, auto;
}

.section.is-red {
  background-color: var(--red);
  background-image: radial-gradient(circle, rgba(17, 17, 17, 0.2) 1.35px, transparent 1.55px), repeating-linear-gradient(45deg, transparent 0 38px, rgba(255, 230, 51, 0.14) 39px 45px);
  background-size: 13px 13px, auto;
}

.section.is-blue {
  background-color: var(--blue);
  background-image: radial-gradient(circle, rgba(17, 17, 17, 0.2) 1.35px, transparent 1.55px), repeating-linear-gradient(45deg, transparent 0 45px, rgba(255, 230, 51, 0.18) 46px 51px);
  background-size: 13px 13px, auto;
}

.section-heading {
  padding: 24px 28px;
  transform: rotate(-0.35deg);
  border: 5px solid var(--ink);
  border-radius: 30px;
  background: #fff;
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

/* Keep the numbered comic-card designs consistent at every viewport width. */
.section-heading:has(.section-number) {
  background-color: var(--red);
  background-image: radial-gradient(circle, rgba(255, 230, 51, 0.42) 5px, transparent 5.6px), radial-gradient(circle, rgba(255, 230, 51, 0.42) 5px, transparent 5.6px);
  background-position: 0 0, 12px 24px;
  background-size: 24px 48px;
}

.section:nth-of-type(4n + 2) .section-heading:has(.section-number) {
  background-color: var(--blue);
  background-image: radial-gradient(circle, rgba(17, 17, 17, 0.24) 1.6px, transparent 1.9px), radial-gradient(circle, rgba(17, 17, 17, 0.24) 1.6px, transparent 1.9px), repeating-linear-gradient(45deg, transparent 0 24px, rgba(255, 255, 255, 0.2) 25px 30px);
  background-position: 0 0, 6px 12px, 0 0;
  background-size: 12px 24px, 12px 24px, auto;
}

.section:nth-of-type(4n + 3) .section-heading:has(.section-number) {
  background-color: var(--pink);
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5) 5px, transparent 5.6px), radial-gradient(circle, rgba(240, 79, 69, 0.44) 2px, transparent 2.4px);
  background-position: 0 0, 14px 14px;
  background-size: 28px 28px;
}

.section:nth-of-type(4n) .section-heading:has(.section-number) {
  background-color: var(--yellow);
  background-image: radial-gradient(circle, rgba(240, 79, 69, 0.44) 1.8px, transparent 2.1px), repeating-linear-gradient(-45deg, transparent 0 27px, rgba(17, 17, 17, 0.12) 28px 33px);
  background-size: 13px 13px, auto;
}

/* The menu page keeps its intentionally varied seven-card sequence. */
.menu-page #special .section-heading {
  background-color: var(--red);
  background-image: radial-gradient(circle, rgba(255, 230, 51, 0.42) 5px, transparent 5.6px), radial-gradient(circle, rgba(255, 230, 51, 0.42) 5px, transparent 5.6px);
  background-position: 0 0, 12px 24px;
  background-size: 24px 48px;
}

.menu-page #quick .section-heading {
  background-color: var(--blue);
  background-image: radial-gradient(circle, rgba(17, 17, 17, 0.24) 1.6px, transparent 1.9px), radial-gradient(circle, rgba(17, 17, 17, 0.24) 1.6px, transparent 1.9px), repeating-linear-gradient(45deg, transparent 0 24px, rgba(255, 255, 255, 0.2) 25px 30px);
  background-position: 0 0, 6px 12px, 0 0;
  background-size: 12px 24px, 12px 24px, auto;
}

.menu-page #standard .section-heading {
  background-color: var(--pink);
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5) 5px, transparent 5.6px), radial-gradient(circle, rgba(240, 79, 69, 0.44) 2px, transparent 2.4px);
  background-position: 0 0, 14px 14px;
  background-size: 28px 28px;
}

.menu-page #fried .section-heading {
  background-color: var(--yellow);
  background-image: radial-gradient(circle, rgba(240, 79, 69, 0.44) 1.8px, transparent 2.1px), repeating-linear-gradient(-45deg, transparent 0 27px, rgba(17, 17, 17, 0.12) 28px 33px);
  background-size: 13px 13px, auto;
}

.menu-page #oden .section-heading {
  background-color: var(--green);
  background-image: radial-gradient(circle, rgba(17, 17, 17, 0.2) 4px, transparent 4.6px), radial-gradient(circle, rgba(17, 17, 17, 0.2) 4px, transparent 4.6px);
  background-position: 0 0, 11px 22px;
  background-size: 22px 44px;
}

.menu-page #drinks .section-heading {
  background-color: var(--blue);
  background-image: radial-gradient(circle, rgba(255, 230, 51, 0.45) 5px, transparent 5.6px), radial-gradient(circle, rgba(255, 230, 51, 0.45) 5px, transparent 5.6px);
  background-position: 0 0, 13px 26px;
  background-size: 26px 52px;
}

.menu-page #photo-menu .section-heading {
  background-color: var(--pink);
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.46) 4.5px, transparent 5.1px), radial-gradient(circle, rgba(17, 17, 17, 0.2) 1.8px, transparent 2.2px);
  background-position: 0 0, 13px 13px;
  background-size: 26px 26px;
}

.section-heading.has-character {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.section-heading.has-character > .section-number,
.section-heading.has-character > div {
  position: relative;
  z-index: 3;
}

.section-heading.has-character > .section-character {
  position: relative;
  z-index: 2;
}

.copy-bands .copy-band {
  display: inline;
}

.section-heading:nth-child(even) {
  transform: rotate(0.35deg);
}

.section-number {
  transform: rotate(-8deg);
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--red);
}

.section-kicker,
.is-ink .section-kicker,
.is-red .section-kicker,
.is-blue .section-kicker {
  display: inline-block;
  width: max-content;
  margin-bottom: 9px;
  padding: 3px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--pink);
  color: var(--ink);
  letter-spacing: 0.12em;
}

.section-heading h2,
.section-title,
.shop-quick h2,
.contact-intro h2 {
  color: var(--ink);
  text-shadow: 3px 3px 0 var(--yellow);
}

.local-nav-wrap {
  border-block: 4px solid var(--ink);
  background: #fff;
  box-shadow: 0 5px 0 var(--yellow);
}

.local-nav {
  gap: 0;
}

.local-nav a {
  border-right: 3px solid var(--ink);
  background-color: #fff;
  background-image: radial-gradient(circle, rgba(17, 17, 17, 0.12) 2.6px, transparent 2.9px), radial-gradient(circle, rgba(17, 17, 17, 0.12) 2.6px, transparent 2.9px);
  background-position: 0 0, 9.5px 19px;
  background-size: 19px 38px;
  transition: transform 0.18s ease, background 0.18s ease;
}

.local-nav a:first-child {
  border-left: 3px solid var(--ink);
}

.local-nav a:nth-child(4n + 2) {
  background-color: #bfe1ff;
}

.local-nav a:nth-child(4n + 3) {
  background-color: #fff1a0;
}

.local-nav a:nth-child(4n + 4) {
  background-color: #f9b9da;
}

.local-nav a:hover {
  transform: translateY(-4px);
  background-color: var(--green);
}

.local-nav span {
  color: var(--red-dark);
  text-shadow: 1px 1px 0 #fff;
}

.button,
.contact-submit,
.contact-process-back {
  border: 4px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.button.is-red,
.contact-submit {
  background: var(--red);
  color: #fff;
}

.button.is-white {
  border-color: var(--ink);
  background: #fff;
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.button:hover,
.contact-submit:hover,
.contact-process-back:hover {
  transform: translate(4px, 4px) rotate(-1deg);
  box-shadow: 2px 2px 0 var(--ink);
}

.button.is-white:hover {
  background: #fff;
  color: var(--ink);
}

.point-card,
.step,
.menu-card,
.menu-photo-placeholder,
.calendar-card,
.notice-box,
.contact-phone,
.contact-form-shell,
.contact-process-card,
.shop-quick,
.lunch-hero-card,
.big-deal,
.map-frame {
  border-width: 5px;
  border-color: var(--ink);
  box-shadow: var(--shadow);
}

.point-card,
.step,
.menu-card,
.calendar-card,
.notice-box,
.contact-form-shell,
.contact-process-card {
  background-color: #fff;
  background-image: radial-gradient(circle, rgba(17, 17, 17, 0.12) 2.8px, transparent 3.1px), radial-gradient(circle, rgba(17, 17, 17, 0.12) 2.8px, transparent 3.1px);
  background-position: 0 0, 10px 20px;
  background-size: 20px 40px;
}

.point-card:nth-child(3n + 1),
.menu-card:nth-child(4n + 1),
.step:nth-child(3n + 1) {
  background-color: #fff2a1;
  background-image: radial-gradient(circle, rgba(240, 79, 69, 0.24) 2.9px, transparent 3.2px), radial-gradient(circle, rgba(240, 79, 69, 0.24) 2.9px, transparent 3.2px);
  background-position: 0 0, 10px 20px;
  background-size: 20px 40px;
}

.point-card:nth-child(3n + 2),
.menu-card:nth-child(4n + 2),
.step:nth-child(3n + 2) {
  background-color: #bee1ff;
  background-image: radial-gradient(circle, rgba(17, 17, 17, 0.17) 2.8px, transparent 3.1px), radial-gradient(circle, rgba(17, 17, 17, 0.17) 2.8px, transparent 3.1px);
  background-position: 0 0, 10px 20px;
  background-size: 20px 40px;
}

.point-card:nth-child(3n + 3),
.menu-card:nth-child(4n + 3),
.step:nth-child(3n + 3) {
  background-color: #ffc6dd;
  background-image: radial-gradient(circle, rgba(17, 17, 17, 0.14) 2.8px, transparent 3.1px), radial-gradient(circle, rgba(17, 17, 17, 0.14) 2.8px, transparent 3.1px);
  background-position: 0 0, 10px 20px;
  background-size: 20px 40px;
}

.menu-card:nth-child(4n + 4) {
  background-color: #cbeea5;
  background-image: radial-gradient(circle, rgba(17, 17, 17, 0.16) 2.8px, transparent 3.1px), radial-gradient(circle, rgba(17, 17, 17, 0.16) 2.8px, transparent 3.1px);
  background-position: 0 0, 10px 20px;
  background-size: 20px 40px;
}

.top-point-grid > .point-card:nth-child(1) {
  background: #fff2a1;
}

.top-point-grid > .point-card:nth-child(2) {
  background: #bee1ff;
}

.top-point-grid > .point-card:nth-child(3) {
  background: #ffc6dd;
}

.point-card:nth-child(odd),
.menu-card:nth-child(odd),
.step:nth-child(odd) {
  transform: rotate(-0.45deg);
}

.point-card:nth-child(even),
.menu-card:nth-child(even),
.step:nth-child(even) {
  transform: rotate(0.45deg);
}

.point-card .card-number,
.step::before {
  color: var(--red-dark);
  text-shadow: 2px 2px 0 #fff;
}

.menu-card h3 {
  display: inline-block;
  margin-bottom: 22px;
  padding: 7px 14px;
  transform: rotate(-1deg);
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--red);
}

.menu-list {
  border-top: 2px dashed var(--ink);
}

.menu-list li {
  border-bottom: 2px dashed rgba(17, 17, 17, 0.34);
}

.menu-list span {
  padding: 2px 8px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
}

.feature-card,
.gallery-strip figure,
.split-media img,
.shop-quick-media img,
.lunch-hero-card img,
.howto-illustration,
.menu-photo-placeholder > div {
  border-width: 5px;
  border-color: var(--ink);
  box-shadow: 7px 7px 0 var(--yellow);
}

.feature-card:nth-child(odd),
.gallery-strip figure:nth-child(odd) {
  transform: rotate(-0.35deg);
}

.feature-card:nth-child(even),
.gallery-strip figure:nth-child(even) {
  transform: rotate(0.35deg);
}

.feature-card-copy h3 {
  color: #fff;
  -webkit-text-stroke: 1px var(--ink);
  paint-order: stroke fill;
  text-shadow: 3px 3px 0 var(--red), 5px 5px 0 var(--ink);
}

.photo-stamp,
.time-label {
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.shop-quick,
.lunch-hero-card {
  background-color: #fff;
  background-image: radial-gradient(circle, rgba(67, 143, 223, 0.18) 2.8px, transparent 3.1px), radial-gradient(circle, rgba(67, 143, 223, 0.18) 2.8px, transparent 3.1px);
  background-position: 0 0, 10px 20px;
  background-size: 20px 40px;
}

.shop-quick {
  background-position: 0 0, 7.5px 15px;
  background-size: 15px 30px;
}

.shop-quick dl div,
.info-list div {
  border-top: 2px dashed var(--ink);
}

.calendar-card:nth-child(odd) {
  transform: rotate(-0.7deg);
  background-color: #fff2a1;
}

.calendar-card:nth-child(even) {
  transform: rotate(0.7deg);
  background-color: #bee1ff;
}

.calendar-card {
  background-image: none;
}

.calendar-card header {
  border-bottom: 4px solid var(--ink);
}

.calendar-card th,
.calendar-card td {
  border-color: rgba(17, 17, 17, 0.28);
}

.calendar-card td.is-closed span {
  border: 2px solid var(--ink);
  background: var(--green);
  color: var(--ink);
}

.big-deal {
  overflow: hidden;
  background: var(--red);
}

.big-deal-price {
  border-right-width: 5px;
  background-color: var(--yellow);
  background-image: radial-gradient(circle, rgba(240, 79, 69, 0.3) 3px, transparent 3.3px), radial-gradient(circle, rgba(240, 79, 69, 0.3) 3px, transparent 3.3px);
  background-position: 0 0, 10.5px 21px;
  background-size: 21px 42px;
}

.big-deal-copy {
  background-image: repeating-linear-gradient(145deg, transparent 0 38px, rgba(255, 230, 51, 0.18) 39px 46px);
}

.big-deal-copy h2 {
  color: #fff;
  -webkit-text-stroke: 1.5px var(--ink);
  paint-order: stroke fill;
  text-shadow: 4px 4px 0 var(--ink);
}

/* Comic gradient display type */
.hero h1,
.page-hero h1,
.section-heading h2,
.section-title,
.shop-quick h2,
.contact-intro h2,
.big-deal-copy h2 {
  background-image: linear-gradient(180deg, #fff36a 0%, #ffb21e 46%, #f04f45 100%);
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.8px var(--ink);
  paint-order: stroke fill;
  text-shadow: none;
  filter: drop-shadow(5px 5px 0 var(--ink));
}

.hero h1 em {
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.contact-phone {
  transform: rotate(1deg);
  border-radius: 28px;
  background-color: var(--yellow);
  background-image: radial-gradient(circle, rgba(240, 79, 69, 0.3) 3px, transparent 3.3px), radial-gradient(circle, rgba(240, 79, 69, 0.3) 3px, transparent 3.3px);
  background-position: 0 0, 10.5px 21px;
  background-size: 21px 42px;
}

.form-guide span {
  border: 3px solid var(--ink);
  background: #bee1ff;
}

.form-guide .is-current {
  background: var(--red);
}

.form-row {
  border-top: 2px dashed var(--ink);
}

.form-row input,
.form-row textarea {
  border: 3px solid var(--ink);
  border-radius: 16px;
  background: #fff;
  box-shadow: 4px 4px 0 var(--yellow);
}

.required {
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--red);
}

.page-hero {
  border-bottom: 6px solid var(--ink);
  background: #fff;
}

.page-hero > img {
  inset: 13px;
  width: calc(100% - 26px);
  height: calc(100% - 26px);
  border: 5px solid var(--ink);
  box-shadow: 9px 9px 0 var(--yellow);
}

.page-hero::before {
  inset: 13px;
  background-image: linear-gradient(90deg, rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.25));
  background-position: 0 0;
  background-size: auto;
}

.site-footer {
  border-top: 6px solid var(--ink);
  background-color: var(--yellow);
  background-image: radial-gradient(circle, rgba(240, 79, 69, 0.32) 1.45px, transparent 1.65px);
  background-size: 13px 13px;
  color: var(--ink);
}

.footer-brand span,
.footer-title,
.footer-phone {
  color: var(--red-dark);
}

.footer-address,
.footer-links a,
.footer-notice,
.footer-bottom {
  color: var(--ink);
}

.footer-links a {
  display: flex;
  width: min(100%, 230px);
  padding: 3px 9px;
  border: 2px solid transparent;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-links a::after {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  box-shadow: 2px 2px 0 var(--ink);
  color: var(--ink);
  content: "→";
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1;
  transition: transform 0.18s ease;
  place-items: center;
}

.footer-grid > div:nth-child(2) .footer-links li:nth-child(1) a::after { content: "杯"; }
.footer-grid > div:nth-child(2) .footer-links li:nth-child(2) a::after { content: "品"; }
.footer-grid > div:nth-child(2) .footer-links li:nth-child(3) a::after { content: "昼"; }
.footer-grid > div:nth-child(2) .footer-links li:nth-child(4) a::after { content: "店"; }
.footer-grid > div:nth-child(2) .footer-links li:nth-child(5) a::after { content: "問"; }
.footer-grid > div:nth-child(3) .footer-links li:nth-child(1) a::after { content: "IG"; font-size: 10px; }
.footer-grid > div:nth-child(3) .footer-links li:nth-child(2) a::after { content: "予"; }
.footer-grid > div:nth-child(3) .footer-links li:nth-child(3) a::after { content: "P"; }
.footer-grid > div:nth-child(3) .footer-links li:nth-child(4) a::after { content: "社"; }

.footer-links a:hover::after {
  transform: translateX(3px) rotate(5deg);
}

.footer-links a:hover {
  border-color: var(--ink);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
}

.footer-notice {
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  box-shadow: 4px 4px 0 var(--red);
}

.footer-bottom {
  border-top: 3px solid var(--ink);
}

.footer-group {
  padding-top: 28px;
  border-top: 3px solid var(--ink);
  grid-column: 1 / -1;
}

.footer-group .footer-title {
  margin-bottom: 14px;
}

.footer-group-links {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.footer-group-links a {
  display: flex;
  min-height: 54px;
  padding: 9px 12px;
  border: 3px solid var(--ink);
  background: #fff;
  box-shadow: 4px 4px 0 var(--ink);
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.45;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.footer-group-links a::after {
  flex: 0 0 auto;
  content: "↗";
  font-family: var(--font-display);
  font-size: 15px;
}

.footer-group-links li:nth-child(4n + 1) a {
  background-color: var(--red);
  background-image: radial-gradient(circle, rgba(255, 230, 51, 0.48) 3px, transparent 3.4px);
  background-size: 18px 18px;
}

.footer-group-links li:nth-child(4n + 2) a {
  background-color: var(--blue);
  background-image: repeating-linear-gradient(135deg, transparent 0 12px, rgba(17, 17, 17, 0.1) 12px 18px);
}

.footer-group-links li:nth-child(4n + 3) a {
  background-color: var(--pink);
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 25%, transparent 25%), linear-gradient(225deg, rgba(255, 255, 255, 0.18) 25%, transparent 25%);
  background-size: 24px 24px;
}

.footer-group-links li:nth-child(4n) a {
  background-color: var(--yellow);
  background-image: radial-gradient(circle, rgba(240, 79, 69, 0.3) 2px, transparent 2.4px);
  background-size: 13px 13px;
}

.footer-group-links a:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.mobile-actions {
  isolation: isolate;
  border-top: 4px solid var(--ink);
  background: #fff;
  color: var(--ink);
}

.mobile-actions::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: -4px;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--ink);
  pointer-events: none;
}

.mobile-actions a {
  position: relative;
  z-index: 2;
  border-right: 2px solid var(--ink);
}

.mobile-actions a:first-child {
  background-color: var(--red);
  background-image: radial-gradient(circle, rgba(255, 230, 51, 0.42) 5px, transparent 5.6px), radial-gradient(circle, rgba(255, 230, 51, 0.42) 5px, transparent 5.6px);
  background-position: 0 0, 12px 24px;
  background-size: 24px 48px;
  color: var(--ink);
}

.mobile-actions a:nth-child(2) {
  background-color: var(--blue);
  background-image: radial-gradient(circle, rgba(17, 17, 17, 0.24) 1.6px, transparent 1.9px), radial-gradient(circle, rgba(17, 17, 17, 0.24) 1.6px, transparent 1.9px), repeating-linear-gradient(45deg, transparent 0 24px, rgba(255, 255, 255, 0.2) 25px 30px);
  background-position: 0 0, 6px 12px, 0 0;
  background-size: 12px 24px, 12px 24px, auto;
  color: var(--ink);
}

.mobile-actions a:nth-child(3) {
  background-color: var(--pink);
  background-image: linear-gradient(135deg, rgba(17, 17, 17, 0.16) 25%, transparent 25%), linear-gradient(225deg, rgba(17, 17, 17, 0.16) 25%, transparent 25%), linear-gradient(315deg, rgba(17, 17, 17, 0.16) 25%, transparent 25%), linear-gradient(45deg, rgba(17, 17, 17, 0.16) 25%, transparent 25%);
  background-position: -9px 0, -9px 0, 0 0, 0 0;
  background-size: 18px 18px;
  color: var(--ink);
}

.mobile-actions a:nth-child(4) {
  background-color: var(--yellow);
  background-image: radial-gradient(circle, rgba(240, 79, 69, 0.44) 1.8px, transparent 2.1px), repeating-linear-gradient(-45deg, transparent 0 27px, rgba(17, 17, 17, 0.12) 28px 33px);
  background-size: 13px 13px, auto;
  color: var(--ink);
}

.mobile-actions a:hover,
.mobile-actions a:active,
.mobile-actions a:focus-visible {
  filter: brightness(0.9);
}

/* The full Hibari cast stands directly above the fixed mobile actions. */
.mobile-actions::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% - 2px);
  width: min(100vw, 590px);
  aspect-ratio: 1968 / 640;
  opacity: 0;
  filter: blur(8px);
  transform: translate(-50%, 36px) scale(0.96);
  z-index: 1;
  background: url("../images/characters-footer-crowd.png?v=20260815b") center bottom / contain no-repeat;
  will-change: opacity, transform, filter;
  pointer-events: none;
}

.mobile-actions.is-crowd-visible::before {
  animation: hibari-crowd-fade-in 1.8s linear both;
}

@keyframes hibari-crowd-fade-in {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translate(-50%, 36px) scale(0.96);
  }
  25% {
    opacity: 0.08;
  }
  55% {
    opacity: 0.42;
    filter: blur(3px);
    transform: translate(-50%, 14px) scale(0.985);
  }
  80% {
    opacity: 0.82;
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-actions.is-crowd-visible::before {
    animation: none;
    opacity: 1;
    filter: none;
    transform: translate(-50%, 0) scale(1);
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 60px;
  }

  .site-footer {
    padding-bottom: calc(115px + min(32.6vw, 208px));
  }
}

@media (max-width: 820px) {
  .hero-deal {
    transform: rotate(2deg);
  }

  .hero-slides,
  .page-hero > img,
  .page-hero::before {
    inset: 8px;
  }

  .page-hero > img {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
  }

  .section-heading {
    padding: 20px;
    border-width: 4px;
    border-radius: 23px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .hero h1,
  .page-hero h1 {
    -webkit-text-stroke-width: 1.4px;
    text-shadow: none;
    filter: drop-shadow(4px 4px 0 var(--ink));
  }

  .big-deal-price {
    border-right: 0;
    border-bottom: 5px solid var(--ink);
  }

  #food .feature-grid,
  #special .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  #food .feature-card,
  #food .feature-card:first-child,
  #special .feature-card,
  #special .feature-card:first-child {
    min-height: 0;
    aspect-ratio: 4 / 5;
    grid-column: auto;
  }

  #food .feature-card img,
  #special .feature-card img {
    min-height: 0;
  }

  #food .feature-card-copy,
  #special .feature-card-copy {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  #food .feature-card-copy h3,
  #special .feature-card-copy h3 {
    font-size: clamp(17px, 4.8vw, 26px);
    line-height: 1.25;
  }
}

@media (max-width: 520px) {
  :root {
    --shadow: 5px 5px 0 var(--ink);
  }

  body:has(.contact-form-shell) .page-hero h1 {
    font-size: clamp(30px, 9vw, 46px);
    white-space: nowrap;
  }

  .lunch-photo-orb:nth-child(1) {
    z-index: 3;
  }

  .lunch-photo-orb:nth-child(2) {
    z-index: 2;
  }

  .lunch-photo-orb:nth-child(3) {
    z-index: 1;
  }

  .lunch-photo-orb figcaption {
    gap: 5px;
  }

  .lunch-photo-orb figcaption small {
    display: block;
    min-height: 1.35em;
    line-height: 1.35;
  }

  .site-footer {
    padding-top: 56px;
    padding-bottom: calc(32px + min(32.6vw, 208px));
  }

  .footer-bottom {
    margin-top: 34px;
    padding-top: 18px;
  }

  .footer-group {
    padding-top: 20px;
  }

  .footer-group-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .footer-group-links a {
    min-height: 58px;
    padding: 8px 9px;
    box-shadow: 3px 3px 0 var(--ink);
    font-size: 11px;
  }

  body {
    background-size: 16px 16px;
  }

  .hero-slides {
    border-width: 3px;
    box-shadow: 5px 5px 0 var(--yellow);
  }

  .page-hero > img {
    border-width: 3px;
    box-shadow: 5px 5px 0 var(--yellow);
  }

  .section-heading {
    padding: 18px;
    border-width: 3px;
    border-radius: 18px;
  }

  .section-number {
    border-width: 3px;
  }

  .point-card,
  .step,
  .menu-card,
  .calendar-card,
  .notice-box,
  .contact-phone,
  .contact-form-shell,
  .contact-process-card,
  .shop-quick,
  .lunch-hero-card,
  .big-deal,
  .map-frame {
    border-width: 3px;
  }

  .desktop-nav a,
  .button,
  .contact-submit,
  .contact-process-back {
    border-width: 3px;
  }

  .menu-page #special .section-heading {
    background-color: var(--red);
    background-image: radial-gradient(circle, rgba(255, 230, 51, 0.42) 5px, transparent 5.6px), radial-gradient(circle, rgba(255, 230, 51, 0.42) 5px, transparent 5.6px);
    background-position: 0 0, 12px 24px;
    background-size: 24px 48px;
  }

  .menu-page #quick .section-heading {
    background-color: var(--blue);
    background-image: radial-gradient(circle, rgba(17, 17, 17, 0.24) 1.6px, transparent 1.9px), radial-gradient(circle, rgba(17, 17, 17, 0.24) 1.6px, transparent 1.9px), repeating-linear-gradient(45deg, transparent 0 24px, rgba(255, 255, 255, 0.2) 25px 30px);
    background-position: 0 0, 6px 12px, 0 0;
    background-size: 12px 24px, 12px 24px, auto;
  }

  .menu-page #standard .section-heading {
    background-color: var(--pink);
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5) 5px, transparent 5.6px), radial-gradient(circle, rgba(240, 79, 69, 0.44) 2px, transparent 2.4px);
    background-position: 0 0, 14px 14px;
    background-size: 28px 28px;
  }

  .menu-page #fried .section-heading {
    background-color: var(--yellow);
    background-image: radial-gradient(circle, rgba(240, 79, 69, 0.44) 1.8px, transparent 2.1px), repeating-linear-gradient(-45deg, transparent 0 27px, rgba(17, 17, 17, 0.12) 28px 33px);
    background-size: 13px 13px, auto;
  }

  .menu-page #oden .section-heading {
    background-color: var(--green);
    background-image: radial-gradient(circle, rgba(17, 17, 17, 0.2) 4px, transparent 4.6px), radial-gradient(circle, rgba(17, 17, 17, 0.2) 4px, transparent 4.6px);
    background-position: 0 0, 11px 22px;
    background-size: 22px 44px;
  }

  .menu-page #drinks .section-heading {
    background-color: var(--blue);
    background-image: radial-gradient(circle, rgba(255, 230, 51, 0.45) 5px, transparent 5.6px), radial-gradient(circle, rgba(255, 230, 51, 0.45) 5px, transparent 5.6px);
    background-position: 0 0, 13px 26px;
    background-size: 26px 52px;
  }

  .menu-page #photo-menu .section-heading {
    background-color: var(--pink);
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.46) 4.5px, transparent 5.1px), radial-gradient(circle, rgba(17, 17, 17, 0.2) 1.8px, transparent 2.2px);
    background-position: 0 0, 13px 13px;
    background-size: 26px 26px;
  }

  .menu-page .menu-card {
    background-image: none !important;
  }

  body:has(.big-deal) .point-card,
  body:has(.big-deal) .step,
  body:has(.big-deal) .notice-box,
  body:has(.lunch-hero-card) .menu-card,
  body:has(.lunch-hero-card) .lunch-hero-card,
  body:has(.lunch-hero-card) .notice-box,
  body:has(#information) .menu-card,
  body:has(#information) .shop-quick,
  body:has(#information) .notice-box {
    background-image: none !important;
  }

  .section-heading:has(.section-number) {
    background-color: var(--red);
    background-image: radial-gradient(circle, rgba(255, 230, 51, 0.42) 5px, transparent 5.6px), radial-gradient(circle, rgba(255, 230, 51, 0.42) 5px, transparent 5.6px);
    background-position: 0 0, 12px 24px;
    background-size: 24px 48px;
  }

  .section:nth-of-type(4n + 2) .section-heading:has(.section-number) {
    background-color: var(--blue);
    background-image: radial-gradient(circle, rgba(17, 17, 17, 0.24) 1.6px, transparent 1.9px), radial-gradient(circle, rgba(17, 17, 17, 0.24) 1.6px, transparent 1.9px), repeating-linear-gradient(45deg, transparent 0 24px, rgba(255, 255, 255, 0.2) 25px 30px);
    background-position: 0 0, 6px 12px, 0 0;
    background-size: 12px 24px, 12px 24px, auto;
  }

  .section:nth-of-type(4n + 3) .section-heading:has(.section-number) {
    background-color: var(--pink);
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5) 5px, transparent 5.6px), radial-gradient(circle, rgba(240, 79, 69, 0.44) 2px, transparent 2.4px);
    background-position: 0 0, 14px 14px;
    background-size: 28px 28px;
  }

  .section:nth-of-type(4n) .section-heading:has(.section-number) {
    background-color: var(--yellow);
    background-image: radial-gradient(circle, rgba(240, 79, 69, 0.44) 1.8px, transparent 2.1px), repeating-linear-gradient(-45deg, transparent 0 27px, rgba(17, 17, 17, 0.12) 28px 33px);
    background-size: 13px 13px, auto;
  }
}

/* Section-specific pop-comic character cutouts. */
#atmosphere .section-heading.has-character {
  grid-template-columns: 72px minmax(0, 1fr) clamp(180px, 20vw, 250px);
  overflow: visible;
}

#atmosphere .character-tanzaku-staff {
  position: relative;
  z-index: 2;
  width: min(100%, 235px);
  max-width: 235px;
  margin: -74px -6px -68px 0;
}

#oden .section-heading.has-character {
  grid-template-columns: 72px minmax(0, 1fr) clamp(190px, 22vw, 290px);
}

#oden .character-hot-oden {
  width: min(100%, 270px);
  margin-bottom: -48px;
}

#photo-lunch .section-heading.has-character {
  grid-template-columns: 72px minmax(0, 1fr) clamp(280px, 32vw, 440px);
}

#photo-lunch .character-ebi-couple {
  width: min(100%, 420px);
  max-width: 420px;
  margin-bottom: -58px;
}

@media (max-width: 820px) {
  /* Mobile stacking order: card frame, character cutout, then copy. */
  .section-heading.has-character,
  #atmosphere .section-heading.has-character,
  #oden .section-heading.has-character,
  #photo-lunch .section-heading.has-character {
    display: block;
    min-height: clamp(238px, 44vw, 320px);
    overflow: visible;
  }

  .section-heading.has-character > .section-number,
  .section-heading.has-character > div {
    position: relative;
    z-index: 3;
  }

  .section-heading.has-character > div {
    width: 70%;
  }

  .section-heading .copy-bands {
    position: relative;
    z-index: 4;
    margin-top: 18px;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.55;
  }

  .section-heading .copy-bands .copy-band {
    --band-angle: -1.15deg;
    position: relative;
    z-index: 0;
    display: table;
    width: max-content;
    max-width: 100%;
    margin: 6px 0;
    padding: 2px 9px;
    white-space: nowrap;
  }

  .section-heading .copy-bands .copy-band::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 1px -5px;
    transform: rotate(var(--band-angle));
    border: 2px solid var(--ink);
    background: #fff;
    box-shadow: 3px 3px 0 rgba(17, 17, 17, 0.92);
  }

  .section-heading .copy-bands .copy-band:nth-child(4n + 2) {
    --band-angle: 0.8deg;
    margin-left: 7px;
  }

  .section-heading .copy-bands .copy-band:nth-child(4n + 3) {
    --band-angle: -0.45deg;
    margin-left: 2px;
  }

  .section-heading .copy-bands .copy-band:nth-child(4n) {
    --band-angle: 1.1deg;
    margin-left: 10px;
  }

  .section-heading.has-character > .section-character,
  #atmosphere .section-heading.has-character .character-tanzaku-staff,
  #oden .section-heading.has-character .character-hot-oden,
  #photo-lunch .section-heading.has-character .character-ebi-couple {
    position: absolute;
    z-index: 2;
    top: -22px;
    right: 6px;
    width: clamp(210px, 43vw, 320px);
    max-width: none;
    margin: 0;
    grid-column: auto;
    justify-self: auto;
  }

  #atmosphere .section-heading.has-character {
    min-height: clamp(270px, 51vw, 360px);
  }

  #atmosphere .section-heading.has-character .character-tanzaku-staff {
    top: -50px;
    right: 14px;
    width: clamp(175px, 34vw, 245px);
  }

  #oden .section-heading.has-character {
    min-height: clamp(250px, 48vw, 340px);
  }

  #oden .section-heading.has-character .character-hot-oden {
    top: -34px;
    right: 14px;
    width: clamp(185px, 37vw, 270px);
  }

  #photo-lunch .section-heading.has-character {
    min-height: clamp(235px, 42vw, 300px);
  }

  #photo-lunch .section-heading.has-character .character-ebi-couple {
    top: -12px;
    right: 8px;
    width: clamp(270px, 56vw, 410px);
  }
}

@media (max-width: 520px) {
  .section-heading.has-character,
  #atmosphere .section-heading.has-character,
  #oden .section-heading.has-character,
  #photo-lunch .section-heading.has-character {
    min-height: 250px;
  }

  .section-heading.has-character > div {
    width: 72%;
  }

  .section-heading.has-character > .section-character {
    top: -18px;
    right: 12px;
    width: min(60vw, 235px);
  }

  #atmosphere .section-heading.has-character {
    min-height: 285px;
  }

  #atmosphere .section-heading.has-character > div {
    width: 82%;
  }

  #atmosphere .section-heading h2 {
    font-size: clamp(28px, 8.1vw, 34px);
  }

  #atmosphere .section-heading h2 .no-break {
    white-space: nowrap;
  }

  #atmosphere .section-heading.has-character .character-tanzaku-staff {
    top: -46px;
    right: 24px;
    width: min(48vw, 188px);
  }

  #oden .section-heading.has-character {
    min-height: 270px;
  }

  #oden .section-heading.has-character .character-hot-oden {
    top: -30px;
    right: 22px;
    width: min(52vw, 205px);
  }

  #photo-lunch .section-heading.has-character {
    min-height: 250px;
  }

  #photo-lunch .section-heading.has-character .character-ebi-couple {
    top: -8px;
    right: 14px;
    width: min(62vw, 245px);
  }

  #setmeal .section-heading.has-character > .section-character {
    top: -14px;
    right: 4px;
    width: min(55vw, 215px);
  }

  #information .section-heading.has-character > .section-character {
    top: -10px;
    right: -2px;
    width: min(50vw, 198px);
  }

  #information .section-heading.has-character {
    min-height: 205px;
  }
}
