@charset "UTF-8";
:root {
  --header-h: 74px;
  --subnav-h: 56px;
  --black: #030712;
  --red: #dc2626;
  --muted: #64748b;
  --line: #e5e7eb;
  --cream: #f7f7f4;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  color: #020617;
}

html {
  background: #fff;
}

body {
  background: #000;
  opacity: 0;
  transition: opacity 0.28s ease;
  overflow-x: hidden;
}

body.is-loaded {
  opacity: 1;
}

body.is-unloading {
  opacity: 0;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 150;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  backdrop-filter: blur(18px);
  transform: translate3d(0, 0, 0);
  transition: transform 0.28s ease;
  will-change: transform;
}
.site-header.is-hidden {
  transform: translate3d(0, -100%, 0);
}
.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  position: relative;
}

body.detail-page {
  padding-top: calc(var(--header-h) + var(--subnav-h));
}
body.detail-page .language-switch,
body.detail-page .pdf-link {
  display: none;
}

.site-subnav {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-h);
  z-index: 49;
  height: var(--subnav-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
  transition: transform 0.28s ease, top 0.28s ease;
  will-change: transform, top;
}
.site-header.is-hidden ~ .site-subnav {
  top: 0;
}
.site-subnav__track {
  height: 100%;
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding: 0 32px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.site-subnav__track::-webkit-scrollbar {
  display: none;
}
.site-subnav__track.is-dragging {
  cursor: grabbing;
  user-select: none;
}
.site-subnav__link {
  flex: 0 0 auto;
  min-width: 190px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.9);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
  user-select: none;
  -webkit-user-drag: none;
}
.site-subnav__link span {
  color: #ef4444;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.site-subnav__link strong {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.site-subnav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 900;
}
.language-switch a {
  opacity: 0.58;
}
.language-switch .is-active {
  position: relative;
  opacity: 1;
}
.language-switch .is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 18px;
  height: 2px;
  background: var(--red);
  transform: translateX(-50%);
}

.pdf-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
  opacity: 0.78;
}

.header-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1;
}
.header-logo img {
  display: block;
  width: clamp(160px, 34vw, 420px);
  height: auto;
}
.header-logo span,
.header-logo strong,
.header-logo em {
  display: block;
}
.header-logo span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.45);
}
.header-logo strong {
  margin-top: 5px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.header-logo em {
  margin-top: 5px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.09em;
  color: var(--red);
}

.menu-button {
  display: flex;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  z-index: 71;
}

.menu-button.is-active {
  border-color: rgba(255, 255, 255, 0.42);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 24px) 24px 32px;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 901px) {
  .menu-button {
    display: none;
  }
}
.site-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-menu__inner {
  width: min(100%, 920px);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  overflow-y: auto;
}

.site-menu__nav {
  width: 100%;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.site-menu__pdf {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.site-menu__pdf:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.site-menu__link {
  width: min(100%, 720px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  color: #fff;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.site-menu__link:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}
.site-menu__link small,
.site-menu__link strong {
  display: block;
  max-width: 100%;
  text-align: center;
}
.site-menu__link small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.site-menu__link strong {
  font-size: clamp(18px, 2.3vw, 28px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0.09em;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header .language-switch,
body.menu-open .site-header .pdf-link,
body.menu-open .site-header .header-logo {
  opacity: 0;
  pointer-events: none;
}

body.menu-open .menu-button {
  opacity: 1;
  pointer-events: auto;
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 170;
}

body.menu-open .page-transition {
  pointer-events: none;
}

.home-grid {
  height: 100vh;
  overflow: hidden;
  background: #000;
  padding-top: var(--header-h);
}
.home-grid__inner {
  height: calc(100vh - var(--header-h));
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.grid-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid #fff;
  background: #0f172a;
  color: #fff;
  min-height: 0;
}
.grid-tile:hover .grid-tile__image {
  transform: scale(1.1);
}
.grid-tile:hover .grid-tile__glow {
  opacity: 1;
}
.grid-tile:hover .view-line b {
  width: 144px;
  background: #ef4444;
}
.grid-tile__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  transform: scale(1.05);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.grid-tile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25));
}
.grid-tile__shade::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}
.grid-tile__glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.5s;
  background: rgba(69, 10, 10, 0.2);
}
.grid-tile__content {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 0;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.grid-tile__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}
.grid-tile__top span {
  color: #ef4444;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.grid-tile__top small {
  margin-right: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.grid-tile__bottom {
  /* bottom copy is styled below with explicit selectors for readability */
}
.grid-tile--hero .grid-tile__content {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.span-4 {
  grid-column: span 4;
}

.span-6 {
  grid-column: span 6;
}

.span-3 {
  grid-column: span 3;
}

.span-2 {
  grid-column: span 2;
}

.span-row-2 {
  grid-row: span 2;
}

.span-row-4 {
  grid-row: span 4;
}

.grid-tile--hero {
  grid-column: 1/span 4;
  grid-row: 1/span 2;
}
.grid-tile--hero .grid-tile__image {
  transform: none;
  transition: none;
}
.grid-tile--hero .grid-tile__glow {
  opacity: 0;
  transition: none;
}
.grid-tile--hero .view-line b {
  width: 72px;
  transition: none;
}
.grid-tile--hero:hover .grid-tile__image {
  transform: none;
}
.grid-tile--hero:hover .grid-tile__glow {
  opacity: 0;
}
.grid-tile--hero:hover .view-line b {
  width: 72px;
  background: rgba(255, 255, 255, 0.55);
}

.grid-tile--chairman {
  grid-column: 5/span 4;
  grid-row: 1/span 2;
}

.grid-tile--result {
  grid-column: 9/span 4;
  grid-row: 1;
}

.grid-tile--special-jleague {
  grid-column: 9/span 4;
  grid-row: 2;
}

.home-grid__row-three {
  grid-column: 1/span 8;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  min-width: 0;
}
.home-grid__row-three .grid-tile--football,
.home-grid__row-three .grid-tile--marketing,
.home-grid__row-three .grid-tile--sustainability {
  grid-column: auto;
  grid-row: auto;
  width: 100%;
  height: 100%;
}

.grid-tile--football {
  grid-column: 1/span 2;
  grid-row: 3;
}

.grid-tile--marketing {
  grid-column: 3/span 3;
  grid-row: 3;
}

.grid-tile--sustainability {
  grid-column: 6/span 3;
  grid-row: 3;
}

.grid-tile--finance {
  grid-column: 1/span 4;
  grid-row: 4;
}

.grid-tile--club-management {
  grid-column: 5/span 4;
  grid-row: 4;
}

.grid-tile__bottom h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-shadow: 0 5px 22px rgba(0, 0, 0, 0.5);
}

.grid-tile__bottom p {
  max-width: 420px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.55;
  font-weight: 600;
}

.grid-tile--concept {
  grid-column: 9/span 4;
  grid-row: 3/span 2;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.9));
}
.grid-tile--concept::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/top-about_main.jpg");
  background-position: center;
  background-size: cover;
  opacity: 0.35;
}
.grid-tile--concept::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.42), rgba(2, 6, 23, 0.82));
}
.grid-tile--concept .grid-tile__content {
  position: relative;
  z-index: 1;
  padding: 24px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.concept-copy {
  max-width: 400px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 700;
  letter-spacing: 0.09em;
}
.concept-copy p {
  margin: 0;
}
.concept-copy p + p {
  margin-top: 18px;
}

.view-line {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  justify-content: flex-end;
}
.view-line b {
  display: block;
  width: 72px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
  transition: 0.3s;
}
.view-line i {
  font-style: normal;
}

.home-logo {
  display: block;
  width: min(64%, 300px);
  max-height: min(64%, 320px);
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.42));
}

.home-scroll-prompt {
  margin-top: 42px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.home-scroll-prompt span {
  display: block;
  transform: translateX(0.21em);
}
.home-scroll-prompt i {
  position: relative;
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.2));
  animation: homeScrollLine 1.6s ease-in-out infinite;
}
.home-scroll-prompt i::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 8px;
  height: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.88);
  transform: translateX(-50%) rotate(45deg);
}

@keyframes homeScrollLine {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.75;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}
body.home-page .home-grid .grid-tile__content {
  padding: 16px 18px;
}
body.home-page .home-grid .grid-tile__bottom p {
  margin-top: 8px;
}
body.home-page .home-grid .grid-tile__top {
  gap: 12px;
}
body.home-page .home-grid .grid-tile__title-prefix {
  font-size: 0.82em;
  line-height: 1;
}

