.schedule-public-v2 {
  --schedule-page-accent: var(--schedule-accent, #ff2448);
  --schedule-page-accent-2: #ff7a1a;
  --schedule-page-bg: #050712;
  --schedule-page-panel: rgba(11, 14, 28, 0.74);
  --schedule-page-panel-strong: rgba(13, 17, 33, 0.92);
  --schedule-page-line: color-mix(in srgb, var(--schedule-page-accent) 48%, rgba(255, 255, 255, 0.12));
  --schedule-page-text: #f8f7ff;
  --schedule-page-muted: rgba(248, 247, 255, 0.68);
  --schedule-page-chip: rgba(255, 255, 255, 0.065);
  position: relative;
  padding: clamp(34px, 5vw, 72px) 0 clamp(54px, 6vw, 90px);
  color: var(--schedule-page-text);
  background:
    radial-gradient(circle at 66% 26%, color-mix(in srgb, var(--schedule-page-accent) 18%, transparent), transparent 30%),
    radial-gradient(circle at 18% 76%, rgba(255, 36, 72, 0.13), transparent 28%),
    linear-gradient(180deg, rgba(2, 4, 12, 0.92), var(--schedule-page-bg));
}

html[data-theme="hard_japan"] .schedule-public-v2 {
  --schedule-page-accent: #ff2448;
  --schedule-page-accent-2: #ff7a1a;
}

html[data-theme="neon"] .schedule-public-v2 {
  --schedule-page-accent: #19e6ff;
  --schedule-page-accent-2: #b75cff;
  --schedule-page-bg: #030817;
  --schedule-page-panel: rgba(5, 12, 28, 0.78);
  --schedule-page-panel-strong: rgba(4, 9, 24, 0.94);
  --schedule-page-line: rgba(25, 230, 255, 0.5);
  --schedule-page-chip: rgba(25, 230, 255, 0.08);
}

html[data-theme="light"] .schedule-public-v2,
html[data-theme="light_japan"] .schedule-public-v2 {
  --schedule-page-accent: #1f6b4e;
  --schedule-page-accent-2: #7a1c1c;
  --schedule-page-bg: #f5f7fb;
  --schedule-page-panel: rgba(255, 255, 255, 0.82);
  --schedule-page-panel-strong: rgba(255, 255, 255, 0.96);
  --schedule-page-line: rgba(31, 107, 78, 0.34);
  --schedule-page-text: #111827;
  --schedule-page-muted: rgba(17, 24, 39, 0.66);
  --schedule-page-chip: rgba(17, 24, 39, 0.055);
  background:
    radial-gradient(circle at 70% 24%, rgba(122, 28, 28, 0.08), transparent 28%),
    radial-gradient(circle at 14% 74%, rgba(31, 107, 78, 0.14), transparent 26%),
    linear-gradient(180deg, #fbfcff, var(--schedule-page-bg));
}

.schedule-public-v2 a {
  text-decoration: none;
}

.schedule-public-v2__top,
.schedule-public-v2__layout,
.schedule-public-v2__filters,
.schedule-public-v2__type-tabs,
.schedule-public-v2__range,
.schedule-public-v2__days {
  display: flex;
}

.schedule-public-v2__top {
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.schedule-public-v2__crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--schedule-page-muted);
  font-size: 13px;
}

.schedule-public-v2__crumbs a {
  color: inherit;
}

.schedule-public-v2__crumbs a::after {
  content: "/";
  margin-left: 9px;
  opacity: 0.55;
}

.schedule-public-v2__intro h1 {
  max-width: 780px;
  margin: 0;
  color: var(--schedule-page-text);
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

.schedule-public-v2__intro p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--schedule-page-muted);
  font-size: 16px;
  line-height: 1.5;
}

.schedule-public-v2__reset,
.schedule-public-v2__more,
.schedule-public-v2__calendar-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid var(--schedule-page-line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--schedule-page-panel-strong) 78%, transparent);
  color: var(--schedule-page-text);
  font-size: 14px;
  font-weight: 900;
  transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.schedule-public-v2__reset:hover,
.schedule-public-v2__more:hover,
.schedule-public-v2__calendar-open:hover {
  transform: translateY(-1px);
  border-color: var(--schedule-page-accent);
  background: color-mix(in srgb, var(--schedule-page-accent) 13%, var(--schedule-page-panel-strong));
  color: var(--schedule-page-text);
}

