/* ============================================
   IRON WOLF
   NAVY / GOLD / WHITE
============================================ */

:root {
  --navy: #06152f;
  --navy-light: #0c2856;
  --navy-mid: #091e43;

  --gold: #d7ad45;
  --gold-light: #f0d48a;

  --white: #f7f7f2;
  --black: #020812;

  --line: rgba(255,255,255,.14);
}


/* reset */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Arial,
    "Helvetica Neue",
    system-ui,
    -apple-system,
    sans-serif;

  background: var(--navy);
  color: var(--navy);

  overflow-x: hidden;
}

body.intro-lock {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}


/* ============================================
   INTRO
============================================ */

.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: grid;
  place-items: center;

  overflow: hidden;

  color: white;

  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(215,173,69,.15),
      transparent 30%
    ),
    linear-gradient(
      150deg,
      #020812,
      #06152f 60%,
      #020812
    );

  transition:
    opacity .8s ease,
    visibility .8s ease;
}

.intro.hide {
  opacity: 0;
  visibility: hidden;
}

.intro-grid {
  position: absolute;
  inset: -30%;

  background-image:
    linear-gradient(
      rgba(255,255,255,.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.05) 1px,
      transparent 1px
    );

  background-size: 60px 60px;

  transform:
    perspective(500px)
    rotateX(62deg)
    translateY(32%);

  animation: gridMove 8s linear infinite;
}

@keyframes gridMove {
  to {
    background-position:
      0 60px,
      60px 0;
  }
}

.intro-glow {
  position: absolute;

  width: 400px;
  height: 400px;

  border-radius: 50%;

  background: rgba(215,173,69,.12);

  filter: blur(80px);

  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  50% {
    transform: scale(1.25);
    opacity: .55;
  }
}

.intro-inner {
  position: relative;
  z-index: 2;

  text-align: center;

  padding: 24px;
}

.wolf-emblem {
  width: 110px;
  height: 128px;

  margin: 0 auto 24px;

  display: grid;
  place-items: center;

  border: 3px solid var(--gold);

  color: var(--gold);

  font-size: 36px;
  font-weight: 900;

  clip-path: polygon(
    50% 0,
    100% 18%,
    100% 67%,
    50% 100%,
    0 67%,
    0 18%
  );

  text-shadow:
    0 0 20px rgba(215,173,69,.45);
}

.intro-small,
.intro-catch {
  margin: 0;

  font-size: 10px;
  font-weight: 900;

  letter-spacing: .35em;
}

.intro h1 {
  margin: 10px 0 14px;

  font-size: clamp(
    48px,
    9vw,
    120px
  );

  line-height: .9;

  letter-spacing: -.06em;
}

.intro-catch {
  color: var(--gold);
}

.enter-button {
  position: relative;

  min-width: 250px;

  margin-top: 42px;

  padding: 17px 26px;

  overflow: hidden;

  cursor: pointer;

  color: white;

  border:
    1px solid var(--gold);

  background:
    rgba(6,21,47,.75);
}

.enter-button::before {
  content: "";

  position: absolute;
  inset: 0;

  transform:
    translateX(-110%);

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.25),
      transparent
    );

  animation: enterShine 2.4s infinite;
}

@keyframes enterShine {
  60%,
  100% {
    transform:
      translateX(110%);
  }
}

.enter-button span,
.enter-button small {
  position: relative;
  z-index: 2;

  display: block;
}

.enter-button span {
  font-weight: 900;

  letter-spacing: .14em;
}

.enter-button small {
  margin-top: 4px;

  color: var(--gold-light);

  font-size: 8px;

  letter-spacing: .2em;
}

.skip-button {
  position: absolute;

  right: 24px;
  bottom: 20px;

  cursor: pointer;

  color:
    rgba(255,255,255,.5);

  border: 0;

  background: none;

  font-size: 9px;

  letter-spacing: .18em;
}


/* ============================================
   SITE / HEADER
============================================ */

.site {
  opacity: 0;

  transition:
    opacity .7s ease;
}

