:root {
  color-scheme: light;
  --ink: #141414;
  --muted: #66615c;
  --paper: #f7f4ef;
  --surface: #ffffff;
  --line: #ddd6cb;
  --gold: #b38a35;
  --red: #b8272f;
  --teal: #0c6f73;
  --charcoal: #202329;
  --shadow: 0 18px 44px rgba(20, 20, 20, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic",
    Meiryo, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.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: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px 32px;
  background: rgba(247, 244, 239, 0.94);
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: var(--surface);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  background: var(--ink);
  border: 2px solid var(--gold);
}

.brand strong {
  display: block;
  font-size: 17px;
  line-height: 1.25;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.global-nav a {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
}

.global-nav a:hover,
.global-nav a:focus-visible {
  color: var(--ink);
  background: rgba(179, 138, 53, 0.14);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 44px;
  align-items: center;
  max-width: 1180px;
  min-height: 690px;
  margin: 0 auto;
  padding: 54px 32px 38px;
}

.hero-copy {
  padding-bottom: 0;
}

.kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.18;
}

.lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: #38342f;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid var(--ink);
  border-radius: 8px;
}

.button.primary {
  color: var(--surface);
  background: var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
}

.button.light {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.5);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.15);
  outline: none;
}

.hero-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #d9d4ce;
  box-shadow: var(--shadow);
}

.hero-media img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.hero-stat {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 178px;
  padding: 16px;
  color: var(--surface);
  background: rgba(20, 20, 20, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.hero-stat span {
  display: block;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
}

.hero-stat small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.5;
}

.topic-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: 1180px;
  margin: 0 auto 54px;
  padding: 0 32px;
}

.topic-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.topic-strip a:last-child {
  border-right: 1px solid var(--line);
}

.topic-strip a:hover,
.topic-strip a:focus-visible {
  color: var(--surface);
  background: var(--teal);
  outline: none;
}

.feature,
.section-shell,
.ranking-section,
.split-section,
.profile-section,
.newsletter {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 32px;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  padding-top: 18px;
}

.feature-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-main img {
  height: 100%;
  min-height: 398px;
  object-fit: cover;
  background: #eee8de;
}

.feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
}

.category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 28px;
  padding: 3px 10px;
  margin: 0 0 12px;
  color: var(--surface);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  background: var(--teal);
  border-radius: 8px;
}

.feature-text h2,
.section-head h2,
.program-copy h2,
.profile-section h2,
.newsletter h2 {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: 36px;
  line-height: 1.35;
}

