@charset "UTF-8";
: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);
}

.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;
  }
}
[hidden] {
  display: none !important;
}

.perf-noscript {
  margin: 20px;
  padding: 16px;
  border: 2px solid var(--c-ink);
  background: var(--c-yellow);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-ink);
}

body[data-perf-tab=myplan] .perf-hero {
  display: none;
}

.perf-hero {
  padding: 31px 16px 0;
  background: var(--c-cream);
}

.perf-hero__back {
  display: inline-block;
  margin-bottom: 16px;
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-ink);
}

.perf-hero__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 100%;
}

.perf-hero__eyebrow {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--c-red);
}

.perf-hero__heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.perf-hero__heading {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: var(--c-ink);
}

.perf-hero__help-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-red);
  transition: transform 0.12s ease;
}

.perf-hero__help-btn:hover {
  transform: scale(1.05);
}

.perf-hero__help-btn:active {
  transform: scale(0.94);
}

.perf-hero__help-btn:focus-visible {
  outline: 2px solid var(--c-ink);
  outline-offset: 2px;
}

.perf-hero__help-icon {
  width: 20px;
  height: 20px;
  background-color: var(--c-white);
  -webkit-mask-image: url("/media/images/35th/v10-icon-help.svg");
  mask-image: url("/media/images/35th/v10-icon-help.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.perf-view-toggle {
  position: relative;
  display: flex;
  box-sizing: border-box;
  width: 370px;
  max-width: 100%;
  height: 45px;
  margin: 22.6px 0 0;
  padding: 3px 4px;
  border: 2px solid var(--c-accent);
  border-radius: 999px;
  background: var(--c-white);
}

.perf-view-toggle::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  width: calc((100% - 8px) / 2);
  height: calc(100% - 6px);
  border-radius: 999px;
  background: var(--c-red);
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.5, 1);
}

.perf-view-toggle:has(.perf-view-toggle__btn:last-of-type.is-active)::before {
  transform: translateX(100%);
}

.perf-view-toggle__btn {
  position: relative;
  z-index: 1;
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 999px;
  background: none;
  color: var(--c-ink);
  transition: color 0.2s ease;
}

.perf-view-toggle__btn.is-active {
  color: var(--c-white);
}

@media (prefers-reduced-motion: reduce) {
  .perf-view-toggle::before,
.perf-view-toggle__btn {
    transition: none;
  }
}
.perf-view-toggle__icon {
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  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;
}

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

.perf-view-toggle__icon--search {
  -webkit-mask-image: url("/media/images/35th/v10-icon-search.svg");
  mask-image: url("/media/images/35th/v10-icon-search.svg");
}

.perf-view-toggle__label {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  white-space: nowrap;
}

.perf-status {
  padding: 28px 20px;
  text-align: center;
}

.perf-status__text {
  margin: 0 0 14px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-ink);
}

.perf-status__retry {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid var(--c-ink);
  background: var(--c-white);
  box-shadow: 4px 4px 0 var(--c-ink);
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 13px;
  color: var(--c-ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

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

#perf-shell {
  position: relative;
  isolation: isolate;
}

.perf-panel-placeholder {
  margin: 40px 20px;
  padding: 24px 16px;
  border: 2px dashed var(--c-ink);
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-ink);
}

.perf-shared-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 16px 20px 0;
  padding: 12px 14px;
  border: 2px solid var(--c-ink);
  background: var(--c-yellow);
}

.perf-shared-banner p {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-ink);
}

.perf-shared-banner button {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 2px solid var(--c-ink);
  background: var(--c-white);
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 12px;
  color: var(--c-ink);
}

@media (prefers-reduced-motion: reduce) {
  .perf-status__retry,
.perf-view-toggle__btn,
.perf-hero__help-btn {
    transition: none;
  }
}
.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 370px;
  max-width: 100%;
  padding: 16px 0;
  background: var(--c-white);
  --pcard-border: #d8d6d1;
}

.pcard__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  padding: 0 16px;
  color: var(--c-ink);
  overflow-wrap: anywhere;
}

.pcard__title {
  margin: 0;
  width: 100%;
}

.pcard__intro {
  margin: 0;
  width: 100%;
  white-space: pre-line;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.pcard[data-variant=modal] .pcard__intro {
  display: block;
  -webkit-line-clamp: unset;
}

.pcard[data-variant=modal] .pcard__intro.pcard__intro--ready {
  transition: max-height 0.3s ease;
}

.pcard__intro-toggle {
  display: inline-block;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--c-ink);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.pcard__band {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 370px;
  max-width: 100%;
  padding: 16px;
  background: var(--c-cream);
}

.pcard__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 8px;
  background: var(--c-white);
  border: 1px solid var(--pcard-border);
  color: var(--c-ink);
}

.pcard__date {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
}

.pcard__date--sat {
  color: var(--c-blue);
}

.pcard__date--sun {
  color: var(--c-red);
}

.pcard__date-dow {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
}

.pcard__time {
  white-space: nowrap;
  color: var(--c-ink);
}

.pcard__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.pcard__chip--special {
  background: var(--c-red);
  border-color: var(--c-red);
  color: var(--c-white);
}

.pcard__map {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px;
  background: var(--c-white);
  border: 1px solid var(--pcard-border);
  color: var(--c-ink);
  text-decoration: none;
}

