@font-face {
  font-family: "KozGo";
  src: url("../design-data/Fonts/KozGoPr6N-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Kaiun";
  src: url("../fonts/kaiun421.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "KaiunP";
  src: url("../fonts/kaiun421p.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "KaiunOP";
  src: url("../fonts/kaiun421op.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --page-bg: #2a211f;
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.78);
  --line: rgba(255, 255, 255, 0.22);
  --red: #c80d14;
  --panel: rgba(48, 34, 29, 0.82);
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: "KozGo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  overflow-x: hidden;
}

body.is-menu-locked {
  overflow: hidden;
  touch-action: none;
}

body.is-public-top-exhibition-only .topbar {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body.is-public-top-exhibition-only .topnav > a[href*="ticket"],
body.is-public-top-exhibition-only .topnav > a[href*="question"],
body.is-public-top-exhibition-only .topbar__meta-links > a[href*="question"],
body.is-public-top-exhibition-only .top-ticket-panel a {
  opacity: 0.38;
  filter: grayscale(1);
  pointer-events: none;
  cursor: default;
}

main,
.ticket-float {
  font-family:
    "KaiunP", "Kaiun", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.release-page {
  position: relative;
  background: #2a211f;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(30, 29, 29, 0.86);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.topbar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.topbar__inner {
  width: min(calc(100% - 48px), 1900px);
  min-height: 72px;
  margin: 0 auto;
  padding-left: 290px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.topbar-desktop {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.topbar-menu {
  display: none;
}

.topbar-menu__panel {
  display: none;
}

.topbar-toggle {
  display: none;
}

.topbar-toggle::-webkit-details-marker {
  display: none;
}

.brand-badge {
  position: fixed;
  top: -18px;
  left: 48px;
  z-index: 50;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  display: grid;
  place-items: center;
}

.brand-badge__inner {
  width: 96%;
  text-align: center;
}

.brand-badge__logo {
  width: 100%;
}

.brand-badge__year {
  margin-top: 8px;
  color: #111;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: 0.06em;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  min-width: 0;
}

.topnav > a,
.topnav__item > a {
  flex: 1;
  display: block;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 0 18px;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  transition: color 220ms ease;
}

.topnav > a,
.topnav__item {
  border-left: 2px solid rgba(255, 255, 255, 0.72);
}

.topnav > a:last-child {
  border-right: 2px solid rgba(255, 255, 255, 0.72);
}

.topnav__item {
  position: relative;
  flex: 1;
}

.topnav__submenu {
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 20;
  width: max-content;
  min-width: 260px;
  padding-top: 14px;
  opacity: 0;
  transform: translate(-50%, -8px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.topnav__submenu a {
  display: block;
  padding: 12px 16px;
  background: rgba(30, 29, 29, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  text-align: center;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.topnav__item:hover .topnav__submenu,
.topnav__item:focus-within .topnav__submenu {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.topnav a.is-current {
  color: #f0d7d8;
}

.topnav a:hover {
  color: #d53a45;
}

.topnav a.is-disabled {
  color: rgba(255, 255, 255, 0.38);
  pointer-events: none;
  cursor: default;
}

.topnav__submenu a.is-disabled {
  color: rgba(255, 255, 255, 0.42);
  background: rgba(18, 18, 18, 0.92);
  border-color: rgba(255, 255, 255, 0.22);
}

.topbar__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 0 1 auto;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
}

.topbar__meta-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar__meta-links > a {
  opacity: 0.94;
  transition: opacity 180ms ease;
}

.topbar__meta-links > a:hover {
  opacity: 0.68;
}

.topbar__socials {
  display: flex;
  gap: 12px;
  margin-top: 2px;
}

.social-pill {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  color: #222;
  font-size: 1.9rem;
  display: grid;
  place-items: center;
  line-height: 1;
}

.ticket-float {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 35;
  width: 76px;
  padding: 18px 0px;
  text-align: center;
}

.ticket-float img {
  width: 100%;
}

.ticket-float__icon {
  font-size: 2rem;
}

.ticket-float__text {
  margin-top: 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  display: inline-block;
}

.top-ticket-panel {
  width: min(100%, 720px);
  margin: 8px auto 0;
  display: grid;
  gap: 20px;
  justify-items: center;
  text-align: center;
}

.top-ticket-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.8;
}

.top-ticket-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 54px;
  padding: 13px 28px;
  color: #fff;
  background: linear-gradient(180deg, #d81420, #8f0710);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 16px 34px rgba(0, 0, 0, 0.28);
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.top-ticket-panel a:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

body.top-page {
  background: #000;
}

body.top-page .release-page {
  min-height: 100vh;
  background: #000;
}

body.top-page .brand-badge {
  opacity: 0;
  transform: translateY(-36px);
  animation: top-mainvisual-brand-drop 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 7.25s
    forwards;
}

body.top-page .top-mainvisual-test {
  position: relative;
  width: 100%;
  min-height: min(100vh, 1080px);
  background: #000;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(480px, 0.96fr) minmax(0, 1fr);
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

body.top-page .top-mainvisual-test__art {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  z-index: 0;
  min-height: min(100vh, 1080px);
  background: #000;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}

body.top-page .top-mainvisual-test__art-frame {
  position: relative;
  flex: 0 0 auto;
  height: min(100vh, 1080px);
  overflow: hidden;
}

body.top-page .top-mainvisual-test__kv-image {
  width: auto;
  height: min(100vh, 1080px);
  max-width: none;
  object-fit: contain;
  opacity: 0;
  filter: brightness(0.72) contrast(0.96);
  transform: scale(1.015);
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

body.top-page .top-mainvisual-test__art::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 24%;
  z-index: 3;
  background: linear-gradient(90deg, #000 18%, rgba(0, 0, 0, 0));
  pointer-events: none;
}

body.top-page .top-mainvisual-test__sp-logo {
  display: none;
}

body.top-page .top-mainvisual-test__content {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  z-index: 2;
  min-height: min(100vh, 1080px);
  padding: clamp(88px, 9vw, 160px) clamp(32px, 6vw, 112px) 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #000;
  color: #fff;
  text-align: center;
  transform: translateX(clamp(18px, 3vw, 56px));
}

body.top-page .top-mainvisual-test__lead {
  margin: 0 0 clamp(26px, 3vw, 56px);
  font-family: "KaiunOP", "KaiunP", "Yu Gothic", sans-serif;
  font-size: clamp(18px, 1.65vw, 30px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
}

body.top-page .top-mainvisual-test__lead-break {
  display: none;
}

body.top-page .top-mainvisual-test__logo {
  width: min(50vw, 1040px);
  max-width: none;
  align-self: center;
  margin: 0 0 clamp(38px, 5vw, 44px);
  filter: drop-shadow(0 0 28px rgba(0, 0, 0, 0.78));
  opacity: 0;
}

body.top-page .top-mainvisual-test__date {
  margin: 0;
  display: grid;
  gap: clamp(9px, 1vw, 16px);
  font-family: "KaiunOP", "KaiunP", "Yu Gothic", sans-serif;
  font-size: clamp(24px, 2.35vw, 43px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-align: center;
}

body.top-page .top-mainvisual-test__date-line {
  display: block;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  transform: translateY(10px);
}

body.top-page .top-mainvisual-test__date-note {
  display: inline-block;
  margin-left: 0.35em;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.48em;
  line-height: 1.25;
  letter-spacing: 0.02em;
  vertical-align: 0.14em;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.86);
}

body.top-page .top-mainvisual-test__accent {
  color: #e00012;
}

body.top-page .top-mainvisual-test__note {
  margin: clamp(16px, 1.9vw, 28px) 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(14px, 1.35vw, 23px);
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
  width: min(100%, 560px);
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  transform: translateY(10px);
}

body.top-page .top-mainvisual-test__note-line {
  display: block;
}

body.top-page .top-mainvisual-test__place {
  margin: clamp(26px, 3.2vw, 56px) 0 0;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", "Yu Gothic", sans-serif;
  font-size: clamp(21px, 2.2vw, 38px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  clip-path: inset(0 100% 0 0);
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
}

body.top-page .top-mainvisual-test__place-note {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82em;
}

body.top-page .top-mainvisual-test.is-kv-animated .top-mainvisual-test__logo {
  animation: hero-fade-up 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 2.35s forwards;
}

body.top-page .top-mainvisual-test.is-kv-animated .top-mainvisual-test__lead {
  animation:
    hero-fade-up 0.35s cubic-bezier(0.2, 0.7, 0.2, 1) 3.1s forwards,
    hero-type-line 1.2s steps(28, end) 3.15s forwards;
}

body.top-page
  .top-mainvisual-test.is-kv-animated
  .top-mainvisual-test__date-line:nth-child(1) {
  animation: top-mainvisual-text-reveal 0.68s steps(38, end) 4.48s forwards;
}

body.top-page
  .top-mainvisual-test.is-kv-animated
  .top-mainvisual-test__date-line:nth-child(2) {
  animation: top-mainvisual-text-reveal 0.68s steps(38, end) 5.18s forwards;
}

body.top-page
  .top-mainvisual-test.is-kv-animated
  .top-mainvisual-test__date-line:nth-child(3) {
  animation: top-mainvisual-text-reveal 0.68s steps(38, end) 5.88s forwards;
}

body.top-page .top-mainvisual-test.is-kv-animated .top-mainvisual-test__note {
  animation: top-mainvisual-text-reveal 0.5s steps(24, end) 6.62s forwards;
}

body.top-page .top-mainvisual-test.is-kv-animated .top-mainvisual-test__place {
  animation: top-mainvisual-text-reveal 0.46s steps(18, end) 7.16s forwards;
}

body.top-page
  .top-mainvisual-test.is-kv-animated
  .top-mainvisual-test__kv-image {
  animation: top-mainvisual-art-emerge 2.4s ease-out 0.2s forwards;
}

.hero {
  position: relative;
  min-height: 860px;
  padding-top: 160px;
  padding-bottom: 180px;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.1), rgba(10, 10, 10, 0.28)),
    url("../design-data/extracted/image_1_Im0.webp") center top / cover
      no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: #000;
  opacity: 1;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 70%,
    rgba(43, 33, 30, 0.98) 100%
  );
  pointer-events: none;
}

.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity 140ms ease;
}

.hero__noise canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__horror-word {
  color: inherit;
  transition:
    color 70ms linear,
    text-shadow 70ms linear;
}

.hero__horror-word.is-flashing {
  color: #e10612;
  text-shadow:
    0 0 10px rgba(225, 6, 18, 0.5),
    0 0 20px rgba(225, 6, 18, 0.22);
}

.hero__inner {
  position: relative;
  z-index: 4;
  width: min(calc(100% - 80px), 980px);
  margin: 0 auto;
  padding-top: 34px;
  text-align: center;
}

.hero__logo-panel {
  width: min(100%, 860px);
  margin: 46px auto 0;
  opacity: 0;
  transform: translateY(18px);
}

.hero__logo-panel img {
  width: 100%;
  margin-top: -40px;
}

.hero__meta {
  margin-top: 34px;
  opacity: 0;
  transform: translateY(18px);
}

.hero__lead {
  margin: 0;
  font-size: 2rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  opacity: 0;
  transform: translateY(18px);
  overflow: hidden;
  display: inline-block;
  clip-path: inset(0 100% 0 0);
}

.hero__date,
.hero__note,
.hero__place {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-family: "KaiunOP", "KaiunP", sans-serif;
}

.hero__date-line {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.72),
    0 0 18px rgba(0, 0, 0, 0.42);
}

.hero__date-line + .hero__date-line {
  margin-top: -2px;
}

.hero__accent {
  color: #e10612;
  font-size: 1.18em;
}

.hero__date .hero__accent {
  text-shadow:
    0 4px 0 rgba(0, 0, 0, 0.42),
    0 8px 14px rgba(0, 0, 0, 0.62),
    2px 10px 18px rgba(0, 0, 0, 0.5);
}

.hero__note {
  margin-top: 6px;
  font-size: 1.08rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  overflow: hidden;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
}

.hero__place {
  margin-top: 16px;
  overflow: hidden;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
}

.hero__place-note {
  display: inline;
}

.hero__news {
  margin-top: 58px;
  display: inline-flex;
  align-items: center;
  gap: 30px;
}

.hero__news-title {
  font-size: 1.6rem;
  letter-spacing: 0.14em;
  font-family: "KaiunOP", "KaiunP", sans-serif;
}

.hero__news-link {
  display: inline-flex;
}

.hero__news-link img {
  width: 140px;
}

.hero.is-kv-animated::before {
  animation: hero-blackout 1.2s ease 0s forwards;
}

.hero.is-kv-animated .hero__logo-panel {
  animation: hero-fade-up 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 1.15s forwards;
}

.hero.is-kv-animated .hero__lead {
  animation:
    hero-fade-up 0.35s cubic-bezier(0.2, 0.7, 0.2, 1) 1.9s forwards,
    hero-type-line 1.2s steps(28, end) 1.95s forwards;
}

.hero.is-kv-animated .hero__meta {
  animation: hero-fade-up 0.35s cubic-bezier(0.2, 0.7, 0.2, 1) 3.2s forwards;
}

.hero.is-kv-animated .hero__date-line:nth-child(1) {
  animation: hero-type-line 0.5s steps(24, end) 3.28s forwards;
}

.hero.is-kv-animated .hero__date-line:nth-child(2) {
  animation: hero-type-line 0.5s steps(24, end) 3.86s forwards;
}

.hero.is-kv-animated .hero__date-line:nth-child(3) {
  animation: hero-type-line 0.5s steps(24, end) 4.44s forwards;
}

.hero.is-kv-animated .hero__note {
  animation: hero-type-line 0.42s steps(18, end) 5.02s forwards;
}

.hero.is-kv-animated .hero__place {
  animation: hero-type-line 0.46s steps(18, end) 5.48s forwards;
}

@keyframes hero-blackout {
  0% {
    opacity: 1;
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes hero-fade-up {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-type-line {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes top-mainvisual-art-emerge {
  0% {
    opacity: 0;
    filter: brightness(0.56) contrast(0.92);
    transform: scale(1.025);
  }

  100% {
    opacity: 1;
    filter: brightness(1) contrast(1);
    transform: scale(1);
  }
}

@keyframes top-mainvisual-text-reveal {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateY(10px);
  }

  15% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes top-mainvisual-brand-drop {
  0% {
    opacity: 0;
    transform: translateY(-36px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes top-mainvisual-art-emerge-mobile {
  0% {
    opacity: 0;
    filter: brightness(0.56) contrast(0.92);
    transform: scale(1.01);
  }

  100% {
    opacity: 1;
    filter: brightness(1) contrast(1);
    transform: scale(1);
  }
}

@keyframes top-mainvisual-sp-logo-emerge {
  0% {
    opacity: 0;
    transform: translate(-50%, -8px);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 1200px) {
  body.top-page .top-mainvisual-test__date-note {
    display: block;
    margin: 0.18em 0 0;
    vertical-align: baseline;
  }
}

@media (max-width: 900px) {
  body.top-page .top-mainvisual-test {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: clamp(12px, 3.5vw, 18px);
  }

  body.top-page .top-mainvisual-test__art {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    height: auto;
    overflow: visible;
    padding: clamp(8px, 2.5vw, 14px) clamp(18px, 5.5vw, 28px)
      clamp(28px, 7vw, 44px);
    background: #000;
  }

  body.top-page .top-mainvisual-test__art-frame {
    width: min(100%, 430px);
    height: auto;
    margin: 0 auto;
    padding: clamp(7px, 2.4vw, 12px);
    overflow: visible;
    background: #000;
  }

  body.top-page .top-mainvisual-test__sp-logo {
    position: absolute;
    top: clamp(-42px, -9vw, -28px);
    left: 50%;
    z-index: 5;
    display: block;
    width: min(116%, 460px);
    max-width: none;
    opacity: 0;
    filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.95))
      drop-shadow(0 0 10px rgba(0, 0, 0, 0.95))
      drop-shadow(0 0 2px rgba(255, 255, 255, 0.45));
    transform: translateX(-50%);
  }

  body.top-page .top-mainvisual-test__kv-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    clip-path: inset(0);
    transform: scale(1);
    transform-origin: center center;
  }

  body.top-page
    .top-mainvisual-test.is-kv-animated
    .top-mainvisual-test__kv-image {
    animation: top-mainvisual-art-emerge-mobile 1.2s ease-out 0.2s forwards;
  }

  body.top-page
    .top-mainvisual-test.is-kv-animated
    .top-mainvisual-test__sp-logo {
    animation: top-mainvisual-sp-logo-emerge 0.7s ease-out 1s forwards;
  }

  body.top-page .top-mainvisual-test__art::after {
    display: none;
  }

  body.top-page .top-mainvisual-test__content {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    margin-top: 0;
    padding: 20px 22px 56px;
    position: relative;
    z-index: 1;
    align-items: center;
    text-align: center;
    transform: none;
  }

  body.top-page .top-mainvisual-test__lead {
    white-space: normal;
  }

  body.top-page .top-mainvisual-test__lead-break {
    display: block;
  }

  body.top-page .top-mainvisual-test__logo {
    display: none;
  }

  body.top-page .top-mainvisual-test__date-line {
    white-space: normal;
  }

  body.top-page .top-mainvisual-test__place-note {
    display: block;
    margin-top: 0.08em;
  }
}

.content-section {
  width: min(calc(100% - 80px), var(--max-width));
  margin: 0 auto;
  padding: 84px 0 0;
  margin-bottom: 120px;
}

.content-section--news {
  width: min(calc(100% - 80px), 1280px);
}

.content-section--event {
  width: 100%;
  padding-top: 80px;
}

.section-title {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.section-title img {
  width: min(100%, 420px);
}

.js-fade-title,
.js-fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

.js-fade-title.is-visible,
.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title--about img {
  width: min(100%, 500px);
}

#about .section-title,
#contents .section-title,
#ticket .section-title {
  margin-bottom: -132px;
  z-index: 0;
}

#ticket .section-title {
  margin-bottom: -168px;
}

.about-text {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  margin-top: 20px;
  max-width: 980px;
  font-size: 1.5rem;
  line-height: 1.9;
  text-align: left;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
}

.board-list {
  display: grid;
  gap: 114px;
  padding: 0;
  position: relative;
  z-index: 1;
}

div.board-list > ul {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 0;
}

div.board-list > ul > li {
  list-style: none;
  overflow: hidden;
}

div.board-list > ul > li > a {
  display: block;
}

div.board-list > ul > li > a[aria-disabled="true"] {
  cursor: default;
  pointer-events: none;
}

div.board-list > ul > li > a.board-link--inactive {
  opacity: 0.72;
  filter: saturate(0.72) brightness(0.82);
}

div.board-list > ul > li > a.board-link--inactive img {
  opacity: 1;
}

div.board-list > ul > li > a.board-link:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

div.board-list > ul img {
  max-width: 760px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.blank-stack {
  position: relative;
  min-height: 220px;
  padding-top: 42px;
  z-index: 1;
}

.blank-stack::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -58px;
  width: 540px;
  height: 188px;
  transform: translateX(-50%);
  background:
    radial-gradient(
      circle at center,
      rgba(173, 25, 34, 0.5),
      rgba(173, 25, 34, 0.32) 60%,
      transparent 61%
    ),
    linear-gradient(180deg, rgba(255, 0, 17, 0.9), rgba(255, 0, 17, 0.6));
  clip-path: ellipse(30% 34% at 50% 64%);
  opacity: 0.6;
}

.blank-stack::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -24px;
  width: 470px;
  height: 70px;
  transform: translateX(-50%);
  border: 3px solid rgba(220, 44, 52, 0.85);
  border-radius: 2px;
  box-shadow:
    inset 0 0 24px rgba(220, 44, 52, 0.34),
    0 0 12px rgba(220, 44, 52, 0.22);
}

.blank-stack__line {
  position: relative;
  z-index: 1;
  width: 74%;
  min-height: 110px;
  margin: 0 auto;
  background: #fff;
}

.board-item {
  position: relative;
  min-height: 220px;
  padding-top: 42px;
}

.board-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -58px;
  width: 540px;
  height: 188px;
  transform: translateX(-50%);
  background:
    radial-gradient(
      circle at center,
      rgba(173, 25, 34, 0.5),
      rgba(173, 25, 34, 0.32) 60%,
      transparent 61%
    ),
    linear-gradient(180deg, rgba(255, 0, 17, 0.9), rgba(255, 0, 17, 0.6));
  clip-path: ellipse(30% 34% at 50% 64%);
  opacity: 0.6;
}

.board-item::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -24px;
  width: 470px;
  height: 70px;
  transform: translateX(-50%);
  border: 3px solid rgba(220, 44, 52, 0.85);
  border-radius: 2px;
  box-shadow:
    inset 0 0 24px rgba(220, 44, 52, 0.34),
    0 0 12px rgba(220, 44, 52, 0.22);
}

.board-item__body {
  position: relative;
  z-index: 1;
  width: 74%;
  min-height: 110px;
  margin: 0 auto;
  padding: 38px 70px;
  background: #fff;
  color: #1b1412;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.board-item__body--blank {
  color: #1b1412;
}

.board-item__body--blank span {
  display: block;
  font-size: 1.65rem;
  letter-spacing: 0.08em;
  font-family: "KaiunOP", "KaiunP", sans-serif;
}

.news-panel {
  position: relative;
  min-height: 520px;
  padding: 0;
}

.news-panel__title {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 880 / 634;
  margin: 0 auto -132px;
  overflow: visible;
  z-index: 0;
}

.news-panel__title img {
  display: none;
}

.news-panel__title::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/TOP-Main/flame-news.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}

.news-panel__list {
  width: min(100%, 790px);
  margin: 0 auto 0;
  position: relative;
  z-index: 1;
}

.news-panel__row {
  min-height: 56px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 28px;
  color: #1b1412;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

.news-panel__date {
  flex: 0 0 auto;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.news-panel__text {
  min-width: 0;
  width: 100%;
}

.news-panel__text--link {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.news-panel__text--link:hover {
  color: #1d4ed8;
}

.news-panel__row + .news-panel__row {
  margin-top: 20px;
}

.news-panel__more {
  display: inline-block;
  margin-top: 34px;
  margin-left: calc(50% + 300px);
  color: #fff;
  font-size: 1.45rem;
  letter-spacing: 0.06em;
}

.news-panel__more img {
  width: 120px;
}

.event-overview {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 0 28px 36px;
  box-sizing: border-box;
}

.event-overview__sheet {
  background:
    linear-gradient(180deg, rgba(14, 10, 10, 0.96), rgba(22, 16, 15, 0.94)),
    rgba(0, 0, 0, 0.9);
  color: #f5f0ea;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(194, 18, 28, 0.18),
    0 26px 80px rgba(0, 0, 0, 0.34);
}

.event-overview__header {
  position: relative;
  padding: 30px 36px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.event-overview__header h2 {
  margin: 0;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
  font-family: "KaiunOP", "KaiunP", sans-serif;
}

.event-overview__header p {
  position: absolute;
  right: 36px;
  bottom: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
}

.event-overview__table {
  display: grid;
}

.event-overview__row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.event-overview__row:last-child {
  border-bottom: none;
}

.event-overview__label,
.event-overview__value {
  padding: 14px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.15rem;
  line-height: 1.8;
  box-sizing: border-box;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

.event-overview__value {
  border-right: none;
}

.event-overview__label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.event-overview__row--top .event-overview__label {
  padding-top: 18px;
}

.event-overview__value p {
  margin: 0;
}

.event-overview__value p + p {
  margin-top: 4px;
}

.event-overview__value span {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
}

.event-overview__value a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.16em;
  word-break: break-all;
}

.event-overview__note {
  margin-top: 8px !important;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
}

.event-times {
  margin: 10px 0 0;
}

.event-times div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 12px;
}

.event-times div + div {
  margin-top: 2px;
}

.event-times dt,
.event-times dd {
  margin: 0;
}

.event-times dt {
  color: #fff;
  font-weight: 700;
}

.event-price-list,
.event-subnotes,
.event-link-list,
.event-content-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-price-list li + li,
.event-subnotes li + li,
.event-link-list li + li {
  margin-top: 4px;
}

.event-subnotes {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
}

.event-ticket-block {
  margin-top: 10px;
}

.event-ticket-line + .event-ticket-line {
  margin-top: 12px;
}

.event-ticket-line > strong {
  display: inline-block;
  min-width: 4.5em;
  margin-bottom: 6px;
  color: #fff;
  font-size: 0.95rem;
}

.event-link-list li span {
  display: inline-block;
  min-width: 7.5em;
  color: #fff;
  font-weight: 700;
}

.event-link-list li em {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.88rem;
  font-style: normal;
}

.event-content-block {
  display: grid;
  gap: 10px;
}

.event-content-block h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 1rem;
}

.event-content-block li {
  position: relative;
  padding-left: 1em;
}

.event-content-block li::before {
  content: "＊";
  position: absolute;
  left: 0;
}

.event-overview__end {
  margin-top: 12px !important;
  text-align: right;
}

.board-item__body h3 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 0.14em;
  font-weight: 400;
  font-family: "KaiunOP", "KaiunP", sans-serif;
}

.board-item__body p {
  margin: 14px 0 0;
  font-size: 1.1rem;
  line-height: 1.9;
  font-family: "KaiunP", "Kaiun", sans-serif;
}

.board-item--blood .board-item__body {
  background: #2a211f;
  color: #fff;
  box-shadow:
    0 0 0 18px rgba(194, 18, 28, 0.2),
    0 0 80px rgba(194, 18, 28, 0.14);
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.ticket-panel,
.faq-panel,
.access-panel {
  min-height: 320px;
}

.ticket-panel .board-item__body,
.faq-panel .board-item__body,
.access-panel .board-item__body {
  width: 100%;
  min-height: 220px;
}

body.shop-preview-body {
  min-height: 100vh;
  background-color: #151015;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='table' tableValues='0 .42'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23noise)'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #181116 0%, #24151f 46%, #110d10 100%);
  background-size:
    220px 220px,
    100% 100%;
  background-blend-mode: screen, normal;
}

.shop-preview-page {
  min-height: 100vh;
  background: transparent;
}

.shop-preview-page .topbar {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.shop-preview-page main {
  font-family: "KozGo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.shop-preview {
  width: min(calc(100% - 48px), 1520px);
  margin: 148px auto 92px;
  padding: clamp(46px, 5vw, 82px) clamp(38px, 6vw, 112px) 76px;
  color: #1c171a;
  background: #f8f6f4;
  border-radius: 18px;
  box-shadow:
    0 30px 92px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.7);
}

.shop-preview__notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 38px;
  padding: 13px 18px;
  background: #fff;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(225, 6, 18, 0.14);
}

.shop-preview__notice span,
.shop-preview__label {
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.shop-preview__notice p {
  margin: 0;
  color: rgba(28, 23, 26, 0.66);
  font-size: 0.92rem;
  line-height: 1.7;
}

.shop-preview-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 35%);
  gap: clamp(42px, 5.5vw, 104px);
  align-items: center;
  padding: 0 0 clamp(42px, 5vw, 68px);
  border-bottom: 1px solid rgba(28, 23, 26, 0.16);
}

.shop-exhibitor-body .shop-preview-hero {
  display: block;
}

.shop-exhibitor-body .shop-preview-hero__heading {
  margin: 0 0 clamp(28px, 4vw, 46px);
}

.shop-exhibitor-body .shop-preview-hero__heading h1 {
  font-size: clamp(1.65rem, 3.2vw, 3rem);
  line-height: 1.25;
  overflow-wrap: normal;
}

.shop-exhibitor-body .shop-preview-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 35%);
  gap: clamp(42px, 5.5vw, 104px);
  align-items: flex-start;
}

.shop-preview__label {
  margin: 0 0 18px;
  width: fit-content;
  min-width: 150px;
  padding: 7px 18px;
  color: #fff;
  background: #d60011;
  border-radius: 999px;
  font-size: 0.86rem;
  text-align: center;
  box-shadow: 0 10px 20px rgba(159, 6, 16, 0.18);
}

.shop-preview-hero__kana,
.shop-preview-hero__en,
.shop-preview-product__kana {
  margin: 0;
  color: rgba(28, 23, 26, 0.62);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  line-height: 1.7;
}

.shop-preview-hero h1 {
  margin: 8px 0 0;
  color: #130f12;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(2.1rem, 4.8vw, 5rem);
  line-height: 1.12;
  letter-spacing: 0.04em;
  text-shadow:
    0 2px 0 rgba(225, 6, 18, 0.1),
    0 12px 24px rgba(0, 0, 0, 0.1);
  overflow-wrap: anywhere;
}

.shop-preview-hero__en {
  margin-top: 10px;
  text-transform: uppercase;
}

.shop-preview-hero__text {
  max-width: 820px;
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(28, 23, 26, 0.24);
  color: rgba(28, 23, 26, 0.84);
  font-size: 1rem;
  line-height: 1.95;
}

.shop-preview-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.shop-exhibitor-body .shop-preview-hero__categories {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.shop-exhibitor-body .shop-preview-hero__category-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 56px;
  padding: 10px 16px;
  background: #eee9eb;
  border-radius: 5px;
}

.shop-exhibitor-body .shop-preview-hero__category-row > strong {
  color: #1e171c;
  font-size: 0.86rem;
}

.shop-exhibitor-body .shop-preview-hero__category-row .shop-preview-hero__tags {
  margin-top: 0;
}

.shop-exhibitor-body
  .shop-preview-hero__category-row
  .shop-preview-hero__tags
  span {
  color: #831019;
  background: #fff;
  border: 1px solid #c90012;
  box-shadow: 0 3px 8px rgba(147, 7, 17, 0.1);
}

.shop-preview-hero__tags span,
.shop-preview-product__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 5px 12px;
  color: #251923;
  background: #e8e2e6;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}

.shop-preview-hero__visual {
  aspect-ratio: 1 / 1;
  min-width: 0;
  background: #e9e6e2;
  overflow: hidden;
  border-radius: 6px;
  box-shadow:
    0 0 0 1px rgba(28, 23, 26, 0.08),
    0 20px 42px rgba(0, 0, 0, 0.18);
}

.shop-preview-hero__visual > img,
.shop-preview-product__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-exhibitor-body .shop-preview-hero__visual > img,
.shop-exhibitor-body .shop-preview-product__image > img {
  object-fit: contain;
}

.shop-exhibitor-body .shop-preview-hero__media {
  min-width: 0;
}

.shop-exhibitor-body .shop-preview-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}

.shop-exhibitor-body .shop-preview-social-links a {
  display: block;
  width: 42px;
  height: 42px;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.shop-exhibitor-body .shop-preview-social-links a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.shop-exhibitor-body .shop-preview-social-links img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-preview__placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 28px;
  background: #eee9eb;
}

.shop-preview__placeholder img {
  width: min(82%, 360px);
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.55));
}

.shop-preview-section {
  margin-top: 48px;
  padding-top: 0;
}

.shop-preview-section h2 {
  margin: 0 0 26px;
  color: #150f13;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.7rem);
  letter-spacing: 0.1em;
  text-align: center;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.shop-preview__message p {
  margin: 0;
  color: rgba(28, 23, 26, 0.82);
  font-size: 1.02rem;
  line-height: 2;
}

.shop-preview-hero__text a,
.shop-preview-product__description a {
  color: #ff5a62;
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

.shop-preview-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 24px;
  max-width: 820px;
}

.shop-preview-links a,
.shop-preview__actions a,
.shop-preview__message a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  color: #fff;
  background: #c90012;
  box-shadow: 0 12px 22px rgba(147, 7, 17, 0.18);
  font-weight: 700;
  line-height: 1.4;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.shop-preview-links a {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 18px;
  justify-content: stretch;
  min-height: 54px;
  padding: 12px 18px;
  color: #d3000f;
  background: #eee9eb;
  box-shadow: none;
}

.shop-preview-links a:hover,
.shop-preview__actions a:hover,
.shop-preview__message a:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.shop-preview-links a span {
  color: #1e171c;
  font-size: 0.86rem;
  font-weight: 700;
}

.shop-preview-links a em {
  min-width: 0;
  color: #d3000f;
  font-style: normal;
  overflow-wrap: anywhere;
}

.shop-preview-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.shop-preview-product {
  min-width: 0;
  background: #fff;
  color: #211820;
  border-radius: 6px;
  box-shadow:
    0 0 0 1px rgba(28, 23, 26, 0.05),
    0 16px 36px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.shop-preview-product__image {
  aspect-ratio: 1 / 1;
  background: #eee9eb;
  overflow: hidden;
}

.shop-preview__placeholder--small {
  min-height: 0;
}

.shop-preview__placeholder--small img {
  width: min(72%, 240px);
}

.shop-preview-product__body {
  padding: 18px 18px 20px;
}

.shop-preview-product__body h3 {
  margin: 5px 0 0;
  color: #1f121d;
  font-size: 1.12rem;
  line-height: 1.55;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(31, 18, 29, 0.18);
  overflow-wrap: anywhere;
}

.shop-preview-product__kana {
  color: rgba(31, 18, 29, 0.58);
}

.shop-preview-product__price {
  margin: 13px 0 0;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.shop-preview-product__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
}

.shop-preview-product__description {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(31, 18, 29, 0.15);
  color: rgba(31, 18, 29, 0.76);
  font-size: 0.94rem;
  line-height: 1.8;
}

.shop-preview__muted {
  color: rgba(28, 23, 26, 0.58) !important;
}

.shop-preview__actions {
  display: flex;
  justify-content: center;
  margin-top: 54px;
}

.shop-preview__message {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px);
  background: #fff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  text-align: center;
}

.shop-preview__message h1 {
  margin: 0 0 18px;
  color: #151012;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.4;
}

.shop-preview__message a {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .shop-preview {
    width: min(calc(100% - 32px), 760px);
    margin-top: 122px;
    padding: 34px 28px 58px;
  }

  .shop-preview__notice {
    display: block;
  }

  .shop-preview__notice p {
    margin-top: 8px;
  }

  .shop-preview-hero {
    grid-template-columns: 1fr;
    padding: 0 0 34px;
  }

  .shop-exhibitor-body .shop-preview-hero__grid {
    grid-template-columns: 1fr;
  }

  .shop-preview-hero__visual {
    order: -1;
  }

  .shop-exhibitor-body .shop-preview-hero__media {
    order: -1;
  }

  .shop-preview-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .shop-preview {
    width: min(calc(100% - 24px), 480px);
    margin-top: 112px;
    padding: 26px 18px 46px;
    border-radius: 12px;
  }

  .shop-preview-hero {
    gap: 22px;
    padding: 0 0 28px;
  }

  .shop-exhibitor-body .shop-preview-hero__grid {
    gap: 22px;
  }

  .shop-preview-hero h1 {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

  .shop-preview-section {
    margin-top: 38px;
    padding-top: 26px;
  }

  .shop-preview-products {
    grid-template-columns: 1fr;
  }

  .shop-preview-product__body {
    padding: 18px;
  }

  .shop-preview-links a {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 14px 15px;
    gap: 4px;
  }

  .shop-exhibitor-body .shop-preview-hero__category-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

body.shop-list-body {
  min-height: 100vh;
  background: #171112;
}

.shop-list-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(120deg, rgba(225, 6, 18, 0.18), transparent 32%),
    linear-gradient(180deg, #26191b 0%, #171112 44%, #211719 100%);
  background-size:
    100% 24px,
    auto,
    auto;
}

.shop-list-page .topbar {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.shop-list {
  width: min(calc(100% - 80px), 1160px);
  margin: 0 auto;
  padding: 150px 0 104px;
  color: #fff;
}

.shop-list-hero {
  margin: 0 0 58px;
  text-align: center;
}

.shop-list-hero__inner {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.shop-list-hero__label {
  margin: 0;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-shadow: 0 0 16px rgba(225, 6, 18, 0.42);
}

.shop-list-hero h1 {
  margin: 0;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0;
  text-shadow:
    4px 4px 0 rgba(225, 6, 18, 0.58),
    0 0 28px rgba(225, 6, 18, 0.3);
}

.shop-list-hero__lead {
  max-width: 720px;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.9;
}

.shop-list-hero__count {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  min-height: 40px;
  margin: 8px 0 0;
  padding: 7px 18px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.055);
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 0.9rem;
  line-height: 1.3;
}

.shop-list-hero__count span {
  color: #fff;
  font-size: 1.42rem;
  text-shadow: 0 0 14px rgba(225, 6, 18, 0.38);
}

.shop-list-section {
  position: relative;
}

.shop-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.shop-list-card {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(42, 28, 33, 0.96), rgba(20, 14, 17, 0.96)),
    #1b1215;
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.055);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.shop-list-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 78px;
  height: 4px;
  background: #e10612;
  box-shadow: 0 0 18px rgba(225, 6, 18, 0.58);
}

.shop-list-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 26px 62px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(225, 6, 18, 0.16);
}

.shop-list-card__visual {
  display: grid;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: #130d10;
}

.shop-list-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.92) brightness(0.88);
  transition: transform 240ms ease;
}

.shop-list-card:hover .shop-list-card__visual img {
  transform: scale(1.035);
}

.shop-list-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 220px;
  place-items: center;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(225, 6, 18, 0.2), transparent 44%), #211719;
}

.shop-list-card__placeholder img {
  width: min(72%, 230px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.58));
}

.shop-list-card__body {
  display: grid;
  gap: 12px;
  padding: 22px 22px 24px;
}

.shop-list-card__kana,
.shop-list-card__en,
.shop-list-card__company {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.shop-list-card h2 {
  margin: 0;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(1.28rem, 2.1vw, 1.62rem);
  font-weight: 400;
  line-height: 1.36;
  letter-spacing: 0;
  text-shadow: 2px 2px 0 rgba(225, 6, 18, 0.48);
  overflow-wrap: anywhere;
}

.shop-list-card__text {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.82;
}

.shop-list-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 2px;
}

.shop-list-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 5px 10px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.075);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.35;
}

