

:root {
  --header-height: 70px;
  --anchor-offset: calc(var(--header-height) + 20px);
  --bg: #fff5e6;
  --text: #2c1810;
  --muted: #6b5d54;
  --brand: #dc3545;
  --accent: #1a237e;
  --gold: #b8860b;
  --orange: #ff6b35;
  --card: #ffffff;
  --border: #e8ddd4;
  --focus: #4285f4;
  --shadow: 0 8px 24px rgba(0, 0, 0, .12);
  --quick-width: 220px;
  --quick-gap: 24px;
  --quick-anchor: 55vh;
  --quick-stop: 32px;
  --quick-width: clamp(180px, 18vw, 220px);
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(220, 53, 69, .03) 2px, rgba(220, 53, 69, .03) 4px), repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(184, 134, 11, .03) 2px, rgba(184, 134, 11, .03) 4px), var(--bg);
  color: var(--text);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.7;
}

.page-wrapper {

}

#nav-backdrop {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  background: rgba(0, 0, 0, .2);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  touch-action: none;
	
}
body.is-nav-open #nav-backdrop {
  opacity: 0.5;
  visibility: visible;
  pointer-events: auto;
}


@supports(padding: env(safe-area-inset-top)) {
  #nav-backdrop {
    inset: calc(var(--header-height) + env(safe-area-inset-top)) 0 0 0;
  }
}
.mincho {
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: color .3s ease;
}
a:hover, a:focus {
  color: var(--brand);
}
img {
  max-width: 100%;
  display: block;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 4100;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, ::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}
.container {
  width: min(100%, 1080px);
  margin-inline: auto;
  padding-inline: 16px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(to bottom, rgba(255, 245, 230, .95), rgba(255, 240, 220, .95));
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--brand);
  box-shadow: 0 2px 8px rgba(220, 53, 69, .1);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  height: var(--header-height);
  padding: 0 16px;
}

.site-logo {
  margin: 0; /* h1が持つデフォルトの上下マージンをリセット */
  line-height: 1; /* 行の高さをリセットして、予期せぬ隙間を防ぐ */
}
/* ロゴ画像のスタイル調整 */
.brand-logo {
  height: 45px; /* 表示したい高さを指定 */
  width: auto;  /* 横幅は高さに合わせて自動調整 */
  display: block; /* 画像下の余分な隙間を防ぐ */
}

/* 以前のテキストロゴとの間の余白をなくす */
.brand {
  gap: 0;
}



.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 6px;
}
.nav-toggle:focus {
  outline: 2px solid var(--focus);
}
.nav-toggle-bar {
  display: block;
  width: 28px;
  height: 3px;
  margin: 6px auto;
  background: var(--text);
  border-radius: 2px;
}
@media (min-width: 769px) {
  .nav-list {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
}
.nav-list a {
  padding: 8px 16px;
  border-radius: 20px;
  color: var(--text);
  font-weight: 600;
  transition: all .3s ease;
}
.nav-list a:hover, .nav-list a:focus {
  background: var(--brand);
  color: #fff;
}
.hero {
  position: relative;
  overflow: hidden; /* ← ★★★この一行を追加するだけです！★★★ */
  padding-top: 0;
  padding-bottom: 60px;

}
.kv {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.kv-visual, .kv-visual.card {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
}
.kv-visual::before {
  content: "";
  display: block;
  padding-top: 23.4375%; /* 1920x450 (PCの横長比率) */
}
.kv-visual picture, .kv-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.program-info {
  display: inline-block;
  margin: 30px auto 0;
  text-align: center;
}
.program-label {
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 5px;
  letter-spacing: .12em;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
}
.program-spec {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  padding: 0;
  background: none;
  border: none;
}
.spec-item {
  display: inline-flex;
  align-items: flex-end;
  gap: 6px;
  line-height: 1;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
}
.spec-item strong {
  font-size: 50px;
  font-weight: 700;
  color: var(--brand);
  font-family: "Shippori Mincho", serif;
  line-height: 1;
  margin-right: 4px;
}
.spec-divider {
  align-self: flex-end;
  font-size: 32px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  transform: translateY(1px);
}
.kv-copy {
  padding: 0;
}
.kv-title {
  margin: 0 0 24px;
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--brand), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lead {
  margin: 0 0 40px;
  color: var(--muted);
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 500;
}
.broadcast-schedule {
  margin-top: 4px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 0;
}
.broadcast-schedule p {
  position: relative;
  margin: 0;
  padding: 20px 40px;
  text-align: center;
  border-radius: 50px;
}
.broadcast-schedule p:nth-of-type(1) {
  background: linear-gradient(to bottom, #dc3545 0%, #c82333 100%);
  border: 3px solid #a71d2a;
}
.broadcast-schedule p:nth-of-type(2) {
  background: linear-gradient(to bottom, #1a237e 0%, #151c5c 100%);
  border: 3px solid #0f1442;
}
.broadcast-schedule p::before, .broadcast-schedule p::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 60px;
  height: 20px;
  border: 2px solid #7a5a0a;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
  background: linear-gradient(var(--gold), #9b6f0b);
}
.broadcast-schedule p::before {
  top: 0;
  transform: translate(-50%, -100%);
  border-bottom: none;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, .1);
}
.broadcast-schedule p::after {
  bottom: 0;
  transform: translate(-50%, 100%);
  border-top: none;
  border-radius: 0 0 30px 30px;
}
.broadcast-schedule p strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1px;
  letter-spacing: .15em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .2);
}
.broadcast-schedule .date {
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: .05em;
  display: block;
  line-height: 1.3;
  margin-bottom: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .2);
}
.broadcast-schedule .time {
  font-size: 20px;
  color: rgba(255, 255, 255, .9);
  display: block;
}

