@charset "UTF-8";

/* 作者：搭客佬
链接：https://www.hgdjxz.cn/ */

:root {
  --brand: #ff4a2f;
  --brand-dark: #d93620;
  --yellow: #ffc928;
  --ink: #171717;
  --muted: #6c655f;
  --cream: #fff9ef;
  --paper: #ffffff;
  --soft: #fff1df;
  --line: #eadfce;
  --green: #278a55;
  --header-height: 78px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  margin: 0;
  padding-top: var(--header-height);
  color: var(--ink);
  background: var(--cream);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

p,
h1,
h2,
h3,
ol,
ul {
  margin-top: 0;
}

figure {
  margin: 0;
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.header-inner,
.section-inner,
.hero-inner,
.download-inner,
.footer-inner {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.brand > img {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 13px;
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.brand-copy strong {
  font-size: 20px;
  white-space: nowrap;
}

.brand-copy span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.site-nav ul,
.site-footer nav ul {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav ul {
  gap: 38px;
}

.site-nav a {
  position: relative;
  display: block;
  padding: 27px 0 24px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
}

.site-nav a.is-current::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.mobile-download {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: #fff;
  background: var(--brand);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--ink);
  background: #fff;
  cursor: pointer;
}

.menu-toggle i {
  display: block;
  width: 20px;
  height: 20px;
  margin: auto;
  background: center / contain no-repeat;
}

.i-menu {
  background-image: url("../icons/menu.svg") !important;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 201, 40, 0.28), transparent 24%),
    linear-gradient(115deg, #fffaf1 0 53%, #ffe1bd 53% 100%);
}

.hero::after {
  position: absolute;
  right: -100px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 48px solid rgba(255, 74, 47, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 690px;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.92fr);
  gap: 70px;
  padding: 76px 0;
}

.eyebrow,
.section-index,
.download-copy > span {
  display: block;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero-copy h1 {
  margin: 12px 0 2px;
  font-size: clamp(64px, 6.8vw, 102px);
  line-height: 1.08;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.hero-copy h1::first-letter {
  color: var(--brand);
}

.hero-copy h2 {
  margin: 0 0 20px;
  font-size: 32px;
  line-height: 1.35;
}

.hero-copy > p {
  max-width: 590px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
}

.primary-link {
  display: inline-flex;
  min-width: 200px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  background: var(--brand);
  box-shadow: 8px 8px 0 var(--yellow);
  font-size: 17px;
  font-weight: 800;
}

.primary-link i,
.download-link i {
  width: 18px;
  height: 18px;
  background: center / contain no-repeat;
}

.i-arrow {
  background-image: url("../icons/arrow.svg") !important;
}

.download-link .i-arrow {
  background-image: url("../icons/arrow-dark.svg") !important;
}

.age-label {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.hero-points i,
.remind-button i,
.outline-action i,
.solid-action i,
.official-site i,
.back-top i {
  display: inline-block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  background: center / contain no-repeat;
}

.i-crown {
  background-image: url("../icons/crown.svg") !important;
}

.i-bell {
  background-image: url("../icons/bell.svg") !important;
}

.i-grid {
  background-image: url("../icons/grid.svg") !important;
}

.i-shuffle {
  background-image: url("../icons/shuffle.svg") !important;
}

.i-plus {
  background-image: url("../icons/plus.svg") !important;
}

.i-globe {
  background-image: url("../icons/globe.svg") !important;
}

.program-console {
  position: relative;
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 74, 47, 0.22);
  box-shadow: 18px 18px 0 rgba(255, 74, 47, 0.12);
}

.program-console::before {
  position: absolute;
  top: -9px;
  right: 22px;
  left: 22px;
  height: 8px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--ink) 0 14px, transparent 14px 24px);
}

.console-head,
.board-head,
.progress-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.console-head > div > span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.console-head h2 {
  margin: 2px 0 0;
  font-size: 28px;
  line-height: 1.25;
}

.console-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  color: var(--green);
  background: #eaf8ef;
  font-size: 12px;
  font-weight: 700;
}

.console-status i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}

.genre-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 24px;
}

