﻿:root {
  --font-body: "Murecho", "BIZ UDGothic", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;
  --font-display: "Murecho", "BIZ UDGothic", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --navy: #062a63;
  --navy-dark: #031638;
  --red: #d80f1f;
  --orange: #f28a00;
  --yellow: #ffd83d;
  --cream: #fff7df;
  --paper: #fffdf5;
  --green: #16a05d;
  --blue: #0f76c8;
  --ink: #141414;
  --muted: #5d6470;
  --shadow: 0 18px 45px rgba(3, 22, 56, .18);
  --header-height: 64px;
  --ticker-height: 42px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--ticker-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  padding-bottom: 86px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 216, 61, .2), transparent 24rem),
    radial-gradient(circle at 90% 0%, rgba(216, 15, 31, .12), transparent 22rem),
    var(--paper);
}

.site-logo,
.nav-panel a,
.host,
.year,
.hero h1,
.tag,
.primary-cta,
.instagram-cta,
.site-footer a,
.eyebrow,
.notice strong,
.solve-copy,
.section-title h2,
.info-card h3,
.info-card strong,
.booth-group h3,
.access-lead,
.hero-area,
.scroll-cue {
  font-family: var(--font-display);
}

h1,
h2,
h3,
.site-logo,
.nav-panel a,
.host,
.year,
.hero-title,
.tag,
.primary-cta,
.instagram-cta,
.site-footer a,
.eyebrow,
.notice strong,
.solve-copy,
.section-title h2,
.info-card h3,
.info-card strong,
.booth-group h3,
.access-lead,
.hero-area,
.scroll-cue {
  font-weight: 700;
}

p,
li,
small,
span,
.section-title span,
.booth-list li,
.note {
  font-weight: 400;
}

.section-title span,
.booth-list li {
  font-family: var(--font-body);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

main {
  padding-top: calc(var(--header-height) + var(--ticker-height));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(3, 22, 56, .92);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--yellow);
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px max(16px, calc((100% - 1120px) / 2));
}

.site-logo {
  font-family: var(--font-display);
  color: #fff;
  text-decoration: none;
  font-weight: 1000;
  max-width: calc(100% - 64px);
  font-size: clamp(.78rem, 2.8vw, 1rem);
  line-height: 1.25;
  text-shadow: 0 3px 10px rgba(0, 0, 0, .28);
}

.news-ticker {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 29;
  width: 100%;
  overflow: hidden;
  background: #315ba8;
  color: #fff;
  box-shadow: 0 8px 18px rgba(3, 22, 56, .18);
}

.news-ticker__link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 6px max(16px, calc((100% - 1120px) / 2));
  color: inherit;
  text-decoration: none;
}

.news-ticker__label {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  min-width: 62px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 1000;
  line-height: 1;
  box-shadow: 0 3px 0 rgba(3, 22, 56, .2);
}

.news-ticker__track {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.news-ticker__text {
  display: inline-block;
  min-width: max-content;
  padding-left: 100%;
  white-space: nowrap;
  font-size: clamp(.84rem, 2.4vw, 1rem);
  font-weight: 800;
  line-height: 1.45;
  animation: newsTickerScroll 24s linear infinite;
}

.news-ticker__text strong {
  color: #ffeb67;
  font-weight: 1000;
}

.news-ticker__url {
  color: #fff;
  font-weight: 1000;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.news-ticker:hover .news-ticker__text,
.news-ticker:focus-within .news-ticker__text {
  animation-play-state: paused;
}

@keyframes newsTickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.nav-toggle {
  position: relative;
  z-index: 41;
  display: grid;
  gap: 6px;
  place-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 12px;
  background: #ffd21f;
  box-shadow: 0 6px 0 rgba(0, 0, 0, .22);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: #071019;
  transition: transform .22s ease, opacity .22s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.header-nav {
  position: fixed;
  inset: 0;
  z-index: 40;
  width: 100vw;
  height: 100dvh;
  pointer-events: none;
}

.header-nav.is-open {
  pointer-events: auto;
}

.nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 22, 56, .56);
  opacity: 0;
  transition: opacity .22s ease;
}

.header-nav.is-open .nav-backdrop {
  opacity: 1;
}

.nav-panel {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 520px);
  align-content: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  padding: 96px 24px 32px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 216, 61, .25), transparent 11rem),
    radial-gradient(circle at 86% 78%, rgba(123, 208, 237, .28), transparent 13rem),
    #fffdf5;
  box-shadow: none;
  transform: translateY(-18px) scale(.96);
  opacity: 0;
  transition: transform .28s cubic-bezier(.2, .8, .2, 1);
}

.header-nav.is-open .nav-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.nav-panel a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 22px;
  border-radius: 22px;
  background: #0b57a8;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  font-weight: 1000;
  box-shadow: 0 7px 0 #063a73;
}

.nav-panel a:nth-child(2) {
  background: #e94235;
  box-shadow: 0 7px 0 #a51d17;
}

.nav-panel a:nth-child(3) {
  background: #55bd78;
  box-shadow: 0 7px 0 #2d7b49;
}

.nav-panel a:nth-child(4) {
  background: #f7b70d;
  color: #071019;
  box-shadow: 0 7px 0 #ad7a00;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-2px);
  outline: none;
}

.hero {
  position: relative;
  min-height: 760px;
  isolation: isolate;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 88px 16px 56px;
  background: var(--navy-dark);
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -70px;
  z-index: 0;
  width: 140%;
  height: 150px;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--paper);
  border-radius: 50% 50% 0 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 22, 56, .95) 0%, rgba(3, 22, 56, .64) 48%, rgba(3, 22, 56, .18) 100%),
    radial-gradient(circle at 50% 30%, rgba(255, 216, 61, .18), transparent 30rem);
}

.hero__visual {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  color: #fff;
  text-align: center;
}

.host {
  display: inline-block;
  margin: 0 0 10px;
  background: var(--red);
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 900;
}

.year {
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 8vw, 6.2rem);
  font-weight: 1000;
  line-height: 1;
  text-shadow: 0 5px 0 var(--red), 0 10px 18px rgba(0, 0, 0, .42);
}

.hero h1 {
  margin: 8px auto 16px;
  max-width: 980px;
  font-size: clamp(2.6rem, 9vw, 6.4rem);
  line-height: 1.08;
  font-weight: 1000;
  letter-spacing: 0;
  color: #fff;
  text-shadow:
    0 5px 0 var(--red),
    0 0 0 #fff,
    0 12px 24px rgba(0, 0, 0, .5);
}

.tag {
  display: inline-block;
  margin: 0 0 24px;
  padding: 5px 34px;
  background: var(--yellow);
  color: #000;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 1000;
  line-height: 1.2;
  box-shadow: 0 10px 0 rgba(0, 0, 0, .22);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: min(860px, 100%);
  margin: 0 auto 24px;
}

.hero__facts div {
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  border: 3px solid var(--yellow);
  border-radius: 8px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.hero__facts span {
  display: block;
  color: var(--red);
  font-size: .85rem;
  font-weight: 900;
}

.hero__facts strong {
  display: block;
  font-size: clamp(1rem, 3vw, 1.55rem);
  line-height: 1.35;
}

.primary-cta,
.instagram-cta,
.site-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 0 #8d0610;
}

.section {
  padding: 64px 0;
}

.section__inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section--navy {
  color: #fff;
  background:
    linear-gradient(135deg, var(--navy-dark), var(--navy)),
    var(--navy);
}

.section--cream {
  background: linear-gradient(180deg, #fffaf0, #ffefb9);
}

.intro__grid,
.access-grid,
.sns-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-size: clamp(1.35rem, 4vw, 2.2rem);
  font-weight: 1000;
  line-height: 1.35;
}

.intro h2,
.sns-section h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.4;
}

.intro p,
.access-grid p {
  font-size: 1.05rem;
  font-weight: 700;
}

.notice {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 24px;
  border: 4px solid var(--red);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.notice strong {
  color: var(--red);
  font-size: 3rem;
  line-height: 1.1;
}

.notice span {
  color: var(--muted);
  font-weight: 800;
}

.worry-section {
  position: relative;
  background:
    radial-gradient(circle at 18% 18%, rgba(242, 138, 0, .16), transparent 14rem),
    radial-gradient(circle at 88% 78%, rgba(15, 118, 200, .12), transparent 16rem),
    #fffdf5;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: center;
}

.story-grid--solo {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

.story-copy {
  padding: 34px;
  border: 5px solid var(--red);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.worry-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
}

.worry-list li {
  position: relative;
  padding: 14px 18px 14px 48px;
  border-radius: 8px;
  background: #fff7df;
  font-weight: 900;
  line-height: 1.5;
}

.worry-list li::before {
  content: "!";
  position: absolute;
  left: 16px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 1000;
  line-height: 1;
}

.solve-copy {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 1000;
  line-height: 1.4;
  text-align: center;
}

.solve-copy strong {
  color: var(--red);
}

.character-bubble {
  position: relative;
  align-self: stretch;
  display: grid;
  align-content: end;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy-dark);
  border: 5px solid var(--yellow);
  box-shadow: var(--shadow);
}

.character-bubble img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.character-bubble::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgba(3, 22, 56, .9));
}

.character-bubble p {
  position: relative;
  z-index: 1;
  margin: 0 18px 18px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--red);
  font-size: 1.25rem;
  font-weight: 1000;
  text-align: center;
}

.feature-section {
  position: relative;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(3, 22, 56, .98), rgba(6, 42, 99, .94)),
    var(--navy);
  overflow: hidden;
}

.feature-section::before,
.feature-section::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border: 30px solid rgba(255, 216, 61, .18);
  border-radius: 50%;
}

.feature-section::before {
  left: -120px;
  top: -150px;
}

.feature-section::after {
  right: -140px;
  bottom: -160px;
}

.feature-section .section__inner {
  position: relative;
  z-index: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 260px;
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  border: 4px solid var(--yellow);
  box-shadow: 0 16px 0 rgba(216, 15, 31, .8);
}

.feature-card span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 1000;
}

.feature-card h3 {
  margin: 16px 0 8px;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
}

.feature-card p {
  margin: 0;
  font-weight: 800;
}

.photo-section {
  background:
    linear-gradient(180deg, #fff7df, #fffdf5),
    var(--paper);
}

.section-title {
  margin-bottom: 22px;
  text-align: center;
}

.section-title span {
  display: inline-block;
  padding: 5px 20px;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  font-weight: 1000;
}

.section-title h2 {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
}

.section-title--red h2 {
  color: var(--red);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.photo-card {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 4px solid #fff;
  background: var(--navy-dark);
  box-shadow: var(--shadow);
}

.photo-card--wide {
  grid-row: span 2;
  min-height: 574px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(180deg, transparent, rgba(3, 22, 56, .86));
}

.photo-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 18px;
  color: #fff;
  font-weight: 900;
  line-height: 1.45;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.info-card {
  min-height: 210px;
  padding: 22px 16px;
  background: #fffdf5;
  color: var(--ink);
  border-radius: 8px;
  border: 4px solid #fff;
  text-align: center;
}

.info-card__icon {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
}

.info-card h3 {
  margin: 12px 0 8px;
  color: var(--red);
  font-size: 1.35rem;
  line-height: 1.3;
}

.info-card p {
  margin: 0;
}

.info-card strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1.25;
}

.info-card small {
  color: var(--muted);
  font-weight: 800;
}

.booth-groups {
  display: grid;
  gap: 16px;
}

.booth-group {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.booth-group h3 {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 18px;
  color: #fff;
  border-radius: 8px;
  text-align: center;
  font-size: 1.35rem;
  line-height: 1.45;
}

.booth-group--food h3 {
  background: var(--red);
}

.booth-group--play h3 {
  background: var(--blue);
}

.booth-group--club h3 {
  background: var(--green);
}

.booth-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 10px;
}

.booth-list li {
  display: grid;
  grid-template-rows: auto auto;
  gap: 6px;
  place-items: center;
  min-height: 78px;
  padding: 10px;
  background: #fff;
  border: 2px solid rgba(242, 138, 0, .22);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  line-height: 1.35;
  box-shadow: 0 7px 14px rgba(148, 84, 0, .08);
}

.booth-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff7df;
  font-size: 1.7rem;
  line-height: 1;
  box-shadow: inset 0 -3px 0 rgba(242, 138, 0, .16);
}

.note {
  margin: 18px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: .9rem;
  font-weight: 700;
}

.coming-soon-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 34px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 216, 61, .32), transparent 10rem),
    radial-gradient(circle at 88% 78%, rgba(123, 208, 237, .28), transparent 12rem),
    #fff;
  text-align: center;
  box-shadow: 0 18px 36px rgba(0, 73, 132, .12);
}

.coming-soon-panel::before {
  content: "COMING SOON";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  color: rgba(11, 87, 168, .08);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.coming-soon-panel > * {
  position: relative;
  z-index: 1;
}

.coming-soon-panel__label {
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  margin: 0 0 12px;
  padding: 6px 18px;
  border-radius: 999px;
  background: #ffd21f;
  color: #071019;
}

.coming-soon-panel h3 {
  margin: 0;
  color: #0b57a8;
  font-size: clamp(1.45rem, 4vw, 2.4rem);
}

.coming-soon-panel p:last-child {
  max-width: 680px;
  margin: 12px 0 0;
}

.venue-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, minmax(120px, auto));
  gap: 12px;
  min-height: 480px;
  padding: 18px;
  border: 4px solid var(--navy);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, .65) 50%, transparent 51%),
    radial-gradient(circle at 20% 25%, rgba(22, 160, 93, .18), transparent 9rem),
    radial-gradient(circle at 82% 62%, rgba(22, 160, 93, .18), transparent 10rem),
    #e7f8d8;
  overflow: hidden;
}

.venue-map::before {
  content: "";
  position: absolute;
  inset: 45% -8%;
  height: 68px;
  transform: rotate(-6deg);
  background: rgba(245, 201, 125, .72);
}

.map-area {
  position: relative;
  z-index: 1;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  border: 3px solid currentColor;
  box-shadow: var(--shadow);
}

.map-area h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  line-height: 1.35;
}

.map-area p {
  margin: 0;
  font-weight: 800;
}

.map-area--food {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  color: var(--red);
}

.map-area--truck {
  grid-column: 3 / 5;
  grid-row: 1 / 2;
  color: var(--orange);
}

.map-area--work {
  grid-column: 5 / 7;
  grid-row: 1 / 3;
  color: var(--green);
}

.map-area--club {
  grid-column: 2 / 5;
  grid-row: 3 / 4;
  color: var(--blue);
}

.map-area--base {
  grid-column: 5 / 7;
  grid-row: 3 / 4;
  color: var(--red);
}

.access-lead {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 1000;
  line-height: 1.35;
}

.google-map {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  border: 4px solid #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.google-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.sns-section {
  background: #fffaf0;
}

.instagram-cta {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 52%, #6228d7);
  box-shadow: 0 8px 0 rgba(98, 40, 215, .34);
}

.site-footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 22px 16px;
  color: #fff;
  background: var(--navy-dark);
  text-align: center;
}

.site-footer p,
.site-footer small {
  margin: 0;
  font-weight: 800;
}

.site-footer a {
  min-height: 40px;
  box-shadow: none;
}

.site-footer .credit-link {
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  box-shadow: none;
}

.pagetop {
  position: fixed;
  right: 18px;
  bottom: 98px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 1000;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: .2s ease;
}

.pagetop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.countdown-nav {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 35;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  width: min(720px, calc(100% - 24px));
  padding: 0;
  transform: translateX(-50%);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.countdown-nav a {
  text-decoration: none;
}

.countdown-nav__main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 8px 16px;
  border-radius: 17px;
  background: rgba(255, 255, 255, .94);
  color: #071019;
  text-align: center;
}

.countdown-nav__main span {
  font-size: clamp(.88rem, 2.6vw, 1.05rem);
}

.countdown-nav__main strong {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: #d80f1f;
  font-size: clamp(1.55rem, 5vw, 2.45rem);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 0 #fff;
}

.countdown-nav__main [data-countdown-days] {
  color: #d80f1f;
  font-size: clamp(2.8rem, 10vw, 5rem);
  font-weight: 700 !important;
  line-height: .78;
  text-shadow:
    0 3px 0 #fff,
    0 10px 18px rgba(0, 0, 0, .18);
}

.countdown-nav__link {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 8px 16px;
  border-radius: 17px;
  background: #fff;
  color: #0b57a8;
  font-weight: 700 !important;
  white-space: nowrap;
}