.shop-list-card__footer {
  display: grid;
  gap: 12px;
  margin-top: 6px;
  padding-top: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.shop-list-card__footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 0.86rem;
  line-height: 1.3;
}

.shop-list-card__footer p span {
  color: #e10612;
  font-size: 1.32rem;
}

.shop-list-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-list-card__links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  color: #fff;
  background: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 0.78rem;
  line-height: 1.25;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.shop-list-card__links a:hover,
.shop-list-card__links a:focus-visible {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.shop-list-empty {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(42, 28, 33, 0.96), rgba(20, 14, 17, 0.96)),
    #1b1215;
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.055);
}

.shop-list-empty h2 {
  margin: 12px 0 0;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.35;
  text-shadow: 2px 2px 0 rgba(225, 6, 18, 0.48);
}

.shop-list-empty p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.85;
}

@media (max-width: 1000px) {
  .shop-list {
    width: min(calc(100% - 48px), 860px);
    padding-top: 126px;
  }

  .shop-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .shop-list {
    width: min(calc(100% - 28px), 520px);
    padding: 104px 0 72px;
  }

  .shop-list-hero {
    margin-bottom: 38px;
  }

  .shop-list-hero__label {
    font-size: 0.94rem;
  }

  .shop-list-hero h1 {
    font-size: 2.1rem;
    line-height: 1.28;
    text-shadow:
      3px 3px 0 rgba(225, 6, 18, 0.55),
      0 0 18px rgba(225, 6, 18, 0.28);
  }

  .shop-list-hero__lead {
    font-size: 0.88rem;
    line-height: 1.78;
  }

  .shop-list-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .shop-list-card__body {
    padding: 20px 18px 22px;
  }

  .shop-list-card h2 {
    font-size: 1.32rem;
  }

  .shop-list-card__text {
    font-size: 0.88rem;
    line-height: 1.78;
  }

  .shop-list-card__footer {
    gap: 10px;
  }
}

/* Shop market page */
body.shop-market-body {
  min-height: 100vh;
  background: #160f12;
}

.shop-market-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    radial-gradient(
      circle at 16% 0%,
      rgba(225, 6, 18, 0.19),
      transparent 380px
    ),
    radial-gradient(
      circle at 86% 12%,
      rgba(84, 34, 58, 0.24),
      transparent 420px
    ),
    linear-gradient(180deg, #24181c 0%, #130e10 38%, #1d1316 100%);
  background-size:
    100% 6px,
    auto,
    auto,
    auto;
}

.shop-market-page .topbar {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.shop-market {
  width: min(calc(100% - 80px), 1180px);
  margin: 0 auto;
  padding: 146px 0 106px;
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

.shop-market-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 38px;
  align-items: end;
  margin-bottom: 28px;
  padding: clamp(34px, 5vw, 58px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(32, 20, 25, 0.96), rgba(18, 13, 15, 0.94)),
    #171012;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.shop-market-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    #e10612,
    rgba(225, 6, 18, 0.18),
    transparent
  );
  box-shadow: 0 0 22px rgba(225, 6, 18, 0.48);
}

.shop-market-hero::after {
  content: "EXHIBITOR";
  position: absolute;
  right: -0.18em;
  bottom: -0.18em;
  color: rgba(255, 255, 255, 0.026);
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.82;
  letter-spacing: 0;
  pointer-events: none;
}

.shop-market-hero__content,
.shop-market-hero__status {
  position: relative;
  z-index: 1;
}

.shop-market-hero__eyebrow {
  margin: 0 0 12px;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-shadow: 0 0 14px rgba(225, 6, 18, 0.42);
}

.shop-market-hero h1 {
  margin: 0;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0.04em;
  text-shadow:
    3px 3px 0 rgba(225, 6, 18, 0.52),
    0 0 24px rgba(225, 6, 18, 0.2);
}

.shop-market-hero__lead {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.85;
}

.shop-market-hero__status {
  display: grid;
  justify-items: end;
  gap: 5px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 4px 0 0 #e10612;
}

.shop-market-hero__status span,
.shop-market-hero__status em {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.12em;
}

.shop-market-hero__status strong {
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 0 18px rgba(225, 6, 18, 0.36);
}

.shop-market-tools {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
  padding: 22px;
  background: rgba(11, 8, 10, 0.72);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.055);
}

.shop-market-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.shop-market-tabs a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 18px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 0 0 1px rgba(225, 6, 18, 0.56),
    0 12px 26px rgba(0, 0, 0, 0.2);
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.12rem;
  letter-spacing: 0.06em;
  line-height: 1.35;
  transition:
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.shop-market-tabs a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(225, 6, 18, 0),
    rgba(225, 6, 18, 0.32),
    rgba(225, 6, 18, 0)
  );
  opacity: 0;
  transform: translateX(-65%);
  transition:
    opacity 180ms ease,
    transform 260ms ease;
}

.shop-market-tabs a span,
.shop-market-tabs a {
  z-index: 1;
}

.shop-market-tabs a:hover,
.shop-market-tabs a:focus-visible {
  color: #fff;
  transform: translateY(-1px);
  box-shadow:
    inset 0 0 0 1px rgba(225, 6, 18, 0.82),
    0 0 28px rgba(225, 6, 18, 0.18);
}

.shop-market-tabs a:hover::before,
.shop-market-tabs a:focus-visible::before {
  opacity: 1;
  transform: translateX(65%);
}

.shop-market-tabs a.is-current {
  color: #fff;
  background: linear-gradient(180deg, #d70f1b, #8f0710);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 14px 30px rgba(105, 0, 7, 0.4),
    0 0 26px rgba(225, 6, 18, 0.22);
}

.shop-market-search {
  display: grid;
  grid-template-columns: minmax(210px, 0.86fr) minmax(260px, 1.4fr) 150px;
  gap: 12px;
  align-items: end;
}

.shop-market-search label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.shop-market-search span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.shop-market-search select,
.shop-market-search input {
  width: 100%;
  min-height: 50px;
  padding: 12px 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 0;
  border-radius: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 700;
}

.shop-market-search select {
  color-scheme: dark;
}

.shop-market-search input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.shop-market-search select:focus,
.shop-market-search input:focus {
  outline: 0;
  box-shadow:
    inset 0 0 0 1px rgba(225, 6, 18, 0.78),
    0 0 0 3px rgba(225, 6, 18, 0.14);
}

.shop-market-search button {
  min-height: 50px;
  padding: 12px 22px;
  color: #fff;
  background: linear-gradient(180deg, #d70f1b, #8f0710);
  border: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 16px 32px rgba(0, 0, 0, 0.26);
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.shop-market-search button:hover,
.shop-market-search button:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.shop-market-results {
  padding: 30px;
  background: rgba(19, 13, 16, 0.72);
  box-shadow:
    0 24px 62px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.055);
}

.shop-market-results__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.shop-market-results__head p {
  margin: 0 0 7px;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.shop-market-results__head h2 {
  margin: 0;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-shadow: 2px 2px 0 rgba(225, 6, 18, 0.34);
}

.shop-market-results__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.shop-market-results__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 13px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.86rem;
  font-weight: 800;
}

.shop-market-results__meta a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.28em;
}

.shop-market-directory {
  display: grid;
  gap: 12px;
}

.shop-market-entry {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 122px;
  gap: 20px;
  align-items: center;
  min-width: 0;
  padding: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.048);
  box-shadow:
    inset 3px 0 0 rgba(225, 6, 18, 0.68),
    inset 0 0 0 1px rgba(255, 255, 255, 0.055);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.shop-market-entry::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(225, 6, 18, 0.08), transparent 42%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.shop-market-entry:hover {
  background: rgba(255, 255, 255, 0.072);
  box-shadow:
    inset 3px 0 0 #e10612,
    inset 0 0 0 1px rgba(225, 6, 18, 0.16),
    0 14px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.shop-market-entry:hover::after {
  opacity: 1;
}

.shop-market-entry__visual {
  position: relative;
  z-index: 1;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  background: #100b0d;
}

.shop-market-entry__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.03);
  transition: transform 220ms ease;
}

.shop-market-entry:hover .shop-market-entry__visual img {
  transform: scale(1.035);
}

.shop-market-entry__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 40%, rgba(225, 6, 18, 0.2), transparent 62%),
    #1b1215;
}

.shop-market-entry__placeholder img {
  width: 92%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.5));
}

.shop-market-entry__body,
.shop-market-entry__side {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.shop-market-entry__kana,
.shop-market-entry__company,
.shop-market-entry__en {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.shop-market-entry h3 {
  margin: 2px 0 0;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.02em;
  text-shadow: 2px 2px 0 rgba(225, 6, 18, 0.34);
  overflow-wrap: anywhere;
}

.shop-market-entry__text {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.72;
}

.shop-market-entry__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.shop-market-entry__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.3;
}

.shop-market-entry__side {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.shop-market-entry__side p {
  display: grid;
  justify-items: end;
  gap: 2px;
  margin: 0;
}

.shop-market-entry__side strong {
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.74rem;
  font-weight: 400;
  line-height: 1;
}

.shop-market-entry__side p span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.shop-market-entry__links {
  display: grid;
  gap: 7px;
  width: 100%;
}

.shop-market-entry__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(225, 6, 18, 0.84);
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 0.8rem;
  line-height: 1.2;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.shop-market-entry__links a:hover,
.shop-market-entry__links a:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.shop-market-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.shop-market-pagination a,
.shop-market-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 8px 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 0.92rem;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.shop-market-pagination span {
  background: #e10612;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 18px rgba(225, 6, 18, 0.28);
}

.shop-market-empty {
  display: grid;
  min-height: 180px;
  place-items: center;
  padding: 34px;
  background: rgba(255, 255, 255, 0.04);
}

.shop-market-empty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 1000px) {
  .shop-market {
    width: min(calc(100% - 48px), 860px);
    padding-top: 126px;
  }

  .shop-market-hero {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .shop-market-hero__status {
    width: min(100%, 260px);
    justify-items: start;
  }

  .shop-market-search {
    grid-template-columns: 1fr 1fr;
  }

  .shop-market-search button {
    grid-column: 1 / -1;
  }

  .shop-market-entry {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .shop-market-entry__side {
    grid-column: 2;
    justify-items: start;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }

  .shop-market-entry__side p {
    justify-items: start;
  }

  .shop-market-entry__links {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .shop-market {
    width: min(calc(100% - 28px), 520px);
    padding: 104px 0 72px;
  }

  .shop-market-hero {
    margin-bottom: 20px;
    padding: 28px 20px;
  }

  .shop-market-hero h1 {
    font-size: 2.1rem;
    line-height: 1.25;
  }

  .shop-market-hero__lead {
    font-size: 0.86rem;
    line-height: 1.78;
  }

  .shop-market-hero__status {
    width: 100%;
  }

  .shop-market-tools,
  .shop-market-results {
    padding: 16px;
  }

  .shop-market-tabs {
    gap: 8px;
  }

  .shop-market-tabs a {
    min-height: 48px;
    padding: 10px 8px;
    font-size: 0.88rem;
  }

  .shop-market-search {
    grid-template-columns: 1fr;
  }

  .shop-market-results__head {
    display: grid;
    align-items: start;
    gap: 14px;
  }

  .shop-market-results__head h2 {
    font-size: 1.36rem;
  }

  .shop-market-results__meta {
    flex-wrap: wrap;
  }

  .shop-market-entry {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .shop-market-entry__visual {
    align-self: start;
  }

  .shop-market-entry h3 {
    font-size: 1.18rem;
    line-height: 1.36;
  }

  .shop-market-entry__text {
    font-size: 0.82rem;
    line-height: 1.68;
  }

  .shop-market-entry__side {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .shop-market-entry__side p {
    display: flex;
    align-items: baseline;
    gap: 8px;
  }

  .shop-market-entry__links {
    width: 100%;
  }

  .shop-market-entry__links a {
    flex: 1 1 120px;
  }
}

/* Shop market: orchid-market inspired listing without search controls */
.shop-market-tabs {
  margin: 0 0 28px;
}

.shop-market-tabs span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 18px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 0 0 1px rgba(225, 6, 18, 0.56),
    0 12px 26px rgba(0, 0, 0, 0.2);
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.12rem;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

.shop-market-tabs span.is-current {
  color: #fff;
  background: linear-gradient(180deg, #d70f1b, #8f0710);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 14px 30px rgba(105, 0, 7, 0.4),
    0 0 26px rgba(225, 6, 18, 0.22);
}

.shop-market-results {
  margin-top: 0;
}

.shop-market-directory {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.shop-market-entry {
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  min-height: 100%;
  padding: 16px;
}

.shop-market-entry__visual {
  align-self: start;
}

.shop-market-entry h3 {
  font-size: clamp(1.12rem, 1.6vw, 1.36rem);
}

.shop-market-entry__text {
  font-size: 0.82rem;
  line-height: 1.7;
}

.shop-market-entry__tags {
  gap: 5px;
}

.shop-market-entry__tags span {
  min-height: 24px;
  padding: 4px 8px;
  font-size: 0.68rem;
}

.shop-market-entry__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.shop-market-entry__footer p {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin: 0;
}

.shop-market-entry__footer strong {
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
}

.shop-market-entry__footer p span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.shop-market-entry__footer .shop-market-entry__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  width: auto;
}

.shop-market-entry__footer .shop-market-entry__links a {
  min-height: 28px;
  padding: 6px 9px;
  font-size: 0.72rem;
}

@media (max-width: 1000px) {
  .shop-market-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-market-entry {
    grid-template-columns: 82px minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .shop-market-tabs span {
    min-height: 48px;
    padding: 10px 8px;
    font-size: 0.88rem;
  }

  .shop-market-directory {
    grid-template-columns: 1fr;
  }

  .shop-market-entry {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .shop-market-entry__footer {
    display: grid;
    justify-content: stretch;
  }

  .shop-market-entry__footer .shop-market-entry__links {
    justify-content: stretch;
  }

  .shop-market-entry__footer .shop-market-entry__links a {
    flex: 1 1 120px;
  }
}

/* Shop market simplified cards */
.shop-market-directory {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.shop-market-entry {
  display: block;
  padding: 0;
  min-height: 0;
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.055);
}

.shop-market-entry::after {
  background: linear-gradient(180deg, rgba(225, 6, 18, 0.1), transparent 50%);
}

.shop-market-entry:hover {
  background: rgba(255, 255, 255, 0.065);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(225, 6, 18, 0.1),
    inset 0 0 0 1px rgba(225, 6, 18, 0.18);
}

.shop-market-entry__visual {
  aspect-ratio: 4 / 3;
  width: 100%;
}

.shop-market-entry__body {
  display: grid;
  gap: 10px;
  padding: 16px 16px 18px;
}

.shop-market-entry h3 {
  margin: 0;
  font-size: clamp(1.12rem, 1.45vw, 1.34rem);
  line-height: 1.36;
}

.shop-market-entry__tags {
  margin: 0;
}

.shop-market-entry__tags span {
  min-height: 25px;
  padding: 4px 9px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(225, 6, 18, 0.18);
  font-size: 0.7rem;
}

@media (max-width: 1100px) {
  .shop-market-directory {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .shop-market-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .shop-market-directory {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  position: relative;
  z-index: 6;
  background: linear-gradient(180deg, #2a1012, #120d0d);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__above {
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(98, 10, 18, 0.96),
    rgba(35, 8, 10, 0.98)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__above-wrap {
  width: 100%;
  padding: 74px 24px 62px;
  box-sizing: border-box;
}

.footer__above-inner {
  width: min(100%, 1200px);
  margin: 0 auto;
}

.footer__above-box {
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.95rem;
  line-height: 1.85;
}

.footer__above-box a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.16em;
  word-break: break-all;
  transition: opacity 180ms ease;
}

.footer__above-box a:hover {
  opacity: 0.68;
}

.footer__above-box-item {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.footer__above-box-item:last-child {
  margin-bottom: 0;
}

.footer__above-box-left {
  flex: 0 0 100px;
  display: flex;
  justify-content: space-between;
  gap: 4px;
  padding-top: 2px;
  color: #f0d7d8;
  font-weight: 700;
}

.footer__above-box-left-item {
  width: 1em;
  flex: 0 0 1em;
  text-align: center;
}

.footer__above-box-right {
  flex: 1 1 auto;
  min-width: 0;
}

.footer__above-box-right-item {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer__above-box-item:last-child .footer__above-box-right-item {
  padding-bottom: 0;
  border-bottom: none;
}

.site-footer__inner {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 48px 0 10px;
  text-align: center;
}

.site-footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.site-footer__logo img {
  width: auto;
  height: 48px;
}

.site-footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 0;
  margin: 24px 0 12px;
  list-style: none;
  font-size: 0.78rem;
  color: var(--muted);
}

.site-footer__item::after {
  content: "|";
  margin-left: 24px;
  color: #fff;
}

.site-footer__item:last-child::after {
  content: none;
}

.site-footer small {
  color: rgba(255, 255, 255, 1);
  font-size: 0.7rem;
  font-weight: 400;
}

.site-footer__links a {
  color: #fff;
  transition: opacity 180ms ease;
}

.site-footer__links a:hover {
  opacity: 0.68;
}

.award-page {
  background:
    linear-gradient(180deg, rgba(42, 33, 31, 0.88), rgba(42, 33, 31, 1) 42%),
    #2a211f;
}

.award-hero {
  position: relative;
  min-height: 860px;
  padding: 220px 0 140px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(42, 33, 31, 0.08) 62%,
      rgba(42, 33, 31, 0.36) 88%,
      rgba(42, 33, 31, 0.92) 100%
    ),
    url("../images/award/award-kv-bg.webp") center top / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.award-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 50% 42%,
      rgba(255, 255, 255, 0.12),
      rgba(0, 0, 0, 0.06) 74%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.5));
  opacity: 1;
  pointer-events: none;
}

.award-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 180px;
  background: linear-gradient(
    180deg,
    rgba(42, 33, 31, 0),
    rgba(42, 33, 31, 0.96) 72%,
    #2a211f 100%
  );
  pointer-events: none;
}

.award-hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0;
  mix-blend-mode: screen;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.05) 0,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 5px
  );
  pointer-events: none;
}

.award-hero__noise::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 0,
      rgba(255, 255, 255, 0.32) 48%,
      transparent 52%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 0, 0, 0.08) 0,
      rgba(255, 0, 0, 0.08) 2px,
      transparent 2px,
      transparent 9px
    );
  opacity: 0;
  transform: translateY(-36%);
}

.award-hero__shadow {
  position: absolute;
  inset: -12% -18%;
  z-index: 1;
  background:
    radial-gradient(
      ellipse at 18% 50%,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.22) 28%,
      transparent 58%
    ),
    linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.26), transparent);
  opacity: 0;
  transform: translateX(-34%) skewX(-8deg);
  filter: blur(8px);
  pointer-events: none;
}

.award-hero__cursor-warp {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(
      calc(var(--award-cursor-x, 50vw) - 110px),
      calc(var(--award-cursor-y, 50vh) - 110px),
      0
    )
    scale(0.75);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.18) 0,
    rgba(225, 6, 18, 0.12) 18%,
    rgba(0, 0, 0, 0.14) 38%,
    transparent 70%
  );
  mix-blend-mode: overlay;
  filter: blur(12px) contrast(1.45) saturate(1.5);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 90ms linear;
}

.award-hero.is-cursor-warping .award-hero__cursor-warp {
  opacity: 0.8;
  transform: translate3d(
      calc(var(--award-cursor-x, 50vw) - 110px),
      calc(var(--award-cursor-y, 50vh) - 110px),
      0
    )
    scale(1);
}

.award-hero__inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 80px), 1120px);
  margin: 0 auto;
  text-align: center;
  font-family:
    "KaiunP", "Kaiun", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.award-hero__title {
  width: min(100%, 900px);
  margin: 0 auto;
}

.award-hero.is-award-prepared .award-hero__title {
  opacity: 0;
  transform: scale(1.02);
}

.award-hero__title img {
  display: block;
  width: 100%;
  opacity: 0.54;
  mix-blend-mode: normal;
  filter: brightness(1.24) saturate(1.8) contrast(1.08)
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.12));
}

.award-hero__title-art {
  position: relative;
  width: min(100%, 820px);
  margin: 36px auto 0;
  padding-top: 34px;
  text-align: left;
}

.award-hero__title-art img {
  display: block;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.24))
    drop-shadow(0 0 16px rgba(225, 6, 18, 0.22));
}

.award-hero__caption {
  width: min(100%, 760px);
  margin: 0 0 6px;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.12rem;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-shadow:
    0 3px 10px rgba(0, 0, 0, 0.86),
    0 0 14px rgba(225, 6, 18, 0.42);
}

.award-hero__title-art .award-hero__caption-image {
  position: absolute;
  left: 3%;
  top: 18px;
  z-index: 2;
  width: min(50%, 420px);
  margin: 0;
}

.award-hero__title-art .award-hero__title-main {
  width: 100%;
  margin: 0 auto;
}

.award-hero__title-sub {
  width: min(100%, 760px);
  margin-top: 12px;
}

.award-hero__title-art .award-hero__indie-logo {
  width: min(84%, 690px);
  margin: 22px auto 0;
}

.award-hero__lead {
  width: min(100%, 680px);
  margin: 34px auto 0;
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.9;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-shadow:
    0 3px 12px rgba(0, 0, 0, 0.82),
    0 0 18px rgba(0, 0, 0, 0.38);
}

.award-hero.is-award-prepared .award-hero__lead {
  opacity: 0;
  transform: none;
  filter: blur(6px);
}

.award-hero__lead span {
  display: block;
}

.award-hero.is-award-animated::before {
  animation: award-veil 3.4s ease-out forwards;
}

.award-hero.is-award-animated {
  animation: award-bg-creep 28s ease-in-out 2.6s infinite alternate;
}

.award-hero.is-award-animated .award-hero__noise {
  animation: award-noise-idle 9s ease-in-out 3.4s infinite;
}

.award-hero.is-award-animated .award-hero__noise::before {
  animation: none;
}

.award-hero.is-award-animated .award-hero__shadow {
  animation: award-shadow-pass 6.2s ease-in-out 5.2s infinite;
}

.award-hero.is-award-animated .award-hero__title {
  animation: award-logo-emerge 3.6s ease-out 0.45s forwards;
}

.award-hero.is-award-animated .award-hero__title img {
  animation: award-logo-pulse 10s ease-in-out 5.2s infinite;
}

.award-hero.is-award-animated .award-hero__lead {
  animation: award-lead-reveal 2.2s ease-out 2.9s forwards;
}

@keyframes award-veil {
  0% {
    opacity: 1;
  }

  65% {
    opacity: 0.34;
  }

  100% {
    opacity: 0.1;
  }
}

@keyframes award-bg-creep {
  0% {
    background-position:
      center top,
      center top;
  }

  100% {
    background-position:
      center top,
      51.5% 0.8%;
  }
}

@keyframes award-noise-idle {
  0%,
  100% {
    opacity: 0.045;
  }

  50% {
    opacity: 0.07;
  }
}

@keyframes award-logo-emerge {
  0% {
    opacity: 0;
    transform: scale(1.02);
    filter: blur(12px);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes award-logo-pulse {
  0%,
  100% {
    opacity: 0.62;
    filter: brightness(1.24) saturate(1.8) contrast(1.08)
      drop-shadow(0 8px 14px rgba(0, 0, 0, 0.12));
  }

  50% {
    opacity: 0.65;
    filter: brightness(1.32) saturate(2.02) contrast(1.12)
      drop-shadow(0 0 18px rgba(225, 6, 18, 0.22));
  }
}

@keyframes award-shadow-pass {
  0%,
  62%,
  100% {
    opacity: 0;
    transform: translateX(-34%) skewX(-8deg);
  }

  70% {
    opacity: 0.46;
  }

  86% {
    opacity: 0.18;
    transform: translateX(26%) skewX(-8deg);
  }
}

@keyframes award-lead-reveal {
  0% {
    opacity: 0;
    transform: none;
    filter: blur(6px);
  }

  100% {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

.award-section {
  padding-top: 90px;
}

.award-section__heading {
  position: relative;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 18px 0 26px;
  text-align: center;
  font-family: "KaiunOP", "KaiunP", sans-serif;
}

.award-section__heading::before,
.award-section__heading::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(100%, 720px);
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(225, 6, 18, 0.35) 18%,
    rgba(255, 255, 255, 0.42) 50%,
    rgba(225, 6, 18, 0.35) 82%,
    transparent
  );
  box-shadow: 0 0 16px rgba(225, 6, 18, 0.26);
}

.award-section__heading::before {
  top: 0;
}

.award-section__heading::after {
  bottom: 0;
}

.award-section__kicker {
  margin: 0 0 8px;
  color: #e10612;
  font-size: 1.25rem;
  letter-spacing: 0.22em;
  text-shadow:
    0 0 10px rgba(225, 6, 18, 0.45),
    0 3px 12px rgba(0, 0, 0, 0.82);
}

.award-section__heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: #fff;
  font-size: 3.6rem;
  letter-spacing: 0.12em;
  text-shadow:
    0 5px 0 rgba(0, 0, 0, 0.34),
    0 0 24px rgba(225, 6, 18, 0.26);
}

.award-section__heading h2::before,
.award-section__heading h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42px;
  height: 3px;
  background: #e10612;
  box-shadow: 0 0 14px rgba(225, 6, 18, 0.5);
}

.award-section__heading h2::before {
  right: calc(100% + 24px);
}

.award-section__heading h2::after {
  left: calc(100% + 24px);
}

.award-lineup {
  width: min(100%, 1060px);
  margin: 56px auto 0;
  display: grid;
  gap: 52px;
}

.award-card,
.award-note {
  position: relative;
  padding: 46px 54px;
  background:
    linear-gradient(180deg, rgba(14, 10, 10, 0.94), rgba(26, 18, 17, 0.9)),
    rgba(0, 0, 0, 0.72);
  color: #f5f0ea;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(194, 18, 28, 0.16),
    0 24px 70px rgba(0, 0, 0, 0.3);
}

.award-card::before,
.award-note::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.award-card__label {
  margin: 0 0 14px;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
}

.award-card h3 {
  position: relative;
  margin: 0;
  padding: 0 0 18px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 2.18rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-shadow:
    0 4px 0 rgba(0, 0, 0, 0.34),
    0 0 18px rgba(225, 6, 18, 0.24);
}