.season-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.season-mark p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.season-mark div {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding: 26px 28px;
}
.season-mark strong {
  display: block;
  color: #fff;
  font-size: clamp(56px, 5.2vw, 100px);
  line-height: 0.85;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.season-mark em {
  color: #ef4444;
  font-style: normal;
  font-size: clamp(32px, 3.2vw, 56px);
  font-weight: 900;
  letter-spacing: 0.09em;
}

.detail-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #020617;
  color: #fff;
  padding: 0 40px;
  min-height: clamp(640px, 72vh, 850px);
}
.detail-hero__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  opacity: 0.35;
}
.detail-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.32), rgba(69, 10, 10, 0.16));
}
.detail-hero__shade::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 66%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
}
.detail-hero__content {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.detail-hero__base {
  position: absolute;
  inset: 0;
  background: #020617;
}
.detail-hero h1 {
  margin: 0;
  opacity: 0.8;
  color: #fff;
  font-size: clamp(52px, 6.5vw, 60px);
  line-height: 1.2;
  font-weight: 900;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}
.detail-hero--chairman .detail-hero__image {
  background-position: 28% center;
}
.detail-hero--chairman .detail-hero__content {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}
.detail-hero--chairman .detail-lead {
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  position: absolute;
  left: 40px;
  bottom: 32px;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-align: left;
}
.breadcrumb span:last-child {
  color: rgba(255, 255, 255, 0.8);
}

.detail-label {
  margin: 0 0 20px;
  color: #fca5a5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.detail-lead {
  max-width: 640px;
  margin: 32px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.85;
  font-weight: 600;
}

.detail-main {
  background: #fff;
  padding: 40px;
}
.detail-main a:not(.js-transition):not(.site-subnav__link):not(.site-menu__link):not(.site-menu__pdf):not(.footer-nav a) {
  color: #dc2626;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}
.detail-main a:not(.js-transition):not(.site-subnav__link):not(.site-menu__link):not(.site-menu__pdf):not(.footer-nav a):hover {
  opacity: 0.82;
}
.detail-main > article {
  max-width: 980px;
  margin: auto;
}
.detail-main--chairman > article {
  max-width: 1280px;
}

.article-intro {
  border-bottom: 1px solid var(--line);
  padding-bottom: 40px;
}
@media (max-width: 900px) {
  .article-intro {
    padding-bottom: 28px;
  }
}

.module-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-intro h2,
.content-module h2 {
  margin: 0;
  color: #020617;
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.article-intro p,
.content-module > p {
  font-size: 18px;
  line-height: 2;
  color: #475569;
  font-weight: 600;
  margin-top: 40px;
}

.key-message {
  margin: 0;
  padding: 56px 0;
  background: #fff;
}
.key-message p {
  margin: 0 0 18px;
  color: #ef4444;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.key-message h2 {
  margin: 0;
  background: #020617;
  color: #fff;
  padding: 32px;
  font-size: clamp(22px, 2.5vw, 38px);
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.content-module {
  padding: 56px 0;
}

.content-section__copy h2,
.content-section__copy h3,
.content-section__copy h4,
.content-section__copy p {
  margin: 0;
}
.content-section__copy h2,
.content-section__copy h3,
.content-section__copy h4 {
  color: #020617;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.content-section__copy h2 {
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1.05;
}
.content-section__copy h3 {
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.22;
}
.content-section__copy h4 {
  font-size: 18px;
  line-height: 1.35;
}
.content-section__copy p {
  color: #475569;
  font-size: 18px;
  line-height: 2;
  font-weight: 600;
}
.content-section__copy p + p {
  margin-top: 14px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e5e7eb;
  border: 1px solid #e5e7eb;
  margin: 36px 0;
}
.stats-grid div {
  background: #f7f7f4;
  padding: 28px;
}
.stats-grid small {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.stats-grid strong {
  display: block;
  margin-top: 38px;
  font-size: 52px;
  letter-spacing: 0.09em;
}
.stats-grid span {
  display: block;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.simple-table {
  border: 1px solid #e5e7eb;
}
.simple-table dl {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin: 0;
  border-bottom: 1px solid #e5e7eb;
}
.simple-table dl:last-child {
  border-bottom: 0;
}
.simple-table dt {
  background: #f7f7f4;
  padding: 18px;
  font-weight: 900;
}
.simple-table dd {
  margin: 0;
  padding: 18px;
  color: #64748b;
  font-weight: 700;
}

.detail-main--finance > article {
  max-width: 1160px;
}

.finance-copy {
  padding: 52px 0 40px;
  border-bottom: 1px solid var(--line);
}
.finance-copy p {
  margin: 0;
  color: #334155;
  font-size: 18px;
  line-height: 2;
  font-weight: 600;
}
.finance-copy p + p {
  margin-top: 18px;
}

.finance-chart-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 40px 0 48px;
}

.finance-chart-grid--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
  margin: 0 auto;
}

.finance-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 32px;
  align-items: start;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.finance-intro__copy h2 {
  margin: 0;
  color: #020617;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.finance-intro__copy p {
  margin: 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.95;
  font-weight: 600;
}
.finance-intro__copy p + p {
  margin-top: 14px;
}

.finance-highlights {
  display: grid;
  gap: 16px;
}

.finance-highlight {
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 22px 24px 24px;
  background: linear-gradient(180deg, #fff, #f8fafc);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}
.finance-highlight--accent {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(255, 255, 255, 0.96));
  border-color: rgba(220, 38, 38, 0.18);
}

.finance-highlight__label {
  display: block;
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.finance-highlight__value {
  display: block;
  margin-top: 12px;
  color: #020617;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.finance-highlight__note {
  margin: 10px 0 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 600;
}

.finance-summary {
  padding: 56px 0;
}

.finance-section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 22px;
}
.finance-section__head h2 {
  margin: 0;
  color: #020617;
  font-size: clamp(26px, 2.8vw, 44px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.finance-section__head--compact {
  align-items: flex-start;
}

.finance-section__lead {
  max-width: 460px;
  margin: 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.95;
  font-weight: 600;
}

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

.finance-chart-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 22px 22px 26px;
  background: linear-gradient(180deg, #fff, #fafafa);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.finance-chart-card h2 {
  margin: 0;
  color: #020617;
  text-align: center;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.finance-section .finance-chart-card h2 {
  margin: 0;
  color: #020617;
  text-align: center;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.finance-chart-card__head h3 {
  margin: 0;
  color: #020617;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.finance-chart-card__head p {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

.finance-chart-legend {
  margin-top: 14px;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #475569;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
  text-align: center;
}

.finance-chart-legend__group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 12px;
}

.finance-chart-legend__prefix {
  color: #334155;
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.finance-chart-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.finance-chart-legend__swatch {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex: 0 0 auto;
}

.finance-chart-legend__swatch--0 {
  background: #94a3b8;
}

.finance-chart-legend__swatch--1 {
  background: #c9a227;
}

.finance-chart-legend__swatch--2 {
  background: #214572;
}

.finance-chart-legend__text {
  color: #475569;
  white-space: normal;
}

.finance-unit-note {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.finance-unit-note--chart {
  display: block;
  width: 100%;
  margin: 8px 0 0;
  color: #64748b;
  font-size: 14px !important;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: right !important;
}

.finance-unit-note--table {
  display: block;
  width: 100%;
  margin: 0 0 8px;
  color: #64748b;
  font-size: 14px !important;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: right !important;
}

.finance-chart-box {
  position: relative;
  width: 100%;
  min-height: 360px;
  margin-top: 18px;
}

.finance-section {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}
.finance-section h2 {
  margin: 0;
  color: #020617;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.finance-section > p {
  margin: 18px 0 0;
  color: #334155;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 600;
}

.finance-bullets {
  margin: 16px 0 28px;
  padding-left: 1.2em;
  color: #334155;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 600;
}
.finance-bullets li + li {
  margin-top: 10px;
}

.finance-section .finance-table-wrap + .finance-table-wrap {
  margin-top: 28px;
}

.finance-callout {
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 26px 28px;
  background: #f7f7f4;
}
.finance-callout p {
  margin: 0;
  color: #334155;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 600;
}
.finance-callout p + p {
  margin-top: 12px;
}

.finance-callout--dark {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.2);
}
.finance-callout--dark p {
  color: rgba(255, 255, 255, 0.92);
}

.finance-callout__eyebrow {
  margin-bottom: 14px;
  color: #b78d00;
  font-size: 12px;
  letter-spacing: 0.09em;
  font-weight: 900;
  text-transform: uppercase;
}

.finance-callout--dark .finance-callout__eyebrow {
  color: #fde68a;
}

.finance-callout__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.finance-metric {
  min-width: 0;
  border-radius: 18px;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.finance-metric span {
  display: block;
  color: inherit;
  opacity: 0.72;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.finance-metric strong {
  display: block;
  margin-top: 10px;
  color: inherit;
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.finance-callout:not(.finance-callout--dark) .finance-metric {
  background: #fff;
  border-color: #e5e7eb;
}

.finance-table-headline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 26px 0 12px;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.finance-table-headline p,
.finance-table-headline span {
  margin: 0;
}
.finance-table-headline span {
  color: #94a3b8;
  letter-spacing: 0.09em;
  text-transform: none;
}

.content-card,
.football-table-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 22px 22px 26px;
  background: linear-gradient(180deg, #fff, #fafafa);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.content-card__head h3,
.football-table-card__head h3 {
  margin: 0;
  color: #020617;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.content-card__head p,
.football-table-card__head p {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

.content-card > h2,
.finance-chart-card > h2 {
  margin: 0;
  color: #020617;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.content-table-wrap,
.finance-table-wrap,
.football-table-wrap {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.04);
  margin-top: 20px;
}

.content-table-scroll,
.table-scroll,
.football-table-scroll {
  overflow-x: auto;
}

.content-table,
.finance-table,
.football-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  line-height: 1.35;
}
.content-table th,
.content-table td,
.finance-table th,
.finance-table td,
.football-table th,
.football-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  vertical-align: middle;
}
.content-table th:last-child,
.content-table td:last-child,
.finance-table th:last-child,
.finance-table td:last-child,
.football-table th:last-child,
.football-table td:last-child {
  border-right: 0;
}
.content-table thead th,
.finance-table thead th,
.football-table thead th {
  background: #0f172a;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  border-bottom-color: rgba(255, 255, 255, 0.18);
  border-right-color: rgba(255, 255, 255, 0.18);
}
.content-table thead th:first-child,
.finance-table thead th:first-child,
.football-table thead th:first-child {
  text-align: left;
  width: 27%;
}
.content-table thead th.is-current,
.finance-table thead th.is-current,
.football-table thead th.is-current {
  background: linear-gradient(135deg, #b91c1c, #ef4444);
}

.content-table__group th,
.finance-table__group th,
.football-table__group th {
  background: #f8fafc;
  color: #020617;
  text-align: left;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.content-table__label,
.finance-table__label,
.football-table__label {
  text-align: left;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.4;
  white-space: normal;
}

.content-table__label--indent,
.finance-table__label--indent,
.football-table__label--indent {
  padding-left: 24px;
  color: #475569;
}

.content-table__label--subtotal,
.finance-table__label--subtotal {
  color: #1e293b;
}

.content-table__label--total,
.content-table__label--grand,
.finance-table__label--total,
.finance-table__label--grand {
  color: #020617;
  font-weight: 900;
}

.content-table__value,
.finance-table__value,
.football-table__value {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

.content-table__value--text,
.finance-table__value--text,
.football-table__value--text {
  text-align: left;
  white-space: normal;
  line-height: 1.75;
}

.content-table__value--current,
.content-table__value.is-current,
.finance-table__value.is-current,
.football-table__value--current {
  color: #0f172a;
  font-weight: 900;
}

.content-table__value.is-negative,
.finance-table__value.is-negative {
  color: #dc2626;
}

.content-table__row--total td,
.content-table__row--total th,
.finance-table__row--total td,
.finance-table__row--total th {
  background: #f8fafc;
  font-weight: 900;
}

.content-table__row--subtotal td,
.content-table__row--subtotal th,
.finance-table__row--subtotal td,
.finance-table__row--subtotal th {
  background: #fcfcfd;
}

.content-table__row--grand td,
.content-table__row--grand th,
.finance-table__row--grand td,
.finance-table__row--grand th {
  background: #fff7f7;
}

.content-table__row:last-child td,
.content-table__row:last-child th,
.finance-table__row:last-child td,
.finance-table__row:last-child th {
  border-bottom: 0;
}

.content-table--matrix,
.football-table--matrix {
  min-width: 920px;
}

.content-table__matrix-cell,
.football-table__matrix-cell {
  text-align: center;
}

.content-table__matrix-cell--same,
.football-table__matrix-cell--same {
  background: #dbeafe;
}

.content-table__matrix-cell--opposite,
.football-table__matrix-cell--opposite {
  background: #dcfce7;
}

.content-table__matrix-cell--neutral,
.football-table__matrix-cell--neutral {
  background: #fff;
}

.content-table__matrix-value,
.football-table__matrix-value {
  display: block;
  font-weight: 900;
}

.content-table__matrix-rate,
.football-table__matrix-rate {
  display: block;
  color: #64748b;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
}

.football-table-grid {
  display: grid;
  gap: 18px;
}

.football-table-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.football-table-stack {
  display: grid;
  gap: 18px;
}

.football-table-note,
.marketing-table-note,
.season-review-footnote {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 600;
}

.season-review-footnote-wrap {
  width: 100%;
  background: #fff;
}

.season-review-footnote-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 0px 20px;
  box-sizing: border-box;
}

.season-review-footnote {
  text-align: center;
}

.club-management-section__copy .football-table-note {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 600;
}

.football-photo-block {
  margin: 28px 0;
}
.football-photo-block img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.12);
}

.timeline-list {
  margin-top: 40px;
}
.timeline-list > div {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  border-top: 1px solid #e5e7eb;
  padding: 28px 0;
}
.timeline-list strong {
  font-size: 36px;
  color: #dc2626;
  letter-spacing: 0.09em;
  white-space: nowrap;
}
.timeline-list h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.09em;
}
.timeline-list p {
  margin: 10px 0 0;
  color: #64748b;
  font-weight: 700;
  line-height: 1.8;
}

.feature-photo {
  margin: 40px 0 0;
  aspect-ratio: 16/9;
  background: url(https://images.unsplash.com/photo-1577223625816-7546f13df25d?q=80&w=1200&auto=format&fit=crop) center/cover;
}

.body-text p {
  font-size: 18px;
  line-height: 2;
  color: #334155;
  font-weight: 600;
}

.point-box {
  border-left: 4px solid #dc2626;
  background: #f7f7f4;
  padding: 24px;
}
.point-box strong {
  color: #dc2626;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.partner-sustainability-page .article-intro p:last-child {
  max-width: 860px;
}

.partner-sustainability-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
  padding: 56px 0;
  border-top: 1px solid #e5e7eb;
}
.partner-sustainability-section:first-of-type {
  border-top: 0;
  padding-top: 48px;
}
.partner-sustainability-section--reverse {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}
.partner-sustainability-section--stack {
  grid-template-columns: 1fr;
}
.partner-sustainability-section__copy {
  min-width: 0;
}
.partner-sustainability-section__copy h2 {
  margin: 0;
  color: #020617;
  font-size: clamp(26px, 2.8vw, 44px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.partner-sustainability-section__copy h2 + h2 {
  margin-top: -6px;
  margin-bottom: 0;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.25;
  font-weight: 700;
}
.partner-sustainability-section__copy h3 {
  margin: 0 0 14px;
  color: #020617;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.partner-sustainability-section__copy h4 {
  margin: 0 0 14px;
  color: #020617;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.partner-sustainability-section__copy p {
  margin: 0;
  color: #334155;
  font-size: 18px;
  line-height: 1.95;
  font-weight: 600;
}
.partner-sustainability-section__copy p.ex {
  margin-bottom: 30px;
}
.partner-sustainability-section__copy p + p {
  margin-top: 16px;
}

.partner-sustainability-media {
  min-width: 0;
  margin: 0;
}
.partner-sustainability-media img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.12);
}
.partner-sustainability-media figcaption {
  margin-top: 10px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 600;
  text-align: center;
}

.partner-sustainability-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.partner-sustainability-section--stack .partner-sustainability-gallery {
  width: 100%;
}

.partner-sustainability-section--stack .partner-sustainability-media,
.partner-sustainability-media--large {
  width: 100%;
  max-width: none;
}

.partner-sustainability-panel {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  background: #f7f7f4;
}
.partner-sustainability-panel h4 {
  margin: 0 0 14px;
  color: #020617;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.partner-sustainability-panel--changes {
  padding-bottom: 20px;
}

.partner-sustainability-change-list {
  display: grid;
  gap: 18px;
}

.partner-sustainability-change {
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
}
.partner-sustainability-change:first-child {
  padding-top: 0;
  border-top: 0;
}
.partner-sustainability-change h5 {
  margin: 0 0 12px;
  color: #dc2626;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.partner-sustainability-change p {
  margin: 0;
  color: #334155;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 600;
}
.partner-sustainability-change p + p {
  margin-top: 10px;
}

.partner-sustainability-timeline {
  margin-top: 0;
}
.partner-sustainability-timeline > div {
  gap: 18px;
  padding: 18px 0;
}
.partner-sustainability-timeline strong {
  color: #dc2626;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.partner-sustainability-timeline p {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
}

.partner-sustainability-timeline--changes > div {
  align-items: start;
}

.partner-sustainability-timeline__body {
  display: grid;
  gap: 10px;
}
.partner-sustainability-timeline__body .partner-sustainability-note {
  margin: 14px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 600;
}

.partner-sustainability-timeline--changes p + p {
  margin-top: 10px;
}

.partner-sustainability-note {
  margin: 14px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 600;
}

.partner-sustainability-aftercard {
  margin-top: 18px;
}
.partner-sustainability-aftercard p {
  margin: 0;
  color: #334155;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 600;
}

.detail-main--special > article {
  max-width: 1180px;
}

.special-overview {
  display: grid;
  gap: 18px;
  padding-bottom: 48px;
  border-bottom: 4px solid #020617;
}
.special-overview p,
.special-overview h2 {
  margin: 0;
}
.special-overview h2 {
  color: #020617;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.special-overview p:not(.module-kicker) {
  max-width: 860px;
  color: #334155;
  font-size: 17px;
  line-height: 2;
  font-weight: 700;
}

.special-event-list {
  display: grid;
}

.special-month-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 3vw, 44px);
  margin: 0 0 20px;
  padding: 0 0 28px;
  border-bottom: 4px solid #020617;
}
.special-month-strip img {
  display: block;
  width: clamp(34px, 5vw, 72px);
  height: clamp(42px, 6.2vw, 86px);
  object-fit: contain;
  opacity: 0.18;
}

.special-event {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 40px;
  align-items: stretch;
  padding: 56px 0;
  border-bottom: 1px solid #e5e7eb;
}
.special-event:nth-child(even) {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}
.special-event:nth-child(even) .special-event__image {
  order: 2;
}
.special-event:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.special-event__image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #e5e7eb;
}
.special-event__image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: #dc2626;
}
.special-event__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.special-event__body {
  position: relative;
  min-width: 0;
  height: 100%;
  padding: 28px 0;
}
.special-event__number {
  position: absolute;
  right: clamp(0px, 3vw, 34px);
  bottom: 0;
  z-index: 0;
  display: block;
  width: clamp(92px, 16vw, 190px);
  max-height: 220px;
  pointer-events: none;
}
.special-event__number img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.08;
}
.special-event__number::after {
  content: "月";
  position: absolute;
  right: -0.2em;
  bottom: 0.02em;
  color: #dc2626;
  font-size: clamp(20px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
  opacity: 0.24;
}
.special-event__month {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: #dc2626;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.special-event h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #020617;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.special-event__body > p:not(.special-event__month) {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  color: #334155;
  font-size: 16px;
  line-height: 2;
  font-weight: 700;
}

.interview-flow--chairman {
  max-width: 1280px;
  margin: auto;
}

.interview-question {
  margin: 0 auto;
  border-top: 1px solid #dbe4ef;
  padding: 64px 30px;
  background-color: #f9f9f9;
}
.interview-question p {
  margin: 0 0 30px;
  color: #64748b;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.interview-question h2 {
  margin: 0;
  position: relative;
  padding-left: 40px;
  color: #00051a;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.interview-question h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 28px;
  height: 2px;
  background: currentColor;
}

.interview-answer {
  display: grid;
  grid-template-columns: minmax(0, 360px) 1fr;
  gap: 70px;
  align-items: center;
  border-top: 1px solid #dbe4ef;
  padding: 64px 0;
}
.interview-answer figure {
  margin: 0;
  overflow: hidden;
  background: #e5e7eb;
  width: 100%;
}
.interview-answer figure div {
  aspect-ratio: 4/5;
  background-size: cover;
}
.interview-answer.is-reverse {
  grid-template-columns: 1fr minmax(0, 360px);
}
.interview-answer.is-reverse figure {
  order: 2;
}
.interview-answer--portrait {
  grid-template-columns: minmax(0, 600px) minmax(0, 1fr);
  align-items: center;
}
.interview-answer--portrait figure {
  max-width: 600px;
}
.interview-answer--portrait.is-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 600px);
}
.interview-answer--portrait.is-reverse figure {
  max-width: 600px;
  order: 2;
}
.interview-answer--landscape {
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.interview-answer--landscape figure {
  max-width: none;
}
.interview-answer--landscape.is-reverse figure {
  order: 0;
}
.interview-answer--stack {
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.interview-answer--stack figure {
  max-width: none;
}
.interview-answer--stack figure div {
  aspect-ratio: 16/9;
}
.interview-answer p {
  margin: 0 0 20px;
  color: #dc2626;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.interview-answer h3 {
  margin: 0;
  color: #334155;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.interview-quote {
  margin: 0;
  border-top: 1px solid #dbe4ef;
  border-bottom: 1px solid #dbe4ef;
  padding: 64px 40px;
  text-align: center;
  color: #020617;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.55;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.interview-wide {
  margin: 0;
}
.interview-wide div {
  aspect-ratio: 16/8;
  background-size: cover;
}
.interview-wide figcaption {
  margin-top: 14px;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #000;
  color: #fff;
}
.footer-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  transition: 0.25s;
}
.footer-nav a:hover {
  background: #fff;
  color: #000;
}
.footer-nav small {
  display: block;
  color: #ef4444;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.footer-nav strong {
  display: block;
  margin-top: 28px;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: 0.09em;
}
@media (max-width: 900px) {
  .footer-nav strong {
    font-size: 18px;
  }
}

.footer-nav--back-wide-first a:first-child,
.footer-nav--back-wide-last a:last-child {
  grid-column: span 2;
}

.season-footer-block {
  background: #fafafa;
}

#partner {
  background-color: #fafafa;
  padding: 100px 20px;
}
#partner .contents {
  width: auto;
  max-width: 1400px;
  margin: auto;
  padding: 0;
}
#partner img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
#partner a {
  color: #000;
  cursor: pointer;
  text-decoration: none;
  word-break: break-all;
}
#partner .partner_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
#partner .partner_wrap:last-child {
  margin-bottom: 0;
}
#partner .partner_wrap h2 {
  margin: 0 auto 20px;
}
#partner .title_p h2,
#partner .broadcasting_p h2 {
  max-width: 450px;
}
#partner img.p_bnr_meijiyasuda,
#partner img.p_bnr_dazn {
  max-width: 208px;
}
#partner img.smile_p_bnr_etc {
  max-width: 160px;
}
#partner .j_top_p {
  max-width: 455px;
  margin: 0 auto 30px;
}
#partner .j_top_p h2 {
  max-width: 450px;
}
#partner .j_top_p .partner_bnr_wrap a {
  flex-basis: 30%;
  width: 30%;
  max-width: 138px;
  margin: 5px;
}
#partner .partner_bnr_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#partner .cup_p {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: inherit;
  flex-wrap: wrap;
}
#partner .cup_p_bnr_box {
  width: 30%;
  max-width: 138px;
  margin: 5px;
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}
#partner .cup_p_bnr_box h2 > * {
  flex-shrink: 0;
}
#partner .cup_p_bnr_box a {
  margin-top: auto;
}
#partner .cup_p_bnr_box h2 img {
  max-width: 137px;
  width: 100%;
}
#partner .promo_p {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: inherit;
  flex-wrap: wrap;
}
#partner .promo_p_bnr_box {
  max-width: 139px;
  margin: 5px;
  width: 22%;
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}
#partner .promo_p_bnr_box h2 img {
  max-width: 137px;
  width: 100%;
}
#partner .j_supporting_company_p {
  max-width: 613px;
  margin: 0 auto 30px;
}
#partner .j_supporting_company_p h2 {
  max-width: 252px;
}
#partner .j_climate_action_p h2 {
  max-width: 272px;
}
#partner .j_fairplay_p h2 {
  max-width: 228px;
}
#partner .j_youthdevelopment_p h2 {
  max-width: 313px;
}
#partner .partner_bnr_wrap a {
  flex: 0 1 22%;
  max-width: 139px;
  width: 22%;
  margin: 5px;
}
#partner ul {
  margin: 0;
  padding: 0;
  text-align: center;
  list-style: none;
}
#partner .j_climate_action_p ul,
#partner .j_fairplay_p ul,
#partner .j_youthdevelopment_p ul {
  max-width: 700px;
}
#partner .j_climate_action_p ul li,
#partner .j_fairplay_p ul li,
#partner .j_youthdevelopment_p ul li {
  display: inline-block;
}
#partner li {
  line-height: 1.6;
}
#partner li a {
  color: #000;
  font-size: 14px;
  text-decoration: none;
}
#partner li a:hover {
  text-decoration: underline;
}
#partner .j_climate_action_p ul li a,
#partner .j_fairplay_p ul li a,
#partner .j_youthdevelopment_p ul li a {
  display: block;
  padding: 10px;
  font-size: 15px;
  line-height: 1em;
}