.pcard__map-text {
  flex: 1 1 auto;
  min-width: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pcard__icon {
  flex-shrink: 0;
  display: block;
  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;
}

.pcard__icon--clock {
  width: 16px;
  height: 16px;
  color: var(--c-ink);
  -webkit-mask-image: url("/media/images/35th/v10-icon-timetable.svg");
  mask-image: url("/media/images/35th/v10-icon-timetable.svg");
}

.pcard__icon--genre {
  width: 16px;
  height: 16px;
  -webkit-mask-image: url("/media/images/35th/v10-icon-genre.svg");
  mask-image: url("/media/images/35th/v10-icon-genre.svg");
}

.pcard__icon--flag {
  width: 16px;
  height: 16px;
  -webkit-mask-image: url("/media/images/35th/v10-icon-flag.svg");
  mask-image: url("/media/images/35th/v10-icon-flag.svg");
}

.pcard__icon--map {
  width: 24px;
  height: 24px;
  -webkit-mask-image: url("/media/images/35th/v10-icon-map.svg");
  mask-image: url("/media/images/35th/v10-icon-map.svg");
}

.pcard__icon--chevron {
  width: 24px;
  height: 24px;
  -webkit-mask-image: url("/media/images/35th/v10-icon-chevron-right.svg");
  mask-image: url("/media/images/35th/v10-icon-chevron-right.svg");
}

.pcard__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 370px;
  max-width: 100%;
}

.pcard__fav {
  display: inline-flex;
  flex: 1 1 0;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--c-red);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 10px;
  line-height: 1.5;
}

.pcard__fav-label {
  white-space: nowrap;
}

.pcard__fav-icon {
  width: 32px;
  height: 32px;
  -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;
}

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

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

.pcard__divider {
  flex-shrink: 0;
  width: 1px;
  height: 32px;
  background: var(--c-accent);
}

.pcard .perf-vote {
  --perf-vote-glyph: url("/media/images/35th/v10-icon-thumbsup.svg");
  --perf-vote-glyph-voted: url("/media/images/35th/v10-icon-thumbsup-fill.svg");
  display: inline-flex;
  flex: 1 1 0;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 10px;
  line-height: 1.5;
  color: var(--c-red);
}

.pcard .perf-vote:hover:not(:disabled),
.pcard .perf-vote.is-voted,
.pcard .perf-vote.is-voted:hover:not(:disabled) {
  background: none;
  color: var(--c-red);
}

.pcard .perf-vote:disabled {
  color: #8b857f;
}

.pcard .perf-vote__icon {
  width: 32px;
  height: 32px;
}

.pcard .perf-vote__label {
  white-space: normal;
  text-align: left;
}

.pcard .perf-vote__note:not(:empty) {
  flex-basis: 100%;
  padding-left: 0;
  margin-left: 0;
  border-left: 0;
  font-size: 10px;
  line-height: 1.4;
  color: var(--c-ink);
}

.pcard .perf-vote.is-blocked .perf-vote__note {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  clip-path: inset(50%);
}

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

  .pcard[data-variant=modal] .pcard__intro.pcard__intro--ready {
    transition: none;
  }
}
.perf-search-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 370px;
  max-width: 100%;
  margin: 18px 16px 0;
}

.perf-search-block__label {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--c-ink);
}

.perf-search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  padding: 16px;
  border: 2px solid var(--c-ink);
  background: var(--c-white);
}

.perf-search__body {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.perf-search__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  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;
}

.perf-search__input {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
  border: 0;
  background: none;
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--c-ink);
}

.perf-search__input:focus {
  outline: none;
}

.perf-search:focus-within {
  outline: 2px solid var(--c-red);
  outline-offset: -4px;
}

.perf-search__input::placeholder {
  color: #c2b7b9;
}

.perf-search__clear {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  color: var(--c-ink);
}

.perf-advanced-toggle {
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
  width: 100%;
  padding: 16px;
  border: 2px solid var(--c-ink);
  background: var(--c-ink);
  text-align: left;
}

.perf-advanced-toggle__row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.perf-advanced-toggle__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background-color: var(--c-white);
  -webkit-mask-image: url("/media/images/35th/v10-icon-filter.svg");
  mask-image: url("/media/images/35th/v10-icon-filter.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.perf-advanced-toggle__label {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--c-white);
}

.perf-advanced-toggle__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 4px;
  border-radius: 30px;
  background: var(--c-white);
  transition: transform 0.2s ease;
}

.perf-advanced-toggle__arrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: var(--c-ink);
  -webkit-mask-image: url("/media/images/35th/v10-icon-chevron-down.svg");
  mask-image: url("/media/images/35th/v10-icon-chevron-down.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.perf-advanced-toggle__divider {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--c-white);
  opacity: 0.3;
}

.perf-advanced-toggle__summary {
  display: block;
  width: 100%;
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: var(--c-accent);
}

.perf-advanced-toggle__summary-weekday--sat {
  color: var(--c-blue);
}

.perf-advanced-toggle__summary-weekday--sun {
  color: var(--c-red);
}

.perf-adv-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9400;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.6);
}

.perf-adv-backdrop[hidden] {
  display: none;
}

.perf-adv-dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  max-width: 370px;
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  background: var(--c-cream);
}

.perf-adv-head-bar {
  position: relative;
  flex: 0 0 auto;
  box-sizing: border-box;
  padding: 16px 16px 24px;
}

.perf-adv-head {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.perf-adv-head__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--c-ink);
  -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;
}

.perf-adv-head__title {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: var(--c-ink);
}

