@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
:root {
  --font-display: 'Dela Gothic One', cursive;
  --font-body: 'Noto Sans JP', "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  --bg-a: #1b0c3f;
  --bg-b: #4b0e6b;
  --bg-c: #0d1b4b;
  --bg-d: #6a0f6e;
  --card-bg: #fffdf8;
  --text-main: #1b0c3f;
  --text-sub: #6b5f8a;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  background: linear-gradient(120deg, var(--bg-a), var(--bg-b), var(--bg-c), var(--bg-d));
  background-size: 400% 400%;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.6;
  min-height: 100vh;
  animation: gradientShift 20s ease infinite;
}

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.skip-link {
  position: absolute;
  top: 0;
  left: -999rem;
  z-index: 200;
  background: var(--white);
  color: var(--text-main);
  font-weight: 700;
  padding: 1.2rem 2rem;
  border-radius: 0 0 0.8rem 0;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
}

.page-blobs {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.page-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(6rem);
  opacity: 0.55;
  mix-blend-mode: screen;
}

.page-blob--1 {
  width: 34rem;
  height: 34rem;
  background: #ff3b7a;
  top: -10rem;
  left: -8rem;
  animation: floatA 14s ease-in-out infinite;
}

.page-blob--2 {
  width: 28rem;
  height: 28rem;
  background: #29e0e0;
  bottom: -8rem;
  right: -6rem;
  animation: floatB 16s ease-in-out infinite;
}

.page-blob--3 {
  width: 24rem;
  height: 24rem;
  background: #ffd23f;
  top: 42vh;
  right: 10vw;
  animation: floatC 12s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(2rem, 3rem);
  }
}
@keyframes floatB {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-2.5rem, -2rem);
  }
}
@keyframes floatC {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(1.5rem, -2.5rem) scale(1.08);
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-blob--1, .page-blob--2, .page-blob--3 {
    animation: none;
  }
}
@media print {
  .page-blobs {
    display: none;
  }
}
.hero {
  position: relative;
  padding: 6rem 2rem 5rem;
  text-align: center;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 60rem;
  margin: 0 auto;
  background: rgba(10, 4, 30, 0.35);
  backdrop-filter: blur(0.6rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2rem;
  padding: 3rem 2.5rem;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.3rem;
  color: #ffd23f;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 9vw, 5.6rem);
  margin: 1rem 0;
  text-shadow: 0.3rem 0.3rem 0 rgba(0, 0, 0, 0.25);
}

.hero-note {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
}

.page-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 1.6rem;
}

.page-nav a {
  color: var(--white);
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
  border-bottom: 0.2rem solid rgba(255, 255, 255, 0.4);
  padding-bottom: 0.1rem;
  transition: border-color 0.2s ease;
}

.page-nav a:hover,
.page-nav a:focus-visible {
  border-color: #ffd23f;
}

main {
  padding: 1rem 2rem 6rem;
}