.site.show {
  opacity: 1;
}

.header {
  position: fixed;

  z-index: 500;

  top: 0;
  left: 0;
  right: 0;

  height: 74px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  padding:
    0 clamp(18px,4vw,60px);

  color: white;

  transition:
    background .3s ease;
}

.header.scrolled {
  background:
    rgba(2,8,18,.94);

  backdrop-filter:
    blur(12px);

  border-bottom:
    1px solid rgba(215,173,69,.15);
}

.logo {
  display: flex;

  align-items: center;

  gap: 12px;

  font-weight: 900;

  letter-spacing: .1em;
}

.logo-mark {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border:
    2px solid var(--gold);

  color: var(--gold);

  clip-path:
    polygon(
      50% 0,
      100% 18%,
      100% 67%,
      50% 100%,
      0 67%,
      0 18%
    );
}

.logo-text {
  font-size: 14px;
}

.nav {
  display: flex;

  gap: 30px;
}

.nav a {
  position: relative;

  padding: 10px 0;

  font-size: 10px;
  font-weight: 900;

  letter-spacing: .16em;
}

.nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 2px;

  width: 0;
  height: 1px;

  background: var(--gold);

  transition:
    width .25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.menu-button {
  display: none;

  width: 44px;
  height: 44px;

  position: relative;

  border: 0;

  background: none;

  cursor: pointer;
}

.menu-button span {
  position: absolute;

  left: 11px;

  width: 22px;
  height: 1px;

  background: white;
}

.menu-button span:nth-child(1) {
  top: 13px;
}

.menu-button span:nth-child(2) {
  top: 21px;
}

.menu-button span:nth-child(3) {
  top: 29px;
}


/* ============================================
   HERO
============================================ */

.hero {
  position: relative;

  min-height: 100svh;

  display: grid;
  place-items: center;

  overflow: hidden;

  color: white;

  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(15,47,100,.7),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      #020812,
      #06152f 55%,
      #0a2148
    );
}

.hero-lines {
  position: absolute;
  inset: 0;

  opacity: .12;

  background-image:
    linear-gradient(
      rgba(255,255,255,.2) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.2) 1px,
      transparent 1px
    );

  background-size:
    110px 110px;
}

.hero-lines::after {
  content: "";

  position: absolute;

  width: 62vw;
  height: 62vw;

  right: -22vw;
  top: 12vh;

  border:
    1px solid rgba(255,255,255,.65);

  border-radius: 50%;
}

.hero-light {
  position: absolute;

  width: 36vw;
  height: 36vw;

  border-radius: 50%;

  filter: blur(80px);

  opacity: .25;
}

.hero-light-left {
  left: -12vw;
  top: 30%;

  background: var(--gold);
}

.hero-light-right {
  right: -12vw;
  top: 15%;

  background: #164b9e;
}


/* character images */

.hero-character {
  position: absolute;

  z-index: 2;

  bottom: 0;

  pointer-events: none;

  transition:
    transform .25s ease-out;
}

.hero-character-left {
  left: -3vw;

  width:
    min(38vw, 620px);
}

.hero-character-right {
  right: -2vw;

  width:
    min(39vw, 640px);
}

.kiba-image {
  width: 100%;

  object-fit: contain;

  filter:
    drop-shadow(
      0 30px 50px
      rgba(0,0,0,.5)
    );
}


/*
 PNGが背景付きでも馴染みやすくする。
 背景透過PNGならより綺麗。
*/

.kiba-left {
  transform:
    translateY(3%);
}

.kiba-right {
  transform:
    translateY(2%);
}


/* hero text */

.hero-copy {
  position: relative;

  z-index: 5;

  width:
    min(620px, 90vw);

  text-align: center;

  padding-top: 40px;
}

.eyebrow {
  margin: 0 0 18px;

  color: var(--gold);

  font-size: 10px;
  font-weight: 900;

  letter-spacing: .23em;
}

.hero-number {
  display: flex;

  align-items: flex-end;
  justify-content: center;

  gap: 14px;

  line-height: .7;
}