.perf-adv-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;
}

.perf-adv-close:active {
  transform: scale(0.94);
}

.perf-adv-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 16px 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.perf-adv-scroll::-webkit-scrollbar {
  display: none;
}

.perf-adv-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 4px;
  background: none;
  text-align: left;
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--c-ink);
}

.perf-adv-row--bold {
  font-weight: 700;
}

.perf-adv-row--flat {
  padding: 4px;
}

.perf-adv-row--child {
  padding-left: 32px;
}

.perf-adv-row.is-checked {
  background: var(--c-accent);
}

.perf-adv-row__check {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  background-color: var(--c-ink);
  -webkit-mask: url("/media/images/35th/v10-icon-checkbox-off.svg") center/contain no-repeat;
  mask: url("/media/images/35th/v10-icon-checkbox-off.svg") center/contain no-repeat;
}

.perf-adv-row.is-checked .perf-adv-row__check {
  -webkit-mask-image: url("/media/images/35th/v10-icon-checkbox-on.svg");
  mask-image: url("/media/images/35th/v10-icon-checkbox-on.svg");
}

.perf-adv-row__label {
  flex: 1 1 auto;
  min-width: 0;
}

.perf-adv-row--parent {
  padding: 0;
}

.perf-adv-row__check-btn {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  gap: 8px;
  padding: 12px 4px;
  background: none;
  text-align: left;
  font: inherit;
  color: inherit;
}

.perf-adv-row__chevron-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 100%;
  min-height: 53px;
  background: none;
}

.perf-adv-row__chevron {
  flex-shrink: 0;
  width: 23px;
  height: 24px;
  background-color: var(--c-ink);
  -webkit-mask: url("/media/images/35th/v10-icon-chevron-down.svg") center/contain no-repeat;
  mask: url("/media/images/35th/v10-icon-chevron-down.svg") center/contain no-repeat;
  transition: transform 0.22s ease;
}

.perf-adv-row.is-open .perf-adv-row__chevron {
  transform: rotate(180deg);
}

.perf-adv-area {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.perf-adv-children-wrap {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  overflow: hidden;
  min-height: 0;
  transition: grid-template-rows 0.22s ease, visibility 0s linear 0.22s;
}

.perf-adv-children-wrap.is-open {
  grid-template-rows: 1fr;
  visibility: visible;
  transition: grid-template-rows 0.22s ease, visibility 0s linear 0s;
}

.perf-adv-children {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  overflow: hidden;
  min-height: 0;
}

.perf-adv-children > *:first-child {
  margin-top: 2px;
}

.perf-adv-section {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
  background: var(--c-white);
}

.perf-adv-section__head {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.perf-adv-section__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-color: var(--c-ink);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

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

.perf-adv-section__icon--genre {
  -webkit-mask-image: url("/media/images/35th/v10-icon-genre.svg");
  mask-image: url("/media/images/35th/v10-icon-genre.svg");
}

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

.perf-adv-section__title-group {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  gap: 8px;
  color: var(--c-ink);
}

.perf-adv-section__title {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
}

.perf-adv-section__count {
  flex-shrink: 0;
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  white-space: nowrap;
}

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

.perf-adv-section__toggle-icon {
  width: 23px;
  height: 24px;
  background-color: var(--c-white);
  -webkit-mask: url("/media/images/35th/v10-icon-chevron-down.svg") center/contain no-repeat;
  mask: url("/media/images/35th/v10-icon-chevron-down.svg") center/contain no-repeat;
  transition: transform 0.22s ease;
}

.perf-adv-section.is-open .perf-adv-section__toggle-icon {
  transform: rotate(180deg);
}

.perf-adv-section__body-wrap {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  overflow: hidden;
  min-height: 0;
  transition: grid-template-rows 0.22s ease, visibility 0s linear 0.22s;
}

.perf-adv-section__body-wrap.is-open {
  grid-template-rows: 1fr;
  visibility: visible;
  transition: grid-template-rows 0.22s ease, visibility 0s linear 0s;
}

.perf-adv-section__panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  min-height: 0;
}

.perf-adv-section__all {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--c-red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.perf-adv-section__divider {
  display: block;
  width: 100%;
  height: 0;
  border-top: 1px dashed var(--c-ink);
}

.perf-adv-section__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.perf-adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.perf-adv-foot {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}

.perf-adv-foot__count {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--c-red);
}

.perf-adv-foot__count-num {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.1;
}

.perf-adv-foot__count-unit {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.perf-adv-foot__count-label {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.perf-adv-foot__summary {
  margin: 4px 0 0;
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: var(--c-ink);
}

.perf-datefilter {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
}

.perf-datefilter__btn {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 12px 8px;
  height: 53px;
  background: var(--c-white);
  transition: background 0.12s ease;
}

.perf-datefilter__btn.is-active {
  background: var(--c-accent);
}

.perf-datefilter__btn[data-date="9/12(土)"] .perf-datefilter__en {
  color: var(--c-blue);
}

.perf-datefilter__btn[data-date="9/13(日)"] .perf-datefilter__en {
  color: var(--c-red);
}

.perf-datefilter__underline {
  display: none;
}

.perf-datefilter__label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.perf-datefilter__check {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  background-color: var(--c-ink);
  -webkit-mask: url("/media/images/35th/v10-icon-checkbox-off.svg") center/contain no-repeat;
  mask: url("/media/images/35th/v10-icon-checkbox-off.svg") center/contain no-repeat;
}

.perf-datefilter__btn.is-active .perf-datefilter__check {
  -webkit-mask-image: url("/media/images/35th/v10-icon-checkbox-on.svg");
  mask-image: url("/media/images/35th/v10-icon-checkbox-on.svg");
}

.perf-datefilter__en {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
}

.perf-datefilter__underline {
  width: 40px;
  height: 2px;
}

.perf-datefilter__underline--sat {
  background: var(--c-blue);
}

.perf-datefilter__underline--sun {
  background: var(--c-red);
}

.perf-results-area {
  margin-top: 24px;
  padding: 24px 16px 40px;
  background: var(--c-ink);
}

.perf-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 16px;
}

.perf-count-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.perf-count {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-white);
}

.perf-legend-toggle {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c-white);
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 13px;
  line-height: 1;
  color: var(--c-ink);
}

