:root {
  --c-red: #d80912;
  --c-ink: #231f20;
  --c-white: #fff;
  --c-black: #000;
  --c-cream: #f5f4f1;
  --c-accent: #e6e4e1;
  --c-blue: #246ce5;
  --c-red-deep: #b32727;
  --c-yellow: #e1c500;
  --c-green: #177017;
  --c-gray: #e9e9e9;
  --c-polaroid: #ece4dd;
  --font-en: "Bebas Neue", "Noto Sans JP", "Hiragino Sans", sans-serif;
  --font-jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --lp-width: 402px;
  --nav-breakpoint: 900px;
  --sec-gap: 48px;
}

.t-jp-display {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: 0;
}

.t-jp-h1 {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0;
}

.t-jp-h3 {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0;
}

.t-jp-body {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.t-jp-body-s {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.t-jp-button {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.t-jp-caption {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
}

.t-en-display {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 40px;
  line-height: 0.8;
  letter-spacing: 0;
}

.t-trim-cap {
  display: block;
  line-height: 1;
  margin-top: -0.2087em;
  margin-bottom: -0.0583em;
}

.t-trim-cap--en {
  display: block;
  line-height: 1;
  margin-top: -0.1em;
  margin-bottom: -0.2em;
}

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

html {
  background: var(--c-ink);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--c-ink);
  font-family: var(--font-jp);
  color: var(--c-ink);
}

img {
  display: block;
  max-width: none;
}

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

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

.lp h1,
.lp h2,
.lp h3,
.lp h4,
.lp h5,
.lp h6 {
  margin: 0;
}

p {
  margin: 0;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.sec {
  position: relative;
  width: var(--lp-width);
  overflow-x: clip;
  overflow-y: visible;
  background: var(--c-cream);
  isolation: isolate;
}

.sec--accent {
  background: var(--c-accent);
}

.sec {
  scroll-margin-top: 78px;
}

.red-band {
  width: 552px;
  height: 42px;
  background: var(--c-red-deep);
}

.sec--ink {
  background: var(--c-ink);
  color: var(--c-white);
}

.lp > .sec + .sec {
  margin-top: var(--sec-gap);
}

.sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 370px;
  margin: 0 16px;
}

.sec-head__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 370px;
}

.sec-head__title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-ink);
}

.sec-head__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
}

.sec-head__text {
  width: 370px;
  color: var(--c-ink);
}

.deco {
  position: relative;
  width: var(--lp-width);
  height: 44px;
  overflow-x: clip;
  overflow-y: visible;
  margin: 0 -16px;
}

.deco__track,
.deco .marquee__track {
  position: absolute;
  top: -0.2087em;
  left: 0;
  display: flex;
  white-space: nowrap;
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 60px;
  line-height: 1;
  letter-spacing: 0;
  color: transparent;
  -webkit-text-stroke: 1px var(--c-red);
}

.deco__item {
  padding-right: 0.25em;
}

.marquee__track.is-animating {
  animation: marquee-scroll var(--marquee-duration, 20s) linear infinite;
}

[data-marquee-drag] {
  cursor: grab;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

[data-marquee-drag].is-dragging {
  cursor: grabbing;
}

[data-marquee-drag] img {
  -webkit-user-drag: none;
  pointer-events: none;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(var(--marquee-distance, 0px) * -1));
  }
}
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 370px;
  padding: 16px;
  border: 2px solid var(--c-ink);
  background: var(--c-cream);
  color: var(--c-ink);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: left;
  transition: background 0.15s ease;
}

.btn-primary:hover {
  background: var(--c-accent);
}

.btn-primary__label {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-primary__hint {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.btn-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 4px;
  border-radius: 30px;
  background: var(--c-ink);
}

.btn-arrow img {
  width: 20px;
  height: 20px;
}

.btn-arrow--lg {
  width: 35px;
  height: 35px;
  border-radius: 35px;
  padding: 5px;
}

.btn-arrow--lg img {
  width: 24px;
  height: 24px;
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary {
    transition: none;
  }

  .marquee__track.is-animating {
    animation: none;
  }
}
.sec-band {
  position: absolute;
  left: 75px;
  width: 253px;
  height: 44px;
  background: var(--c-black);
}

.sec-band__en {
  position: absolute;
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--c-white);
  white-space: nowrap;
}

.btn {
  position: absolute;
  left: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 343px;
  height: 51px;
  border: 3px solid var(--c-black);
  background: var(--c-yellow);
  box-shadow: 10px 11px 0 var(--c-black);
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--c-black);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn__arrow {
  width: 0;
  height: 0;
  border-left: 14.3px solid currentColor;
  border-top: 8.25px solid transparent;
  border-bottom: 8.25px solid transparent;
}

.btn:hover {
  transform: translate(4px, 5px);
  box-shadow: 6px 6px 0 var(--c-black);
}

.btn:active {
  transform: translate(10px, 11px);
  box-shadow: 0 0 0 var(--c-black);
}

.btn--green {
  background: var(--c-green);
  color: var(--c-white);
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.shell {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  background: var(--c-ink);
}

.lp {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  width: var(--lp-width);
  background: var(--c-cream);
  overflow-x: clip;
  zoom: var(--lp-zoom, min(calc(100vw / 402px), 1));
  line-break: strict;
  padding-bottom: calc(75px + env(safe-area-inset-bottom, 0px));
  background-image: linear-gradient(var(--c-ink), var(--c-ink));
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% calc(75px + env(safe-area-inset-bottom, 0px));
}

body[data-page=map] .lp {
  min-height: calc(100vh / var(--lp-zoom, 1));
  min-height: calc(100dvh / var(--lp-zoom, 1));
  background: var(--c-black);
}

.side-rail {
  display: none;
}

@media (min-width: 1240px) {
  .shell {
    gap: 59px;
  }

  .side-rail {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    min-width: 0;
    max-width: 402px;
    position: sticky;
    top: 0;
    box-sizing: border-box;
    height: 100vh;
    padding: 40px 0;
    overflow-y: auto;
    scrollbar-width: none;
    background: var(--c-ink);
    color: var(--c-white);
  }

  .side-rail::-webkit-scrollbar {
    display: none;
  }

  .bottomnav {
    display: none;
  }

  .lp {
    padding-bottom: 0;
  }
}
.side-rail .site-menu__row:hover {
  background: rgba(255, 255, 255, 0.08);
}

.side-rail--left {
  gap: 24px;
}

.side-rail--left > :first-child {
  margin-top: auto;
}

.side-rail .side-rail__top {
  padding: 0;
}

.side-rail__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  padding: 24px 0 40px;
}