.hero-number span {
  color: transparent;

  -webkit-text-stroke:
    1px rgba(255,255,255,.5);

  font-size:
    clamp(42px,6vw,88px);

  font-weight: 900;
}

.hero-number strong {
  color: var(--gold);

  font-size:
    clamp(120px,18vw,250px);

  letter-spacing: -.08em;
}

.hero-copy h2 {
  margin: 28px 0 0;

  font-size:
    clamp(54px,8vw,110px);

  line-height: .8;

  letter-spacing: -.06em;
}

.hero-sub {
  margin-top: 20px;

  color:
    rgba(255,255,255,.7);

  font-size: 10px;

  letter-spacing: .16em;
}

.hero-buttons {
  display: flex;

  justify-content: center;

  gap: 12px;

  margin-top: 34px;
}

.button {
  min-width: 170px;

  padding: 14px 18px;

  border:
    1px solid rgba(255,255,255,.3);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: .15em;

  transition:
    .25s ease;
}

.button-gold {
  color: var(--navy);

  border-color: var(--gold);

  background: var(--gold);
}

.button-gold:hover {
  transform:
    translateY(-2px);

  background:
    var(--gold-light);
}

.button-outline:hover {
  color: var(--gold);

  border-color: var(--gold);
}

.scroll {
  position: absolute;

  z-index: 7;

  left: 50%;
  bottom: 20px;

  transform:
    translateX(-50%);

  display: flex;
  flex-direction: column;

  align-items: center;

  gap: 8px;

  color:
    rgba(255,255,255,.55);

  font-size: 7px;

  letter-spacing: .22em;
}

.scroll i {
  width: 1px;
  height: 34px;

  background:
    linear-gradient(
      to bottom,
      var(--gold),
      transparent
    );

  animation:
    scrollMove 1.5s infinite;
}

@keyframes scrollMove {
  50% {
    transform:
      scaleY(.55);

    transform-origin:
      top;
  }
}


/* ============================================
   COMMON SECTION
============================================ */

.section {
  position: relative;

  padding:
    110px
    clamp(22px,7vw,110px);
}

.white-section {
  color: var(--navy);

  background: var(--white);
}

.navy-section {
  color: white;

  background:
    var(--navy);
}

.section-title {
  max-width: 800px;

  margin-bottom: 50px;
}

.section-title > p {
  margin: 0 0 18px;

  color: var(--gold);

  font-size: 10px;
  font-weight: 900;

  letter-spacing: .24em;
}

.section-title h2 {
  margin: 0;

  font-size:
    clamp(48px,8vw,110px);

  line-height: .86;

  letter-spacing: -.06em;
}

.section-title > span {
  display: block;

  max-width: 600px;

  margin-top: 24px;

  line-height: 1.9;

  font-size: 13px;
}


/* ============================================
   TEAM
============================================ */

.team-cards {
  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  gap: 1px;

  background:
    #d6d4ca;

  border:
    1px solid #d6d4ca;
}

.team-card {
  min-height: 280px;

  padding: 28px;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;
}

.team-card small {
  margin-bottom: auto;

  opacity: .5;

  font-weight: 900;
}

.team-card h3 {
  margin: 0 0 10px;

  font-size: 30px;

  letter-spacing: -.04em;
}

.team-card p {
  margin: 0;

  max-width: 300px;

  line-height: 1.75;

  font-size: 12px;
}

.navy-card {
  color: white;

  background: var(--navy);
}

.white-card {
  color: var(--navy);

  background: white;
}

.gold-card {
  color: var(--navy);

  background: var(--gold);
}


/* ============================================
   PLAYERS
============================================ */

.player-box {
  min-height: 440px;

  display: grid;

  grid-template-columns:
    .5fr 1fr .7fr;

  overflow: hidden;

  border:
    1px solid rgba(215,173,69,.4);

  background:
    radial-gradient(
      circle at 85% 40%,
      rgba(215,173,69,.17),
      transparent 30%
    ),
    linear-gradient(
      120deg,
      #0a2148,
      #031026
    );
}