body.is-modal-open {
  overflow: hidden;
}

body.is-nav-open {
  overflow: hidden;
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0) rotate(var(--rotate, 0deg));
  }
  50% {
    transform: translateY(-16px) rotate(calc(var(--rotate, 0deg) * -1));
  }
}

@keyframes hillDrift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 260px 160px;
  }
}

@keyframes mascotGoron {
  0%, 100% {
    transform: rotate(-3deg) translateY(0);
  }
  50% {
    transform: rotate(3deg) translateY(-8px);
  }
}

@keyframes hatRinrin {
  0%, 100% {
    transform: translateX(-50%) rotate(-5deg);
  }
  50% {
    transform: translateX(-50%) rotate(4deg);
  }
}

@keyframes armWaveLeft {
  0%, 100% {
    transform: rotate(22deg);
  }
  50% {
    transform: rotate(48deg);
  }
}

@keyframes armWaveRight {
  0%, 100% {
    transform: rotate(-22deg);
  }
  50% {
    transform: rotate(-48deg);
  }
}

@keyframes mouthPop {
  0%, 100% {
    transform: translateX(-50%) rotate(5deg) scaleX(1);
  }
  50% {
    transform: translateX(-50%) rotate(2deg) scaleX(1.08);
  }
}

/* Soft regional-promotion theme inspired by the supplied reference. */
body {
  background: #f8f7e9;
}

.site-header {
  background: rgba(113, 199, 230, .92);
  border-bottom: 0;
  box-shadow: 0 8px 24px rgba(16, 99, 151, .12);
}

.hero {
  min-height: 780px;
  padding: 94px 16px 150px;
  background: linear-gradient(180deg, #7bd0ed 0%, #d7f7f2 54%, #f8f7e9 100%);
}

.hero::before {
  bottom: -40px;
  width: 120%;
  height: 170px;
  background: #f8f7e9;
  border-radius: 55% 45% 0 0;
}

.hero::after {
  z-index: -1;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, .9) 0 2.5rem, transparent 2.6rem),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, .7) 0 2.8rem, transparent 2.9rem);
}

.hero__sky {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.float-icon {
  position: absolute;
  display: grid;
  place-items: center;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 32px rgba(0, 92, 150, .16);
  font-size: 2.5rem;
}

.float-icon--one {
  --rotate: -10deg;
  left: 15%;
  top: 19%;
  animation: floatY 5.2s ease-in-out infinite;
}

.float-icon--two {
  --rotate: 8deg;
  left: 49%;
  top: 13%;
  animation: floatY 4.8s ease-in-out infinite .4s;
}

.float-icon--three {
  --rotate: 13deg;
  right: 16%;
  top: 21%;
  animation: floatY 5.6s ease-in-out infinite .8s;
}

.city-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 178px;
  height: 86px;
  opacity: .55;
  background:
    linear-gradient(to top, #e8f1ee 0 16px, transparent 16px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(255, 255, 255, .85) 38px 72px, transparent 72px 118px);
  clip-path: polygon(0 70%, 7% 62%, 10% 74%, 18% 60%, 22% 72%, 31% 52%, 35% 68%, 42% 58%, 48% 70%, 57% 48%, 60% 68%, 70% 58%, 75% 72%, 84% 54%, 90% 70%, 100% 60%, 100% 100%, 0 100%);
}

.green-hill {
  position: absolute;
  left: 50%;
  bottom: 84px;
  transform: translateX(-50%);
  width: 120%;
  height: 210px;
  background: #97d35e;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .18) 0 8px, transparent 9px);
  background-size: 56px 56px;
  border-radius: 55% 45% 0 0;
  animation: hillDrift 55s linear infinite;
}

.green-hill--front {
  bottom: 40px;
  width: 78%;
  height: 170px;
  background: #5ebd7f;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .16) 0 7px, transparent 8px);
  border-radius: 48% 52% 0 0;
  animation-duration: 38s;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 44px;
  align-items: center;
  text-align: left;
  color: #073e84;
}

.hero__copy {
  padding-top: 70px;
}

.host {
  background: #fff;
  color: #0b57a8;
  border-radius: 999px;
  box-shadow: 0 10px 0 rgba(0, 88, 157, .12);
}

.year {
  color: #0b57a8;
  text-shadow: none;
}

.hero h1 {
  color: #0b57a8;
  text-shadow: 0 5px 0 #fff, 0 12px 24px rgba(8, 74, 130, .12);
}

.tag {
  border-radius: 999px;
  box-shadow: 0 10px 0 rgba(255, 174, 0, .22);
}

.hero__facts {
  margin: 0 0 24px;
}

.hero__facts div {
  border: 0;
  border-radius: 18px;
  box-shadow: 0 14px 26px rgba(0, 88, 157, .13);
}

.primary-cta,
.instagram-cta,
.site-footer a {
  background: #0b57a8;
  box-shadow: 0 8px 0 #063a73;
}

.hero__poster {
  margin: 0;
  padding: 12px;
  border-radius: 26px;
  background: #fff;
  transform: rotate(2deg);
  box-shadow: 0 24px 46px rgba(0, 73, 132, .24);
}

.hero__poster img {
  width: 100%;
  border-radius: 18px;
}

.section {
  position: relative;
}

.intro,
.worry-section,
.photo-section,
#map,
.sns-section {
  background: #f8f7e9;
}

.festival-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: -28px 0 28px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(0, 73, 132, .12);
}

.festival-summary div {
  display: grid;
  place-items: center;
  min-height: 118px;
  padding: 16px;
  text-align: center;
  border-right: 1px solid rgba(7, 16, 25, .1);
}

.festival-summary div:last-child {
  border-right: 0;
}

.festival-summary span {
  color: #141414;
  font-weight: 700 !important;
}

.festival-summary strong {
  color: #141414;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 700 !important;
  line-height: 1.25;
}

.intro__grid,
.story-grid,
.sns-grid {
  position: relative;
  padding: 30px;
  border-radius: 36px;
  background: rgba(255, 255, 255, .62);
}

.eyebrow {
  color: #0b57a8;
}

.notice,
.story-copy,
.info-card,
.map-area {
  border: 0;
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(0, 73, 132, .12);
}

.notice strong,
.section-title--red h2,
.solve-copy strong,
.info-card h3 {
  color: #0b57a8;
}

.worry-section {
  padding-top: 96px;
}

.story-copy {
  background:
    radial-gradient(circle at 25% 22%, #dbf7ff 0 6rem, transparent 6.1rem),
    radial-gradient(circle at 72% 65%, #c4eefb 0 7.5rem, transparent 7.6rem),
    #effbff;
}

.worry-list li {
  border-radius: 999px;
  background: #fff;
}

.worry-list li:nth-child(1)::before {
  background: #5fca82;
}

.worry-list li:nth-child(2)::before {
  background: #ff879d;
}

.worry-list li:nth-child(3)::before {
  background: #f2c400;
}

.character-bubble {
  border: 0;
  border-radius: 42% 58% 45% 55% / 52% 46% 54% 48%;
  background: #0b57a8;
  box-shadow: 0 22px 44px rgba(0, 73, 132, .18);
  align-content: center;
  justify-items: center;
}

.character-bubble img {
  display: none;
}

.feature-section {
  margin-top: 36px;
  isolation: isolate;
  padding-top: 150px;
  padding-bottom: 130px;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, .13) 0 1rem, transparent 1.1rem),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .12) 0 1rem, transparent 1.1rem),
    #55bd78;
}

.feature-section::before {
  z-index: 0;
  pointer-events: none;
  left: 50%;
  top: -80px;
  width: 130%;
  height: 128px;
  transform: translateX(-50%);
  border: 0;
  border-radius: 0 0 50% 50%;
  background: #f8f7e9;
}

.feature-section::after {
  z-index: 0;
  pointer-events: none;
  right: auto;
  left: 50%;
  bottom: -90px;
  width: 130%;
  height: 190px;
  transform: translateX(-50%);
  border: 0;
  border-radius: 50% 50% 0 0;
  background: #f8f7e9;
}

.feature-section .section-title {
  position: relative;
  z-index: 8;
  margin-bottom: 34px;
}

.feature-section .section-title span {
  background: #fff;
  color: #0b57a8;
  box-shadow: 0 8px 0 rgba(11, 87, 168, .14);
}

.feature-section .section-title h2 {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  color: #0b57a8;
  box-shadow: 0 10px 0 rgba(11, 87, 168, .14);
}

.feature-grid {
  position: relative;
  z-index: 6;
}

.feature-card {
  border: 0;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  background: #fff;
  opacity: 1;
  min-height: 0;
  box-shadow: 0 16px 0 rgba(11, 87, 168, .18);
}

.feature-card:not(:last-child)::after {
  content: "\2193";
  position: absolute;
  right: -28px;
  top: 50%;
  z-index: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffd81f;
  color: #d80f1f;
  font-size: 1.55rem;
  font-weight: 700;
  transform: translateY(-50%);
  box-shadow: 0 8px 0 rgba(11, 87, 168, .16);
}

.feature-card span {
  background: #0b57a8;
}

.feature-card h3 {
  color: #0b57a8;
  font-size: clamp(1.55rem, 3.8vw, 2.35rem);
  line-height: 1.18;
}

.feature-card p {
  margin: 10px 0 0;
  line-height: 1.65;
}

.feature-card p strong {
  color: #d80f1f;
  font-size: 1.08em;
}
.feature-card__photo {
  margin: 16px 0 18px;
  overflow: hidden;
  border-radius: 20px;
  background: #031638;
  box-shadow: 0 10px 22px rgba(3, 22, 56, .18);
  aspect-ratio: 16 / 10;
}

.feature-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card {
  border: 0;
  border-radius: 28px;
}

.section--navy {
  margin-top: 30px;
  margin-bottom: 30px;
  color: #fff;
  background: #064aa0;
  border-radius: 50px 50px 0 0;
}

.section--cream {
  background: #f8f7e9;
}

.section-title span {
  background: #ffe18a;
  color: #0b57a8;
}

.booth-group h3 {
  border-radius: 24px;
}

.booth-group--food h3 {
  background: #ff8a52;
}

.booth-group--play h3 {
  background: #0b57a8;
}

.booth-group--club h3 {
  background: #55bd78;
}

.booth-list li {
  border: 0;
  border-radius: 22px;
  box-shadow: 0 12px 24px rgba(0, 73, 132, .08);
}

.venue-map {
  border: 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, .75), transparent 10rem),
    radial-gradient(circle at 85% 70%, rgba(255, 255, 255, .72), transparent 12rem),
    #dff4d7;
  box-shadow: 0 20px 40px rgba(0, 73, 132, .12);
}

.venue-map-button {
  position: relative;
  display: block;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 73, 132, .12);
  cursor: zoom-in;
}

.venue-map-button img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  transition: transform .45s ease;
}

.venue-map-button span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #0b57a8;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 8px 0 #063a73;
}

.venue-map-button:hover img,
.venue-map-button:focus-visible img {
  transform: scale(1.035);
}

.venue-map-button:focus-visible {
  outline: 4px solid #ffd83d;
  outline-offset: 4px;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.image-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 22, 56, .78);
  backdrop-filter: blur(8px);
}

.image-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1280px, 96vw);
  max-height: 90vh;
  padding: 12px;
  overflow: auto;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .34);
  transform: translateY(18px) scale(.96);
  transition: transform .25s ease;
}

.image-modal.is-open .image-modal__panel {
  transform: translateY(0) scale(1);
}

.image-modal__panel img {
  width: 100%;
  min-width: 720px;
  display: block;
  border-radius: 18px;
}

.image-modal__close {
  position: sticky;
  top: 8px;
  left: calc(100% - 58px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 0 -48px auto;
  border: 0;
  border-radius: 50%;
  background: #0b57a8;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 0 #063a73;
}

.access-grid {
  padding: 30px;
  border-radius: 34px;
  background: rgba(255, 255, 255, .08);
}

.google-map {
  border: 8px solid #fff;
  border-radius: 26px;
}

.sns-section {
  padding-top: 120px;
  background:
    radial-gradient(circle at 23% 25%, #e8fbff 0 7rem, transparent 7.2rem),
    radial-gradient(circle at 74% 55%, #d4f3ff 0 8rem, transparent 8.2rem),
    #f8f7e9;
}

.site-footer {
  background: #f8f7e9;
  color: #07468f;
}

.site-footer .credit-link {
  color: #07468f;
}

.hero {
  min-height: 100svh;
  padding: 32px 16px 104px;
  background: #05070f;
}

.hero::before {
  bottom: -58px;
  height: 120px;
  background: #f8f7e9;
  border-radius: 52% 48% 0 0;
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .08) 44%, rgba(0, 0, 0, .7)),
    radial-gradient(circle at 50% 10%, rgba(255, 215, 0, .13), transparent 28rem);
}

.hero__poster-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #05070f;
}

.hero__poster-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.08) contrast(1.04);
}

.hero__content {
  width: min(1160px, 100%);
  min-height: calc(100svh - 160px);
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(80px, .28fr);
  align-items: start;
  gap: 24px;
  color: #fff;
}

.hero__copy {
  width: min(620px, 100%);
  padding-top: 0;
}

.host {
  margin-bottom: clamp(140px, 23vh, 300px);
  background: transparent;
  color: #fff;
  border-radius: 0;
  padding: 0;
  text-shadow: 0 4px 12px rgba(0, 0, 0, .75);
  box-shadow: none;
}

.year,
.hero h1,
.tag {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.hero-title {
  position: absolute;
  left: clamp(18px, 7vw, 84px);
  top: clamp(110px, 19vh, 210px);
  z-index: 2;
  margin: 0;
  width: min(760px, calc(100vw - 36px));
  color: #ffe400;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 5.8rem);
  line-height: 1.05;
  text-shadow:
    0 4px 0 #b90014,
    0 8px 0 rgba(0, 0, 0, .75),
    0 18px 34px rgba(0, 0, 0, .66);
  -webkit-text-stroke: 1px rgba(0, 0, 0, .65);
}

.hero-title span {
  display: block;
  font-size: .62em;
}

.hero-title strong {
  display: block;
  color: #fff;
  font-size: .92em;
  text-shadow:
    0 4px 0 #d80f1f,
    0 8px 0 rgba(0, 0, 0, .75),
    0 18px 34px rgba(0, 0, 0, .66);
}

.hero-title-image {
  position: absolute;
  left: 50%;
  top: clamp(10px, 2vh, 24px);
  z-index: 5;
  width: min(920px, calc(100vw - 28px));
  height: auto;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .45));
}

.hero-characters {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.hero-characters img {
  position: absolute;
  display: block;
  width: auto;
  max-width: none;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, .48));
  transform-origin: 50% 100%;
}

.hero-characters__boy {
  left: max(-42px, calc(50% - 690px));
  bottom: 74px;
  height: min(70vh, 690px);
}

.hero-characters__girl {
  right: max(-120px, calc(50% - 760px));
  bottom: 66px;
  height: min(62vh, 610px);
}

.hero .primary-cta {
  display: none;
}

.hero-floaties {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.float-bubble {
  position: absolute;
  width: 170px;
  aspect-ratio: 1.22 / 1;
  text-align: center;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, .25));
}

.float-bubble img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.float-bubble span {
  position: absolute;
  inset: 15% 12% 18%;
  z-index: 1;
  display: grid;
  place-items: center;
  color: #071019;
  font-size: 1.1rem;
  font-weight: 700 !important;
  line-height: 1.2;
  text-shadow: 0 1px 0 #fff;
}

.float-bubble strong {
  color: #d80f1f;
  font-size: 2.25rem;
  font-weight: 700 !important;
  line-height: 1;
}

.float-bubble--karaage {
  left: 6%;
  top: 27%;
  width: 210px;
}

.float-bubble--yay {
  right: 8%;
  top: 24%;
  width: 230px;
  aspect-ratio: 1.38 / 1;
}

.float-bubble--shooting {
  left: 12%;
  bottom: 30%;
  width: 260px;
  aspect-ratio: 2.53 / 1;
}

.float-bubble--corn {
  right: 10%;
  bottom: 30%;
  width: 230px;
  aspect-ratio: 2.16 / 1;
}

.float-bubble--lantern {
  left: 50%;
  top: 20%;
  width: 250px;
  aspect-ratio: 3.94 / 1;
  transform: translateX(-50%);
}

.float-bubble--shooting span,
.float-bubble--corn span,
.float-bubble--lantern span {
  inset: 16% 10% 22%;
}

.hero__facts {
  width: min(440px, 82vw);
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  margin: 0;
}

