:root {
  --orange: #ff850f;
  --orange-hot: #ff9b3d;
  --orange-deep: #7d2600;
  --orange-action: #8c2b00;
  --orange-action-hover: #6e2100;
  --navy: #071b32;
  --navy-soft: #102a48;
  --sky: #86ddf7;
  --cream: #fff7ea;
  --white: #ffffff;
  --ink: #071426;
  --muted-on-cream: #43546a;
  --muted-on-navy: #dbe7f3;
  --line: rgba(7, 27, 50, 0.16);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Hiragino Sans", sans-serif;
  --body: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.75;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 7px var(--navy);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 8px 14px;
  background: var(--white);
  color: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--white);
}

.brand {
  display: inline-flex;
  min-width: 44px;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  color: var(--white);
  line-height: 0.85;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.02em;
}

.brand-name {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.08em;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 28px);
  font-size: 13px;
  font-weight: 700;
}

.site-header nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding-inline: 4px;
  text-decoration: none;
}

.site-header nav a:not(.nav-accent) {
  border-bottom: 1px solid transparent;
}

.site-header nav a:not(.nav-accent):hover {
  border-color: currentColor;
}

.site-header nav a[aria-current="page"] {
  border-bottom-color: var(--orange);
  color: var(--orange);
}

.nav-accent {
  padding: 9px 15px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: var(--orange);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: grid;
  min-width: 54px;
  min-height: 44px;
  place-items: center;
  border: 1px solid var(--orange);
  color: var(--orange);
  cursor: pointer;
  font: 800 12px/1 var(--body);
  letter-spacing: 0.12em;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu[open] summary {
  background: var(--orange);
  color: var(--navy);
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: min(78vw, 290px);
  gap: 0;
  border: 2px solid var(--orange);
  background: var(--navy);
  box-shadow: 8px 8px 0 rgba(255, 133, 15, 0.38);
}

.mobile-menu nav a {
  min-height: 50px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
}

.mobile-menu nav a:last-child {
  border-bottom: 0;
  color: var(--orange);
}

.hero {
  position: relative;
  display: grid;
  min-height: 780px;
  place-items: center;
  overflow: hidden;
  padding: 140px clamp(20px, 8vw, 124px) 96px;
  background: var(--navy);
  color: var(--white);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -5;
  background:
    linear-gradient(108deg, transparent 0 68%, var(--orange-action) 68% 78%, transparent 78%),
    linear-gradient(90deg, var(--navy) 0 63%, var(--navy-soft) 63% 100%);
  content: "";
}

.hero::after {
  position: absolute;
  right: -14vw;
  bottom: -24vw;
  z-index: -4;
  width: 58vw;
  height: 58vw;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(255, 255, 255, 0.035), 0 0 0 14vw rgba(255, 255, 255, 0.025);
  content: "";
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-number {
  position: absolute;
  top: 50%;
  right: clamp(-36px, 2vw, 28px);
  z-index: -1;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(340px, 48vw, 720px);
  line-height: 0.7;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 3px rgba(255, 255, 255, 0.42);
  transform: translateY(-44%) skewX(-6deg);
  user-select: none;
}

.stadium-lights {
  position: absolute;
  top: -6%;
  z-index: -1;
  width: 34vw;
  height: 74%;
  opacity: 0.14;
  background: conic-gradient(from 176deg at 50% 0%, transparent 0 42%, #fff 47% 49%, transparent 54% 100%);
  filter: blur(6px);
}

.lights-left {
  left: 5%;
  transform: rotate(-13deg);
}

.lights-right {
  right: 0;
  transform: rotate(14deg);
}

.hero-copy {
  width: min(1180px, 100%);
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sky);
  font-family: "Arial Narrow", var(--body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.eyebrow.orange {
  color: var(--orange-deep);
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 8.2vw, 118px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 span {
  color: var(--orange-hot);
}

.hero-lead {
  margin: 34px 0 0;
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 600;
  letter-spacing: 0.04em;
}

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

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 12px 24px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--orange-action);
  color: var(--white);
}

.button-primary:hover {
  background: var(--orange-action-hover);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.button-secondary:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.unofficial-badge {
  position: absolute;
  right: clamp(18px, 4vw, 64px);
  bottom: 36px;
  margin: 0;
  color: var(--muted-on-navy);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.18em;
  line-height: 1.15;
  text-align: right;
  transform: rotate(-4deg);
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background: var(--orange);
  color: var(--navy);
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 13px 24px;
}

.ticker i {
  color: var(--white);
  font-size: 9px;
  font-style: normal;
}

.goods-section {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 11vw, 156px) clamp(20px, 8vw, 124px);
  background:
    linear-gradient(90deg, rgba(7, 27, 50, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(7, 27, 50, 0.045) 1px, transparent 1px),
    var(--cream);
  background-size: 32px 32px;
}

.goods-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(360px, 1fr) auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(52px, 7vw, 92px);
}

.drop-stamp {
  position: relative;
  display: grid;
  width: clamp(142px, 15vw, 210px);
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange-deep);
  line-height: 1;
  transform: rotate(-8deg);
}

.drop-stamp::before,
.goods-card::before {
  position: absolute;
  top: 17px;
  left: 50%;
  width: 11px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.45;
  transform: translateX(-50%);
}

.drop-stamp span {
  font: 800 11px/1 var(--body);
  letter-spacing: 0.2em;
}

.drop-stamp strong {
  margin-top: 9px;
  font-family: var(--display);
  font-size: clamp(40px, 4.8vw, 68px);
  letter-spacing: -0.03em;
}

.goods-intro .section-heading > p:last-child {
  margin-top: 22px;
}

.release-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 0;
  border-bottom: 2px solid var(--navy);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.release-link:hover {
  border-color: var(--orange);
  color: var(--orange-deep);
}

.goods-auto-feed {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px 40px;
  align-items: end;
  margin-bottom: 54px;
  padding: 30px clamp(22px, 4vw, 52px);
  border: 2px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  box-shadow: 9px 9px 0 rgba(255, 133, 15, 0.28);
}

.goods-auto-feed .eyebrow.orange {
  color: #ffb86c;
}

.goods-auto-heading h3 {
  margin: 8px 0 5px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.25;
}

.goods-auto-heading > p:last-child,
.goods-auto-noscript {
  margin: 0;
  color: var(--muted-on-navy);
  font-size: 13px;
  font-weight: 600;
}

.goods-auto-feed > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 8px 2px;
  border-bottom: 1px solid var(--sky);
  color: var(--sky);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.goods-auto-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.28);
  list-style: none;
}