.season-review-footer {
  background: #000;
  padding: 40px 20px;
}
.season-review-footer .f_bnr_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.season-review-footer .f_bnr_wrap .bnr {
  width: 50%;
  max-width: 300px;
  margin: 0 10px;
}
.season-review-footer img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.season-review-footer a {
  cursor: pointer;
  word-break: break-all;
}
.season-review-footer #copyright {
  margin: 0;
  padding: 50px 30px 0;
  color: #fff;
  font-size: 10px;
  text-align: center;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  opacity: 0;
  backdrop-filter: blur(8px);
  transition: opacity 0.18s ease;
  pointer-events: none;
}
.page-transition.is-active {
  opacity: 1;
}

body.is-loaded .page-transition {
  opacity: 0;
}

body.is-unloading .page-transition {
  opacity: 1;
}

@media (max-width: 900px) {
  .site-header__inner {
    padding: 0 20px;
  }
  .pdf-link {
    display: none;
  }
  .menu-button {
    display: flex;
    margin-left: auto;
    z-index: 72;
  }
  .site-menu {
    align-items: flex-start;
    padding: calc(var(--header-h) + 12px) 16px 24px;
  }
  .site-menu__inner {
    width: 100%;
    max-height: calc(100svh - var(--header-h) - 36px);
    justify-content: flex-start;
    gap: 18px;
    padding-bottom: 12px;
  }
  .site-menu__nav {
    width: 100%;
  }
  .site-menu__link {
    width: 100%;
    max-width: none;
  }
  .site-menu__pdf {
    display: none;
    width: 100%;
    max-width: none;
  }
  .partner-sustainability-section {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 34px 0;
  }
  .partner-sustainability-section--reverse {
    grid-template-columns: 1fr;
  }
  .partner-sustainability-section--stack {
    grid-template-columns: 1fr;
  }
  .partner-sustainability-section__copy h2 {
    font-size: clamp(24px, 7vw, 34px);
  }
  .partner-sustainability-section__copy p {
    font-size: 15px;
    line-height: 1.9;
  }
  .partner-sustainability-media figcaption {
    font-size: 12px;
  }
  .partner-sustainability-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .partner-sustainability-panel {
    padding: 18px;
  }
  .partner-sustainability-panel h3 {
    font-size: 20px;
  }
  .partner-sustainability-timeline > div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
  }
  .partner-sustainability-timeline strong {
    font-size: 16px;
  }
  .partner-sustainability-timeline p {
    font-size: 14px;
  }
  .home-grid {
    height: auto;
    overflow: visible;
  }
  .home-grid__inner {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
  }
  .grid-tile {
    min-height: 360px;
  }
  .home-scroll-prompt {
    margin-top: 16px;
    gap: 8px;
  }
  .home-scroll-prompt i {
    height: 34px;
  }
  body.detail-page {
    --subnav-h: 50px;
  }
  .site-subnav__track {
    padding: 0 20px;
    gap: 8px;
  }
  .site-subnav__link {
    min-width: 168px;
    padding: 0 14px;
  }
  .span-4,
  .span-6,
  .span-3,
  .span-2 {
    grid-column: span 1;
  }
  .span-row-2 {
    grid-row: span 1;
  }
  .span-row-4 {
    grid-row: span 1;
  }
  .grid-tile--chairman,
  .grid-tile--result,
  .grid-tile--special-jleague,
  .home-grid__row-three,
  .grid-tile--football,
  .grid-tile--marketing,
  .grid-tile--sustainability,
  .grid-tile--finance,
  .grid-tile--club-management,
  .grid-tile--concept {
    grid-column: auto;
    grid-row: auto;
  }
  .home-grid__row-three {
    grid-template-columns: 1fr;
  }
  .detail-hero {
    padding-inline: 24px;
    min-height: clamp(460px, 62vh, 700px);
  }
  .detail-hero--chairman .detail-hero__image {
    background-position: 24% center;
  }
  .detail-hero--chairman .detail-hero__content {
    margin: 0 auto;
    text-align: center;
  }
  .detail-hero h1 {
    font-size: 32px;
  }
  .football-page .detail-hero {
    padding-inline: 0;
  }
  .football-page .detail-hero__content {
    padding: 0 24px;
  }
  .breadcrumb {
    left: 24px;
    bottom: 20px;
    justify-content: flex-start;
  }
  .detail-main {
    padding: 28px 24px 54px;
  }
  .football-page .detail-main {
    padding-left: 16px;
    padding-right: 16px;
  }
  .interview-answer,
  .interview-answer.is-reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .interview-answer.is-reverse figure {
    order: 0;
  }
  .stats-grid,
  .footer-nav {
    grid-template-columns: 1fr;
  }
  .detail-main--finance > article {
    max-width: 100%;
  }
  .finance-copy {
    padding: 34px 0 28px;
  }
  .finance-chart-grid {
    grid-template-columns: 1fr;
    padding: 28px 0 36px;
  }
  .finance-chart-box {
    min-height: 300px;
  }
  .finance-section {
    padding: 34px 0 44px;
  }
  .finance-bullets {
    margin-bottom: 22px;
  }
  .finance-summary {
    padding: 40px 0;
  }
  .finance-summary__grid {
    grid-template-columns: 1fr;
  }
  .football-table-grid--3 {
    grid-template-columns: 1fr;
  }
  .football-table-stack {
    gap: 14px;
  }
  .football-table--matrix {
    min-width: 880px;
  }
  .finance-callout__metrics {
    grid-template-columns: 1fr;
  }
  .finance-section__head,
  .finance-table-headline {
    flex-direction: column;
    align-items: flex-start;
  }
  .finance-section__lead {
    max-width: none;
  }
  .finance-table {
    min-width: 960px;
    font-size: 13px;
  }
  .finance-table th,
  .finance-table td {
    padding: 10px 8px;
  }
  .finance-table thead th:first-child {
    width: 32%;
  }
  .footer-nav--back-wide-first a:first-child,
  .footer-nav--back-wide-last a:last-child {
    grid-column: auto;
  }
  #partner {
    padding: 50px 20px;
  }
  #partner .partner_wrap {
    margin-bottom: 20px;
  }
  #partner .partner_bnr_wrap a {
    flex-basis: 22%;
    margin: 0 5px 1%;
  }
  #partner .j_top_p .partner_bnr_wrap a {
    flex-basis: 30%;
  }
  #partner .promo_p_bnr_box,
  #partner .cup_p_bnr_box {
    flex: 0 1 22%;
  }
  #partner .j_climate_action_p ul li a,
  #partner .j_fairplay_p ul li a,
  #partner .j_youthdevelopment_p ul li a {
    font-size: 14px;
    padding: 5px 10px 0;
  }
  #partner img.p_bnr_meijiyasuda,
  #partner img.p_bnr_dazn {
    max-width: 138px;
  }
  #partner .partner_wrap h2 {
    margin: 0 auto 10px;
  }
  .season-review-footer .f_bnr_wrap {
    flex-direction: column;
  }
  .season-review-footer .f_bnr_wrap .bnr {
    width: 60%;
    max-width: none;
    margin-bottom: 20px;
  }
  .season-review-footer .f_bnr_wrap .bnr:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 900px) and (max-width: 640px) {
  #partner {
    padding: 44px 16px;
  }
  #partner .title_p h2,
  #partner .broadcasting_p h2,
  #partner .j_top_p h2 {
    max-width: 320px;
  }
  #partner .j_top_p {
    max-width: 100%;
  }
  #partner .partner_bnr_wrap a,
  #partner .j_top_p .partner_bnr_wrap a {
    flex-basis: 30%;
    width: 30%;
    margin: 0 4px 8px;
  }
  #partner .promo_p_bnr_box,
  #partner .cup_p_bnr_box {
    flex-basis: 30%;
    width: 30%;
    max-width: 138px;
    margin: 0 4px 10px;
  }
  #partner .j_climate_action_p ul,
  #partner .j_fairplay_p ul,
  #partner .j_youthdevelopment_p ul {
    max-width: 100%;
  }
  .finance-chart-box {
    min-height: 280px;
  }
  .season-review-footer .f_bnr_wrap .bnr {
    width: min(82%, 300px);
  }
}
@media (max-width: 900px) and (max-width: 420px) {
  #partner .partner_bnr_wrap a,
  #partner .j_top_p .partner_bnr_wrap a,
  #partner .promo_p_bnr_box,
  #partner .cup_p_bnr_box {
    flex-basis: 45%;
    width: 45%;
  }
  #partner img.p_bnr_meijiyasuda,
  #partner img.p_bnr_dazn {
    max-width: 138px;
  }
  .season-review-footer .f_bnr_wrap .bnr {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .timeline-list > div {
    grid-template-columns: 1fr;
  }
  .interview-question p {
    font-size: 14px;
  }
  .interview-quote {
    font-size: 28px;
    padding-inline: 0;
  }
  .special-overview {
    gap: 14px;
    padding-bottom: 36px;
  }
  .special-overview h2 {
    font-size: 26px;
    line-height: 1.25;
  }
  .special-overview p:not(.module-kicker) {
    font-size: 15px;
    line-height: 1.9;
  }
  .special-event,
  .special-event:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 40px 0;
  }
  .special-event:nth-child(even) .special-event__image {
    order: 0;
  }
  .special-event__month {
    margin-bottom: 12px;
  }
  .special-event__body {
    padding: 4px 0 0;
  }
  .special-event__number {
    right: 0;
    bottom: 0;
    width: 96px;
  }
  .special-event__number img {
    opacity: 0.07;
  }
  .special-event__number::after {
    font-size: 22px;
    opacity: 0.2;
  }
  .special-event h3 {
    font-size: 22px;
    line-height: 1.35;
  }
  .special-event__body > p:not(.special-event__month) {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.9;
  }
}
/* Season result standings */
.detail-main--results > article {
  max-width: 1180px;
}