.section-trailer {
  padding-top: 0;
  padding-bottom: 30px;
}

/* 動画を囲むラッパー */
.youtube-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 のアスペクト比を維持 */
  border-radius: 12px; /* 角を少し丸める */
  overflow: hidden;    /* はみ出した部分を隠す */
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12); /* 影をつけて立体感を出す */
}

/* 動画本体 (iframe) */
.youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


.section {
  padding: 50px 0;
  position: relative;
  scroll-margin-top: var(--anchor-offset);
}
.section h2 {
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 auto 20px;
  text-align: center;
  letter-spacing: .12em;
  color: var(--text);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 0 20px;
}
.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--brand) 50%, var(--gold) 80%, transparent 100%);
}
.overview {
  position: relative;
}
.overview::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
	max-width: 100%;
	height: 600px;
  background: radial-gradient(circle, rgba(184, 134, 11, .05) 0%, transparent 70%);
  pointer-events: none;
}
.overview p {
  max-width: none;
  width: 100%;
  margin-inline: 0;
  text-align: left;
  padding: 28px;
  border: 2px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
  background: rgba(255, 255, 255, .8);
}
.ep-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.ep-card {
  background: linear-gradient(to bottom right, #fff, #fffaf0);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
  display: grid;
  gap: 16px;
  grid-template-areas: "header header""image desc""image schedule";
  grid-template-columns: 300px 1fr;
  align-items: start;
  position: relative;
  overflow: hidden;
  scroll-margin-top: var(--anchor-offset);
}
.ep-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(220, 53, 69, .05) 0%, transparent 70%);
  border-radius: 50%;
}
.ep-card .ep-image {
  align-self: center;
  justify-self: stretch;
}
.ep-header {
  grid-area: header;
  display: flex;
  align-items: baseline;
  gap: 20px;
  border-bottom: 3px solid var(--brand);
  padding-bottom: 16px;
  margin-bottom: 8px;
}
.ep-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
  font-family: "Shippori Mincho", serif;
}
.ep-title {
  margin: 0;
  font-size: clamp(26px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--text);
}
.ep-location {
  margin-left: auto;
  color: #fff;
  background: var(--accent);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}