.genre-tabs button,
.episode-picker button,
.genre-grid button {
  min-height: 42px;
  border: 1px solid var(--line);
  background: #f7f5f2;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.genre-tabs button.is-active,
.episode-picker button.is-active,
.genre-grid button.is-active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.current-show {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  margin-top: 22px;
}

.current-show figure {
  width: 150px;
  height: 190px;
  margin-bottom: 0;
  background: var(--soft);
  overflow: hidden;
}

.current-show figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.show-copy {
  min-width: 0;
  align-self: center;
}

.show-tag {
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
}

.show-copy h3 {
  margin: 7px 0 8px;
  font-size: 24px;
}

.show-copy > p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
}

.progress-label {
  font-size: 12px;
}

.progress-track {
  display: block;
  height: 7px;
  margin-top: 7px;
  background: #eee7df;
  overflow: hidden;
}

.progress-track i {
  display: block;
  width: 50%;
  height: 100%;
  background: var(--brand);
}

.episode-picker {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 22px;
}

.console-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.console-actions button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--brand);
  cursor: pointer;
  font-weight: 800;
}

.outline-action {
  color: var(--brand);
  background: #fff;
}

.solid-action {
  color: var(--ink);
  background: var(--yellow);
}

.section {
  padding: 100px 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}

.section-heading h2 {
  margin: 7px 0 0;
  font-size: 46px;
  line-height: 1.18;
  letter-spacing: -0.05em;
}

.section-heading > p {
  max-width: 500px;
  margin-bottom: 5px;
  color: var(--muted);
  text-align: right;
}

.guide {
  background: #fff;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
}

.guide-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  border: 1px solid var(--line);
}

.guide-steps::before {
  position: absolute;
  top: 48px;
  right: 12%;
  left: 12%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--brand), var(--yellow), var(--brand));
}

.guide-steps li {
  position: relative;
  min-height: 255px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.guide-steps li:last-child {
  border-right: 0;
}

.guide-steps li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border: 6px solid #ffe4d2;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.guide-steps h3 {
  margin: 54px 0 8px;
  font-size: 20px;
}

.guide-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.genre-board {
  min-height: 255px;
  padding: 28px;
  color: #fff;
  background: var(--ink);
}

.board-head strong {
  color: var(--yellow);
  font-size: 12px;
}

.genre-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 31px;
}

.genre-grid button {
  color: #fff;
  background: #292929;
  border-color: #454545;
}

.watchlist {
  background: var(--soft);
}

.schedule-board {
  display: grid;
  grid-template-columns: 190px 1fr;
  background: #fff;
  border: 1px solid var(--line);
}

.date-rail {
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  background: #fff5d2;
  border-right: 1px solid var(--line);
}

.date-rail strong {
  color: var(--brand);
  font-size: 30px;
  line-height: 1.15;
}

.date-rail > span {
  color: var(--muted);
  font-size: 13px;
}

.date-rail button {
  padding: 12px 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(23, 23, 23, 0.12);
  cursor: pointer;
  font-size: 13px;
  text-align: left;
}

.date-rail button:first-of-type {
  margin-top: 24px;
}

.date-rail button.is-active {
  color: var(--brand);
  font-weight: 800;
}

.schedule-list {
  padding: 7px 26px;
}

.schedule-list article {
  display: grid;
  min-height: 112px;
  align-items: center;
  grid-template-columns: 72px 92px minmax(0, 1fr) auto 116px;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.schedule-list article:last-child {
  border-bottom: 0;
}

.schedule-list time {
  font-size: 18px;
  font-weight: 800;
}

.schedule-list article > img {
  width: 92px;
  height: 74px;
  object-fit: contain;
  background: var(--soft);
}

.schedule-list h3 {
  margin: 0 0 2px;
  font-size: 17px;
}

.schedule-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.update-state {
  padding: 5px 9px;
  color: var(--green);
  background: #eaf8ef;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.update-state.is-today {
  color: var(--brand-dark);
  background: #fff0e8;
}

.remind-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--brand);
  background: #fff;
  border: 1px solid var(--brand);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.remind-button[aria-pressed="true"] {
  color: #fff;
  background: var(--brand);
}