.schedule-public-v2__layout {
  align-items: flex-start;
  gap: clamp(24px, 4vw, 64px);
}

.schedule-public-v2__main {
  flex: 1 1 auto;
  min-width: 0;
}

.schedule-public-v2__aside {
  flex: 0 0 min(30vw, 420px);
  display: grid;
  gap: 18px;
  position: sticky;
  top: 92px;
}

.schedule-public-v2__type-tabs {
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.schedule-public-v2__type,
.schedule-public-v2__range-btn,
.schedule-public-v2__day {
  appearance: none;
  border: 1px solid color-mix(in srgb, var(--schedule-page-text) 12%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--schedule-page-panel) 72%, transparent);
  color: var(--schedule-page-text);
  cursor: pointer;
}

.schedule-public-v2__type {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 900;
}

.schedule-public-v2__type i,
.schedule-public-v2__side-card h2 i,
.schedule-public-v2__line i {
  color: var(--schedule-page-accent);
}

.schedule-public-v2__type.is-active,
.schedule-public-v2__range-btn.is-active,
.schedule-public-v2__day.is-active {
  border-color: var(--schedule-page-accent);
  background: linear-gradient(180deg, var(--schedule-page-accent), color-mix(in srgb, var(--schedule-page-accent) 70%, #240814));
  color: #fff;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--schedule-page-accent) 20%, transparent);
}

html[data-theme="light"] .schedule-public-v2__type.is-active,
html[data-theme="light_japan"] .schedule-public-v2__type.is-active,
html[data-theme="light"] .schedule-public-v2__range-btn.is-active,
html[data-theme="light_japan"] .schedule-public-v2__range-btn.is-active,
html[data-theme="light"] .schedule-public-v2__day.is-active,
html[data-theme="light_japan"] .schedule-public-v2__day.is-active {
  background: linear-gradient(135deg, var(--schedule-page-accent), var(--schedule-page-accent-2));
}

html[data-theme="neon"] .schedule-public-v2__type.is-active,
html[data-theme="neon"] .schedule-public-v2__range-btn.is-active,
html[data-theme="neon"] .schedule-public-v2__day.is-active {
  color: #061020;
  background: linear-gradient(135deg, var(--schedule-page-accent), var(--schedule-page-accent-2));
}

.schedule-public-v2__filters {
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.schedule-public-v2__select {
  position: relative;
  min-width: 156px;
}

.schedule-public-v2__select span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.schedule-public-v2__select select {
  width: 100%;
  min-height: 44px;
  border: 1px solid color-mix(in srgb, var(--schedule-page-text) 13%, transparent);
  border-radius: 8px;
  appearance: none;
  padding: 0 38px 0 16px;
  background: color-mix(in srgb, var(--schedule-page-panel-strong) 84%, transparent);
  color: var(--schedule-page-text);
  font-size: 14px;
  font-weight: 850;
  outline: 0;
}

.schedule-public-v2__select option {
  background: #231617;
  color: #f8f7ff;
}

html[data-theme="neon"] .schedule-public-v2__select option {
  background: #061020;
  color: #eafdff;
}

html[data-theme="light"] .schedule-public-v2__select option,
html[data-theme="light_japan"] .schedule-public-v2__select option {
  background: #fff;
  color: #111827;
}

.schedule-public-v2__select i {
  position: absolute;
  right: 14px;
  top: 50%;
  color: var(--schedule-page-accent);
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px;
}

.schedule-public-v2__reset {
  padding: 0 16px;
}

.schedule-public-v2__range {
  gap: 0;
  width: fit-content;
  margin: 10px 0 12px;
  border: 1px solid color-mix(in srgb, var(--schedule-page-text) 13%, transparent);
  border-radius: 9px;
  overflow: hidden;
}

.schedule-public-v2__range-btn {
  min-width: 112px;
  min-height: 46px;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 900;
}

.schedule-public-v2__days {
  align-items: center;
  gap: 10px;
  margin: 10px 0 18px;
}

.schedule-public-v2__day {
  min-width: 120px;
  min-height: 58px;
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 8px 14px;
}

.schedule-public-v2__day strong {
  color: inherit;
  font-size: 14px;
  font-weight: 950;
}

.schedule-public-v2__day span {
  color: inherit;
  opacity: 0.78;
  font-size: 13px;
}

.schedule-public-v2__day-group {
  margin-bottom: 14px;
}

.schedule-public-v2__day-group h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 9px;
  color: var(--schedule-page-text);
  font-size: 16px;
  font-weight: 950;
  text-transform: uppercase;
}

.schedule-public-v2__day-group h2::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--schedule-page-accent);
}