.award-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(100%, 520px);
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(225, 6, 18, 0.95),
    rgba(255, 255, 255, 0.38),
    transparent
  );
  box-shadow: 0 0 14px rgba(225, 6, 18, 0.28);
}

.award-card h3 span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.48rem;
  letter-spacing: 0.08em;
}

.award-card h4 {
  margin: 28px 0 16px;
  color: #e10612;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.award-card p,
.award-room__body p,
.award-note p {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.award-card p + p,
.award-room__body p + p,
.award-note p + p {
  margin-top: 18px;
}

.award-card h3 + p {
  margin-top: 26px;
}

.award-card h4 + p {
  margin-top: 0;
}

#award-judge-title {
  max-width: 900px;
  font-size: 2.65rem;
  line-height: 1.45;
}

.award-room {
  margin: 0 auto 120px;
  padding: 96px 0 106px;
  background:
    linear-gradient(180deg, rgba(11, 24, 25, 0.94), rgba(34, 19, 17, 0.96)),
    url("../images/award/award-kv-bg.webp") center center / cover no-repeat;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.award-room__inner {
  width: min(calc(100% - 80px), 980px);
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

.award-room__pre {
  margin: 0 0 22px;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.16em;
  text-shadow:
    0 0 12px rgba(225, 6, 18, 0.42),
    0 4px 12px rgba(0, 0, 0, 0.8);
}

.award-room h2 {
  position: relative;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 26px 0;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 2.7rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-shadow:
    0 5px 0 rgba(0, 0, 0, 0.28),
    0 0 22px rgba(255, 255, 255, 0.16),
    0 4px 18px rgba(0, 0, 0, 0.72);
}

.award-room h2::before,
.award-room h2::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(100%, 780px);
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(25, 116, 146, 0.8),
    rgba(255, 255, 255, 0.5),
    rgba(25, 116, 146, 0.8),
    transparent
  );
  box-shadow: 0 0 18px rgba(25, 116, 146, 0.38);
}

.award-room h2::before {
  top: 0;
}

.award-room h2::after {
  bottom: 0;
}

.award-room h2 span {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
}

.award-room__body {
  margin-top: 38px;
  text-align: left;
}

.award-section--closing {
  padding-top: 0;
}

.award-note {
  width: min(100%, 980px);
  margin: 48px auto 0;
}

.award-section--intro {
  padding-bottom: 60px;
}

.award-title-art,
.award-room-logo {
  width: min(100%, 980px);
  margin: 44px auto 0;
}

.award-title-art img,
.award-room-logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 16px rgba(255, 255, 255, 0.2))
    drop-shadow(0 0 22px rgba(225, 6, 18, 0.16));
}

.award-title-art--sub {
  width: min(100%, 760px);
  margin-top: 18px;
}

.award-title-art--indie {
  width: min(100%, 900px);
}

.award-room-logo {
  width: min(100%, 680px);
  padding: 18px 28px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.award-lead-panel,
.award-disclosure,
.award-action {
  width: min(100%, 980px);
  margin: 48px auto 0;
}

.award-lead-panel {
  color: #fff;
  text-align: center;
}

.award-lead-panel p {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.85;
  letter-spacing: 0.08em;
}

.award-lead-panel p + p {
  margin-top: 12px;
}

.award-switch {
  width: min(calc(100% - 80px), 1160px);
}

.award-tab-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.award-tab-list {
  width: min(100%, 1060px);
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.award-tab-button {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 30px 30px 28px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(11, 9, 9, 0.82), rgba(26, 14, 14, 0.92)),
    radial-gradient(circle at 18% 0%, rgba(225, 6, 18, 0.2), transparent 38%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.award-tab-button::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.award-tab-button::after {
  content: none;
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.28);
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
}

.award-tab-button span {
  color: #e10612;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.award-tab-button strong {
  display: block;
  margin-top: 14px;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 2rem;
  line-height: 1.35;
  letter-spacing: 0.03em;
  text-shadow:
    0 5px 0 rgba(0, 0, 0, 0.32),
    0 0 18px rgba(225, 6, 18, 0.22);
}

.award-tab-button small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.75;
}

.award-tab-button:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.34);
}

#award-tab-japan:checked ~ .award-tab-list .award-tab-button--japan,
#award-tab-indie:checked ~ .award-tab-list .award-tab-button--indie {
  background:
    linear-gradient(180deg, rgba(123, 13, 18, 0.96), rgba(32, 10, 11, 0.96)),
    radial-gradient(
      circle at 18% 0%,
      rgba(255, 255, 255, 0.18),
      transparent 38%
    );
  border-color: rgba(255, 255, 255, 0.46);
}

#award-tab-japan:checked ~ .award-tab-list .award-tab-button--japan::after,
#award-tab-indie:checked ~ .award-tab-list .award-tab-button--indie::after {
  content: none;
  color: rgba(255, 255, 255, 0.82);
}

.award-tab-panels {
  width: min(100%, 1060px);
  margin: 34px auto 0;
}

.award-tab-panel {
  display: none;
  padding: 44px 46px 52px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(13, 10, 10, 0.92), rgba(24, 15, 15, 0.94)),
    rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(225, 6, 18, 0.12),
    0 28px 80px rgba(0, 0, 0, 0.32);
}

#award-tab-japan:checked ~ .award-tab-panels .award-tab-panel--japan,
#award-tab-indie:checked ~ .award-tab-panels .award-tab-panel--indie {
  display: block;
}

.award-tab-panel .award-title-art {
  margin-top: 0;
}