.article-intro--results .result-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.article-intro--results .result-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #020617;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  transition: 0.2s;
}
.article-intro--results .result-jump a:hover {
  border-color: #dc2626;
  color: #dc2626;
}

.league-section {
  margin-top: 72px;
  border-top: 4px solid #020617;
}
.league-section__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 24px;
  align-items: end;
  padding: 28px 0 24px;
}
.league-section__header p,
.league-section__header h3 {
  margin: 0;
}
.league-section__header p {
  grid-column: 1/-1;
  color: #dc2626;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.league-section__header p.league-section__description {
  margin: 30px 0 0;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 600;
  color: #000 !important;
}
.league-section__header h3 {
  color: #020617;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.league-section__header a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #020617;
  color: #020617;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}
.league-section__logo {
  display: block;
  width: 200px;
  height: auto;
  object-fit: contain;
}
.league-section__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.league-section__heading h3 {
  margin: 0;
}

.detail-main--results #j1 {
  margin-top: 40px;
}

.competition-summary {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.competition-card {
  border: 0;
  border-top: 4px solid #020617;
  padding-top: 28px;
  background: transparent;
}
.competition-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0;
  border-bottom: 0;
  background: transparent;
  color: #020617;
}
.competition-card__head h4 {
  margin: 0;
  color: #020617;
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.competition-card__head-logo {
  display: block;
  width: 200px;
  height: auto;
  object-fit: contain;
}
.competition-card__head-logo.as {
  width: 100px;
}
.competition-card__title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.competition-card__title h4 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.09em;
}
.competition-card__logo {
  display: block;
  width: 120px;
  height: 40px;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
}
.competition-card p {
  margin: 30px 0 0;
  padding: 0;
  color: #000;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.09em;
}