.hero__facts div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 8px;
  align-items: center;
  padding: 4px 0;
  background: transparent;
  color: #fff;
  border-radius: 0;
  box-shadow: none;
  text-shadow: 0 4px 12px rgba(0, 0, 0, .88);
}

.hero__facts span {
  color: #fff;
  font-size: clamp(1rem, 2.8vw, 1.35rem);
}

.hero__facts strong {
  color: #ffe000;
  font-size: clamp(1.6rem, 5vw, 3.2rem);
  line-height: 1.1;
  -webkit-text-stroke: 1px rgba(0, 0, 0, .7);
}

.primary-cta {
  margin-top: 14px;
  background: rgba(0, 0, 0, .78);
  border: 2px solid #fff;
  box-shadow: none;
}

.hero-menu {
  justify-self: end;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 0;
  border-radius: 10px;
  background: #ffd21f;
  color: #071019;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 1000;
  box-shadow: 0 10px 0 rgba(0, 0, 0, .28);
}

.hero-area-links {
  position: absolute;
  left: 50%;
  bottom: 58px;
  z-index: 7;
  width: min(1240px, calc(100% - 12px));
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  transform: translateX(-50%);
}

.hero-area {
  min-height: 86px;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 10px 12px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: clamp(.9rem, 1.5vw, 1.2rem);
  font-weight: 1000;
  line-height: 1.25;
  box-shadow: 0 10px 0 rgba(0, 0, 0, .22);
  transition: transform .22s ease, filter .22s ease;
}

.hero-area:hover,
.hero-area:focus-visible {
  transform: translateY(-5px);
  filter: brightness(1.08);
  outline: none;
}

.hero-area--food {
  background: #e94235;
}

.hero-area--truck {
  background: #f7b70d;
}

.hero-area--play {
  background: #266bb8;
}

.hero-area--work {
  background: #78bd39;
}

.hero-area--base {
  background: #ef5f8d;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 8;
  transform: translateX(-50%);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .08em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, .8);
}

.scroll-cue::before {
  content: "↓";
  display: block;
  margin-bottom: 2px;
  font-size: 1.9rem;
  line-height: 1;
  text-align: center;
  animation: floatY 1.3s ease-in-out infinite;
}

body :where(p, li, small, span, a, button) {
  font-weight: 400;
}

body :where(h1, h2, h3, .site-logo, .host, .hero-title, .primary-cta, .instagram-cta, .eyebrow, .notice strong, .solve-copy, .section-title h2, .info-card h3, .info-card strong, .booth-group h3, .access-lead, .hero-area, .scroll-cue) {
  font-weight: 700;
}

.fan-deco {
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, .28));
}

.fan-deco--hero {
  position: absolute;
  right: clamp(18px, 8vw, 96px);
  top: clamp(90px, 14vh, 150px);
  z-index: 2;
  width: clamp(92px, 13vw, 180px);
  transform: rotate(10deg);
  animation: floatY 4.8s ease-in-out infinite;
}

.fan-deco--notice {
  width: 82px;
  margin: 0 auto 10px;
  transform: rotate(-8deg);
}

.fan-deco--title {
  width: 72px;
  margin: 0 auto 8px;
  transform: rotate(8deg);
}

.takechan {
  --mascot-scale: 1;
  position: relative;
  width: calc(190px * var(--mascot-scale));
  height: calc(210px * var(--mascot-scale));
  filter: drop-shadow(0 18px 24px rgba(91, 55, 12, .2));
  animation: mascotGoron 4.8s ease-in-out infinite;
}

.takechan span {
  position: absolute;
  display: block;
}

.takechan__image {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.takechan--photo span {
  display: none;
}

.takechan--photo {
  filter: drop-shadow(0 20px 26px rgba(91, 55, 12, .24));
}

.takechan__body {
  left: 18%;
  top: 24%;
  width: 68%;
  height: 66%;
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, .12), transparent 28%),
    #a85f18;
  clip-path: polygon(50% 0, 95% 26%, 84% 100%, 16% 100%, 5% 26%);
  border-radius: 28% 28% 18% 18%;
}

.takechan__body::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 8%;
  bottom: 6%;
  height: 13%;
  border-radius: 999px;
  background:
    radial-gradient(circle, #b3422a 0 18%, transparent 20%) 0 50% / 18px 18px repeat-x,
    #ffd83d;
}

.takechan__hat {
  left: 50%;
  top: 9%;
  width: 118%;
  height: 42%;
  transform: translateX(-50%) rotate(-5deg);
  transform-origin: 52% 75%;
  background: #ffd032;
  border-radius: 52% 58% 44% 44% / 62% 54% 44% 38%;
  animation: hatRinrin 3.4s ease-in-out infinite;
}

.takechan__hat::before {
  content: "";
  position: absolute;
  left: 2%;
  bottom: -6%;
  width: 106%;
  height: 34%;
  border-radius: 50%;
  background: #ffc219;
}

.takechan__leaf {
  z-index: -1;
  background: #15844d;
  clip-path: polygon(50% 0, 85% 100%, 50% 76%, 15% 100%);
}

.takechan__leaf--one {
  left: 67%;
  top: 0;
  width: 20%;
  height: 32%;
  transform: rotate(18deg);
}

.takechan__leaf--two {
  left: 9%;
  top: 34%;
  width: 17%;
  height: 26%;
  transform: rotate(-16deg);
}

.takechan__eye {
  top: 40%;
  z-index: 2;
  width: 16%;
  height: 16%;
  border-radius: 50%;
  background: #161616;
}

.takechan__eye::after {
  content: "";
  position: absolute;
  right: 14%;
  top: 14%;
  width: 42%;
  height: 42%;
  border-radius: 50%;
  background: #fff;
}

.takechan__eye--left {
  left: 34%;
}

.takechan__eye--right {
  right: 27%;
}

.takechan__mouth {
  left: 52%;
  top: 55%;
  z-index: 2;
  width: 54%;
  height: 19%;
  transform: translateX(-50%) rotate(5deg);
  border-radius: 0 0 999px 999px;
  background: #e62933;
  animation: mouthPop 3s ease-in-out infinite;
}

.takechan__arm {
  z-index: -1;
  width: 12%;
  height: 42%;
  border-radius: 999px;
  background: #ffd032;
  transform-origin: 50% 90%;
}

.takechan__arm::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -10%;
  width: 150%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #ffd032;
}

.takechan__arm--left {
  left: 10%;
  top: 34%;
  animation: armWaveLeft 2.4s ease-in-out infinite;
}

.takechan__arm--right {
  right: 10%;
  top: 49%;
  animation: armWaveRight 2.7s ease-in-out infinite;
}

.takechan__foot {
  bottom: 0;
  z-index: -1;
  width: 36%;
  height: 13%;
  border-radius: 50%;
  background: #ffd032;
}

.takechan__foot--left {
  left: 14%;
  transform: rotate(-8deg);
}

.takechan__foot--right {
  right: 12%;
  transform: rotate(10deg);
}

.takechan--hero {
  position: absolute;
  right: min(2vw, 24px);
  bottom: 74px;
  --mascot-scale: .84;
  z-index: 5;
}

.takechan--bubble {
  --mascot-scale: 1.18;
  z-index: 1;
}

.takechan--mini {
  --mascot-scale: .48;
  margin-inline: auto;
}

.mini-mascot {
  align-self: center;
}

.stamp-pop {
  opacity: 0;
  transform: translateY(32px) scale(.86) rotate(-2deg);
  transition:
    opacity .45s ease,
    transform .55s cubic-bezier(.7, .2, .3, 1.45);
}

.stamp-pop.isActive {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0);
}

@media (max-width: 860px) {
  .hero {
    min-height: 680px;
    padding-top: 72px;
  }

  .hero::after {
    background:
      radial-gradient(circle at 18% 22%, rgba(255, 255, 255, .9) 0 2.5rem, transparent 2.6rem),
      radial-gradient(circle at 78% 18%, rgba(255, 255, 255, .7) 0 2.8rem, transparent 2.9rem);
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .hero__copy {
    padding-top: 20px;
  }

  .hero__poster {
    width: min(340px, 82vw);
    justify-self: center;
  }

  .hero-characters__boy {
    left: -32px;
    bottom: 96px;
    height: min(58vh, 520px);
  }

  .hero-characters__girl {
    right: -110px;
    bottom: 92px;
    height: min(52vh, 470px);
  }

  .hero-area-links {
    width: min(560px, calc(100% - 24px));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    bottom: 52px;
  }

  .hero-area {
    min-height: 68px;
    padding: 8px 6px;
    border-radius: 14px;
    font-size: clamp(.74rem, 2.6vw, .95rem);
    box-shadow: 0 6px 0 rgba(0, 0, 0, .22);
  }

  .takechan--hero {
    right: 2px;
    bottom: 118px;
    --mascot-scale: .5;
  }

  .float-icon {
    width: 70px;
    height: 70px;
    font-size: 1.9rem;
  }

  .hero__facts,
  .info-grid,
  .festival-summary,
  .intro__grid,
  .story-grid,
  .feature-grid,
  .access-grid,
  .sns-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    gap: 58px;
  }

  .feature-card:not(:last-child)::after {
  content: "\2193";
    right: auto;
    top: auto;
    bottom: -42px;
    left: 50%;
    transform: translateX(-50%);
  }

  .info-card {
    min-height: auto;
  }

  .booth-group {
    grid-template-columns: 1fr;
  }

  .story-copy {
    padding: 24px;
  }

  .character-bubble {
    min-height: 320px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .photo-card--wide {
    min-height: 260px;
  }

  .booth-group h3 {
    min-height: 72px;
  }

  .venue-map {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
  }

  .map-area,
  .map-area--food,
  .map-area--truck,
  .map-area--work,
  .map-area--club,
  .map-area--base {
    grid-column: auto;
    grid-row: auto;
  }

  .venue-map-button span {
    right: 12px;
    bottom: 12px;
    min-height: 38px;
    padding: 7px 14px;
    font-size: .86rem;
  }

  .image-modal {
    padding: 12px;
  }

  .image-modal__panel {
    width: 96vw;
    max-height: 86vh;
    padding: 8px;
  }

  .image-modal__panel img {
    min-width: 860px;
  }
}

.venue-map-modal__panel {
  width: min(1440px, calc(100vw - 28px));
  max-height: calc(100svh - 28px);
}

.venue-map-modal__title {
  margin: 0 56px 12px 0;
  color: #0b57a8;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
}

.venue-map-modal .image-modal__panel img {
  width: 100%;
  min-width: 960px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 720px) {
  .venue-map-button {
    border-radius: 22px;
  }

  .venue-map-modal .image-modal__panel img {
    min-width: 1040px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 620px;
    padding-top: 54px;
    padding-bottom: 142px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 13vw, 4rem);
  }

  .hero-title {
    top: 108px;
    font-size: clamp(2rem, 10vw, 3.6rem);
    width: calc(100vw - 28px);
  }

  .hero-title-image {
    top: 12px;
    width: min(560px, calc(100vw - 20px));
  }

  .hero-characters__boy {
    left: -58px;
    bottom: 140px;
    height: min(50vh, 390px);
  }

  .hero-characters__girl {
    right: -110px;
    bottom: 138px;
    height: min(43vh, 340px);
  }

  .float-bubble {
    width: 138px;
  }

  .float-bubble span {
    inset: 15% 11% 19%;
    font-size: .78rem;
  }

  .float-bubble strong {
    font-size: 1.48rem;
  }

  .float-bubble--karaage {
    left: 2%;
    top: 32%;
    width: 136px;
  }

  .float-bubble--yay {
    right: 2%;
    top: 29%;
    width: 142px;
  }

  .float-bubble--shooting {
    left: 2%;
    bottom: 34%;
    width: 172px;
  }

  .float-bubble--corn {
    right: 2%;
    bottom: 34%;
    width: 150px;
  }

  .float-bubble--lantern {
    left: 50%;
    top: 21%;
    width: 168px;
  }

  .float-bubble--shooting span,
  .float-bubble--corn span,
  .float-bubble--lantern span {
    inset: 14% 8% 22%;
  }

  .fan-deco--hero {
    top: 72px;
    right: 16px;
    width: 76px;
  }

  .hero-area-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    bottom: 86px;
  }

  .hero-area {
    min-height: 58px;
    font-size: .74rem;
    line-height: 1.2;
  }

  .scroll-cue {
    bottom: 8px;
    font-size: .78rem;
  }

  .hero__facts {
    gap: 8px;
  }

  .festival-summary {
    margin-top: -12px;
  }

  .festival-summary div {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 16, 25, .1);
  }

  .festival-summary div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 46px 0;
  }

  .feature-section {
    padding-top: 128px;
    padding-bottom: 90px;
  }

  .feature-section .section-title h2 {
    width: min(100%, 420px);
    font-size: clamp(1.45rem, 8vw, 2.15rem);
  }

  .notice strong {
    font-size: 2.35rem;
  }

  .booth-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .google-map {
    aspect-ratio: 1 / 1;
  }

  body {
    padding-bottom: 96px;
  }

  .countdown-nav {
    grid-template-columns: 1fr;
    gap: 8px;
    bottom: 10px;
    border-radius: 20px;
  }

  .countdown-nav__main,
  .countdown-nav__link {
    min-height: 44px;
  }

  .countdown-nav__link {
    display: none;
  }

  .pagetop {
    bottom: 108px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .stamp-pop {
    opacity: 1;
    transform: none;
  }
}

body :where(p, li, small, span, a, button, figcaption) {
  font-weight: 400 !important;
}

body :where(h1, h2, h3, .hero-title, .eyebrow, .notice strong, .solve-copy, .section-title h2, .info-card h3, .booth-group h3, .access-lead) {
  font-weight: 700 !important;
}

.site-footer--contact {
  display: block;
  padding: 34px 16px 120px;
  background: #f8f7e9;
  color: #07468f;
  text-align: left;
}

.footer-contact {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 26px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 18px 36px rgba(0, 73, 132, .12);
}

.footer-contact h2 {
  margin: 0 0 14px;
  color: #0b57a8;
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1.35;
}

.footer-contact p {
  margin: 6px 0;
  font-weight: 700;
  line-height: 1.7;
}
.feature-card > *:not(.feature-card__photo) {
  position: relative;
  z-index: 1;
}

.feature-card__photo {
  position: relative;
  z-index: 1;
}

.feature-section .feature-card {
  opacity: 1 !important;
  visibility: visible !important;
}
.faq-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 216, 61, .2), transparent 12rem),
    radial-gradient(circle at 86% 68%, rgba(123, 208, 237, .22), transparent 13rem),
    #f8f7e9;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: min(900px, 100%);
  margin: 0 auto;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 73, 132, .1);
}

.faq-question {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: 20px 28px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 10px;
  background: #0b57a8;
  color: #fff;
  text-align: left;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.faq-question::before {
  content: "Q.";
  color: #fff;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 700;
  line-height: 1;
}

.faq-question__text {
  color: #fff;
  font-size: clamp(1.08rem, 3vw, 1.35rem);
  line-height: 1.45;
}

.faq-question__icon {
  display: grid;
  place-items: center;
  justify-self: end;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: clamp(1.9rem, 5vw, 2.45rem);
  font-weight: 700;
  line-height: 1;
  box-shadow: none;
}

.faq-item.is-open .faq-question {
  border-radius: 10px 10px 0 0;
}

.faq-item.is-open .faq-question__icon {
  padding-bottom: 0;
}

.faq-answer {
  padding: 22px 28px 26px 72px;
  border: 1px solid rgba(11, 87, 168, .16);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  background: rgba(255, 255, 255, .96);
}

.faq-answer p {
  margin: 0;
  color: #14314f;
  font-weight: 700;
  line-height: 1.75;
}

@media (max-width: 520px) {
  .faq-question {
    min-height: 72px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    padding: 16px 18px;
  }

  .faq-answer {
    padding: 18px 18px 22px 48px;
  }
}
/* 2026-06-25: first-view fit and Tacky credit */
.hero {
  height: calc(100svh - 70px);
  min-height: calc(100svh - 70px);
  padding: 0 16px;
}

.hero::before {
  display: none;
}

.hero__content {
  min-height: 100%;
}

.hero .primary-cta {
  position: absolute;
  left: 50%;
  top: clamp(250px, 38svh, 390px);
  z-index: 8;
  display: inline-flex;
  transform: translateX(-50%);
  margin-top: 0;
  min-height: 50px;
  padding: 10px 28px;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, .8);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .28);
  white-space: nowrap;
}