.award-summary-grid {
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.award-summary-card {
  min-height: 190px;
  padding: 24px 22px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.award-summary-card h3 {
  margin: 0 0 14px;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.22rem;
  line-height: 1.4;
}

.award-summary-card p {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.78;
}

.award-page-nav {
  width: min(100%, 1060px);
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.award-page-nav__group {
  display: grid;
  grid-template-rows: auto 1fr;
  background: linear-gradient(
    180deg,
    rgba(116, 16, 19, 0.96),
    rgba(30, 9, 10, 0.95)
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.award-page-nav__main {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 18px 20px;
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  text-align: center;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.award-page-nav__main span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.3;
}

.award-page-nav__main strong {
  display: block;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.22rem;
  line-height: 1.42;
  letter-spacing: 0.03em;
}

.award-page-nav__sub {
  display: grid;
  gap: 1px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.award-page-nav__sub a,
.award-page-nav__extra a {
  display: grid;
  min-height: 46px;
  place-items: center;
  padding: 10px 14px;
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  background: rgba(10, 7, 7, 0.82);
  transition:
    background 0.22s ease,
    color 0.22s ease;
}

.award-page-nav__extra {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.award-page-nav__extra a {
  min-height: 58px;
  background: linear-gradient(
    180deg,
    rgba(32, 17, 18, 0.96),
    rgba(10, 7, 7, 0.92)
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.award-page-nav__main:hover,
.award-page-nav__sub a:hover,
.award-page-nav__extra a:hover {
  color: #fff;
  background: rgba(201, 18, 30, 0.92);
}

.award-disclosure {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(14, 10, 10, 0.95), rgba(26, 18, 17, 0.92)),
    radial-gradient(circle at 12% 0%, rgba(225, 6, 18, 0.22), transparent 32%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
}

.award-disclosure summary {
  position: relative;
  min-height: 76px;
  padding: 24px 74px 24px 30px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

.award-disclosure summary::-webkit-details-marker {
  display: none;
}

.award-disclosure summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 28px;
  color: #e10612;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 2rem;
  transform: translateY(-50%);
}

.award-disclosure[open] summary::after {
  content: "-";
}

.award-disclosure__body {
  padding: 0 30px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: #120d0d;
}

.award-disclosure__logo {
  margin: 0 -30px 28px;
  padding: 34px 30px;
  background: #050505;
}

.award-disclosure__logo img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  margin: 0 auto;
}

.award-page .award-disclosure__logo {
  margin-right: -22px;
  margin-left: -22px;
}

.award-disclosure__body h3 {
  margin: 28px 0 12px;
  color: #e10612;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
}

.award-disclosure__body p,
.award-overview-list,
.award-bullet-list,
.award-judge-list,
.award-info-card p,
.award-action p {
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.9;
}

.award-disclosure__body p {
  margin: 20px 0 0;
}

.award-disclosure__sign {
  text-align: right;
}

.award-overview-list {
  margin: 28px 0 0;
}

.award-overview-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.award-overview-list dt {
  color: #e10612;
  font-weight: 900;
}

.award-overview-list dd {
  margin: 0;
}

.award-bullet-list,
.award-judge-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.award-judge-list {
  max-height: 660px;
  overflow-y: auto;
  padding-right: 14px;
  scrollbar-color: rgba(225, 6, 18, 0.74) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.award-judge-showcase {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.award-judge-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 4px 0 12px;
}

.award-judge-marquee::before,
.award-judge-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 80px;
  pointer-events: none;
  content: "";
}

.award-judge-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #0b0b0f 0%, rgba(11, 11, 15, 0) 100%);
}

.award-judge-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #0b0b0f 0%, rgba(11, 11, 15, 0) 100%);
}

.award-judge-list--carousel {
  display: flex;
  width: max-content;
  max-height: none;
  gap: 18px;
  overflow: visible;
  padding: 0;
  animation: awardJudgeMarquee 62s linear infinite;
  scrollbar-width: none;
}

.award-judge-marquee:hover .award-judge-list--carousel {
  animation-play-state: paused;
}

.award-judge-list--carousel li {
  grid-template-columns: 112px minmax(0, 1fr);
  flex: 0 0 390px;
  min-height: 190px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
}

.award-judge-list--carousel li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.award-judge-list--carousel img {
  width: 112px;
}

.award-judge-list-button {
  justify-self: center;
  min-width: 176px;
  min-height: 46px;
  padding: 0 28px;
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  background: rgba(185, 12, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.award-judge-list-button:hover,
.award-judge-list-button:focus-visible {
  background: rgba(225, 6, 18, 0.98);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.award-judge-modal__dialog {
  width: min(calc(100% - 40px), 1040px);
}

.award-judge-list--modal {
  display: grid;
  max-height: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
  padding-right: 0;
}

.award-judge-list--modal li {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
}

@keyframes awardJudgeMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .award-judge-list--carousel {
    animation: none;
  }
}

.award-bullet-list li {
  position: relative;
  padding-left: 1.2em;
}

.award-bullet-list li::before {
  content: "";
  position: absolute;
  top: 0.85em;
  left: 0;
  width: 7px;
  height: 7px;
  background: #e10612;
  border-radius: 50%;
}

.award-info-grid {
  width: min(100%, 1060px);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.award-info-card {
  min-height: 180px;
  padding: 28px;
  color: #fff;
  background: rgba(9, 8, 8, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.award-info-card h3 {
  margin: 0 0 18px;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.25rem;
}

.award-info-card p,
.award-action p {
  margin: 0;
}

.award-info-card p + p {
  margin-top: 8px;
}

.award-action {
  padding: 30px 34px;
  color: #fff;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(147, 12, 18, 0.95),
    rgba(35, 12, 13, 0.95)
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.award-action span {
  display: inline-grid;
  min-width: 240px;
  min-height: 46px;
  place-items: center;
  margin-top: 18px;
  padding: 0 24px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.award-judge-list li {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.award-judge-list img {
  display: block;
  width: 132px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.award-judge-list img.award-judge-list__image--contain {
  object-fit: contain;
}

.award-judge-list div {
  min-width: 0;
}

.award-judge-list strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.award-judge-list span {
  display: block;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

.award-section--closing .award-note {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.award-section--closing .award-note::before {
  content: none;
}

.news-page {
  background:
    linear-gradient(180deg, rgba(42, 33, 31, 0.94), rgba(42, 33, 31, 1) 44%),
    #2a211f;
}

.news-archive,
.news-detail {
  width: min(calc(100% - 80px), 1080px);
  margin: 0 auto;
  padding: 168px 0 120px;
}

.news-archive__header,
.news-detail__label {
  margin: 0 0 48px;
  text-align: center;
}

.news-archive__header p,
.news-detail__label {
  margin: 0 0 10px;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.news-archive__header h1,
.news-detail__header h1,
.news-detail h1 {
  margin: 0;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(2rem, 5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.24;
  text-align: center;
}

.news-archive__list {
  display: grid;
  gap: 34px;
}

.news-archive__item {
  display: grid;
  grid-template-columns: minmax(220px, 34%) 1fr;
  gap: 30px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.news-archive__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.news-archive__item--text {
  grid-template-columns: 1fr;
}

.news-archive__image {
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  aspect-ratio: 16 / 9;
}

.news-archive__image img,
.news-detail__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-archive__content time,
.news-detail__header time {
  display: block;
  margin-bottom: 10px;
  color: #e10612;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.news-archive__content h2 {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2.6vw, 2.05rem);
  line-height: 1.45;
}

.news-archive__content h2 a {
  color: #fff;
  text-decoration: none;
}

.news-archive__content h2 a:hover {
  color: #e10612;
}

.news-archive__content p,
.news-detail__body p,
.news-archive__empty {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  line-height: 1.9;
}

.news-detail__inner {
  width: min(100%, 900px);
  margin: 0 auto;
}

.news-detail__header {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: left;
}

.news-detail__header h1 {
  font-family:
    "KozGo", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.55;
  text-align: left;
  letter-spacing: 0;
}

.news-detail__header time {
  margin-bottom: 14px;
}

.news-detail__image {
  margin: 0 0 42px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.news-detail__body {
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.news-detail__link {
  margin: 38px 0 0;
}

.news-detail__link a,
.news-detail__back a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
}

.news-detail__link a:hover,
.news-detail__back a:hover {
  color: #e10612;
  border-bottom-color: #e10612;
}

.news-detail__back {
  margin: 56px 0 0;
  text-align: center;
}

@media (max-width: 1366px) {
  .topbar__inner {
    width: min(calc(100% - 32px), 1400px);
    padding-left: 180px;
    gap: 16px;
  }

  .topbar-desktop {
    row-gap: 10px;
    flex-direction: column-reverse;
  }

  .brand-badge {
    left: 20px;
    width: 124px;
    height: 124px;
    top: -12px;
  }

  .topnav {
    flex: 1 1 100%;
  }

  .topnav > a,
  .topnav__item > a {
    font-size: 1rem;
    letter-spacing: 0.04em;
    padding: 0 8px;
  }

  .topbar__links {
    width: 100%;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
  }

  .topbar__meta-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
  }

  .topbar__links {
    font-size: 0.72rem;
  }

  .social-pill {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 1200px) {
  .topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 70;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .release-page {
    padding-top: 72px;
  }

  .topbar__inner {
    width: min(calc(100% - 32px), 1024px);
    min-height: 72px;
    padding: 10px 0 10px 104px;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
  }

  .brand-badge {
    position: fixed;
    top: -10px;
    left: 16px;
    width: 88px;
    height: 88px;
    margin: 0;
    z-index: 95;
  }

  .topbar-desktop {
    display: none;
  }

  .topbar-menu {
    position: relative;
    flex: 0 0 auto;
    margin-left: auto;
    display: block;
    z-index: 71;
  }

  .topbar-toggle {
    width: 52px;
    height: 52px;
    padding: 0;
    position: fixed;
    top: 10px;
    right: 16px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 10px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    list-style: none;
    align-items: center;
  }

  .topbar-toggle span {
    width: 22px;
    height: 2px;
    background: #111;
    display: block;
    transform-origin: center;
    transition:
      transform 220ms ease,
      opacity 180ms ease,
      background-color 180ms ease;
  }

  .topbar-toggle span:nth-child(2) {
    background: #b30010;
  }

  .topbar-menu.is-menu-open .topbar-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .topbar-menu.is-menu-open .topbar-toggle span:nth-child(2) {
    opacity: 0;
  }

  .topbar-menu.is-menu-open .topbar-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .topbar-menu__panel {
    position: fixed;
    inset: 0;
    width: 100vw;
    min-height: 100vh;
    margin-top: 0;
    padding: 68px 20px 16px;
    border: none;
    border-radius: 0;
    background: rgba(28, 24, 23, 0.98);
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition:
      transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 220ms ease,
      visibility 0s linear 320ms;
    z-index: 91;
  }

  .topbar-menu[open] {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    margin-left: 0;
    z-index: 90;
  }

  .topbar-menu.is-menu-open .topbar-menu__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition:
      transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 220ms ease,
      visibility 0s linear 0s;
  }

  .topbar-menu[open] .topbar-toggle {
    position: fixed;
    top: 10px;
    right: 16px;
    z-index: 92;
  }

  .topbar-menu.is-menu-open .topbar-toggle {
    position: fixed;
    top: 10px;
    right: 16px;
    z-index: 92;
  }

  .topnav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .topnav > a,
  .topnav__item > a {
    flex: none;
    font-size: 1rem;
    width: auto;
    padding: 7px 12px;
    line-height: 1.15;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
  }

  .topnav > a:last-child {
    border-right: none;
  }

  .topnav > a,
  .topnav__item {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .topnav__item {
    width: 100%;
  }

  .topnav__submenu {
    position: static;
    width: 100%;
    min-width: 0;
    padding-top: 6px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .topnav__submenu a {
    padding: 10px 12px;
    background: rgba(225, 6, 18, 0.18);
    border-color: rgba(225, 6, 18, 0.42);
    font-size: 0.95rem;
    box-shadow: none;
  }

  .topbar__links {
    align-items: stretch;
    gap: 6px;
  }

  .topbar__meta-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 0.82rem;
  }

  .topbar__socials {
    justify-content: center;
    gap: 10px;
    margin-top: 0;
  }
}

@media (max-width: 1001px) {
  .hero {
    min-height: auto;
    padding-top: 0;
  }

  .hero__inner {
    width: min(calc(100% - 32px), 960px);
    padding-top: 86px;
    padding-bottom: 70px;
  }

  .hero__lead {
    font-size: 1.35rem;
  }

  .hero__date,
  .hero__place,
  .hero__note {
    font-size: 1.25rem;
  }

  .ticket-float {
    width: 68px;
    right: 0px;
    bottom: 16px;
    top: auto;
    transform: none;
    padding: 0;
  }

  .ticket-float__text {
    writing-mode: horizontal-tb;
    margin-top: 8px;
  }

  .content-section {
    width: min(calc(100% - 32px), 960px);
    margin-bottom: 70px;
  }

  .content-section--news {
    width: min(calc(100% - 32px), 960px);
  }

  .content-section--event {
    width: 100%;
  }

  .grid-two {
    grid-template-columns: 1fr;
  }

  .blank-stack {
    min-height: 0;
    padding-top: 22px;
  }

  .blank-stack::before {
    width: 320px;
    height: 120px;
    top: -36px;
  }

  .blank-stack::after {
    width: 300px;
    height: 52px;
    top: -10px;
  }

  .blank-stack__line {
    width: 100%;
  }

  .board-item {
    min-height: 0;
    padding-top: 22px;
  }

  .board-item::before {
    width: 320px;
    height: 120px;
    top: -36px;
  }

  .board-item::after {
    width: 300px;
    height: 52px;
    top: -10px;
  }

  .board-item__body {
    width: 100%;
    padding: 24px;
  }

  .board-item__body h3 {
    font-size: 1.35rem;
  }

  .news-panel {
    min-height: 0;
  }

  .news-panel__title {
    width: min(100%, 360px);
    margin-bottom: -96px;
  }

  #about .section-title,
  #contents .section-title,
  #ticket .section-title {
    margin-bottom: -96px;
  }

  #ticket .section-title {
    margin-bottom: -118px;
  }

  .news-panel__list {
    margin-top: 0;
  }

  .news-panel__row {
    height: 44px;
  }

  .news-panel__more {
    margin-top: 24px;
    margin-left: 0;
    display: flex;
    justify-content: end;
    font-size: 1.15rem;
  }

  .event-overview {
    padding: 0 20px 28px;
  }

  .event-overview__header {
    padding: 24px 24px 16px;
  }

  .event-overview__header h2 {
    font-size: 1.6rem;
  }

  .event-overview__header p {
    right: 24px;
    bottom: 12px;
    font-size: 0.8rem;
  }

  .event-overview__row {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .event-overview__label,
  .event-overview__value {
    padding: 12px 14px;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .event-times div {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 10px;
  }

  .award-hero {
    min-height: 720px;
    padding: 110px 0 100px;
  }

  .award-hero__inner {
    width: min(calc(100% - 32px), 960px);
  }

  .award-hero__title {
    width: min(100%, 620px);
  }

  .award-hero__title-art {
    width: min(100%, 700px);
    margin-top: 30px;
    padding-top: 28px;
  }

  .award-hero__caption {
    font-size: 0.98rem;
  }

  .award-hero__title-art .award-hero__caption-image {
    left: 3%;
    top: 0;
    width: min(31%, 220px);
  }

  .award-hero__title-sub {
    width: min(100%, 620px);
  }

  .award-hero__lead {
    margin-top: 30px;
    font-size: 1.2rem;
  }

  .award-section {
    padding-top: 70px;
  }

  .award-lineup {
    gap: 36px;
    margin-top: 42px;
  }

  .award-card,
  .award-note {
    padding: 36px 34px;
  }

  .award-card h3 {
    font-size: 1.72rem;
  }

  .award-room {
    margin-bottom: 74px;
    padding: 74px 0 78px;
  }

  .award-room__inner {
    width: min(calc(100% - 32px), 900px);
  }

  .award-room h2 {
    font-size: 1.85rem;
  }

  .award-page-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .award-switch,
  .award-tab-list,
  .award-tab-panels {
    width: min(calc(100% - 32px), 960px);
  }

  .award-tab-button {
    min-height: 230px;
    padding: 26px 24px 24px;
  }

  .award-tab-button strong {
    font-size: 1.58rem;
  }

  .award-panel-head {
    gap: 24px;
  }

  .award-panel-head p {
    padding: 0 0 0 22px;
  }

  .award-keypoints div {
    min-height: 0;
  }

  .award-summary-card {
    min-height: 0;
  }

  .award-info-grid {
    grid-template-columns: 1fr;
  }

  .award-judge-list li {
    grid-template-columns: 112px 1fr;
  }

  .award-judge-list img {
    width: 112px;
  }

  .award-judge-list--carousel li {
    flex-basis: 340px;
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .award-judge-list--carousel img {
    width: 104px;
  }

  .news-archive,
  .news-detail {
    width: min(calc(100% - 32px), 960px);
    padding: 120px 0 86px;
  }

  .news-archive__item {
    grid-template-columns: minmax(180px, 36%) 1fr;
    gap: 24px;
  }

  .footer__above-wrap {
    padding: 42px 20px 32px;
  }

  .footer__above-box-item {
    gap: 18px;
    margin-bottom: 16px;
  }

  .footer__above-box-left {
    flex-basis: 72px;
  }

  .site-footer__logo {
    flex-direction: column;
    gap: 12px;
  }

  .site-footer__links {
    gap: 10px 16px;
  }

  .site-footer__item::after {
    margin-left: 16px;
  }
}

@media (max-width: 640px) {
  .topbar__inner {
    width: min(calc(100% - 60px), 640px);
    padding: 8px 0 8px 82px;
    gap: 10px;
  }

  .brand-badge {
    top: -10px;
    left: 10px;
    width: 84px;
    height: 84px;
    z-index: 95;
  }

  .topbar-toggle {
    width: 46px;
    height: 46px;
    top: 8px;
    right: 10px;
  }

  .topnav > a,
  .topnav__item > a {
    font-size: 0.96rem;
    letter-spacing: 0.04em;
    padding: 12px 10px;
  }

  .topnav__submenu a {
    font-size: 0.86rem;
    padding: 10px 8px;
  }

  .topbar-menu[open] {
    width: 100vw;
  }

  .topbar-menu.is-menu-open .topbar-menu__panel {
    padding: 90px 16px 12px;
  }

  .topbar-menu[open] .topbar-toggle,
  .topbar-menu.is-menu-open .topbar-toggle {
    top: 8px;
    right: 10px;
  }

  .ticket-float {
    width: 52px;
    right: 10px;
    bottom: 10px;
  }

  .topbar__meta-links {
    gap: 6px 10px;
    font-size: 0.72rem;
    width: 100%;
    justify-content: center;
  }

  .topbar__links {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .topbar-menu__panel .topnav {
    flex: 0 0 auto;
    align-content: start;
    gap: 10px;
  }

  .topbar-menu__panel .topnav > a,
  .topbar-menu__panel .topnav__item > a {
    font-size: 1.2rem;
    padding: 24px 8px;
    line-height: 1.1;
  }

  .topbar-menu__panel .topnav__submenu a {
    font-size: 1rem;
    padding: 14px 8px;
    line-height: 1.1;
  }

  .social-pill {
    width: 22px;
    height: 22px;
  }

  .topbar__socials {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero__inner {
    width: min(calc(100% - 60px), 640px);
    padding-top: 124px;
    padding-bottom: 0px;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__logo-panel {
    width: 100%;
    margin-top: 12px;
  }

  .hero__logo-panel img {
    margin-top: 0;
  }

  .hero__meta {
    margin-top: 18px;
  }

  .hero__date,
  .hero__place {
    font-size: 1.2rem;
    line-height: 1.5;
    white-space: nowrap;
  }

  .hero__note {
    font-size: 0.72rem;
    line-height: 1.45;
    margin-top: 2px;
  }

  .content-section {
    width: min(calc(100% - 60px), 640px);
    padding-top: 56px;
  }

  .content-section--news {
    width: min(calc(100% - 60px), 640px);
  }

  .content-section--event {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .section-title img {
    width: min(100%, 290px);
  }

  .section-title--about img {
    width: min(100%, 340px);
  }

  #about .section-title,
  #contents .section-title {
    margin-bottom: -72px;
  }

  #ticket .section-title {
    margin-bottom: -92px;
  }

  .about-text {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  div.board-list > ul {
    width: 100%;
  }

  div.board-list > ul img {
    width: min(132vw, 520px);
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .news-panel__title {
    width: min(100%, 280px);
    margin-bottom: -74px;
  }

  .news-panel__row {
    height: auto;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 10px 16px;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .news-panel__date,
  .news-panel__text {
    display: block;
  }

  .news-panel__row:not(:empty) {
    flex-direction: column;
  }

  .news-panel__row + .news-panel__row {
    margin-top: 16px;
  }

  .news-panel__more {
    margin-top: 18px;
  }

  .news-panel__more img {
    width: 86px;
  }

  .event-overview {
    padding: 0 10px 20px;
  }

  .event-overview__sheet {
    border-width: 1px;
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.5),
      0 14px 34px rgba(0, 0, 0, 0.22);
  }

  .event-overview__header {
    padding: 18px 14px 12px;
  }

  .event-overview__header h2 {
    font-size: 1.15rem;
    letter-spacing: 0.22em;
    text-indent: 0.22em;
  }

  .event-overview__header p {
    position: static;
    margin-top: 8px;
    text-align: right;
    font-size: 0.74rem;
  }

  .event-overview__row {
    grid-template-columns: 1fr;
  }

  .event-overview__label,
  .event-overview__value {
    border-right: none;
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .event-overview__label {
    justify-content: flex-start;
    padding: 10px 12px 6px;
    border-bottom: 1px solid #1a120f;
    letter-spacing: 0.08em;
  }

  .event-overview__row--top .event-overview__label {
    padding-top: 10px;
    align-items: center;
  }

  .event-overview__value {
    padding: 10px 12px 12px;
  }

  .event-times div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .event-ticket-line > strong,
  .event-link-list li span {
    min-width: 0;
  }

  .event-link-list li em {
    margin-left: 0;
    display: block;
  }

  .award-hero {
    min-height: 620px;
    padding: 84px 0 76px;
    background-position: 58% top;
  }

  .award-hero__inner {
    width: min(calc(100% - 60px), 640px);
  }

  .award-hero__title {
    width: min(100%, 300px);
  }

  .award-hero__title-art {
    width: min(100%, 330px);
    margin-top: 24px;
    padding-top: 20px;
  }

  .award-hero__caption {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
  }

  .award-hero__title-art .award-hero__caption-image {
    left: 0;
    top: 0;
    width: min(43%, 142px);
  }

  .award-hero__title-sub {
    width: min(100%, 290px);
    margin-top: 8px;
  }

  .award-hero__title-art .award-hero__indie-logo {
    width: min(88%, 290px);
    margin-top: 10px;
  }

  .award-hero__lead {
    margin-top: 22px;
    font-size: 0.88rem;
    line-height: 1.8;
    letter-spacing: 0.06em;
  }

  .award-section {
    padding-top: 52px;
  }

  .award-section__kicker {
    font-size: 0.92rem;
  }

  .award-section__heading h2 {
    font-size: 2rem;
  }

  #award-judge-title {
    font-size: 1.72rem;
  }

  .award-section__heading h2::before,
  .award-section__heading h2::after {
    width: 24px;
  }

  .award-section__heading h2::before {
    right: calc(100% + 12px);
  }

  .award-section__heading h2::after {
    left: calc(100% + 12px);
  }

  .award-lineup {
    margin-top: 32px;
    gap: 28px;
  }

  .award-card,
  .award-note {
    padding: 28px 20px;
  }

  .award-card::before,
  .award-note::before {
    inset: 7px;
  }

  .award-card__label {
    font-size: 1.35rem;
  }

  .award-card h3 {
    font-size: 1.25rem;
    line-height: 1.55;
  }

  .award-lead-panel,
  .award-title-art,
  .award-room-logo,
  .award-disclosure,
  .award-action,
  .award-page-nav,
  .award-switch,
  .award-tab-list,
  .award-tab-panels,
  .award-info-grid {
    width: min(calc(100% - 60px), 640px);
  }

  .award-tab-list {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 34px;
  }

  .award-tab-button {
    min-height: 0;
    padding: 22px 18px 46px;
  }

  .award-tab-button strong {
    font-size: 1.22rem;
  }

  .award-tab-button small {
    font-size: 0.84rem;
    line-height: 1.65;
  }

  .award-tab-button::after {
    right: 18px;
    bottom: 14px;
    font-size: 0.78rem;
  }

  .award-tab-panel {
    padding: 26px 18px 30px;
  }

  .award-summary-grid {
    margin-top: 24px;
  }

  .award-panel-head {
    gap: 18px;
  }

  .award-panel-head p {
    padding-left: 16px;
    font-size: 0.86rem;
    line-height: 1.72;
  }

  .award-keypoints {
    margin-top: 24px;
    gap: 10px;
  }

  .award-panel-body {
    margin-top: 24px;
    gap: 14px;
  }

  .award-keypoints div {
    padding: 18px 16px;
  }

  .award-keypoints dt {
    gap: 8px;
    font-size: 1rem;
  }

  .award-keypoints dt span {
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
  }

  .award-keypoints dd {
    font-size: 0.84rem;
    line-height: 1.7;
  }

  .award-summary-card {
    padding: 20px 16px;
  }

  .award-summary-card h3 {
    font-size: 1rem;
  }

  .award-summary-card p {
    font-size: 0.84rem;
    line-height: 1.7;
  }

  .award-title-art,
  .award-room-logo {
    margin-top: 28px;
  }

  .award-title-art--sub {
    margin-top: 12px;
  }

  .award-room-logo {
    padding: 12px 14px;
  }

  .award-lead-panel p {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .award-page-nav {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .award-page-nav__main {
    min-height: 76px;
    padding: 14px 16px;
  }

  .award-page-nav__main strong {
    font-size: 1rem;
  }

  .award-page-nav__extra {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .award-page-nav__sub a,
  .award-page-nav__extra a {
    min-height: 48px;
    font-size: 0.82rem;
  }

  .award-disclosure summary {
    min-height: 62px;
    padding: 18px 54px 18px 18px;
    font-size: 1.05rem;
  }

  .award-disclosure summary::after {
    right: 20px;
    font-size: 1.55rem;
  }

  .award-disclosure__body {
    padding: 0 18px 24px;
  }

  .award-disclosure__body p,
  .award-overview-list,
  .award-bullet-list,
  .award-judge-list,
  .award-info-card p,
  .award-action p {
    font-size: 0.88rem;
    line-height: 1.75;
  }

  .award-overview-list div,
  .award-judge-list li {
    grid-template-columns: 1fr;
    gap: 6px;
    justify-items: center;
    text-align: center;
  }

  .award-judge-showcase {
    gap: 18px;
    margin-top: 22px;
  }

  .award-judge-marquee::before,
  .award-judge-marquee::after {
    width: 34px;
  }

  .award-judge-list--carousel {
    gap: 12px;
    animation-duration: 54s;
  }

  .award-judge-list--carousel li {
    flex: 0 0 260px;
    min-height: 330px;
    padding: 14px;
  }

  .award-judge-list img {
    width: min(100%, 180px);
    margin-inline: auto;
  }

  .award-judge-list {
    max-height: none;
    padding-right: 10px;
  }

  .award-judge-list--carousel {
    padding-right: 0;
  }

  .award-judge-list--carousel img {
    width: min(100%, 150px);
  }

  .award-judge-list--modal {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .award-judge-list-button {
    min-width: 154px;
    min-height: 42px;
    padding: 0 22px;
    font-size: 0.84rem;
  }

  .award-info-card {
    min-height: 0;
    padding: 22px 18px;
  }

  .award-action {
    padding: 24px 18px;
  }

  .award-action span {
    min-width: 0;
    width: 100%;
  }

  .award-card h3 span {
    font-size: 0.92rem;
  }

  .award-card h4 {
    margin: 20px 0 12px;
    font-size: 0.94rem;
  }

  .award-card p,
  .award-room__body p,
  .award-note p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .award-room {
    margin-bottom: 58px;
    padding: 58px 0 62px;
  }

  .award-room__inner {
    width: min(calc(100% - 60px), 640px);
  }

  .award-room__pre {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .award-room h2 {
    font-size: 1.25rem;
    padding: 18px 0;
  }

  .award-room h2 span {
    font-size: 0.78rem;
    line-height: 1.6;
  }

  .award-card h3 + p {
    margin-top: 20px;
  }

  #award-judge-title {
    font-size: 1.18rem;
    line-height: 1.55;
  }

  .award-room__body {
    margin-top: 28px;
  }

  .news-archive,
  .news-detail {
    width: min(calc(100% - 60px), 640px);
    padding: 92px 0 64px;
  }

  .news-archive__header,
  .news-detail__label {
    margin-bottom: 34px;
  }

  .news-archive__item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 0;
  }

  .news-archive__content h2 {
    font-size: 1.28rem;
  }

  .news-detail__image {
    margin-bottom: 30px;
  }

  .news-detail__body {
    padding-top: 26px;
  }

  .footer__above-wrap {
    padding: 30px 16px 22px;
  }

  .footer__above-box {
    font-size: 0.82rem;
    line-height: 1.75;
  }

  .footer__above-box-item {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
  }

  .footer__above-box-left {
    flex-basis: auto;
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .footer__above-box-right-item {
    padding-bottom: 0;
    border-bottom: none;
  }

  .site-footer__inner {
    width: min(calc(100% - 60px), 640px);
    padding: 22px 0 12px;
  }

  .site-footer__logo img {
    height: 40px;
  }

  .site-footer__links {
    flex-direction: column;
    gap: 10px;
    margin: 18px 0 10px;
    font-size: 0.72rem;
  }

  .site-footer__item::after {
    display: none;
  }
}
@media (max-width: 570px) {
  div.board-list > ul img {
    width: min(120vw, 470px);
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 520px) {
  div.board-list > ul img {
    width: min(116vw, 430px);
  }
}

@media (max-width: 480px) {
  div.board-list > ul img {
    width: min(112vw, 390px);
  }
}

@media (max-width: 460px) {
  .hero__place {
    white-space: normal;
  }

  .hero__place-note {
    display: block;
  }
}

@media (max-width: 430px) {
  div.board-list > ul img {
    width: min(108vw, 350px);
  }
}

@media (max-width: 390px) {
  div.board-list > ul img {
    width: min(104vw, 380px);
    transform: translateX(-62%);
  }
}

.question-page {
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(88, 45, 121, 0.22),
      transparent 34%
    ),
    linear-gradient(180deg, rgba(42, 33, 31, 0.94), rgba(42, 33, 31, 1) 46%),
    #2a211f;
}

.question-archive {
  width: min(calc(100% - 80px), 1080px);
  margin: 0 auto;
  padding: 168px 0 120px;
}

.question-archive--thanks {
  min-height: 70vh;
}

.question-archive--faq-contact {
  padding-bottom: 0;
}

.question-archive__inner {
  width: min(100%, 920px);
  margin: 0 auto;
}

.question-archive__header {
  margin: 0 0 48px;
  text-align: center;
}

.question-archive__header p {
  margin: 0 0 10px;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-shadow: 0 0 14px rgba(225, 6, 18, 0.35);
}

.question-archive__header h1 {
  margin: 0;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(2.1rem, 5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.24;
  text-align: center;
  text-shadow:
    0 5px 0 rgba(0, 0, 0, 0.34),
    0 0 24px rgba(225, 6, 18, 0.26);
}

.question-intro,
.question-faq,
.question-form,
.question-thanks {
  position: relative;
  background:
    linear-gradient(180deg, rgba(14, 10, 10, 0.94), rgba(27, 18, 22, 0.92)),
    rgba(0, 0, 0, 0.72);
  color: #f5f0ea;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(194, 18, 28, 0.16),
    0 24px 70px rgba(0, 0, 0, 0.3);
}

.question-intro::before,
.question-faq::before,
.question-form::before,
.question-thanks::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.question-intro {
  padding: 38px 44px;
  margin-bottom: 36px;
}

.question-intro p,
.question-thanks p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.question-intro p + p,
.question-thanks p + p {
  margin-top: 12px;
}

.question-intro__note {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.92rem !important;
}

.question-section-title {
  margin: 0 0 28px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0.05em;
  text-shadow: 0 0 18px rgba(225, 6, 18, 0.28);
}

.question-faq {
  padding: 46px 54px;
  margin-bottom: 140px;
  scroll-margin-top: 96px;
}

.question-faq__group + .question-faq__group {
  margin-top: 38px;
}

.question-faq__group h3 {
  margin: 0 0 18px;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.question-faq__items {
  display: grid;
  gap: 14px;
}

.question-faq details {
  position: relative;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.question-faq summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 18px 58px 18px 22px;
  color: #fff;
  cursor: pointer;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.03em;
}

.question-faq summary::-webkit-details-marker {
  display: none;
}

.question-faq summary::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255, 255, 255, 0.78);
  border-bottom: 2px solid rgba(255, 255, 255, 0.78);
  transform: translateY(-62%) rotate(45deg);
  transition: transform 180ms ease;
}

.question-faq details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.question-faq summary span {
  display: inline-grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  background: rgba(225, 6, 18, 0.92);
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.05rem;
  line-height: 1;
}

.question-faq__answer {
  padding: 0 28px 24px 66px;
}

.question-faq__answer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.question-faq__answer p + p {
  margin-top: 6px;
}

.question-faq__answer strong {
  color: #e10612;
}

.question-faq__answer a {
  color: #ff6b75;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.question-faq__contact {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.question-form {
  padding: 46px 54px;
  scroll-margin-top: 96px;
}

.question-contact-form {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 70px max(40px, calc((100vw - 920px) / 2));
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(178, 80, 255, 0.26),
      transparent 34%
    ),
    radial-gradient(
      circle at 82% 78%,
      rgba(96, 29, 145, 0.34),
      transparent 36%
    ),
    linear-gradient(
      135deg,
      rgba(42, 20, 66, 0.98),
      rgba(24, 13, 39, 0.96) 48%,
      rgba(63, 13, 68, 0.94)
    );
  border: 0;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.question-contact-form::before {
  display: none;
}

.question-contact-form .question-section-title {
  text-align: left;
  text-shadow:
    0 0 22px rgba(195, 109, 255, 0.38),
    0 4px 0 rgba(0, 0, 0, 0.24);
}

.question-contact-form .question-form__lead {
  max-width: 680px;
  margin: -12px 0 34px;
  text-align: left;
}

.question-contact-form .question-form__grid,
.question-contact-form .question-form__actions,
.question-contact-form .question-form__error {
  position: relative;
  z-index: 1;
}

.question-contact-form .question-form__grid {
  padding: 34px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.question-contact-form .question-form__field label span {
  background: rgba(134, 54, 213, 0.95);
}

.question-contact-form .question-form__field label span.is-optional {
  background: rgba(255, 255, 255, 0.22);
}

.question-contact-form input,
.question-contact-form select,
.question-contact-form textarea {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(231, 204, 255, 0.28);
}

.question-contact-form input:focus,
.question-contact-form select:focus,
.question-contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(211, 141, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(176, 86, 255, 0.2);
}

.question-form__lead {
  margin: -8px 0 30px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.question-form__error {
  margin-bottom: 28px;
  padding: 16px 18px;
  color: #fff;
  background: rgba(225, 6, 18, 0.2);
  border: 1px solid rgba(225, 6, 18, 0.5);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.7;
}

.question-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 28px;
}

.question-form__field {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.question-form__field--full {
  grid-column: 1 / -1;
}

.question-form__field label {
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.question-form__field label span {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  color: #fff;
  background: rgba(225, 6, 18, 0.9);
  font-size: 0.72rem;
  line-height: 1.4;
}

.question-form__field label span.is-optional {
  background: rgba(255, 255, 255, 0.24);
}

.question-form input,
.question-form select,
.question-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.question-form select {
  appearance: none;
  color: #fff;
  padding-right: 46px;
}

.question-form select option {
  color: #000;
  background: #fff;
}

.question-form__select {
  position: relative;
}

.question-form__select::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(255, 255, 255, 0.76);
  border-bottom: 2px solid rgba(255, 255, 255, 0.76);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.question-form textarea {
  min-height: 210px;
  resize: vertical;
}

.question-form input:focus,
.question-form select:focus,
.question-form textarea:focus {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(225, 6, 18, 0.95);
  box-shadow: 0 0 0 3px rgba(225, 6, 18, 0.18);
}

.question-form__help {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.82rem;
  line-height: 1.6;
}

.question-form__actions {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.question-form__actions--double {
  gap: 16px;
  flex-wrap: wrap;
}

.question-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 56px;
  padding: 14px 28px;
  color: #fff;
  background: linear-gradient(180deg, #d81420, #8f0710);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 16px 34px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  text-align: center;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.question-button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.question-button--ghost {
  background: rgba(255, 255, 255, 0.08);
}

.question-confirm-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.question-confirm-list__item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.question-confirm-list__item:nth-child(odd) {
  padding-right: 24px;
}

.question-confirm-list__item:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.question-confirm-list__item--full {
  grid-column: 1 / -1;
  padding-right: 0 !important;
  padding-left: 0 !important;
  border-left: 0 !important;
}

.question-confirm-list h2 {
  margin: 0 0 10px;
  color: #e10612;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.question-confirm-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.8;
  word-break: break-word;
}

.question-thanks {
  padding: 52px 54px;
  text-align: center;
}

.question-thanks .question-button {
  margin-top: 34px;
}

@media (max-width: 1000px) {
  .question-archive {
    width: min(calc(100% - 32px), 960px);
    padding: 120px 0 86px;
  }

  .question-archive--faq-contact {
    padding-bottom: 0;
  }
}

@media (max-width: 640px) {
  .question-archive {
    width: min(calc(100% - 40px), 640px);
    padding: 92px 0 64px;
  }

  .question-archive--faq-contact {
    padding-bottom: 0;
  }

  .question-archive__header {
    margin-bottom: 34px;
  }

  .question-intro,
  .question-faq,
  .question-form,
  .question-thanks {
    padding: 28px 20px;
  }

  .question-intro::before,
  .question-faq::before,
  .question-form::before,
  .question-thanks::before {
    inset: 7px;
  }

  .question-intro p,
  .question-thanks p {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .question-section-title {
    margin-bottom: 22px;
  }

  .question-faq__group h3 {
    font-size: 1.12rem;
  }

  .question-faq summary {
    align-items: flex-start;
    min-height: 58px;
    padding: 16px 44px 16px 16px;
    gap: 10px;
    font-size: 0.92rem;
  }

  .question-faq summary::after {
    right: 20px;
    width: 10px;
    height: 10px;
  }

  .question-faq summary span {
    width: 28px;
    height: 28px;
    font-size: 0.95rem;
  }

  .question-faq__answer {
    padding: 0 18px 20px 54px;
  }

  .question-faq__answer p,
  .question-form__lead {
    font-size: 0.86rem;
    line-height: 1.75;
  }

  .question-faq__contact {
    margin-top: 30px;
  }

  .question-contact-form {
    padding: 46px 30px;
  }

  .question-contact-form::before {
    inset: 10px 14px;
  }

  .question-contact-form .question-section-title,
  .question-contact-form .question-form__lead {
    text-align: center;
  }

  .question-contact-form .question-form__grid {
    padding: 22px 16px;
  }

  .question-form__grid,
  .question-confirm-list {
    grid-template-columns: 1fr;
  }

  .question-confirm-list__item,
  .question-confirm-list__item:nth-child(odd),
  .question-confirm-list__item:nth-child(even) {
    padding: 20px 0;
    border-left: 0;
  }

  .question-form__actions {
    margin-top: 30px;
  }

  .question-button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 13px 18px;
    font-size: 0.98rem;
  }
}

.ticket-page {
  background:
    radial-gradient(
      circle at 12% 16%,
      rgba(118, 27, 55, 0.24),
      transparent 34%
    ),
    radial-gradient(
      circle at 88% 10%,
      rgba(79, 39, 118, 0.24),
      transparent 32%
    ),
    linear-gradient(180deg, rgba(42, 33, 31, 0.94), rgba(42, 33, 31, 1) 46%),
    #2a211f;
}

.ticket-hero,
.ticket-section {
  width: min(calc(100% - 80px), 1080px);
  margin: 0 auto;
}

.ticket-hero {
  padding: 168px 0 62px;
}

.ticket-section {
  padding: 72px 0;
}

.ticket-hero__inner {
  width: min(100%, 920px);
  margin: 0 auto;
}

.ticket-hero__header,
.ticket-section__heading {
  margin: 0 0 48px;
  text-align: center;
}

.ticket-hero__header p,
.ticket-section__heading p {
  margin: 0 0 10px;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-shadow: 0 0 14px rgba(225, 6, 18, 0.35);
}

.ticket-hero__header h1,
.ticket-section__heading h2 {
  margin: 0;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(2.1rem, 5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.24;
  text-shadow:
    0 5px 0 rgba(0, 0, 0, 0.34),
    0 0 24px rgba(225, 6, 18, 0.26);
}

.ticket-overview,
.ticket-type-card,
.ticket-purchase-block,
.ticket-special-card,
.ticket-accordion details {
  position: relative;
  background:
    linear-gradient(180deg, rgba(14, 10, 10, 0.94), rgba(27, 18, 22, 0.92)),
    rgba(0, 0, 0, 0.72);
  color: #f5f0ea;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(194, 18, 28, 0.16),
    0 24px 70px rgba(0, 0, 0, 0.3);
}

.ticket-overview::before,
.ticket-type-card::before,
.ticket-purchase-block::before,
.ticket-special-card::before,
.ticket-accordion details::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.ticket-overview {
  padding: 42px 48px;
  display: grid;
  gap: 28px;
}

.ticket-overview dl {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  align-items: start;
  margin: 0;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.ticket-overview dl:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ticket-overview dt {
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.18rem;
  letter-spacing: 0.08em;
}

.ticket-overview dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.9;
}

.ticket-overview dd span,
.ticket-overview dd small {
  display: block;
}

.ticket-overview dd small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.ticket-type-grid {
  display: grid;
  width: min(100%, 860px);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ticket-type-card {
  min-height: 92px;
  padding: 24px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

.ticket-type-card--wide {
  grid-column: 1 / -1;
}

.ticket-type-card h3 {
  margin: 0;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.22rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.ticket-type-card p {
  margin: 0;
  flex: 0 0 auto;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.9rem;
  line-height: 1.2;
  text-shadow: 0 0 14px rgba(225, 6, 18, 0.32);
}

.ticket-type-card small,
.ticket-note {
  color: rgba(255, 255, 255, 0.66);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.7;
}

.ticket-type-card small {
  display: block;
  margin-top: 14px;
}

.ticket-special-card .ticket-tax-label {
  display: inline-block;
  margin-top: 0;
  margin-left: 0.35em;
  color: currentColor;
  font-size: 0.68em;
  line-height: 1;
  vertical-align: baseline;
}

.ticket-note {
  margin: 20px 0 0;
  text-align: center;
}

.ticket-note--left {
  text-align: left;
}

.ticket-section__heading .ticket-note--type-alert {
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-shadow: none;
}

.ticket-purchase-block {
  padding: 42px 48px;
}

.ticket-purchase-block + .ticket-purchase-block {
  margin-top: 34px;
}

.ticket-purchase-block h3,
.ticket-special-card__heading {
  position: relative;
  margin: 0;
  padding-bottom: 16px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.ticket-purchase-block h3::after,
.ticket-special-card__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(100%, 480px);
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(225, 6, 18, 0.95),
    rgba(255, 255, 255, 0.38),
    transparent
  );
  box-shadow: 0 0 14px rgba(225, 6, 18, 0.28);
}

.ticket-purchase-block__lead,
.ticket-special-card__body p,
.ticket-city-grid p,
.ticket-accordion li {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.85;
}

.ticket-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.ticket-guide-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ticket-guide-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ticket-guide-card {
  min-height: 210px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.ticket-guide-card__logo {
  height: 78px;
  display: grid;
  place-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.94);
}

.ticket-guide-card__logo img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.ticket-guide-card--logo-large .ticket-guide-card__logo {
  height: 128px;
  padding: 8px;
}

.ticket-guide-card--logo-large .ticket-guide-card__logo img {
  max-height: 108px;
}

.ticket-guide-card--logo-square .ticket-guide-card__logo img {
  max-height: 124px;
}

.ticket-guide-card__text-logo {
  min-height: 78px;
  margin: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.35rem;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.04em;
}

.ticket-guide-card__code {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.ticket-guide-card__code span {
  display: block;
  white-space: nowrap;
}

.ticket-guide-grid--five .ticket-guide-card__code {
  min-height: 2.52rem;
}

.ticket-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  color: #fff;
  background: linear-gradient(180deg, #d81420, #8f0710);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 14px 28px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-align: center;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.ticket-link-button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.ticket-link-button--disabled {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.56);
  cursor: default;
  pointer-events: none;
  box-shadow: none;
}

.ticket-city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.ticket-city-grid div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.ticket-city-grid span {
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}

.ticket-city-grid p {
  margin-top: 10px;
  font-size: 0.9rem;
}

.ticket-special-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}

.ticket-special-nav a {
  min-height: 76px;
  padding: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(225, 6, 18, 0.36);
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.02rem;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.ticket-special-title__mobile {
  display: none;
}

.ticket-special-nav a:hover {
  background: rgba(225, 6, 18, 0.18);
  transform: translateY(-2px);
}

.ticket-special-card {
  padding: 42px 48px;
  scroll-margin-top: 100px;
}

.ticket-special-card__heading {
  margin: 0 0 28px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.7rem;
  line-height: 1.35;
  white-space: nowrap;
}

.ticket-special-card__content {
  display: grid;
  grid-template-columns: minmax(220px, 30%) 1fr;
  gap: 34px;
}

.ticket-special-card + .ticket-special-card {
  margin-top: 30px;
}

.ticket-special-card dl {
  margin: 0 0 22px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.ticket-special-card dt {
  color: rgba(255, 255, 255, 0.64);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ticket-special-card dd {
  margin: 6px 0 0;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.8rem;
  line-height: 1.2;
}

.ticket-special-card__body ul {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.ticket-special-card__body li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}

.ticket-special-card__body li:nth-child(1)::before,
.ticket-special-card__body li:nth-child(5)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 9px;
  background: #e10612;
  box-shadow: 0 0 12px rgba(225, 6, 18, 0.48);
}

.ticket-accordion {
  display: grid;
  gap: 18px;
}

.ticket-accordion details {
  padding: 0;
}

.ticket-accordion summary {
  position: relative;
  min-height: 72px;
  padding: 22px 64px 22px 28px;
  color: #fff;
  cursor: pointer;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.35rem;
  line-height: 1.35;
  letter-spacing: 0.05em;
  list-style: none;
}

.ticket-accordion summary::-webkit-details-marker {
  display: none;
}

.ticket-accordion summary::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-right: 2px solid rgba(255, 255, 255, 0.82);
  border-bottom: 2px solid rgba(255, 255, 255, 0.82);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 180ms ease;
}

.ticket-accordion details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.ticket-accordion ul {
  margin: 0;
  padding: 0 34px 30px 52px;
}

.ticket-accordion li {
  margin: 10px 0 0;
}

@media (max-width: 1000px) {
  .ticket-hero,
  .ticket-section {
    width: min(calc(100% - 32px), 960px);
  }

  .ticket-hero {
    padding: 120px 0 48px;
  }

  .ticket-section {
    padding: 58px 0;
  }

  .ticket-type-grid {
    width: min(100%, 760px);
  }

  .ticket-guide-grid,
  .ticket-guide-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ticket-guide-grid--five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ticket-hero,
  .ticket-section {
    width: min(calc(100% - 32px), 640px);
  }

  .ticket-hero {
    padding: 92px 0 34px;
  }

  .ticket-section {
    padding: 42px 0;
  }

  .ticket-hero__header,
  .ticket-section__heading {
    margin-bottom: 34px;
  }

  .ticket-overview,
  .ticket-purchase-block,
  .ticket-special-card {
    padding: 28px 20px;
  }

  .ticket-overview::before,
  .ticket-type-card::before,
  .ticket-purchase-block::before,
  .ticket-special-card::before,
  .ticket-accordion details::before {
    inset: 7px;
  }

  .ticket-overview dl {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ticket-overview dd,
  .ticket-purchase-block__lead,
  .ticket-special-card__body p,
  .ticket-special-card__body li,
  .ticket-accordion li {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .ticket-type-grid,
  .ticket-guide-grid,
  .ticket-guide-grid--three,
  .ticket-guide-grid--five,
  .ticket-city-grid,
  .ticket-special-nav,
  .ticket-special-card {
    grid-template-columns: 1fr;
  }

  .ticket-type-card {
    min-height: 108px;
    padding: 24px 22px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .ticket-purchase-block h3,
  .ticket-special-card__heading {
    font-size: 1.35rem;
  }

  .ticket-special-nav a,
  .ticket-special-card__heading {
    white-space: normal;
  }

  .ticket-special-title__desktop {
    display: none;
  }

  .ticket-special-title__mobile {
    display: inline;
  }

  .ticket-special-card__heading {
    margin-bottom: 22px;
  }

  .ticket-special-card__content {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ticket-guide-card {
    min-height: 190px;
  }

  .ticket-link-button {
    width: 100%;
  }

  .ticket-accordion summary {
    min-height: 62px;
    padding: 18px 48px 18px 20px;
    font-size: 1rem;
  }

  .ticket-accordion summary::after {
    right: 22px;
    width: 11px;
    height: 11px;
  }

  .ticket-accordion ul {
    padding: 0 22px 24px 34px;
  }
}

/* Ticket renewal page */
.ticket-page--renewal {
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(225, 6, 18, 0.2),
      transparent 320px
    ),
    radial-gradient(
      circle at 86% 6%,
      rgba(116, 54, 143, 0.25),
      transparent 340px
    ),
    linear-gradient(180deg, #2a211f 0%, #151012 48%, #2a211f 100%);
}

.ticket-page--renewal .ticket-renewal-hero,
.ticket-page--renewal .ticket-renewal-section {
  width: min(calc(100% - 80px), 1080px);
  margin: 0 auto;
  color: #fff;
}

.ticket-page--renewal .ticket-renewal-hero {
  padding: 168px 0 58px;
}

.ticket-page--renewal .ticket-renewal-section {
  padding: 66px 0;
}

.ticket-page--renewal .ticket-renewal-hero__inner {
  width: min(100%, 960px);
  margin: 0 auto;
}

.ticket-page--renewal .ticket-renewal-heading {
  margin: 0 0 42px;
  text-align: center;
}

.ticket-page--renewal .ticket-renewal-heading p {
  margin: 0 0 10px;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-shadow: 0 0 14px rgba(225, 6, 18, 0.35);
}

.ticket-page--renewal .ticket-renewal-heading h1,
.ticket-page--renewal .ticket-renewal-heading h2 {
  margin: 0;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: 0;
  text-shadow:
    0 5px 0 rgba(0, 0, 0, 0.34),
    0 0 24px rgba(225, 6, 18, 0.26);
}

.ticket-page--renewal .ticket-renewal-heading span,
.ticket-page--renewal .ticket-renewal-note {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.75;
}

.ticket-page--renewal .ticket-renewal-note {
  text-align: center;
}

.ticket-page--renewal .ticket-renewal-note--left {
  text-align: left;
}

.ticket-page--renewal .ticket-renewal-note span {
  display: block;
}

.ticket-page--renewal .ticket-renewal-type-stack {
  display: grid;
  gap: 18px;
  width: min(100%, 980px);
  margin: 0 auto;
}

.ticket-page--renewal .ticket-renewal-type-row {
  display: grid;
  gap: 18px;
}

.ticket-page--renewal .ticket-renewal-type-row--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ticket-page--renewal .ticket-renewal-type-row--one {
  grid-template-columns: 1fr;
}

.ticket-page--renewal .ticket-renewal-type-row--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ticket-page--renewal .ticket-renewal-type-row--three .ticket-type-card {
  min-height: 126px;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 24px 20px;
  text-align: center;
}

.ticket-page--renewal .ticket-renewal-type-row--three .ticket-type-card h3 {
  font-size: 1.04rem;
}

.ticket-page--renewal .ticket-renewal-type-row--three .ticket-type-card p {
  font-size: 1.58rem;
}

.ticket-page--renewal .ticket-renewal-overview,
.ticket-page--renewal .ticket-renewal-price-table-wrap,
.ticket-page--renewal .ticket-renewal-purchase,
.ticket-page--renewal .ticket-renewal-special-card,
.ticket-page--renewal .ticket-renewal-accordion details {
  position: relative;
  background:
    linear-gradient(180deg, rgba(14, 10, 10, 0.94), rgba(27, 18, 22, 0.92)),
    rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(194, 18, 28, 0.14),
    0 22px 64px rgba(0, 0, 0, 0.28);
}

.ticket-page--renewal .ticket-renewal-overview::before,
.ticket-page--renewal .ticket-renewal-price-table-wrap::before,
.ticket-page--renewal .ticket-renewal-purchase::before,
.ticket-page--renewal .ticket-renewal-special-card::before,
.ticket-page--renewal .ticket-renewal-accordion details::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.ticket-page--renewal .ticket-renewal-overview {
  display: grid;
  gap: 0;
  padding: 42px 48px;
}

.ticket-page--renewal .ticket-renewal-overview__row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.ticket-page--renewal .ticket-renewal-overview__row:first-child {
  padding-top: 0;
}

.ticket-page--renewal .ticket-renewal-overview__row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ticket-page--renewal .ticket-renewal-overview__row > p,
.ticket-page--renewal .ticket-renewal-schedule dt {
  margin: 0;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.ticket-page--renewal .ticket-renewal-overview__row > div {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.85;
}

.ticket-page--renewal .ticket-renewal-schedule {
  display: grid;
  gap: 10px;
}

.ticket-page--renewal .ticket-renewal-schedule dl {
  display: grid;
  grid-template-columns: 9.5em minmax(0, 1fr);
  gap: 16px;
  margin: 0;
}

.ticket-page--renewal .ticket-renewal-schedule dd {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0;
}

.ticket-page--renewal .ticket-renewal-schedule small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.ticket-page--renewal .ticket-renewal-schedule p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.ticket-page--renewal .ticket-renewal-price-table-wrap {
  width: min(100%, 820px);
  margin: 0 auto;
  overflow-x: auto;
}

.ticket-page--renewal .ticket-renewal-price-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.ticket-page--renewal .ticket-renewal-price-table th,
.ticket-page--renewal .ticket-renewal-price-table td {
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ticket-page--renewal .ticket-renewal-price-table tr:last-child th,
.ticket-page--renewal .ticket-renewal-price-table tr:last-child td {
  border-bottom: 0;
}

.ticket-page--renewal .ticket-renewal-price-table th {
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
}

.ticket-page--renewal .ticket-renewal-price-table td {
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.65rem;
  line-height: 1.25;
  text-align: right;
  white-space: nowrap;
}

.ticket-page--renewal .ticket-renewal-purchase {
  padding: 42px 48px;
}

.ticket-page--renewal .ticket-renewal-purchase + .ticket-renewal-purchase {
  margin-top: 32px;
}

.ticket-page--renewal .ticket-renewal-purchase h3,
.ticket-page--renewal .ticket-renewal-special-card h3 {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 16px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: 0.03em;
}

.ticket-page--renewal .ticket-renewal-purchase h3::after,
.ticket-page--renewal .ticket-renewal-special-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(100%, 460px);
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(225, 6, 18, 0.95),
    rgba(255, 255, 255, 0.36),
    transparent
  );
  box-shadow: 0 0 14px rgba(225, 6, 18, 0.28);
}

.ticket-page--renewal .ticket-renewal-purchase > p,
.ticket-page--renewal .ticket-renewal-special-card__body p,
.ticket-page--renewal .ticket-renewal-special-card__body li,
.ticket-page--renewal .ticket-renewal-accordion li,
.ticket-page--renewal .ticket-renewal-mini-accordion li,
.ticket-page--renewal .ticket-renewal-city-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.8;
}

.ticket-page--renewal .ticket-renewal-purchase > p {
  margin-top: 0;
}

.ticket-page--renewal .ticket-renewal-guide-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.ticket-page--renewal .ticket-renewal-guide-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ticket-page--renewal .ticket-renewal-guide-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ticket-page--renewal .ticket-renewal-guide-card {
  display: flex;
  min-height: 204px;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.ticket-page--renewal .ticket-renewal-guide-card__logo {
  display: grid;
  min-height: 88px;
  place-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.94);
}

.ticket-page--renewal .ticket-renewal-guide-card__logo img {
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
}

.ticket-page--renewal .ticket-renewal-guide-card__code {
  min-height: 2.5rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.ticket-page--renewal .ticket-renewal-guide-card__code span {
  display: block;
  white-space: nowrap;
}

.ticket-page--renewal .ticket-renewal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 16px;
  color: #fff;
  background: linear-gradient(180deg, #d81420, #8f0710);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 14px 28px rgba(0, 0, 0, 0.24);
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 0.96rem;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-align: center;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.ticket-page--renewal .ticket-renewal-button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.ticket-page--renewal .ticket-renewal-city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.ticket-page--renewal .ticket-renewal-city-grid div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.ticket-page--renewal .ticket-renewal-city-grid span {
  display: block;
  margin-bottom: 10px;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.12rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.ticket-page--renewal .ticket-renewal-special-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.ticket-page--renewal .ticket-renewal-special-nav a {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(225, 6, 18, 0.36);
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 0.96rem;
  line-height: 1.35;
  text-align: center;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.ticket-page--renewal .ticket-renewal-special-nav a:hover {
  background: rgba(225, 6, 18, 0.18);
  transform: translateY(-2px);
}

.ticket-page--renewal .ticket-special-title__mobile {
  display: none;
}

.ticket-page--renewal .ticket-renewal-special-card {
  padding: 42px 48px;
  scroll-margin-top: 100px;
}

.ticket-page--renewal
  .ticket-renewal-special-card
  + .ticket-renewal-special-card {
  margin-top: 30px;
}

.ticket-page--renewal .ticket-renewal-special-card__content {
  display: grid;
  grid-template-columns: minmax(220px, 30%) minmax(0, 1fr);
  gap: 34px;
}

.ticket-page--renewal .ticket-renewal-special-card__meta dl {
  margin: 0 0 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.ticket-page--renewal .ticket-renewal-special-price-list {
  display: grid;
  gap: 0;
  margin: 0 0 20px;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.ticket-page--renewal .ticket-renewal-special-price-list dl {
  margin: 0;
  padding: 10px 0;
  border: 0;
}

.ticket-page--renewal .ticket-renewal-special-price-list dl + dl {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ticket-page--renewal .ticket-renewal-special-card__meta dt {
  color: rgba(255, 255, 255, 0.64);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ticket-page--renewal .ticket-renewal-special-card__meta dd {
  margin: 7px 0 0;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.72rem;
  line-height: 1.2;
}

.ticket-page--renewal .ticket-renewal-special-card__meta small {
  margin-left: 0.35em;
  color: currentColor;
  font-size: 0.66em;
}

.ticket-page--renewal
  .ticket-renewal-special-card__meta
  dd.ticket-renewal-special-price-note {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.6;
}

.ticket-page--renewal .ticket-renewal-special-card__price-note {
  margin: -8px 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.6;
}

.ticket-page--renewal .ticket-renewal-text-link {
  color: #5b8cff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transition: color 180ms ease;
}

.ticket-page--renewal .ticket-renewal-text-link:hover,
.ticket-page--renewal .ticket-renewal-text-link:focus-visible {
  color: #93b4ff;
}

.ticket-page--renewal .ticket-renewal-special-card__buttons {
  display: grid;
  gap: 10px;
}

.ticket-page--renewal .ticket-renewal-special-card__body ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.ticket-page--renewal .ticket-renewal-special-card__body li {
  position: relative;
  padding-left: 20px;
}

.ticket-page--renewal .ticket-renewal-special-card__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  background: #e10612;
  box-shadow: 0 0 12px rgba(225, 6, 18, 0.42);
}

.ticket-page--renewal .ticket-renewal-mini-accordion {
  margin-top: 18px;
}

.ticket-page--renewal .ticket-renewal-mini-accordion summary {
  position: relative;
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 42px 9px 16px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(225, 6, 18, 0.28), rgba(89, 9, 17, 0.42)),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(225, 6, 18, 0.38);
  cursor: pointer;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 0.96rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  list-style: none;
}

.ticket-page--renewal
  .ticket-renewal-mini-accordion
  summary::-webkit-details-marker {
  display: none;
}

.ticket-page--renewal .ticket-renewal-mini-accordion summary::after {
  content: "";
  position: absolute;
  right: 17px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(255, 255, 255, 0.82);
  border-bottom: 2px solid rgba(255, 255, 255, 0.82);
  transform: translateY(-68%) rotate(45deg);
  transition: transform 180ms ease;
}

.ticket-page--renewal .ticket-renewal-mini-accordion[open] summary::after {
  transform: translateY(-28%) rotate(225deg);
}

.ticket-page--renewal .ticket-renewal-mini-accordion__title {
  margin: 0;
  padding: 14px 16px 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
  border-right: 1px solid rgba(225, 6, 18, 0.18);
  border-left: 1px solid rgba(225, 6, 18, 0.18);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.6;
}

.ticket-page--renewal .ticket-renewal-mini-accordion ul {
  margin: 0;
  padding: 13px 16px 4px 1.2em;
  background: rgba(0, 0, 0, 0.18);
  border-right: 1px solid rgba(225, 6, 18, 0.18);
  border-bottom: 1px solid rgba(225, 6, 18, 0.18);
  border-left: 1px solid rgba(225, 6, 18, 0.18);
}

.ticket-page--renewal .ticket-renewal-mini-accordion__title + ul {
  padding-top: 8px;
}

.ticket-page--renewal .ticket-renewal-mini-accordion li {
  margin-top: 7px;
}

.ticket-page--renewal .ticket-renewal-accordion {
  display: grid;
  gap: 18px;
  width: min(100%, 860px);
  margin: 0 auto;
}

.ticket-page--renewal .ticket-renewal-accordion details {
  padding: 0;
}

.ticket-page--renewal .ticket-renewal-accordion summary {
  position: relative;
  min-height: 72px;
  padding: 22px 64px 22px 28px;
  color: #fff;
  cursor: pointer;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.24rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
  list-style: none;
}

.ticket-page--renewal
  .ticket-renewal-accordion
  summary::-webkit-details-marker {
  display: none;
}

.ticket-page--renewal .ticket-renewal-accordion summary::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 13px;
  height: 13px;
  border-right: 2px solid rgba(255, 255, 255, 0.82);
  border-bottom: 2px solid rgba(255, 255, 255, 0.82);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 180ms ease;
}

.ticket-page--renewal .ticket-renewal-accordion details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.ticket-page--renewal .ticket-renewal-accordion ul {
  margin: 0;
  padding: 0 34px 30px 52px;
}

.ticket-page--renewal .ticket-renewal-accordion li {
  margin-top: 10px;
}

@media (max-width: 1000px) {
  .ticket-page--renewal .ticket-renewal-hero,
  .ticket-page--renewal .ticket-renewal-section {
    width: min(calc(100% - 48px), 940px);
  }

  .ticket-page--renewal .ticket-renewal-hero {
    padding: 124px 0 46px;
  }

  .ticket-page--renewal .ticket-renewal-guide-grid--four,
  .ticket-page--renewal .ticket-renewal-special-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .ticket-page--renewal .ticket-renewal-guide-grid--three,
  .ticket-page--renewal .ticket-renewal-guide-grid--four,
  .ticket-page--renewal .ticket-renewal-city-grid,
  .ticket-page--renewal .ticket-renewal-special-nav,
  .ticket-page--renewal .ticket-renewal-type-row--two,
  .ticket-page--renewal .ticket-renewal-type-row--three,
  .ticket-page--renewal .ticket-renewal-special-card__content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ticket-page--renewal .ticket-renewal-hero,
  .ticket-page--renewal .ticket-renewal-section {
    width: min(calc(100% - 32px), 640px);
  }

  .ticket-page--renewal .ticket-renewal-hero {
    padding: 92px 0 34px;
  }

  .ticket-page--renewal .ticket-renewal-section {
    padding: 42px 0;
  }

  .ticket-page--renewal .ticket-renewal-heading {
    margin-bottom: 30px;
  }

  .ticket-page--renewal .ticket-renewal-heading p {
    font-size: 1rem;
  }

  .ticket-page--renewal .ticket-renewal-overview,
  .ticket-page--renewal .ticket-renewal-purchase,
  .ticket-page--renewal .ticket-renewal-special-card {
    padding: 28px 20px;
  }

  .ticket-page--renewal .ticket-renewal-overview::before,
  .ticket-page--renewal .ticket-renewal-price-table-wrap::before,
  .ticket-page--renewal .ticket-renewal-purchase::before,
  .ticket-page--renewal .ticket-renewal-special-card::before,
  .ticket-page--renewal .ticket-renewal-accordion details::before {
    inset: 7px;
  }

  .ticket-page--renewal .ticket-renewal-overview__row,
  .ticket-page--renewal .ticket-renewal-schedule dl {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ticket-page--renewal .ticket-renewal-schedule dd {
    display: grid;
    gap: 2px;
  }

  .ticket-page--renewal .ticket-renewal-price-table {
    min-width: 480px;
  }

  .ticket-page--renewal .ticket-renewal-price-table th,
  .ticket-page--renewal .ticket-renewal-price-table td {
    padding: 16px 18px;
  }

  .ticket-page--renewal .ticket-renewal-price-table th,
  .ticket-page--renewal .ticket-renewal-purchase h3,
  .ticket-page--renewal .ticket-renewal-special-card h3,
  .ticket-page--renewal .ticket-renewal-accordion summary {
    font-size: 1.08rem;
  }

  .ticket-page--renewal .ticket-renewal-price-table td,
  .ticket-page--renewal .ticket-renewal-special-card__meta dd {
    font-size: 1.34rem;
  }

  .ticket-page--renewal .ticket-renewal-purchase > p,
  .ticket-page--renewal .ticket-renewal-special-card__body p,
  .ticket-page--renewal .ticket-renewal-special-card__body li,
  .ticket-page--renewal .ticket-renewal-accordion li,
  .ticket-page--renewal .ticket-renewal-mini-accordion li,
  .ticket-page--renewal .ticket-renewal-city-grid p {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .ticket-page--renewal .ticket-renewal-guide-card {
    min-height: 186px;
  }

  .ticket-page--renewal .ticket-renewal-button {
    width: 100%;
  }

  .ticket-page--renewal .ticket-special-title__desktop {
    display: none;
  }

  .ticket-page--renewal .ticket-special-title__mobile {
    display: inline;
  }

  .ticket-page--renewal .ticket-renewal-accordion summary {
    min-height: 62px;
    padding: 18px 48px 18px 20px;
  }

  .ticket-page--renewal .ticket-renewal-accordion summary::after {
    right: 22px;
    width: 11px;
    height: 11px;
  }

  .ticket-page--renewal .ticket-renewal-accordion ul {
    padding: 0 22px 24px 34px;
  }
}

/* Award page production reset */
.award-page .award-hero {
  min-height: 800px;
  padding: 180px 0 110px;
}

.award-page .award-hero__inner {
  width: min(calc(100% - 56px), 1440px);
}

.award-page .award-hero__title {
  width: min(100%, 680px);
  margin-bottom: 90px;
}

.award-page .award-hero__title img {
  opacity: 0.34;
}

.award-page .award-hero__title-art {
  position: relative;
  display: grid;
  width: min(100%, 1280px);
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  column-gap: 44px;
  align-items: end;
  margin-top: 0;
  padding-top: 42px;
}

.award-page .award-hero__title-art .award-hero__caption-image {
  top: 30px;
  left: 0;
  width: min(50%, 400px);
}

.award-page .award-hero__title-art .award-hero__title-main {
  width: min(100%, 620px);
  height: auto;
}

.award-page .award-hero__logo-block {
  display: grid;
  min-width: 0;
  grid-template-rows: auto auto;
  align-self: stretch;
  gap: 24px;
  justify-items: center;
  align-content: end;
  align-items: end;
}

.award-page .award-hero__logo-block--japan {
  grid-column: 1;
  grid-row: 1;
}

.award-page .award-hero__title-art .award-hero__indie-logo {
  width: min(92%, 560px);
  height: auto;
  margin-top: 0;
  transform: none;
}

.award-page .award-hero__logo-block--indie {
  grid-column: 2;
  grid-row: 1;
  transform: translateY(-52px);
}

.award-page .award-hero__button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.award-page .award-hero__button-row--indie {
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.award-page .award-hero__overview-bridge {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: end;
  justify-self: center;
  display: flex;
  justify-content: center;
  margin: 0 0 -36px;
  z-index: 4;
}

.award-page .award-overview-button {
  display: inline-grid;
  min-width: 170px;
  min-height: 46px;
  place-items: center;
  padding: 0 28px;
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  background: rgba(185, 12, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.36);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.award-page .award-overview-button:hover,
.award-page .award-overview-button:focus-visible {
  background: rgba(225, 6, 18, 0.98);
  border-color: rgba(255, 255, 255, 0.72);
  transform: translateY(-2px);
}

.award-page .award-overview-button--indie {
  position: relative;
  width: min(100%, 430px);
  min-height: 0;
  padding: 13px 18px;
  font-size: 0.78rem;
  line-height: 1.45;
  letter-spacing: 0.03em;
  text-align: left;
  white-space: normal;
  place-items: start;
  background: rgba(185, 12, 24, 0.92);
  border-color: rgba(255, 255, 255, 0.36);
}

.award-page .award-overview-button--indie span,
.award-page .award-overview-button--indie strong {
  display: block;
}

.award-page .award-overview-button--indie span {
  color: rgba(255, 255, 255, 0.74);
}

.award-page .award-overview-button--indie strong {
  margin-top: 2px;
  color: #fff;
  font-weight: 900;
}

.award-page .award-overview-button--indie:hover,
.award-page .award-overview-button--indie:focus-visible {
  background: rgba(225, 6, 18, 0.98);
  border-color: rgba(255, 255, 255, 0.72);
}

.award-page .award-vote-button {
  display: inline-grid;
  min-width: 170px;
  min-height: 46px;
  place-items: center;
  padding: 0 28px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
}

.award-overview-modal[hidden] {
  display: none;
}

.award-overview-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 34px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.award-overview-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.award-overview-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
}

.award-overview-modal__dialog {
  position: relative;
  width: min(calc(100vw - 68px), 900px);
  max-height: min(82vh, 760px);
  overflow: auto;
  padding: 48px 46px 42px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(17, 11, 12, 0.98), rgba(29, 15, 16, 0.98)),
    radial-gradient(circle at 18% 0%, rgba(225, 6, 18, 0.22), transparent 40%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.62);
  outline: none;
}

.award-overview-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  min-height: 38px;
  padding: 0 14px;
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.award-overview-modal__dialog h2 {
  margin: 0;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.25;
}

.award-overview-modal__dialog .award-section__kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  margin: 0 0 12px;
  padding: 0 12px;
  background: rgba(225, 6, 18, 0.18);
  border-left: 3px solid #e10612;
}

.award-overview-modal__body {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.award-overview-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 8px;
}

.award-overview-tab {
  min-height: 48px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.award-overview-tab.is-active {
  color: #fff;
  background: rgba(185, 12, 24, 0.9);
  border-color: rgba(255, 255, 255, 0.42);
}

.award-overview-tab:hover,
.award-overview-tab:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
}

.award-overview-tab-panel[hidden] {
  display: none;
}

.award-overview-tab-panel {
  display: grid;
  gap: 16px;
}

.award-overview-modal__body h3 {
  margin: 18px 0 0;
  padding-bottom: 10px;
  color: #e10612;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  border-bottom: 1px solid rgba(225, 6, 18, 0.32);
}

.award-overview-modal__body p {
  max-width: 74ch;
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.85;
}

.award-overview-modal__body .award-overview-list {
  margin-top: 8px;
  padding: 4px 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.award-overview-modal__body .award-overview-list div {
  grid-template-columns: 150px 1fr;
  gap: 16px;
}

body.is-award-modal-open {
  overflow: hidden;
}

.award-page .award-section {
  width: min(calc(100% - 80px), 980px);
  padding-top: 86px;
}

.award-page .award-section__heading {
  width: 100%;
  padding: 0;
  text-align: left;
}

.award-page .award-section__heading::before,
.award-page .award-section__heading::after,
.award-page .award-section__heading h2::before,
.award-page .award-section__heading h2::after {
  content: none;
}

.award-page .award-section__kicker {
  margin-bottom: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
}

.award-page .award-section__heading h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.award-page .award-lead-panel,
.award-page .award-disclosure,
.award-page .award-action,
.award-page .award-overview-list,
.award-page .award-tab-list,
.award-page .award-tab-panels {
  width: 100%;
}

.award-page .award-lead-panel {
  margin: 36px 0;
  text-align: left;
}

.award-page .award-lead-panel p {
  font-size: 1.55rem;
  line-height: 1.5;
}

.award-page .award-disclosure,
.award-page .award-tab-panel,
.award-page .award-tab-button,
.award-page .award-action,
.award-page .award-keypoints div {
  background: rgba(8, 7, 7, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.award-page .award-tab-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.award-page .award-tab-button {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 28px;
  text-align: center;
}

.award-page .award-tab-button::before,
.award-page .award-tab-button::after {
  content: none;
}

.award-page .award-tab-button__image {
  display: block;
  width: 100%;
}

.award-page .award-tab-button img {
  display: block;
  width: 100%;
  max-height: 86px;
  object-fit: contain;
}

.award-page .award-tab-button--japan img {
  max-width: 420px;
}

.award-page .award-tab-button--indie img {
  max-width: 360px;
}

.award-page .award-tab-button strong {
  margin-top: 10px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.25;
}

.award-page .award-tab-button small {
  max-width: 420px;
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.award-page .award-tab-panels {
  margin-top: 24px;
}

.award-page .award-tab-panel {
  padding: 38px;
}

.award-page .award-criteria-section {
  width: 100%;
  margin-top: 58px;
  padding-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.award-page .award-criteria-list {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.award-page .award-criteria-card {
  padding: 28px;
  background: rgba(8, 7, 7, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.award-page .award-criteria-intro {
  display: grid;
  gap: 20px;
  justify-items: center;
  margin-bottom: 24px;
  padding: 30px 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(42, 7, 10, 0.22)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.award-page .award-criteria-logo {
  width: min(100%, 580px);
  margin: 0;
}

.award-page .award-criteria-logo--indie {
  width: min(100%, 520px);
}

.award-page .award-criteria-logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.58));
}

.award-page .award-criteria-copy {
  display: grid;
  gap: 6px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  font-weight: 700;
  line-height: 1.45;
}

.award-page .award-criteria-copy p {
  margin: 0;
}

.award-page .award-criteria-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.award-page .award-criteria-actions .award-criteria-vote {
  width: 260px;
}

.award-page .award-criteria-vote {
  display: inline-grid;
  min-width: 190px;
  min-height: 48px;
  place-items: center;
  padding: 0 30px;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  background: rgba(225, 6, 18, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.22);
  cursor: not-allowed;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.award-page a.award-criteria-vote {
  color: #fff;
  text-decoration: none;
  background: #e10612;
  cursor: pointer;
}

.award-page button.award-criteria-vote:disabled {
  color: rgba(255, 255, 255, 0.48);
  background: rgba(118, 118, 128, 0.34);
  border-color: rgba(255, 255, 255, 0.14);
  cursor: not-allowed;
}

.award-page a.award-criteria-vote:hover,
.award-page a.award-criteria-vote:focus-visible {
  background: #b9000a;
  border-color: rgba(255, 255, 255, 0.64);
  transform: translateY(-2px);
}

.award-page .award-criteria-vote--nominees {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(92, 32, 128, 0.48);
  border-color: rgba(190, 116, 255, 0.38);
}

.award-page a.award-criteria-vote--nominees {
  color: #fff;
  background: #61208f;
}

.award-page a.award-criteria-vote--nominees:hover,
.award-page a.award-criteria-vote--nominees:focus-visible {
  background: #7b2cbf;
  border-color: rgba(255, 255, 255, 0.64);
}

.award-page .award-criteria-vote-note {
  margin: -10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.82rem;
  line-height: 1.6;
}

.award-page .award-criteria-meta {
  display: grid;
  width: 100%;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: left;
}

.award-page .award-criteria-meta div {
  display: grid;
  grid-template-columns: 136px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.award-page .award-criteria-meta dt {
  color: #e10612;
  font-weight: 900;
}

.award-page .award-criteria-meta dd {
  margin: 0;
}

.award-page .award-criteria-card > h3 {
  margin: 0 0 18px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.35;
}

.award-page .award-criteria-card .award-disclosure {
  width: 100%;
}

.award-page .award-panel-section + .award-panel-section {
  margin-top: 58px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.award-page .award-panel-section > .award-disclosure,
.award-page .award-panel-section > .award-action,
.award-page .award-panel-section > .award-overview-list,
.award-page .award-panel-section > .award-room__body {
  margin-top: 28px;
}

.award-page .award-panel-section > .award-action + .award-overview-list,
.award-page .award-panel-section > .award-overview-list + .award-disclosure,
.award-page .award-panel-section > .award-disclosure + .award-overview-list {
  margin-top: 28px;
}

.award-page .award-section__heading h2 span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.6;
}

.award-page .award-panel-head,
.award-page .award-panel-body,
.award-page .award-keypoints,
.award-page .award-panel-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.award-page .award-panel-head p {
  padding-left: 22px;
  font-size: 1rem;
}

.award-page .award-keypoints {
  margin-top: 0;
}

.award-page .award-keypoints div {
  padding: 22px 24px;
}

.award-page .award-keypoints dt {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.award-page .award-keypoints dd,
.award-page .award-disclosure__body p,
.award-page .award-bullet-list,
.award-page .award-action p {
  font-size: 0.96rem;
  line-height: 1.8;
}

.award-page .award-action {
  padding: 24px;
  text-align: left;
}

.award-page .award-action span {
  min-width: 0;
  margin-top: 16px;
}

.award-page .award-disclosure {
  margin-top: 0;
  border: 1px solid rgba(225, 6, 18, 0.28);
  border-radius: 10px;
  box-shadow:
    0 14px 28px rgba(160, 12, 18, 0.16),
    0 4px 12px rgba(16, 0, 0, 0.18);
  background: rgba(14, 4, 7, 0.48);
  overflow: hidden;
}

.award-page .award-disclosure:hover summary,
.award-page .award-disclosure summary:focus-visible {
  --award-disclosure-shake: 1;
}

.award-page .award-disclosure summary {
  min-height: 0;
  padding: 20px 58px 20px 22px;
  font-size: 1.1rem;
  background: linear-gradient(
    90deg,
    rgba(32, 8, 12, 0.5),
    rgba(16, 3, 5, 0.76)
  );
  border-radius: 9px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  animation: none;
}

.award-page .award-disclosure summary:hover,
.award-page .award-disclosure summary:focus-visible {
  background: linear-gradient(
    90deg,
    rgba(58, 14, 24, 0.5),
    rgba(28, 9, 14, 0.76)
  );
  box-shadow: inset 0 0 0 1px rgba(225, 6, 18, 0.35);
  animation: award-disclosure-jitter 0.5s cubic-bezier(0.2, 0.8, 0.2, 1)
    infinite;
}

@keyframes award-disclosure-jitter {
  0% {
    transform: translateX(0);
  }
  12% {
    transform: translateX(-1px);
  }
  25% {
    transform: translateX(1px);
  }
  38% {
    transform: translateX(-0.6px);
  }
  50% {
    transform: translateX(0.6px);
  }
  62% {
    transform: translateX(1px);
  }
  75% {
    transform: translateX(-0.6px);
  }
  88% {
    transform: translateX(0.6px);
  }
  100% {
    transform: translateX(0);
  }
}

.award-page .award-disclosure[open] summary {
  background: linear-gradient(
    90deg,
    rgba(54, 14, 18, 0.7),
    rgba(31, 7, 9, 0.9)
  );
}

.award-page .award-disclosure__greeting-summary {
  font-size: 1.3rem;
}

.award-page .award-disclosure__body {
  padding: 0 22px 24px;
  border-top: 1px solid rgba(225, 6, 18, 0.28);
}

.award-page .award-disclosure summary::after {
  color: #ff8791;
  text-shadow: 0 2px 8px rgba(255, 0, 34, 0.35);
}

.award-page .award-disclosure[open] summary::after {
  content: "×";
  transform: translateY(-50%);
}

.award-page .award-room {
  margin-top: 86px;
}

@media (max-width: 640px) {
  .award-page .award-hero {
    min-height: 720px;
    padding: 132px 0 82px;
  }

  .award-page .award-hero__inner,
  .award-page .award-section {
    width: min(calc(100% - 44px), 640px);
  }

  .award-page .award-hero__title {
    width: min(100%, 320px);
    margin-bottom: 28px;
  }

  .award-page .award-lead-panel p {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .award-page .award-hero__title-art {
    display: grid;
    width: min(100%, 330px);
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 22px;
  }

  .award-page .award-hero__title-art .award-hero__caption-image {
    top: 18px;
    width: min(70%, 240px);
  }

  .award-page .award-hero__title-art .award-hero__indie-logo {
    width: min(86%, 284px);
    height: auto;
    margin: 0 auto;
    transform: none;
  }

  .award-page .award-hero__logo-block {
    grid-template-rows: auto auto;
    gap: 18px;
    align-self: auto;
  }

  .award-page .award-hero__logo-block--japan {
    grid-column: 1;
    grid-row: 1;
  }

  .award-page .award-hero__title-art .award-hero__title-main {
    height: auto;
  }

  .award-page .award-hero__logo-block--indie {
    grid-column: 1;
    grid-row: 3;
    transform: none;
  }

  .award-page .award-hero__button-row {
    gap: 8px;
  }

  .award-page .award-hero__button-row--indie {
    width: 100%;
  }

  .award-page .award-overview-button {
    min-width: 144px;
    min-height: 40px;
    padding: 0 20px;
    font-size: 0.82rem;
  }

  .award-page .award-hero__overview-bridge {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    justify-self: center;
    width: 100%;
    margin: -2px 0 -20px;
  }

  .award-page .award-overview-button--indie {
    width: 100%;
    padding: 12px 14px;
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .award-page .award-vote-button {
    min-width: 144px;
    min-height: 40px;
    padding: 0 20px;
    font-size: 0.82rem;
  }

  .award-overview-modal {
    padding: 18px;
  }

  .award-overview-modal__dialog {
    width: min(calc(100vw - 36px), 640px);
    max-height: 84vh;
    padding: 44px 18px 24px;
  }

  .award-overview-modal__close {
    top: 10px;
    right: 10px;
  }

  .award-overview-modal__body {
    gap: 14px;
  }

  .award-overview-tabs {
    grid-template-columns: 1fr;
  }

  .award-overview-modal__body .award-overview-list {
    padding: 2px 14px;
  }

  .award-overview-modal__body .award-overview-list div {
    grid-template-columns: 1fr;
  }

  .award-page .award-tab-panel {
    padding: 24px 18px;
  }

  #award-tab-japan:checked ~ .award-tab-panels .award-tab-panel--japan,
  #award-tab-indie:checked ~ .award-tab-panels .award-tab-panel--indie {
    display: block;
  }

  .award-page .award-tab-panel .js-fade-in,
  .award-page .award-tab-panel .js-fade-title {
    opacity: 1;
    transform: none;
  }

  .award-page .award-tab-list {
    grid-template-columns: 1fr;
  }

  .award-page .award-tab-button,
  .award-page .award-keypoints div,
  .award-page .award-action {
    padding: 20px 16px;
  }

  .award-page .award-tab-button {
    min-height: 96px;
  }

  .award-page .award-tab-button img {
    max-height: 58px;
  }

  .award-page .award-tab-button--japan img,
  .award-page .award-tab-button--indie img {
    max-width: 280px;
  }

  .award-page .award-panel-section + .award-panel-section {
    margin-top: 42px;
    padding-top: 34px;
  }

  .award-page .award-criteria-section {
    margin-top: 42px;
    padding-top: 34px;
  }

  .award-page .award-criteria-card {
    padding: 20px 16px;
  }

  .award-page .award-criteria-intro {
    padding: 24px 18px;
  }

  .award-page .award-criteria-copy {
    font-size: 1.15rem;
  }

  .award-page .award-criteria-vote {
    width: 100%;
  }

  .award-page .award-criteria-actions {
    width: 100%;
  }

  .award-page .award-criteria-meta div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .award-page .award-criteria-card > h3 {
    font-size: 1.25rem;
  }
}

.award-panel-head {
  display: grid;
  gap: 22px;
  align-items: start;
}

.award-panel-head p {
  margin: 0;
  padding: 0 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.9;
  border-left: 3px solid rgba(225, 6, 18, 0.86);
}

.award-keypoints {
  margin: 38px 0 0;
  display: grid;
  gap: 12px;
}

.award-keypoints div {
  padding: 24px 24px 22px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.award-keypoints dt {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.22rem;
  line-height: 1.35;
}

.award-keypoints dt span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  background: #e10612;
}

.award-keypoints dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.78;
}

.award-panel-body {
  margin-top: 38px;
  display: grid;
  gap: 18px;
  align-items: start;
}

.award-panel-body .award-keypoints {
  margin: 0;
}

.award-panel-side {
  display: grid;
  gap: 18px;
}

.award-panel-side .award-action,
.award-panel-side .award-disclosure {
  width: 100%;
  margin: 0;
}

.award-panel-side .award-action {
  padding: 26px 24px;
}

.award-panel-side .award-disclosure summary {
  min-height: 64px;
  padding: 20px 58px 20px 22px;
  font-size: 1.12rem;
}

.award-panel-side .award-disclosure__body {
  padding: 0 22px 26px;
}

/* Movie page final layout */
.movie-page .movie-top-kv {
  --movie-header-height: 72px;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: calc(var(--movie-header-height) + clamp(40px, 7vh, 78px));
  padding-bottom: clamp(72px, 10vh, 118px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.movie-page .movie-top-kv__inner {
  width: min(calc(100% - 40px), 1460px);
  padding-top: 0;
}

.movie-page .movie-top-kv__logo {
  position: relative;
  left: 50%;
  display: block;
  width: min(96vw, 1420px);
  max-width: none;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.92))
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.48))
    drop-shadow(0 0 18px rgba(225, 6, 18, 0.3))
    drop-shadow(0 18px 26px rgba(0, 0, 0, 0.78));
  opacity: 0;
  transform: translateX(-50%) scale(1.02);
  backface-visibility: hidden;
  will-change: opacity, transform;
}

.movie-page .movie-top-kv.is-kv-animated .movie-top-kv__logo {
  animation: movie-kv-logo-emerge 1.8s ease-out 0.65s forwards;
}

@keyframes movie-kv-logo-emerge {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(1.04);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

.movie-page {
  background:
    radial-gradient(
      circle at 50% -120px,
      rgba(225, 6, 18, 0.18),
      transparent 360px
    ),
    linear-gradient(180deg, #2a211f 0%, #150f11 48%, #2a211f 100%);
}

.movie-page .movie-page-shell {
  min-height: 100vh;
  padding: 132px 0 96px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    radial-gradient(
      circle at 14% 10%,
      rgba(225, 6, 18, 0.22),
      transparent 330px
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(255, 255, 255, 0.08),
      transparent 300px
    );
  background-size:
    100% 4px,
    auto,
    auto;
}

.movie-page .movie-page-shell__inner {
  width: min(calc(100% - 80px), 1220px);
  margin: 0 auto;
}

.movie-page .movie-title-block {
  margin: 0 auto 52px;
  text-align: center;
}

.movie-page .movie-title-block p {
  margin: 0 0 12px;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-shadow: 0 0 14px rgba(225, 6, 18, 0.34);
}

.movie-page .movie-title-block h1 {
  margin: 0;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: 0;
  text-shadow:
    0 5px 0 rgba(0, 0, 0, 0.34),
    0 0 24px rgba(225, 6, 18, 0.28);
}

.movie-page .movie-outline-panel {
  position: relative;
  width: min(100%, 1060px);
  margin: 0 auto;
  padding: 0;
  color: #fff;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.movie-page .movie-outline-panel::before {
  content: none;
}

.movie-page .movie-outline-panel > * {
  position: relative;
  z-index: 1;
}

.movie-page .movie-outline-panel > h2 {
  width: min(100%, 820px);
  margin: 0 auto 40px;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  text-align: center;
}

.movie-page .movie-outline-panel > h2 span {
  display: block;
}

.movie-page .movie-outline-panel + .movie-outline-panel {
  margin-top: 72px;
}

.movie-page .movie-outline-panel--about {
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.68);
}

.movie-page .movie-about-text {
  width: min(100%, 880px);
  margin: 0 auto 42px;
  padding: 26px 28px 28px;
  background:
    linear-gradient(90deg, rgba(225, 6, 18, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(8, 5, 6, 0.28), rgba(16, 9, 10, 0.34)),
    url("../images/movie/movie-about-paper-texture.webp") center / cover
      no-repeat;
  border-left: 3px solid #e10612;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 34px rgba(0, 0, 0, 0.28);
}

.movie-page .movie-about-text h3 {
  margin: 0 0 18px;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(1.28rem, 2.2vw, 1.78rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  -webkit-text-stroke: 0.7px rgba(255, 255, 255, 0.82);
  paint-order: stroke fill;
  text-shadow:
    0 3px 0 rgba(0, 0, 0, 0.46),
    0 0 18px rgba(225, 6, 18, 0.3);
}

.movie-page .movie-about-text h3 span {
  display: inline-block;
  font-size: 0.72em;
  line-height: 1.3;
  white-space: nowrap;
}

.movie-page .movie-about-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.01em;
}

.movie-page .movie-about-text p + p {
  margin-top: 16px;
}

.movie-page .movie-main-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: min(100%, 880px);
  margin: 0 auto;
  padding: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.028)
    ),
    rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(225, 6, 18, 0.1);
}

.movie-page .movie-main-info__title {
  grid-column: 1 / -1;
  margin: 0;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: center;
}

.movie-page .movie-main-info__visual {
  display: grid;
  gap: 14px;
  align-content: unset;
}

.movie-page .movie-main-info__visual .movie-visual-placeholder,
.movie-page .movie-work-section__visual {
  position: relative;
  display: grid;
  min-height: 136px;
  place-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.7;
  text-align: center;
  background:
    linear-gradient(
      135deg,
      rgba(225, 6, 18, 0.16),
      rgba(255, 255, 255, 0.035) 54%
    ),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.movie-page .movie-main-info__visual .movie-visual-placeholder:first-child {
  min-height: 168px;
}

.movie-page .movie-main-info__visual .movie-visual-placeholder span,
.movie-page .movie-work-section__visual span {
  position: relative;
  z-index: 1;
  padding: 8px 12px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.22rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.movie-page .movie-main-info__text {
  align-self: center;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.9;
}

.movie-page .movie-main-info__text p {
  display: grid;
  grid-template-columns: 8.5em minmax(0, 1fr);
  gap: 8px 18px;
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.movie-page .movie-main-info__text p:first-child {
  padding-top: 0;
}

.movie-page .movie-main-info__text p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.movie-page .movie-main-info__text strong {
  display: block;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
}

.movie-page .movie-main-info__text p > span {
  min-width: 0;
}

.movie-page .movie-work-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: 30px;
  width: min(100%, 880px);
  margin: 0 auto;
  align-items: start;
}

.movie-page .movie-work-section__visual {
  min-height: 284px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.38)),
    radial-gradient(circle at center, rgba(225, 6, 18, 0.22), transparent 62%),
    rgba(255, 255, 255, 0.035);
}

.movie-page .movie-work-section__body ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.movie-page .movie-work-section__body li {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 72px;
  margin: 0;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.85;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.movie-page .movie-work-section__body li span {
  display: grid;
  min-height: 32px;
  place-items: center;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 0.98rem;
  line-height: 1;
  background: rgba(225, 6, 18, 0.76);
}

.movie-page .movie-work-section__body li p {
  margin: 0;
}

.movie-page .movie-work-section__body li strong {
  color: #fff;
}

.movie-page .movie-work-section__note {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.75;
  background:
    linear-gradient(180deg, rgba(40, 10, 14, 0.92), rgba(16, 8, 10, 0.92)),
    rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(225, 6, 18, 0.62);
}

.movie-page .movie-event-overview {
  display: grid;
  gap: 24px;
  width: min(100%, 960px);
  margin: 0 auto;
}

.movie-page .movie-event-overview__card {
  margin: 0;
  color: #fff;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 0 0 1px rgba(225, 6, 18, 0.08),
    0 18px 34px rgba(0, 0, 0, 0.18);
}

.movie-page .movie-event-overview__notice {
  margin: -8px 0 4px;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}

.movie-page .movie-event-overview__visual {
  width: min(100%, 960px);
  margin: 0 auto clamp(20px, 2.7vw, 30px);
  line-height: 0;
}

.movie-page .movie-event-overview__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.movie-page .movie-event-overview__copyright {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: left;
  overflow-wrap: anywhere;
}

.movie-page .movie-event-overview__slideshow {
  position: relative;
  display: grid;
  overflow: hidden;
  background: #050305;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
  isolation: isolate;
}

.movie-page .movie-event-overview__slideshow::before,
.movie-page .movie-event-overview__slideshow::after {
  content: "";
  grid-area: 1 / 1;
  pointer-events: none;
}

.movie-page .movie-event-overview__slideshow::before {
  z-index: 4;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0,
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px,
    transparent 5px
  );
  opacity: 0.16;
  mix-blend-mode: screen;
  animation: movie-event-slide-scan 6s linear infinite;
}

.movie-page .movie-event-overview__slideshow::after {
  z-index: 3;
  background:
    radial-gradient(
      circle at 50% 45%,
      transparent 45%,
      rgba(0, 0, 0, 0.32) 100%
    ),
    linear-gradient(
      90deg,
      rgba(225, 6, 18, 0.2),
      transparent 22%,
      transparent 78%,
      rgba(225, 6, 18, 0.16)
    );
  opacity: 0.12;
  animation: movie-event-slide-pulse 4.8s steps(1, end) infinite;
}

.movie-page .movie-event-overview__slideshow .movie-event-overview__slide {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  z-index: 1;
  transform: scale(1.045);
  transform-origin: center;
  filter: brightness(0.55) contrast(1.2) saturate(0.84);
  transition: opacity 0.45s ease-out;
  will-change: opacity, transform, filter;
}

.movie-page
  .movie-event-overview__slideshow
  .movie-event-overview__slide.is-active {
  opacity: 1;
  z-index: 2;
  animation: movie-event-slide-reveal 4.8s ease-out forwards;
}

.movie-page
  .movie-event-overview__slideshow
  .movie-event-overview__slide.is-exiting {
  opacity: 0;
  z-index: 1;
  animation: movie-event-slide-exit 0.58s ease-out forwards;
}

@keyframes movie-event-slide-reveal {
  0% {
    opacity: 0;
    transform: scale(1.08) translateX(-1.8%);
    filter: blur(2px) brightness(0.38) contrast(1.4) saturate(0.72);
  }

  7% {
    opacity: 0.92;
    transform: scale(1.065) translateX(1.2%) translateY(-0.4%);
    filter: blur(0) brightness(1.22) contrast(1.32) saturate(0.9);
  }

  12% {
    opacity: 0.34;
    transform: scale(1.06) translateX(-0.7%);
    filter: brightness(0.52) contrast(1.5) saturate(0.7);
  }

  18% {
    opacity: 1;
    transform: scale(1.05) translateX(0.35%);
    filter: brightness(0.86) contrast(1.18) saturate(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1.018);
    filter: brightness(0.9) contrast(1.1) saturate(0.96);
  }
}

@keyframes movie-event-slide-exit {
  0% {
    opacity: 1;
    transform: scale(1.018);
    filter: brightness(0.9) contrast(1.1) saturate(0.96);
  }

  100% {
    opacity: 0;
    transform: scale(1.04) translateX(1%);
    filter: blur(1px) brightness(0.42) contrast(1.32) saturate(0.74);
  }
}

@keyframes movie-event-slide-scan {
  0% {
    transform: translateY(-5%);
  }

  100% {
    transform: translateY(5%);
  }
}

@keyframes movie-event-slide-pulse {
  0%,
  100% {
    opacity: 0.1;
  }

  8% {
    opacity: 0.24;
  }

  10% {
    opacity: 0.06;
  }

  46% {
    opacity: 0.15;
  }
}

@media (prefers-reduced-motion: reduce) {
  .movie-page .movie-event-overview__slideshow::before,
  .movie-page .movie-event-overview__slideshow::after,
  .movie-page .movie-event-overview__slideshow .movie-event-overview__slide {
    animation: none;
    transition: none;
  }

  .movie-page .movie-event-overview__slideshow .movie-event-overview__slide {
    transform: none;
    filter: none;
  }
}

.movie-page .movie-event-overview__card {
  padding: clamp(24px, 3.2vw, 36px) clamp(22px, 4vw, 44px);
}

.movie-page .movie-event-overview__card h3 {
  margin: 0 0 clamp(20px, 2.7vw, 30px);
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(1.42rem, 2.2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.56);
}

.movie-page .movie-screening-title__sp-break {
  display: none;
}

.movie-page .movie-event-overview__details {
  display: grid;
  gap: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.75;
}

.movie-page .movie-event-overview__row {
  display: grid;
  grid-template-columns: 7.2em minmax(0, 1fr);
  gap: 18px;
  align-items: self-start;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.movie-page .movie-event-overview__row:first-child {
  border-top: 0;
  padding-top: 0;
}

.movie-page .movie-event-overview__row:last-child {
  padding-bottom: 0;
}

.movie-page .movie-event-overview__row dt,
.movie-page .movie-event-overview__row dd {
  margin: 0;
}

.movie-page .movie-event-overview__row dt {
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  /* white-space: nowrap; */
}

.movie-page .movie-event-overview__row dd {
  min-width: 0;
  overflow-wrap: break-word;
}

.movie-page .movie-event-overview__row dd span {
  display: block;
}

.movie-page .movie-event-overview__row dd p span {
  font-weight: 900;
  font-size: larger;
  text-shadow: 0 0 10px rgba(225, 6, 18, 0.72);
}

.movie-page .movie-stage-overview {
  display: grid;
  grid-template-columns: minmax(230px, 0.36fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 42px);
  align-items: center;
}

.movie-page .movie-stage-overview__visual {
  position: relative;
  display: grid;
  min-height: 250px;
  aspect-ratio: 4 / 5;
  place-items: center;
  overflow: hidden;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(1.08rem, 1.8vw, 1.38rem);
  line-height: 1.35;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.46)),
    radial-gradient(circle at 50% 38%, rgba(225, 6, 18, 0.28), transparent 62%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 0 0 1px rgba(225, 6, 18, 0.14),
    0 18px 34px rgba(0, 0, 0, 0.24);
}

.movie-page .movie-stage-overview__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055) 0,
    rgba(255, 255, 255, 0.055) 1px,
    transparent 1px,
    transparent 5px
  );
  opacity: 0.28;
  pointer-events: none;
}

.movie-page .movie-stage-overview__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-page .movie-stage-overview__visual span {
  position: relative;
  z-index: 1;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.72),
    0 0 14px rgba(225, 6, 18, 0.28);
}

.movie-page .movie-stage-overview__details {
  align-self: center;
}

@media (max-width: 1000px) {
  .movie-page .movie-page-shell {
    padding: 112px 0 78px;
  }

  .movie-page .movie-page-shell__inner {
    width: min(calc(100% - 48px), 920px);
  }

  .movie-page .movie-title-block h1 {
    font-size: 2.7rem;
  }

  .movie-page .movie-outline-panel {
    padding: 0;
  }

  .movie-page .movie-main-info,
  .movie-page .movie-work-section {
    width: min(100%, 760px);
    grid-template-columns: 1fr;
  }

  .movie-page .movie-main-info__visual {
    grid-template-columns: 1fr;
  }

  .movie-page .movie-work-section {
    margin-top: 0;
  }

  .movie-page .movie-work-section__visual {
    min-height: 220px;
  }

  .movie-page .movie-stage-overview {
    grid-template-columns: minmax(200px, 0.42fr) minmax(0, 1fr);
    gap: 26px;
  }

  .movie-page .movie-stage-overview__visual {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .movie-page .movie-top-kv {
    min-height: 100vh;
    min-height: 100svh;
    padding: calc(var(--movie-header-height) + clamp(8px, 3vh, 20px)) 16px
      clamp(52px, 8vh, 68px);
  }

  .movie-page .movie-top-kv__inner {
    width: min(100%, 560px);
  }

  .movie-page .movie-top-kv__logo {
    width: min(100%, 540px);
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.9))
      drop-shadow(0 0 8px rgba(255, 255, 255, 0.42))
      drop-shadow(0 0 14px rgba(225, 6, 18, 0.28))
      drop-shadow(0 12px 18px rgba(0, 0, 0, 0.78));
  }

  .movie-page .movie-page-shell {
    padding: 92px 0 58px;
  }

  .movie-page .movie-page-shell__inner {
    width: min(calc(100% - 32px), 600px);
  }

  .movie-page .movie-title-block {
    margin-bottom: 34px;
  }

  .movie-page .movie-title-block p {
    font-size: 1.05rem;
  }

  .movie-page .movie-title-block h1 {
    font-size: 1.65rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .movie-page .movie-outline-panel {
    padding: 0;
  }

  .movie-page .movie-outline-panel--about {
    padding-bottom: 42px;
  }

  .movie-page .movie-outline-panel::before {
    content: none;
  }

  .movie-page .movie-outline-panel > h2 {
    margin-bottom: 28px;
    font-size: 1.26rem;
    line-height: 1.5;
    text-align: center;
  }

  .movie-page .movie-about-text {
    margin-bottom: 30px;
    padding: 20px 18px 22px;
  }

  .movie-page .movie-about-text h3 {
    margin-bottom: 14px;
    font-size: 1.16rem;
    line-height: 1.5;
  }

  .movie-page .movie-about-text h3 span {
    font-size: 0.56em;
  }

  .movie-page .movie-about-text p {
    font-size: 0.9rem;
    line-height: 1.85;
  }

  .movie-page .movie-main-info {
    gap: 18px;
    padding: 16px;
  }

  .movie-page .movie-main-info__title {
    font-size: 1.6rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .movie-page .movie-main-info__visual {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .movie-page .movie-main-info__visual .movie-visual-placeholder,
  .movie-page .movie-work-section__visual {
    min-height: 132px;
  }

  .movie-page .movie-main-info__text {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .movie-page .movie-main-info__text p {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 12px 0;
  }

  .movie-page .movie-main-info__text strong {
    font-size: 1rem;
    white-space: normal;
  }

  .movie-page .movie-main-info__text p > span {
    overflow-wrap: anywhere;
  }

  .movie-page .movie-work-section {
    gap: 20px;
    margin-top: 0;
  }

  .movie-page .movie-work-section__visual {
    min-height: 180px;
  }

  .movie-page .movie-work-section__body li {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 14px;
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .movie-page .movie-work-section__body li span {
    width: 74px;
  }

  .movie-page .movie-event-overview {
    gap: 18px;
  }

  .movie-page .movie-event-overview__card {
    padding: 16px 8px;
  }

  .movie-page .movie-event-overview__notice {
    margin: -8px 0 2px;
    font-size: 0.78rem;
    line-height: 1.7;
  }

  .movie-page .movie-event-overview__card h3 {
    margin-bottom: 18px;
    font-size: 1.18rem;
    line-height: 1.45;
  }

  .movie-page .movie-event-overview__details {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .movie-page .movie-event-overview__row {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 12px 0;
  }

  .movie-page .movie-event-overview__row dt {
    font-size: 0.96rem;
    white-space: normal;
  }

  .movie-page .movie-stage-overview {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .movie-page .movie-stage-overview__visual {
    width: min(100%, 260px);
    min-height: 220px;
    justify-self: center;
  }

  .movie-page .movie-work-section__note {
    padding: 15px 16px;
    font-size: 0.86rem;
  }
}

@media (max-width: 500px) {
  .movie-page .movie-screening-title__sp-break {
    display: block;
  }
}

/* Autograph session page */
.autograph-page {
  background:
    radial-gradient(
      circle at 50% -120px,
      rgba(116, 54, 143, 0.22),
      transparent 360px
    ),
    linear-gradient(180deg, #2a211f 0%, #151012 48%, #2a211f 100%);
}

.autograph-page .autograph-page-shell {
  min-height: 100vh;
  padding: 148px 0 120px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    radial-gradient(
      circle at 14% 10%,
      rgba(225, 6, 18, 0.2),
      transparent 330px
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(116, 54, 143, 0.18),
      transparent 300px
    );
  background-size:
    100% 4px,
    auto,
    auto;
}

.autograph-page .autograph-page-shell__inner {
  width: min(calc(100% - 80px), 1220px);
  margin: 0 auto;
}

.autograph-page .autograph-title-block {
  margin: 0 auto 68px;
  text-align: center;
}

.autograph-page .autograph-title-block p {
  margin: 0 0 12px;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-shadow: 0 0 14px rgba(225, 6, 18, 0.34);
}

.autograph-page .autograph-title-block h1 {
  margin: 0;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: 0;
  text-shadow:
    0 5px 0 rgba(0, 0, 0, 0.34),
    0 0 24px rgba(225, 6, 18, 0.28);
}

.autograph-page .autograph-guide-box {
  width: min(100%, 1040px);
  margin: 0 auto 28px;
  padding: clamp(30px, 4vw, 46px);
  color: #fff;
  background: rgba(18, 12, 22, 0.78);
  border: 1px solid rgba(230, 220, 214, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 28px 72px rgba(0, 0, 0, 0.28);
}

.autograph-page .autograph-guide-box h2 {
  margin: 0 0 24px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0;
  white-space: nowrap;
}

.autograph-page .autograph-guide-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 24px;
}

.autograph-page .autograph-guide-tabs button {
  min-width: 0;
  min-height: 42px;
  padding: 8px 8px;
  color: rgba(255, 255, 255, 0.74);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  background: rgba(43, 29, 50, 0.86);
  border: 1px solid rgba(222, 210, 206, 0.16);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.autograph-page .autograph-guide-tabs button.is-active,
.autograph-page .autograph-guide-tabs button[aria-selected="true"] {
  color: #fff;
  background: rgba(126, 24, 42, 0.92);
  border-color: rgba(255, 235, 229, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 28px rgba(118, 22, 46, 0.26);
}

.autograph-page .autograph-guide-carousel {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 16px;
  align-items: stretch;
}

.autograph-page .autograph-guide-carousel__viewport {
  min-width: 0;
  overflow: hidden;
}

.autograph-page .autograph-guide-carousel__viewport:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
}

.autograph-page .autograph-guide-carousel__button {
  width: 44px;
  min-height: 132px;
  padding: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.56rem;
  line-height: 1;
  background: rgba(54, 30, 66, 0.9);
  border: 1px solid rgba(230, 220, 214, 0.2);
  cursor: pointer;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 18px rgba(126, 72, 154, 0.22);
  transition:
    opacity 0.2s ease,
    filter 0.2s ease;
}

.autograph-page .autograph-guide-carousel__button:hover,
.autograph-page .autograph-guide-carousel__button:focus-visible {
  filter: brightness(1.1);
}

.autograph-page .autograph-guide-carousel__button:disabled {
  opacity: 0.34;
  cursor: default;
  filter: none;
}

.autograph-page .autograph-guide-box ol {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.34s ease;
  will-change: transform;
}

.autograph-page .autograph-guide-box li {
  position: relative;
  min-height: 150px;
  padding: 24px 22px;
  margin: 2px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 8px 14px;
  align-items: center;
  justify-items: start;
  text-align: left;
  flex: 0 0 calc(100% / 3);
  white-space: nowrap;
  background: rgba(31, 22, 36, 0.86);
  border: 1px solid rgba(230, 220, 214, 0.16);
}

.autograph-page .autograph-guide-box li.is-selected {
  border-color: rgba(225, 6, 18, 0.48);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 18px 38px rgba(34, 13, 42, 0.3),
    0 0 24px rgba(225, 6, 18, 0.16);
}

.autograph-page .autograph-guide-box li + li::before {
  content: none;
}

.autograph-page .autograph-guide-box li span {
  display: inline-grid;
  grid-row: 1 / span 3;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-family:
    "KaiunOP", "KaiunP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo",
    sans-serif;
  font-size: 1.48rem;
  font-weight: 900;
  background: #b70916;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.14),
    0 0 18px rgba(225, 6, 18, 0.3);
}

.autograph-page .autograph-guide-box li strong {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.9);
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.32rem);
  font-weight: 800;
  line-height: 1.45;
  white-space: nowrap;
  overflow: visible;
}

.autograph-page
  .autograph-guide-box
  li:not(.autograph-guide-box__ticket-step)
  strong {
  grid-row: 1 / span 3;
  align-self: center;
}

.autograph-page .autograph-guide-box__button {
  grid-column: 2;
  min-width: 112px;
  padding: 8px 12px;
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  background: #b70916;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 16px rgba(225, 6, 18, 0.22);
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
}

.autograph-page .autograph-guide-box__button:hover,
.autograph-page .autograph-guide-box__button:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.autograph-page .autograph-guide-box li small {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1.45;
  white-space: nowrap;
}

.autograph-page .autograph-guide-box p {
  margin: 28px 0 0;
  color: rgba(241, 232, 226, 0.78);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}

.autograph-page .autograph-notice-accordion {
  display: grid;
  gap: 12px;
  width: min(100%, 1040px);
  margin: 0 auto 96px;
  color: #fff;
}

.autograph-page .autograph-notice-accordion__item {
  overflow: hidden;
  background: rgba(17, 12, 21, 0.68);
  border: 1px solid rgba(230, 220, 214, 0.16);
}

.autograph-page .autograph-notice-accordion summary {
  min-height: 54px;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 20px;
  gap: 12px;
  align-items: center;
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

.autograph-page .autograph-notice-accordion summary::-webkit-details-marker {
  display: none;
}

.autograph-page .autograph-notice-accordion summary::before {
  content: "+";
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #fff;
  background: #b70916;
}

.autograph-page .autograph-notice-accordion summary::after {
  content: "";
  width: 9px;
  height: 9px;
  justify-self: end;
  border-right: 2px solid rgba(255, 255, 255, 0.76);
  border-bottom: 2px solid rgba(255, 255, 255, 0.76);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.autograph-page .autograph-notice-accordion__item[open] summary::before {
  content: "-";
}

.autograph-page .autograph-notice-accordion__item[open] summary::after {
  transform: rotate(225deg);
}

.autograph-page .autograph-notice-accordion__body {
  padding: 0 18px 18px 58px;
}

.autograph-page .autograph-notice-accordion__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.75;
}

.autograph-page .autograph-notice-accordion__body h3 {
  margin: 20px 0 8px;
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.6;
}

.autograph-page .autograph-notice-accordion__body h3:first-child {
  margin-top: 0;
}

.autograph-page .autograph-notice-accordion__body ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.15em;
}

.autograph-page .autograph-notice-accordion__body p + ul {
  margin-top: 10px;
}

.autograph-page .autograph-notice-accordion__body li {
  color: rgba(255, 255, 255, 0.92);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.75;
}

.autograph-page .autograph-notice-accordion__text--normal {
  font-weight: 400;
}

.autograph-page .autograph-section {
  width: min(100%, 1060px);
  margin: 0 auto;
  color: #fff;
}

.autograph-page .autograph-section + .autograph-section {
  margin-top: 72px;
}

.autograph-page .autograph-section > h2 {
  width: min(100%, 820px);
  margin: 0 auto 48px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  text-align: center;
}

.autograph-page .autograph-section > h2 span {
  display: block;
}

.autograph-page .autograph-section__lead {
  width: min(100%, 820px);
  margin: -28px auto 42px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.autograph-page .autograph-date-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 760px);
  margin: 0 auto 44px;
}

.autograph-page .autograph-date-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.autograph-page .autograph-date-tabs label {
  min-height: 54px;
  padding: 12px 14px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.05rem;
  line-height: 1.3;
  letter-spacing: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.32)),
    rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
  text-align: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.autograph-page .autograph-date-tabs label span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
}

.autograph-page
  #autograph-date-0911:checked
  ~ .autograph-date-tabs
  label[for="autograph-date-0911"],
.autograph-page
  #autograph-date-0912:checked
  ~ .autograph-date-tabs
  label[for="autograph-date-0912"],
.autograph-page
  #autograph-date-0913:checked
  ~ .autograph-date-tabs
  label[for="autograph-date-0913"] {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(166, 12, 26, 0.96), rgba(42, 10, 14, 0.95)),
    radial-gradient(
      circle at 18% 0%,
      rgba(255, 255, 255, 0.18),
      transparent 38%
    );
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 22px rgba(225, 6, 18, 0.18);
}

.autograph-page .autograph-date-panel {
  display: none;
}

.autograph-page
  #autograph-date-0911:checked
  ~ .autograph-date-panels
  .autograph-date-panel--0911,
.autograph-page
  #autograph-date-0912:checked
  ~ .autograph-date-panels
  .autograph-date-panel--0912,
.autograph-page
  #autograph-date-0913:checked
  ~ .autograph-date-panels
  .autograph-date-panel--0913 {
  display: block;
}

.autograph-page .autograph-guest-grid {
  display: grid;
  gap: 38px;
}

.autograph-page .autograph-date-panel__note {
  width: min(100%, 920px);
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.autograph-page .autograph-guest-card {
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 44px);
  align-items: start;
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: clamp(28px, 3.6vw, 40px) clamp(28px, 4.4vw, 48px);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.014)
    ),
    rgba(18, 11, 21, 0.78);
  border: 1px solid rgba(116, 54, 143, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 50px rgba(0, 0, 0, 0.24);
}

.autograph-page .autograph-guest-card__visual {
  position: relative;
  display: grid;
  width: min(100%, 260px);
  aspect-ratio: 4 / 5;
  min-height: 0;
  place-items: center;
  align-self: start;
  justify-self: center;
  overflow: hidden;
}

.autograph-page .autograph-guest-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.autograph-page .autograph-guest-card__visual--duo {
  display: block;
}

.autograph-page .autograph-guest-card__visual--duo img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(9%) scale(1.01);
  animation: autographDuoImageSlide 7.2s infinite;
  will-change: opacity, transform;
}

.autograph-page .autograph-guest-card__visual--duo img:nth-child(2) {
  animation-delay: 3.6s;
}

@keyframes autographDuoImageSlide {
  0%,
  9%,
  43% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  52%,
  91% {
    opacity: 0;
    transform: translateX(-9%) scale(1.01);
  }

  92% {
    opacity: 0;
    transform: translateX(9%) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.autograph-page .autograph-guest-card__label {
  display: inline-block;
  margin: 0 0 10px;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 0.96rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.autograph-page .autograph-guest-card__body h3 {
  margin: 0 0 14px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0;
}

.autograph-page .autograph-guest-card__body h3 span {
  display: inline-block;
  margin-left: 0.28em;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.64em;
  font-weight: 800;
  line-height: 1.4;
}

.autograph-page .autograph-guest-card__profile {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.85;
}

.autograph-page .autograph-guest-card__body dl {
  display: grid;
  margin: 0;
}

.autograph-page .autograph-guest-card__body dl div {
  display: grid;
  grid-template-columns: 9.8em minmax(0, 1fr);
  gap: 8px 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.autograph-page .autograph-guest-card__body dl div:first-child {
  padding-top: 0;
}

.autograph-page .autograph-guest-card__body dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.autograph-page .autograph-guest-card__body dt {
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.02rem;
  line-height: 1.5;
  white-space: nowrap;
}

.autograph-page .autograph-guest-card__body dt span {
  display: block;
  margin-top: 2px;
  font-size: 0.82em;
  line-height: 1.35;
}

.autograph-page .autograph-guest-card__body dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.78;
}

.autograph-page .autograph-schedule-list {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.autograph-page .autograph-schedule-list li {
  position: relative;
  padding-left: 1em;
}

.autograph-page .autograph-schedule-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #e10612;
  font-size: 0.76em;
  line-height: 2.25;
}

.autograph-page .autograph-work-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.autograph-page .autograph-work-list li {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 9px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  line-height: 1.35;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.autograph-page .autograph-guest-card__price {
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.02rem;
  font-weight: 900;
}

@media (max-width: 1000px) {
  .autograph-page .autograph-page-shell {
    padding: 124px 0 90px;
  }

  .autograph-page .autograph-page-shell__inner {
    width: min(calc(100% - 48px), 920px);
  }

  .autograph-page .autograph-title-block h1 {
    font-size: 2.7rem;
  }

  .autograph-page .autograph-guide-box {
    width: 100%;
    max-width: 100%;
  }

  .autograph-page .autograph-guide-tabs {
    display: none;
  }

  .autograph-page .autograph-guide-carousel {
    position: relative;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .autograph-page .autograph-guide-carousel__viewport,
  .autograph-page .autograph-guide-box ol {
    width: 100%;
  }

  .autograph-page .autograph-guide-carousel__button {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 46px;
    height: 96px;
    min-height: 0;
    color: rgba(255, 255, 255, 0.52);
    background: rgba(0, 0, 0, 0.14);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    transform: translateY(-50%);
  }

  .autograph-page .autograph-guide-carousel__button--prev {
    left: 8px;
  }

  .autograph-page .autograph-guide-carousel__button--next {
    right: 8px;
  }

  .autograph-page .autograph-guide-carousel__button:hover,
  .autograph-page .autograph-guide-carousel__button:focus-visible {
    color: rgba(255, 255, 255, 0.82);
    background: rgba(225, 6, 18, 0.18);
    filter: none;
  }

  .autograph-page .autograph-guide-box li {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-inline: 58px;
  }

  .autograph-page .autograph-guide-box li + li::before {
    content: none;
  }

  .autograph-page .autograph-guest-card {
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    width: min(100%, 920px);
  }

  .autograph-page .autograph-guest-card__visual {
    width: min(100%, 240px);
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .autograph-page .autograph-page-shell {
    padding: 104px 0 70px;
  }

  .autograph-page .autograph-page-shell__inner {
    width: min(calc(100% - 28px), 600px);
  }

  .autograph-page .autograph-title-block {
    margin-bottom: 42px;
  }

  .autograph-page .autograph-title-block p {
    font-size: 1.05rem;
  }

  .autograph-page .autograph-title-block h1 {
    font-size: 2.05rem;
    line-height: 1.32;
  }

  .autograph-page .autograph-guide-box {
    width: 100vw;
    max-width: 100vw;
    margin-bottom: 22px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 24px 16px 26px;
    border-left: 0;
    border-right: 0;
  }

  .autograph-page .autograph-guide-box h2 {
    margin-bottom: 18px;
    font-size: 1.24rem;
    text-align: center;
  }

  .autograph-page .autograph-guide-tabs {
    display: none;
  }

  .autograph-page .autograph-guide-carousel {
    position: relative;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    width: 100%;
  }

  .autograph-page .autograph-guide-carousel__viewport,
  .autograph-page .autograph-guide-box ol {
    width: 100%;
  }

  .autograph-page .autograph-guide-carousel__button {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 40px;
    height: 82px;
    min-height: 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 1.72rem;
    background: rgba(0, 0, 0, 0.16);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    transform: translateY(-50%);
  }

  .autograph-page .autograph-guide-carousel__button--prev {
    left: 6px;
  }

  .autograph-page .autograph-guide-carousel__button--next {
    right: 6px;
  }

  .autograph-page .autograph-guide-carousel__button:hover,
  .autograph-page .autograph-guide-carousel__button:focus-visible {
    color: rgba(255, 255, 255, 0.82);
    background: rgba(225, 6, 18, 0.18);
    filter: none;
  }

  .autograph-page .autograph-guide-box li {
    min-height: 170px;
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 10px 16px;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    justify-items: start;
    margin: 0;
    padding: 26px 48px;
    text-align: left;
  }

  .autograph-page .autograph-guide-box li span {
    width: 66px;
    height: 66px;
    font-size: 1.52rem;
    border-radius: 50%;
  }

  .autograph-page .autograph-guide-box li strong {
    min-width: 0;
    font-size: clamp(1.22rem, 6vw, 1.64rem);
  }

  .autograph-page .autograph-guide-box__button {
    min-width: 118px;
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .autograph-page .autograph-guide-box li small {
    font-size: 0.74rem;
  }

  .autograph-page .autograph-guide-box__ticket-step {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .autograph-page
    .autograph-guide-box__ticket-step
    .autograph-guide-box__button,
  .autograph-page .autograph-guide-box__ticket-step small {
    grid-column: 2;
  }

  .autograph-page .autograph-guide-box p {
    margin-top: 22px;
    font-size: 0.84rem;
    text-align: left;
  }

  .autograph-page .autograph-notice-accordion {
    gap: 10px;
    margin-bottom: 66px;
  }

  .autograph-page .autograph-notice-accordion summary {
    padding: 13px 14px;
    grid-template-columns: 26px minmax(0, 1fr) 18px;
    gap: 10px;
    font-size: 0.88rem;
  }

  .autograph-page .autograph-notice-accordion__body {
    padding: 0 14px 16px 50px;
  }

  .autograph-page .autograph-section > h2 {
    margin-bottom: 34px;
    font-size: 1.36rem;
    line-height: 1.5;
    text-align: left;
  }

  .autograph-page .autograph-section__lead {
    margin: -18px 0 28px;
    font-size: 0.84rem;
    text-align: left;
  }

  .autograph-page .autograph-section + .autograph-section {
    margin-top: 54px;
  }

  .autograph-page .autograph-date-tabs {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 30px;
  }

  .autograph-page .autograph-date-tabs label {
    min-height: 48px;
    font-size: 0.96rem;
  }

  .autograph-page .autograph-guest-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px 18px;
  }

  .autograph-page .autograph-guest-card__visual {
    width: min(100%, 340px);
    min-height: 180px;
  }

  .autograph-page .autograph-guest-card__body h3 {
    margin-bottom: 14px;
    font-size: 1.28rem;
  }

  .autograph-page .autograph-guest-card__body h3 span {
    display: block;
    margin: 4px 0 0;
  }

  .autograph-page .autograph-guest-card__body dl div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 0;
  }

  .autograph-page .autograph-guest-card__body dt {
    font-size: 1rem;
  }

  .autograph-page .autograph-guest-card__body dd {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .autograph-page .autograph-work-list {
    gap: 6px;
  }

  .autograph-page .autograph-work-list li {
    font-size: 0.78rem;
  }
}

/* Stage page */
.stage-page {
  background:
    radial-gradient(
      circle at 50% -120px,
      rgba(116, 54, 143, 0.22),
      transparent 360px
    ),
    linear-gradient(180deg, #2a211f 0%, #151012 48%, #2a211f 100%);
}

.stage-page .stage-page-shell {
  min-height: 100vh;
  padding: 132px 0 96px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    radial-gradient(
      circle at 14% 10%,
      rgba(225, 6, 18, 0.2),
      transparent 330px
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(116, 54, 143, 0.18),
      transparent 300px
    );
  background-size:
    100% 4px,
    auto,
    auto;
}

.stage-page .stage-page-shell__inner {
  width: min(calc(100% - 80px), 1220px);
  margin: 0 auto;
}

.stage-page .stage-title-block {
  margin: 0 auto 52px;
  text-align: center;
}

.stage-page .stage-title-block p {
  margin: 0 0 12px;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-shadow: 0 0 14px rgba(225, 6, 18, 0.34);
}

.stage-page .stage-title-block h1 {
  margin: 0;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: 0;
  text-shadow:
    0 5px 0 rgba(0, 0, 0, 0.34),
    0 0 24px rgba(225, 6, 18, 0.28);
}

.stage-page .stage-section {
  width: min(100%, 1060px);
  margin: 0 auto;
  color: #fff;
}

.stage-page .stage-section + .stage-section {
  margin-top: 72px;
}

.stage-page .stage-section > h2,
.stage-page .stage-date-switch__details > h2 {
  width: min(100%, 820px);
  margin: 0 auto 40px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  text-align: center;
}

.stage-page .stage-section > h2 span,
.stage-page .stage-date-switch__details > h2 span {
  display: block;
}

.stage-page .stage-date-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.stage-page .stage-date-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 760px);
  margin: 0 auto 34px;
}

.stage-page .stage-date-tabs label {
  min-height: 54px;
  padding: 12px 14px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.05rem;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.32)),
    rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.stage-page
  #stage-date-0911:checked
  ~ .stage-date-tabs
  label[for="stage-date-0911"],
.stage-page
  #stage-date-0912:checked
  ~ .stage-date-tabs
  label[for="stage-date-0912"],
.stage-page
  #stage-date-0913:checked
  ~ .stage-date-tabs
  label[for="stage-date-0913"] {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(166, 12, 26, 0.96), rgba(42, 10, 14, 0.95)),
    radial-gradient(
      circle at 18% 0%,
      rgba(255, 255, 255, 0.18),
      transparent 38%
    );
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 22px rgba(225, 6, 18, 0.18);
}

.stage-page .stage-date-panel {
  display: none;
}

.stage-page
  #stage-date-0911:checked
  ~ .stage-date-panels
  .stage-date-panel--0911,
.stage-page
  #stage-date-0912:checked
  ~ .stage-date-panels
  .stage-date-panel--0912,
.stage-page
  #stage-date-0913:checked
  ~ .stage-date-panels
  .stage-date-panel--0913 {
  display: block;
}

.stage-page .stage-date-switch__details {
  margin-top: 72px;
}

.stage-page .stage-detail-date-panel {
  display: none;
}

.stage-page
  #stage-date-0911:checked
  ~ .stage-date-switch__details
  .stage-detail-date-panel--0911,
.stage-page
  #stage-date-0912:checked
  ~ .stage-date-switch__details
  .stage-detail-date-panel--0912,
.stage-page
  #stage-date-0913:checked
  ~ .stage-date-switch__details
  .stage-detail-date-panel--0913 {
  display: block;
}

.stage-page .stage-program-table-wrap {
  width: min(100%, 920px);
  margin: 0 auto;
  overflow-x: auto;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.028)
    ),
    rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(225, 6, 18, 0.1);
}

.stage-page .stage-program-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  color: rgba(255, 255, 255, 0.9);
}

.stage-page .stage-program-table th,
.stage-page .stage-program-table td {
  padding: 17px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  vertical-align: middle;
}

.stage-page .stage-program-table thead th {
  padding-top: 14px;
  padding-bottom: 14px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  background: rgba(225, 6, 18, 0.22);
}

.stage-page .stage-program-table tbody th {
  width: 190px;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.14rem;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
}

.stage-page .stage-program-table tbody td {
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.stage-page .stage-program-table tbody tr:last-child th,
.stage-page .stage-program-table tbody tr:last-child td {
  border-bottom: 0;
}

.stage-page .stage-program-table a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 0.2s ease;
}

.stage-page .stage-program-table a:hover,
.stage-page .stage-program-table a:focus-visible {
  color: #e10612;
}

.stage-page .stage-detail-list {
  display: grid;
  gap: 22px;
}

.stage-page .stage-detail-card {
  /* display: grid; */
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: 30px;
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 24px;
  scroll-margin-top: 96px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.028)
    ),
    rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(225, 6, 18, 0.1);
}

.stage-page .stage-detail-card__visual {
  display: grid;
  min-height: 230px;
  place-items: center;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.22rem;
  line-height: 1.35;
  background:
    linear-gradient(
      135deg,
      rgba(225, 6, 18, 0.15),
      rgba(116, 54, 143, 0.13) 52%,
      rgba(255, 255, 255, 0.035)
    ),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.stage-page .stage-detail-card__visual span {
  padding: 8px 12px;
}

.stage-page .stage-detail-card__date {
  margin: 0 0 10px;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.18rem;
  line-height: 1.35;
}

.stage-page .stage-detail-card__body h3 {
  margin: 0 0 20px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
}

.stage-page #stage-program-0911-04 .stage-detail-card__title-main,
.stage-page #stage-program-0911-04 .stage-detail-card__title-small {
  display: block;
}

.stage-page #stage-program-0911-04 .stage-detail-card__title-small {
  font-size: 0.72em;
  line-height: 1.5;
}

.stage-page .stage-detail-card__body dl {
  display: grid;
  margin: 0;
}

.stage-page .stage-detail-card__body dl div {
  display: grid;
  grid-template-columns: 9em minmax(0, 1fr);
  gap: 8px 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.stage-page .stage-detail-card__body dl div:first-child {
  padding-top: 0;
}

.stage-page .stage-detail-card__body dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.stage-page .stage-detail-card__body dt {
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.18rem;
  line-height: 1.45;
}

.stage-page .stage-detail-card__body dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.85;
}

@media (max-width: 1000px) {
  .stage-page .stage-page-shell {
    padding: 112px 0 78px;
  }

  .stage-page .stage-page-shell__inner {
    width: min(calc(100% - 48px), 920px);
  }

  .stage-page .stage-title-block h1 {
    font-size: 2.7rem;
  }

  .stage-page .stage-detail-card {
    grid-template-columns: 1fr;
    width: min(100%, 760px);
  }
}

@media (max-width: 640px) {
  .stage-page .stage-page-shell {
    padding: 92px 0 58px;
  }

  .stage-page .stage-page-shell__inner {
    width: min(calc(100% - 32px), 600px);
  }

  .stage-page .stage-title-block {
    margin-bottom: 34px;
  }

  .stage-page .stage-title-block p {
    font-size: 1.05rem;
  }

  .stage-page .stage-title-block h1 {
    font-size: 2.05rem;
    line-height: 1.32;
  }

  .stage-page .stage-section > h2,
  .stage-page .stage-date-switch__details > h2 {
    margin-bottom: 28px;
    font-size: 1.36rem;
    line-height: 1.5;
    text-align: left;
  }

  .stage-page .stage-section + .stage-section {
    margin-top: 54px;
  }

  .stage-page .stage-date-switch__details {
    margin-top: 54px;
  }

  .stage-page .stage-date-tabs {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 24px;
  }

  .stage-page .stage-date-tabs label {
    min-height: 48px;
    font-size: 0.96rem;
  }

  .stage-page .stage-program-table {
    min-width: 520px;
  }

  .stage-page .stage-program-table th,
  .stage-page .stage-program-table td {
    padding: 14px 16px;
  }

  .stage-page .stage-program-table thead th {
    font-size: 0.94rem;
  }

  .stage-page .stage-program-table tbody th {
    width: 150px;
    font-size: 1rem;
  }

  .stage-page .stage-program-table tbody td {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .stage-page .stage-detail-card {
    gap: 18px;
    padding: 16px;
  }

  .stage-page .stage-detail-card__visual {
    min-height: 180px;
  }

  .stage-page .stage-detail-card__date {
    font-size: 1rem;
  }

  .stage-page .stage-detail-card__body h3 {
    margin-bottom: 14px;
    font-size: 1.28rem;
  }

  .stage-page .stage-detail-card__body dl div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 0;
  }

  .stage-page .stage-detail-card__body dt {
    font-size: 1rem;
  }

  .stage-page .stage-detail-card__body dd {
    font-size: 0.9rem;
    line-height: 1.75;
  }
}

/* GOODS page */
.goods-page {
  --goods-red: #d51c38;
  --goods-purple: #5f2878;
  --goods-accent: #4ee7ff;
  --goods-panel-purple: #2e2038;
  --goods-media-purple: #1a1220;
  --goods-soft-purple: rgba(95, 40, 120, 0.18);
  color: #fff;
  background: #1d1921;
}

.goods-page .goods-page-shell {
  min-height: 100vh;
  padding: 124px 0 96px;
  background:
    radial-gradient(
      circle at 18% 8%,
      rgba(143, 15, 58, 0.14),
      transparent 340px
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(64, 29, 91, 0.14),
      transparent 360px
    ),
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(180deg, #211c25 0%, #1a161e 52%, #211923 100%);
  background-size:
    auto,
    auto,
    100% 22px,
    auto;
}

.goods-page .goods-page-shell__inner {
  width: min(calc(100% - 80px), 1220px);
  margin: 0 auto;
}

.goods-page .goods-title-block {
  margin: 0 auto 34px;
  text-align: center;
}

.goods-page .goods-title-block p {
  margin: 0 0 12px;
  color: var(--goods-red);
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.28rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(213, 28, 56, 0.46);
}

.goods-page .goods-title-block h1 {
  margin: 0;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  text-shadow:
    3px 3px 0 rgba(164, 22, 92, 0.58),
    0 0 24px rgba(225, 6, 18, 0.5);
}

.goods-page .goods-local-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  width: min(100%, 1120px);
  margin: 0 auto 64px;
}

.goods-page .goods-local-nav a {
  display: flex;
  flex: 1 1 300px;
  min-width: min(100%, 270px);
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  background: #2a1c2b;
  border: 0;
  border-radius: 3px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
  text-shadow:
    2px 2px 0 rgba(225, 6, 18, 0.55),
    0 0 10px rgba(255, 255, 255, 0.24);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.goods-page .goods-local-nav a:hover,
.goods-page .goods-local-nav a:focus-visible {
  color: #ffd7dc;
  background: #3a2335;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.goods-page .goods-section,
.goods-page .goods-goshuin-feature,
.goods-page .goods-collaboration,
.goods-page .goods-note,
.goods-page .goods-copyright {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.goods-page .goods-goshuin-feature + .goods-section,
.goods-page .goods-section + .goods-collaboration,
.goods-page .goods-collaboration + .goods-section,
.goods-page .goods-section + .goods-note,
.goods-page .goods-note + .goods-copyright {
  margin-top: 78px;
}

.goods-page .goods-goshuin-feature + .goods-section {
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.goods-page .goods-section__heading {
  position: relative;
  display: grid;
  gap: 8px;
  margin: 0 0 28px;
  padding-bottom: 6px;
  text-align: left;
}

.goods-page .goods-section__heading::before {
  content: "";
  display: block;
  width: 76px;
  height: 2px;
  background: var(--goods-purple);
  opacity: 0.86;
}

.goods-page .goods-section__heading p,
.goods-page .goods-goshuin-feature__heading p,
.goods-page .goods-collaboration__eyebrow {
  margin: 0 0 10px;
  color: rgba(214, 54, 172, 0.9);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0;
}

.goods-page .goods-section__heading h2,
.goods-page .goods-goshuin-feature h2,
.goods-page .goods-collaboration h2,
.goods-page .goods-note h2 {
  margin: 0;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
  text-shadow:
    2px 2px 0 rgba(225, 6, 18, 0.72),
    0 0 18px rgba(158, 38, 133, 0.4);
}

.goods-page .goods-section__coming-soon {
  width: 100%;
  margin: 0;
  padding: 22px 24px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.75;
  background: rgba(95, 40, 120, 0.22);
  box-shadow:
    inset 4px 0 0 rgba(214, 54, 172, 0.86),
    0 16px 30px rgba(0, 0, 0, 0.18);
}

.goods-page .goods-goshuin-feature {
  position: relative;
  overflow: hidden;
  padding: 28px 32px 32px;
  background: #2b1d34;
  border: 0;
  border-radius: 6px;
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.3),
    0 0 24px rgba(95, 40, 120, 0.1);
}

.goods-page .goods-goshuin-feature::before {
  content: none;
}

.goods-page .goods-goshuin-feature__heading {
  margin: 0 0 22px;
  text-align: center;
}

.goods-page .goods-goshuin-feature__heading p {
  color: rgba(78, 231, 255, 0.88);
}

.goods-page .goods-goshuin-feature h2 {
  font-size: clamp(1.35rem, 2.4vw, 2.08rem);
}

.goods-page .goods-goshuin-feature__title-break {
  display: inline;
}

.goods-page .goods-goshuin-feature__layout {
  display: grid;
  gap: 24px;
}

.goods-page .goods-goshuin-feature__sites {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.goods-page .goods-goshuin-feature__site {
  display: grid;
  gap: 10px;
  min-width: 0;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.goods-page .goods-goshuin-feature__site-name {
  display: block;
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.4;
}

.goods-page .goods-goshuin-feature__site-image {
  display: grid;
  min-height: 0;
  padding: 0;
  place-items: center;
  color: #220426;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 0;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.28rem;
  line-height: 1.35;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.goods-page .goods-goshuin-feature__site-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.goods-page
  .goods-goshuin-feature__site:hover
  .goods-goshuin-feature__site-image,
.goods-page
  .goods-goshuin-feature__site:focus-visible
  .goods-goshuin-feature__site-image {
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.32),
    0 0 20px rgba(225, 6, 18, 0.2);
  transform: translateY(-2px);
}

.goods-page .goods-goshuin-feature__lead {
  margin: 0;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(36, 7, 45, 0.72);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.85;
}

.goods-page .goods-goshuin-feature__lead span {
  opacity: 0.88;
  font-weight: 500;
}

.goods-page .goods-goshuin-feature__item {
  display: grid;
  grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
  padding: 10px 0 2px;
}

.goods-page .goods-goshuin-feature__visual {
  position: relative;
  display: grid;
  aspect-ratio: 1289 / 1891;
  width: 100%;
  max-width: 180px;
  justify-self: center;
  place-items: center;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.goods-page .goods-goshuin-feature__visual--book {
  aspect-ratio: 1289 / 1891;
}

.goods-page .goods-goshuin-feature__book {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 14px rgba(225, 6, 18, 0.14));
}

.goods-page .goods-goshuin-feature__book:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 6px;
}

.goods-page .goods-goshuin-feature__book-face {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transition: opacity 220ms ease;
}

.goods-page .goods-goshuin-feature__book-face--back {
  opacity: 0;
}

.goods-page
  .goods-goshuin-feature__visual--book:hover
  .goods-goshuin-feature__book-face--front,
.goods-page
  .goods-goshuin-feature__book:focus-visible
  .goods-goshuin-feature__book-face--front {
  opacity: 0;
}

.goods-page
  .goods-goshuin-feature__visual--book:hover
  .goods-goshuin-feature__book-face--back,
.goods-page
  .goods-goshuin-feature__book:focus-visible
  .goods-goshuin-feature__book-face--back {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .goods-page .goods-goshuin-feature__book {
    transition: none;
  }
}

.goods-page .goods-goshuin-feature__price {
  margin: 12px 0 0 !important;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow:
    2px 2px 0 rgba(85, 18, 101, 0.9),
    0 0 16px rgba(95, 40, 120, 0.42);
}

.goods-page .goods-goshuin-feature__text {
  min-width: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.8;
}

.goods-page .goods-goshuin-feature__text p {
  margin: 0;
}

.goods-page .goods-goshuin-feature__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 18px !important;
  padding: 5px 14px 4px;
  color: #fff;
  background: #e10612;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
}

.goods-page .goods-goshuin-feature__description {
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(1.38rem, 2.5vw, 1.85rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  text-shadow:
    2px 2px 0 rgba(225, 6, 18, 0.62),
    0 14px 24px rgba(0, 0, 0, 0.34);
}

.goods-page .goods-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.goods-page .goods-card {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  color: #fff;
  background: #352541;
  border: 0;
  border-radius: 6px;
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(95, 40, 120, 0.14);
}

.goods-page .goods-card::before {
  content: none;
}

.goods-page .goods-card__media {
  position: relative;
  display: flex;
  min-height: 0;
  aspect-ratio: 1 / 1;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #201628;
}

.goods-page .goods-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.goods-page .goods-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 10px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 0.86rem;
  line-height: 1;
  letter-spacing: 0;
  background: #6a2b7e;
  border: 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.26);
}

.goods-page .goods-card__placeholder {
  display: grid;
  gap: 8px;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
}

.goods-page .goods-card__placeholder img {
  display: block;
  width: min(78%, 220px);
  height: auto;
  opacity: 0.88;
  filter: drop-shadow(0 0 14px rgba(225, 6, 18, 0.22))
    drop-shadow(0 0 10px rgba(78, 231, 255, 0.12));
}

.goods-page .goods-card__body {
  display: grid;
  gap: 16px;
  padding: 12px 6px;
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
}

.goods-page .goods-card__body h3 {
  min-height: 3.1em;
  margin: 0;
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0;
}

.goods-page .goods-card__spec {
  margin: 0;
  width: 100%;
  overflow: hidden;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.5;
  color: #1d1222;
  background: #fff;
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
  border-radius: 4px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
}

.goods-page .goods-card__spec th,
.goods-page .goods-card__spec td {
  padding: 10px 12px;
  vertical-align: top;
  border: 0;
}

.goods-page .goods-card__spec tr:last-child th,
.goods-page .goods-card__spec tr:last-child td {
  border-bottom: 0;
}

.goods-page .goods-card__spec th {
  width: 6.8em;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: left;
  white-space: nowrap;
  background: #5c2870;
}

.goods-page .goods-card__spec td {
  min-width: 0;
  color: #201425;
  overflow-wrap: break-word;
  background: #fff;
}

.goods-page .goods-card__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.65;
}

body.is-goods-modal-open {
  overflow: hidden;
}

.goods-page .goods-card[data-goods-modal-image] {
  cursor: zoom-in;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.goods-page .goods-card[data-goods-modal-image]:hover,
.goods-page .goods-card[data-goods-modal-image]:focus-visible {
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.42),
    0 0 30px rgba(225, 6, 18, 0.16);
  transform: translateY(-3px);
}

.goods-page .goods-card[data-goods-modal-image]:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.86);
  outline-offset: 4px;
}

.goods-page .goods-card[data-goods-modal-image] .goods-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(225, 6, 18, 0.16), transparent 44%),
    rgba(0, 0, 0, 0.12);
  opacity: 0;
  transition: opacity 180ms ease;
}

.goods-page .goods-card[data-goods-modal-image]:hover .goods-card__media::after,
.goods-page
  .goods-card[data-goods-modal-image]:focus-visible
  .goods-card__media::after {
  opacity: 1;
}

.goods-page .goods-image-modal[hidden] {
  display: none;
}

.goods-page .goods-image-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  padding: 32px;
  place-items: center;
}

.goods-page .goods-image-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(5px);
}

.goods-page .goods-image-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(100%, 860px);
  max-height: calc(100vh - 64px);
  padding: 20px;
  overflow: auto;
  background: #120817;
  border: 0;
  border-radius: 6px;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.58),
    0 0 34px rgba(225, 6, 18, 0.22);
}

.goods-page .goods-image-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: #fff;
  background: rgba(28, 9, 17, 0.92);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.7rem;
  line-height: 1;
}

.goods-page .goods-image-modal__close:hover,
.goods-page .goods-image-modal__close:focus-visible {
  outline: none;
  box-shadow: 0 0 18px rgba(225, 6, 18, 0.28);
}

.goods-page .goods-image-modal__media {
  display: grid;
  width: min(100%, 680px);
  aspect-ratio: 1 / 1;
  justify-self: center;
  padding: 38px;
  place-items: center;
  background: var(--goods-media-purple);
  border: 0;
}

.goods-page .goods-image-modal__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 0 18px rgba(225, 6, 18, 0.24))
    drop-shadow(0 0 14px rgba(78, 231, 255, 0.12));
}

.goods-page .goods-image-modal__caption {
  display: grid;
  gap: 6px;
}

.goods-page .goods-image-modal__caption p {
  margin: 0;
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.55;
}

.goods-page .goods-image-modal__caption span {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.7;
}

.goods-page .goods-collaboration {
  position: relative;
  display: grid;
  gap: 28px;
  align-items: start;
  padding: 32px;
  background: var(--goods-panel-purple);
  border: 0;
  border-radius: 6px;
  box-shadow:
    0 24px 46px rgba(0, 0, 0, 0.36),
    0 0 34px rgba(95, 40, 120, 0.22);
}

.goods-page .goods-collaboration::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--goods-purple);
  opacity: 0.82;
}

.goods-page .goods-collaboration h2 {
  margin-bottom: 18px;
}

.goods-page .goods-collaboration h2 span {
  display: block;
}

.goods-page .goods-collaboration__sites {
  display: grid;
  gap: 8px;
  width: min(100%, 520px);
  margin: 0 0 18px;
}

.goods-page .goods-collaboration__sites span {
  position: relative;
  display: block;
  padding: 10px 14px 10px 34px;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
  background: var(--goods-soft-purple);
}

.goods-page .goods-collaboration__sites span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--goods-red);
  box-shadow: 0 0 10px rgba(78, 231, 255, 0.34);
  transform: translateY(-50%) rotate(45deg);
}

.goods-page .goods-collaboration__lead {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.85;
  letter-spacing: 0;
}

.goods-page .goods-collaboration__reward {
  margin: 0;
  padding: 16px 18px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.22rem;
  line-height: 1.45;
  letter-spacing: 0;
  background: var(--goods-soft-purple);
}

.goods-page .goods-collaboration__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.goods-page .goods-card--compact .goods-card__body {
  padding: 16px;
}

.goods-page .goods-card--compact .goods-card__body h3 {
  min-height: 0;
  font-size: 0.94rem;
}

.goods-page .goods-card--compact .goods-card__spec {
  font-size: 0.78rem;
}

.goods-page .goods-card--compact .goods-card__spec th,
.goods-page .goods-card--compact .goods-card__spec td {
  padding: 7px 8px;
}

.goods-page .goods-card--compact .goods-card__spec th {
  width: 5.8em;
  font-size: 0.82rem;
}

.goods-page .goods-note {
  display: grid;
  gap: 24px;
}

.goods-page .goods-note__heading {
  margin-bottom: 0;
}

.goods-page .goods-note__accordion {
  display: grid;
  gap: 18px;
  width: 100%;
  margin: 0 auto;
}

.goods-page .goods-note__accordion details {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--goods-panel-purple);
  color: #f5f0ea;
  border: 0;
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(95, 40, 120, 0.16);
}

.goods-page .goods-note__accordion details::before {
  content: none;
}

.goods-page .goods-note__accordion summary {
  position: relative;
  min-height: 72px;
  padding: 22px 64px 22px 28px;
  color: #fff;
  cursor: pointer;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: 0;
  list-style: none;
  text-shadow: 2px 2px 0 rgba(225, 6, 18, 0.72);
}

.goods-page .goods-note__accordion summary::-webkit-details-marker {
  display: none;
}

.goods-page .goods-note__accordion summary::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 13px;
  height: 13px;
  border-right: 2px solid #e10612;
  border-bottom: 2px solid #e10612;
  transform: translateY(-62%) rotate(45deg);
  transition: transform 180ms ease;
}

.goods-page .goods-note__accordion details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.goods-page .goods-note__accordion ul {
  margin: 0;
  padding: 0 34px 30px 52px;
}

.goods-page .goods-note__accordion li {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.85;
}

.goods-page .goods-copyright {
  min-height: 1px;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.78rem;
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .goods-page .goods-page-shell {
    padding: 84px 0 78px;
  }

  .goods-page .goods-page-shell__inner {
    width: min(calc(100% - 48px), 920px);
  }

  .goods-page .goods-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .goods-page .goods-goshuin-feature__sites {
    gap: 16px;
  }

  .goods-page .goods-goshuin-feature__site-image {
    min-height: 0;
  }

  .goods-page .goods-goshuin-feature__item {
    grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
    gap: 34px;
  }

  .goods-page .goods-collaboration {
    grid-template-columns: 1fr;
  }

  .goods-page .goods-collaboration__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .goods-page .goods-page-shell {
    padding: 52px 0 58px;
  }

  .goods-page .goods-page-shell__inner {
    width: 100%;
  }

  .goods-page .goods-title-block {
    margin-bottom: 30px;
  }

  .goods-page .goods-title-block p {
    font-size: 1rem;
  }

  .goods-page .goods-title-block h1 {
    font-size: 2.55rem;
  }

  .goods-page .goods-local-nav {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 42px;
  }

  .goods-page .goods-local-nav a {
    width: 100%;
    min-height: 56px;
    font-size: 1rem;
    border-radius: 3px;
  }

  .goods-page .goods-section,
  .goods-page .goods-goshuin-feature,
  .goods-page .goods-collaboration,
  .goods-page .goods-note,
  .goods-page .goods-copyright {
    width: 100%;
    max-width: none;
  }

  .goods-page .goods-section,
  .goods-page .goods-note {
    padding-inline: 16px;
  }

  .goods-page .goods-goshuin-feature + .goods-section,
  .goods-page .goods-section + .goods-collaboration,
  .goods-page .goods-collaboration + .goods-section,
  .goods-page .goods-section + .goods-note,
  .goods-page .goods-note + .goods-copyright {
    margin-top: 56px;
  }

  .goods-page .goods-goshuin-feature + .goods-section {
    padding-top: 34px;
  }

  .goods-page .goods-section__heading {
    margin-bottom: 22px;
    text-align: left;
  }

  .goods-page .goods-section__heading h2,
  .goods-page .goods-goshuin-feature h2,
  .goods-page .goods-collaboration h2,
  .goods-page .goods-note h2 {
    font-size: 1.48rem;
    line-height: 1.35;
  }

  .goods-page .goods-goshuin-feature__title-break {
    display: block;
    margin-top: 0.18em;
  }

  .goods-page .goods-grid,
  .goods-page .goods-collaboration__items {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .goods-page .goods-card__body {
    padding: 16px;
  }

  .goods-page .goods-card__body h3 {
    min-height: 0;
    font-size: 0.98rem;
  }

  .goods-page .goods-card__spec {
    font-size: 0.82rem;
  }

  .goods-page .goods-card__spec th {
    width: 6.2em;
    font-size: 0.9rem;
  }

  .goods-page .goods-image-modal {
    padding: 18px;
  }

  .goods-page .goods-image-modal__dialog {
    gap: 12px;
    max-height: calc(100vh - 36px);
    padding: 14px;
  }

  .goods-page .goods-image-modal__close {
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }

  .goods-page .goods-image-modal__media {
    padding: 28px 16px;
  }

  .goods-page .goods-image-modal__caption p {
    font-size: 0.98rem;
  }

  .goods-page .goods-image-modal__caption span {
    font-size: 0.82rem;
  }

  .goods-page .goods-goshuin-feature {
    padding: 20px;
  }

  .goods-page .goods-goshuin-feature__heading {
    margin-bottom: 18px;
    text-align: center;
  }

  .goods-page .goods-goshuin-feature__layout {
    gap: 16px;
  }

  .goods-page .goods-goshuin-feature__sites,
  .goods-page .goods-goshuin-feature__item {
    grid-template-columns: 1fr;
  }

  .goods-page .goods-goshuin-feature__sites {
    gap: 14px;
  }

  .goods-page .goods-goshuin-feature__site-image {
    min-height: 0;
  }

  .goods-page .goods-goshuin-feature__visual {
    width: min(100%, 240px);
    max-width: 240px;
  }

  .goods-page .goods-goshuin-feature__price {
    font-size: 1.46rem;
  }

  .goods-page .goods-goshuin-feature__text {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .goods-page .goods-collaboration {
    gap: 22px;
    padding: 20px;
  }

  .goods-page .goods-collaboration__lead {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .goods-page .goods-collaboration__reward {
    padding: 14px 15px;
    font-size: 1rem;
  }

  .goods-page .goods-note__accordion summary {
    min-height: 62px;
    padding: 18px 48px 18px 20px;
    font-size: 1rem;
  }

  .goods-page .goods-note__accordion summary::after {
    right: 22px;
    width: 11px;
    height: 11px;
  }

  .goods-page .goods-note__accordion ul {
    padding: 0 22px 24px 34px;
  }

  .goods-page .goods-note__accordion li {
    font-size: 0.9rem;
    line-height: 1.75;
  }
}

/* Special page */
.special-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(225, 6, 18, 0.18),
      transparent 320px
    ),
    radial-gradient(
      circle at 86% 6%,
      rgba(116, 54, 143, 0.2),
      transparent 340px
    ),
    linear-gradient(180deg, #2a211f 0%, #151012 48%, #2a211f 100%);
}

.special-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size:
    100% 4px,
    38px 100%;
  mix-blend-mode: screen;
}

.special-page main,
.special-page footer {
  position: relative;
  z-index: 1;
}

.special-page .special-hero {
  padding: 154px 0 52px;
  color: #fff;
}

.special-page .special-hero__inner,
.special-page .special-tabs,
.special-page .special-page-shell__inner {
  width: min(calc(100% - 80px), 1080px);
  margin: 0 auto;
}

.special-page .special-hero__inner {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 14px;
  padding: 0;
  text-align: center;
}

.special-page .special-hero__inner::before {
  content: "SPECIAL";
  position: relative;
  z-index: 2;
  justify-self: center;
  padding: 0;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  background: transparent;
  border: 0;
  text-shadow: 0 0 14px rgba(225, 6, 18, 0.36);
}

.special-page .special-hero__inner::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: calc(50% + 20px);
  left: 50%;
  width: min(86vw, 780px);
  height: 86px;
  background:
    radial-gradient(circle at 50% 50%, rgba(225, 6, 18, 0.2), transparent 62%),
    linear-gradient(90deg, transparent, rgba(225, 6, 18, 0.08), transparent);
  filter: blur(2px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.special-page .special-hero__kicker {
  margin: 0;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.28rem;
  line-height: 1.2;
  text-shadow: 0 0 18px rgba(225, 6, 18, 0.35);
}

.special-page .special-hero h1 {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 12px clamp(20px, 4vw, 58px) 14px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: 0;
  text-shadow:
    0 5px 0 rgba(0, 0, 0, 0.34),
    0 0 24px rgba(225, 6, 18, 0.26);
  background: transparent;
}

.special-page .special-hero h1::before,
.special-page .special-hero h1::after {
  content: "";
  display: block;
  width: min(100%, 520px);
  height: 2px;
  margin: 0 auto 16px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(225, 6, 18, 0.9),
    rgba(255, 255, 255, 0.34),
    transparent
  );
  box-shadow:
    0 0 14px rgba(225, 6, 18, 0.4),
    0 0 2px rgba(255, 255, 255, 0.28);
}

.special-page .special-hero h1::after {
  margin: 16px auto 0;
}

.special-page .special-hero__lead {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.9;
}

.special-page .special-tabs {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 16px 0 20px;
  background: transparent;
}

.special-page .special-tabs a {
  position: relative;
  display: grid;
  min-height: 64px;
  place-items: center;
  padding: 14px 16px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 0.96rem;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  background: linear-gradient(180deg, #e21622, #9b0710), #e10612;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 14px 30px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(225, 6, 18, 0.18);
  transition:
    filter 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.special-page .special-tabs a::before {
  content: "";
  position: absolute;
  inset: -30% auto -30% -55%;
  width: 44%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.34),
    transparent
  );
  transform: skewX(-22deg);
  transition: left 360ms ease;
  pointer-events: none;
}

.special-page .special-tabs a:hover,
.special-page .special-tabs a:focus-visible {
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 18px 34px rgba(0, 0, 0, 0.34),
    0 0 26px rgba(225, 6, 18, 0.48);
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.special-page .special-tabs a:hover::before,
.special-page .special-tabs a:focus-visible::before {
  left: 112%;
}

.special-page .special-page-shell {
  padding: 50px 0 104px;
}

.special-page .special-page-shell__inner {
  display: grid;
  gap: 72px;
}

.special-page .special-section {
  scroll-margin-top: 112px;
}

.special-page #collaboration {
  scroll-margin-top: 160px;
}

.special-page .special-section--divider {
  padding-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.special-page .special-section__heading {
  display: grid;
  gap: 10px;
  margin: 0 0 40px;
  text-align: left;
}

.special-page .special-section__heading p {
  margin: 0;
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-shadow: 0 0 14px rgba(225, 6, 18, 0.35);
}

.special-page .special-section__heading h2 {
  position: relative;
  width: fit-content;
  margin: 0;
  padding-bottom: 12px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: 0;
  text-shadow:
    0 5px 0 rgba(0, 0, 0, 0.28),
    0 0 22px rgba(225, 6, 18, 0.22);
}

.special-page .special-section__heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(225, 6, 18, 0.95),
    rgba(255, 255, 255, 0.34),
    transparent
  );
  box-shadow: 0 0 14px rgba(225, 6, 18, 0.28);
}

.special-page .special-project-list {
  display: grid;
  gap: 30px;
}

.special-page .special-project-card,
.special-page .special-feature-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(14, 10, 10, 0.94), rgba(27, 18, 22, 0.92)),
    rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(194, 18, 28, 0.14),
    0 22px 64px rgba(0, 0, 0, 0.28);
}

.special-page .special-project-card::before,
.special-page .special-feature-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  pointer-events: none;
}

.special-page .special-project-card::after,
.special-page .special-feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 112px;
  height: 4px;
  background: #e10612;
  box-shadow: 0 0 18px rgba(225, 6, 18, 0.64);
}

.special-page .special-project-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.4fr) minmax(0, 1fr);
  gap: clamp(30px, 4vw, 48px);
  align-items: center;
  padding: 42px 48px;
}

.special-page .special-project-card__visual,
.special-page .special-feature-card__visual {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(225, 6, 18, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 0 28px rgba(0, 0, 0, 0.42);
}

.special-page .tex_red {
  color: var(--red);
}

.special-page .special-project-card__visual img,
.special-page .special-feature-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.88) brightness(0.86);
}

.special-page .special-project-card__body,
.special-page .special-feature-card__body {
  min-width: 0;
}

.special-page .special-project-card h3,
.special-page .special-feature-card h3 {
  position: relative;
  margin: 0;
  padding-bottom: 15px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: 0.03em;
  text-shadow: none;
}

.special-page .special-project-card h3::after,
.special-page .special-feature-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(100%, 420px);
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(225, 6, 18, 0.95),
    rgba(255, 255, 255, 0.32),
    transparent
  );
  box-shadow: 0 0 14px rgba(225, 6, 18, 0.24);
}

.special-page .special-project-card h3 {
  font-size: 1.85rem;
}

.special-page .special-project-card p,
.special-page .special-feature-card p,
.special-page .special-project-card dd,
.special-page .special-feature-card dd,
.special-page .special-note-accordion li {
  color: rgba(255, 255, 255, 0.84);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.8;
}

.special-page .special-project-card p,
.special-page .special-feature-card p {
  margin: 18px 0 0;
}

.special-page .special-project-card__meta,
.special-page .special-feature-card__meta {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.special-page .special-project-card__meta div,
.special-page .special-feature-card__meta div {
  display: grid;
  grid-template-columns: 6.5em minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.special-page .special-project-card dt,
.special-page .special-feature-card dt {
  color: #e10612;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.12rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.special-page .special-project-card dd,
.special-page .special-feature-card dd {
  margin: 0;
}

.special-page .special-feature-card {
  display: grid;
  gap: 28px;
  padding: 42px 48px;
}

.special-page .special-feature-card + .special-feature-card {
  margin-top: 34px;
}

.special-page .special-feature-card--quiet {
  padding: 38px 42px;
  text-align: left;
  background:
    linear-gradient(90deg, rgba(225, 6, 18, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(14, 10, 10, 0.94), rgba(27, 18, 22, 0.92)),
    rgba(0, 0, 0, 0.72);
}

.special-page .special-feature-card--quiet .special-feature-card__body {
  width: 100%;
  margin: 0;
}

.special-page .special-feature-card--quiet h3 {
  width: fit-content;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
}

.special-page .special-feature-card--quiet h3::after {
  left: 0;
  transform: none;
}

.special-page .special-feature-card--menu h3::after {
  left: 50%;
  transform: translateX(-50%);
}

.special-page .special-feature-card--quiet .special-feature-card__meta {
  margin-top: 24px;
  padding: 18px 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.special-page .special-feature-card--menu {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
  padding: clamp(42px, 5vw, 64px) clamp(28px, 5vw, 64px);
  border-color: rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(225, 6, 18, 0.22),
      transparent 420px
    ),
    radial-gradient(
      circle at 12% 100%,
      rgba(116, 54, 143, 0.18),
      transparent 360px
    ),
    linear-gradient(180deg, rgba(14, 10, 10, 0.97), rgba(27, 18, 22, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(194, 18, 28, 0.16),
    0 28px 76px rgba(0, 0, 0, 0.34);
}

.special-page .special-feature-card--menu .special-feature-card__body {
  width: min(100%, 920px);
}

.special-page .special-feature-card__eyebrow {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.18rem;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.special-page .special-feature-card--menu h3 {
  max-width: 100%;
  margin-inline: auto;
  font-size: clamp(1.9rem, 3.45vw, 3.05rem);
  text-shadow:
    0 5px 0 rgba(0, 0, 0, 0.34),
    0 0 24px rgba(225, 6, 18, 0.24);
}

.special-page .special-feature-card__period {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 26px;
  padding: 9px 24px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
  background:
    linear-gradient(90deg, rgba(225, 6, 18, 0.22), rgba(225, 6, 18, 0.06)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(225, 6, 18, 0.32);
  box-shadow: 0 0 18px rgba(225, 6, 18, 0.12);
}

.special-page .special-poppy-caption {
  display: grid;
  gap: 20px;
  width: min(100%, 860px);
  /* margin: 32px auto 0; */
  text-align: left;
}

.special-page .special-poppy-caption p {
  margin: 0;
}

.special-page .special-project-card__title-logo {
  display: inline-block;
  width: min(7.5em, 85px);
  height: auto;
  margin-right: 0.35em;
  vertical-align: middle;
}

.special-page .special-poppy-caption__lead {
  /* position: relative;
  padding: 0 0 0 18px; */
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.9;
}

.special-page .special-poppy-caption__lead::before {
  /* content: ""; */
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 6px;
  height: 6px;
  background: #e10612;
  box-shadow: 0 0 12px rgba(225, 6, 18, 0.52);
}

.special-page .special-poppy-caption__body {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.95;
}

.special-page .special-poppy-caption__benefit {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  background:
    linear-gradient(90deg, rgba(225, 6, 18, 0.2), rgba(116, 54, 143, 0.08)),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(225, 6, 18, 0.36);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    0 0 24px rgba(225, 6, 18, 0.12);
}

.special-page .special-poppy-caption__benefit span {
  display: grid;
  min-height: 34px;
  place-items: center;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 1.04rem;
  line-height: 1.3;
  background: #e10612;
  box-shadow: 0 0 16px rgba(225, 6, 18, 0.26);
}

.special-page .special-poppy-caption__benefit p {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.8;
}

.special-page .special-poppy-caption__notes {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.7;
  list-style: none;
}

.special-page .special-feature-card--menu .special-feature-card__visual {
  width: min(100%, 680px);
  aspect-ratio: 16 / 7.5;
  margin-top: 6px;
}

.special-page .special-feature-card__actions {
  display: flex;
  justify-content: center;
}

.special-page .special-detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 190px;
  min-height: 50px;
  padding: 0 30px;
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.98rem;
  font-weight: 900;
  text-decoration: none;
  background: linear-gradient(180deg, #f01824, #9b050e), #e10612;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 0 24px rgba(225, 6, 18, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition:
    background-color 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.special-page .special-detail-link:hover,
.special-page .special-detail-link:focus-visible {
  background: #b9000a;
  border-color: rgba(255, 255, 255, 0.58);
  transform: translateY(-2px);
}

.special-page .special-detail-link::after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.special-page .special-note-accordion {
  width: min(100%, 920px);
  margin: 25px auto 0;
  padding-top: 6px;
}

.special-page .special-note-accordion summary {
  position: relative;
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 13px 48px 13px 18px;
  color: #fff;
  font-family: "KaiunOP", "KaiunP", sans-serif;
  font-size: 0.94rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
  list-style: none;
  cursor: pointer;
  background:
    linear-gradient(90deg, rgba(225, 6, 18, 0.22), rgba(225, 6, 18, 0.06)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(225, 6, 18, 0.32);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 18px rgba(225, 6, 18, 0.12);
}

.special-page .special-note-accordion summary::-webkit-details-marker {
  display: none;
}

.special-page .special-note-accordion summary::before {
  content: "+";
  display: inline-grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  color: #fff;
  background: rgba(225, 6, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.special-page .special-note-accordion[open] summary::before {
  content: "-";
}

.special-page .special-note-accordion summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(255, 255, 255, 0.82);
  border-bottom: 2px solid rgba(255, 255, 255, 0.82);
  transform: translateY(-68%) rotate(45deg);
  transition: transform 180ms ease;
}

.special-page .special-note-accordion[open] summary::after {
  transform: translateY(-28%) rotate(225deg);
}

.special-page .special-note-accordion ul {
  margin: 0;
  padding: 14px 18px 4px 2em;
  text-align: left;
  background: rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(225, 6, 18, 0.18);
  border-bottom: 1px solid rgba(225, 6, 18, 0.18);
  border-left: 1px solid rgba(225, 6, 18, 0.18);
}

.special-page .special-note-accordion li {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  line-height: 1.75;
}

.special-page .special-note-accordion li + li {
  margin-top: 7px;
}

.special-gomi-profile {
  display: flex;
  gap: 12px;
  align-items: start;
  padding: 7px;
}

.special-gomi-profile img {
  max-width: 235px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .special-page .special-project-card {
    grid-template-columns: 1fr;
  }

  .special-page .special-project-card__visual {
    width: min(100%, 480px);
  }
}

@media (max-width: 640px) {
  .special-page .special-hero {
    padding: 100px 0 34px;
  }

  .special-page .special-hero__inner,
  .special-page .special-tabs,
  .special-page .special-page-shell__inner {
    width: min(calc(100% - 32px), 640px);
  }

  .special-page .special-hero__lead {
    font-size: 0.9rem;
    line-height: 1.75;
    text-align: left;
  }

  .special-page .special-tabs {
    grid-template-columns: repeat(3, minmax(112px, 1fr));
    gap: 8px;
    padding: 10px 0 14px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .special-page .special-tabs a {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .special-page .special-page-shell {
    padding: 34px 0 72px;
  }

  .special-page .special-page-shell__inner {
    gap: 50px;
  }

  .special-page .special-section--divider {
    padding-top: 50px;
  }

  .special-page .special-section__heading {
    margin-bottom: 30px;
    text-align: center;
  }

  .special-page .special-hero__inner {
    gap: 10px;
    padding: 0;
  }

  .special-page .special-hero__inner::before {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
  }

  .special-page .special-hero__inner::after {
    top: calc(50% + 14px);
    width: min(96vw, 340px);
    height: 62px;
  }

  .special-page .special-hero h1 {
    font-size: 1.9rem;
    line-height: 1.35;
    padding: 10px 12px 12px;
  }

  .special-page .special-hero h1::before,
  .special-page .special-hero h1::after {
    margin-bottom: 14px;
  }

  .special-page .special-hero h1::after {
    margin: 14px auto 0;
  }

  .special-page .special-section__heading p {
    font-size: 1.05rem;
  }

  .special-page .special-section__heading h2 {
    margin: 0 auto;
    font-size: 1.62rem;
    line-height: 1.35;
  }

  .special-page .special-project-card,
  .special-page .special-feature-card,
  .special-page .special-feature-card--quiet {
    padding: 24px 20px;
  }

  .special-page .special-project-card h3 {
    font-size: 1.26rem;
    line-height: 1.45;
  }

  .special-page .special-feature-card--quiet h3 {
    font-size: 1.5rem;
    line-height: 1.45;
  }

  .special-page .special-feature-card--quiet .special-feature-card__meta {
    padding: 16px;
  }

  .special-page .special-project-card p,
  .special-page .special-feature-card p,
  .special-page .special-project-card dd,
  .special-page .special-feature-card dd,
  .special-page .special-note-accordion li {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .special-page .special-project-card__meta div,
  .special-page .special-feature-card__meta div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .special-page .special-feature-card--menu h3 {
    font-size: 1.36rem;
    line-height: 1.45;
  }

  .special-page .special-poppy-caption {
    gap: 16px;
    margin-top: 24px;
  }

  .special-page .special-poppy-caption__lead,
  .special-page .special-poppy-caption__body,
  .special-page .special-poppy-caption__benefit p {
    font-size: 0.9rem;
    line-height: 1.82;
  }

  .special-page .special-poppy-caption__benefit {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .special-page .special-poppy-caption__benefit span {
    width: 116px;
    min-height: 32px;
    font-size: 0.94rem;
  }

  .special-page .special-poppy-caption__notes {
    font-size: 0.78rem;
    line-height: 1.65;
  }

  .special-page .special-feature-card__period {
    width: 100%;
    margin-top: 20px;
    padding: 9px 14px;
    font-size: 0.86rem;
  }

  .special-page .special-feature-card--menu .special-feature-card__visual {
    aspect-ratio: 4 / 3;
  }

  .special-page .special-note-accordion summary {
    min-height: 50px;
    padding: 13px 48px 13px 18px;
  }

  .special-page .special-note-accordion summary::after {
    right: 20px;
    width: 9px;
    height: 9px;
  }

  .special-page .special-note-accordion ul {
    padding: 14px 18px 4px 2em;
  }

  .special-page .special-note-accordion li {
    font-size: 0.84rem;
    line-height: 1.75;
  }
}

/* Special page refinement */
.special-page {
  --special-red: #e10612;
  --special-red-dark: #93070f;
  --special-panel: #211719;
  --special-panel-soft: #291d22;
  --special-purple: #4b234d;
  --special-text: rgba(255, 255, 255, 0.9);
  --special-muted: rgba(255, 255, 255, 0.68);
  color: #fff;
  background:
    radial-gradient(circle at 16% 0%, rgba(225, 6, 18, 0.2), transparent 360px),
    radial-gradient(
      circle at 92% 22%,
      rgba(75, 35, 77, 0.28),
      transparent 420px
    ),
    linear-gradient(180deg, #24191a 0%, #171112 46%, #211719 100%);
}

.special-page::before {
  opacity: 0.055;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 6, 18, 0.1) 1px, transparent 1px);
  background-size:
    100% 24px,
    44px 100%;
}

.special-page .special-hero {
  padding: 128px 0 34px;
}

.special-page .special-hero__inner,
.special-page .special-tabs,
.special-page .special-page-shell__inner {
  width: min(calc(100% - 80px), 1120px);
}

.special-page .special-hero__inner {
  gap: 12px;
}

.special-page .special-hero__inner::before {
  color: var(--special-red);
  font-size: 1.18rem;
  letter-spacing: 0.08em;
  text-shadow: 0 0 16px rgba(225, 6, 18, 0.45);
}

.special-page .special-hero__inner::after {
  z-index: -1;
  top: 50%;
  width: min(78vw, 720px);
  height: 130px;
  background:
    radial-gradient(circle at 50% 50%, rgba(225, 6, 18, 0.18), transparent 62%),
    linear-gradient(90deg, transparent, rgba(75, 35, 77, 0.2), transparent);
  filter: blur(6px);
  transform: translate(-50%, -35%);
}

.special-page .special-hero h1 {
  padding: 0;
  font-size: clamp(2.45rem, 5.2vw, 4.4rem);
  line-height: 1.18;
  text-shadow:
    4px 4px 0 rgba(225, 6, 18, 0.6),
    0 0 30px rgba(225, 6, 18, 0.32);
}

.special-page .special-hero h1::before,
.special-page .special-hero h1::after,
.special-page .special-project-card h3::after,
.special-page .special-feature-card h3::after {
  content: none;
}

.special-page .special-tabs {
  gap: 14px;
  padding: 10px 0 14px;
  background: transparent;
  backdrop-filter: none;
}

.special-page .special-tabs a {
  min-height: 54px;
  padding: 14px 18px;
  overflow: hidden;
  font-size: 1.02rem;
  line-height: 1.28;
  background: var(--special-red);
  border: 0;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(225, 6, 18, 0.22);
}

.special-page .special-tabs a:hover,
.special-page .special-tabs a:focus-visible {
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.34),
    0 0 30px rgba(225, 6, 18, 0.42);
}

.special-page .special-page-shell {
  padding: 34px 0 104px;
}

.special-page .special-page-shell__inner {
  gap: 76px;
}

.special-page .special-section {
  position: relative;
}

.special-page .special-section--divider {
  padding-top: 72px;
  border-top: 0;
}

.special-page .special-section--divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(100%, 620px);
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(225, 6, 18, 0.78),
    rgba(255, 255, 255, 0.16),
    transparent
  );
  box-shadow: 0 0 16px rgba(225, 6, 18, 0.2);
}

.special-page .special-section__heading {
  gap: 8px;
  margin: 0 0 34px;
}

.special-page .special-section__heading p {
  font-size: 1rem;
  line-height: 1.25;
}

.special-page .special-section__heading h2 {
  padding-bottom: 0;
  font-size: clamp(1.95rem, 3.8vw, 3rem);
  line-height: 1.22;
  text-shadow:
    3px 3px 0 rgba(225, 6, 18, 0.5),
    0 0 18px rgba(225, 6, 18, 0.24);
}

.special-page .special-section__heading h2::after {
  content: none;
}

.special-page .special-project-list {
  gap: 26px;
}

.special-page .special-project-card,
.special-page .special-feature-card {
  background:
    radial-gradient(circle at 0% 0%, rgba(225, 6, 18, 0.13), transparent 260px),
    linear-gradient(180deg, rgba(36, 24, 26, 0.96), rgba(22, 16, 18, 0.96));
  border: 0;
  border-radius: 4px;
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.055);
}

.special-page .special-project-card::before,
.special-page .special-feature-card::before {
  inset: auto auto auto 0;
  top: 0;
  width: 78px;
  height: 4px;
  background: var(--special-red);
  border: 0;
  box-shadow: 0 0 18px rgba(225, 6, 18, 0.58);
}

.special-page .special-project-card::after,
.special-page .special-feature-card::after {
  inset: 0;
  width: auto;
  height: auto;
  pointer-events: none;
  opacity: 0.075;
  background-image: linear-gradient(
    rgba(255, 255, 255, 0.24) 1px,
    transparent 1px
  );
  background-size: 100% 4px;
}

.special-page .special-project-card {
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 44px);
  padding: clamp(30px, 4vw, 46px);
}

.special-page .special-feature-card {
  gap: 28px;
  padding: clamp(32px, 4vw, 48px);
}

.special-page .special-project-card__visual,
.special-page .special-feature-card__visual {
  background: #130d10;
  border: 0;
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.3),
    0 0 24px rgba(225, 6, 18, 0.08);
}

.special-page .special-project-card h3,
.special-page .special-feature-card h3 {
  padding-bottom: 0;
  letter-spacing: 0;
  text-shadow: 2px 2px 0 rgba(225, 6, 18, 0.44);
}

.special-page .special-project-card h3 {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
}

.special-page .special-feature-card h3 {
  font-size: clamp(1.65rem, 2.7vw, 2.1rem);
}

.special-page .special-project-card p,
.special-page .special-feature-card p,
.special-page .special-project-card dd,
.special-page .special-feature-card dd,
.special-page .special-note-accordion li {
  color: var(--special-text);
  font-size: 1rem;
  line-height: 1.85;
}

.special-page .special-project-card p,
.special-page .special-feature-card p {
  margin-top: 16px;
}

.special-page .special-project-card__meta,
.special-page .special-feature-card__meta {
  gap: 12px;
  margin-top: 22px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.045);
  border-top: 0;
}

.special-page .special-project-card dt,
.special-page .special-feature-card dt {
  color: var(--special-red);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.special-page .special-feature-card--quiet {
  background:
    radial-gradient(circle at 8% 0%, rgba(75, 35, 77, 0.3), transparent 300px),
    linear-gradient(180deg, rgba(38, 27, 33, 0.96), rgba(21, 15, 17, 0.96));
}

.special-page .special-feature-card--quiet .special-feature-card__meta {
  width: min(100%, 760px);
  border: 0;
}

.special-page .special-feature-card--menu {
  padding: clamp(42px, 5vw, 66px) clamp(28px, 5vw, 64px);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(225, 6, 18, 0.24),
      transparent 420px
    ),
    radial-gradient(
      circle at 10% 100%,
      rgba(75, 35, 77, 0.24),
      transparent 360px
    ),
    linear-gradient(180deg, rgba(24, 16, 18, 0.98), rgba(35, 24, 29, 0.96));
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(225, 6, 18, 0.12);
}

.special-page .special-feature-card--menu h3 {
  font-size: clamp(2rem, 3.35vw, 3rem);
  line-height: 1.32;
  text-shadow:
    3px 3px 0 rgba(225, 6, 18, 0.52),
    0 0 24px rgba(225, 6, 18, 0.25);
}

.special-page .special-poppy-caption {
  gap: 18px;
  width: min(100%, 860px);
  margin-top: 32px;
}

.special-page .special-poppy-caption__lead {
  /* padding-left: 18px; */
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.02rem;
  line-height: 1.9;
}

.special-page .special-poppy-caption__lead::before {
  top: 0.62em;
  width: 7px;
  height: 7px;
}

.special-page .special-poppy-caption__body {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.9;
}

.special-page .special-poppy-caption__benefit {
  position: relative;
  grid-template-columns: 122px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 22px;
  background:
    linear-gradient(90deg, rgba(225, 6, 18, 0.22), rgba(75, 35, 77, 0.16)),
    rgba(255, 255, 255, 0.04);
  border: 0;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.special-page .special-poppy-caption__benefit::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--special-red);
  box-shadow: 0 0 16px rgba(225, 6, 18, 0.5);
}

.special-page .special-poppy-caption__benefit span {
  min-height: 34px;
  font-size: 1rem;
  line-height: 1.25;
}

.special-page .special-poppy-caption__benefit p {
  font-size: 1rem;
  line-height: 1.8;
}

.special-page .special-poppy-caption__notes {
  gap: 5px;
  color: var(--special-muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.special-page .special-feature-card__period {
  min-height: 44px;
  margin-top: 24px;
  padding: 9px 24px;
  font-size: 1rem;
  background: linear-gradient(
    90deg,
    var(--special-red),
    var(--special-red-dark)
  );
  border: 0;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(225, 6, 18, 0.24);
}

.special-page .special-feature-card--menu .special-feature-card__visual {
  width: min(100%, 700px);
  margin-top: 8px;
}

.special-page .special-detail-link {
  overflow: hidden;
  font-size: 1.04rem;
  border: 0;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.32),
    0 0 20px rgba(225, 6, 18, 0.22);
}

.special-page .special-detail-link:hover,
.special-page .special-detail-link:focus-visible {
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(225, 6, 18, 0.42);
}

.special-page .special-note-accordion {
  background: rgba(255, 255, 255, 0.035);
}

.special-page .special-note-accordion summary {
  min-height: 58px;
  padding: 18px 64px 18px 28px;
  font-size: 1.04rem;
  background: rgba(225, 6, 18, 0.16);
  border: 0;
}

.special-page .special-note-accordion summary::before {
  content: none;
}

.special-page .special-note-accordion summary::after {
  right: 30px;
  width: 12px;
  height: 12px;
}

.special-page .special-note-accordion ul {
  padding: 18px 30px 26px 48px;
  border: 0;
}

.special-page .special-note-accordion li {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
}

.special-page .special-obaken-notes {
  width: 100%;
  margin: 22px 0 0;
}

.special-page .special-obaken-notes__body {
  padding: 24px 28px 28px;
  text-align: left;
  background: #f7f3f3;
  border-right: 1px solid rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.88);
  border-left: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 0 1px rgba(32, 18, 21, 0.08);
}

.special-page .special-obaken-notes__body section + section {
  margin-top: 24px;
}

.special-page .special-obaken-notes__body h4 {
  margin: 0;
  color: #211619;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.6;
}

.special-page .special-obaken-notes__body h4::before {
  content: "■";
  margin-right: 0.35em;
  color: var(--special-red);
  font-size: 0.82em;
}

.special-page .special-obaken-notes__body ul {
  margin: 8px 0 0;
  padding: 0 0 0 1.4em;
  background: transparent;
  border: 0;
}

.special-page .special-obaken-notes__body li {
  color: #302427;
}

.special-page .special-obaken-notes__body p {
  margin: 20px 0 0;
  color: #302427;
  font-size: 0.9rem;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .special-page .special-hero__inner,
  .special-page .special-tabs,
  .special-page .special-page-shell__inner {
    width: min(calc(100% - 48px), 860px);
  }

  .special-page .special-project-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .special-page .special-project-card__visual {
    width: min(100%, 560px);
  }
}

@media (max-width: 640px) {
  .special-page .special-hero {
    padding: 96px 0 28px;
  }

  .special-page .special-hero__inner,
  .special-page .special-tabs,
  .special-page .special-page-shell__inner {
    width: min(calc(100% - 32px), 640px);
  }

  .special-page .special-hero__inner {
    gap: 8px;
  }

  .special-page .special-hero__inner::before {
    font-size: 0.9rem;
  }

  .special-page .special-hero h1 {
    font-size: 2rem;
    line-height: 1.25;
    padding: 0;
    text-shadow:
      3px 3px 0 rgba(225, 6, 18, 0.55),
      0 0 18px rgba(225, 6, 18, 0.28);
  }

  .special-page .special-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    padding: 10px 0 12px;
    overflow: visible;
  }

  .special-page .special-tabs a {
    min-height: 44px;
    padding: 10px 8px;
    font-size: 0.78rem;
    line-height: 1.28;
  }

  .special-page .special-page-shell {
    padding: 30px 0 72px;
  }

  .special-page .special-page-shell__inner {
    gap: 58px;
  }

  .special-page .special-section--divider {
    padding-top: 58px;
  }

  .special-page .special-section--divider::before {
    left: 50%;
    width: min(100%, 260px);
    transform: translateX(-50%);
  }

  .special-page .special-section__heading {
    margin-bottom: 26px;
    text-align: center;
  }

  .special-page .special-section__heading p {
    font-size: 0.86rem;
  }

  .special-page .special-section__heading h2 {
    font-size: 1.68rem;
    line-height: 1.3;
  }

  .special-page .special-project-list {
    gap: 20px;
  }

  .special-page .special-project-card,
  .special-page .special-feature-card,
  .special-page .special-feature-card--quiet {
    gap: 18px;
    padding: 24px 18px;
  }

  .special-page .special-project-card h3,
  .special-page .special-feature-card h3,
  .special-page .special-feature-card--quiet h3 {
    font-size: 1.28rem;
    line-height: 1.4;
  }

  .special-page .special-feature-card--menu {
    padding: 30px 18px;
  }

  .special-page .special-feature-card--menu h3 {
    font-size: 1.42rem;
    line-height: 1.45;
  }

  .special-page .special-project-card p,
  .special-page .special-feature-card p,
  .special-page .special-project-card dd,
  .special-page .special-feature-card dd,
  .special-page .special-poppy-caption__lead,
  .special-page .special-poppy-caption__body,
  .special-page .special-poppy-caption__benefit p,
  .special-page .special-note-accordion li {
    font-size: 0.88rem;
    line-height: 1.78;
  }

  .special-page .special-project-card__meta,
  .special-page .special-feature-card__meta {
    margin-top: 18px;
    padding: 15px 16px;
  }

  .special-page .special-project-card__meta div,
  .special-page .special-feature-card__meta div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .special-page .special-project-card dt,
  .special-page .special-feature-card dt {
    font-size: 0.94rem;
  }

  .special-page .special-poppy-caption {
    gap: 15px;
    margin-top: 22px;
  }

  .special-page .special-poppy-caption__benefit {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .special-page .special-poppy-caption__benefit span {
    width: 112px;
    min-height: 32px;
    font-size: 0.92rem;
  }

  .special-page .special-poppy-caption__notes {
    font-size: 0.78rem;
    line-height: 1.65;
  }

  .special-page .special-feature-card__period {
    width: 100%;
    min-height: 42px;
    margin-top: 20px;
    padding: 9px 12px;
    font-size: 0.84rem;
  }

  .special-page .special-feature-card--menu .special-feature-card__visual {
    aspect-ratio: 4 / 3;
  }

  .special-page .special-detail-link {
    width: min(100%, 260px);
    min-height: 50px;
    font-size: 0.94rem;
  }

  .special-page .special-note-accordion summary {
    min-height: 50px;
    padding: 14px 48px 14px 18px;
    font-size: 0.92rem;
  }

  .special-page .special-note-accordion summary::after {
    right: 20px;
    width: 9px;
    height: 9px;
  }

  .special-page .special-note-accordion ul {
    padding: 16px 20px 22px 34px;
  }

  .special-page .special-obaken-notes__body {
    padding: 20px 18px 22px;
  }

  .special-page .special-obaken-notes__body ul {
    padding: 0 0 0 1.35em;
  }

  .special-page .special-obaken-notes__body h4 {
    font-size: 0.92rem;
  }

  .special-page .special-obaken-notes__body p {
    font-size: 0.86rem;
    line-height: 1.75;
  }
}

@media (max-width: 420px) {
  .special-page .special-tabs {
    grid-template-columns: 1fr;
  }

  .special-page .special-tabs a {
    font-size: 0.88rem;
  }
}

.goods-page .goods-card__spec {
  border: 1px solid #bcaec2;
}

.goods-page .goods-card__spec th,
.goods-page .goods-card__spec td {
  border: 1px solid #cfc4d3;
}

.goods-page .goods-card__spec th,
.goods-page .goods-card__spec td {
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo",
    sans-serif;
}

.goods-page .goods-image-modal__media img {
  object-fit: contain;
}

.goods-page .goods-card__badge--original {
  background: #c8101d;
}

.goods-page .goods-card__badge--consignment {
  background: #6a2b7e;
}

.goods-page .goods-grid--official > .goods-card[hidden] {
  display: none;
}

.goods-page .goods-pagination {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.goods-page .goods-pagination[hidden] {
  display: none;
}

.goods-page .goods-pagination__numbers {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.goods-page .goods-pagination button {
  min-width: 42px;
  min-height: 42px;
  padding: 8px 13px;
  color: #2a172f;
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo",
    sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  background: #fff;
  border: 1px solid #bcaec2;
  border-radius: 4px;
  cursor: pointer;
}

.goods-page .goods-pagination button:hover,
.goods-page .goods-pagination button:focus-visible,
.goods-page .goods-pagination button[aria-current="page"] {
  color: #fff;
  background: #c8101d;
  border-color: #c8101d;
}

.goods-page .goods-pagination button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.goods-page .goods-pagination button:disabled {
  opacity: 0.42;
  cursor: default;
}

.special-page .special-project-card__visual--captioned {
  grid-template-rows: auto auto;
  place-items: stretch;
}

.special-page .special-project-card__visual--captioned img {
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.special-page .special-project-card__image-caption {
  margin: 0;
  padding: 9px 0 0;
  color: #fff;
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo",
    sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: left;
  background: transparent;
}