.league-summary {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 1px;
  margin-bottom: 28px;
  border: 1px solid #e5e7eb;
  background: #e5e7eb;
}
.league-summary div {
  min-width: 0;
  background: #f7f7f4;
  padding: 22px;
}
.league-summary span,
.league-summary small {
  display: block;
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.league-summary strong {
  display: block;
  margin-top: 12px;
  color: #020617;
  font-size: clamp(20px, 2.2vw, 34px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.league-summary small {
  margin-top: 8px;
  letter-spacing: 0.09em;
  text-transform: none;
}

.standings-card {
  border: 1px solid #e5e7eb;
  background: #fff;
}
.standings-card + .standings-card, .area-standings__grid .standings-card {
  margin-top: 0;
}
.standings-card--final {
  margin-bottom: 40px;
  border: none;
}
.standings-card__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  padding: 20px 22px;
  border-bottom: 1px solid #e5e7eb;
  background: #020617;
  color: #fff;
}
.standings-card__head p,
.standings-card__head h4 {
  margin: 0;
}
.standings-card__head p {
  color: #fca5a5;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.standings-card__head h4 {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.09em;
}
.standings-card__subhead {
  padding: 12px 16px;
  border-bottom: 1px solid #e5e7eb;
  background: #f8fafc;
}
.standings-card__subhead span {
  color: #020617;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.result-final__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 22px;
  background: #fff;
}
.result-final__stack {
  display: grid;
  gap: 18px;
  min-width: 0;
}
.result-final__area {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #fff;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}
.table-scroll:focus {
  outline: 2px solid rgba(220, 38, 38, 0.5);
  outline-offset: 2px;
}

.result-table {
  width: 100%;
  min-width: 820px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 16px;
  line-height: 1.35;
}
.result-table th,
.result-table td {
  padding: 14px 12px;
  text-align: center;
  white-space: nowrap;
}
.result-table th {
  position: sticky;
  top: 0;
  z-index: 3;
  background: #f8fafc;
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.result-table tbody tr:nth-child(even) td {
  background: #f8fafc;
}
.result-table .rank-cell {
  position: sticky;
  left: 0;
  z-index: 2;
  width: 58px;
  min-width: 58px;
  background: #fff;
}
.result-table .rank-cell span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #020617;
  font-weight: 900;
}
.result-table th:first-child {
  left: 0;
  z-index: 5;
}
.result-table .club-cell {
  position: sticky;
  left: 58px;
  z-index: 2;
  min-width: 220px;
  max-width: 260px;
  text-align: left;
  background: #fff;
  box-shadow: 1px 0 0 #e5e7eb;
}
.result-table .club-entry {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.result-table .club-emblem {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.result-table th:nth-child(2) {
  left: 58px;
  z-index: 5;
  text-align: left;
  box-shadow: 1px 0 0 #e5e7eb;
}
.result-table .club-name {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: #020617;
  font-weight: 900;
  text-overflow: ellipsis;
}
.result-table .points-cell {
  color: #dc2626;
  font-size: 18px;
  font-weight: 900;
}
.result-table .goal-diff {
  font-weight: 900;
}
.result-table .goal-diff.is-plus {
  color: #047857;
}
.result-table .goal-diff.is-minus {
  color: #dc2626;
}
.result-table--stats {
  min-width: 420px;
}
.result-table--stats .club-cell {
  max-width: none;
}
.result-table--final {
  min-width: 420px;
}
.result-table--final .club-cell {
  max-width: none;
}

.result-final__area--top-three .result-table--final tbody tr:nth-child(-n+3) .rank-cell span {
  border-color: #dc2626;
  background: #dc2626;
  color: #fff;
}

.area-standings {
  margin-top: 48px;
}
.area-standings__intro {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}
.area-standings__intro p,
.area-standings__intro h4,
.area-standings__intro span {
  margin: 0;
}
.area-standings__intro p {
  color: #dc2626;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.area-standings__intro h4 {
  color: #020617;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.area-standings__intro span {
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}
.area-standings__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.result-note {
  margin: 48px 0 0;
  padding: 18px 20px;
  border-left: 4px solid #dc2626;
  background: #f7f7f4;
  color: #475569;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
}

@media (min-width: 960px) {
  .result-final__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .area-standings__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .area-standings__grid .standings-card--area {
    min-width: 0;
  }
  .area-standings__grid .result-table {
    min-width: 420px;
  }
}
@media (max-width: 900px) {
  .article-intro--results .result-jump {
    display: grid;
    grid-template-columns: 1fr;
  }
  .league-section {
    margin-top: 56px;
  }
  .league-section__header {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .league-section__header p {
    text-align: center;
  }
  .league-section__header p.league-section__description {
    text-align: left;
  }
  .league-section__header a {
    justify-self: start;
  }
  .league-section__heading {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
  }
  .league-section__logo {
    width: 180px;
  }
  .detail-main--results #j1 {
    margin-top: 36px;
  }
  .competition-card__head {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
  }
  .competition-card__head-logo {
    width: 180px;
  }
  .league-summary {
    grid-template-columns: 1fr;
  }
  .standings-card__head {
    display: grid;
    align-items: start;
  }
  .result-final__grid {
    gap: 16px;
    padding: 16px;
  }
  .table-scroll {
    overflow-x: auto;
  }
  .result-table {
    font-size: 14px;
    table-layout: fixed;
    min-width: 0;
  }
  .result-table th,
  .result-table td {
    padding: 10px 6px;
  }
  .result-table .rank-cell,
  .result-table th:first-child {
    left: 0;
    width: 42px;
    min-width: 42px;
  }
  .result-table .club-cell {
    left: 42px;
    min-width: 0;
    max-width: none;
  }
  .result-table th:nth-child(2) {
    left: 42px;
  }
  .result-table .club-entry {
    gap: 8px;
  }
  .result-table .club-emblem {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
  }
  .result-table .club-name {
    white-space: normal;
    line-height: 1.35;
  }
  .result-table--stats {
    min-width: 0;
  }
  .result-table--stats th:first-child,
  .result-table--stats td:first-child {
    width: 42px;
  }
  .result-table--stats th:last-child,
  .result-table--stats td:last-child {
    width: 54px;
  }
  .result-table--final {
    min-width: 0;
  }
  .result-table--final th:first-child,
  .result-table--final td:first-child {
    width: 42px;
  }
}
/* End season result standings */
.interview-answer--text {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.interview-answer--image.interview-answer--portrait figure div {
  aspect-ratio: 4/5;
}

.interview-answer--image.interview-answer--landscape figure div {
  aspect-ratio: 16/9;
}

.interview-note {
  margin: -16px auto 8px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
}

.key-message--goal::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, rgba(220, 38, 38, 0.22), rgba(183, 141, 0, 0.22));
  pointer-events: none;
}
.key-message--goal .key-message__masthead span {
  display: inline-block;
  color: #b78d00;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.key-message--goal .key-message__masthead h2 {
  margin: 0 0 30px;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: none;
}
.key-message--goal .key-message__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.key-message--goal .key-message__card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #dbe4ef;
  border-radius: 20px;
  padding: 22px 24px 24px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}
.key-message--goal .key-message__card--wide {
  grid-column: span 2;
}
.key-message--goal .key-message__eyebrow {
  display: block;
  color: #b78d00;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.key-message--goal .key-message__card strong {
  display: block;
  margin-top: 12px;
  color: #020617;
  font-size: clamp(28px, 3vw, 52px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.key-message--goal .key-message__card p {
  display: block;
  margin-top: 10px;
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 600;
}
.key-message--goal .key-message__number {
  display: inline-block;
  color: #dc2626;
  font-size: 1.15em;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.09em;
  vertical-align: baseline;
}

@media (max-width: 900px) {
  .key-message--goal .key-message__grid {
    grid-template-columns: 1fr;
  }
  .key-message--goal {
    padding: 28px 20px 22px;
    margin-top: 56px;
  }
  .key-message--goal .key-message__masthead {
    margin-bottom: 18px;
  }
  .key-message--goal .key-message__card--wide {
    grid-column: span 1;
  }
  .key-message--goal .key-message__card {
    min-height: 0;
  }
  .key-message--goal .key-message__card strong {
    font-size: clamp(26px, 8vw, 38px);
  }
}
.football-main > article,
.marketing-main > article,
.club-management-main > article {
  width: 100%;
  min-width: 0;
  max-width: 1180px;
}

.football-section,
.marketing-section,
.club-management-section {
  display: grid;
  gap: 20px;
  padding: 56px 0;
  border-top: 1px solid #e5e7eb;
}
.football-section > *,
.marketing-section > *,
.club-management-section > * {
  min-width: 0;
}
.football-section:first-of-type,
.marketing-section:first-of-type,
.club-management-section:first-of-type {
  border-top: 0;
  padding-top: 48px;
}
.football-section--stack,
.marketing-section--stack,
.club-management-section--stack {
  grid-template-columns: 1fr;
}
.football-section__copy h2,
.marketing-section__copy h2,
.club-management-section__copy h2 {
  margin: 0 0 18px;
  color: #020617;
  font-size: clamp(26px, 2.8vw, 44px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.football-section__copy h3,
.marketing-section__copy h3,
.club-management-section__copy h3 {
  margin: 0 0 14px;
  color: #020617;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.football-section__copy h4,
.marketing-section__copy h4,
.club-management-section__copy h4 {
  margin: 0 0 14px;
  color: #020617;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.football-section__copy p,
.marketing-section__copy p,
.club-management-section__copy p {
  margin: 0;
  color: #334155;
  font-size: 18px;
  line-height: 1.95;
  font-weight: 600;
}
.football-section__copy p + p,
.marketing-section__copy p + p,
.club-management-section__copy p + p {
  margin-top: 16px;
}

.football-mqa-section__lead {
  display: grid;
  gap: 0;
}

.football-mqa-section__lead .football-section__copy p {
  margin-bottom: 20px;
}

.football-table-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 22px 22px 26px;
  background: linear-gradient(180deg, #fff, #fafafa);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}
.football-table-card__head h3 {
  margin: 0;
  color: #020617;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.football-table-card__head p {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

.football-table-card--compact .content-table-wrap.football-table-wrap {
  margin-top: 0;
}

.football-table-wrap {
  width: 100%;
  min-width: 0;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.04);
}

.football-table-scroll {
  min-width: 0;
  overflow-x: auto;
}

.football-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  line-height: 1.35;
}
.football-table th,
.football-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  vertical-align: middle;
}
.football-table th:last-child,
.football-table td:last-child {
  border-right: 0;
}
.football-table thead th {
  background: #0f172a;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  border-bottom-color: rgba(255, 255, 255, 0.18);
  border-right-color: rgba(255, 255, 255, 0.18);
}
.football-table thead th:first-child {
  text-align: left;
  width: 27%;
}
.football-table__group th {
  background: #f8fafc;
  color: #020617;
  text-align: left;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.football-table__label {
  text-align: left;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.4;
  white-space: normal;
}
.football-table__label--indent {
  padding-left: 24px;
  color: #475569;
}
.football-table__value {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}
.football-table__value--text {
  text-align: left;
  white-space: normal;
  line-height: 1.75;
}
.football-table__value--current {
  color: #0f172a;
  font-weight: 900;
}
.football-table__matrix-cell {
  text-align: center;
}
.football-table__matrix-cell--same {
  background: #dbeafe;
}
.football-table__matrix-cell--opposite {
  background: #dcfce7;
}
.football-table__matrix-cell--neutral {
  background: #fff;
}
.football-table__matrix-value {
  display: block;
  font-weight: 900;
}
.football-table__matrix-rate {
  display: block;
  color: #64748b;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
}
.football-table--matrix {
  min-width: 920px;
}

.football-table-grid {
  display: grid;
  gap: 18px;
}

.football-table-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.football-table-stack {
  display: grid;
  gap: 18px;
}

.football-photo-block {
  margin: 28px 0;
  width: 100%;
  min-width: 0;
}
.football-photo-block img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.12);
}

.football-pie-card {
  width: 100%;
  min-width: 0;
  gap: 18px;
}

.football-pie-stack {
  display: grid;
  gap: 18px;
}
.football-pie-stack > .football-pie-card + .football-pie-card {
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.football-pie-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.football-pie-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.football-pie-legend__item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--football-pie-accent, #214572);
}
.football-pie-legend__item--0 {
  --football-pie-accent: #214572;
}
.football-pie-legend__item--1 {
  --football-pie-accent: #c9a227;
}
.football-pie-legend__item--2 {
  --football-pie-accent: #94a3b8;
}

.football-pie-matrix {
  display: grid;
  gap: 16px;
}

.football-pie-matrix__head {
  display: grid;
  grid-template-columns: minmax(96px, 1fr) repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.football-pie-matrix__headcell {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-align: center;
}

.football-pie-matrix__headcell--blank {
  text-align: left;
}

.football-pie-row {
  display: grid;
  grid-template-columns: minmax(96px, 1fr) minmax(0, 3fr);
  gap: 12px;
  align-items: center;
}
.football-pie-row + .football-pie-row {
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
}

.football-pie-row__label {
  color: #020617;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.football-pie-row__cells {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.football-pie-cell {
  display: grid;
  justify-items: center;
  gap: 10px;
}
.football-pie-cell + .football-pie-cell {
  padding-left: 12px;
  border-left: 1px solid #e5e7eb;
}

.football-pie {
  position: relative;
  display: grid;
  place-items: center;
  width: min(150px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--football-pie-accent, #214572) calc(var(--football-pie-value, 0) * 1%), #e2e8f0 0);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}
.football-pie::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: #fff;
}

.football-pie__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 4px;
  text-align: center;
  padding: 18px;
}

.football-pie__value {
  color: #020617;
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.football-pie__count {
  color: #64748b;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
}

.football-pie-cell__label {
  display: none;
}

.football-graph-card,
.football-heatmap-card,
.football-activity-card {
  width: 100%;
  min-width: 0;
  gap: 18px;
}

.football-graph-card__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.football-graph-card__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.football-graph-card__legend-item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--football-accent, #214572);
}
.football-graph-card__legend-item--0 {
  --football-accent: #214572;
}
.football-graph-card__legend-item--1 {
  --football-accent: #c9a227;
}
.football-graph-card__legend-item--2 {
  --football-accent: #94a3b8;
}

.football-compare-list {
  display: grid;
  gap: 18px;
}

.football-compare-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(0, 1.45fr);
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
}
.football-compare-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.football-compare-row__label {
  color: #020617;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 900;
}

.football-compare-row__metrics {
  display: grid;
  gap: 12px;
}

.football-compare-metric {
  --football-accent: #214572;
}
.football-compare-metric--0 {
  --football-accent: #214572;
}
.football-compare-metric--1 {
  --football-accent: #c9a227;
}
.football-compare-metric--2 {
  --football-accent: #94a3b8;
}

.football-compare-metric__head,
.football-graph-group__bar-head,
.football-heatmap__cell-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
}

.football-compare-metric__head span,
.football-graph-group__bar-head span {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.football-compare-metric__head strong,
.football-graph-group__bar-head strong,
.football-heatmap__cell-head strong {
  color: #020617;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.football-compare-metric__caption,
.football-graph-group__bar-caption {
  margin-top: 8px;
  color: #475569;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.football-compare-metric__track,
.football-graph-group__bar-track,
.football-heatmap__track {
  height: 12px;
  margin-top: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: #e2e8f0;
}

.football-compare-metric__fill,
.football-graph-group__bar-fill,
.football-heatmap__fill {
  display: block;
  width: var(--football-bar-width);
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--football-accent, #214572), rgba(33, 69, 114, 0.72));
}

.football-heatmap-card__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: 18px;
  align-items: start;
}

.football-heatmap-card__heading {
  min-width: 0;
}

.football-heatmap-card__legend {
  justify-self: end;
  display: grid;
  gap: 8px;
}

.football-heatmap-card__legend-item {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.football-heatmap-card__legend-swatch {
  display: block;
  width: 100%;
  height: 20px;
  border-radius: 0;
  background: #cbd5e1;
}

.football-heatmap-card__legend-swatch--same {
  background: #214572;
}

.football-heatmap-card__legend-swatch--opposite {
  background: #3a8350;
}

.football-heatmap-card__legend-label {
  color: #334155;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.football-graph-group {
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
}
.football-graph-group:first-child {
  padding-top: 0;
  border-top: 0;
}

.football-graph-group__title {
  margin: 0 0 14px;
  color: #020617;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.football-graph-group__grid {
  display: grid;
  gap: 14px;
}

.football-graph-group__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.football-graph-group__category {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 16px;
  background: #fff;
}

.football-graph-group__category-label {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.football-graph-group__bars {
  display: grid;
  gap: 10px;
}

.football-graph-group__bar {
  --football-accent: #214572;
}
.football-graph-group__bar--0 {
  --football-accent: #214572;
}
.football-graph-group__bar--1 {
  --football-accent: #c9a227;
}
.football-graph-group__bar--2 {
  --football-accent: #94a3b8;
}

.football-activity-list {
  display: grid;
  gap: 0;
}

.football-activity-list__item {
  display: grid;
  grid-template-columns: minmax(120px, 160px) minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid #e5e7eb;
  align-items: center;
}
.football-activity-list__item:first-child {
  padding-top: 0;
  border-top: 0;
}
.football-activity-list__item:last-child {
  padding-bottom: 0;
}

.football-activity-list__label {
  color: #020617;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.football-activity-list__body {
  color: #334155;
  font-size: 16px;
  line-height: 1.85;
  font-weight: 600;
}

.football-heatmap {
  display: grid;
  gap: 12px;
}

.football-heatmap__axis,
.football-heatmap__row {
  display: grid;
  grid-template-columns: minmax(96px, 1fr) repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.football-heatmap__axis {
  padding-bottom: 2px;
}

.football-heatmap__axis span {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-align: center;
}

.football-heatmap__axis span:first-child {
  text-align: left;
}

.football-heatmap__row-label {
  display: flex;
  align-items: center;
  color: #020617;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.football-heatmap__cell {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 14px;
  background: #fff;
}

.football-heatmap__cell--same {
  background: linear-gradient(180deg, #eff6ff, #fff);
}

.football-heatmap__cell--opposite {
  background: linear-gradient(180deg, #f0fdf4, #fff);
}

.football-heatmap__cell--neutral {
  background: linear-gradient(180deg, #f8fafc, #fff);
}

.football-heatmap__cell-head {
  margin-bottom: 8px;
}

.football-heatmap__cell-head span {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.football-heatmap__cell-head strong {
  font-size: 18px;
}

.football-heatmap__cell--same .football-heatmap__fill {
  background: linear-gradient(90deg, #214572, rgba(33, 69, 114, 0.74));
}

.football-heatmap__cell--opposite .football-heatmap__fill {
  background: linear-gradient(90deg, #3a8350, rgba(58, 131, 80, 0.74));
}

.football-heatmap__cell--neutral .football-heatmap__fill {
  background: linear-gradient(90deg, #334155, #94a3b8);
}

@media (max-width: 900px) {
  .marketing-page .detail-hero {
    padding-inline: 0;
  }
  .marketing-page .detail-hero__content {
    padding: 0 24px;
  }
  .marketing-page .detail-main {
    padding-left: 16px;
    padding-right: 16px;
  }
  .football-section,
  .marketing-section,
  .club-management-section {
    gap: 20px;
    padding: 34px 0;
  }
  .football-section--stack,
  .marketing-section--stack,
  .club-management-section--stack {
    grid-template-columns: 1fr;
  }
  .football-section__copy h2,
  .marketing-section__copy h2,
  .club-management-section__copy h2 {
    font-size: clamp(24px, 7vw, 34px);
  }
  .football-section__copy p,
  .marketing-section__copy p,
  .club-management-section__copy p {
    font-size: 15px;
    line-height: 1.9;
  }
  .football-main > article,
  .marketing-main > article,
  .club-management-main > article {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .football-table-grid--3 {
    grid-template-columns: 1fr;
  }
  .football-table-stack {
    gap: 14px;
  }
  .football-table-card,
  .football-pie-card,
  .football-heatmap-card,
  .football-activity-card,
  .football-graph-card {
    padding: 18px 18px 22px;
  }
  .football-table-wrap {
    border-radius: 8px;
  }
  .football-table {
    min-width: 760px;
    font-size: 13px;
  }
  .football-table--matrix {
    min-width: 720px;
  }
  .football-table__label,
  .football-table__value--text,
  .football-activity-list__body,
  .football-graph-group__title,
  .football-heatmap-card__legend-label,
  .football-pie-row__label,
  .football-compare-row__label {
    overflow-wrap: anywhere;
  }
  .football-compare-row,
  .football-activity-list__item,
  .football-heatmap__axis,
  .football-heatmap__row {
    grid-template-columns: 1fr;
  }
  .football-compare-row__metrics,
  .football-graph-group__grid {
    gap: 10px;
  }
  .football-graph-group__grid--3 {
    grid-template-columns: 1fr;
  }
  .football-pie-matrix__head {
    display: none;
  }
  .football-pie-row {
    grid-template-columns: 1fr;
  }
  .football-pie-row + .football-pie-row {
    padding-top: 14px;
    border-top: 1px solid #e5e7eb;
  }
  .football-pie-row__cells {
    grid-template-columns: 1fr;
  }
  .football-pie-stack {
    gap: 14px;
  }
  .football-pie-legend {
    gap: 8px 12px;
  }
  .football-pie-legend__item {
    font-size: 11px;
  }
  .football-pie-cell {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
  }
  .football-pie-cell + .football-pie-cell {
    padding-left: 0;
    border-left: 0;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
  }
  .football-pie-stack > .football-pie-card + .football-pie-card {
    padding-top: 18px;
  }
  .football-table-card {
    padding: 18px 18px 22px;
  }
  .football-table th,
  .football-table td {
    padding: 10px 8px;
  }
  .football-table thead th:first-child {
    width: 32%;
  }
  .football-heatmap__axis {
    display: none;
  }
  .football-heatmap-card__head {
    grid-template-columns: 1fr;
  }
  .football-heatmap-card__legend {
    justify-self: start;
  }
  .football-heatmap-card__legend-item {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 8px;
  }
  .football-heatmap-card__legend-swatch {
    height: 16px;
  }
  .football-heatmap-card__legend-label {
    font-size: 12px;
    line-height: 1.45;
  }
  .football-heatmap__cell {
    padding: 12px;
    border-radius: 16px;
  }
  .football-heatmap__cell-head {
    margin-bottom: 6px;
  }
  .football-pie {
    width: min(120px, 100%);
  }
  .football-pie__inner {
    padding: 14px;
  }
  .football-pie__value {
    font-size: clamp(14px, 5vw, 18px);
  }
  .football-pie__count {
    font-size: 11px;
  }
  .football-compare-metric__head strong,
  .football-graph-group__bar-head strong,
  .football-heatmap__cell-head strong {
    font-size: 16px;
  }
}
.marketing-attendance-table-group {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.marketing-attendance-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  line-height: 1.35;
}

.marketing-attendance-table th,
.marketing-attendance-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  vertical-align: middle;
}

.marketing-attendance-table th:last-child,
.marketing-attendance-table td:last-child {
  border-right: 0;
}

.marketing-attendance-table tbody tr:nth-child(2) td:last-child {
  border-right: 1px solid #e5e7eb;
}

.marketing-attendance-table thead th {
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  border-bottom-color: rgba(255, 255, 255, 0.18);
  border-right-color: rgba(255, 255, 255, 0.18);
}

.marketing-attendance-table thead th:first-child {
  text-align: left;
  width: 27%;
}

.marketing-attendance-table__label {
  text-align: left;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.4;
  white-space: normal;
}

.marketing-attendance-table__value {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

.marketing-attendance-table__value--special {
  font-weight: 900;
}

.marketing-attendance-table__rate {
  text-align: center;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.marketing-attendance-table__rate.is-danger {
  color: #ef2d1d;
}

.marketing-attendance-table--black thead th {
  background: #000;
}

.marketing-attendance-table--red thead th {
  background: #ff2f12;
}

.marketing-attendance-table--green thead th {
  background: #1abb5c;
}

.marketing-attendance-table--blue thead th {
  background: #1480d1;
}

@media (max-width: 900px) {
  .marketing-attendance-table-group {
    gap: 14px;
  }
  .marketing-attendance-table {
    min-width: 760px;
    font-size: 13px;
  }
  .marketing-attendance-table thead th:first-child {
    width: 32%;
  }
  .marketing-attendance-table th,
  .marketing-attendance-table td {
    padding: 10px 8px;
  }
  .marketing-attendance-table thead th,
  .marketing-attendance-table__label,
  .marketing-attendance-table__value,
  .marketing-attendance-table__rate {
    font-size: 14px;
  }
  .marketing-attendance-table__rate {
    font-size: 26px;
  }
}
.contents_copyright {
  margin: 0;
  color: #334155;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 800;
  letter-spacing: 0.09em;
}

@media (max-width: 900px) {
  body.home-page .home-grid {
    height: auto;
    overflow: visible;
    padding-top: var(--header-h);
  }
  body.home-page .home-grid__inner {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=style.css.map */