.perf-legend-toggle[aria-expanded=true] {
  background: var(--c-red);
  color: var(--c-white);
}

.perf-legend-card {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 20;
  width: 260px;
  max-width: calc(100vw - 40px);
  padding: 14px;
  border: 3px solid var(--c-ink);
  border-radius: 12px;
  background: var(--c-white);
  box-shadow: none;
}

.perf-legend-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.perf-legend-card li {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.6;
  color: var(--c-ink);
}

.perf-legend-card li strong {
  font-weight: 900;
}

.perf-reset {
  flex: 0 0 auto;
  padding: 8px 12px;
  background: var(--c-white);
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 12px;
  color: var(--c-ink);
}

.perf-results {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.perf-results .pcard__title {
  cursor: pointer;
}

.perf-empty {
  margin: 0 0 8px;
  padding: 22px 16px;
  border: 2px solid var(--c-white);
  text-align: center;
}

.perf-empty p {
  margin: 0 0 14px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-white);
}

.perf-empty button {
  padding: 10px 18px;
  background: var(--c-white);
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 13px;
  color: var(--c-ink);
}

.perf-date-empty {
  margin: 0 0 8px;
  padding: 22px 16px;
  border: 2px solid var(--c-white);
  text-align: center;
}

.perf-date-empty p {
  margin: 0 0 14px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-white);
}

.perf-date-empty__cta {
  padding: 10px 18px;
  background: var(--c-white);
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 13px;
  color: var(--c-ink);
}

.perf-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 51px;
  margin: 8px 0 0;
  border: 2px solid var(--c-white);
  background: none;
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--c-white);
  transition: transform 0.12s ease;
}

.perf-more:active {
  transform: scale(0.98);
}

.perf-remaining {
  margin: 10px 0 0;
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 13px;
  color: var(--c-accent);
}

@media (prefers-reduced-motion: reduce) {
  .perf-datefilter__btn,
.perf-adv-row__chevron,
.perf-adv-section__toggle-icon,
.perf-adv-section__body-wrap,
.perf-adv-section__body-wrap.is-open,
.perf-adv-children-wrap,
.perf-adv-children-wrap.is-open,
.perf-more {
    transition: none;
  }
}
.tt-root {
  position: relative;
  --tt-accent: var(--c-blue);
  --tt-cell-bg: #c6d7f4;
}

.tt-root[data-date=sun] {
  --tt-accent: var(--c-red);
  --tt-cell-bg: #f7e2e3;
}

.tt-area-field {
  margin: 18px 16px 0;
}

.tt-area-field__label {
  display: block;
  margin-top: -0.2087em;
  margin-bottom: calc(8px - 0.0583em);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--c-ink);
}

.tt-area-select-wrap {
  position: relative;
}

.tt-area-select {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 16px 58px 16px 16px;
  border: 2px solid var(--c-ink);
  background: var(--c-white);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.05em;
  color: var(--c-ink);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.tt-area-select-wrap .btn-arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  pointer-events: none;
}

.tt-hint {
  margin: 14px 16px 0;
  padding: 14px;
  border: 2px solid var(--c-ink);
  background: var(--c-cream);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-ink);
  text-align: center;
}

.tt-datetabs {
  display: flex;
  gap: 10px;
  margin: 22px 16px 0;
}

.tt-datetab {
  position: relative;
  flex: 0 0 180px;
  width: 180px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 63px;
  padding-top: 20px;
  background: var(--c-accent);
  color: var(--c-ink);
  transition: background 0.12s ease, color 0.12s ease;
}

.tt-datetab.is-active {
  background: var(--c-ink);
  color: var(--c-white);
}

.tt-datetab__label {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
}

.tt-datetab__underline {
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
}

.tt-row {
  display: flex;
  align-items: stretch;
  margin: 0;
  background: var(--c-ink);
}

.tt-scroll {
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tt-scroll::-webkit-scrollbar {
  display: none;
}

.tt-grid {
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding: 0 8px;
  background: var(--c-ink);
  width: max-content;
  min-width: 100%;
}

.tt-axis {
  flex: 0 0 53px;
  width: 53px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--c-ink);
}

.tt-axis__head {
  height: 72px;
}

.tt-axis__body {
  position: relative;
}

.tt-axis__mark {
  position: absolute;
  right: 2px;
  transform: translateY(-50%);
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--c-white);
  text-align: right;
  white-space: nowrap;
}

.tt-axis__mark--last {
  transform: translateY(-100%);
}

.tt-axis__mark--hour {
  left: 12px;
  right: auto;
  font-weight: 500;
  font-size: 14px;
  text-align: left;
}