.player-big-number {
  display: grid;

  place-items: center;

  color:
    rgba(255,255,255,.04);

  border-right:
    1px solid rgba(255,255,255,.08);

  font-size:
    clamp(140px,18vw,280px);

  font-weight: 900;

  letter-spacing: -.12em;
}

.player-info {
  padding: 44px;

  align-self: center;
}

.player-info > small {
  color: var(--gold);

  font-size: 8px;

  font-weight: 900;

  letter-spacing: .22em;
}

.player-info h3 {
  margin: 18px 0 28px;

  font-size:
    clamp(58px,8vw,110px);

  line-height: .8;

  letter-spacing: -.06em;
}

.player-info > p {
  max-width: 520px;

  color:
    rgba(255,255,255,.7);

  line-height: 1.9;

  font-size: 13px;
}

.player-stats {
  display: flex;

  gap: 34px;

  margin-top: 34px;
}

.player-stats div {
  min-width: 90px;
}

.player-stats span {
  display: block;

  color: var(--gold);

  font-size: 7px;

  font-weight: 900;

  letter-spacing: .18em;
}

.player-stats strong {
  display: block;

  margin-top: 5px;

  font-size: 28px;
}

.player-stats strong small {
  margin-left: 3px;

  color:
    rgba(255,255,255,.5);

  font-size: 10px;
}

.player-photo {
  position: relative;

  align-self: stretch;

  overflow: hidden;
}

.player-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position:
    50% 20%;

  opacity: .88;
}

.player-photo::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to right,
      #031026,
      transparent 45%
    );
}

.player-tabs {
  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  gap: 1px;

  margin-top: 1px;

  background:
    rgba(255,255,255,.12);
}

.player-tab {
  min-height: 120px;

  display: grid;

  grid-template-columns:
    auto 1fr auto;

  align-items: end;

  gap: 10px;

  padding: 20px;

  cursor: pointer;

  color: white;

  border: 0;

  text-align: left;

  background:
    var(--navy-light);
}

.player-tab span {
  color: var(--gold);

  font-size: 36px;

  font-weight: 900;
}

.player-tab b {
  font-size: 20px;
}

.player-tab small {
  opacity: .6;

  font-size: 7px;

  letter-spacing: .14em;
}

.player-tab.active {
  color: var(--navy);

  background: var(--gold);
}

.player-tab.active span {
  color: var(--navy);
}

.player-tab.disabled {
  opacity: .45;
}


/* ============================================
   MATCH
============================================ */

.match-box {
  display: grid;

  grid-template-columns:
    1fr .6fr 1fr;

  align-items: center;

  padding: 44px;

  border-top:
    4px solid var(--gold);

  background: white;

  box-shadow:
    0 25px 70px
    rgba(0,0,0,.08);
}

.match-team {
  display: flex;

  align-items: center;

  gap: 18px;
}

.match-team:last-child {
  justify-content: flex-end;
}

.match-mark {
  width: 70px;
  height: 70px;

  display: grid;

  place-items: center;

  color: var(--gold);

  border:
    2px solid var(--gold);

  background: var(--navy);

  font-size: 22px;
  font-weight: 900;
}

.opponent-mark {
  color: #aaa;

  border-color: #ddd;

  background: white;
}

.match-vs {
  text-align: center;

  border-left:
    1px solid #ddd;

  border-right:
    1px solid #ddd;
}

.match-vs small,
.match-vs span {
  display: block;

  color: #777;

  font-size: 7px;

  letter-spacing: .18em;
}

.match-vs b {
  display: block;

  margin: 8px 0;

  font-size: 36px;
}


/* ============================================
   GALLERY
============================================ */

.gallery-section {
  color: white;

  background:
    radial-gradient(
      circle at 20% 25%,
      #0d2c60,
      transparent 35%
    ),
    var(--black);
}