.side-rail__group {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.side-rail__divider {
  display: block;
  flex-shrink: 0;
  width: 100%;
  height: 1px;
  background: var(--c-white);
}

.side-rail__heading-en {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 20px;
  line-height: 0.8;
  letter-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
  .side-rail .site-menu__row {
    transition: none;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 600;
}

.site-header__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 78px;
  padding: 0 16px;
  background: var(--c-ink);
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-header__logo {
  display: block;
  width: 250px;
  height: 20.57px;
}

.site-header__year {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 28px;
  color: var(--c-white);
}

.site-header__menu {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  color: var(--c-white);
}

.site-header__menu-icon {
  display: block;
  width: 100%;
  height: 100%;
}

.site-header__menu-line {
  transform-box: view-box;
  transition: transform 0.34s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
}

.site-header__menu-line--1 {
  transform-origin: 12px 6px;
}

.site-header__menu-line--2 {
  transform-origin: 12px 12px;
}

.site-header__menu-line--3 {
  transform-origin: 12px 18px;
}

.site-header__menu[aria-expanded=true] .site-header__menu-line--1 {
  transform: translateY(6px) rotate(45deg);
}

.site-header__menu[aria-expanded=true] .site-header__menu-line--2 {
  opacity: 0;
}

.site-header__menu[aria-expanded=true] .site-header__menu-line--3 {
  transform: translateY(-6px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .site-header__menu-line {
    transition: none;
  }
}
.site-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: calc(100vh / var(--lp-zoom, 1) - 78px);
  height: calc(100dvh / var(--lp-zoom, 1) - 78px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: var(--c-ink);
  color: var(--c-white);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.site-menu::-webkit-scrollbar {
  display: none;
}

.site-menu[hidden] {
  display: none;
}

html.is-menu-open,
html.is-menu-open body {
  overflow: hidden;
}

.site-menu.is-closing {
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
}

.site-menu__row,
.site-menu__heading,
.site-menu__divider,
.site-menu__foot {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition-delay: calc(var(--i, 0) * 0.04s);
}

.site-menu.is-cascade-enter .site-menu__row,
.site-menu.is-cascade-enter .site-menu__heading,
.site-menu.is-cascade-enter .site-menu__divider,
.site-menu.is-cascade-enter .site-menu__foot {
  opacity: 0;
  transform: translateY(-10px);
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .site-menu,
.site-menu__row,
.site-menu__heading,
.site-menu__divider,
.site-menu__foot {
    transition: none;
  }
}
.site-menu__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  padding: 24px 0 40px;
}

.site-menu__group {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.site-menu__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 0 16px;
}

.site-menu__heading-en {
  color: var(--c-red);
}

.site-menu__divider {
  display: block;
  flex-shrink: 0;
  width: 100%;
  height: 1px;
  background: var(--c-white);
}

.site-menu__row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0 16px;
  text-align: left;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.15s ease;
  transition-delay: calc(var(--i, 0) * 0.04s), calc(var(--i, 0) * 0.04s), 0s;
}

.site-menu__row:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-menu__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-ink);
}

.site-menu__icon-glyph {
  width: 32px;
  height: 32px;
  background-color: var(--c-white);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.site-menu__icon-glyph--house {
  -webkit-mask-image: url("/media/images/35th/v10-icon-house.svg");
  mask-image: url("/media/images/35th/v10-icon-house.svg");
}

.site-menu__icon-glyph--map {
  -webkit-mask-image: url("/media/images/35th/v10-icon-map.svg");
  mask-image: url("/media/images/35th/v10-icon-map.svg");
}

.site-menu__icon-glyph--timetable {
  -webkit-mask-image: url("/media/images/35th/v10-icon-timetable.svg");
  mask-image: url("/media/images/35th/v10-icon-timetable.svg");
}

.site-menu__icon-glyph--search {
  -webkit-mask-image: url("/media/images/35th/v10-icon-search.svg");
  mask-image: url("/media/images/35th/v10-icon-search.svg");
}

.site-menu__icon-glyph--star {
  -webkit-mask-image: url("/media/images/35th/v10-icon-star.svg");
  mask-image: url("/media/images/35th/v10-icon-star.svg");
}

.site-menu__icon-glyph--spotlight {
  -webkit-mask-image: url("/media/images/35th/v10-icon-spotlight.svg");
  mask-image: url("/media/images/35th/v10-icon-spotlight.svg");
}

.site-menu__icon-glyph--goods {
  -webkit-mask-image: url("/media/images/35th/v10-icon-goods.svg");
  mask-image: url("/media/images/35th/v10-icon-goods.svg");
}

.site-menu__icon-glyph--gourmet {
  -webkit-mask-image: url("/media/images/35th/v10-icon-gourmet.svg");
  mask-image: url("/media/images/35th/v10-icon-gourmet.svg");
}

.site-menu__icon-glyph--theme {
  -webkit-mask-image: url("/media/images/35th/v10-icon-theme-glyph.svg");
  mask-image: url("/media/images/35th/v10-icon-theme-glyph.svg");
}

.site-menu__label {
  flex: 1 1 auto;
}

.site-menu__label-group {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.site-menu__eyebrow {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--c-red);
}

.site-menu__count {
  flex-shrink: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 11px;
  background: var(--c-red);
  color: var(--c-white);
  font-size: 12px;
  line-height: 1;
}

.site-menu__count[hidden] {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .site-menu__row {
    transition: none;
  }
}
.site-menu__foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  padding: 40px 16px;
  background: var(--c-ink);
  color: var(--c-white);
}

.site-menu__foot-logo {
  width: 126px;
  height: 80px;
}

.site-menu__foot-sns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-menu__foot-sns img {
  display: block;
}

.site-menu__foot-privacy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 171px;
}

.site-menu__foot-privacy-line {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--c-white);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  padding: 0 16px 40px;
  background: var(--c-ink);
}