.tt-axis__now {
  position: absolute;
  left: 2px;
  z-index: 1;
  transform: translateY(-50%);
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 9px;
  line-height: 1.5;
  color: var(--c-red);
  white-space: nowrap;
}

.tt-col {
  flex: 0 0 140px;
  width: 140px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tt-col__head {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 8px 10px;
  background: var(--c-ink);
  box-sizing: border-box;
}

.tt-col__name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: calc(1.2em * 2);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--c-white);
}

.tt-col__head-row2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.tt-col__no {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 26px;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px var(--tt-accent);
  white-space: nowrap;
}

.tt-col__info {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-color: var(--c-white);
  -webkit-mask-image: url("/media/images/35th/v10-icon-info.svg");
  mask-image: url("/media/images/35th/v10-icon-info.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.tt-col__body {
  position: relative;
  background: var(--c-white);
}

.tt-col__tick {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-image: repeating-linear-gradient(to right, var(--tt-accent) 0 2px, transparent 2px 4px);
}

.tt-col__empty {
  position: absolute;
  top: 50%;
  left: 4px;
  right: 4px;
  transform: translateY(-50%);
  margin: 0;
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 10px;
  line-height: 1.5;
  color: rgba(35, 31, 32, 0.45);
}

.tt-col__now {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 1;
  background: var(--c-red);
}

.tt-col__now::before {
  content: "";
  position: absolute;
  top: -3.5px;
  left: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-red);
}

.tt-cell-wrap {
  position: absolute;
  left: 0;
  right: 0;
}

.tt-cell {
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 8px 8px 6px;
  border-top: 2px solid var(--tt-accent);
  border-bottom: 2px solid var(--tt-accent);
  background: var(--tt-cell-face, var(--tt-cell-bg));
  cursor: pointer;
  transition: transform 0.12s ease;
}

.tt-cell:hover {
  box-shadow: inset 0 0 0 2px var(--tt-accent);
}

.tt-cell:active {
  transform: scale(0.97);
}

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

.tt-cell-wrap.is-favorite .tt-cell {
  --tt-cell-face: #faf5d1;
  border: 2px solid var(--c-yellow);
}

.tt-cell__time {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-100%);
  padding: 0.5px 6px;
  background: var(--tt-accent);
  color: var(--c-white);
  white-space: nowrap;
}

.tt-cell__name {
  flex: 0 0 auto;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--c-ink);
  white-space: pre-line;
}

.tt-cell__icons {
  position: absolute;
  right: 6px;
  bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  padding-left: 3px;
  background: var(--tt-cell-face, var(--tt-cell-bg));
}

.tt-cell__fav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: none;
  border: 0;
  font-size: 14px;
  line-height: 1;
  color: var(--c-ink);
}

.tt-scrollbar {
  margin: 10px 16px 0;
  padding-bottom: 15px;
  cursor: grab;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}

.tt-scrollbar:active {
  cursor: grabbing;
}

.tt-scrollbar__track {
  position: relative;
  height: 6px;
  border-radius: 3px;
  background: #999999;
}

.tt-scrollbar__track::before {
  content: "";
  position: absolute;
  top: -9px;
  bottom: 0;
  left: 0;
  right: 0;
}

.tt-scrollbar__thumb {
  position: absolute;
  top: 0;
  height: 100%;
  min-width: 24px;
  border-radius: 3px;
  background: #3c3c3c;
}

.tt-stage-tip {
  position: absolute;
  z-index: 10;
  max-width: 220px;
  padding: 10px 12px;
  border: 2px solid var(--c-ink);
  border-radius: 10px;
  background: var(--c-white);
  box-shadow: none;
}

.tt-stage-tip__name {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 13px;
  line-height: 1.4;
  color: var(--c-ink);
}

.tt-stage-tip__sub {
  margin: 2px 0 0;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(35, 31, 32, 0.6);
}

@media (prefers-reduced-motion: reduce) {
  .tt-datetab,
.tt-cell {
    transition: none;
  }
}
.myplan-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px 24px 0 16px;
}

#perf-panel-myplan .myplan-heading {
  margin: 0;
  color: var(--c-ink);
}

.myplan-heading-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.myplan-help-btn {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-red);
  top: 3px;
  transition: transform 0.12s ease;
}

.myplan-help-btn:hover {
  transform: scale(1.05);
}

.myplan-help-btn:active {
  transform: scale(0.94);
}

.myplan-help-btn:focus-visible {
  outline: 2px solid var(--c-ink);
  outline-offset: 2px;
}

.myplan-help-icon {
  width: 18px;
  height: 18px;
  background-color: var(--c-white);
  -webkit-mask-image: url("/media/images/35th/v10-icon-help.svg");
  mask-image: url("/media/images/35th/v10-icon-help.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.myplan-share-icon-btn {
  position: relative;
  flex-shrink: 0;
  display: flex;
  width: 29px;
  height: 33px;
  top: 2.5px;
  transition: transform 0.12s ease;
}

.myplan-share-icon-btn::before {
  content: "";
  position: absolute;
  inset: -5.5px -7.5px;
}

.myplan-share-icon-btn--ios {
  width: 34px;
  height: 38px;
  top: 3px;
}

.myplan-share-icon-btn--ios::before {
  inset: -3px -5px;
}

.myplan-share-icon-btn:active {
  transform: scale(0.9);
}

.myplan-shared-banner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 16px 0;
}