.gallery-grid {
  display: grid;

  grid-template-columns:
    1.15fr .85fr;

  grid-template-rows:
    280px 280px;

  gap: 12px;
}

.gallery-grid figure {
  position: relative;

  margin: 0;

  overflow: hidden;

  border:
    1px solid rgba(255,255,255,.12);

  background:
    var(--navy);
}

.gallery-grid img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .5s ease;
}

.gallery-grid figure:hover img {
  transform:
    scale(1.035);
}

.gallery-main {
  grid-row:
    1 / 3;
}

.gallery-grid figcaption {
  position: absolute;

  left: 20px;
  bottom: 18px;

  padding: 8px 12px;

  color: var(--navy);

  background: var(--gold);

  font-size: 8px;
  font-weight: 900;

  letter-spacing: .18em;
}

.gallery-color {
  display: grid;

  place-items: center;

  text-align: center;

  background:
    linear-gradient(
      135deg,
      var(--navy-light),
      var(--navy)
    ) !important;
}

.gallery-color span,
.gallery-color strong,
.gallery-color small {
  display: block;
}

.gallery-color span {
  color: white;

  font-size:
    clamp(36px,5vw,70px);

  font-weight: 900;

  letter-spacing: -.04em;
}

.gallery-color strong {
  margin-top: -10px;

  color: var(--gold);

  font-size:
    clamp(58px,8vw,110px);

  letter-spacing: -.06em;
}

.gallery-color small {
  margin-top: 12px;

  color:
    rgba(255,255,255,.6);

  font-size: 8px;

  letter-spacing: .2em;
}


/* ============================================
   FOOTER
============================================ */

.footer {
  min-height: 160px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding:
    28px
    clamp(22px,7vw,110px);

  color: white;

  border-top:
    1px solid rgba(215,173,69,.2);

  background: #020812;
}

.footer-logo {
  display: flex;

  align-items: center;

  gap: 15px;
}

.footer-logo > span {
  width: 54px;
  height: 54px;

  display: grid;
  place-items: center;

  color: var(--gold);

  border:
    2px solid var(--gold);

  font-weight: 900;
}

.footer-logo strong,
.footer-logo small {
  display: block;
}

.footer-logo small {
  margin-top: 3px;

  color: var(--gold);

  font-size: 7px;

  letter-spacing: .16em;
}

.footer > p {
  color:
    rgba(255,255,255,.45);

  font-size: 7px;

  letter-spacing: .14em;
}


/* ============================================
   REVEAL
============================================ */

.reveal {
  opacity: 0;

  transform:
    translateY(25px);

  transition:
    opacity .75s ease,
    transform .75s ease;
}

.reveal.visible {
  opacity: 1;

  transform: none;
}


/* ============================================
   TABLET
============================================ */

@media (max-width: 980px) {

  .menu-button {
    display: block;
  }

  .nav {
    position: fixed;

    top: 74px;
    left: 0;
    right: 0;

    display: grid;

    gap: 0;

    padding:
      10px 20px 24px;

    opacity: 0;

    pointer-events: none;

    transform:
      translateY(-110%);

    background:
      rgba(2,8,18,.97);

    transition:
      .35s ease;
  }

  .nav.open {
    opacity: 1;

    pointer-events: auto;

    transform: none;
  }

  .nav a {
    padding: 15px 8px;

    border-bottom:
      1px solid rgba(255,255,255,.08);
  }


  .hero-character-left {
    left: -13vw;

    width: 56vw;

    opacity: .8;
  }

  .hero-character-right {
    right: -14vw;

    width: 58vw;

    opacity: .8;
  }

  .hero-copy {
    z-index: 6;
  }


  .team-cards {
    grid-template-columns: 1fr;
  }

  .team-card {
    min-height: 210px;
  }


  .player-box {
    grid-template-columns:
      .45fr 1fr;
  }

  .player-photo {
    display: none;
  }


  .player-tabs {
    grid-template-columns:
      1fr;
  }


  .match-box {
    grid-template-columns:
      1fr;

    gap: 24px;

    text-align: center;
  }

  .match-team,
  .match-team:last-child {
    justify-content: center;
  }

  .match-vs {
    padding: 20px 0;

    border:
      0;

    border-top:
      1px solid #ddd;

    border-bottom:
      1px solid #ddd;
  }


  .gallery-grid {
    grid-template-columns:
      1fr;

    grid-template-rows:
      350px 230px 230px;
  }

  .gallery-main {
    grid-row: auto;
  }
}