.screens {
  background: #fff;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.screen-grid figure {
  margin-bottom: 0;
  background: var(--paper);
  border: 1px solid var(--line);
}

.screen-window {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fffaf4;
  overflow: hidden;
}

.screen-window img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.screen-grid figcaption {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-top: 1px solid var(--line);
}

.screen-grid figcaption span {
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

.screen-grid figcaption strong {
  font-size: 17px;
}

.faq {
  background: #fff7ed;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.faq-item > button {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.faq-item > button span {
  font-size: 16px;
  font-weight: 700;
}

.faq-item > button b {
  display: inline-block;
  min-width: 50px;
  color: var(--brand);
  font-size: 12px;
}

.faq-item > button > i,
.summary-state {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.faq-item > button > i::before,
.faq-item > button > i::after,
.summary-state::before,
.summary-state::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  content: "";
  background: currentColor;
}

.faq-item > button > i::after,
.summary-state::after {
  transform: rotate(90deg);
}

.faq-item > button[aria-expanded="true"] > i::after,
.official-site[open] .summary-state::after {
  transform: rotate(0);
}

.faq-answer {
  padding: 0 24px 22px 74px;
  color: var(--muted);
}

.faq-answer p {
  margin-bottom: 0;
}

.official-site {
  width: 100%;
  max-width: var(--container);
  margin-top: 26px;
  background: #fff;
  border: 1px solid var(--ink);
}

.official-site summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.official-site summary::-webkit-details-marker {
  display: none;
}

.official-site summary > span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.official-site > div {
  padding: 0 24px 22px 56px;
}

.official-site > div a {
  color: var(--brand-dark);
  text-decoration: underline;
  overflow-wrap: anywhere;
}

.reviews {
  background: #fff;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  min-height: 255px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: #fffaf2;
  border-top: 4px solid var(--brand);
  box-shadow: inset 0 0 0 1px var(--line);
}

.review-card:nth-child(even) {
  border-top-color: var(--yellow);
}

.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.i-avatar {
  width: 40px;
  height: 40px;
  display: inline-block;
  flex: 0 0 auto;
  background: var(--brand) center / 22px no-repeat;
  background-image: url("../icons/avatar.svg");
  border-radius: 50%;
}

.review-user strong {
  font-size: 14px;
}

.review-rating {
  min-width: 96px;
  margin-left: auto;
  color: #f4a500;
  text-align: right;
  white-space: nowrap;
}

.aiarticle-comment-rating-icon {
  margin-left: 2px;
  color: #f4a500;
  font-size: 14px;
  font-style: normal;
}

.fa-star::before {
  content: "★";
}

.fa-star-o::before {
  content: "☆";
}

.review-card > p {
  margin: 20px 0 14px;
  font-size: 14px;
}

.review-card > time {
  margin-top: auto;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.download {
  padding: 76px 0;
  color: var(--ink);
  background:
    repeating-linear-gradient(90deg, transparent 0 20px, rgba(255, 255, 255, 0.44) 20px 28px),
    var(--yellow);
}

.download-inner {
  position: relative;
  min-height: 172px;
  display: grid;
  align-items: stretch;
  grid-template-columns: 190px 1fr 250px;
  background: #fffaf0;
  border: 2px solid var(--ink);
}

.download-inner::before,
.download-inner::after {
  position: absolute;
  top: -10px;
  width: 20px;
  height: 20px;
  content: "";
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.download-inner::before {
  left: 180px;
}

.download-inner::after {
  right: 240px;
}

.download-index {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--brand);
  border-right: 2px dashed var(--ink);
}

.download-index strong {
  font-size: 60px;
  line-height: 1;
}

.download-index span {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.download-copy {
  align-self: center;
  padding: 28px 38px;
}

.download-copy h2 {
  margin: 6px 0 4px;
  font-size: 28px;
  line-height: 1.3;
}

.download-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.download-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--yellow);
  border-left: 2px dashed var(--ink);
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.site-footer {
  color: #fff;
  background: #171717;
}

.footer-main {
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand .brand-copy span {
  color: #c7c0b7;
}

.site-footer nav ul {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 28px;
}

.site-footer nav a {
  font-size: 13px;
}

.copyright {
  padding: 20px 0 24px;
  margin-bottom: 0;
  color: #c7c0b7;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 12px;
  text-align: center;
}

.back-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: var(--brand);
  border: 1px solid var(--ink);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.i-top {
  background-image: url("../icons/top.svg") !important;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #245bff;
  outline-offset: 3px;
}

@media (hover: hover) {
  .site-nav a:hover::after {
    transform: scaleX(1);
  }

  .primary-link:hover,
  .download-link:hover {
    color: #fff;
    background: var(--brand-dark);
  }

  .primary-link:hover .i-arrow,
  .download-link:hover .i-arrow {
    filter: none;
  }

  .download-link:hover .i-arrow {
    background-image: url("../icons/arrow.svg") !important;
  }

  .genre-tabs button:hover,
  .episode-picker button:hover,
  .genre-grid button:hover {
    border-color: var(--brand);
  }

  .outline-action:hover,
  .remind-button:hover {
    color: #fff;
    background: var(--brand);
  }

  .outline-action:hover i,
  .remind-button:hover i {
    filter: brightness(0) invert(1);
  }

  .solid-action:hover {
    background: #ffdc64;
  }

  .official-site > div a:hover,
  .site-footer nav a:hover {
    color: var(--yellow);
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
  }

  .site-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    width: min(calc(100% - 32px), var(--container));
    display: block;
    margin: 0 auto;
  }

  .site-nav li {
    border-bottom: 1px solid var(--line);
  }

  .site-nav li:last-child {
    border-bottom: 0;
  }

  .site-nav a {
    padding: 14px 4px;
  }

  .site-nav a::after {
    display: none;
  }

  .mobile-actions {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    gap: 32px;
  }

  .hero-copy h1 {
    font-size: 68px;
  }

  .hero-copy h2 {
    font-size: 27px;
  }

  .program-console {
    padding: 22px;
  }

  .current-show {
    grid-template-columns: 110px 1fr;
  }

  .current-show figure {
    width: 110px;
    height: 160px;
  }

  .guide-layout {
    grid-template-columns: 1fr;
  }

  .schedule-list article {
    grid-template-columns: 62px 78px minmax(0, 1fr) auto;
  }

  .schedule-list article > img {
    width: 78px;
    height: 65px;
  }

  .remind-button {
    grid-column: 4;
  }

  .update-state {
    display: none;
  }
}

@media (max-width: 760px) {
  .header-inner,
  .section-inner,
  .hero-inner,
  .download-inner,
  .footer-inner {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand {
    gap: 8px;
  }

  .brand > img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy span {
    max-width: 130px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .mobile-download {
    min-height: 40px;
    padding: 0 12px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: auto;
    background: linear-gradient(180deg, #fffaf1 0 48%, #ffe1bd 48% 100%);
  }

  .hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 58px 0 66px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1 {
    font-size: 50px;
    white-space: normal;
  }

  .hero-copy h2 {
    font-size: 25px;
  }

  .hero-copy > p {
    margin-right: auto;
    margin-left: auto;
    font-size: 15px;
  }

  .hero-points {
    justify-content: center;
    gap: 16px;
  }

  .program-console {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
    box-shadow: 10px 10px 0 rgba(255, 74, 47, 0.12);
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 32px;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .section-heading > p {
    max-width: none;
    margin: 14px 0 0;
    text-align: left;
  }

  .guide-steps {
    grid-template-columns: 1fr;
  }

  .guide-steps::before {
    top: 60px;
    bottom: 60px;
    left: 48px;
    width: 2px;
    height: auto;
  }

  .guide-steps li {
    min-height: 0;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 20px;
    padding: 24px 26px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .guide-steps li:last-child {
    border-bottom: 0;
  }

  .guide-steps h3 {
    margin: 0 0 5px;
  }

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

  .date-rail {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    gap: 18px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .date-rail strong,
  .date-rail > span {
    grid-column: 1 / -1;
  }

  .date-rail button,
  .date-rail button:first-of-type {
    margin-top: 0;
    padding: 8px 0;
  }

  .schedule-list {
    padding: 0 18px;
  }

  .schedule-list article {
    grid-template-columns: 54px 68px minmax(0, 1fr) 42px;
    gap: 10px;
  }

  .schedule-list article > img {
    width: 68px;
    height: 58px;
  }

  .remind-button {
    width: 42px;
    min-height: 42px;
    grid-column: auto;
    padding: 0;
  }

  .remind-button span {
    display: none;
  }

  .screen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .screen-grid figcaption {
    min-height: 62px;
    gap: 8px;
    padding: 12px;
  }

  .screen-grid figcaption strong {
    font-size: 14px;
  }

  .faq-item > button {
    min-height: 68px;
    padding: 15px 16px;
  }

  .faq-item > button b {
    min-width: 36px;
  }

  .faq-answer {
    padding: 0 16px 18px 52px;
  }

  .official-site summary {
    padding: 16px;
  }

  .official-site > div {
    padding: 0 16px 18px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 230px;
  }

  .download {
    padding: 54px 0;
  }

  .download-inner {
    grid-template-columns: 112px 1fr;
  }

  .download-index {
    grid-row: 1 / 3;
  }

  .download-index strong {
    font-size: 48px;
  }

  .download-copy {
    padding: 26px 22px 18px;
  }

  .download-copy h2 {
    font-size: 22px;
  }

  .download-link {
    min-height: 60px;
    border-top: 2px dashed var(--ink);
    border-left: 0;
  }

  .download-inner::before,
  .download-inner::after {
    display: none;
  }

  .footer-main {
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 38px 0 28px;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .site-footer nav ul {
    justify-content: center;
    gap: 14px 22px;
  }

  .back-top {
    right: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
  }

  a,
  button,
  summary {
    -webkit-tap-highlight-color: transparent;
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 420px) {
  .header-inner {
    gap: 8px;
  }

  .brand-copy span {
    max-width: 92px;
    font-size: 12px;
  }

  .mobile-download {
    padding: 0 10px;
    font-size: 12px;
  }

  .console-head {
    align-items: flex-start;
  }

  .console-status {
    padding: 5px 7px;
  }

  .genre-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .current-show {
    grid-template-columns: 92px 1fr;
    gap: 14px;
  }

  .current-show figure {
    width: 92px;
    height: 142px;
  }

  .show-copy h3 {
    font-size: 20px;
  }

  .show-copy > p {
    margin-bottom: 12px;
  }

  .episode-picker {
    gap: 5px;
  }

  .episode-picker button {
    min-height: 38px;
    padding: 0;
  }

  .console-actions {
    grid-template-columns: 1fr;
  }

  .schedule-list article {
    grid-template-columns: 48px 58px minmax(0, 1fr) 40px;
  }

  .schedule-list time {
    font-size: 14px;
  }

  .schedule-list article > img {
    width: 58px;
    height: 52px;
  }

  .download-inner {
    grid-template-columns: 86px 1fr;
  }

  .download-index strong {
    font-size: 40px;
  }

  .download-index span {
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .download-copy {
    padding: 22px 16px 16px;
  }

  .download-copy h2 {
    font-size: 19px;
  }
}