.goods-auto-list:empty {
  display: none;
}

.goods-auto-list li {
  display: grid;
  gap: 5px;
  min-height: 132px;
  align-content: start;
  padding: 20px;
  background: var(--navy-soft);
}

.goods-auto-list time {
  color: var(--sky);
  font: 20px/1 var(--display);
  letter-spacing: 0.04em;
}

.goods-auto-list strong {
  font-size: 15px;
}

.goods-auto-list span {
  color: var(--muted-on-navy);
  font-size: 12px;
  font-weight: 600;
}

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

.goods-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 52px clamp(22px, 2.4vw, 36px) 30px;
  border: 1px solid rgba(7, 27, 50, 0.2);
  background: var(--white);
  color: var(--navy);
  box-shadow: 8px 8px 0 rgba(7, 27, 50, 0.07);
}

.goods-card-featured {
  grid-column: span 2;
  min-height: 420px;
  padding-right: clamp(32px, 12vw, 180px);
  background:
    linear-gradient(112deg, transparent 0 70%, var(--orange) 70% 82%, var(--navy) 82% 100%),
    var(--white);
}

.goods-card-featured h3,
.goods-card-featured .goods-detail,
.goods-card-featured .goods-bottom {
  max-width: 64%;
}

.goods-card-orange {
  background: var(--orange);
}

.goods-card-sky {
  background: var(--sky);
}

.goods-card-dark {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  box-shadow: 8px 8px 0 rgba(243, 107, 33, 0.35);
}

.goods-type {
  margin: 0 0 28px;
  font-family: "Arial Narrow", var(--body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.goods-card h3 {
  max-width: 15em;
  margin: 0;
  font-size: clamp(25px, 3vw, 43px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.15;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.goods-detail {
  max-width: 36em;
  margin: 20px 0 34px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

.goods-bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: end;
  margin-top: auto;
}

.goods-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 0;
  white-space: nowrap;
}

.goods-price strong {
  font-family: var(--display);
  font-size: 31px;
  letter-spacing: 0.01em;
}

.goods-price span {
  font-size: 10px;
  font-weight: 700;
}

.goods-bottom a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-self: end;
  padding: 8px 2px 6px;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.goods-bottom a:hover {
  color: var(--orange-deep);
}

.goods-card-orange .goods-bottom a:hover {
  color: var(--navy);
}

.goods-card-dark .goods-bottom a:hover {
  color: var(--sky);
}

.goods-note {
  margin: 24px 0 0;
  color: var(--muted-on-cream);
  font-size: 12px;
  text-align: right;
}

.guide-section,
.links-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(380px, 1.15fr);
  gap: clamp(52px, 8vw, 128px);
  padding: clamp(96px, 12vw, 168px) clamp(20px, 8vw, 124px);
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.07;
}

.section-heading > p:last-child {
  max-width: 36em;
  margin: 30px 0 0;
  color: var(--muted-on-cream);
  font-size: 15px;
}

.guide-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-list li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 24px;
  padding: 36px 0 40px;
  border-top: 1px solid var(--line);
}

.guide-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.guide-index {
  color: var(--orange-deep);
  font-family: var(--display);
  font-size: 27px;
  letter-spacing: 0.03em;
}

.guide-list h3 {
  margin: -4px 0 10px;
  color: var(--navy);
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.3;
}

.guide-list p {
  max-width: 38em;
  margin: 0;
  color: var(--muted-on-cream);
  font-size: 14px;
}

.guide-list a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 7px;
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.voice-section {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
  overflow: hidden;
  padding: 96px 20px;
  background: var(--navy);
  color: var(--white);
  isolation: isolate;
}

.voice-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 50%, rgba(243, 107, 33, 0.21), transparent 42%),
    linear-gradient(90deg, transparent 49.9%, rgba(255, 255, 255, 0.08) 50%, transparent 50.1%),
    linear-gradient(0deg, transparent 49.9%, rgba(255, 255, 255, 0.08) 50%, transparent 50.1%);
  content: "";
}