.timetable {
  list-style: none;
  max-width: 68rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.noscript-msg,
.act-error {
  display: block;
  max-width: 68rem;
  margin: 0 auto 2rem;
  padding: 1.6rem 2rem;
  background: var(--card-bg);
  color: var(--text-main);
  border-radius: 1.2rem;
  text-align: center;
  font-weight: 700;
}

.now-rail {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1.8rem;
  display: flex;
  justify-content: center;
  pointer-events: none;
  z-index: 40;
}

.now-rail-line {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 0.2rem;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 0.2rem;
}

.now-marker {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.now-marker[hidden] {
  display: none;
}

.now-marker-line {
  width: 1.8rem;
  height: 0.4rem;
  border-radius: 0.2rem;
  background: var(--white);
  box-shadow: 0 0 0.4rem rgba(255, 255, 255, 0.9), 0 0 1.1rem rgba(255, 255, 255, 0.65);
}

@media print {
  .now-rail {
    display: none;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.act {
  opacity: 0;
  animation: actIn 0.6s ease forwards;
  animation-delay: calc(var(--i) * 0.08s);
}

@keyframes actIn {
  from {
    opacity: 0;
    transform: translateY(2.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .act {
    animation: none;
    opacity: 1;
  }
}
a.act-card {
  cursor: pointer;
}

span.act-card {
  cursor: default;
}

.act-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  background: var(--card-bg);
  border-radius: 1.8rem;
  padding: 1.6rem 2rem;
  color: var(--text-main);
  text-decoration: none;
  border: 0.3rem solid rgb(var(--accent));
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-radius 0.3s ease;
}

.act-card:hover,
.act-card:focus-visible,
.act-card.is-active {
  transform: translateY(-0.6rem) scale(1.03);
  box-shadow: 0 1.4rem 2.8rem -0.6rem rgb(var(--accent)/0.75);
}

.act-card:focus {
  outline: none;
}

.act-card:focus-visible {
  outline: 0.3rem solid var(--white);
  outline-offset: 0.4rem;
  animation: focusPulse 1.4s ease-in-out infinite;
}

@keyframes focusPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgb(var(--accent)/0.6), 0 1.4rem 2.8rem -0.6rem rgb(var(--accent)/0.75);
  }
  50% {
    box-shadow: 0 0 0 1.2rem rgb(var(--accent)/0), 0 1.4rem 2.8rem -0.6rem rgb(var(--accent)/0.75);
  }
}
@media (prefers-reduced-motion: reduce) {
  .act-card {
    transition: none;
  }
  .act-card:hover,
  .act-card:focus-visible {
    transform: none;
  }
  .act-card:focus-visible {
    animation: none;
  }
}
.act-order {
  flex: none;
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgb(var(--accent));
  line-height: 1;
  transition: transform 0.3s ease;
}

.act-card:hover .act-order,
.act-card:focus-visible .act-order {
  transform: rotate(-6deg) scale(1.15);
}

.act-main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.act-time {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: 0.05rem;
}

.act-time-sep {
  margin: 0 0.4rem;
}

.act-name {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1.9rem;
  line-height: 1.3;
  word-break: break-word;
}

.act-name .char {
  display: inline-block;
  min-width: 0.125em;
}

.act-card.is-active .act-name .char {
  animation: charBounce 1s ease-in-out infinite;
  animation-delay: calc(var(--ci) * 0.06s);
}

@keyframes charBounce {
  0%, 60%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-0.6rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .act-card.is-active .act-name .char {
    animation: none;
  }
}
.act-play {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  background: rgb(var(--accent));
  color: var(--white);
  transition: transform 0.35s ease, background 0.3s ease;
}

.act-card:hover .act-play,
.act-card:focus-visible .act-play {
  transform: rotate(90deg) scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
  .act-order,
  .act-play {
    transition: none;
  }
  .act-card:hover .act-order,
  .act-card:focus-visible .act-order,
  .act-card:hover .act-play,
  .act-card:focus-visible .act-play {
    transform: none;
  }
}
@media (max-width: 480px) {
  .act-card {
    gap: 1.2rem;
    padding: 1.4rem 1.6rem;
  }
  .act-order {
    font-size: 2.4rem;
  }
  .act-name {
    font-size: 1.6rem;
  }
}
.site-footer {
  text-align: center;
  padding: 3rem 2rem 5rem;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

@media print {
  body {
    background: var(--white);
    color: var(--text-main);
    animation: none;
  }
  .hero-inner {
    background: none;
    border: none;
    backdrop-filter: none;
  }
  .hero-eyebrow,
  .hero-note {
    color: var(--text-main);
  }
  .hero-title {
    text-shadow: none;
  }
  .act {
    opacity: 1;
    animation: none;
  }
  .act-card {
    box-shadow: none;
    break-inside: avoid;
  }
  .act-play {
    display: none;
  }
  .act-card.is-active .act-name .char {
    animation: none;
  }
  .site-footer {
    color: var(--text-main);
  }
}

/*# sourceMappingURL=style.css.map */
