@charset "UTF-8";

:root {
  --red: #e42525;
  --deep-red: #c91d22;
  --yellow: #ffd20a;
  --ink: #172033;
  --muted: #677084;
  --paper: #f6f7f9;
  --white: #fff;
  --shadow: 0 14px 34px rgba(22, 31, 48, .14);
  --radius: 22px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #f7f8fa 0%, #f2f3f5 100%);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: #111;
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(460px, 48vw, 630px);
  overflow: hidden;
  background: #7ecaf4;
  isolation: isolate;
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 59%;
}
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 35, 69, .05) 0%, rgba(0, 0, 0, .02) 45%, rgba(0, 0, 0, .25) 100%),
    radial-gradient(circle at 50% 36%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, .08) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  place-content: center;
  justify-items: center;
  min-height: inherit;
  padding: 42px 24px 26px;
  text-align: center;
  color: #fff;
  text-shadow: 0 4px 14px rgba(0, 0, 0, .55), 0 1px 2px rgba(0, 0, 0, .8);
}
.hero__thanks {
  margin: 0 0 14px;
  padding: 5px 14px 6px;
  color: #fff;
  background: rgba(0, 0, 0, .48);
  border-radius: 6px;
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.45;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .55);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero__title {
  margin: 0;
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 1000;
}
.hero__title-top {
  display: block;
  font-size: clamp(44px, 6.4vw, 84px);
}
.hero__title-main {
  display: block;
  margin-top: 10px;
  font-size: clamp(56px, 8.2vw, 116px);
  white-space: nowrap;
}
.hero__number { color: var(--yellow); font-size: 1.12em; }
.hero__fireworks {
  margin: 18px 0 0;
  padding: 8px 24px 10px;
  color: #7a4200;
  background: linear-gradient(180deg, #ffe755, #ffc61b);
  border: 3px solid rgba(255, 255, 255, .75);
  border-radius: 999px;
  box-shadow: 0 7px 22px rgba(0, 0, 0, .24);
  font-size: clamp(18px, 2vw, 29px);
  font-weight: 1000;
  text-shadow: none;
  transform-origin: center;
}
.hero__fireworks.is-blinking { animation: slow-blink 3.2s ease-in-out infinite; }
.hero__fireworks.is-paused { animation-play-state: paused; }
@keyframes slow-blink {
  0%, 100% { opacity: 1; filter: brightness(1); transform: scale(1); }
  50% { opacity: .38; filter: brightness(1.2); transform: scale(.985); }
}

/* Event summary */
.event-summary {
  position: relative;
  z-index: 4;
  background: #fff;
  border-bottom: 4px solid var(--red);
  box-shadow: 0 12px 32px rgba(20, 25, 38, .18);
}
.event-summary__inner {
  display: grid;
  grid-template-columns: 1.05fr .85fr 1.1fr;
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
  padding: 21px 0 19px;
}
.summary-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 0 30px;
  border-left: 1px solid #dfe3ea;
  text-align: center;
}
.summary-item:first-child { border-left: 0; }
.summary-label {
  margin: 0 0 2px;
  color: #758093;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .12em;
}
.summary-value {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
}
.summary-item strong { font-size: clamp(20px, 2.4vw, 34px); font-weight: 1000; line-height: 1.2; }
.summary-item--date strong { color: var(--red); font-size: clamp(25px, 3vw, 43px); }
.date-unit { font-size: .56em; }
.weekday {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-left: 12px;
  color: #fff;
  background: var(--red);
  font-size: 31px;
  line-height: 1;
}
.summary-wave { color: #8790a0; }
.summary-item--venue strong { font-size: clamp(16px, 1.75vw, 23px); }

.section { padding: 66px 0 0; }
.section--stalls { padding-bottom: 54px; }
.section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin: 0 0 36px;
  color: var(--red);
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.25;
  text-align: center;
  font-weight: 1000;
  letter-spacing: .02em;
}
.section-title::before,
.section-title::after {
  content: "";
  width: clamp(28px, 5vw, 72px);
  height: 3px;
  background: currentColor;
}