.takechan-credit {
  position: absolute;
  left: 50%;
  top: calc(100% + 4px);
  z-index: 6;
  width: max-content;
  max-width: 190px;
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .62);
  color: #fff;
  font-size: clamp(.72rem, 1.6vw, .9rem);
  font-weight: 700 !important;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .7);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-area-links {
  bottom: clamp(42px, 7svh, 72px);
}

.scroll-cue {
  display: none;
}

@media (max-width: 900px) {
  .hero {
    height: calc(100svh - 72px);
    min-height: calc(100svh - 72px);
    padding: 0 12px;
  }

  .hero .primary-cta {
    top: clamp(208px, 34svh, 310px);
    min-height: 46px;
    padding-inline: 24px;
    font-size: .95rem;
  }

  .takechan--hero {
    bottom: 128px;
  }

  .takechan-credit {
    max-width: 160px;
    font-size: .68rem;
  }
}

@media (max-width: 520px) {
  .hero {
    height: calc(100svh - 72px);
    min-height: calc(100svh - 72px);
    padding: 0 8px;
  }

  .hero-title-image {
    top: clamp(8px, 1.8svh, 16px);
    width: min(500px, calc(100vw - 18px));
  }

  .hero .primary-cta {
    top: clamp(210px, 35svh, 280px);
    min-height: 42px;
    padding: 8px 20px;
    font-size: .74rem;
  }

  .hero-characters__boy {
    left: -44px;
    bottom: 122px;
    height: min(46svh, 350px);
  }

  .hero-characters__girl {
    right: -70px;
    bottom: 120px;
    height: min(39svh, 310px);
  }

  .takechan--hero {
    right: 50%;
    bottom: 190px;
    --mascot-scale: .46;
    transform: translateX(50%);
  }

  .takechan-credit {
    max-width: 136px;
    padding: 4px 8px;
    font-size: .62rem;
    line-height: 1.25;
  }

  .hero-area-links {
    bottom: 86px;
    width: min(460px, calc(100% - 16px));
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
  }

  .hero-area {
    min-height: 50px;
    padding: 6px 3px;
    border-radius: 12px;
    font-size: clamp(.52rem, 2.2vw, .68rem);
    line-height: 1.16;
    box-shadow: 0 5px 0 rgba(0, 0, 0, .22);
  }
}
/* 2026-06-25: Tacky chatbot */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.tacky-chatbot {
  position: fixed;
  right: 18px;
  bottom: 104px;
  z-index: 45;
  font-family: var(--font-body);
}

.tacky-chatbot__launcher {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
  min-height: 62px;
  padding: 8px 14px 8px 8px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: #ffd83d;
  color: #071019;
  font: inherit;
  font-weight: 700 !important;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 10px 0 rgba(7, 16, 25, .26), 0 18px 30px rgba(7, 16, 25, .22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.tacky-chatbot__launcher:hover,
.tacky-chatbot__launcher:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 0 rgba(7, 16, 25, .22), 0 22px 34px rgba(7, 16, 25, .26);
  outline: none;
}

.tacky-chatbot__launcher img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 5px 6px rgba(91, 55, 12, .28));
}

.tacky-chatbot__panel {
  position: absolute;
  right: 0;
  bottom: 98px;
  width: min(360px, calc(100vw - 24px));
  overflow: hidden;
  border: 3px solid #0b57a8;
  border-radius: 22px;
  background: #fffdf5;
  box-shadow: 0 22px 44px rgba(3, 22, 56, .28);
  transform: translateY(14px) scale(.96);
  transform-origin: right bottom;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.tacky-chatbot.is-open .tacky-chatbot__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tacky-chatbot__header {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  background: #0b57a8;
  color: #fff;
}

.tacky-chatbot__header img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 5px 7px rgba(0, 0, 0, .25));
}

.tacky-chatbot__header p,
.tacky-chatbot__header strong {
  margin: 0;
  line-height: 1.25;
}

.tacky-chatbot__header p {
  font-size: .78rem;
  opacity: .92;
}

.tacky-chatbot__header strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 700 !important;
}

.tacky-chatbot__close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.tacky-chatbot__messages {
  display: grid;
  gap: 10px;
  max-height: 280px;
  padding: 14px;
  overflow-y: auto;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 216, 61, .22), transparent 7rem),
    #fffdf5;
}

.tacky-chatbot__message {
  width: fit-content;
  max-width: 88%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.tacky-chatbot__message--bot {
  justify-self: start;
  border-bottom-left-radius: 5px;
  background: #eaf5ff;
  color: #14314f;
}

.tacky-chatbot__message--user {
  justify-self: end;
  border-bottom-right-radius: 5px;
  background: #ffd83d;
  color: #071019;
}

.tacky-chatbot__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 14px 12px;
  background: #fffdf5;
}

.tacky-chatbot__quick button {
  border: 0;
  border-radius: 999px;
  background: #0b57a8;
  color: #fff;
  padding: 7px 10px;
  font: inherit;
  font-size: .84rem;
  font-weight: 700 !important;
  cursor: pointer;
}

.tacky-chatbot__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(11, 87, 168, .14);
  background: #fff;
}

.tacky-chatbot__form input {
  min-width: 0;
  border: 2px solid rgba(11, 87, 168, .24);
  border-radius: 999px;
  padding: 10px 12px;
  font: inherit;
}

.tacky-chatbot__form button {
  border: 0;
  border-radius: 999px;
  background: #d80f1f;
  color: #fff;
  padding: 10px 14px;
  font: inherit;
  font-weight: 700 !important;
  cursor: pointer;
}

@media (max-width: 520px) {
  .tacky-chatbot {
    right: 10px;
    bottom: 98px;
  }

  .tacky-chatbot__launcher {
    min-height: 54px;
    padding: 6px 11px 6px 6px;
    font-size: .78rem;
  }

  .tacky-chatbot__launcher img {
    width: 42px;
    height: 42px;
  }

  .tacky-chatbot__panel {
    bottom: 70px;
  }

  .tacky-chatbot__messages {
    max-height: 240px;
  }
}
/* 2026-06-25: chatbot mascot cutout and layout centering */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.site-header,
main,
.hero,
.section,
.site-footer {
  width: 100%;
  max-width: 100%;
}

.hero .primary-cta {
  display: none !important;
}

.takechan--hero,
.takechan-credit {
  display: none !important;
}

.hero-area-links {
  left: 50%;
  right: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tacky-chatbot {
  right: max(16px, env(safe-area-inset-right));
}

.tacky-chatbot__launcher {
  display: grid;
  place-items: center;
  width: 92px;
  min-height: 0;
  aspect-ratio: 1 / 1;
  padding: 6px;
  overflow: visible;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: transparent;
  box-shadow: none;
  filter: drop-shadow(0 12px 18px rgba(7, 16, 25, .28));
}

.tacky-chatbot__launcher:hover,
.tacky-chatbot__launcher:focus-visible {
  transform: translateY(-4px) rotate(-2deg);
  box-shadow: none;
  filter: drop-shadow(0 16px 22px rgba(7, 16, 25, .32));
  outline: none;
}

.tacky-chatbot__launcher img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

@media (max-width: 520px) {
  .tacky-chatbot {
    right: max(10px, env(safe-area-inset-right));
  }

  .hero-area-links {
    left: 50%;
    right: auto;
    width: min(460px, calc(100% - 16px));
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tacky-chatbot__launcher {
    width: 72px;
    padding: 4px;
  }
}

/* 2026-06-25: four area buttons and chatbot label */
.hero-area-links {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-area--event {
  background: #ef5f8d;
}

.coming-zone-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.coming-zone-card {
  position: relative;
  min-height: 280px;
  padding: 28px 20px;
  overflow: hidden;
  border: 4px solid #fff;
  border-radius: 22px;
  background: linear-gradient(180deg, #fffdf3 0%, #fff6dc 100%);
  box-shadow: 0 18px 0 rgba(14, 84, 92, .12), 0 22px 38px rgba(24, 56, 77, .12);
  text-align: left;
  scroll-margin-top: 96px;
}

.coming-zone-card::before {
  content: "COMING SOON";
  position: absolute;
  right: -28px;
  bottom: 18px;
  color: rgba(11, 87, 168, .08);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  font-weight: 700;
  line-height: .8;
  transform: rotate(-8deg);
  white-space: nowrap;
}

.coming-zone-card > * {
  position: relative;
  z-index: 1;
}

.coming-zone-card h3 {
  margin: 16px 0 12px;
  color: #0b57a8;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.25;
}

.coming-zone-card p:last-child {
  margin: 0;
  color: #223040;
  line-height: 1.8;
}

.coming-zone-card--gourmet {
  background: linear-gradient(180deg, #fff3e4 0%, #ffe4d8 100%);
}

.coming-zone-card--seinembu {
  background: linear-gradient(180deg, #eaf4ff 0%, #dceeff 100%);
}

.coming-zone-card--work {
  background: linear-gradient(180deg, #effadd 0%, #e3f5c7 100%);
}

.coming-zone-card--event {
  background: linear-gradient(180deg, #fff0f7 0%, #ffe0ed 100%);
}

.pagetop {
  right: 18px;
  bottom: 88px;
  z-index: 58;
}

.tacky-chatbot {
  bottom: 164px;
  z-index: 60;
}

.tacky-chatbot__launcher {
  width: 108px;
  aspect-ratio: auto;
  gap: 4px;
}

.tacky-chatbot__launcher img {
  width: 82px;
  height: 82px;
}

.tacky-chatbot__label {
  display: inline-grid;
  place-items: center;
  min-height: 30px;
  padding: 5px 12px 6px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #d80f1f;
  color: #fff;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 5px 0 rgba(7, 16, 25, .2);
  white-space: nowrap;
}

.tacky-chatbot__panel {
  bottom: 128px;
}

@media (max-width: 860px) {
  .coming-zone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .hero-area-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-area {
    min-height: 48px;
    font-size: .72rem;
  }

  .coming-zone-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .coming-zone-card {
    min-height: 220px;
    padding: 24px 18px;
  }

  .pagetop {
    right: 10px;
    bottom: 98px;
  }

  .tacky-chatbot {
    bottom: 142px;
    right: max(8px, env(safe-area-inset-right));
  }

  .tacky-chatbot__launcher {
    width: 96px;
    padding: 2px;
  }

  .tacky-chatbot__launcher img {
    width: 70px;
    height: 70px;
  }

  .tacky-chatbot__label {
    min-height: 27px;
    padding: 5px 9px;
    font-size: .7rem;
  }

  .tacky-chatbot__panel {
    bottom: 112px;
  }
}

/* 2026-06-25: show Tacky body plus ask button */
.tacky-chatbot__launcher {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 118px;
  height: auto;
  min-height: 132px;
  padding: 0;
  gap: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
}

.tacky-chatbot__launcher:hover,
.tacky-chatbot__launcher:focus-visible {
  transform: translateY(-4px);
  box-shadow: none;
  filter: none;
}

.tacky-chatbot__launcher img {
  display: block;
  width: 92px;
  height: 92px;
  margin: 0 auto -4px;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(7, 16, 25, .28));
}

.tacky-chatbot__label {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  min-height: 32px;
  padding: 6px 13px 7px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #d80f1f;
  color: #fff;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 5px 0 rgba(7, 16, 25, .2), 0 10px 16px rgba(7, 16, 25, .2);
  white-space: nowrap;
}

@media (max-width: 520px) {
  .tacky-chatbot__launcher {
    width: 108px;
    min-height: 118px;
    padding: 0;
  }

  .tacky-chatbot__launcher img {
    width: 82px;
    height: 82px;
  }

  .tacky-chatbot__label {
    min-height: 29px;
    padding: 5px 10px 6px;
    font-size: .7rem;
  }
}

/* 2026-06-25: reveal Tacky after first view */
.tacky-chatbot {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px) scale(.94);
  transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
}

.tacky-chatbot.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* 2026-06-25: remove page-top button and place Tacky lower right */
.pagetop {
  display: none !important;
}

.tacky-chatbot {
  right: max(14px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
}

.tacky-chatbot__panel {
  bottom: 128px;
}

@media (max-width: 520px) {
  .tacky-chatbot {
    right: max(8px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .tacky-chatbot__panel {
    bottom: 112px;
  }
}

/* 2026-06-26: lift Tacky above countdown bar */
.tacky-chatbot {
  bottom: max(72px, env(safe-area-inset-bottom));
}

@media (max-width: 520px) {
  .tacky-chatbot {
    bottom: max(68px, env(safe-area-inset-bottom));
  }
}

/* 2026-06-26: keep Tacky clear of countdown bar */
.tacky-chatbot {
  bottom: max(100px, env(safe-area-inset-bottom));
}

@media (max-width: 520px) {
  .tacky-chatbot {
    bottom: max(96px, env(safe-area-inset-bottom));
  }
}

/* 2026-06-26: weather date note */
.date-note {
  display: inline-block;
  margin-top: 6px;
  color: #31445a;
  font-size: .74rem;
  font-weight: 700;
  line-height: 1.5;
}

/* 2026-06-26: enlarge first-view children by about 30% */
.hero-characters__boy {
  height: min(91vh, 897px);
}

.hero-characters__girl {
  height: min(80.6vh, 793px);
}

@media (max-width: 860px) {
  .hero-characters__boy {
    height: min(65vh, 507px);
  }

  .hero-characters__girl {
    height: min(55.9vh, 442px);
  }
}

@media (max-width: 520px) {
  .hero-characters__boy {
    height: min(59.8svh, 455px);
  }

  .hero-characters__girl {
    height: min(50.7svh, 403px);
  }
}


/* 2026-06-26: first-view character placement */
.takechan--hero {
  display: none !important;
  right: max(8px, calc(50% - 570px));
  bottom: 98px;
  --mascot-scale: .64;
  z-index: 5;
}

.hero-characters__boy {
  left: max(-18px, calc(50% - 660px));
  bottom: 72px;
  height: min(62vh, 610px);
}

.hero-characters__girl {
  right: max(-40px, calc(50% - 700px));
  bottom: 68px;
  height: min(52vh, 520px);
}

@media (max-width: 860px) {
  .takechan--hero {
    right: 74px;
    bottom: 132px;
    --mascot-scale: .42;
    transform: none;
  }

  .hero-characters__boy {
    left: -36px;
    bottom: 112px;
    height: min(48vh, 420px);
  }

  .hero-characters__girl {
    right: -70px;
    bottom: 108px;
    height: min(42vh, 360px);
  }
}

@media (max-width: 520px) {
  .takechan--hero {
    right: 78px;
    bottom: 142px;
    --mascot-scale: .34;
    transform: none;
  }

  .hero-characters__boy {
    left: -36px;
    bottom: 118px;
    height: min(47svh, 356px);
  }

  .hero-characters__girl {
    right: -60px;
    bottom: 116px;
    height: min(40svh, 318px);
  }
}

.weather-inline-note {
  display: inline-block;
  font-size: .78em;
  line-height: 1.45;
}

/* 2026-06-26: keep first-view title visible above characters */
.hero-title-image {
  z-index: 12;
  opacity: 1 !important;
  visibility: visible !important;
}

.hero-characters {
  z-index: 4;
}
/* 2026-06-28: rich festival loading screen */
.festival-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 226, 88, .22), transparent 20rem),
    radial-gradient(circle at 18% 18%, rgba(232, 32, 48, .18), transparent 14rem),
    linear-gradient(180deg, #050711 0%, #081535 52%, #1b1120 100%);
  color: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity .72s ease, visibility .72s ease, transform .72s ease;
}

.festival-loader.is-done {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  pointer-events: none;
}

.festival-loader::before,
.festival-loader::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.festival-loader::before {
  background-image:
    radial-gradient(circle, rgba(255, 214, 67, .95) 0 3px, transparent 4px),
    radial-gradient(circle, rgba(235, 56, 78, .82) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(93, 184, 255, .78) 0 2px, transparent 3px);
  background-size: 120px 120px, 150px 150px, 180px 180px;
  background-position: 12px 26px, 68px 90px, 24px 130px;
  animation: loaderConfetti 6s linear infinite;
  opacity: .62;
}

.festival-loader::after {
  background:
    linear-gradient(90deg, transparent 0 10%, rgba(255, 255, 255, .16) 12%, transparent 14% 100%),
    linear-gradient(180deg, transparent 0 74%, rgba(0, 0, 0, .28) 100%);
  mix-blend-mode: screen;
  opacity: .34;
}

.festival-loader__glow {
  position: absolute;
  width: min(72vw, 780px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 54, .25), rgba(229, 41, 53, .12) 36%, transparent 66%);
  filter: blur(10px);
  animation: loaderGlow 2.6s ease-in-out infinite;
}

.festival-loader__lanterns {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.festival-loader__lantern {
  position: absolute;
  top: clamp(26px, 8vh, 78px);
  width: clamp(44px, 8vw, 78px);
  aspect-ratio: .72 / 1;
  border: 3px solid rgba(255, 237, 176, .9);
  border-radius: 48% 48% 42% 42%;
  background:
    linear-gradient(90deg, transparent 0 28%, rgba(255, 255, 255, .35) 30% 37%, transparent 39% 61%, rgba(255, 255, 255, .35) 63% 70%, transparent 72%),
    radial-gradient(circle at 50% 42%, #fff2a6 0 18%, #ffb132 42%, #e33b2d 76%);
  box-shadow: 0 0 30px rgba(255, 172, 42, .72), inset 0 -10px 16px rgba(128, 18, 22, .28);
  animation: loaderLantern 2.4s ease-in-out infinite;
}

.festival-loader__lantern::before,
.festival-loader__lantern::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #6a2d1c;
}

.festival-loader__lantern::before {
  top: -14px;
  width: 42%;
  height: 10px;
  border-radius: 999px;
}

.festival-loader__lantern::after {
  bottom: -11px;
  width: 34%;
  height: 9px;
  border-radius: 999px;
}

.festival-loader__lantern--one { left: 12%; animation-delay: -.2s; }
.festival-loader__lantern--two { left: 50%; transform: translateX(-50%); animation-delay: -.75s; }
.festival-loader__lantern--three { right: 12%; animation-delay: -1.2s; }

.festival-loader__content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100vw - 36px));
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(28px, 6vw, 48px) clamp(18px, 5vw, 42px);
  text-align: center;
}

.festival-loader__eyebrow {
  margin: 0;
  color: #ffe58f;
  font-family: var(--font-display);
  font-size: clamp(.76rem, 2.1vw, 1rem);
  font-weight: 700;
  letter-spacing: .08em;
  text-shadow: 0 0 14px rgba(255, 206, 69, .62);
}

.festival-loader__title {
  width: min(560px, 92vw);
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .45)) drop-shadow(0 0 18px rgba(255, 213, 70, .34));
  animation: loaderTitle 1.9s ease-in-out infinite;
}

.festival-loader__copy {
  margin: 0;
  color: #fff9d8;
  font-size: clamp(.92rem, 2.4vw, 1.12rem);
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
}

.festival-loader__bar {
  width: min(360px, 72vw);
  height: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  background: rgba(255, 255, 255, .13);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .22), inset 0 0 10px rgba(0, 0, 0, .18);
}

.festival-loader__bar span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #e7333f, #ffd83d, #fff7bc);
  transform-origin: left center;
  animation: loaderBar 1.7s cubic-bezier(.64, 0, .2, 1) infinite;
}