.voice-field {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.voice-field span {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(77, 196, 232, 0.55);
  border-radius: 50%;
  opacity: 0.45;
  transition: background-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.voice-field span:nth-child(1) { top: 18%; left: 12%; }
.voice-field span:nth-child(2) { top: 28%; left: 26%; }
.voice-field span:nth-child(3) { top: 65%; left: 18%; }
.voice-field span:nth-child(4) { top: 78%; left: 34%; }
.voice-field span:nth-child(5) { top: 16%; left: 70%; }
.voice-field span:nth-child(6) { top: 31%; left: 84%; }
.voice-field span:nth-child(7) { top: 68%; left: 78%; }
.voice-field span:nth-child(8) { top: 84%; left: 90%; }
.voice-field span:nth-child(9) { top: 48%; left: 7%; }
.voice-field span:nth-child(10) { top: 53%; left: 93%; }
.voice-field span:nth-child(11) { top: 9%; left: 45%; }
.voice-field span:nth-child(12) { top: 91%; left: 58%; }

.voice-section.is-lit .voice-field span {
  background: var(--orange-hot);
  border-color: var(--orange-hot);
  box-shadow: 0 0 24px 8px rgba(255, 122, 0, 0.48);
  transform: scale(1.55);
}

.voice-content {
  text-align: center;
}

.voice-content h2 {
  margin: 0;
  font-size: clamp(42px, 6.4vw, 88px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.voice-content > p:not(.eyebrow, .cheer-status) {
  margin: 28px 0;
  color: var(--muted-on-navy);
  font-size: 14px;
}

.cheer-button {
  display: inline-flex;
  min-width: 220px;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  border: 0;
  background: var(--orange-action);
  color: var(--white);
  cursor: pointer;
  font: 800 15px/1 var(--body);
  transition: transform 160ms ease, background-color 160ms ease;
}

.cheer-button:hover {
  background: var(--orange-action-hover);
  transform: scale(1.035);
}

.cheer-button:active {
  transform: scale(0.98);
}

.cheer-icon {
  color: var(--navy);
  font-size: 9px;
}

.cheer-status {
  margin: 20px 0 0;
  color: var(--muted-on-navy);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.cheer-status strong {
  margin-left: 7px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 22px;
}

.noscript-note {
  margin: 20px 0 0;
  color: var(--muted-on-navy);
  font-size: 13px;
}

.links-section {
  background: var(--white);
}

.section-heading.compact {
  align-self: start;
}

.official-links {
  border-top: 1px solid var(--line);
}

.official-links a {
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  gap: 20px;
  align-items: center;
  min-height: 118px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 180ms ease, padding 180ms ease;
}

.official-links a:hover {
  padding-left: 12px;
  color: var(--orange-deep);
}

.official-links span {
  color: var(--orange-deep);
  font-family: var(--display);
  font-size: 18px;
}

.official-links strong {
  color: inherit;
  font-size: clamp(20px, 2.4vw, 30px);
}

.official-links i {
  font-size: 23px;
  font-style: normal;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
  padding: 76px clamp(20px, 8vw, 124px) 48px;
  background: var(--orange);
  color: var(--navy);
}

.error-page {
  min-height: 100vh;
  background: var(--navy);
  color: var(--white);
}

.error-main {
  position: relative;
  display: grid;
  min-height: 100vh;
  align-content: center;
  overflow: hidden;
  padding: clamp(48px, 8vw, 124px);
  isolation: isolate;
}

.error-main > :not(.error-code) {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.error-main h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 110px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.error-main > p:not(.eyebrow, .error-code) {
  margin: 30px 0;
  color: var(--muted-on-navy);
}

.error-main .button {
  justify-self: start;
}

.error-code {
  position: absolute;
  right: -3vw;
  bottom: -9vw;
  z-index: -1;
  margin: 0;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(300px, 54vw, 780px);
  line-height: 0.7;
  -webkit-text-stroke: 3px rgba(255, 133, 15, 0.62);
}

.footer-shout {
  font-family: var(--display);
  font-size: clamp(64px, 10vw, 150px);
  letter-spacing: -0.04em;
  line-height: 0.74;
}

.footer-info {
  max-width: 580px;
  justify-self: end;
}

.footer-info p {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
}

.footer-info small {
  display: block;
  margin-top: 38px;
  font-family: "Arial Narrow", var(--body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.matches-page {
  background: var(--cream);
}

.match-hero {
  position: relative;
  display: grid;
  min-height: 650px;
  align-items: center;
  overflow: hidden;
  padding: 150px clamp(20px, 8vw, 124px) 96px;
  background: var(--navy);
  color: var(--white);
  isolation: isolate;
}

.match-hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(112deg, transparent 0 61%, var(--orange-action) 61% 70%, transparent 70%),
    linear-gradient(90deg, var(--navy) 0 66%, var(--navy-soft) 66% 100%);
  content: "";
}

.match-hero::after {
  position: absolute;
  right: -15vw;
  bottom: -35vw;
  z-index: -2;
  width: 66vw;
  height: 66vw;
  border: 2px solid rgba(134, 221, 247, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(134, 221, 247, 0.04), 0 0 0 16vw rgba(134, 221, 247, 0.025);
  content: "";
}

.match-hero-number {
  position: absolute;
  right: clamp(-32px, 2vw, 30px);
  bottom: -0.12em;
  z-index: -1;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(330px, 43vw, 650px);
  line-height: 0.72;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 3px rgba(255, 255, 255, 0.44);
  transform: skewX(-6deg);
  user-select: none;
}

.match-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.match-hero h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.match-hero h1 span {
  color: var(--orange-hot);
}

.match-hero-copy > p:last-child {
  max-width: 42em;
  margin: 30px 0 0;
  color: var(--muted-on-navy);
  font-size: 15px;
  font-weight: 600;
}

.match-hero-stamp {
  position: absolute;
  right: clamp(20px, 6vw, 94px);
  bottom: 42px;
  z-index: 2;
  display: grid;
  margin: 0;
  color: var(--orange);
  font-family: var(--display);
  line-height: 1;
  text-align: right;
  transform: rotate(-4deg);
}

.match-hero-stamp span {
  color: var(--white);
  font-family: "Arial Narrow", var(--body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.match-hero-stamp strong {
  margin-top: 6px;
  color: var(--white);
  font-size: clamp(44px, 5vw, 72px);
}

.next-match-section,
.results-section,
.match-source-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(520px, 1.3fr);
  gap: clamp(48px, 7vw, 112px);
  padding: clamp(90px, 11vw, 150px) clamp(20px, 8vw, 124px);
}

.next-match-section > .section-heading,
.results-section > .section-heading,
.match-source-section > .section-heading {
  align-self: start;
}

.next-match-card {
  min-width: 0;
  border: 1px solid rgba(7, 27, 50, 0.22);
  background: var(--white);
  box-shadow: 10px 10px 0 rgba(7, 27, 50, 0.1);
}

.match-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.match-meta p {
  display: grid;
  min-width: 0;
  min-height: 90px;
  align-content: center;
  gap: 5px;
  margin: 0;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
}

.match-meta p:last-child {
  border-right: 0;
}

.match-meta span {
  color: var(--orange-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.match-meta strong {
  color: var(--navy);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.match-up {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(12px, 4vw, 46px);
  align-items: center;
  padding: clamp(38px, 6vw, 72px) clamp(20px, 5vw, 64px);
  text-align: center;
}

.match-team {
  min-width: 0;
  color: var(--navy);
}

.match-team span {
  display: block;
  margin-bottom: 12px;
  color: var(--orange-deep);
  font: 800 11px/1 var(--body);
  letter-spacing: 0.22em;
}

.match-team strong {
  display: block;
  font-size: clamp(24px, 3.3vw, 43px);
  letter-spacing: -0.045em;
  line-height: 1.16;
  word-break: keep-all;
}

.match-team-home strong {
  color: var(--orange-deep);
}

.match-versus {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--navy);
  font-family: var(--display);
  font-size: 23px;
}

.countdown-panel {
  padding: 28px 24px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.countdown-label {
  margin: 0 0 8px;
  color: var(--sky);
  font: 800 11px/1 var(--body);
  letter-spacing: 0.22em;
}

.match-countdown {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(27px, 4vw, 46px);
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.noscript-note.light {
  color: var(--muted-on-navy);
}

.standings-compare {
  padding: 28px clamp(18px, 4vw, 44px) 34px;
}

.standings-compare h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 19px;
}

.standings-compare table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: var(--navy);
  font-size: 13px;
  text-align: center;
}

.standings-compare th,
.standings-compare td {
  padding: 12px 6px;
  border-bottom: 1px solid var(--line);
}

.standings-compare thead th {
  color: var(--orange-deep);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.standings-compare th:first-child {
  width: 24%;
  text-align: left;
}

.match-card-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.match-card-links a {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-right: 1px solid var(--line);
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.match-card-links a:last-child {
  border-right: 0;
}

.match-card-links a:hover {
  background: var(--navy);
  color: var(--white);
}

.results-section {
  background:
    linear-gradient(90deg, rgba(7, 27, 50, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(7, 27, 50, 0.045) 1px, transparent 1px),
    var(--cream);
  background-size: 32px 32px;
}

.results-list {
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--navy);
  list-style: none;
}

.results-list a {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto 18px;
  gap: 18px;
  align-items: center;
  min-height: 92px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  text-decoration: none;
}

.results-list a:hover {
  padding-inline: 10px;
  background: var(--white);
}

.results-list time {
  color: var(--orange-deep);
  font-family: var(--display);
  font-size: 20px;
}

.result-opponent {
  min-width: 0;
  font-size: clamp(18px, 2.1vw, 26px);
  font-weight: 800;
  line-height: 1.35;
  word-break: keep-all;
}

.result-opponent small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted-on-cream);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.result-score {
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 36px);
  white-space: nowrap;
}

.result-score small {
  font-family: var(--body);
  font-size: 11px;
}

.result-win,
.result-loss {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  font-family: var(--body);
  font-size: 12px;
}

.result-win {
  background: var(--orange-action);
  color: var(--white);
}

.result-loss {
  border: 2px solid var(--navy);
  color: var(--navy);
}

.match-stats-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(560px, 1.35fr);
  gap: clamp(48px, 7vw, 112px);
  padding: clamp(90px, 11vw, 150px) clamp(20px, 8vw, 124px);
  background: var(--navy);
  color: var(--white);
}

.section-heading.inverse h2 {
  color: var(--white);
}

.section-heading.inverse > p:last-child {
  color: var(--muted-on-navy);
}

.stats-groups {
  display: grid;
  gap: 18px;
}

.stats-group {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: var(--navy-soft);
  color: var(--white);
}

.stats-group-orange {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--navy);
}

.stats-label {
  margin: 0 0 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.stats-grid p,
.league-summary p {
  display: grid;
  gap: 7px;
  margin: 0;
  text-align: center;
}

.stats-grid p {
  border-right: 1px solid rgba(255, 255, 255, 0.36);
}

.stats-grid p:last-child,
.league-summary p:last-child {
  border-right: 0;
}

.stats-grid strong,
.league-summary strong {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1;
}

.stats-grid span,
.league-summary span {
  font-size: 11px;
  font-weight: 700;
}

.league-summary {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.league-summary p {
  border-right: 1px solid rgba(7, 27, 50, 0.34);
}

.match-source-links {
  border-top: 1px solid var(--line);
}

.match-source-links a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  gap: 20px;
  align-items: center;
  min-height: 100px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  text-decoration: none;
}

.match-source-links a:hover {
  padding-left: 12px;
  color: var(--orange-deep);
}

.match-source-links > a > span:first-child {
  color: var(--orange-deep);
  font-family: var(--display);
  font-size: 18px;
}

.match-source-links strong {
  font-size: clamp(18px, 2.2vw, 27px);
}

.match-source-links i {
  font-size: 22px;
  font-style: normal;
}

.match-data-note {
  grid-column: 2;
  margin: -72px 0 0;
  padding-top: 18px;
  color: var(--muted-on-cream);
  font-size: 12px;
}

@media (max-width: 820px) {
  .site-header > nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: 720px;
  }

  .hero::before {
    background:
      linear-gradient(112deg, transparent 0 76%, var(--orange-action) 76% 84%, transparent 84%),
      var(--navy);
  }

  .hero-number {
    right: -85px;
    font-size: clamp(330px, 95vw, 520px);
    opacity: 0.62;
  }

  .goods-intro {
    grid-template-columns: 150px 1fr;
  }

  .release-link {
    grid-column: 1 / -1;
  }

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

  .goods-auto-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .goods-card-featured {
    grid-column: 1 / -1;
  }

  .guide-section,
  .links-section {
    grid-template-columns: 1fr;
  }

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

  .footer-info {
    justify-self: start;
  }

  .next-match-section,
  .results-section,
  .match-source-section,
  .match-stats-section {
    grid-template-columns: 1fr;
  }

  .match-data-note {
    grid-column: 1;
    margin: 0;
  }

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

  .match-meta p:nth-child(2) {
    border-right: 0;
  }

  .match-meta p:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 540px) {
  .site-header {
    padding-top: 18px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 16px;
  }

  .hero {
    min-height: 700px;
    place-items: end start;
    padding-bottom: 90px;
  }

  .hero h1 {
    font-size: clamp(38px, 10.2vw, 46px);
    letter-spacing: -0.075em;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .unofficial-badge {
    bottom: 22px;
  }

  .goods-intro {
    grid-template-columns: 1fr;
  }

  .goods-auto-feed {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .goods-auto-feed > a {
    justify-self: start;
  }

  .goods-auto-list {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .drop-stamp {
    width: 126px;
  }

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

  .goods-card,
  .goods-card-featured {
    grid-column: auto;
    min-height: 350px;
    padding-right: 24px;
  }

  .goods-card-featured h3,
  .goods-card-featured .goods-detail,
  .goods-card-featured .goods-bottom {
    max-width: none;
  }

  .goods-card-featured {
    background:
      linear-gradient(112deg, transparent 0 75%, var(--orange) 75% 84%, var(--navy) 84% 100%),
      var(--white);
  }

  .goods-bottom {
    grid-template-columns: 1fr;
  }

  .goods-bottom a {
    justify-self: start;
  }

  .goods-note {
    text-align: left;
  }

  .guide-list li {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .voice-section {
    min-height: 620px;
  }

  .official-links a {
    grid-template-columns: 36px 1fr 20px;
    gap: 12px;
  }

  .footer-shout {
    font-size: 26vw;
  }

  .match-hero {
    min-height: 620px;
    align-items: end;
    padding-bottom: 112px;
  }

  .match-hero::before {
    background:
      linear-gradient(112deg, transparent 0 77%, var(--orange-action) 77% 85%, transparent 85%),
      var(--navy);
  }

  .match-hero-number {
    right: -72px;
    bottom: 18px;
    font-size: 92vw;
  }

  .match-hero h1 {
    font-size: clamp(42px, 13vw, 56px);
  }

  .match-hero-copy > p:last-child {
    font-size: 14px;
  }

  .match-hero-stamp {
    right: 20px;
    bottom: 26px;
  }

  .next-match-section,
  .results-section,
  .match-source-section,
  .match-stats-section {
    gap: 44px;
  }

  .match-meta p {
    min-height: 86px;
    padding: 14px;
  }

  .match-up {
    gap: 9px;
    padding: 38px 14px;
  }

  .match-team strong {
    font-size: clamp(20px, 7vw, 27px);
  }

  .match-versus {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .countdown-panel {
    padding: 24px 16px;
  }

  .match-countdown {
    font-size: clamp(24px, 8vw, 31px);
  }

  .standings-compare {
    padding-inline: 12px;
  }

  .standings-compare table {
    font-size: 11px;
  }

  .standings-compare th,
  .standings-compare td {
    padding-inline: 3px;
  }

  .match-card-links {
    grid-template-columns: 1fr;
  }

  .match-card-links a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .match-card-links a:last-child {
    border-bottom: 0;
  }

  .results-list a {
    grid-template-columns: 48px minmax(0, 1fr) 68px;
    gap: 8px;
    min-height: 84px;
  }

  .results-list a:hover {
    padding-inline: 0;
  }

  .results-list a > span[aria-hidden="true"] {
    display: none;
  }

  .results-list time {
    font-size: 18px;
  }

  .result-opponent {
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .result-score {
    font-size: 23px;
    text-align: right;
  }

  .result-win,
  .result-loss {
    width: 26px;
    height: 26px;
  }

  .stats-grid,
  .league-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 28px;
  }

  .stats-grid p:nth-child(3n),
  .league-summary p:nth-child(3n) {
    border-right: 0;
  }

  .match-source-links a {
    grid-template-columns: 34px minmax(0, 1fr) 20px;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .cheer-button,
  .official-links a,
  .voice-field span {
    transition: none;
  }
}

/* ORANGE WALL 掲示板 */

.board-page,
.policy-page,
.moderation-page {
  background: var(--cream);
}

.board-hero {
  position: relative;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: end;
  gap: clamp(40px, 7vw, 110px);
  overflow: hidden;
  padding: 150px clamp(20px, 7vw, 110px) 90px;
  background: var(--navy);
  color: var(--white);
  isolation: isolate;
}

.board-hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, transparent 0 69%, rgba(255, 255, 255, 0.08) 69% 69.2%, transparent 69.2%),
    linear-gradient(112deg, transparent 0 72%, var(--orange-action) 72% 83%, transparent 83%);
  content: "";
}

.board-hero-lines {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(500px) rotateX(55deg) scale(1.5) translateY(20%);
  transform-origin: bottom;
}

.board-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.board-hero-copy::before {
  position: absolute;
  inset: -16px -20px;
  z-index: -1;
  background: var(--navy);
  content: "";
}

.board-hero h1 {
  margin: 20px 0 28px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(74px, 13vw, 190px);
  line-height: 0.73;
  letter-spacing: -0.065em;
}

.board-hero h1 span {
  color: var(--orange);
  font-size: 0.78em;
  letter-spacing: 0.015em;
}

.board-hero-copy > p:last-child {
  max-width: 600px;
  margin: 0;
  color: var(--muted-on-navy);
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 700;
}

.board-policy-card {
  position: relative;
  align-self: end;
  min-height: 310px;
  overflow: hidden;
  padding: 42px 34px 32px;
  background: var(--cream);
  color: var(--navy);
  box-shadow: 12px 12px 0 rgba(255, 133, 15, 0.3);
}

.board-policy-number {
  position: absolute;
  top: -32px;
  right: -8px;
  color: rgba(7, 27, 50, 0.08);
  font-family: var(--display);
  font-size: 190px;
  line-height: 1;
}

.board-policy-card p {
  position: relative;
  display: grid;
  gap: 15px;
  margin: 0 0 32px;
}

.board-policy-card strong {
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: 0.01em;
}

.board-policy-card a,
.board-privacy-link a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--orange-deep);
  font-weight: 800;
}

.board-aside .board-privacy-link a {
  color: var(--navy);
}

.board-shell {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 2fr);
  align-items: start;
  border-top: 1px solid var(--line);
}

.board-aside {
  position: sticky;
  top: 0;
  min-height: 100vh;
  padding: 92px clamp(24px, 4vw, 64px);
  background: var(--orange);
  color: var(--navy);
}

.board-aside .eyebrow.orange {
  color: var(--navy);
}

.board-aside h2 {
  margin: 20px 0 50px;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 66px);
  line-height: 0.95;
}

.board-aside ol {
  display: grid;
  padding: 0;
  margin: 0;
  counter-reset: promise;
  list-style: none;
}

.board-aside li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 16px;
  padding: 24px 0;
  border-top: 2px solid var(--navy);
  counter-increment: promise;
}

.board-aside li::before {
  grid-row: 1 / 3;
  font: 26px/1 var(--display);
  content: "0" counter(promise);
}

.board-aside li strong {
  font-size: 17px;
}

.board-aside li span {
  color: #172638;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

.board-main {
  min-width: 0;
  padding: 90px clamp(20px, 5vw, 82px) 120px;
}

.board-tools {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(240px, 1.15fr);
  gap: 36px 50px;
  align-items: end;
  padding-bottom: 36px;
  border-bottom: 3px solid var(--navy);
}

.board-tools h2 {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.9;
}

.board-search label,
.board-view-controls > label,
.board-view-controls legend {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.board-search > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.board-search input,
.board-view-controls select,
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 48px;
  border: 2px solid var(--navy);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.board-search input,
.form-field input,
.form-field textarea,
.form-field select {
  padding: 11px 13px;
}

.board-search button,
.board-view-controls button,
.load-more-button,
.moderation-header-actions button {
  min-width: 48px;
  min-height: 48px;
  border: 2px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  font: 800 13px/1 var(--body);
}

.board-view-controls {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  gap: 16px;
}

.board-view-controls select {
  width: min(220px, 100%);
  padding: 8px 40px 8px 12px;
  font-weight: 700;
}

.board-view-controls fieldset {
  display: flex;
  gap: 6px;
  padding: 0;
  border: 0;
  margin: 0;
}

.board-view-controls button[aria-pressed="true"] {
  border-style: double;
  border-width: 5px;
  background: var(--orange-action);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.board-context,
.board-status {
  margin-top: 26px;
  padding: 16px 18px;
  border-left: 7px solid var(--sky);
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}

.board-context {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.board-context p {
  margin: 0;
}

.board-context a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--orange-deep);
  font-weight: 800;
}

.board-status[data-tone="success"] {
  border-color: #08752c;
}

.board-status[data-tone="error"] {
  border-color: #9b1c1c;
  background: #fff0f0;
  color: #610000;
}

.post-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
}

.board-post {
  position: relative;
  padding: 30px 26px 22px 38px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.board-post::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: var(--orange);
  content: "";
}

.board-post:nth-child(even) {
  background: #fffaf2;
}

.board-post > header,
.board-post > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.post-author {
  margin: 0;
  color: var(--orange-deep);
  font-size: 15px;
  font-weight: 900;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 8px 14px;
  margin: 0;
  color: var(--muted-on-cream);
  font-size: 12px;
  font-weight: 700;
}

.post-body {
  margin: 22px 0 28px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

[data-board-font="large"] .post-body {
  font-size: 20px;
}

.post-reply-reference {
  margin: 18px 0 -10px;
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 800;
}

.board-post > footer {
  justify-content: start;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.board-post button,
.reply-target button,
.dialog-actions button,
.dialog-heading button {
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font: 800 12px/1 var(--body);
}

.post-like[aria-pressed="true"] {
  background: var(--navy);
  color: var(--white);
}

.post-report {
  margin-left: auto;
}

.load-more-button {
  width: 100%;
  margin-top: 28px;
}

.composer {
  margin-top: 86px;
  border: 2px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  box-shadow: 12px 12px 0 rgba(255, 133, 15, 0.28);
}

.composer-heading {
  padding: 38px clamp(20px, 4vw, 50px) 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.composer-heading h2 {
  margin: 7px 0 12px;
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.9;
}

.composer-heading p:last-child {
  margin: 0;
  color: var(--muted-on-navy);
}

.composer form {
  display: grid;
  gap: 24px;
  padding: 34px clamp(20px, 4vw, 50px) 44px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label,
.rules-check {
  font-size: 14px;
  font-weight: 800;
}

.form-field label span,
.form-note,
.character-count {
  color: var(--muted-on-navy);
  font-size: 13px;
  font-weight: 600;
}

.board-search input::placeholder,
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted-on-cream);
  opacity: 1;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.character-count {
  margin: 0;
  text-align: right;
}

.rules-check {
  display: grid;
  min-height: 44px;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding-block: 10px;
}

.rules-check input {
  width: 24px;
  height: 24px;
  margin: 0;
  accent-color: var(--orange);
}

.rules-check a {
  color: var(--sky);
}

.board-submit {
  min-height: 52px;
  padding: 12px 18px;
  border: 2px solid var(--orange);
  background: var(--orange);
  color: var(--navy);
  cursor: pointer;
  font: 900 15px/1 var(--body);
}

.board-submit:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.form-note {
  margin: 0;
}

.appeal-panel {
  margin-top: 42px;
  border: 2px solid var(--navy);
  background: var(--white);
}

.appeal-panel summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 12px 20px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.appeal-panel summary::after {
  margin-left: auto;
  color: var(--orange-deep);
  content: "+";
  font: 28px/1 var(--display);
}

.appeal-panel[open] summary::after {
  content: "−";
}

.appeal-panel summary::-webkit-details-marker {
  display: none;
}

.appeal-panel form {
  display: grid;
  gap: 20px;
  padding: 24px 20px 30px;
  border-top: 1px solid var(--line);
}

.appeal-panel .form-field label span {
  color: var(--muted-on-cream);
}

.form-error-summary {
  padding: 16px 18px;
  border: 3px solid #ff9d9d;
  background: #3c0000;
  color: var(--white);
}

.form-error-summary ul {
  margin-bottom: 0;
}

.reply-target {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--sky);
  color: var(--white);
}

.reply-target p {
  margin: 0;
  font-weight: 800;
}

.reply-target button {
  border-color: var(--white);
  color: var(--white);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-slot {
  min-height: 65px;
}

.report-dialog {
  width: min(620px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  border: 3px solid var(--navy);
  border-radius: 0;
  background: var(--cream);
  color: var(--ink);
}

.report-dialog::backdrop {
  background: rgba(7, 27, 50, 0.82);
}

.report-dialog form {
  display: grid;
  gap: 22px;
  padding: 30px;
}

.report-dialog .form-field label span,
.report-dialog .character-count {
  color: var(--muted-on-cream);
}

.dialog-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
}

.dialog-heading .eyebrow {
  grid-column: 1;
}

.dialog-heading h2 {
  grid-column: 1;
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
}

.dialog-heading button {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 48px;
  padding: 0;
  font-size: 28px;
}

.dialog-actions {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
}

.dialog-actions .board-submit {
  color: var(--navy);
}

.noscript-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  margin: 0;
  padding: 16px;
  background: #3c0000;
  color: var(--white);
  text-align: center;
}

/* ルール・プライバシー */

.policy-page .site-header {
  position: relative;
  background: var(--navy);
}

.policy-main {
  background: var(--cream);
}

.policy-hero {
  padding: 100px clamp(20px, 8vw, 126px) 80px;
  background: var(--navy);
  color: var(--white);
}

.policy-hero h1 {
  max-width: 850px;
  margin: 20px 0 30px;
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.86;
  letter-spacing: -0.045em;
}

.policy-hero > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted-on-navy);
  font-weight: 600;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 2fr);
  align-items: start;
  max-width: 1380px;
  margin-inline: auto;
  padding: 80px clamp(20px, 6vw, 96px) 120px;
}

.policy-toc {
  position: sticky;
  top: 24px;
  display: grid;
  padding-right: 40px;
}

.policy-toc strong {
  padding: 12px 0;
  border-bottom: 3px solid var(--navy);
}

.policy-toc a {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--orange-deep);
  font-weight: 800;
  text-decoration: none;
}

.policy-content {
  min-width: 0;
  border-left: 1px solid var(--line);
  padding-left: clamp(30px, 6vw, 90px);
}

.policy-content section {
  padding: 0 0 70px;
  scroll-margin-top: 20px;
}

.policy-content section + section {
  padding-top: 70px;
  border-top: 1px solid var(--line);
}

.policy-index {
  margin: 0 0 12px;
  color: var(--orange-deep);
  font: 28px/1 var(--display);
}

.policy-content h2 {
  margin: 0 0 26px;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.95;
}

.policy-content li,
.policy-content p {
  font-weight: 600;
}

.sanction-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--navy);
  list-style: none;
}

.sanction-steps li {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: var(--cream);
}

.sanction-steps strong {
  color: var(--orange-deep);
  font-size: 18px;
}

.retention-list {
  border-top: 3px solid var(--navy);
}

.retention-list div {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(120px, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.retention-list dt {
  font-weight: 800;
}

.retention-list dd {
  margin: 0;
}

.policy-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  align-items: center;
  justify-content: center;
  padding: 34px 20px;
  background: var(--orange);
  color: var(--navy);
  font-weight: 800;
}

.policy-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

/* モデレーション */

.moderation-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 70px);
  background: var(--navy);
  color: var(--white);
}

.moderation-header > p {
  margin: 0;
  font-weight: 800;
}

.moderation-header > p span {
  color: var(--orange);
}

.moderation-main {
  min-height: calc(100vh - 84px);
  padding: 70px clamp(20px, 7vw, 110px) 110px;
}

.moderation-login {
  max-width: 620px;
  padding: 42px;
  border: 3px solid var(--navy);
  background: var(--white);
  box-shadow: 12px 12px 0 rgba(255, 133, 15, 0.28);
}

.moderation-login h1,
.moderation-dashboard h1 {
  margin: 10px 0 24px;
  font-family: var(--display);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.9;
}

.moderation-login form {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.moderation-login .form-field label,
.moderation-card .form-field label {
  color: var(--ink);
}

.moderation-dashboard-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 3px solid var(--navy);
}

.moderation-header-actions {
  display: flex;
  gap: 8px;
  padding-bottom: 24px;
}

.moderation-dashboard > section {
  margin-top: 60px;
}

.moderation-dashboard > section > h2 {
  font: 42px/1 var(--display);
}

.moderation-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.moderation-card {
  padding: 26px;
  border: 2px solid var(--navy);
  background: var(--white);
}

.moderation-card > header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
}

.moderation-author {
  color: var(--orange-deep);
  font-weight: 900;
}

.moderation-body {
  padding: 20px 0;
  border-block: 1px solid var(--line);
  font-weight: 700;
  white-space: pre-wrap;
}

.moderation-risk {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 20px;
  font-size: 12px;
}

.moderation-risk dt {
  font-weight: 800;
}

.moderation-risk dd {
  margin: 0;
}

.moderation-action-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

@media (max-width: 980px) {
  .board-hero {
    grid-template-columns: 1fr;
  }

  .board-policy-card {
    max-width: 520px;
  }

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

  .board-aside {
    position: relative;
    min-height: 0;
  }

  .board-aside ol {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

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

  .board-aside li::before {
    grid-row: auto;
  }

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

  .policy-toc {
    position: relative;
    top: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 0 50px;
  }

  .policy-toc strong {
    grid-column: 1 / -1;
  }

  .policy-content {
    border-left: 0;
    padding-left: 0;
  }

  .moderation-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .board-hero {
    min-height: 700px;
    padding-top: 130px;
  }

  .board-hero h1 {
    font-size: clamp(66px, 25vw, 105px);
  }

  .board-policy-card {
    min-height: 260px;
    padding: 30px 24px;
  }

  .board-aside {
    padding-block: 60px;
  }

  .board-aside ol {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .board-main {
    padding-bottom: 80px;
  }

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

  .board-view-controls {
    display: grid;
    grid-template-columns: 1fr;
  }

  .board-view-controls select {
    width: 100%;
  }

  .board-context,
  .board-post > header,
  .board-post > footer,
  .reply-target,
  .moderation-dashboard-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .post-meta {
    justify-content: start;
  }

  .post-report {
    margin-left: 0;
  }

  .dialog-actions,
  .sanction-steps {
    grid-template-columns: 1fr;
  }

  .report-dialog form,
  .moderation-login,
  .moderation-card {
    padding: 22px;
  }

  .policy-toc {
    grid-template-columns: 1fr;
  }

  .retention-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .moderation-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .board-page *,
  .policy-page *,
  .moderation-page * {
    scroll-behavior: auto !important;
  }
}