.myplan-shared-banner__text {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-ink);
}

.myplan-shared-banner__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.myplan-shared-banner__import {
  flex: 0 0 auto;
  padding: 9px 10px;
  border: 2px solid var(--c-red);
  background: var(--c-red);
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 12.5px;
  color: var(--c-white);
  white-space: nowrap;
  transition: transform 0.12s ease;
}

.myplan-shared-banner__import:active {
  transform: translateY(1px);
}

.myplan-shared-banner__exit {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.myplan-shared-banner__exit::before {
  content: "";
  position: absolute;
  inset: -12px -10px;
}

.myplan-shared-banner__exit-label {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 12.5px;
  color: var(--c-ink);
}

.myplan-shared-banner__exit-line {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--c-ink);
}

.myplan-view-toggle {
  position: relative;
  display: flex;
  box-sizing: border-box;
  height: 45px;
  margin: 24px 16px 0;
  padding: 3px 4px;
  border: 2px solid var(--c-accent);
  border-radius: 999px;
  background: var(--c-white);
}

.myplan-view-toggle::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  width: calc((100% - 8px) / 2);
  height: calc(100% - 6px);
  border-radius: 999px;
  background: var(--c-red);
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.5, 1);
}

.myplan-view-toggle:has(.myplan-view-toggle__btn:last-of-type.is-active)::before {
  transform: translateX(100%);
}

.myplan-view-toggle__btn {
  position: relative;
  z-index: 1;
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 999px;
  background: none;
  color: var(--c-ink);
  transition: color 0.2s ease;
}

.myplan-view-toggle__btn.is-active {
  color: var(--c-white);
}

.myplan-view-toggle__icon {
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  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;
}

.myplan-view-toggle__icon--list {
  -webkit-mask-image: url("/media/images/35th/v10-icon-list.svg");
  mask-image: url("/media/images/35th/v10-icon-list.svg");
}

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

.myplan-view-toggle__label {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  white-space: nowrap;
}

.myplan-datetabs {
  display: flex;
  gap: 10px;
  margin: 24px 16px 0;
}

.myplan-datetab {
  position: relative;
  flex: 0 0 180px;
  width: 180px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 63px;
  padding-top: 20px;
  background: var(--c-accent);
  color: var(--c-ink);
  transition: background 0.12s ease, color 0.12s ease;
}

.myplan-datetab.is-active {
  background: var(--c-ink);
  color: var(--c-white);
}

.myplan-datetab__label {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
}

.myplan-datetab__underline {
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--myplan-datetab-accent, var(--c-blue));
}

.myplan-list-area {
  padding: 26px 16px 32px;
  background: var(--c-ink);
}

.myplan-list-count {
  margin: 0 0 18px;
  color: var(--c-white);
}

.myplan-list-empty {
  margin: 0;
  padding: 20px 0;
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.myplan-list-results {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#perf-panel-myplan .tt-row {
  margin: 24px 0 0;
}

#perf-panel-myplan .tt-axis {
  flex: 0 0 48px;
  width: 48px;
}

#perf-panel-myplan .tt-axis__mark--hour {
  left: 6px;
}

#perf-panel-myplan .tt-col {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
}

#perf-panel-myplan .tt-datetab {
  flex: 0 0 auto;
  width: 100%;
}

.myplan-cell-wrap--left {
  left: 0;
  right: auto;
  width: calc(50% - 2px);
}

.myplan-cell-wrap--right {
  left: auto;
  right: 0;
  width: calc(50% - 2px);
}

.myplan-more-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 2px dashed var(--c-ink);
  background: var(--c-cream);
  font-family: var(--font-jp);
  color: var(--c-ink);
  transition: background 0.12s ease;
}

.myplan-more-cell:active {
  background: var(--c-white);
}

.myplan-more-cell__num {
  font-weight: 900;
  font-size: 13px;
  line-height: 1;
}

.myplan-more-cell__label {
  font-weight: 700;
  font-size: 9px;
  line-height: 1;
}

.myplan-unplaced {
  margin: 20px 16px 0;
}

#perf-panel-myplan .myplan-unplaced__heading {
  margin: 0 0 8px;
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 13px;
  color: var(--c-ink);
}

.myplan-unplaced__item {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 8px;
  padding: 10px 12px;
  border: 2px solid var(--c-ink);
  background: var(--c-white);
  text-align: left;
  font-family: var(--font-jp);
  transition: background 0.12s ease;
}

.myplan-unplaced__item:active {
  background: var(--c-cream);
}

.myplan-unplaced__item-time {
  display: block;
  margin-bottom: 2px;
  font-weight: 900;
  font-size: 11.5px;
  color: var(--c-ink);
}

.myplan-unplaced__item-name {
  display: block;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.3;
  color: var(--c-ink);
}

.myplan-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(35, 31, 32, 0.55);
}

.myplan-dialog-backdrop[hidden] {
  display: none;
}

.myplan-dialog {
  width: 100%;
  max-width: var(--lp-width);
  max-height: 82vh;
  overflow-y: auto;
  position: relative;
  padding: 24px 20px 20px;
  border: 3px solid var(--c-ink);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  background: var(--c-white);
  box-shadow: none;
}

.myplan-dialog__close {
  position: absolute;
  top: 10px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
  color: var(--c-ink);
}

#perf-panel-myplan .myplan-dialog__title {
  margin: 0 28px 10px 0;
  white-space: pre-line;
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}