/* ============================================
   MOBILE
============================================ */

@media (max-width: 600px) {

  .header {
    height: 66px;

    padding:
      0 16px;
  }

  .nav {
    top: 66px;
  }

  .logo-text {
    font-size: 12px;
  }


  .hero {
    min-height: 100svh;

    padding:
      90px 16px 65px;
  }

  .hero-character-left {
    left: -28vw;

    bottom: -1%;

    width: 82vw;

    opacity: .55;
  }

  .hero-character-right {
    right: -31vw;

    bottom: -1%;

    width: 85vw;

    opacity: .55;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-number strong {
    font-size: 38vw;
  }

  .hero-number span {
    font-size: 11vw;
  }

  .hero-copy h2 {
    font-size: 16vw;
  }

  .hero-sub {
    max-width: 76%;

    margin-left: auto;
    margin-right: auto;

    line-height: 1.8;
  }

  .hero-buttons {
    flex-direction: column;

    align-items: center;
  }

  .button {
    width: 100%;

    max-width: 320px;
  }


  .section {
    padding:
      82px 18px;
  }

  .section-title h2 {
    font-size: 16vw;
  }


  .player-box {
    display: block;

    min-height: 0;
  }

  .player-big-number {
    display: none;
  }

  .player-info {
    padding:
      30px 22px;
  }

  .player-stats {
    flex-wrap: wrap;

    gap: 18px;
  }


  .gallery-grid {
    grid-template-rows:
      290px 210px 210px;
  }


  .footer {
    align-items: flex-start;

    flex-direction: column;
  }
}


/* ============================================
   REDUCED MOTION
============================================ */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;

    transition: none !important;

    scroll-behavior: auto !important;
  }
}


/* ============================================
   KIBA / YAIBA PLAYER SWITCH
============================================ */

.player-stage {
  border:
    1px solid rgba(215,173,69,.42);

  background:
    linear-gradient(
      120deg,
      #06152f,
      #031026
    );

  overflow: hidden;
}

.player-profile {
  min-height: 500px;

  display: grid;

  grid-template-columns:
    .82fr 1fr .82fr;

  align-items: stretch;

  position: relative;
}

.player-profile[hidden] {
  display: none !important;
}

.player-action-image,
.player-main-image {
  position: relative;

  min-height: 500px;

  overflow: hidden;

  background:
    #071a39;
}

.player-action-image img,
.player-main-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.player-action-image img {
  object-position:
    52% 35%;
}

.player-main-image img {
  object-position:
    50% 22%;
}

.player-action-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to right,
      rgba(3,16,38,.02),
      rgba(3,16,38,.7)
    );
}

.player-main-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to left,
      rgba(3,16,38,.02),
      rgba(3,16,38,.68)
    );
}

.player-profile .player-info {
  position: relative;

  z-index: 3;

  display: flex;
  flex-direction: column;

  justify-content: center;

  padding:
    50px 42px;

  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(215,173,69,.12),
      transparent 44%
    );
}

.player-profile .player-info h3 {
  font-size:
    clamp(64px,8vw,118px);
}

.player-profile .player-info > p {
  max-width: 500px;
}

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

.player-profile.is-active {
  animation:
    playerIn .42s ease both;
}

@keyframes playerIn {

  from {
    opacity: 0;
    transform:
      translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}


/* four-image gallery */

.gallery-grid-four {
  display: grid;

  grid-template-columns:
    repeat(2,1fr);

  grid-template-rows:
    repeat(2,360px);

  gap: 12px;
}

.gallery-grid-four .gallery-card {
  position: relative;

  margin: 0;

  overflow: hidden;

  border:
    1px solid rgba(255,255,255,.12);

  background:
    var(--navy);
}

.gallery-grid-four .gallery-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .45s ease;
}