.festival-loader__sparks span {
  position: absolute;
  z-index: 1;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: #ffd83d;
  box-shadow: 0 0 12px rgba(255, 216, 61, .9);
  animation: loaderSpark 2.8s ease-in-out infinite;
}

.festival-loader__sparks span:nth-child(1) { left: 17%; top: 35%; background: #ef4050; animation-delay: -.2s; }
.festival-loader__sparks span:nth-child(2) { left: 28%; top: 68%; background: #3fb1ff; animation-delay: -.8s; }
.festival-loader__sparks span:nth-child(3) { left: 74%; top: 36%; background: #ffd83d; animation-delay: -1.4s; }
.festival-loader__sparks span:nth-child(4) { left: 82%; top: 62%; background: #46d17e; animation-delay: -2s; }
.festival-loader__sparks span:nth-child(5) { left: 42%; top: 28%; background: #ef78ad; animation-delay: -1s; }
.festival-loader__sparks span:nth-child(6) { left: 61%; top: 74%; background: #ff8a2d; animation-delay: -2.35s; }

@keyframes loaderConfetti {
  from { background-position: 12px 26px, 68px 90px, 24px 130px; }
  to { background-position: 12px 146px, 68px 240px, 24px 310px; }
}

@keyframes loaderGlow {
  0%, 100% { transform: scale(.92); opacity: .72; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes loaderLantern {
  0%, 100% { margin-top: 0; filter: brightness(1); }
  50% { margin-top: 10px; filter: brightness(1.14); }
}

@keyframes loaderTitle {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.015); }
}

@keyframes loaderBar {
  0% { transform: scaleX(.08); }
  58% { transform: scaleX(.78); }
  100% { transform: scaleX(1); }
}

@keyframes loaderSpark {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(.72); opacity: .42; }
  50% { transform: translate3d(10px, -18px, 0) rotate(28deg) scale(1.18); opacity: 1; }
}

@media (max-width: 520px) {
  .festival-loader__lantern--one { left: 6%; }
  .festival-loader__lantern--three { right: 6%; }
  .festival-loader__content { gap: 14px; }
  .festival-loader__title { width: min(440px, 94vw); }
}

@media (prefers-reduced-motion: reduce) {
  .festival-loader,
  .festival-loader::before,
  .festival-loader__glow,
  .festival-loader__lantern,
  .festival-loader__title,
  .festival-loader__bar span,
  .festival-loader__sparks span {
    animation: none !important;
  }
}
/* 2026-06-28: loading countdown and mobile title position */
.festival-loader__content {
  transform: translateY(-3vh);
}

.festival-loader__countdown {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 8px;
  align-items: baseline;
  padding: 8px 16px 9px;
  border: 2px solid rgba(255, 255, 255, .78);
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  box-shadow: 0 0 22px rgba(255, 216, 61, .24), inset 0 0 18px rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
  color: #fff;
  animation: loaderCountdownPulse 1.6s ease-in-out infinite;
}

.festival-loader__countdown span {
  font-size: clamp(.76rem, 2vw, .94rem);
  font-weight: 700;
}

.festival-loader__countdown strong {
  color: #ffd83d;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4vw, 2rem);
  line-height: 1;
  text-shadow: 0 0 16px rgba(255, 216, 61, .62), 0 3px 0 rgba(120, 20, 20, .32);
}

@keyframes loaderCountdownPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-2px) scale(1.03); }
}

@media (max-width: 520px) {
  .festival-loader__content {
    transform: translateY(-8vh);
  }

  .festival-loader__countdown {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 8px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .festival-loader__countdown {
    animation: none !important;
  }
}
/* 2026-06-28: emphasize loader countdown number */
.festival-loader__countdown strong {
  font-size: clamp(2.2rem, 8vw, 4rem);
}

.festival-loader__countdown [data-loader-countdown-days] {
  display: inline-block;
  min-width: 1.45em;
  font-size: 1.18em;
  letter-spacing: .02em;
}

@media (max-width: 520px) {
  .festival-loader__countdown strong {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }
}
/* 2026-07-02: hero characters pop up after loading */
.hero-characters img {
  opacity: 0;
  transform: translate3d(0, 32vh, 0) scale(.9);
  transform-origin: 50% 100%;
  transition:
    opacity .34s ease,
    transform .92s cubic-bezier(.19, 1.25, .34, 1);
  will-change: transform, opacity;
}

body.is-hero-characters-entered .hero-characters img {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-characters__boy {
  transition-delay: .08s, .08s;
}

.hero-characters__girl {
  transition-delay: .22s, .22s;
}

@media (max-width: 520px) {
  .hero-characters img {
    transform: translate3d(0, 26svh, 0) scale(.92);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-characters img {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* 2026-07-02: ensure stagger timing for hero character entrance */
.hero-characters img.hero-characters__boy {
  transition-delay: .06s, .06s;
}

.hero-characters img.hero-characters__girl {
  transition-delay: .24s, .24s;
}
/* 2026-07-04: intro speech bubble layout */
.intro .intro__grid--speech {
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  background: rgba(255, 252, 237, .72);
  overflow: visible;
}

.intro .intro-mascot {
  position: relative;
  align-self: end;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 260px;
}

.intro .intro-mascot__bubble {
  position: relative;
  margin: 0 0 -8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #e2b634;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(.92rem, 1.8vw, 1.12rem);
  font-weight: 1000;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 8px 0 rgba(11, 87, 168, .14);
}

.intro .intro-mascot__bubble::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: -14px;
  width: 28px;
  height: 24px;
  background: #e2b634;
  clip-path: polygon(0 0, 100% 0, 72% 100%);
}

.intro .intro-mascot img {
  width: min(170px, 82vw);
  max-height: 210px;
  object-fit: contain;
  filter: drop-shadow(0 12px 12px rgba(7, 16, 25, .18));
}

.intro .intro-speech-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 42px);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(7, 16, 25, .12);
}

.intro .intro-speech-card::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 52%;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: #fff;
  transform: rotate(45deg) translateY(-50%);
}

.intro .intro-speech-card .eyebrow {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #234391;
  font-size: clamp(1.4rem, 3.6vw, 2.3rem);
  line-height: 1.35;
  box-shadow: none;
}

.intro .intro-speech-card .intro-date {
  display: grid;
  gap: 6px;
  justify-self: start;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.intro .intro-speech-card .intro-date__main {
  color: #d80f1f;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.4vw, 2.05rem);
  font-weight: 1000;
  line-height: 1.1;
}

.intro .intro-speech-card .intro-date__note {
  color: #d80f1f;
  font-size: clamp(.82rem, 1.8vw, 1rem);
  font-weight: 900;
  line-height: 1.45;
}

.intro .intro-speech-card h2 {
  color: #302823;
  font-size: clamp(1.45rem, 4vw, 2.6rem);
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-color: #f4d63d;
  text-decoration-thickness: 6px;
  text-underline-offset: 7px;
}

.intro .intro-speech-card .intro-text-panel {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.intro .intro-speech-card .intro-text-panel p {
  margin: 0;
  padding: 0;
  border: 0;
  color: #332b27;
  font-size: clamp(.98rem, 1.8vw, 1.13rem);
  font-weight: 700;
  line-height: 1.85;
}

@media (max-width: 860px) {
  .intro .intro__grid--speech {
    grid-template-columns: 1fr;
  }

  .intro .intro-mascot {
    order: 2;
    min-height: auto;
  }

  .intro .intro-mascot img {
    width: min(150px, 48vw);
  }

  .intro .intro-speech-card::before {
    left: 50%;
    top: auto;
    bottom: -18px;
    transform: translateX(-50%) rotate(45deg);
  }
}

@media (max-width: 520px) {
  .intro .intro__grid--speech {
    gap: 18px;
    padding: 18px;
  }

  .intro .intro-speech-card {
    padding: 20px 18px;
  }

  .intro .intro-mascot__bubble {
    font-size: .9rem;
  }
}
/* 2026-07-04: date CTA, intro accordion, info two-column, feature slider */
.intro .intro-speech-card .intro-date--button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 58px;
  padding: 12px 24px;
  border: 0;
  border-radius: 999px;
  background: #0b57a8;
  color: #fff;
  font-family: var(--font-display);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 0 #063a73;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.intro .intro-speech-card .intro-date--button:hover,
.intro .intro-speech-card .intro-date--button:focus-visible {
  transform: translateY(2px);
  filter: brightness(1.04);
  box-shadow: 0 6px 0 #063a73;
}

.intro .intro-speech-card .intro-date--button .intro-date__main,
.intro .intro-speech-card .intro-date--button .intro-date__note {
  color: #fff;
}

.intro .intro-speech-card .intro-date--button .intro-date__main {
  font-size: clamp(1.05rem, 2.5vw, 1.38rem);
}

.intro .intro-speech-card .intro-date--button .intro-date__note {
  font-size: clamp(.74rem, 1.5vw, .88rem);
}

.intro .intro-accordion__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 48px;
  padding: 10px 22px;
  border: 0;
  border-radius: 999px;
  background: #0b57a8;
  color: #fff;
  font: inherit;
  font-family: var(--font-display);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 0 #063a73;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.intro .intro-accordion__button:hover,
.intro .intro-accordion__button:focus-visible {
  transform: translateY(2px);
  filter: brightness(1.04);
  box-shadow: 0 6px 0 #063a73;
}

.intro .intro-accordion__hint {
  color: #fff;
  font-size: .98rem;
  font-weight: 900;
  white-space: nowrap;
}

.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  min-height: 180px;
}

.feature-section .section__inner {
  overflow: hidden;
}

.feature-grid {
  display: flex;
  grid-template-columns: none;
  gap: 18px;
  width: max-content;
  max-width: none;
  animation: featureAutoSlide 18s ease-in-out infinite;
  will-change: transform;
}

.feature-grid:hover,
.feature-grid:focus-within {
  animation-play-state: paused;
}

.feature-card {
  flex: 0 0 clamp(300px, 42vw, 430px);
}

.feature-card:not(:last-child)::after {
  display: none;
}

@keyframes featureAutoSlide {
  0%, 22% {
    transform: translateX(0);
  }

  34%, 56% {
    transform: translateX(calc((clamp(300px, 42vw, 430px) + 18px) * -1));
  }

  68%, 90% {
    transform: translateX(calc((clamp(300px, 42vw, 430px) + 18px) * -2));
  }

  100% {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-grid {
    animation: none;
  }
}

@media (max-width: 760px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    flex-basis: min(82vw, 360px);
  }
}
/* 2026-07-04: make intro accordion content feel nested */
.intro .intro-speech-card .intro-text-panel {
  margin-top: 2px;
  padding: 18px 20px;
  border: 2px solid rgba(11, 87, 168, .16);
  border-radius: 18px;
  background: #f7fbff;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .72);
}

.intro .intro-speech-card .intro-text-panel p {
  padding-left: 14px;
  border-left: 4px solid #0b57a8;
  color: #302823;
  line-height: 1.85;
}

.intro .intro-speech-card .intro-text-panel p + p {
  margin-top: 12px;
}

.intro .intro-speech-card .intro-text-panel p:nth-child(2) {
  border-left-color: #d80f1f;
}

.intro .intro-speech-card .intro-text-panel p:nth-child(3) {
  border-left-color: #e2b634;
}

@media (max-width: 520px) {
  .intro .intro-speech-card .intro-text-panel {
    padding: 14px 14px;
  }

  .intro .intro-speech-card .intro-text-panel p {
    padding-left: 10px;
  }
}
/* 2026-07-04: keep intro text inside accordion container */
.intro .intro-accordion {
  display: grid;
  gap: 6px;
  justify-self: start;
  width: min(100%, 560px);
  padding: 6px;
  border-radius: 22px;
  background: #0b57a8;
  box-shadow: 0 8px 0 #063a73;
}

.intro .intro-accordion .intro-accordion__button {
  width: 100%;
  justify-self: stretch;
  min-height: 46px;
  box-shadow: none;
}

.intro .intro-accordion .intro-accordion__button:hover,
.intro .intro-accordion .intro-accordion__button:focus-visible {
  transform: none;
  box-shadow: none;
}

.intro .intro-accordion .intro-text-panel {
  margin: 0;
  border: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: inset 0 0 0 3px rgba(11, 87, 168, .08);
}

.intro .intro-speech-card.is-accordion-open .intro-accordion {
  box-shadow: 0 8px 0 #063a73, 0 16px 26px rgba(7, 16, 25, .12);
}

@media (max-width: 520px) {
  .intro .intro-accordion {
    width: 100%;
  }
}
/* 2026-07-04: split intro date links and use title as accordion trigger */
.intro .intro-date-links {
  display: grid;
  gap: 10px;
  justify-items: start;
  width: min(100%, 560px);
}

.intro .intro-date-links .intro-date--button {
  width: 100%;
  align-items: center;
}

.intro .intro-date-links .intro-date--note-button {
  min-height: 48px;
  padding-block: 10px;
}

.intro .intro-accordion .intro-accordion__button {
  min-height: 64px;
  padding: 14px 18px;
  text-align: left;
}

.intro .intro-accordion .intro-accordion__hint {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 3vw, 1.8rem);
  font-weight: 1000;
  line-height: 1.35;
  white-space: normal;
}

@media (max-width: 520px) {
  .intro .intro-date-links {
    width: 100%;
  }

  .intro .intro-accordion .intro-accordion__button {
    min-height: 58px;
    padding-inline: 14px;
  }
}
/* 2026-07-05: remove white intro speech bubble frame */
.intro .intro-speech-card {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.intro .intro-speech-card::before {
  display: none;
}

.intro .intro__grid--speech {
  align-items: center;
}

@media (max-width: 520px) {
  .intro .intro-speech-card {
    padding: 0;
  }
}

/* 2026-07-05: prevent feature slider clipping and keep info two columns */
.feature-section {
  padding-bottom: clamp(170px, 16vw, 230px);
}

.feature-section .section__inner {
  overflow: visible;
}

.feature-grid {
  align-items: stretch;
  padding-bottom: 68px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.feature-card__photo {
  flex: 0 0 auto;
}

.feature-card p {
  overflow-wrap: anywhere;
}

.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

@media (max-width: 760px) {
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }
}

@media (max-width: 520px) {
  .info-card {
    min-height: 170px;
    padding: 16px 10px;
  }

  .info-card__icon {
    font-size: 1.55rem;
  }

  .info-card h3 {
    font-size: .95rem;
  }

  .info-card p {
    font-size: .88rem;
    line-height: 1.55;
  }

  .info-card strong {
    font-size: 1.02rem;
  }
}

/* 2026-07-05: final tune feature slider and info cards */
.feature-section {
  padding-bottom: clamp(220px, 22vw, 300px);
}

.feature-grid {
  padding-bottom: 92px;
}

.feature-card {
  height: auto;
  min-height: clamp(520px, 58vw, 640px);
  padding-bottom: clamp(28px, 5vw, 42px);
}

@media (max-width: 760px) {
  .feature-section {
    padding-bottom: 250px;
  }

  .feature-grid {
    padding-bottom: 112px;
  }

  .feature-card {
    min-height: 590px;
    padding-bottom: 44px;
  }
}

@media (max-width: 430px) {
  .feature-card {
    flex-basis: min(84vw, 340px);
    min-height: 620px;
  }
}

#info .info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

@media (max-width: 520px) {
  #info .info-grid {
    gap: 10px;
  }

  #info .info-card {
    display: grid;
    align-content: center;
    min-height: 152px;
  }
}

/* 2026-07-05: manual compact feature slider */
.feature-section {
  padding-top: clamp(110px, 12vw, 150px);
  padding-bottom: clamp(130px, 14vw, 180px);
}

.feature-section .section__inner {
  overflow: visible;
}

.feature-grid {
  display: flex;
  gap: 16px;
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  padding: 8px max(16px, calc((100vw - 1120px) / 2)) 46px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(16px, calc((100vw - 1120px) / 2));
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  animation: none !important;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.feature-grid.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.feature-grid::-webkit-scrollbar {
  height: 8px;
}

.feature-grid::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, .35);
}

.feature-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(11, 87, 168, .55);
}

