:root {
  --navy: #002038;
  --ink: #081018;
  --paper: #fffef8;
  --line: #d8d5cb;
  --sky: #05a7e1;
  --sky-dark: #0a6c95;
  --muted: #5c6470;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: #f2f0e9;
  color: var(--ink);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.75;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.hero {
  background: var(--navy);
  color: #fff;
}

.hero-top {
  width: min(960px, calc(100% - 24px));
  margin: 0 auto;
  padding: 16px 0 10px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.utility-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.utility-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
}

.utility-nav a:hover,
.utility-nav a:focus-visible {
  color: #fff;
}

.lang-tools {
  display: flex;
  gap: 8px;
}

.lang-tools button {
  min-width: 46px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #fff;
  padding: 4px 8px;
  cursor: pointer;
}

.lang-tools button[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.14);
}

.hero-logo {
  width: min(960px, calc(100% - 24px));
  margin: 0 auto;
  padding: 56px 0 62px;
  text-align: center;
}

.hero-logo a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: clamp(30px, 5vw, 76px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero-logo p {
  margin: 18px 0 0;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.78);
}

.sub-hero .hero-logo {
  padding: 42px 0 48px;
}

.page-shell {
  background: #f2f0e9;
}

.section {
  padding: 74px 0 88px;
}

.inner {
  width: min(960px, calc(100% - 24px));
  margin: 0 auto;
}

.section-head {
  margin-bottom: 28px;
}

.section-head h1 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 0.08em;
}

.guest-box {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 24px;
  margin-bottom: 34px;
}

.box-head {
  margin-bottom: 28px;
}

.box-head .date {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.box-head .date::after {
  content: "/";
  margin-left: 6px;
  color: var(--sky);
}

.box-head h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.25;
}

.text-block p {
  margin: 0 0 18px;
}

.archive-link-line {
  font-size: 14px;
}

.archive-link-line a {
  color: var(--sky-dark);
}

.photo {
  margin: 30px 0;
}

.photo img {
  width: 100%;
  border: 1px solid #cfcac0;
  background: #d9e7ef;
}

.rebroadcast-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 22px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.strip-label,
.status-line {
  margin: 0;
}

.strip-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.status-line {
  margin-top: 8px;
  font-size: 28px;
  line-height: 1.15;
}

.vote-area {
  justify-self: end;
  width: 100%;
}

.vote-widget {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
}

.vote-widget button {
  border: 0;
  background: var(--sky);
  color: #fff;
  min-height: 60px;
  padding: 12px 18px;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.vote-widget button:hover,
.vote-widget button:focus-visible {
  background: #0c95ca;
}

.vote-widget button:disabled {
  cursor: default;
  background: #1589b8;
}

.vote-count,
.vote-status-note {
  border: 1px solid var(--line);
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-size: 14px;
  padding: 0 14px;
}

.vote-reveal {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--muted);
}

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

.arrow-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 18px 52px 18px 20px;
  background: var(--sky);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  position: relative;
}

.arrow-link::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 18px;
  height: 18px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.note-box {
  padding-bottom: 30px;
}

.note-list {
  margin: 0;
  display: grid;
  gap: 16px;
}

.note-list div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.note-list dt {
  font-weight: 700;
}

.note-list dd {
  margin: 0;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.link-row a {
  color: var(--sky-dark);
}

.note-footer {
  margin: 22px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.faq-item + .faq-item {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.faq-item h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.3;
}

.faq-item p {
  margin: 0;
}

.segment-list {
  margin: 0 0 28px;
  padding-left: 22px;
}

.segment-list li + li {
  margin-top: 10px;
}

.compact-list div {
  grid-template-columns: 160px minmax(0, 1fr);
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding: 26px 0 30px;
}

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

.footer-grid p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.footer-grid a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 759px) {
  .hero-top {
    flex-direction: column;
    align-items: stretch;
  }

  .lang-tools {
    justify-content: flex-start;
  }

  .hero-logo {
    padding: 34px 0 40px;
  }

  .hero-logo a {
    letter-spacing: 0.1em;
  }

  .section {
    padding: 42px 0 52px;
  }

  .guest-box {
    padding: 18px;
  }

  .rebroadcast-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .vote-area {
    justify-self: stretch;
  }

  .vote-widget {
    grid-template-columns: minmax(0, 1fr);
  }

  .button-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .note-list div,
  .compact-list div {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