.hero__logo {
  flex-shrink: 0;
  width: 100px;
  height: 128px;
}

.hero__date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: 0;
}

.hero__date-group {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  white-space: nowrap;
}

.hero__date-year,
.hero__date-day,
.hero__date-dow {
  font-family: var(--font-en);
  font-weight: 400;
  color: var(--c-white);
  letter-spacing: 0;
}

.hero__date-year,
.hero__date-dow {
  font-size: 18px;
}

.hero__date-day {
  font-size: 40px;
}

.hero__date-dash {
  flex-shrink: 0;
  width: 12px;
  height: 2px;
  background: var(--c-white);
}

.sec--stage {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.stage__list {
  position: relative;
  width: 100%;
}

.stage__list::before,
.stage__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--c-ink);
  pointer-events: none;
}

.stage__list::before {
  top: 0;
}

.stage__item {
  position: relative;
  width: 100%;
}

.stage__item::after {
  bottom: 0;
}

.stage__row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 24px 16px;
  text-align: left;
  transition: background 0.15s ease;
}

.stage__row:hover {
  background: var(--c-accent);
}

.stage__icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
}

.stage__text {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 8px;
  color: var(--c-ink);
}

.stage__title-group {
  display: flex;
  flex-direction: column;
}

.stage__eyebrow {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--c-red);
}

@media (prefers-reduced-motion: reduce) {
  .stage__row {
    transition: none;
  }
}
.sec--spotlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 0 0 40px;
}

.spotlight-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.spotlight-head__label {
  width: 100%;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 20px;
  line-height: 0.8;
  letter-spacing: 0;
  color: var(--c-ink);
}

.sec--spotlight .sec-head__title {
  color: var(--c-red);
}

.sec--spotlight .sec-head__icon {
  width: 45px;
  height: 45px;
}

.carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 402px;
}

.carousel__stage {
  position: relative;
  width: 402px;
  height: 294.27px;
}

.carousel__mat {
  position: absolute;
  left: 61px;
  top: 7.14px;
  width: 280px;
  height: 280px;
  background: var(--c-cream);
  border: 2px solid var(--c-ink);
  transform-origin: center;
  will-change: transform, opacity;
}

.carousel__photo {
  position: absolute;
  left: 76px;
  top: 22.14px;
  width: 250px;
  height: 250px;
  border: 2px solid var(--c-ink);
  overflow: hidden;
  transform-origin: center;
  will-change: transform, opacity;
}

.carousel__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel__card--prev .carousel__mat,
.carousel__card--prev .carousel__photo {
  transform: translateX(-278.27px);
  opacity: 0.3;
}

.carousel__card--next .carousel__mat,
.carousel__card--next .carousel__photo {
  transform: translateX(278.27px);
  opacity: 0.3;
}

.carousel__arrow {
  position: absolute;
  top: 130px;
  z-index: 2000;
}

.carousel__arrow--prev {
  left: 16px;
}

.carousel__arrow--next {
  left: 351px;
}

.carousel__arrow:disabled {
  opacity: 0.4;
  cursor: default;
}

.spotlight__detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 370px;
}

.spotlight__name {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
  height: 23.4px;
  color: var(--c-ink);
}

.spotlight__body {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  height: 75.6px;
  white-space: pre-line;
  color: var(--c-ink);
}

.carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--c-red);
}

.carousel__dot.is-active {
  background: var(--c-red);
  border-color: var(--c-red);
}

.carousel__photo--current,
.spotlight__name {
  cursor: pointer;
}

.carousel__dot {
  position: relative;
}

.carousel__dot::before {
  content: "";
  position: absolute;
  inset: -4px;
}

.carousel__dot:focus-visible {
  outline: 2px solid var(--c-red);
  outline-offset: 2px;
}

.spot-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  background: rgba(35, 31, 32, 0.72);
}

.spot-modal-backdrop.is-under-breakout {
  z-index: 10400;
}

.spot-modal-backdrop[hidden] {
  display: none;
}

.spot-modal {
  position: relative;
  flex-shrink: 0;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.spot-modal__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 370px;
  zoom: var(--lp-zoom, 1);
}

.spot-modal__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 16px;
  padding: 16px 0;
  background: var(--c-white);
}

.spot-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-ink);
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  color: var(--c-white);
  transition: transform 0.12s ease;
}

.spot-modal__close:active {
  transform: scale(0.94);
}

.spot-modal__photo-wrap {
  width: 338px;
  padding-top: 12px;
}

.spot-modal__figure {
  overflow: hidden;
  width: 338px;
  height: 294px;
  border: 2px solid var(--c-ink);
}

.spot-modal__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spot-modal__text {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 4px;
  padding: 0 16px;
}

.spot-modal__name {
  margin: 0;
  white-space: pre-line;
  color: var(--c-ink);
  text-align: left;
}

.spot-modal__body {
  margin: 0;
  white-space: pre-line;
  color: var(--c-ink);
  text-align: left;
}

.spot-modal__link {
  color: var(--c-red);
  text-decoration: underline;
  text-underline-offset: 2px;
  overflow-wrap: anywhere;
}

.spot-modal__link:focus-visible {
  outline: 2px solid var(--c-ink);
  outline-offset: 2px;
}

.spot-modal__fav-row {
  display: flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
}

.spot-modal__fav-row[hidden] {
  display: none;
}

.spot-modal__fav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-red);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 10px;
  line-height: 1.5;
}

.spot-modal__fav-icon {
  width: 32px;
  height: 32px;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url("/media/images/35th/v10-icon-star.svg");
  mask-image: url("/media/images/35th/v10-icon-star.svg");
  transition: transform 0.12s ease;
}

.spot-modal__fav.is-active .spot-modal__fav-icon {
  -webkit-mask-image: url("/media/images/35th/v10-icon-star-half.svg");
  mask-image: url("/media/images/35th/v10-icon-star-half.svg");
}

.spot-modal__fav:active .spot-modal__fav-icon {
  transform: scale(0.94);
}

.spot-modal__nav {
  display: flex;
  align-items: center;
  gap: 80px;
}

.spot-confirm-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10650;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  background: rgba(35, 31, 32, 0.72);
}

.spot-confirm-backdrop[hidden] {
  display: none;
}