.ep-image {
  grid-area: image;
  background: linear-gradient(135deg, #f5f5f5, #fafafa);
  border-radius: 12px;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 14px;
  border: 2px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}
.ep-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ep-description {
  grid-area: desc;
  margin: 0 0 16px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
}
.ep-broadcast {
  grid-area: schedule;
  font-size: 14px;
  background: rgba(255, 255, 255, .6);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow-x: auto;
}
.ep-broadcast table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.ep-broadcast thead {
  background: var(--gold);
  color: #fff;
}
.ep-broadcast th, .ep-broadcast td {
  padding: 10px 12px;
  text-align: left;
  border: 1px solid var(--border);
  white-space: nowrap;
  word-break: keep-all;
}
.ep-broadcast th {
  font-weight: 700;
}
.ep-broadcast tbody tr:nth-child(even) {
  background: rgba(184, 134, 11, .05);
}
.ep-broadcast td {
  color: var(--muted);
}
.cast-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.card {
  background: linear-gradient(to bottom, #fff, #fffaf0);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
}
.cast-card {
  text-align: center;
  position: relative;
}
.cast-card .comment {
  text-align: left;
}
.cast-card .avatar {
  width: clamp(120px, 22vw, 180px);
  margin-inline: auto;
  margin-bottom: 16px;
  aspect-ratio: auto;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .12);
}
.cast-card .avatar img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.cast-name {
  font-size: 20px;
  margin-bottom: 6px;
}
.role {
  font-size: 13px;
  padding: 3px 12px;
  margin-bottom: 12px;
}
.comment {
  font-size: 14px;
}
.site-footer {
  background: linear-gradient(to bottom, var(--bg), #f5e6d3);
  border-top: 3px solid var(--brand);
  padding: 48px 0 32px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-nav a {
  color: var(--text);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all .3s ease;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--brand);
  color: #fff;
}
#episodes .container {
  position: relative;
}
.ep-quick {
  position: absolute;
  top: 0;
  bottom: var(--quick-stop);
  left: 0;
  width: 0;
  overflow: visible;
  z-index: 10;
}
.ep-quick-list {
  position: sticky;
  top: var(--quick-anchor);
  transform: translate(calc(-100% - var(--quick-gap)), -50%);
  left: 0;
  width: var(--quick-width);
  max-height: calc(100vh - 32px);
  overflow: auto;
  list-style: none;
  margin: 0;
  padding: 0 4px 0 0;
  display: grid;
  gap: 8px;
}
.ep-quick-list a {
  display: block;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  text-align: center;
  transition: background .2s, color .2s, border-color .2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
}
/* hoverだけ塗りつぶし */
@media (hover: hover) and (pointer: fine) {
.ep-quick-list a:hover {
background: var(--brand);
color: #fff;
border-color: var(--brand);
}
}

@media (hover: none), (pointer: coarse) {
.ep-quick-list a:hover {
background: #fff; 
color: var(--text);
border-color: var(--border);
}

	.ep-quick-list a:active {
transform: translateY(1px);
box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
}


.ep-quick-list a[aria-current="true"] {
  background: linear-gradient(135deg, var(--brand), var(--orange));
  color: #fff;
  border-color: transparent;
}
@media (max-width: 768px) {
  .site-header {
    z-index: 4000;
    background: rgba(255, 245, 230, 1);
  }
  .header-inner {
    position: relative;
    grid-template-columns: auto 1fr auto;
  }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    position: fixed;
    top: 13px;
    right: 12px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: linear-gradient(to bottom, rgba(255, 245, 230, 0.98), rgba(255, 240, 220, 0.98));
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
    color: var(--muted);
    z-index: 4100;
--bar-w: 24px;
--bar-h: 2px;
--bar-gap: 7px; 
	
	}
.nav-toggle-bar {
position: absolute;
left: 50%;
top: 50%;
width: var(--bar-w);
height: var(--bar-h);
margin: 0;
background: currentColor;
border-radius: 1px;
transform-origin: center;
transition: transform .25s ease, opacity .2s ease, background-color .2s ease;
transform: translate(-50%, -50%); 
}

/* 通常時：中央から上下にオフセット */
.nav-toggle-bar:nth-child(1) { transform: translate(-50%, calc(-50% - var(--bar-gap))); }
.nav-toggle-bar:nth-child(2) { transform: translate(-50%, -50%); }
.nav-toggle-bar:nth-child(3) { transform: translate(-50%, calc(-50% + var(--bar-gap))); }

/* アクティブ時：中央に重ねて回転（「×」） */
.nav-toggle.is-active .nav-toggle-bar:nth-child(1) {
transform: translate(-50%, -50%) rotate(45deg);
}
.nav-toggle.is-active .nav-toggle-bar:nth-child(2) {
opacity: 0;
}
.nav-toggle.is-active .nav-toggle-bar:nth-child(3) {
transform: translate(-50%, -50%) rotate(-45deg);
}
	
  .nav-toggle.is-active {
    color: var(--brand);
    background: linear-gradient(to bottom, rgba(255, 245, 230, 1), rgba(255, 240, 220, 1));
    border-color: var(--brand);
    box-shadow: 0 2px 8px rgba(220, 53, 69, .16);
  }
  .nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    background: rgba(255, 245, 230, .98);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--brand);
    z-index: 4050;
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0s 0.3s;
    display: none;
  }
  .nav.is-open {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.3s ease;
    display: block;
  }
  .nav-list {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 12px;
    list-style: none;
    margin: 0;
  }
  .footer-nav {
    display: none;
  }
  .hero, .kv, .kv-visual {
    position: relative;
    z-index: 1;
	  overflow: hidden;	  
  }
	
  .kv-visual::before {
    padding-top: 75%; /* ★★★ 4:3 (3 / 4 * 100) の比率 ★★★ */
  }	
}
@media (max-width: 900px) {
	
:root {
--anchor-offset: calc(var(--header-height) + 64px);
}	
	
  .ep-quick {
    position: sticky;
    top: var(--header-height);
    left: auto;
    bottom: auto;
    width: auto;
    height: auto;
    margin: 0;
    z-index: 20;
  }
  .ep-quick-list {
    position: static;
    transform: none;
    left: auto;
    width: auto;
    max-height: none;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 8px 12px;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
  }
  .ep-quick-list a {
    white-space: nowrap;
    padding: 8px 12px;
  }
  .ep-card {
    grid-template-areas: "header""image""desc""schedule";
    grid-template-columns: 1fr;
    padding: 15px;
  }
  .ep-image {
    max-width: 100%;
    margin-bottom: 16px;
  }
  .ep-header {
    flex-wrap: wrap;
    gap: 12px;
  }
  .ep-location {
    margin-left: 0;
    width: auto;
    max-width: 50vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .ep-card .ep-image {
    align-self: start;
  }
}
@media (max-width: 1600px) {
  .ep-quick-list {
    border-bottom: 0;
    box-shadow: none;
  }
}
@media (max-width: 1600px) and (min-width: 901px) {
  .ep-quick {
    position: sticky;
    top: var(--header-height);
    left: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    margin: 0;
    z-index: 20;
  }
  .ep-quick-list {
    position: static;
    transform: none;
    left: auto;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 12px;
    padding: 8px 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
  }
  .ep-quick-list a {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: center;
  }
}
@media (min-width: 600px) {
  .cast-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .cast-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 600px) {
  .hero {
	  overflow: hidden;
	  padding-bottom: 40px;
  }
  .section {
    padding: 30px 0;
  }
  .program-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 16px auto 0;
    text-align: center;
  }
  .program-label {
    white-space: nowrap;
    margin: 0;
    letter-spacing: .08em;
    font-size: clamp(16px, 4.8vw, 20px);
    line-height: 1.2;
  }
  .program-spec {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: 6px;
    white-space: nowrap;
  }
  .spec-item {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
  }
  .spec-item strong {
    font-size: clamp(22px, 8vw, 28px);
    line-height: 1;
  }
  .spec-divider {
    white-space: nowrap;
    font-size: clamp(18px, 6vw, 22px);
    line-height: 1;
  }
  .broadcast-schedule {
	  
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    padding: 0 1px;
	 padding-bottom: 16px;	  
  }
  .broadcast-schedule p {
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
    padding: 15px 10px 20px 10px;
    border-radius: 25px;
  }
  .broadcast-schedule p::before, .broadcast-schedule p::after {
    width: 36px;
    height: 12px;
  }
  .broadcast-schedule p strong {
    font-size: 14px;
    margin-bottom: 5px;
    letter-spacing: .12em;
  }
  .broadcast-schedule .date {
    font-size: clamp(1.1rem, 4.5vw, 1.4rem);
    line-height: 1.2;
  }
  .broadcast-schedule .time {
    font-size: 14px;
    line-height: 1.2;
  }
  .ep-header {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 6px;
  }
  .ep-number {
    display: block;
    line-height: 1.2;
  }
  .ep-title {
    display: block;
    margin: 0;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    width: 100%;
    line-height: 1.3;
  }
  .ep-location {
    font-size: 15px;
    padding: 5px 10px;
    border-radius: 14px;
    line-height: 1.2;
  }
  .ep-broadcast {
    font-size: 12px;
    padding: 0px;
    grid-area: schedule;
    background: rgba(255, 255, 255, .6);
    border-radius: 0px;
    border: 0px solid var(--border);
    overflow-x: auto;
  }
  .ep-broadcast table {
    min-width: 0;
    width: 100%;
    table-layout: fixed;
  }
  .ep-broadcast th, .ep-broadcast td {
    white-space: normal;
    word-break: break-word;
    padding: 1px 8px;
  }
}
.ep-title ruby {
  ruby-position: over;
}
.ep-title rt {
  font-size: 0.5em;
  line-height: 1;
  color: var(--muted);
  white-space: nowrap;
}
.ep-title rb {
  letter-spacing: 0;
  padding: 0 0.02em;
}
@media (max-width: 600px) {
  .ep-title rt {
    font-size: 0.4em;
  }
}