.schedule-public-v2__day-group h2 em {
  color: var(--schedule-page-muted);
  font-style: normal;
  font-weight: 800;
}

.schedule-public-v2__item {
  min-height: 112px;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) 132px;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
  padding: 10px 14px;
  border: 1px solid var(--schedule-page-line);
  border-radius: 9px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--schedule-page-panel-strong) 88%, transparent), transparent),
    color-mix(in srgb, var(--schedule-page-chip) 90%, transparent);
}

.schedule-public-v2__item.is-hidden,
.schedule-public-v2__day-group.is-hidden {
  display: none;
}

.schedule-public-v2__poster {
  width: 92px;
  height: 92px;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: var(--schedule-page-chip);
}

.schedule-public-v2__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.schedule-public-v2__title {
  display: -webkit-box;
  overflow: hidden;
  color: var(--schedule-page-text);
  font-size: clamp(19px, 1.35vw, 25px);
  font-weight: 950;
  line-height: 1.12;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.schedule-public-v2__chips,
.schedule-public-v2__line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.schedule-public-v2__chips {
  margin-top: 9px;
}

.schedule-public-v2__chip,
.schedule-public-v2__line a,
.schedule-public-v2__line span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 22px;
  padding: 0 8px;
  border: 1px solid color-mix(in srgb, var(--schedule-page-text) 16%, transparent);
  border-radius: 5px;
  color: var(--schedule-page-text);
  font-size: 11px;
  font-weight: 850;
}

.schedule-public-v2__chip--status {
  border-color: color-mix(in srgb, var(--schedule-page-accent) 72%, transparent);
  background: linear-gradient(180deg, var(--schedule-page-accent), color-mix(in srgb, var(--schedule-page-accent) 68%, #76091e));
  color: #fff;
}

html[data-theme="light"] .schedule-public-v2__chip--status,
html[data-theme="light_japan"] .schedule-public-v2__chip--status {
  background: linear-gradient(135deg, var(--schedule-page-accent), var(--schedule-page-accent-2));
}

.schedule-public-v2__line {
  margin-top: 8px;
  color: var(--schedule-page-muted);
  font-size: 13px;
}

.schedule-public-v2__release {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.schedule-public-v2__episode {
  min-width: 118px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--schedule-page-line);
  border-radius: 8px;
  color: var(--schedule-page-text);
  font-size: 14px;
  font-weight: 950;
}

.schedule-public-v2__release span {
  color: var(--schedule-page-accent);
  font-size: 13px;
  font-weight: 950;
  text-align: right;
}

.schedule-public-v2__empty {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--schedule-page-line);
  border-radius: 9px;
  color: var(--schedule-page-muted);
  background: color-mix(in srgb, var(--schedule-page-panel) 76%, transparent);
  font-weight: 800;
  text-align: center;
}

.schedule-public-v2__empty--filtered {
  display: none;
}

.schedule-public-v2__empty--filtered.is-visible {
  display: block;
}

.schedule-public-v2__more {
  width: 100%;
  margin-top: 12px;
}

.schedule-public-v2__calendar-view {
  margin-top: 22px;
}

.schedule-public-v2__calendar-open {
  width: fit-content;
  min-width: 154px;
  margin: 0 0 12px;
  padding: 0 18px;
}

.schedule-public-v2__calendar-open.is-active {
  border-color: var(--schedule-page-accent);
  background: linear-gradient(135deg, var(--schedule-page-accent), var(--schedule-page-accent-2));
  color: #fff;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--schedule-page-accent) 18%, transparent);
}

html[data-theme="neon"] .schedule-public-v2__calendar-open.is-active {
  color: #061020;
}

.schedule-public-v2__side-card {
  padding: 22px;
  border: 1px solid var(--schedule-page-line);
  border-radius: 10px;
  background: color-mix(in srgb, var(--schedule-page-panel-strong) 86%, transparent);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

html[data-theme="light"] .schedule-public-v2__side-card,
html[data-theme="light_japan"] .schedule-public-v2__side-card {
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

.schedule-public-v2__side-card h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--schedule-page-text);
  font-size: 19px;
  font-weight: 950;
  text-transform: uppercase;
}

.schedule-public-v2__side-list {
  display: grid;
  gap: 11px;
  max-height: 360px;
  overflow-y: auto;
  overscroll-behavior: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--schedule-page-accent) transparent;
}