.spot-confirm {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 240px;
  padding: 28px 20px 24px;
  border: 3px solid var(--c-ink);
  background: var(--c-white);
  box-shadow: 6px 6px 0 var(--c-ink);
  zoom: var(--lp-zoom, 1);
}

.spot-confirm__title {
  margin: 0;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: var(--c-ink);
  text-align: center;
}

.spot-confirm__actions {
  display: flex;
  gap: 12px;
}

.spot-confirm__btn {
  min-width: 72px;
  padding: 8px 14px;
  border: 2px solid var(--c-ink);
  background: var(--c-white);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--c-ink);
  transition: transform 0.12s ease;
}

.spot-confirm__btn--yes {
  background: var(--c-red);
  border-color: var(--c-red);
  color: var(--c-white);
}

.spot-confirm__btn:active {
  transform: scale(0.94);
}

@media (prefers-reduced-motion: reduce) {
  .spot-modal__fav-icon,
.spot-modal__close,
.spot-confirm__btn {
    transition: none;
  }
}
.sec--goods {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 8px 0 40px;
}

.goods-strip {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 8px 0;
  background: var(--c-red);
}

.goods-strip__track {
  display: flex;
  align-items: center;
  gap: 8px;
  will-change: transform;
}

.goods-strip__photo {
  flex: 0 0 auto;
  width: 250px;
  height: 250px;
  object-fit: cover;
}

.goods-booth {
  display: flex;
  flex-direction: column;
  width: 370px;
}

.goods-booth__band {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  background: var(--c-ink);
}

.goods-booth__title {
  color: var(--c-cream);
}

.goods-booth__map {
  position: relative;
  display: block;
  width: 370px;
  height: 295px;
  box-sizing: border-box;
  border: 2px solid var(--c-ink);
  overflow: hidden;
}

.goods-booth__map img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.goods-booth__zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  box-sizing: border-box;
  border: 2px solid var(--c-ink);
  background: var(--c-white);
  box-shadow: 2px 2px 0 var(--c-ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.goods-booth__zoom:hover {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--c-ink);
}

.goods-booth__zoom:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--c-ink);
}

.goods-booth__zoom:focus-visible {
  outline: 2px solid var(--c-red);
  outline-offset: 2px;
}

.goods-booth__zoom-icon {
  width: 24px;
  height: 24px;
  background-color: var(--c-ink);
  -webkit-mask-image: url("/media/images/35th/v10-icon-search.svg");
  mask-image: url("/media/images/35th/v10-icon-search.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

@media (prefers-reduced-motion: reduce) {
  .goods-booth__zoom {
    transition: none;
  }
}
.goods-actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 370px;
}

.sec--food {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 8px 0 40px;
}

.food-strip {
  position: relative;
  box-sizing: border-box;
  width: 402px;
  height: 266px;
  padding: 8px 0;
  overflow: hidden;
  background: var(--c-red);
}

.food-strip__track {
  display: flex;
  align-items: center;
  height: 250px;
  gap: 8px;
  will-change: transform;
}

.food-strip__photo {
  flex: 0 0 auto;
  width: 375px;
  height: 250px;
  object-fit: cover;
}

.lp > .sec + .sec--tail {
  margin-top: 0;
}

.sec--tail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-bottom: 40px;
}

.tail-posterbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 402px;
  padding-top: 24px;
}

.tail-poster {
  width: 402px;
  height: 569px;
}

.tail-poster__credit {
  width: 370px;
  text-align: right;
  color: var(--c-white);
}

.tail-theme {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 370px;
}

.tail-theme__body-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.tail-theme__passion {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 80px;
  letter-spacing: 0;
  color: var(--c-white);
  display: block;
  line-height: 1;
  margin-top: -0.1em;
  margin-bottom: -0.2em;
}

.tail-theme__body {
  width: 100%;
}

.tail-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 370px;
}

.tail-footer__logo {
  width: 126px;
  height: 80px;
}

.tail-footer__sns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tail-footer__privacy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 171px;
}

.tail-footer__privacy-line {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--c-white);
}

.tail-footer__copyright {
  width: 100%;
}

.bottomnav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  width: 100%;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.bottomnav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(75px * var(--lp-zoom, 1) + env(safe-area-inset-bottom, 0px));
  background: var(--c-ink);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.12);
}

.bottomnav__list {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: var(--lp-width);
  margin: 0 auto;
  padding: 16px 31px;
  zoom: var(--lp-zoom, min(calc(100vw / 402px), 1));
}

.bottomnav__item {
  position: relative;
  flex: 0 0 auto;
  width: 50px;
}

.bottomnav__link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.bottomnav__icon {
  display: block;
  width: 30px;
  height: 30px;
  background-color: var(--c-white);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: transform 0.1s ease;
}

.bottomnav__icon--map {
  -webkit-mask-image: url("/media/images/35th/v10-icon-map.svg");
  mask-image: url("/media/images/35th/v10-icon-map.svg");
}

.bottomnav__icon--timetable {
  -webkit-mask-image: url("/media/images/35th/v10-icon-timetable.svg");
  mask-image: url("/media/images/35th/v10-icon-timetable.svg");
}

.bottomnav__icon--star {
  -webkit-mask-image: url("/media/images/35th/v10-icon-star.svg");
  mask-image: url("/media/images/35th/v10-icon-star.svg");
}

.bottomnav__icon--gourmet {
  -webkit-mask-image: url("/media/images/35th/v10-icon-gourmet.svg");
  mask-image: url("/media/images/35th/v10-icon-gourmet.svg");
}

.bottomnav__icon-wrap {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
}

.bottomnav__badge {
  position: absolute;
  top: -4px;
  right: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--c-red);
  color: var(--c-white);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
}

.bottomnav__badge[hidden] {
  display: none;
}

.bottomnav__label {
  display: block;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  margin-top: -0.2087em;
  margin-bottom: -0.0583em;
  color: var(--c-white);
  white-space: nowrap;
}

.bottomnav__link:active .bottomnav__icon {
  transform: scale(0.9);
}

.bottomnav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 14px;
  height: 2px;
  margin-left: -7px;
  border-radius: 1px;
  background: var(--c-red);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
}

.bottomnav__link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .bottomnav__icon,
.bottomnav__link::after {
    transition: none;
  }
}
.back-to-top {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(85px * var(--lp-zoom, 1) + env(safe-area-inset-bottom, 0px));
  height: 0;
  z-index: 400;
}