.feature-card {
  flex: 0 0 clamp(260px, 34vw, 340px);
  min-height: 0;
  padding: clamp(18px, 2.8vw, 24px);
  padding-bottom: clamp(22px, 3vw, 28px);
  border-radius: 24px;
  box-shadow: 0 10px 0 rgba(11, 87, 168, .18);
  scroll-snap-align: center;
}

.feature-card span {
  width: 46px;
  height: 46px;
  font-size: .95rem;
}

.feature-card__photo {
  margin: 12px 0 14px;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
}

.feature-card h3 {
  margin: 12px 0 8px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.18;
}

.feature-card p {
  margin-top: 6px;
  font-size: clamp(.94rem, 1.7vw, 1.05rem);
  line-height: 1.5;
}

@media (max-width: 760px) {
  .feature-section {
    padding-top: 118px;
    padding-bottom: 165px;
  }

  .feature-grid {
    gap: 14px;
    padding-inline: 18px;
    padding-bottom: 54px;
    scroll-padding-inline: 18px;
  }

  .feature-card {
    flex-basis: min(78vw, 310px);
    min-height: 0;
  }
}

/* 2026-07-05: feature slider arrow controls */
.feature-slider {
  position: relative;
  display: grid;
  align-items: center;
}

.feature-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 12;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: #0b57a8;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 0 rgba(6, 58, 115, .85), 0 14px 24px rgba(7, 16, 25, .18);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.feature-slider__arrow:hover,
.feature-slider__arrow:focus-visible {
  filter: brightness(1.06);
  transform: translateY(calc(-50% + 2px));
  box-shadow: 0 6px 0 rgba(6, 58, 115, .85), 0 10px 20px rgba(7, 16, 25, .18);
}

.feature-slider__arrow--prev {
  left: clamp(4px, 2vw, 20px);
}

.feature-slider__arrow--next {
  right: clamp(4px, 2vw, 20px);
}

.feature-slider .feature-grid {
  padding-inline: max(70px, calc((100vw - 1120px) / 2));
}

@media (max-width: 760px) {
  .feature-slider {
    padding-bottom: 48px;
  }

  .feature-slider__arrow {
    top: auto;
    bottom: 0;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    transform: none;
  }

  .feature-slider__arrow:hover,
  .feature-slider__arrow:focus-visible {
    transform: translateY(2px);
  }

  .feature-slider__arrow--prev {
    left: calc(50% - 56px);
  }

  .feature-slider__arrow--next {
    right: calc(50% - 56px);
  }

  .feature-slider .feature-grid {
    padding-inline: 18px;
    padding-bottom: 28px;
  }
}

/* 2026-07-05: hide feature slider scrollbar */
.feature-grid {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.feature-grid::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

/* 2026-07-05: intro info cards and feature bottom fix */
.intro-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 680px);
}

.intro-info-card {
  display: grid;
  align-content: center;
  min-height: 112px;
  padding: 14px 12px;
  border: 3px solid #fff;
  border-radius: 18px;
  background: #0b57a8;
  color: #fff;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 0 #063a73, 0 14px 24px rgba(7, 16, 25, .12);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.intro-info-card:hover,
.intro-info-card:focus-visible {
  filter: brightness(1.05);
  transform: translateY(2px);
  box-shadow: 0 6px 0 #063a73, 0 10px 18px rgba(7, 16, 25, .12);
}

.intro-info-card__label {
  margin-bottom: 6px;
  color: #ffe36d;
  font-size: .82rem;
  font-weight: 900;
}

.intro-info-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.42rem);
  line-height: 1.2;
}

.intro-info-card small {
  margin-top: 5px;
  color: rgba(255, 255, 255, .9);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.35;
}

.info-weather-note {
  margin: 18px auto 0;
  width: min(100%, 720px);
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-weight: 900;
  text-align: center;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .22);
}

.feature-section {
  padding-bottom: clamp(190px, 18vw, 260px);
}

.feature-slider {
  padding-bottom: 70px;
}

.feature-slider .feature-grid {
  padding-bottom: 42px;
}

@media (max-width: 760px) {
  .intro-info-grid {
    gap: 8px;
  }

  .intro-info-card {
    min-height: 96px;
    padding: 12px 8px;
    border-radius: 16px;
  }

  .intro-info-card__label {
    font-size: .72rem;
  }

  .intro-info-card strong {
    font-size: .96rem;
  }

  .intro-info-card small {
    font-size: .68rem;
  }

  .feature-section {
    padding-bottom: 220px;
  }

  .feature-slider {
    padding-bottom: 82px;
  }
}

/* 2026-07-05: tune intro width and mobile feature single card */
.intro .intro__grid--speech {
  width: min(100%, 1080px);
  margin-inline: auto;
  grid-template-columns: minmax(160px, 260px) minmax(0, 720px);
  justify-content: center;
  column-gap: clamp(24px, 5vw, 64px);
}

.intro .intro-speech-card {
  width: min(100%, 720px);
  justify-self: start;
}

.intro-info-grid {
  width: 100%;
  max-width: 680px;
}

@media (min-width: 1024px) {
  .intro .intro-mascot {
    justify-self: end;
  }
}

@media (max-width: 760px) {
  .intro .intro__grid--speech {
    width: min(100%, 520px);
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 18px;
  }

  .intro .intro-speech-card {
    justify-self: center;
    width: 100%;
  }

  .feature-slider .feature-grid {
    padding-inline: 18px;
    scroll-padding-inline: 18px;
  }

  .feature-card {
    flex: 0 0 calc(100vw - 36px);
    max-width: 360px;
    scroll-snap-align: center;
  }
}

@media (max-width: 430px) {
  .feature-card {
    flex-basis: calc(100vw - 36px);
    max-width: none;
  }
}

/* 2026-07-05: desktop intro equal cards and feature grid */
.intro-info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 780px;
  gap: 12px;
}

.intro-info-card {
  min-width: 0;
}

@media (min-width: 761px) {
  .intro .intro__grid--speech {
    grid-template-columns: minmax(150px, 240px) minmax(0, 780px);
  }

  .intro .intro-speech-card {
    width: min(100%, 780px);
  }

  .feature-slider {
    padding-bottom: 0;
  }

  .feature-slider__arrow {
    display: none;
  }

  .feature-slider .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 1100px;
    margin-inline: auto;
    padding: 0 0 46px;
    overflow: visible;
    cursor: default;
    scroll-snap-type: none;
  }

  .feature-slider .feature-card {
    flex: initial;
    max-width: none;
    width: 100%;
    scroll-snap-align: none;
  }
}

@media (max-width: 760px) {
  .intro-info-grid {
    width: 100%;
    max-width: 520px;
  }
}

/* 2026-07-05: mobile feature card safe width */
@media (max-width: 760px) {
  .feature-slider .feature-grid {
    padding-inline: 24px;
    scroll-padding-inline: 24px;
  }

  .feature-card {
    flex-basis: calc(100vw - 64px);
    max-width: 340px;
    box-sizing: border-box;
  }

  .feature-card__photo {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .feature-slider .feature-grid {
    padding-inline: 30px;
    scroll-padding-inline: 30px;
  }

  .feature-card {
    flex-basis: calc(100vw - 72px);
    max-width: none;
  }
}

/* 2026-07-05: flowing mobile feature slider */
.feature-card.is-feature-clone {
  display: none;
}

@media (max-width: 760px) {
  .feature-slider .feature-grid {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }

  .feature-card.is-feature-clone {
    display: flex;
  }
}

/* 2026-07-07: hide feature slider arrows */
.feature-slider__arrow {
  display: none !important;
}

@media (max-width: 760px) {
  .feature-slider {
    padding-bottom: 34px;
  }
}

/* 2026-07-20: vendor cards and detail modal */
.vendor-section {
  margin-top: clamp(34px, 6vw, 64px);
}

.vendor-section__heading {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  text-align: center;
}

.vendor-section__heading span {
  justify-self: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #0b57a8;
  color: #fff;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 900;
}

.vendor-section__heading h3 {
  margin: 0;
  color: #0b57a8;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
  justify-content: center;
  gap: 20px;
}

.vendor-card {
  display: grid;
  gap: 14px;
  width: 100%;
  padding: 14px 14px 18px;
  border: 4px solid #fff;
  border-radius: 22px;
  background: #fff;
  color: #0b57a8;
  font: inherit;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 12px 0 rgba(11, 87, 168, .18), 0 20px 34px rgba(24, 56, 77, .14);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.vendor-card:hover,
.vendor-card:focus-visible {
  filter: brightness(1.02);
  transform: translateY(3px);
  box-shadow: 0 8px 0 rgba(11, 87, 168, .18), 0 14px 24px rgba(24, 56, 77, .12);
}

.vendor-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
}

.vendor-modal__panel {
  width: min(920px, 94vw);
  padding: clamp(16px, 3vw, 28px);
}

.vendor-modal__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .95fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: center;
}

.vendor-modal__hero img,
.vendor-modal__gallery img {
  display: block;
  width: 100%;
  min-width: 0;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(3, 22, 56, .14);
}

.vendor-modal__hero img {
  aspect-ratio: 1 / 1;
}

.vendor-modal__label {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffe36d;
  color: #0b57a8;
  font-weight: 900;
}

.vendor-modal h2 {
  margin: 0 0 14px;
  color: #0b57a8;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.15;
}

.vendor-modal__menu {
  margin: 0 0 18px;
  color: #302823;
  font-size: 1.05rem;
  line-height: 1.7;
}

.vendor-modal__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vendor-modal__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #0b57a8;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 6px 0 #063a73;
}

.vendor-modal__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.vendor-modal__gallery img {
  aspect-ratio: 4 / 3;
}

@media (max-width: 720px) {
  .vendor-modal__hero,
  .vendor-modal__gallery {
    grid-template-columns: 1fr;
  }

  .vendor-modal__panel {
    max-height: 88vh;
  }
}

/* 2026-07-20: vendor section top and photo slider */
.vendor-section--gourmet {
  margin-top: 0;
  margin-bottom: clamp(30px, 5vw, 54px);
  padding: clamp(22px, 4vw, 34px);
  border: 4px solid #fff;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff3e4 0%, #ffe7d7 100%);
  box-shadow: 0 16px 0 rgba(216, 15, 31, .12), 0 24px 44px rgba(24, 56, 77, .12);
}

.vendor-section--gourmet .vendor-section__heading span {
  background: #d80f1f;
}

.vendor-photo-slider {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.vendor-photo-slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-radius: 18px;
}

.vendor-photo-slider__track::-webkit-scrollbar {
  display: none;
}

.vendor-photo-slider__track img {
  width: 100%;
  min-width: 0;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  scroll-snap-align: center;
}

.vendor-photo-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.vendor-photo-slider__dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(11, 87, 168, .28);
  cursor: pointer;
}

.vendor-photo-slider__dots button.is-active {
  width: 28px;
  background: #0b57a8;
}

.vendor-modal__hero > .vendor-photo-slider {
  min-width: 0;
}

@media (max-width: 720px) {
  .vendor-section--gourmet {
    padding: 20px 16px 24px;
  }
}

/* 2026-07-20: vendor photo slider arrows */
.vendor-photo-slider {
  position: relative;
}

.vendor-photo-slider__arrow {
  position: absolute;
  top: calc(50% - 14px);
  z-index: 4;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: #0b57a8;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 7px 0 #063a73, 0 12px 22px rgba(7, 16, 25, .18);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.vendor-photo-slider__arrow:hover,
.vendor-photo-slider__arrow:focus-visible {
  filter: brightness(1.05);
  transform: translateY(calc(-50% + 2px));
  box-shadow: 0 5px 0 #063a73, 0 8px 16px rgba(7, 16, 25, .16);
}

.vendor-photo-slider__arrow--prev {
  left: 10px;
}

.vendor-photo-slider__arrow--next {
  right: 10px;
}

.vendor-photo-slider__track {
  position: relative;
}

@media (max-width: 520px) {
  .vendor-photo-slider__arrow {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }

  .vendor-photo-slider__arrow--prev {
    left: 8px;
  }

  .vendor-photo-slider__arrow--next {
    right: 8px;
  }
}

/* 2026-07-20: simplify vendor slider arrows */
.vendor-photo-slider__arrow {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, .9);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(3, 22, 56, .58);
  box-shadow: none;
}

.vendor-photo-slider__arrow:hover,
.vendor-photo-slider__arrow:focus-visible {
  filter: none;
  color: #fff;
  transform: translateY(-50%) scale(1.06);
  box-shadow: none;
}

.vendor-photo-slider__arrow--prev {
  left: 14px;
}

.vendor-photo-slider__arrow--next {
  right: 14px;
}

@media (max-width: 520px) {
  .vendor-photo-slider__arrow {
    width: auto;
    height: auto;
    font-size: 2.6rem;
  }
}

/* 2026-07-20: shops update note */
.shops-update-note {
  display: table;
  margin: 24px auto 0;
  padding: 10px 22px;
  border-radius: 999px;
  background: #ffd83d;
  color: #0b57a8;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 900;
  box-shadow: 0 7px 0 rgba(11, 87, 168, .18);
}

/* 2026-07-20: vendor type label */
.vendor-modal__type {
  display: inline-flex;
  align-items: center;
  margin: 0 0 10px;
  padding: 8px 12px;
  border-radius: 12px;
  background: #fff3e4;
  color: #302823;
  font-weight: 900;
}

/* 2026-07-20: vendor grid two columns */
.vendor-section--gourmet .vendor-grid {
  grid-template-columns: repeat(2, minmax(220px, 280px));
}

@media (max-width: 620px) {
  .vendor-section--gourmet .vendor-grid {
    grid-template-columns: minmax(0, 280px);
  }
}
/* 2026-07-20: vendor update note and image alignment */
.vendor-section--gourmet .shops-update-note {
  margin-top: 22px;
}

.vendor-card img,
.vendor-photo-slider__track img {
  object-position: center center;
}

.vendor-photo-slider__track {
  gap: 0;
}

.vendor-photo-slider__track img {
  flex: 0 0 100%;
}