.myplan-dialog__note {
  margin: 0 0 14px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--c-ink);
}

.myplan-dialog__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.myplan-dialog__list-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 2px solid var(--c-ink);
  background: var(--c-white);
  text-align: left;
  transition: background 0.12s ease;
}

.myplan-dialog__list-item:active {
  background: var(--c-cream);
}

.myplan-dialog__list-time {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 13px;
  color: var(--c-ink);
}

.myplan-dialog__list-name {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 14px;
  line-height: 1.3;
  color: var(--c-ink);
}

.myplan-dialog__list-venue {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 11.5px;
  color: rgba(35, 31, 32, 0.65);
}

.myplan-empty {
  margin: 24px 16px 0;
  padding: 20px 16px;
  border: 2px solid var(--c-ink);
  background: var(--c-cream);
  text-align: center;
}

.myplan-empty p {
  margin: 0 0 14px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--c-ink);
}

.myplan-empty__cta {
  display: inline-block;
  padding: 10px 18px;
  border: 2px solid var(--c-ink);
  background: var(--c-yellow);
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 13px;
  color: var(--c-ink);
}

.myplan-own-empty {
  margin: 40px 16px 48px;
  text-align: center;
}

.myplan-own-empty__text {
  margin: 0 0 20px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--c-ink);
}

.myplan-own-empty__cta {
  display: inline-block;
  padding: 10px 18px;
  border: 2px solid var(--c-red);
  background: var(--c-red);
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 13px;
  color: var(--c-white);
  transition: transform 0.12s ease;
}

.myplan-own-empty__cta:active {
  transform: translateY(1px);
}

.myplan-toast {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 16px 24px;
  padding: 12px 14px;
  border: 2px solid var(--c-ink);
  background: var(--c-white);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--c-ink);
}

.myplan-toast[hidden] {
  display: none;
}

.myplan-toast__input {
  box-sizing: border-box;
  width: 100%;
  height: 38px;
  padding: 0 10px;
  border: 2px solid var(--c-ink);
  background: var(--c-cream);
  font-family: var(--font-jp);
  font-size: 12px;
  color: var(--c-ink);
}

@media (prefers-reduced-motion: reduce) {
  .myplan-share-icon-btn,
.myplan-help-btn,
.myplan-view-toggle::before,
.myplan-view-toggle__btn,
.myplan-datetab,
.myplan-more-cell,
.myplan-unplaced__item,
.myplan-dialog__list-item,
.myplan-own-empty__cta,
.myplan-shared-banner__import {
    transition: none;
  }
}
.perf-vote {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-sizing: border-box;
  min-height: 34px;
  padding: 6px 14px 6px 11px;
  border: 2px solid var(--c-red);
  border-radius: 999px;
  background: var(--c-white);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.3;
  color: var(--c-red);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

.perf-vote:hover:not(:disabled):not(.is-blocked) {
  background: #fdeced;
}

.perf-vote:disabled,
.perf-vote.is-blocked {
  border-color: #c9c4be;
  color: #8b857f;
  cursor: default;
}

.perf-vote.is-voted {
  background: var(--c-red);
  color: var(--c-white);
}

.perf-vote.is-voted:hover:not(:disabled) {
  background: #b8070f;
}

.perf-vote__icon {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  background: currentColor;
  -webkit-mask: var(--perf-vote-glyph) center/contain no-repeat;
  mask: var(--perf-vote-glyph) center/contain no-repeat;
}

.perf-vote.is-voted .perf-vote__icon {
  -webkit-mask-image: var(--perf-vote-glyph-voted, var(--perf-vote-glyph));
  mask-image: var(--perf-vote-glyph-voted, var(--perf-vote-glyph));
}

@keyframes perf-vote-pop {
  0% {
    transform: scale(1) rotate(0);
  }
  35% {
    transform: scale(1.3) rotate(-10deg);
  }
  62% {
    transform: scale(0.92) rotate(4deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
@keyframes perf-vote-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(216, 9, 18, 0.5);
  }
  100% {
    box-shadow: 0 0 0 14px rgba(216, 9, 18, 0);
  }
}
.perf-vote.is-just-voted .perf-vote__icon {
  animation: perf-vote-pop 0.45s ease-out;
}

.perf-vote.is-just-voted {
  animation: perf-vote-ring 0.55s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .perf-vote.is-just-voted,
.perf-vote.is-just-voted .perf-vote__icon {
    animation: none;
  }
}
.perf-vote {
  --perf-vote-glyph: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 20.7l-1.2-1.1C6.1 15.4 3 12.6 3 9.2 3 6.4 5.2 4.2 8 4.2c1.6 0 3.1.7 4 1.9 0.9-1.2 2.4-1.9 4-1.9 2.8 0 5 2.2 5 5 0 3.4-3.1 6.2-7.8 10.4L12 20.7z'/%3E%3C/svg%3E");
}

.perf-vote__label {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.perf-vote__label-category {
  display: none;
}

.perf-vote.has-category .perf-vote__label-category {
  display: block;
}

.perf-vote__note:not(:empty) {
  padding-left: 8px;
  margin-left: 2px;
  border-left: 1px solid currentColor;
  font-weight: 500;
  font-size: 11.5px;
  line-height: 1.5;
  white-space: normal;
}

.perf-vote:disabled .perf-vote__note,
.perf-vote.is-blocked .perf-vote__note {
  border-left-color: #c9c4be;
}

@keyframes perf-vote-shake {
  0%, 100% {
    transform: translateX(0);
  }
  14% {
    transform: translateX(-6px);
  }
  28% {
    transform: translateX(6px);
  }
  42% {
    transform: translateX(-6px);
  }
  57% {
    transform: translateX(6px);
  }
  71% {
    transform: translateX(-6px);
  }
  85% {
    transform: translateX(6px);
  }
}
.perf-vote.is-shaking {
  animation: perf-vote-shake 0.35s ease-in-out;
}

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

  .perf-vote.is-shaking {
    animation: none;
  }
}
.perf-vote-category {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border: 1px solid var(--c-red);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 11.5px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--c-red);
  white-space: nowrap;
}

.perf-vote-intro-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.6);
}