.schedule-public-v2__side-list::-webkit-scrollbar {
  width: 7px;
}

.schedule-public-v2__side-list::-webkit-scrollbar-track {
  background: transparent;
}

.schedule-public-v2__side-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: color-mix(in srgb, var(--schedule-page-accent) 72%, transparent);
}

.schedule-public-v2__side-item {
  display: grid;
  grid-template-columns: 28px 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding-bottom: 11px;
  border-bottom: 1px solid color-mix(in srgb, var(--schedule-page-text) 10%, transparent);
  color: var(--schedule-page-text);
}

.schedule-public-v2__side-item--upcoming {
  grid-template-columns: 58px minmax(0, 1fr) auto;
}

.schedule-public-v2__rank {
  min-width: 24px;
  min-height: 24px;
  display: inline-grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--schedule-page-text) 18%, transparent);
  border-radius: 6px;
  color: var(--schedule-page-text);
  font-size: 12px;
  font-weight: 900;
}

.schedule-public-v2__side-item img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
}

.schedule-public-v2__side-meta {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.schedule-public-v2__side-meta strong {
  overflow: hidden;
  color: var(--schedule-page-text);
  font-size: 14px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.schedule-public-v2__side-meta em {
  color: var(--schedule-page-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.schedule-public-v2__side-time {
  color: var(--schedule-page-accent);
  font-size: 13px;
  font-weight: 950;
}

.schedule-public-v2__pill {
  max-width: 104px;
  padding: 6px 9px;
  border: 1px solid color-mix(in srgb, var(--schedule-page-text) 12%, transparent);
  border-radius: 6px;
  color: var(--schedule-page-muted);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.schedule-public-v2 .schedule-cal {
  --cal-accent: var(--schedule-page-accent);
  --cal-surface: color-mix(in srgb, var(--schedule-page-panel-strong) 86%, transparent);
  --cal-border: var(--schedule-page-line);
  --cal-text: var(--schedule-page-text);
  --cal-muted: var(--schedule-page-muted);
  --cal-item-bg: color-mix(in srgb, var(--schedule-page-chip) 82%, transparent);
  --cal-item-border: color-mix(in srgb, var(--schedule-page-text) 13%, transparent);
  border-radius: 10px;
}

.schedule-public-v2 .schedule-cal__mode.is-active,
.schedule-public-v2 .schedule-cal__nav-btn:hover {
  background: linear-gradient(135deg, var(--schedule-page-accent), var(--schedule-page-accent-2));
  color: #fff;
}

html[data-theme="neon"] .schedule-public-v2 .schedule-cal__mode.is-active,
html[data-theme="neon"] .schedule-public-v2 .schedule-cal__nav-btn:hover {
  color: #061020;
}

html[data-theme="light"] .schedule-public-v2 .schedule-cal__mode.is-active,
html[data-theme="light_japan"] .schedule-public-v2 .schedule-cal__mode.is-active,
html[data-theme="light"] .schedule-public-v2 .schedule-cal__nav-btn:hover,
html[data-theme="light_japan"] .schedule-public-v2 .schedule-cal__nav-btn:hover {
  color: #fff;
}

@media (max-width: 1199px) {
  .schedule-public-v2__layout {
    display: grid;
  }

  .schedule-public-v2__aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    flex-basis: auto;
  }
}

@media (max-width: 991px) {
  .schedule-public-v2__top {
    display: grid;
  }

  .schedule-public-v2__days {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .schedule-public-v2__item {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .schedule-public-v2__poster {
    width: 78px;
    height: 92px;
  }

  .schedule-public-v2__release {
    grid-column: 2;
    justify-items: start;
    grid-auto-flow: column;
    align-items: center;
  }

  .schedule-public-v2__aside {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .schedule-public-v2__type,
  .schedule-public-v2__select,
  .schedule-public-v2__reset,
  .schedule-public-v2__calendar-open {
    width: 100%;
  }

  .schedule-public-v2__range,
  .schedule-public-v2__range-btn {
    width: 100%;
  }

  .schedule-public-v2__range-btn {
    min-width: 0;
  }

  .schedule-public-v2__item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
  }

  .schedule-public-v2__poster {
    width: 72px;
    height: 88px;
  }

  .schedule-public-v2__title {
    font-size: 17px;
  }

  .schedule-public-v2__episode {
    min-width: 100px;
    min-height: 36px;
    font-size: 12px;
  }
}