@media (max-width: 620px) {
  .vendor-card img {
    aspect-ratio: 16 / 11;
  }

  .vendor-photo-slider__track img {
    aspect-ratio: 4 / 3;
  }
}
/* 2026-07-20: stabilize modal image slides and mobile feature cards */
.vendor-photo-slider__track {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #fff;
}

.vendor-photo-slider__track img {
  display: none;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  background: #fff;
}

.vendor-photo-slider__track img.is-active {
  display: block;
}

@media (max-width: 620px) {
  .feature-slider {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .feature-slider .feature-grid {
    gap: 14px;
    padding-inline: 18px;
    scroll-padding-inline: 18px;
  }

  .feature-slider .feature-card {
    flex: 0 0 calc(100vw - 72px);
    max-width: calc(100vw - 72px);
  }
}
/* 2026-07-20: keep mobile feature slider inside the viewport */
@media (max-width: 620px) {
  .feature-section .section__inner {
    overflow: hidden;
  }

  .feature-slider .feature-grid {
    width: 100%;
    padding-inline: 0;
    scroll-padding-inline: 0;
  }

  .feature-slider .feature-card {
    flex: 0 0 min(100%, 340px);
    max-width: min(100%, 340px);
  }
}
/* 2026-07-20: final slider geometry fix */
.vendor-photo-slider__track {
  aspect-ratio: 1 / 1;
}

.vendor-photo-slider__track img,
.vendor-photo-slider__track img.is-active {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media (max-width: 760px) {
  .feature-section .section__inner {
    width: min(100%, 430px);
    overflow: hidden;
  }

  .feature-slider {
    width: min(100%, 340px);
    max-width: calc(100vw - 40px);
    margin-inline: auto;
    overflow: hidden;
    padding-bottom: 34px;
  }

  .feature-slider .feature-grid {
    display: flex;
    width: 100%;
    max-width: none;
    gap: 14px;
    margin: 0;
    padding: 8px 0 34px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
  }

  .feature-slider .feature-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    scroll-snap-align: start;
  }
}

@media (max-width: 380px) {
  .feature-slider {
    max-width: calc(100vw - 32px);
  }
}
/* 2026-07-20: final hero area button alignment */
.hero-area-links {
  left: 50%;
  right: auto;
  width: min(720px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  transform: translateX(-50%);
}

.hero-area {
  width: 100%;
  min-width: 0;
  min-height: 58px;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  text-align: center;
}

@media (max-width: 760px) {
  .hero-area-links {
    width: min(420px, calc(100% - 28px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
  }

  .hero-area {
    min-height: 58px;
    padding: 9px 10px;
    border-radius: 12px;
    font-size: clamp(.78rem, 3.3vw, .9rem);
    line-height: 1.25;
  }
}

@media (max-width: 380px) {
  .hero-area-links {
    width: min(360px, calc(100% - 20px));
    gap: 10px;
  }

  .hero-area {
    min-height: 54px;
    padding-inline: 8px;
    font-size: .74rem;
  }
}
/* 2026-07-20: work experience vendor block */
.vendor-section--work {
  margin-top: clamp(28px, 5vw, 48px);
  margin-bottom: clamp(30px, 5vw, 54px);
  padding: clamp(22px, 4vw, 34px);
  border: 4px solid #fff;
  border-radius: 28px;
  background: linear-gradient(180deg, #effadd 0%, #e3f5c7 100%);
  box-shadow: 0 16px 0 rgba(132, 189, 82, .24), 0 24px 44px rgba(24, 56, 77, .12);
}

.vendor-section--work .vendor-section__heading span {
  background: #84bd52;
}

.vendor-section--work .vendor-section__heading h3,
.vendor-section--work .vendor-card {
  color: #2f6b2f;
}

.vendor-section--work .vendor-grid {
  grid-template-columns: minmax(220px, 280px);
}

.vendor-card small {
  color: #302823;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 900;
  line-height: 1.4;
}

.vendor-section--work .shops-update-note {
  margin-top: 22px;
  color: #2f6b2f;
}

@media (max-width: 720px) {
  .vendor-section--work {
    padding: 20px 16px 24px;
  }
}
/* 2026-07-20: vendor block heading cleanup */
.vendor-section__heading {
  margin-bottom: 20px;
}

.vendor-section__heading h3 {
  display: none;
}

.vendor-card small {
  display: none;
}
/* 2026-07-20: vendor card detail hint and no-scroll modal */
.vendor-card::after {
  content: "詳細を見る";
  justify-self: center;
  display: inline-grid;
  place-items: center;
  min-height: 32px;
  padding: 6px 16px 7px;
  border-radius: 999px;
  background: #0b57a8;
  color: #fff;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 5px 0 #063a73;
}

.vendor-section--work .vendor-card::after {
  background: #2f6b2f;
  box-shadow: 0 5px 0 rgba(47, 107, 47, .42);
}

.vendor-modal .image-modal__panel,
.vendor-modal__panel {
  width: min(820px, calc(100vw - 28px));
  max-height: calc(100svh - 28px);
  overflow: hidden;
  padding: clamp(12px, 2vw, 20px);
}

.vendor-modal__hero {
  grid-template-columns: minmax(0, 360px) minmax(240px, 1fr);
  gap: clamp(14px, 2.4vw, 24px);
}

.vendor-photo-slider {
  gap: 8px;
}

.vendor-photo-slider__track {
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
}

.vendor-modal__label {
  margin-bottom: 8px;
  padding: 5px 11px;
  font-size: .88rem;
}

.vendor-modal h2 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
}

.vendor-modal__type,
.vendor-modal__menu {
  margin-bottom: 10px;
  font-size: .98rem;
  line-height: 1.55;
}

.vendor-modal__links a {
  min-height: 40px;
  padding: 9px 14px;
}

.vendor-photo-slider__dots {
  gap: 7px;
}

@media (max-width: 720px) {
  .image-modal {
    padding: 10px;
  }

  .vendor-modal .image-modal__panel,
  .vendor-modal__panel {
    width: min(390px, calc(100vw - 20px));
    max-height: calc(100svh - 20px);
    padding: 12px;
    border-radius: 20px;
  }

  .vendor-modal__hero {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }

  .vendor-photo-slider__track {
    max-width: min(100%, 250px);
  }

  .vendor-photo-slider__arrow {
    font-size: 2.1rem;
  }

  .vendor-photo-slider__dots {
    margin-top: -2px;
  }

  .vendor-photo-slider__dots button {
    width: 9px;
    height: 9px;
  }

  .vendor-photo-slider__dots button.is-active {
    width: 22px;
  }

  .vendor-modal__label {
    font-size: .76rem;
  }

  .vendor-modal h2 {
    margin-bottom: 8px;
    font-size: 1.55rem;
  }

  .vendor-modal__type,
  .vendor-modal__menu {
    margin-bottom: 8px;
    padding: 7px 10px;
    font-size: .9rem;
    line-height: 1.45;
  }

  .vendor-modal__links {
    gap: 8px;
  }

  .vendor-modal__links a {
    min-height: 36px;
    padding: 8px 12px;
    font-size: .88rem;
  }

  .vendor-modal .image-modal__close {
    width: 40px;
    height: 40px;
    margin-bottom: -40px;
    font-size: 1.35rem;
  }
}

@media (max-width: 380px) {
  .vendor-photo-slider__track {
    max-width: 220px;
  }

  .vendor-modal h2 {
    font-size: 1.38rem;
  }

  .vendor-modal__type,
  .vendor-modal__menu {
    font-size: .84rem;
  }
}
/* 2026-07-20: vendor modal image width guard */
.vendor-modal .image-modal__panel img,
.vendor-modal__panel img,
.vendor-photo-slider__track img {
  min-width: 0;
}
/* 2026-07-20: tap speech bubble and centered modal text */
.vendor-card {
  position: relative;
}

.vendor-card::after {
  content: "タップ！";
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
  min-height: 0;
  padding: 7px 12px 8px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #ffd83d;
  color: #0b57a8;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 5px 0 rgba(7, 16, 25, .18), 0 9px 16px rgba(7, 16, 25, .16);
  transform: rotate(5deg);
}

.vendor-card::before {
  content: "";
  position: absolute;
  right: 28px;
  top: 43px;
  z-index: 2;
  width: 12px;
  height: 12px;
  background: #ffd83d;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.vendor-section--work .vendor-card::after {
  background: #ffd83d;
  color: #2f6b2f;
  box-shadow: 0 5px 0 rgba(47, 107, 47, .24), 0 9px 16px rgba(7, 16, 25, .14);
}

.vendor-section--work .vendor-card::before {
  background: #ffd83d;
}

.vendor-modal__hero > div:last-child {
  display: grid;
  justify-items: center;
  text-align: center;
}

.vendor-modal__type,
.vendor-modal__menu {
  justify-content: center;
  text-align: center;
}

.vendor-modal__links {
  justify-content: center;
}

@media (max-width: 520px) {
  .vendor-card::after {
    right: 8px;
    top: 8px;
    padding: 6px 10px 7px;
    font-size: .72rem;
  }

  .vendor-card::before {
    right: 24px;
    top: 37px;
  }
}
/* 2026-07-20: mobile feature fade fix */
@media (max-width: 760px) {
  .feature-section .section__inner {
    width: min(100%, 430px);
    overflow: hidden;
  }

  .feature-slider {
    width: min(100%, 340px);
    max-width: calc(100vw - 40px);
    margin-inline: auto;
    overflow: hidden;
    padding-bottom: 34px;
  }

  .feature-slider .feature-grid {
    display: grid;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 8px 0 34px;
    overflow: hidden;
    animation: none !important;
    transform: none !important;
  }

  .feature-slider .feature-card {
    grid-area: 1 / 1;
    display: none;
    width: 100%;
    max-width: none;
    min-width: 0;
    box-sizing: border-box;
    opacity: 0;
    transform: none !important;
    transition: opacity .28s ease;
  }

  .feature-slider .feature-card.is-feature-active {
    display: flex;
    opacity: 1;
  }

  .feature-card.is-feature-clone {
    display: none !important;
  }
}
/* 2026-07-20: mobile feature horizontal slide fix */
@media (max-width: 760px) {
  .feature-slider {
    width: min(100%, 340px);
    max-width: calc(100vw - 40px);
    margin-inline: auto;
    overflow: hidden;
    padding-bottom: 34px;
  }

  .feature-slider .feature-grid {
    display: flex;
    width: 100%;
    max-width: none;
    gap: 14px;
    margin: 0;
    padding: 8px 0 34px;
    overflow: visible;
    animation: none !important;
    transition: transform .48s cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
  }

  .feature-slider .feature-card,
  .feature-slider .feature-card.is-feature-active {
    display: flex;
    flex: 0 0 100%;
    width: 100%;
    max-width: none;
    min-width: 0;
    box-sizing: border-box;
    opacity: 1;
    grid-area: auto;
    transform: none !important;
    scroll-snap-align: none;
  }

  .feature-card.is-feature-clone {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 760px) {
  .feature-slider .feature-grid {
    transition: none;
  }
}
/* 2026-07-20: PC layout polish and moving feature slider fix */
@media (min-width: 761px) {
  .hero-area-links {
    width: min(920px, calc(100% - 64px));
    gap: 24px;
    bottom: 42px;
  }

  .hero-area {
    min-height: 82px;
    padding: 14px 24px;
    border-radius: 14px;
    font-size: clamp(1.05rem, 1.35vw, 1.32rem);
    line-height: 1.25;
  }

  .intro .intro__grid--speech {
    grid-template-columns: 1fr !important;
    justify-items: center;
    width: min(100%, 860px);
    padding-inline: clamp(24px, 4vw, 48px);
  }

  .intro .intro-mascot {
    order: 2;
    justify-self: center;
    min-height: auto;
  }

  .intro .intro-mascot img {
    width: min(170px, 26vw);
  }

  .intro .intro-speech-card {
    width: min(100%, 780px);
    justify-self: center;
  }

  .feature-slider .feature-grid {
    align-items: start;
    gap: 24px;
    transform: none !important;
  }

  .feature-slider .feature-card {
    align-self: start;
    height: 100%;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

@media (max-width: 760px) {
  .feature-slider .feature-grid {
    transform: translate3d(var(--feature-x, 0px), 0, 0) !important;
  }
}
/* 2026-07-20: intro accordion full width and centered access lead */
.intro .intro-speech-card,
.intro .intro-date-links,
.intro .intro-accordion {
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
}

.intro .intro-accordion .intro-accordion__button {
  width: 100%;
}

.access-lead {
  text-align: center;
  width: 100%;
}

.access-grid > div:first-child {
  text-align: center;
}

@media (min-width: 761px) {
  .intro .intro-speech-card {
    width: 100%;
  }
}
/* 2026-07-20: unify PC section widths */
@media (min-width: 761px) {
  .intro .intro__grid--speech {
    width: min(1120px, calc(100% - 32px)) !important;
    max-width: 1120px;
    padding-inline: clamp(28px, 4vw, 56px);
  }

  .intro .intro-speech-card {
    width: 100% !important;
    max-width: none;
  }

  .intro-info-grid,
  .intro .intro-date-links,
  .intro .intro-accordion {
    width: 100%;
    max-width: none;
  }

  .site-footer--contact {
    padding-inline: 0;
  }

  .footer-contact {
    width: min(1120px, calc(100% - 32px));
    max-width: 1120px;
  }
}

/* 2026-07-21: additional gourmet vendors and full vertical image display */
.vendor-card img.vendor-image--contain,
.vendor-photo-slider__track img.vendor-image--contain {
  object-fit: contain;
  background: #151515;
}

.vendor-section--gourmet .vendor-grid {
  grid-template-columns: repeat(2, minmax(220px, 280px));
}

@media (min-width: 980px) {
  .vendor-section--gourmet .vendor-grid {
    grid-template-columns: repeat(4, minmax(190px, 1fr));
    max-width: 1120px;
    margin-inline: auto;
  }
}

/* 2026-07-21: gourmet area single-column vendor list */
.vendor-section--gourmet .vendor-grid {
  grid-template-columns: minmax(0, min(100%, 360px)) !important;
  justify-content: center;
}

@media (min-width: 980px) {
  .vendor-section--gourmet .vendor-grid {
    grid-template-columns: minmax(0, 360px) !important;
    max-width: 420px;
  }
}

/* 2026-07-21: weekly topic video section */
.topic-video-section {
  background: #f8f7e9;
  padding-top: clamp(28px, 5vw, 58px);
}

.topic-video-card {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(12px, 2.5vw, 22px);
  border: 4px solid #fff;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 0 rgba(11, 87, 168, .12), 0 24px 42px rgba(24, 56, 77, .12);
}

.topic-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #0b57a8;
}

.topic-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* 2026-07-21: topic note and seinembu area cards */
.topic-video-note {
  width: min(900px, 100%);
  margin: -8px auto 18px;
  color: #302823;
  font-size: clamp(.82rem, 2.2vw, .95rem);
  font-weight: 700;
  text-align: center;
}

.vendor-section--seinembu {
  margin-top: clamp(28px, 5vw, 48px);
  margin-bottom: clamp(30px, 5vw, 54px);
  padding: clamp(22px, 4vw, 34px);
  border: 4px solid #fff;
  border-radius: 28px;
  background: linear-gradient(180deg, #eaf2ff 0%, #dce9ff 100%);
  box-shadow: 0 16px 0 rgba(11, 87, 168, .16), 0 24px 44px rgba(24, 56, 77, .12);
}

.vendor-section--seinembu .vendor-section__heading span {
  background: #4770bd;
}

.vendor-section--seinembu .vendor-grid {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  max-width: 900px;
  margin-inline: auto;
}

.vendor-section--seinembu .vendor-card {
  color: #244b9a;
}

.vendor-section--seinembu .vendor-card::after {
  background: #4770bd;
  box-shadow: 0 5px 0 rgba(36, 75, 154, .38);
}

.vendor-card__icon {
  display: grid;
  place-items: center;
  min-height: 120px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffd83d 0%, #ffef9c 100%);
  color: #244b9a;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.9rem);
  font-weight: 900;
  box-shadow: inset 0 -8px 0 rgba(255, 255, 255, .38);
}

.vendor-card--stall .vendor-card__icon {
  background: linear-gradient(135deg, #7bd0ed 0%, #d8f5ff 100%);
}

.vendor-card--secret .vendor-card__icon {
  background: linear-gradient(135deg, #84bd52 0%, #dff5bc 100%);
}

.vendor-modal__hero--textonly {
  display: block;
  text-align: center;
}

.vendor-modal__hero--textonly .vendor-modal__type {
  justify-content: center;
}

.vendor-modal--seinembu .vendor-modal__panel {
  width: min(620px, calc(100vw - 28px));
}

@media (max-width: 760px) {
  .vendor-section--seinembu {
    padding: 20px 16px 24px;
  }

  .vendor-section--seinembu .vendor-grid {
    grid-template-columns: minmax(0, min(100%, 320px));
  }
}

/* 2026-07-21: imagegen assets for seinembu cards */
.vendor-section--seinembu .vendor-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* 2026-07-21: match seinembu card image ratio to vendor cards */
.vendor-section--seinembu .vendor-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* 2026-07-21: unify tap bubble color */
.vendor-card::after,
.vendor-section--work .vendor-card::after,
.vendor-section--seinembu .vendor-card::after {
  background: #ffd83d;
  color: #1f3d8f;
  box-shadow: 0 5px 0 rgba(31, 61, 143, 0.22);
}

.vendor-card::before,
.vendor-section--work .vendor-card::before,
.vendor-section--seinembu .vendor-card::before {
  border-top-color: #ffd83d;
}
/* 2026-07-21: desktop vendor card column balance */
@media (min-width: 980px) {
  .vendor-section .vendor-grid {
    width: min(100%, 960px);
    margin-inline: auto;
    gap: 22px;
    align-items: stretch;
  }

  .vendor-section--gourmet .vendor-grid,
  .vendor-section--seinembu .vendor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    max-width: 960px !important;
    justify-content: center;
  }

  .vendor-section--work .vendor-grid {
    grid-template-columns: minmax(0, 300px) !important;
    max-width: 960px !important;
    justify-content: center;
  }

  .vendor-card {
    min-height: 100%;
  }

  .vendor-section--gourmet .vendor-card,
  .vendor-section--work .vendor-card,
  .vendor-section--seinembu .vendor-card {
    max-width: none;
  }
}
/* 2026-07-22: match work card size */
@media (min-width: 980px) {
  .vendor-section--work .vendor-grid {
    grid-template-columns: minmax(0, 305px) !important;
  }
}
/* 2026-07-22: reduce feature section bottom gap */
.feature-section {
  padding-bottom: clamp(56px, 7vw, 90px) !important;
}

.feature-slider {
  padding-bottom: 0 !important;
}

.feature-slider .feature-grid {
  padding-bottom: 24px !important;
}

@media (min-width: 980px) {
  .feature-slider .feature-grid {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 760px) {
  .feature-section {
    padding-bottom: 72px !important;
  }

  .feature-slider .feature-grid {
    padding-bottom: 28px !important;
  }
}
/* 2026-07-22: balance feature section bottom breathing room */
.feature-section {
  padding-bottom: clamp(96px, 10vw, 135px) !important;
}

.feature-slider .feature-grid {
  padding-bottom: 34px !important;
}

@media (min-width: 980px) {
  .feature-section {
    padding-bottom: clamp(110px, 10vw, 145px) !important;
  }

  .feature-slider .feature-grid {
    padding-bottom: 24px !important;
  }
}

@media (max-width: 760px) {
  .feature-section {
    padding-bottom: 104px !important;
  }

  .feature-slider .feature-grid {
    padding-bottom: 34px !important;
  }
}
/* 2026-07-22: match work area visual block size */
@media (min-width: 980px) {
  .vendor-section--work .vendor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    max-width: 960px !important;
    width: min(100%, 960px);
  }

  .vendor-section--work .vendor-card {
    grid-column: 2;
    min-height: 100%;
  }

  .vendor-section--work .vendor-card img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 979px) {
  .vendor-section--work .vendor-grid {
    grid-template-columns: minmax(0, min(100%, 320px)) !important;
  }
}
/* 2026-07-22: event area canvas card */
.vendor-section--event {
  margin-top: clamp(28px, 5vw, 48px);
  margin-bottom: clamp(30px, 5vw, 54px);
  padding: clamp(22px, 4vw, 34px);
  border: 4px solid #fff;
  border-radius: 28px;
  background: linear-gradient(180deg, #f2ecff 0%, #e5dcff 100%);
  box-shadow: 0 16px 0 rgba(111, 76, 196, .18), 0 24px 44px rgba(24, 56, 77, .12);
}

.vendor-section--event .vendor-section__heading span {
  background: #6f4cc4;
}

.vendor-section--event .vendor-card {
  color: #4d318f;
}

.vendor-section--event .vendor-card::after {
  background: #ffd83d;
  color: #1f3d8f;
  box-shadow: 0 5px 0 rgba(31, 61, 143, 0.22);
}

.vendor-section--event .vendor-card::before {
  border-top-color: #ffd83d;
}

@media (min-width: 980px) {
  .vendor-section--event .vendor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    max-width: 960px !important;
    width: min(100%, 960px);
    margin-inline: auto;
  }

  .vendor-section--event .vendor-card {
    grid-column: 2;
  }
}

@media (max-width: 979px) {
  .vendor-section--event .vendor-grid {
    grid-template-columns: minmax(0, min(100%, 320px)) !important;
  }
}
/* 2026-07-22: match event area block height */
.vendor-section--event {
  min-height: clamp(360px, 34vw, 430px);
  display: grid;
  align-content: center;
}

@media (min-width: 980px) {
  .vendor-section--event .vendor-card {
    min-height: 100%;
  }
}

@media (max-width: 760px) {
  .vendor-section--event {
    min-height: 0;
    align-content: initial;
  }
}
/* 2026-07-22: event width and feature food emphasis */
.feature-card p strong {
  color: #d0322f;
}

@media (min-width: 980px) {
  .vendor-section--event .vendor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    max-width: 960px !important;
    width: min(100%, 960px) !important;
    justify-content: stretch;
  }

  .vendor-section--event .vendor-card {
    grid-column: auto;
    max-width: none;
  }
}
/* 2026-07-22: large single event card on desktop */
@media (min-width: 980px) {
  .vendor-section--event .vendor-grid {
    grid-template-columns: minmax(0, 560px) !important;
    max-width: 720px !important;
    width: min(100%, 720px) !important;
    justify-content: center;
  }

  .vendor-section--event .vendor-card {
    grid-column: auto;
    font-size: clamp(1.35rem, 2vw, 1.7rem);
  }

  .vendor-section--event .vendor-card img {
    aspect-ratio: 16 / 9;
  }
}
/* 2026-07-22: chatbot answer links */
.tacky-chatbot__message a {
  color: #0b57a8;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tacky-chatbot__message--bot a:hover,
.tacky-chatbot__message--bot a:focus-visible {
  color: #d80f1f;
}
/* 2026-07-22: tacky typing animation */
.tacky-chatbot__message--typing {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 900;
}

.tacky-chatbot__typing-dots {
  display: inline-flex;
  gap: 3px;
  align-items: center;
}

.tacky-chatbot__typing-dots span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
  opacity: .35;
  animation: tackyTypingDot 1s ease-in-out infinite;
}

.tacky-chatbot__typing-dots span:nth-child(2) {
  animation-delay: .15s;
}

.tacky-chatbot__typing-dots span:nth-child(3) {
  animation-delay: .3s;
}

@keyframes tackyTypingDot {
  0%, 80%, 100% {
    opacity: .3;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}
/* 2026-07-22: spread chatbot quick buttons */
.tacky-chatbot__panel {
  width: min(420px, calc(100vw - 24px));
}

.tacky-chatbot__messages {
  max-height: min(320px, 42vh);
}

.tacky-chatbot__quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  padding: 0 14px 12px;
}

.tacky-chatbot__quick button {
  width: 100%;
  min-width: 0;
  padding: 8px 10px;
  text-align: center;
  white-space: normal;
  line-height: 1.25;
}

@media (max-width: 420px) {
  .tacky-chatbot__panel {
    width: min(380px, calc(100vw - 16px));
  }

  .tacky-chatbot__quick {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding-inline: 10px;
  }

  .tacky-chatbot__quick button {
    padding-inline: 8px;
    font-size: .78rem;
  }
}
/* 2026-07-22: prioritize chatbot message space */
.tacky-chatbot__panel {
  width: min(440px, calc(100vw - 18px));
}

.tacky-chatbot__messages {
  min-height: 260px;
  max-height: min(420px, 52vh);
}

.tacky-chatbot__quick {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 14px 10px;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.tacky-chatbot__quick button {
  flex: 0 0 auto;
  width: auto;
  white-space: nowrap;
  scroll-snap-align: start;
}

@media (max-width: 520px) {
  .tacky-chatbot__panel {
    width: min(410px, calc(100vw - 12px));
  }

  .tacky-chatbot__messages {
    min-height: 245px;
    max-height: min(390px, 50vh);
  }

  .tacky-chatbot__quick {
    padding-inline: 10px;
  }
}
/* 2026-07-22: compact wrapping chatbot quick buttons */
.tacky-chatbot__quick {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  gap: 8px 7px;
  overflow: visible;
  padding: 0 12px 10px;
  scroll-snap-type: none;
  scrollbar-width: none;
}

.tacky-chatbot__quick::-webkit-scrollbar {
  display: none;
}

.tacky-chatbot__quick button {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  padding: 8px 11px;
  font-size: 0.84rem;
  line-height: 1.1;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .tacky-chatbot__quick {
    gap: 8px 6px;
    padding-inline: 8px;
  }

  .tacky-chatbot__quick button {
    padding: 8px 10px;
    font-size: 0.82rem;
  }
}
/* 2026-07-22: keep chatbot panel inside viewport */
.tacky-chatbot {
  right: clamp(8px, 2vw, 24px);
  bottom: clamp(10px, 2vh, 22px);
  max-width: calc(100vw - 16px);
}

.tacky-chatbot__panel {
  width: min(430px, calc(100vw - 16px));
  max-height: calc(100vh - 28px);
  overflow: hidden;
}

.tacky-chatbot__messages {
  min-height: 220px;
  max-height: min(360px, 42vh);
}

@media (max-width: 520px) {
  .tacky-chatbot {
    right: 6px;
    bottom: 8px;
    max-width: calc(100vw - 12px);
  }

  .tacky-chatbot__panel {
    width: calc(100vw - 12px);
    max-height: calc(100dvh - 18px);
  }

  .tacky-chatbot__messages {
    min-height: 200px;
    max-height: min(320px, 38dvh);
  }
}
/* 2026-07-22: restore Tacky position and fit open panel */
.tacky-chatbot {
  right: max(14px, env(safe-area-inset-right));
  bottom: max(100px, env(safe-area-inset-bottom));
  max-width: calc(100vw - 20px);
}

.tacky-chatbot__panel {
  width: min(410px, calc(100vw - 20px));
  max-height: min(500px, calc(100vh - 230px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.tacky-chatbot__messages {
  flex: 1 1 auto;
  min-height: 180px;
  max-height: min(280px, 32vh);
}

.tacky-chatbot__quick,
.tacky-chatbot__form,
.tacky-chatbot__header {
  flex: 0 0 auto;
}

@media (max-width: 520px) {
  .tacky-chatbot {
    right: max(8px, env(safe-area-inset-right));
    bottom: max(96px, env(safe-area-inset-bottom));
    max-width: calc(100vw - 16px);
  }

  .tacky-chatbot__panel {
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 224px);
  }

  .tacky-chatbot__messages {
    min-height: 150px;
    max-height: min(220px, 28dvh);
  }
}
/* 2026-07-22: mobile open chatbot fits like a panel */
@media (max-width: 760px) {
  .tacky-chatbot.is-open {
    top: max(8px, env(safe-area-inset-top));
    right: max(8px, env(safe-area-inset-right));
    bottom: auto;
    left: max(8px, env(safe-area-inset-left));
    max-width: none;
    transform: none;
  }

  .tacky-chatbot.is-open .tacky-chatbot__launcher {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .tacky-chatbot.is-open .tacky-chatbot__panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-height: calc(100dvh - 16px);
    transform-origin: center top;
  }

  .tacky-chatbot.is-open .tacky-chatbot__messages {
    min-height: 150px;
    max-height: min(260px, 34dvh);
  }

  .tacky-chatbot.is-open .tacky-chatbot__quick {
    gap: 7px 6px;
    padding: 0 10px 10px;
  }

  .tacky-chatbot.is-open .tacky-chatbot__quick button {
    padding: 8px 10px;
    font-size: .8rem;
  }

  .tacky-chatbot.is-open .tacky-chatbot__form {
    gap: 7px;
    padding: 10px;
  }

  .tacky-chatbot.is-open .tacky-chatbot__form input {
    padding: 9px 11px;
  }

  .tacky-chatbot.is-open .tacky-chatbot__form button {
    padding: 9px 13px;
  }
}
/* 2026-07-22: keep Tacky visible while chat is open */
@media (max-width: 760px) {
  .tacky-chatbot.is-open {
    top: auto;
    right: max(8px, env(safe-area-inset-right));
    bottom: max(96px, env(safe-area-inset-bottom));
    left: auto;
    max-width: calc(100vw - 16px);
  }

  .tacky-chatbot.is-open .tacky-chatbot__launcher {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .tacky-chatbot.is-open .tacky-chatbot__panel {
    position: absolute;
    right: 0;
    bottom: 112px;
    width: min(390px, calc(100vw - 16px));
    max-height: calc(100dvh - 230px);
    transform-origin: right bottom;
  }

  .tacky-chatbot.is-open .tacky-chatbot__messages {
    min-height: 130px;
    max-height: min(210px, 27dvh);
  }
}

@media (max-width: 420px) {
  .tacky-chatbot.is-open .tacky-chatbot__panel {
    width: min(368px, calc(100vw - 12px));
    max-height: calc(100dvh - 218px);
  }

  .tacky-chatbot.is-open .tacky-chatbot__messages {
    min-height: 115px;
    max-height: min(190px, 24dvh);
  }
}
/* 2026-07-23: match seinembu modal size to other vendor modals */
@media (min-width: 761px) {
  .vendor-modal--seinembu .vendor-modal__panel {
    width: min(820px, calc(100vw - 28px));
  }
}
/* 2026-07-23: desktop 4-column gourmet and work grids */
@media (min-width: 980px) {
  .vendor-section--gourmet .vendor-grid,
  .vendor-section--work .vendor-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    width: min(100%, 1120px) !important;
    max-width: 1120px !important;
    justify-content: center;
    align-items: stretch;
  }

  .vendor-section--gourmet .vendor-card,
  .vendor-section--work .vendor-card {
    grid-column: auto !important;
    max-width: none;
    min-height: 100%;
  }
}
/* 2026-07-31: fallback link for weekly topic video */
.topic-video-link {
  margin: 14px 0 0;
  text-align: center;
}

.topic-video-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 18px;
  border-radius: 999px;
  background: #315aa8;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 5px 0 #203d79;
}

.topic-video-link a:hover,
.topic-video-link a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 #203d79;
}

/* 2026-08-09: after festival thank-you message */
.festival-loader__countdown--ended {
  grid-template-columns: 1fr;
  width: min(440px, calc(100vw - 56px));
  max-width: calc(100vw - 56px);
  gap: 6px;
  padding: 12px 16px 14px;
  border-radius: 24px;
  justify-self: center;
  margin-inline: auto;
  text-align: center;
  overflow: hidden;
  animation: none;
}

.festival-loader__countdown--ended span {
  display: block;
  color: #fff;
  font-size: clamp(.95rem, 3vw, 1.35rem);
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.festival-loader__countdown--ended strong {
  display: block;
  color: #ffd83d;
  font-size: clamp(1rem, 3.5vw, 1.85rem);
  line-height: 1.3;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

@media (max-width: 420px) {
  .festival-loader__countdown--ended {
    width: min(318px, calc(100vw - 44px));
    max-width: calc(100vw - 44px);
    padding: 10px 12px 12px;
    border-radius: 20px;
  }

  .festival-loader__countdown--ended span {
    font-size: clamp(.88rem, 4vw, 1.05rem);
  }

  .festival-loader__countdown--ended strong {
    font-size: clamp(.92rem, 4.2vw, 1.15rem);
  }
}

.countdown-nav__main--ended {
  flex-direction: column;
  gap: 2px;
  min-height: 68px;
  padding: 12px 22px;
}

.countdown-nav__main--ended span {
  color: #0b57a8;
  font-size: clamp(.92rem, 2.4vw, 1.08rem);
  font-weight: 900;
  line-height: 1.25;
}

.countdown-nav__main--ended strong {
  display: block;
  color: #d80f1f;
  font-size: clamp(.95rem, 2.8vw, 1.25rem);
  line-height: 1.28;
}