.gallery-grid-four .gallery-card:hover img {
  transform:
    scale(1.035);
}

.gallery-grid-four .gallery-card figcaption {
  position: absolute;

  left: 18px;
  bottom: 18px;

  padding:
    8px 12px;

  color: var(--navy);

  background: var(--gold);

  font-size: 8px;
  font-weight: 900;

  letter-spacing: .16em;
}


@media (max-width: 980px) {

  .player-profile {
    grid-template-columns:
      .78fr 1fr;
  }

  .player-main-image {
    display: none;
  }

  .gallery-grid-four {
    grid-template-columns:
      1fr;

    grid-template-rows:
      repeat(4,320px);
  }
}


@media (max-width: 600px) {

  .player-profile {
    display: block;

    min-height: 0;
  }

  .player-profile[hidden] {
    display: none !important;
  }

  .player-action-image {
    min-height: 340px;
  }

  .player-profile .player-info {
    padding:
      32px 22px;
  }

  .player-tabs {
    grid-template-columns:
      1fr 1fr;
  }

  .player-tab {
    min-height: 95px;

    padding: 14px;
  }

  .player-tab span {
    font-size: 29px;
  }

  .player-tab b {
    font-size: 16px;
  }

  .gallery-grid-four {
    grid-template-rows:
      repeat(4,280px);
  }
}


/* ============================================
   MOMENTS GALLERY FIX
   4:5縦画像を切らずに見せる
============================================ */

.gallery-grid.gallery-grid-four {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  grid-template-rows: none !important;
  gap: 16px !important;
  align-items: start;
}

.gallery-grid-four .gallery-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 0 !important;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(215,173,69,.24);
  background: #06152f;
}

.gallery-grid-four .gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none;
}

.gallery-grid-four .gallery-card:hover img {
  transform: scale(1.02);
}

.gallery-grid-four .gallery-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;

  padding: 8px 11px;

  color: #06152f;
  background: #d7ad45;

  font-size: 8px;
  font-weight: 900;
  letter-spacing: .15em;

  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}


/* 画面が少し狭くなったら2列 */
@media (max-width: 1200px) {

  .gallery-grid.gallery-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}


/* スマホは1列で大きく表示 */
@media (max-width: 600px) {

  .gallery-grid.gallery-grid-four {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .gallery-grid-four .gallery-card {
    aspect-ratio: 4 / 5;
  }
}


/* ============================================
   BRAND SECTION
============================================ */

.brand-section {
  background: linear-gradient(180deg, #f7f7f2 0%, #f1f2f4 100%);
}

.brand-top {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 22px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border: 1px solid rgba(6,21,47,.08);
  background: linear-gradient(135deg, #ffffff, #eef2f7);
  box-shadow: 0 20px 60px rgba(0,0,0,.06);
}

.brand-copy small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
}

.brand-copy h3 {
  margin: 14px 0 18px;
  color: var(--navy);
  font-size: clamp(34px,4.6vw,72px);
  line-height: .95;
  letter-spacing: -.05em;
}

.brand-copy p {
  max-width: 560px;
  color: #24324d;
  font-size: 14px;
  line-height: 1.9;
}

.brand-button {
  display: inline-block;
  width: fit-content;
  margin-top: 24px;
  padding: 13px 18px;
  color: white;
  background: var(--navy);
  border: 1px solid var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  transition: .25s ease;
}

.brand-button:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

.brand-fullboard {
  display: block;
  border: 1px solid rgba(6,21,47,.1);
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  overflow: hidden;
}

.brand-fullboard img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.brand-card {
  overflow: hidden;
  border: 1px solid rgba(6,21,47,.1);
  background: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
}

.brand-card-head {
  padding: 14px 18px;
  color: white;
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}

.brand-card-body img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-tagline {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(6,21,47,.1);
  background: #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,.05);
}

.brand-tagline img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1100px) {
  .brand-top { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .brand-grid { grid-template-columns: 1fr; }
  .brand-copy { padding: 26px 22px; }
}


/* ============================================
   UNIFORM
============================================ */

.uniform-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 28%, rgba(22,75,158,.38), transparent 32%),
    radial-gradient(circle at 12% 70%, rgba(215,173,69,.12), transparent 28%),
    linear-gradient(135deg, #020812 0%, #06152f 55%, #091e43 100%);
}

.uniform-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background:
    repeating-linear-gradient(
      120deg,
      transparent 0 38px,
      rgba(255,255,255,.05) 38px 39px
    );
}