.back-to-top__frame {
  position: relative;
  width: var(--lp-width);
  margin: 0 auto;
  zoom: var(--lp-zoom, min(calc(100vw / 402px), 1));
}

.back-to-top__btn {
  position: absolute;
  right: 16px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--c-red);
  color: var(--c-white);
  opacity: 0;
  transform: translateY(8px) scale(0.92);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top__btn.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.back-to-top__arrow {
  display: block;
  width: 24px;
  height: 24px;
  background-color: var(--c-white);
  -webkit-mask: url("/media/images/35th/v10-icon-up.svg") center/contain no-repeat;
  mask: url("/media/images/35th/v10-icon-up.svg") center/contain no-repeat;
}

.back-to-top__label {
  display: block;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 18px;
  line-height: 0.8;
  letter-spacing: 0.05em;
}

@media (min-width: 1240px) {
  .back-to-top {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top__btn {
    transition: none;
  }
}
.fav-fly__star {
  position: fixed;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  color: var(--c-red);
  font-size: 20px;
  line-height: 1;
  pointer-events: none;
  z-index: 20000;
  will-change: transform, opacity;
}

@keyframes jsf-fav-pop {
  0% {
    transform: scale(1) rotate(0);
  }
  35% {
    transform: scale(1.35) rotate(-12deg);
  }
  62% {
    transform: scale(0.92) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
@keyframes jsf-fav-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(225, 197, 0, 0.55);
  }
  100% {
    box-shadow: 0 0 0 14px rgba(225, 197, 0, 0);
  }
}
.is-just-faved [class*=fav-icon],
.tt-cell__fav.is-just-faved,
.spot-modal__fav.is-just-faved {
  animation: jsf-fav-pop 0.45s ease-out;
  transform-origin: center;
}

.is-just-faved {
  animation: jsf-fav-ring 0.55s ease-out;
}

.tt-cell__fav.is-just-faved,
.spot-modal__fav.is-just-faved {
  border-radius: 50%;
}

@media (prefers-reduced-motion: reduce) {
  .is-just-faved,
.is-just-faved [class*=fav-icon] {
    animation: none;
  }
}
.breakout {
  position: fixed;
  inset: 0;
  z-index: 10500;
  display: flex;
  flex-direction: column;
  background: var(--c-ink);
  color: var(--c-white);
  font-family: var(--font-jp);
}

.breakout[hidden] {
  display: none;
}

.breakout__hud {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  padding: calc(10px + env(safe-area-inset-top, 0px)) 14px 10px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.breakout__hud-item {
  white-space: nowrap;
}

.breakout__hud-score b {
  color: var(--c-yellow);
}

.breakout__hud-lives {
  letter-spacing: 3px;
}

.breakout__hud-effects {
  font-family: var(--font-en);
  color: var(--c-green);
  font-size: 11px;
}

.breakout__hud-effects:empty {
  display: none;
}

.breakout__hud-score {
  flex: 1 1 auto;
  font-family: var(--font-en);
  text-align: center;
}

.breakout__close {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-ink);
  color: var(--c-white);
  transition: transform 0.12s ease;
}

.breakout__close:active {
  transform: scale(0.94);
}

.breakout__stage {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px calc(14px + env(safe-area-inset-bottom, 0px));
}

.breakout__canvas {
  display: block;
  touch-action: none;
  background: #0b0b0c;
  box-shadow: 0 0 0 3px var(--c-white);
}

.breakout__toast {
  position: absolute;
  top: 34%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  padding: 8px 18px;
  background: var(--c-yellow);
  border: 3px solid var(--c-ink);
  box-shadow: 4px 5px 0 var(--c-ink);
  color: var(--c-ink);
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  pointer-events: none;
  animation: breakout-toast-pop 0.2s ease-out;
}

.breakout__toast[hidden] {
  display: none;
}

@keyframes breakout-toast-pop {
  from {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
.breakout__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(35, 31, 32, 0.72);
}

.breakout__overlay[hidden] {
  display: none;
}

.breakout__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  padding: 28px 32px;
  background: var(--c-white);
  border: 3px solid var(--c-ink);
  box-shadow: 6px 6px 0 var(--c-ink);
  color: var(--c-ink);
  text-align: center;
}

.breakout__panel-title {
  margin: 0;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.02em;
}

.breakout__panel-score {
  margin: 0;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
}

.breakout__panel-score b {
  font-size: 18px;
}

.breakout__panel-score[hidden],
.breakout__panel-btn[hidden] {
  display: none;
}

.breakout__panel-btn {
  margin-top: 6px;
  padding: 12px 28px;
  border: 3px solid var(--c-ink);
  background: var(--c-yellow);
  box-shadow: 4px 4px 0 var(--c-ink);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--c-ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.breakout__panel-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--c-ink);
}

.breakout__panel-btn:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 var(--c-ink);
}

@media (prefers-reduced-motion: reduce) {
  .breakout__close,
.breakout__panel-btn {
    transition: none;
  }

  .breakout__toast {
    animation: none;
  }
}
.map-viewer {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  background: var(--c-black);
  color: var(--c-white);
  font-family: var(--font-jp);
}

.map-viewer[hidden] {
  display: none;
}

.map-viewer__stage {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
}

.map-viewer__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--c-black);
}

.map-viewer__close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--c-white);
  border: 3px solid var(--c-black);
  box-shadow: 4px 4px 0 var(--c-black);
  color: var(--c-black);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.map-viewer__close:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--c-black);
}

.map-viewer__close:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 var(--c-black);
}

.map-viewer__menu {
  position: absolute;
  left: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  z-index: 1100;
}

.map-viewer__menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 14px;
  background: var(--c-yellow);
  border: 3px solid var(--c-ink);
  border-radius: 10px;
  box-shadow: 4px 4px 0 var(--c-ink);
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  color: var(--c-ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.map-viewer__menu-btn:active,
.map-viewer__menu-btn[aria-expanded=true] {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--c-ink);
}

.map-viewer__menu-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: var(--c-ink);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  color: var(--c-white);
}

.map-viewer__menu-badge[hidden] {
  display: none;
}