.feature-text p:not(.category) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.text-link {
  width: fit-content;
  margin-top: 24px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.feature-side {
  display: grid;
  gap: 12px;
}

.feature-side div {
  padding: 24px;
  color: var(--surface);
  background: var(--charcoal);
  border-radius: 8px;
}

.feature-side div:nth-child(2) {
  background: var(--red);
}

.feature-side div:nth-child(3) {
  background: var(--teal);
}

.feature-side span {
  display: block;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
}

.feature-side p {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.65;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head.inverted {
  color: var(--surface);
}

.section-head.inverted .kicker {
  color: #f1c36d;
}

.search-box {
  display: flex;
  min-width: 300px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.search-box input {
  width: 100%;
  min-height: 46px;
  padding: 9px 14px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: none;
}

.search-box button {
  min-width: 86px;
  color: var(--surface);
  font-size: 13px;
  font-weight: 800;
  background: var(--ink);
  border: 0;
  border-radius: 0 7px 7px 0;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.filter-tabs button {
  min-height: 40px;
  padding: 8px 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.filter-tabs button.active,
.filter-tabs button:hover,
.filter-tabs button:focus-visible {
  color: var(--surface);
  background: var(--ink);
  border-color: var(--ink);
  outline: none;
}

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

.article-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.article-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #e8e1d6;
}

.article-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.article-meta span:first-child {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  color: var(--red);
  background: rgba(184, 39, 47, 0.09);
  border-radius: 8px;
}

.article-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}

.article-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.article-card a {
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.empty-state {
  margin: 28px 0 0;
  padding: 20px;
  color: var(--muted);
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.video-band {
  margin: 24px 0 0;
  padding: 74px 32px;
  background: var(--charcoal);
}

.video-band .section-head,
.video-grid {
  max-width: 1116px;
  margin-right: auto;
  margin-left: auto;
}

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

.video-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  color: var(--surface);
  background: #111318;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.video-card img {
  height: 220px;
  object-fit: cover;
  opacity: 0.78;
}

.video-card p {
  margin: 0;
  padding: 22px 20px 8px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}

.video-card span {
  display: block;
  padding: 0 20px 22px;
  color: #f1c36d;
  font-size: 12px;
  font-weight: 900;
}

.play-badge {
  position: absolute;
  top: 170px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 72px;
  height: 38px;
  color: var(--surface);
  font-size: 12px;
  font-weight: 900;
  background: var(--red);
  border-radius: 8px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}

.program-copy p:not(.kicker) {
  margin: 20px 0 0;
  color: var(--muted);
}

.program-list {
  display: grid;
  gap: 12px;
}

.program-list a {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.program-list a:hover,
.program-list a:focus-visible {
  border-color: var(--teal);
  box-shadow: 0 10px 26px rgba(12, 111, 115, 0.12);
  outline: none;
}

.program-list strong {
  color: var(--teal);
  font-size: 16px;
}

.program-list span {
  color: var(--muted);
  font-size: 14px;
}

.ranking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.76fr);
  gap: 28px;
  align-items: stretch;
}

.ranking-layout img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.ranking-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: ranking;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.ranking-list li {
  counter-increment: ranking;
  background: var(--surface);
}

.ranking-list a {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 84px;
  padding: 16px 20px 16px 0;
  font-weight: 800;
  line-height: 1.55;
}

.ranking-list a::before {
  content: counter(ranking);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 900;
}

.ranking-list a:hover,
.ranking-list a:focus-visible {
  color: var(--red);
  outline: none;
}

.profile-section {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.profile-section img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.profile-section p:not(.kicker) {
  margin: 20px 0 0;
  color: var(--muted);
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.profile-links a {
  min-height: 42px;
  padding: 8px 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-links a:hover,
.profile-links a:focus-visible {
  color: var(--surface);
  background: var(--teal);
  border-color: var(--teal);
  outline: none;
}

.newsletter {
  margin-bottom: 40px;
  color: var(--surface);
  text-align: center;
  background: var(--teal);
  border-radius: 8px;
}

.newsletter .kicker {
  color: #f1c36d;
}

.newsletter p:not(.kicker) {
  max-width: 640px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.84);
}

.newsletter-form {
  display: flex;
  max-width: 560px;
  margin: 28px auto 0;
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  min-height: 52px;
  padding: 12px 16px;
  border: 0;
  outline: none;
}

.newsletter-form button {
  min-width: 126px;
  color: var(--surface);
  font-weight: 800;
  background: var(--red);
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 28px;
  align-items: center;
  padding: 32px;
  color: var(--surface);
  background: var(--ink);
}

.footer-brand .brand-mark {
  border-color: rgba(255, 255, 255, 0.32);
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.64);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

@media (max-width: 980px) {
  .hero,
  .feature,
  .split-section,
  .ranking-layout,
  .profile-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 54px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-media,
  .hero-media img {
    min-height: 470px;
  }

  .feature {
    padding-top: 40px;
  }

  .feature-main {
    grid-template-columns: 1fr;
  }

  .feature-main img {
    height: auto;
    min-height: 320px;
  }

  .article-grid,
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topic-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .topic-strip a:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .topic-strip a:nth-child(n + 4) {
    border-top: 0;
  }

  .profile-section img {
    max-width: 420px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .global-nav {
    position: fixed;
    inset: 68px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 18px 22px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(20, 20, 20, 0.12);
  }

  body.menu-open .global-nav {
    display: flex;
  }

  .global-nav a {
    min-height: 48px;
    padding: 12px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .hero,
  .feature,
  .section-shell,
  .ranking-section,
  .split-section,
  .profile-section,
  .newsletter {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section-shell,
  .ranking-section,
  .split-section,
  .profile-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .hero {
    gap: 28px;
    padding-top: 30px;
    padding-bottom: 26px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-media,
  .hero-media img {
    min-height: 320px;
  }

  .hero-stat {
    right: 12px;
    bottom: 12px;
    width: 150px;
  }

  .hero-stat span {
    font-size: 24px;
  }

  .topic-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 22px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .topic-strip a:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .topic-strip a:nth-child(n + 3) {
    border-top: 0;
  }

  .feature-text,
  .feature-side div {
    padding: 24px;
  }

  .feature {
    padding-top: 34px;
    padding-bottom: 40px;
  }

  .feature-main {
    display: block;
    min-width: 0;
    overflow: hidden;
    background: var(--surface);
  }

  .feature-main img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 11;
    object-fit: cover;
  }

  .feature-text {
    position: relative;
    z-index: 1;
    display: block;
    background: var(--surface);
  }

  .category {
    white-space: normal;
  }

  .feature-text h2,
  .section-head h2,
  .program-copy h2,
  .profile-section h2,
  .newsletter h2 {
    font-size: 30px;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .search-box {
    min-width: 0;
    width: 100%;
  }

  .article-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .filter-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .filter-tabs button {
    width: 100%;
    min-width: 0;
    padding-right: 8px;
    padding-left: 8px;
    white-space: nowrap;
  }

  .video-band {
    margin-top: 0;
    padding: 52px 18px;
  }

  .video-band .section-head {
    gap: 16px;
  }

  .video-band .button {
    width: 100%;
  }

  .video-card {
    min-height: 0;
  }

  .video-card img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .video-card p {
    padding: 20px 18px 8px;
    font-size: 17px;
  }

  .video-card span {
    padding: 0 18px 20px;
  }

  .play-badge {
    top: clamp(110px, calc((100vw - 36px) * 0.5625 - 46px), 340px);
    bottom: auto;
    left: 18px;
  }

  .program-list a {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .ranking-layout img {
    min-height: 300px;
  }

  .newsletter {
    margin-bottom: 0;
    border-radius: 0;
  }

  .newsletter-form {
    display: grid;
  }

  .newsletter-form button {
    min-height: 50px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 34px;
  }

  .profile-links {
    display: grid;
  }

  .profile-links a {
    width: 100%;
  }

  .hero-media,
  .hero-media img {
    min-height: 300px;
  }

  .article-card h3 {
    font-size: 18px;
  }

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

}