.uniform-heading,
.uniform-layout {
  position: relative;
  z-index: 2;
}

.uniform-heading {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}

.uniform-index {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .24em;
}

.uniform-heading h2 {
  margin: 0;
  font-size: clamp(54px, 8vw, 118px);
  line-height: .82;
  letter-spacing: -.065em;
}

.uniform-heading-copy {
  margin: 0;
  max-width: 560px;
  color: rgba(255,255,255,.67);
  font-size: 13px;
  line-height: 1.9;
}

.uniform-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .72fr);
  gap: 20px;
  align-items: stretch;
}

.uniform-visual {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 680px;
  border: 1px solid rgba(215,173,69,.42);
  background: #020812;
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
}

.uniform-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}

.uniform-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .55s ease;
}

.uniform-visual:hover img {
  transform: scale(1.015);
}

.uniform-expand {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 10px 13px;
  color: var(--navy);
  background: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .17em;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}

.uniform-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px,4vw,58px);
  border: 1px solid rgba(255,255,255,.1);
  background:
    linear-gradient(145deg, rgba(10,33,72,.95), rgba(3,16,38,.96));
  box-shadow: 0 28px 80px rgba(0,0,0,.23);
}

.uniform-kicker {
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .22em;
}

.uniform-info h3 {
  margin: 14px 0 22px;
  font-size: clamp(42px,5vw,76px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.uniform-lead {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.9;
}

.kit-list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.kit-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 105px;
  padding: 17px 18px;
  border: 1px solid rgba(255,255,255,.1);
}

.home-kit {
  background:
    linear-gradient(110deg, #071a39, #0c2856);
  border-color: rgba(215,173,69,.3);
}

.away-kit {
  color: var(--navy);
  background: #f7f7f2;
  border-color: rgba(255,255,255,.7);
}

.kit-no {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 22px;
  font-weight: 950;
}

.away-kit .kit-no {
  color: var(--navy);
  border-color: var(--navy);
}

.kit-card small,
.kit-card strong,
.kit-card p {
  display: block;
}

.kit-card small {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .2em;
}

.away-kit small {
  color: #9a6f14;
}

.kit-card strong {
  font-size: 17px;
  letter-spacing: .03em;
}

.kit-card p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.55);
  font-size: 10px;
}

.away-kit p {
  color: #5b6473;
}

.uniform-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.uniform-color {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.72);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
}

.uniform-color i {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.navy-chip i { background: #06152f; border: 1px solid #31517d; }
.gold-chip i { background: #d7ad45; }
.white-chip i { background: #f7f7f2; border: 1px solid #bbb; }

.uniform-foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(215,173,69,.25);
}

.uniform-foot b {
  font-size: 9px;
  letter-spacing: .12em;
}

.uniform-foot span {
  color: var(--gold);
  font-size: 7px;
  letter-spacing: .15em;
}

@media (max-width: 1050px) {
  .uniform-heading {
    grid-template-columns: 1fr;
  }

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

  .uniform-visual {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .uniform-visual img {
    object-fit: cover;
  }
}

@media (max-width: 600px) {
  .uniform-heading {
    gap: 20px;
  }

  .uniform-heading h2 {
    font-size: 16vw;
  }

  .uniform-info {
    padding: 28px 20px;
  }

  .uniform-foot {
    flex-direction: column;
  }
}