.map-viewer__catmodal {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  width: 272px;
  max-width: calc(100vw - 28px);
  max-height: min(60vh, 430px);
  overflow-y: auto;
  padding: 8px;
  background: var(--c-white);
  border: 3px solid var(--c-ink);
  border-radius: 12px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.map-viewer__catmodal[hidden] {
  display: none;
}

.map-viewer__catmodal.is-closing {
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
}

.map-viewer__catmodal > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.map-viewer__catmodal > *:nth-child(1) {
  transition-delay: 0s;
}

.map-viewer__catmodal > *:nth-child(2) {
  transition-delay: 0.04s;
}

.map-viewer__catmodal > *:nth-child(3) {
  transition-delay: 0.08s;
}

.map-viewer__catmodal > *:nth-child(4) {
  transition-delay: 0.12s;
}

.map-viewer__catmodal > *:nth-child(5) {
  transition-delay: 0.16s;
}

.map-viewer__catmodal > *:nth-child(6) {
  transition-delay: 0.2s;
}

.map-viewer__catmodal.is-cascade-enter > * {
  opacity: 0;
  transform: translateY(6px);
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .map-viewer__catmodal,
.map-viewer__catmodal > * {
    transition: none;
  }
}
.map-viewer__catrow {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 44px;
  padding: 0 8px;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  color: var(--c-ink);
  text-align: left;
}

.map-viewer__catrow--static {
  cursor: default;
}

.map-viewer__catrow--static:active {
  background: transparent;
}

.map-viewer__catrow + .map-viewer__catrow {
  border-top: 1px solid rgba(35, 31, 32, 0.1);
}

.map-viewer__catrow[aria-pressed=false] .map-viewer__catrow-label {
  color: rgba(35, 31, 32, 0.45);
}

.map-viewer__catrow:active {
  background: var(--c-gray);
}

.map-viewer__catrow-icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter 0.12s ease;
}

.map-viewer__catrow[aria-pressed=true] .map-viewer__catrow-icon {
  filter: none;
}

.map-viewer__catrow-label {
  flex: 1 1 auto;
}

.map-viewer__catrow-switch {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  width: 40px;
  height: 22px;
  padding: 2px;
  background: var(--c-white);
  border: 2px solid var(--c-ink);
  border-radius: 999px;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.map-viewer__catrow[aria-pressed=true] .map-viewer__catrow-switch {
  background: var(--c-red);
  border-color: var(--c-white);
}

.map-viewer__catrow-thumb {
  width: 14px;
  height: 14px;
  background: var(--c-ink);
  border-radius: 50%;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.map-viewer__catrow[aria-pressed=true] .map-viewer__catrow-thumb {
  background: var(--c-white);
  transform: translateX(18px);
}

.map-viewer__catrow-badge {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: url("/media/images/35th/stage.svg") center/contain no-repeat;
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 14.4px;
  line-height: 1;
  color: #040000;
}

.map-viewer__catrow-grid {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 12px);
  grid-template-rows: repeat(2, 12px);
  gap: 2px;
  width: 26px;
  height: 26px;
}

.map-viewer__catrow-grid img {
  width: 12px;
  height: 12px;
  object-fit: contain;
  transition: filter 0.12s ease;
}

.map-viewer__catrow[aria-pressed=false] .map-viewer__catrow-grid img {
  filter: grayscale(1);
}

.map-viewer__catrow[aria-pressed=false] .map-viewer__catrow-badge {
  filter: grayscale(1);
  color: rgba(35, 31, 32, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .map-viewer__catrow-switch,
.map-viewer__catrow-thumb {
    transition: none;
  }
}
.map-viewer__catmodal-all {
  display: block;
  width: 100%;
  height: 38px;
  margin-bottom: 8px;
  background: var(--c-ink);
  border: none;
  border-radius: 8px;
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  color: var(--c-white);
}

.map-viewer__catmodal-all:disabled {
  background: #e6e4e1;
  color: #8b857f;
  cursor: default;
}

.map-viewer__catmodal-all:active {
  opacity: 0.8;
}

.map-viewer__stagefilter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 4px 0 8px;
}

.map-viewer__stagetile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 60px;
  background: var(--c-white);
  border: 1.5px solid var(--c-ink);
  border-radius: 8px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  color: var(--c-ink);
  transition: background-color 0.12s ease;
}

.map-viewer__stagetile-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.map-viewer__stagetile.is-active {
  background: var(--c-yellow);
  border-color: var(--c-ink);
}

.map-viewer__catdivider {
  display: block;
  height: 1px;
  margin: 6px 8px;
  background: #d8d6d2;
}

@media (prefers-reduced-motion: reduce) {
  .map-viewer__catrow-switch,
.map-viewer__catrow-thumb,
.map-viewer__stagetile {
    transition: none;
  }
}
.map-viewer .maplibregl-marker {
  transition: opacity 0.22s ease;
}

@media (prefers-reduced-motion: reduce) {
  .map-viewer .maplibregl-marker {
    transition: none;
  }
}
.map-marker-stage {
  position: relative;
  background: transparent;
  border: none;
}

.map-marker-icon {
  position: relative;
}

.map-marker-icon > img:first-child {
  display: block;
  width: 100%;
  height: 100%;
}

.map-marker-stage__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: url("/media/images/35th/stage.svg") center/contain no-repeat;
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 14.4px;
  line-height: 1;
  color: #040000;
}