.perf-vote-intro-backdrop[hidden] {
  display: none;
}

.perf-vote-intro-dialog {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 370px;
  max-height: 100%;
  overflow-y: auto;
  padding: 24px 20px 20px;
  border: 2px solid var(--c-ink);
  background: var(--c-cream);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.perf-vote-intro-dialog.is-visible {
  opacity: 1;
  transform: none;
}

.perf-vote-intro-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;
}

.perf-vote-intro-close:active {
  transform: scale(0.94);
}

.perf-vote-intro-title {
  margin: 0 28px 12px 0;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--c-ink);
}

.perf-vote-intro-lead {
  margin: 0 0 20px;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: var(--c-ink);
}

.perf-vote-intro-rules-title {
  margin: 0 0 10px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-red);
}

.perf-vote-intro-rules {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 20px;
}

.perf-vote-intro-rules li {
  position: relative;
  padding-left: 16px;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--c-ink);
}

.perf-vote-intro-rules li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--c-red);
}

.perf-vote-intro-note {
  margin: 0 0 20px;
  white-space: pre-line;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(35, 31, 32, 0.55);
}

.perf-vote-intro-start {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  border: 2px solid var(--c-red);
  background: var(--c-red);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  color: var(--c-white);
  text-align: center;
  transition: transform 0.12s ease;
}

.perf-vote-intro-start:active {
  transform: scale(0.98);
}

@media (prefers-reduced-motion: reduce) {
  .perf-vote-intro-dialog {
    transition: none;
  }
}
.jsf-toast-host {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(75px + env(safe-area-inset-bottom, 0px));
  z-index: 20500;
  pointer-events: none;
}

@media (min-width: 1240px) {
  .jsf-toast-host {
    bottom: 0;
  }
}
.jsf-toast-frame {
  position: relative;
  width: var(--lp-width);
  margin: 0 auto;
  zoom: var(--lp-zoom, min(calc(100vw / 402px), 1));
}

.jsf-toast {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 2px solid var(--c-ink);
  background: var(--c-white);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
  pointer-events: auto;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.jsf-toast[hidden] {
  display: none;
}

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

.jsf-toast__text {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-ink);
}

.jsf-toast__action {
  display: inline-block;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: none;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--c-red);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.jsf-toast__action[hidden] {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .jsf-toast {
    transition: none;
  }
}
.perf-detail-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: rgba(0, 0, 0, 0.6);
}

.perf-detail-backdrop[hidden] {
  display: none;
}

.pcard[data-variant=modal] {
  max-height: 100%;
  overflow-y: auto;
}

.tour {
  --tour-dim: rgba(35, 31, 32, 0.72);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
}

.tour__hole {
  position: absolute;
  border-radius: 4px;
  transition: left 0.28s ease, top 0.28s ease, width 0.28s ease, height 0.28s ease;
  pointer-events: none;
}

.tour__hole[hidden] {
  display: none;
}

.tour__bubble {
  position: absolute;
  box-sizing: border-box;
  width: 300px;
  max-width: calc(100vw - 24px);
  padding: 16px 16px 12px;
  border: 2px solid var(--c-ink);
  background: var(--c-white);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
  transition: left 0.28s ease, top 0.28s ease;
}

.tour__tail {
  position: absolute;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  background: var(--c-white);
  border: 2px solid var(--c-ink);
  transform: rotate(45deg);
}

.tour__tail[hidden] {
  display: none;
}

.tour__bubble .tour__tail {
  top: -9px;
  border-right: none;
  border-bottom: none;
}

.tour__bubble.is-above .tour__tail {
  top: auto;
  bottom: -9px;
  border-right: 2px solid var(--c-ink);
  border-bottom: 2px solid var(--c-ink);
  border-left: none;
  border-top: none;
}

.tour__close {
  position: absolute;
  top: 4px;
  right: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  color: var(--c-ink);
}

.tour__text {
  margin: 0 24px 14px 0;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: var(--c-ink);
}

.tour__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tour__count {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(35, 31, 32, 0.55);
  font-variant-numeric: tabular-nums;
}

.tour__actions {
  display: flex;
  gap: 8px;
}

.tour__btn {
  min-width: 64px;
  padding: 8px 14px;
  border: 2px solid var(--c-ink);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  color: var(--c-ink);
  background: var(--c-white);
}

.tour__btn--next {
  background: var(--c-red);
  border-color: var(--c-red);
  color: var(--c-white);
}

.tour__btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.tour__btn:active:not(:disabled) {
  transform: translateY(1px);
}

.tour.is-static .tour__hole,
.tour.is-static .tour__bubble {
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .tour__hole,
.tour__bubble {
    transition: none;
  }
}

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