/* Experience */
.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, .9fr);
  gap: 24px;
  align-items: stretch;
}
.event-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 3px solid;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.event-card h3 { margin: 0; line-height: 1.35; font-size: 21px; }
.event-card--conan {
  padding: 22px;
  color: #10499d;
  background: linear-gradient(135deg, #f9fcff 0%, #eaf3ff 100%);
  border-color: #377bf5;
}
.event-card--conan > h3 { margin: 0 0 16px; font-size: clamp(20px, 2vw, 27px); }
.conan-layout { display: grid; grid-template-columns: minmax(270px, 320px) minmax(0, 1fr); gap: 22px; align-items: start; }
.conan-layout > img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; align-self: start; border-radius: 6px; box-shadow: 0 8px 16px rgba(15, 52, 100, .18); }
.event-copy { display: flex; flex-direction: column; color: #24456f; }
.event-copy p { margin: 12px 0 12px; font-size: 13px; font-weight: 600; line-height: 1.62; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { display: inline-flex; padding: 5px 10px; border-radius: 5px; color: #fff; font-size: 12px; font-weight: 900; line-height: 1.2; }
.tag--red { background: var(--red); }
.tag--yellow { color: #684200; background: var(--yellow); }
.info-list { display: grid; gap: 8px; margin: 0; }
.info-list > div { display: grid; grid-template-columns: 78px 1fr; align-items: center; min-height: 38px; overflow: hidden; border: 1px solid #d5e3f6; border-radius: 8px; background: #fff; }
.info-list dt { align-self: stretch; display: flex; align-items: center; padding: 9px 10px; color: #164990; background: #edf5ff; font-weight: 900; }
.info-list dd { margin: 0; padding: 9px 12px; color: #304664; font-size: 13px; font-weight: 700; }
.info-list > div.info-list__single { display: block; padding: 10px 12px; }
.info-list__single dt { padding: 0; background: transparent; }
.info-list__single dd { padding: 5px 0 0; }
.conan-photo-info { margin-top: 8px; border: 1px solid #d5e3f6; border-radius: 8px; background: #fff; padding: 5px 12px 6px; }
.conan-photo-info__title { margin: 0; color: #164990; font-size: 12px; font-weight: 900; line-height: 1.25; }
.conan-photo-info__time { margin: 2px 0 0 !important; color: #304664; font-size: 12px !important; font-weight: 800 !important; line-height: 1.3 !important; }
.conan-photo-info__body { margin: 1px 0 0 !important; color: #304664; font-size: 12px !important; font-weight: 700 !important; line-height: 1.35 !important; }
.conan-photo-info__note { display: block; margin-top: 4px !important; padding-top: 4px; border-top: 1px dashed #aebed4; color: #56677e; font-size: 9px !important; font-weight: 600; line-height: 1.35; text-align: left !important; }
.event-copy small { display: block; margin-top: 10px; text-align: right; font-size: 9px; }
.character-stack { display: grid; gap: 17px; }
.compact-card { display: grid; grid-template-columns: 130px 1fr; align-items: center; min-height: 170px; padding: 20px; box-shadow: none; }
.compact-card__image { display: grid; place-items: center; height: 130px; }
.compact-card__image img { max-width: 112px; max-height: 126px; object-fit: contain; }
.compact-card__image--asappy img { max-width: 118px; max-height: 130px; }
.compact-card__copy { min-width: 0; }
.compact-card__copy h3 { margin-bottom: 11px; }
.event-card--shinchan { color: #7c4a00; background: #fffaf0; border-color: #e9a800; }
.event-card--asappy { color: #157640; background: #f2fff6; border-color: #28a85e; }
.event-card--noodle { color: #b21621; background: #fff5f5; border-color: #f04b52; }
.info-list--compact { margin-top: 10px; gap: 7px; }
.info-list--compact > div { grid-template-columns: 60px 1fr; min-height: 31px; border: 0; }
.info-list--compact dt { padding: 6px 8px; color: #273248; background: rgba(255,255,255,.7); font-size: 11px; }
.info-list--compact dd { padding: 6px 8px; color: #273248; font-size: 11px; }
.compact-card small { display: block; margin-top: 10px; font-size: 8px; color: #8d806a; }
.event-card--shinchan .shinchan-photo-note { margin-top: 7px; color: #8d806a; font-size: 8px; }
.partner-logo { display: flex; align-items: center; gap: 10px; margin-top: 10px; font-size: 11px; font-weight: 900; line-height: 1.45; }
.partner-logo span { flex: 1; }
.partner-logo img { width: 100px; max-height: 28px; object-fit: contain; }
.compact-card--photo { grid-template-columns: 118px 1fr; gap: 18px; min-height: 140px; }
.compact-card__photo { width: 100%; height: 98px; object-fit: cover; object-position: center; border-radius: 9px; }
.noodle-status { margin: 8px 0 5px; color: #b21621; font-size: 13px; font-weight: 900; line-height: 1.3; }

/* Stage */
.stage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stage-card { overflow: hidden; background: #fff; border-top: 4px solid #ff5e66; border-radius: 12px; box-shadow: 0 8px 20px rgba(30, 35, 45, .13); }
.stage-card__text { min-height: 76px; padding: 13px 14px 11px; }
.stage-card time {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 10px;
  color: #fff;
  background: #ff4f55;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 1000;
  line-height: 1;
}
.stage-card h3 { margin: 3px 0 0; color: #df252a; font-size: 15px; line-height: 1.35; }
.stage-card__image { width: 100%; height: 150px; object-fit: cover; object-position: center; }
.stage-card__image--cheer { object-position: center 35%; }

/* Fireworks */
.fireworks-banner {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  color: #fff;
  background: #030303;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.fireworks-banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.fireworks-banner__copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; width: 53%; min-height: 320px; padding: 35px 42px; background: linear-gradient(90deg, #030303 0%, #030303 65%, rgba(3,3,3,.66) 84%, rgba(3,3,3,0) 100%); }
.finale-label { align-self: flex-start; margin: 0 0 15px; padding: 6px 17px; color: #111; background: var(--yellow); border-radius: 999px; font-size: 17px; font-weight: 1000; }
.fireworks-banner h2 { margin: 0; font-size: clamp(48px, 6.2vw, 80px); line-height: 1; text-shadow: 0 0 16px rgba(255,255,255,.48); }
.fireworks-banner__copy > p:last-child { margin: 18px 0 0; color: #ffdd0a; font-size: clamp(16px, 1.9vw, 24px); line-height: 1.25; font-weight: 1000; }

/* Stalls */
.stall-grid { display: grid; grid-template-columns: 1fr 1.16fr; gap: 26px; align-items: stretch; }
.stall-card { position: relative; overflow: hidden; background: #fff; border: 3px solid #f2bf00; border-radius: 22px; box-shadow: var(--shadow); }
.stall-label { position: absolute; z-index: 3; top: 14px; left: 14px; padding: 7px 15px; color: #fff; background: var(--red); border-radius: 999px; font-size: 13px; font-weight: 1000; box-shadow: 0 4px 12px rgba(153,0,0,.22); }
.stall-card__hero { width: 100%; height: 220px; object-fit: cover; object-position: center; }
.stall-card__body { padding: 25px 30px 30px; text-align: center; }
.karubi-logo { width: min(230px, 70%); margin: 0 auto 6px; }
.stall-card__body h2 { margin: 0 0 12px; color: var(--red); font-size: 20px; }
.stall-card__body p { margin: 0; color: #323844; font-size: 14px; line-height: 1.9; text-align: left; font-weight: 600; }
.stall-card--festival { border-color: #ef4b4b; }
.photo-collage { position: relative; height: 350px; margin: 22px 18px 0; }
.photo-print { position: absolute; margin: 0; padding: 7px 7px 19px; background: #fff; border: 1px solid #d9dde4; box-shadow: 0 11px 22px rgba(20,25,35,.24); }
.photo-print img { width: 100%; height: 100%; object-fit: cover; }
.photo-print--ice { z-index: 2; top: 8px; left: 1%; width: 48%; height: 46%; transform: rotate(-3deg); }
.photo-print--yoyo { z-index: 1; top: 0; right: 0; width: 54%; height: 56%; transform: rotate(2.5deg); }
.photo-print--shooting { z-index: 4; bottom: 9px; left: 2%; width: 57%; height: 51%; transform: rotate(-3.2deg); }
.photo-print--snacks { z-index: 5; right: 5%; bottom: 2px; width: 47%; height: 43%; transform: rotate(3deg); }
.stall-card__body--festival { padding-top: 12px; }
.stall-card__body--festival h2 { color: #d82b2b; text-align: left; }

/* Instagram */
.instagram-promo {
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  padding: 27px 35px;
  color: #fff;
  background: linear-gradient(105deg, #e32626, #da2025 70%, #ee3a3f);
  border: 4px dashed rgba(255,255,255,.92);
  border-radius: 23px;
  box-shadow: var(--shadow);
}
.instagram-promo h2 { margin: 0; color: #fff; line-height: 1.25; text-align: center; }
.instagram-promo__lead,
.instagram-promo__offer { display: block; white-space: nowrap; }
.instagram-promo__lead { font-size: clamp(18px, 3.15vw, 39px); letter-spacing: -.035em; }
.instagram-promo__lead b,
.instagram-promo__lead strong { font: inherit; font-weight: 1000; }
.instagram-promo__lead b { color: #fff; }
.instagram-promo__lead strong { color: #ffe70a; }
.instagram-promo__offer { margin-top: 2px; color: #fff; font-size: clamp(30px, 4vw, 50px); font-weight: 1000; }
.instagram-promo ul { display: grid; grid-template-columns: 1fr 1fr; gap: 3px 18px; max-width: 720px; margin: 14px auto 0; padding-left: 20px; font-size: 11px; }
.instagram-promo__visual { display: flex; align-items: center; justify-content: center; gap: 16px; }
.qr-link { display: inline-block; line-height: 0; }
.qr-link:focus-visible { outline: 4px solid #222; outline-offset: 4px; border-radius: 8px; }
.promo-qr { width: 125px; padding: 7px; background: #fff; border-radius: 8px; }
.promo-beer { width: 150px; filter: drop-shadow(0 12px 10px rgba(91, 26, 0, .23)); }

/* Footer */
.site-footer { padding: 45px 0 20px; background: #fff; border-top: 4px solid var(--red); }
.site-footer__inner { display: grid; grid-template-columns: 1fr 160px 190px; align-items: center; gap: 42px; }
.contact-label { margin: 0 0 7px; color: var(--red); font-weight: 900; }
.contact-block h2 { margin: 0 0 4px; color: #111827; font-size: 31px; }
.contact-block p { margin: 2px 0; font-size: 13px; }
.contact-phone { font-size: 20px !important; font-weight: 900; }
.contact-phone a { text-decoration: none; }
.contact-phone small { font-size: 12px; color: #747b87; }
.footer-instagram { text-align: center; }
.footer-instagram img { width: 110px; margin: auto; }
.footer-instagram p { margin: 5px 0 0; font-size: 10px; }
.instagram-button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 10px 23px; color: #fff; background: linear-gradient(90deg, #ff9f19, #f23f63 55%, #a743df); border-radius: 999px; box-shadow: 0 8px 17px rgba(62, 31, 67, .25); font-size: 13px; font-weight: 900; text-decoration: none; }
.instagram-button:focus-visible { outline: 4px solid #222; outline-offset: 4px; }
.copyright { margin: 35px 0 0; color: #b4bac3; font-size: 9px; text-align: center; }

@media (max-width: 900px) {
  .experience-grid { grid-template-columns: 1fr; }
  .character-stack { grid-template-columns: 1fr 1fr; }
  .event-card--noodle { grid-column: 1 / -1; }
  .stage-grid { grid-template-columns: 1fr 1fr; }
  .stall-grid { grid-template-columns: 1fr; }
  .instagram-promo { grid-template-columns: 1fr 260px; }
  .instagram-promo ul { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 140px; }
  .instagram-button { grid-column: 1 / -1; justify-self: center; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .hero { min-height: 330px; }
  .hero__image { object-position: 57% 67%; }
  .hero__shade { background: linear-gradient(180deg, rgba(0,35,69,.05), rgba(0,0,0,.08) 42%, rgba(0,0,0,.34) 100%); }
  .hero__content { align-content: start; justify-items: center; padding: 32px 12px 14px; }
  .hero__thanks { margin-bottom: 10px; padding: 4px 9px 5px; font-size: 12px; border-radius: 5px; }
  .hero__title { width: 100%; }
  .hero__title-top { font-size: clamp(30px, 9vw, 44px); }
  .hero__title-main { margin-top: 6px; font-size: clamp(44px, 13.8vw, 64px); white-space: nowrap; }
  .hero__fireworks { margin-top: 10px; padding: 5px 14px 7px; font-size: 16px; }

  .event-summary__inner { grid-template-columns: 1.12fr .9fr 1.05fr; width: min(calc(100% - 12px), var(--container)); padding: 10px 0 9px; }
  .summary-item { min-height: 58px; padding: 0 5px; border-top: 0; border-left: 1px solid #e6e9ef; }
  .summary-item:first-child { border-top: 0; border-left: 0; }
  .summary-label { margin: 0 0 2px; font-size: 8px; }
  .summary-item--date strong { font-size: 18px; }
  .summary-item strong { font-size: 15px; }
  .summary-item--venue strong { font-size: 11px; line-height: 1.35; }
  .summary-value { min-height: 34px; }
  .weekday { width: 17px; height: 17px; margin-left: 5px; font-size: 12px; }
  .date-unit { font-size: .62em; }

  .section { padding-top: 50px; }
  .section-title { gap: 10px; margin-bottom: 25px; font-size: 20px; }
  .section-title::before, .section-title::after { width: 24px; height: 2px; }
  .event-card { border-width: 2px; border-radius: 16px; }
  .event-card--conan { padding: 17px; }
  .conan-layout { grid-template-columns: 1fr; }
  .conan-layout > img { width: min(100%, 320px); height: auto; margin: 0 auto; }
  .event-copy p { font-size: 12px; }
  .info-list > div { grid-template-columns: 68px 1fr; }
  .conan-photo-info { padding: 5px 10px 6px; }
  .conan-photo-info__title { font-size: 11px; }
  .conan-photo-info__time { font-size: 11px !important; }
  .conan-photo-info__body { font-size: 11px !important; }
  .conan-photo-info__note { font-size: 9px !important; }
  .character-stack { grid-template-columns: 1fr; }
  .event-card--noodle { grid-column: auto; }
  .compact-card { grid-template-columns: 105px 1fr; min-height: 142px; padding: 16px; }
  .compact-card__image { height: 105px; }
  .compact-card__image img, .compact-card__image--asappy img { max-height: 105px; max-width: 92px; }
  .compact-card__copy h3 { font-size: 16px; }
  .compact-card--photo { grid-template-columns: 100px 1fr; gap: 14px; }
  .compact-card__photo { height: 86px; }

  .stage-grid { grid-template-columns: 1fr; gap: 14px; }
  .stage-card { display: grid; grid-template-columns: 1fr; }
  .stage-card__text { min-height: auto; padding: 11px 13px; }
  .stage-card__image { height: 205px; }
  .stage-card__image--cheer { object-position: center 30%; }

  .fireworks-banner { min-height: 245px; border-radius: 17px; }
  .fireworks-banner > img { object-position: center; }
  .fireworks-banner__copy { width: 76%; min-height: 245px; padding: 22px 20px; background: linear-gradient(90deg, #030303 0%, rgba(3,3,3,.93) 55%, rgba(3,3,3,.48) 85%, rgba(3,3,3,0) 100%); }
  .finale-label { padding: 5px 11px; font-size: 12px; }
  .fireworks-banner h2 { font-size: 43px; }
  .fireworks-banner__copy > p:last-child { margin-top: 12px; font-size: 13px; }

  .stall-card { border-width: 2px; border-radius: 17px; }
  .stall-card__hero { height: 190px; }
  .stall-card__body { padding: 21px 20px 25px; }
  .stall-card__body p { font-size: 13px; line-height: 1.8; }
  .photo-collage { height: 310px; margin-inline: 11px; }
  .stall-label { top: 10px; left: 10px; padding: 6px 11px; font-size: 11px; }

  .instagram-promo { grid-template-columns: 1fr; gap: 8px; padding: 23px 17px 17px; border-width: 3px; border-radius: 17px; }
  .instagram-promo__lead { font-size: clamp(14px, 4.45vw, 18px); }
  .instagram-promo__offer { font-size: 29px; }
  .instagram-promo ul { margin-top: 12px; font-size: 10px; }
  .instagram-promo__visual { gap: 8px; }
  .promo-qr { width: 105px; }
  .promo-beer { width: 128px; }

  .site-footer { padding-top: 35px; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 25px; text-align: center; }
  .contact-block h2 { font-size: 26px; }
  .footer-instagram img { width: 105px; }
  .instagram-button { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__fireworks.is-blinking { animation: none; }
}