.map-marker-mark {
  position: absolute;
  top: -10px;
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.map-marker-mark--night {
  right: -10px;
}

.map-marker-mark--stamp {
  left: -10px;
}

.map-marker--highlight {
  animation: map-marker-highlight-flash 0.6s ease-out 2;
}

@keyframes map-marker-highlight-flash {
  0% {
    box-shadow: 0 0 0 0 var(--c-red);
  }
  40% {
    box-shadow: 0 0 0 7px rgba(216, 9, 18, 0.9);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(216, 9, 18, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .map-marker--highlight {
    animation: none;
    box-shadow: 0 0 0 5px var(--c-red);
  }
}
.maplibregl-ctrl-compass {
  transition: opacity 0.15s ease;
}

.maplibregl-ctrl-compass.is-north {
  opacity: 0.5;
}

@media (prefers-reduced-motion: reduce) {
  .maplibregl-ctrl-compass {
    transition: none;
  }
}
.map-viewer__user-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #4285f4;
  border: 3px solid var(--c-white);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.map-viewer .map-viewer__locate button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  background: var(--c-white);
  border: none;
  color: #333;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.map-viewer .map-viewer__locate button.is-following {
  background: var(--c-red);
  color: var(--c-white);
}

@media (prefers-reduced-motion: reduce) {
  .map-viewer .map-viewer__locate button {
    transition: none;
  }
}
.map-viewer__toast {
  position: absolute;
  left: 50%;
  bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  z-index: 1150;
  transform: translateX(-50%);
  max-width: calc(100% - 28px);
  padding: 8px 14px;
  background: var(--c-black);
  border: 2px solid var(--c-white);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
  color: var(--c-white);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.map-viewer__toast[hidden] {
  display: none;
}

.map-viewer .maplibregl-popup {
  z-index: 10;
}

.map-viewer .maplibregl-popup-content {
  max-width: 264px;
  padding: 14px 32px 14px 14px;
  border: 3px solid var(--c-ink);
  border-radius: 0;
  background: var(--c-white);
  box-shadow: none;
  font-family: var(--font-jp);
  color: var(--c-ink);
}

.map-viewer .maplibregl-popup-close-button {
  top: 6px;
  right: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 0;
  background: var(--c-white);
  border: none;
  color: var(--c-ink);
  font-size: 14px;
  line-height: 1;
}

.map-viewer .maplibregl-popup-close-button:hover {
  background: var(--c-yellow);
}

.map-viewer .maplibregl-popup-tip {
  position: relative;
  border-width: 13px;
}

.map-viewer .maplibregl-popup-tip::after {
  content: "";
  position: absolute;
  border: 9px solid transparent;
}

.map-viewer .maplibregl-popup-anchor-top .maplibregl-popup-tip {
  border-top: none;
  border-bottom-color: var(--c-ink);
  margin-bottom: -3px;
}

.map-viewer .maplibregl-popup-anchor-top .maplibregl-popup-tip::after {
  top: 4px;
  left: -9px;
  border-top: none;
  border-bottom-color: #fff;
}

.map-viewer .maplibregl-popup-anchor-bottom .maplibregl-popup-tip {
  border-bottom: none;
  border-top-color: var(--c-ink);
  margin-top: -3px;
}

.map-viewer .maplibregl-popup-anchor-bottom .maplibregl-popup-tip::after {
  top: -13px;
  left: -9px;
  border-bottom: none;
  border-top-color: #fff;
}

.map-viewer .maplibregl-popup-anchor-left .maplibregl-popup-tip {
  border-left: none;
  border-right-color: var(--c-ink);
  margin-right: -3px;
}

.map-viewer .maplibregl-popup-anchor-left .maplibregl-popup-tip::after {
  top: -9px;
  left: 4px;
  border-left: none;
  border-right-color: #fff;
}

.map-viewer .maplibregl-popup-anchor-right .maplibregl-popup-tip {
  border-right: none;
  border-left-color: var(--c-ink);
  margin-left: -3px;
}

.map-viewer .maplibregl-popup-anchor-right .maplibregl-popup-tip::after {
  top: -9px;
  left: -13px;
  border-right: none;
  border-left-color: #fff;
}

.map-viewer .maplibregl-popup-anchor-top-left .maplibregl-popup-tip {
  border-top: none;
  border-left: none;
  border-bottom-color: var(--c-ink);
}

.map-viewer .maplibregl-popup-anchor-top-left .maplibregl-popup-tip::after {
  top: 0;
  left: 0;
  border-top: none;
  border-left: none;
  border-bottom-color: #fff;
}

.map-viewer .maplibregl-popup-anchor-top-right .maplibregl-popup-tip {
  border-top: none;
  border-right: none;
  border-bottom-color: var(--c-ink);
}

.map-viewer .maplibregl-popup-anchor-top-right .maplibregl-popup-tip::after {
  top: 0;
  left: -10px;
  border-top: none;
  border-right: none;
  border-bottom-color: #fff;
}

.map-viewer .maplibregl-popup-anchor-bottom-left .maplibregl-popup-tip {
  border-bottom: none;
  border-left: none;
  border-top-color: var(--c-ink);
}

.map-viewer .maplibregl-popup-anchor-bottom-left .maplibregl-popup-tip::after {
  top: -10px;
  left: 0;
  border-bottom: none;
  border-left: none;
  border-top-color: #fff;
}

.map-viewer .maplibregl-popup-anchor-bottom-right .maplibregl-popup-tip {
  border-bottom: none;
  border-right: none;
  border-top-color: var(--c-ink);
}

.map-viewer .maplibregl-popup-anchor-bottom-right .maplibregl-popup-tip::after {
  top: -10px;
  left: -10px;
  border-bottom: none;
  border-right: none;
  border-top-color: #fff;
}

.map-popup__head {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.map-popup__badge {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: url("/media/images/35th/stage.svg") center/contain no-repeat;
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 14.4px;
  line-height: 1;
  color: #040000;
}

.map-popup__icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
}

.map-popup__name {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 13px;
  line-height: 1.4;
  color: var(--c-ink);
}

.map-popup__sponsor,
.map-popup__time {
  margin: 6px 0 0;
  font-family: var(--font-jp);
  font-size: 11px;
  line-height: 1.5;
  color: var(--c-ink);
}

.map-popup__night,
.map-popup__stamp {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 6px 0 0;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 11px;
  line-height: 1.4;
  color: var(--c-ink);
}

.map-popup__night img,
.map-popup__stamp img {
  flex: 0 0 auto;
}

.map-popup__actions {
  display: flex;
  gap: 8px;
  margin: 10px -18px 0 0;
}

.map-popup__action {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 6px;
  border: 2px solid var(--c-ink);
  border-radius: 0;
  background: var(--c-white);
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 11px;
  line-height: 1.2;
  color: var(--c-ink);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.map-popup__action:active {
  opacity: 0.8;
}

.map-popup__action--primary {
  background: var(--c-yellow);
}

@media (prefers-reduced-motion: reduce) {
  .map-viewer__close,
.map-viewer__menu-btn {
    transition: none;
  }
}
.map-open-veil {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: var(--veil-color, var(--c-red));
  clip-path: circle(0px at var(--veil-x, 50%) var(--veil-y, 50%));
  -webkit-clip-path: circle(0px at var(--veil-x, 50%) var(--veil-y, 50%));
}

.map-open-veil.is-expanding {
  clip-path: circle(150% at var(--veil-x, 50%) var(--veil-y, 50%));
  -webkit-clip-path: circle(150% at var(--veil-x, 50%) var(--veil-y, 50%));
  transition: clip-path 450ms cubic-bezier(0.7, 0, 0.3, 1), -webkit-clip-path 450ms cubic-bezier(0.7, 0, 0.3, 1);
}

.map-open-veil.is-fading {
  clip-path: circle(150% at var(--veil-x, 50%) var(--veil-y, 50%));
  -webkit-clip-path: circle(150% at var(--veil-x, 50%) var(--veil-y, 50%));
  opacity: 0;
  transition: opacity 380ms ease;
}

.map-page {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  height: calc(100vh / var(--lp-zoom, 1) - 78px - 75px);
  height: calc(100dvh / var(--lp-zoom, 1) - 78px - 75px);
  overflow: hidden;
  background: var(--c-black);
}

@media (min-width: 1240px) {
  .map-page {
    height: calc(100vh / var(--lp-zoom, 1) - 78px);
    height: calc(100dvh / var(--lp-zoom, 1) - 78px);
  }
}
.map-viewer.is-embedded {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.map-viewer__menu-btn--filter {
  position: relative;
  flex-direction: column;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--c-red);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  color: var(--c-white);
}

.map-viewer__menu-btn--filter:active,
.map-viewer__menu-btn--filter[aria-expanded=true] {
  transform: scale(0.96);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.map-viewer__menu-btn-icon {
  display: block;
  width: 24px;
  height: 24px;
  background-color: var(--c-white);
  -webkit-mask: url("/media/images/35th/v10-icon-filter.svg") center/contain no-repeat;
  mask: url("/media/images/35th/v10-icon-filter.svg") center/contain no-repeat;
}

.map-viewer__menu-btn--filter .map-viewer__menu-badge {
  position: absolute;
  top: -2px;
  right: -2px;
}

.map-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  height: 0;
  overflow: hidden;
  background: var(--c-ink);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.3);
  transition: height 0.32s cubic-bezier(0.32, 0.9, 0.4, 1);
}

.map-sheet[hidden] {
  display: none;
}

.map-sheet.is-dragging {
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .map-sheet {
    transition: none;
  }
}
.map-sheet__grabber {
  position: relative;
  flex: 0 0 auto;
  width: 53px;
  height: 8px;
  margin: 9px auto 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: var(--c-accent);
  touch-action: none;
  cursor: grab;
}

.map-sheet__grabber:active {
  cursor: grabbing;
}

.map-sheet__grabber::before {
  content: "";
  position: absolute;
  inset: -16px -24px;
}

.map-sheet__heading {
  cursor: grab;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
}

.map-sheet__heading:active {
  opacity: 0.8;
  cursor: grabbing;
}

.map-sheet__heading a {
  cursor: pointer;
}

.map-sheet__heading:focus-visible {
  outline: 2px solid var(--c-red);
  outline-offset: -2px;
}

@media (prefers-reduced-motion: reduce) {
  .map-sheet__heading {
    transition: none;
  }
}
.map-sheet__head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 28px 16px 0;
}

.map-sheet__no {
  flex-shrink: 0;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 34px;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px var(--c-white);
}

.map-sheet__time {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--c-white);
  white-space: nowrap;
}

.map-sheet__time-icon {
  flex-shrink: 0;
  display: block;
  width: 16px;
  height: 16px;
  background-color: var(--c-white);
  -webkit-mask: url("/media/images/35th/v10-icon-timetable.svg") center/contain no-repeat;
  mask: url("/media/images/35th/v10-icon-timetable.svg") center/contain no-repeat;
}

.map-sheet__venue {
  flex: 0 0 auto;
  margin: 6px 0 0;
  padding: 0 16px;
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.1;
  color: var(--c-white);
  overflow-wrap: anywhere;
}

.map-sheet__rule {
  flex: 0 0 auto;
  height: 1px;
  margin-top: 19px;
  background: var(--c-red);
}

.map-sheet__rule--after-actions {
  margin-top: 0;
}

.map-sheet__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  padding: 11.5px 16px;
}

.map-sheet__action {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 10px;
  line-height: 1.5;
  color: var(--c-white);
  text-decoration: none;
  white-space: nowrap;
}

.map-sheet__action:active {
  opacity: 0.7;
}

.map-sheet__actions-divider {
  flex: 0 0 auto;
  align-self: stretch;
  width: 1px;
  background: var(--c-red);
}

.map-sheet__action-icon {
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  background-color: var(--c-white);
}

.map-sheet__action-icon--map {
  -webkit-mask: url("/media/images/35th/v10-icon-link.svg") center/contain no-repeat;
  mask: url("/media/images/35th/v10-icon-link.svg") center/contain no-repeat;
}

.map-sheet__action-icon--timetable {
  -webkit-mask: url("/media/images/35th/v10-icon-timetable.svg") center/contain no-repeat;
  mask: url("/media/images/35th/v10-icon-timetable.svg") center/contain no-repeat;
}

.map-sheet__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px 16px 24px;
}

.map-sheet__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.map-sheet__time-heading {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--c-white);
}

.map-sheet__group.is-ended {
  opacity: 0.45;
}

.map-sheet__daybreak {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-sheet__daydivider {
  display: block;
  flex-shrink: 0;
  width: 100%;
  height: 1px;
  background: var(--c-white);
}

.map-sheet__daybreak + .map-sheet__group {
  margin-top: -18px;
}

.map-sheet__day-heading {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 40px;
  line-height: 1.1;
  color: transparent;
}

.map-sheet__day-heading--sat {
  -webkit-text-stroke: 1px var(--c-blue);
}

.map-sheet__day-heading--sun {
  -webkit-text-stroke: 1px var(--c-red);
}

.map-sheet__ended {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 16px;
  background: var(--c-cream);
}

.map-sheet__ended p {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--c-ink);
  text-align: center;
}

/*# sourceMappingURL=jsf35th-top.css-1788452856.map */
