:root {
  --color-blue: #1d20d2;
  --color-blue-deep: #0b16ad;
  --color-ink: #101321;
  --color-white: #ffffff;
  --color-bg: #ffffff;
  --color-panel: #050608;
  --color-line: rgba(255, 255, 255, 0.12);
  --font-sans: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Montserrat", var(--font-sans);
/*
  --header-h: 36px;
  --footer-h: 44px;
*/
  --header-h: 60px;
  --footer-h: 60px;
  --container: min(1240px, calc(100vw - 56px));
  --container-narrow: min(980px, calc(100vw - 56px));
  --shadow-card: 0 18px 40px rgba(7, 12, 44, 0.18);
  --header-item-scale: 0.5;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  padding-top: var(--header-h);
  padding-bottom: var(--footer-h);
  color: var(--color-ink);
  background: var(--color-bg);
  font-family: var(--font-sans);
  line-height: 1.7;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.narrow,
.container.narrow {
  width: var(--container-narrow);
  margin-inline: auto;
}

.narrow-wide {
  width: min(980px, calc(100vw - 56px));
  margin-inline: auto;
}

.section-block {
  padding: 72px 0;
}

.section-block--dark {
  background: var(--color-panel);
  color: var(--color-white);
}

.section-anchor {
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 32px;
}

.section-head--compact {
  margin-bottom: 26px;
}

.section-head--spaced {
  margin-top: clamp(74px, 6.5vw, 98px);
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title--blue {
  color: var(--color-blue);
}

.section-subtitle {
  margin: 8px 0 0;
  font-size: 1rem;
  font-weight: 500;
  color: #4b4b4b;
}

.copy-block p {
  margin: 0.2em 0;
}

.copy-block--center {
  text-align: center;
  font-weight: 500;
}

.copy-block--history {
  font-size: clamp(1rem, 1.85vw, 2.12rem);
}

.copy-block--history p {
  margin: 0 0 2em;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
  pointer-events: none;
  min-height: var(--header-h);
  background: var(--color-blue);
  border-bottom: 2px solid #ffffff;

}

.site-header__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.8vw;
  width: 100%;
  padding: 0.55vw 1.9vw 0.45vw;
  box-sizing: border-box;
/*
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0) 100%);
*/
  pointer-events: auto;
}

.site-header__nav {
  flex: 0 1 auto;
}

.site-header__menu,
.site-header__sns {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__menu {
  gap: 1.15vw;
}

.site-header__menu a {
  display: block;
  color: #ffffff;
  font-size: 0.68vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.site-header__sns {
  gap: 0.7vw;
}

.site-header__sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.95vw;
  height: 0.95vw;
}

.site-header__sns img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-section,
.members-hero,
.history-section__hero {
  position: relative;
  overflow: clip;
}

.hero-section {
  aspect-ratio: 3840 / 2320;
  background: #050608;
}

.hero-section__media,
.history-section__hero > img {
  position: absolute;
  inset: 0;
}

.hero-section__media img,
.history-section__hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section__overlay,
.history-section__overlay {
  position: absolute;
  inset: 0;
/*
  background: linear-gradient(180deg, rgba(0, 6, 46, 0.2), rgba(0, 8, 70, 0.62)), linear-gradient(90deg, rgba(10, 30, 255, 0.72), rgba(0, 0, 0, 0.08));
*/
}

.hero-section__content,
.history-section__hero-content {
  position: relative;
  z-index: 1;
}
/*
.hero-section__content {
  min-height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding-top: 3%;
  text-align: center;
  color: var(--color-white);
}
*/
.hero-section__content {
  position: absolute;
  top: 66%;
  left: 50%;
  z-index: 1;
  width: var(--container);
  margin: 0;
  min-height: 0;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  color: var(--color-white);
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 8.6vw, 7.4rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 0.92;
  font-style: italic;
  text-transform: uppercase;
  transform: skew(-8deg);
/*
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
*/
  text-shadow: 0.05em 0.05em 0.05em rgba(0, 0, 0, 0.5)
}

.eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.55vw, 2.82rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
}

.slogan-section {
  background: #ffffff;
  padding: clamp(110px, 9vw, 152px) 0 clamp(120px, 10vw, 165px);
}

.slogan-section .container {
  width: min(940px, calc(100vw - 80px));
}

.slogan-section .section-title {
  color: var(--color-blue);
  font-size: clamp(2.75rem, 4.1vw, 4.3rem);
  letter-spacing: 0.04em;
  font-style: italic;
  text-align: center;
  margin-bottom: 42px;
}

.slogan-section .copy-block {
  font-size: clamp(1.38rem, 2.65vw, 2.02rem);
  line-height: 1.95;
  color: #5a5a5a;
}

.hv_effect01 {
  overflow: hidden;
}

.hv_effect01 {
  transition: transform 0.35s ease;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
}
/*
.hv_effect01:hover img,
.hv_effect01:hover picture,
.hv_effect01:hover svg
*/
.hv_effect01:hover {
  transform: scale(1.05);
}

.feature-links {
  background: var(--color-blue);
  padding: clamp(36px, 4.4vw, 56px) 0 clamp(40px, 4.4vw, 64px);
}

.feature-links .container {
  width: min(1140px, calc(100vw - 100px));
}

.feature-links__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 5.4vw, 46px);
}

.feature-banner {
  position: relative;
  min-height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0b0e18;
}

.feature-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 34, 255, 0.18), rgba(0, 0, 0, 0.18));
}

.feature-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-banner span {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  transform: translate(-50%, -50%) skew(-8deg);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-transform: uppercase;
  opacity: 0.7;
}

.social-section__instagram {
  background: #ffffff;
  padding: clamp(28px, 2.5vw, 40px) 0 clamp(60px, 5vw, 84px);
}

.social-section__container {
  width: min(1120px, calc(100vw - 84px));
}

.social-heading {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(22px, 2vw, 34px);
}

.social-heading img {
  width: 50px;
  height: 50px;
}

.social-heading h2 {
  margin: 0;
  font-size: clamp(2.05rem, 3vw, 3rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.social-grid {
  display: grid;
}

.social-grid--thumbnails {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.2vw, 34px);
}

.social-post-thumb {
  aspect-ratio: 1 / 1;
  background: #d9d9d9;
}

.social-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #ffffff;
}

.social-section__feeds {
  position: relative;
  background: var(--color-blue);
  padding: 2.5vw 0 3.4vw;
}

.social-section__feeds::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0.36vw;
  background: rgba(255, 255, 255, 1);
  transform: translateX(-50%);
  pointer-events: none;
}

.social-section__feeds-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  position: relative;
  z-index: 1;
}

.social-feed-panel {
  padding: 0 5.2% 0;
  box-sizing: border-box;
}

.social-feed-panel__head {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  margin-bottom: 1.3vw;
}

.social-feed-panel__icon {
  width: 3.6vw;
  height: 3.6vw;
  flex: 0 0 auto;
  object-fit: contain;
}

.social-feed-panel__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.05rem, 3vw, 3rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.02em;
}

.social-feed-panel__body {
  background: #ffffff;
}

.social-feed-panel__body img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.partner-section {
  background: #ffffff;
  color: var(--color-ink);
  padding: clamp(86px, 7.4vw, 116px) 0 clamp(90px, 7.5vw, 120px);
}

.partner-section .container {
  width: min(1180px, calc(100vw - 84px));
}

.partner-section .section-head {
  margin-bottom: 24px;
}

.partner-section .section-title {
  color: var(--color-blue);
  font-size: clamp(2.5rem, 4vw, 4.1rem);
  letter-spacing: 0.04em;
  font-style: italic;
}

.link-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(30px, 3vw, 52px);
  row-gap: clamp(26px, 2.4vw, 36px);
}

.link-card {
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  background: transparent;
  border: none;
  overflow: visible;
}

.link-card__main {
  display: block;
  color: inherit;
  text-decoration: none;
}

.link-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 0 8px 10px;
  background: transparent;
}

.link-card__logo img {
  max-height: 58px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.link-card__body {
  padding: 0;
  display: grid;
  gap: 8px;
  text-align: center;
  justify-items: center;
}

.link-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
}

.link-card__desc {
  margin: 0;
  color: #5c5c5c;
  font-size: 0.82rem;
  line-height: 1.35;
}

.members-hero.section-anchor {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1b22df;
}

.members-hero__bg {
  position: absolute;
  inset: 0;
}

.members-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.members-hero__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0 16.3%;
  text-align: center;
}

.members-hero__title {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 6.1vw;
  font-weight: 700;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0.16vw 0.42vw rgba(0, 0, 0, 0.28);
}

.members-hero__subnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25vw;
  margin-top: 1.95vw;
}

.members-hero__subnav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.2vw;
  height: 2.85vw;
  padding: 0 2.4vw;
  border-radius: 9999px;
  background: #ffffff;
  color: var(--color-blue);
  font-size: 1.95vw;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.player-section {
  padding-bottom: calc(75 / 1920 * 100%);
}

.player-section .section-title {
  font-style: italic;
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(3, calc(520 / 1920 * 100%));
  column-gap: calc(80 / 1920 * 100%);
  row-gap: calc(75 / 1920 * 100vh);
  justify-content: center;
  align-items: start;
  align-content: start;
  width: 100%;
  box-sizing: border-box;
}

.players-grid > .player-card {
  position: relative;
  width: 100%;
  aspect-ratio: 520 / 726;
  overflow: hidden;
  background: var(--color-blue);
  color: var(--color-white);
  box-shadow: var(--shadow-card);
}

.player-card__header {
  position: absolute;
  top: 4.8%;
  left: 10%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.4em;
  margin: 0;
  padding: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.player-card__number,
.player-card__position {
  font-size: 2.2rem;
  line-height: 1;
}

.player-card__image-wrap {
  position: absolute;
  top: 13.8%;
  left: 50%;
  width: 80%;
  aspect-ratio: 1 / 1;
  margin: 0;
  transform: translateX(-50%);
}

.player-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-card__body {
  position: absolute;
  top: 74.4%;
  left: 10%;
  right: 6%;
  z-index: 2;
  margin: 0;
  padding: 0;
}

.player-card__name-jp {
  margin: 0;
  font-size: 2rem;
  line-height: 1.2;
}

.player-card__name-en {
  margin: 0.15em 0 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.player-card__meta {
  margin: 0.35em 0 0;
  font-size: 1.15rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

/*
.staff-section {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-top: calc(75 / 1920 * 100%);
}
*/
.staff-section {
  color: #000000;
  background: #ffffff;
  padding: clamp(56px, 5vw, 88px) 0 clamp(72px, 6vw, 110px);
}

.staff-section .narrow-wide {
  width: min(1040px, calc(100vw - 96px));
}

.staff-section .section-head {
  margin-bottom: clamp(40px, 3.8vw, 60px);
}

.staff-section .section-title {
  color: var(--color-blue);
  font-size: clamp(2.8rem, 4.2vw, 4.8rem);
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
}

/*
.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.staff-card {
  padding: 18px 20px;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.staff-card__role {
  margin: 0 0 6px;
  color: #98a0ff;
  font-size: 0.9rem;
  font-weight: 700;
}

.staff-card__name-jp {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.2;
}

.staff-card__name-en {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}
*/
.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(56px, 6vw, 120px);
  row-gap: clamp(18px, 1.8vw, 30px);
  align-items: start;
}
/*
.staff-card {
  display: grid;
  grid-template-rows: minmax(2.8em, auto) auto auto;
  justify-items: center;
  align-content: start;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}
*/
.staff-card {
  display: grid;
  grid-template-rows: 2.8em auto auto;
  justify-items: center;
  align-content: start;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.staff-card__role {
  width: 100%;
  height: 2.8em;
  margin: 0 0 6px;
  color: #4c4948;
  font-size: clamp(0.92rem, 1.8vw, 1.12rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;

  display: grid;
  place-items: center;

  overflow: hidden;
}
/*
.staff-card__role {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8em;
  margin: 0 0 6px;
  color: #4c4948;
  font-size: clamp(0.92rem, 1vw, 1.12rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: center;

  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
*/
.staff-card__name-jp {
  margin: 0;
  margin-top: 0.2em;
  color: var(--color-blue);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.staff-card__name-en {
  margin: 4px 0 0;
  color: #4c4948;
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 1.95vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}


.history-section {
  background: var(--color-blue);
  color: var(--color-white);
  background-image: url(assets/team-history.jpg);
  background-repeat: no-repeat;
  background-size: contain;
}

.history-section__hero {
  min-height: 400px;
}

.history-section__hero-content {
  min-height: 400px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.history-section__lead {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.history-section__title {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 700;
}

.history-section__body {
  padding: 40px 0 96px;
}

.history-section__decades {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 30px;
  margin-bottom: 38px;
}

.history-section__decades a {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.history-section__decades .is-current {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.history-entry + .history-entry {
  margin-top: 48px;
}

.history-entry h3 {
  margin: 0 0 18px;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  text-align: center;
}

.history-entry--placeholder {
  text-align: center;
  opacity: 0.9;
}

.history-logo {
  display: flex;
  justify-content: center;
  margin-top: 72px;
}

.history-logo img {
  width: min(420px, 70vw);
}


.site-footer {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  height: var(--footer-h);
  background: var(--color-blue);
  border-top: 2px solid #ffffff
}

.site-footer__inner {
  width: min(1280px, calc(100vw - 32px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.site-footer__inner p {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.9rem);
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


.site-footer {
  height: var(--footer-h);
}

.site-footer__inner {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.site-footer__inner p {
  margin: 0;
  font-size: calc(var(--footer-h) / 2);
  line-height: 1;
  margin-bottom: 0.15em;
  margin-right: 0.3em;
}

.back-to-top {
  position: fixed;
  right: 10px;
  bottom: calc(var(--footer-h) + 8px);
  z-index: 1001;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-blue);
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1100px) {
  .hero-section {
    aspect-ratio: auto;
    min-height: 54vw;
  }

  .feature-links .container,
  .social-section__container,
  .partner-section .container {
    width: min(100%, calc(100vw - 10.5vw));
  }

  .players-grid,
  .partner-section .link-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
/*
  .site-header__inner {
    gap: 3.2vw;
    padding: 2.4vw 4vw 2vw;
  }

  .site-header__menu {
    gap: 2.4vw;
  }

  .site-header__menu a {
    font-size: 1.9vw;
  }

  .site-header__sns {
    gap: 1.8vw;
  }

  .site-header__sns a {
    width: 2.8vw;
    height: 2.8vw;
  }
  body {
    padding-top: 98px;
  }
*/
  :root {
    --header-item-scale: 0.3;
  }

  .feature-links__grid,
  .social-section__feeds-inner,
  .staff-grid {
    grid-template-columns: 1fr;
  }

  .staff-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .staff-section .narrow-wide {
    width: min(720px, calc(100vw - 56px));
  }

  .social-section__feeds::before {
    display: none;
  }

  .social-feed-panel + .social-feed-panel {
    margin-top: 24px;
  }

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

@media (max-width: 640px) {
/*
  :root {
    --header-h: 62px;
    --footer-h: 44px;
  }
  body {
    padding-top: 114px;
  }
*/
/*
  .site-header__inner {
    gap: 10px;
    padding: 10px 14px 8px;
  }

  .site-header__menu {
    gap: 10px 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-header__menu a {
    font-size: 11px;
  }

  .site-header__sns a {
    width: 14px;
    height: 14px;
  }
*/
  :root {
    --header-item-scale: 0.2;
  }

  .hero-section {
    min-height: 340px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .eyebrow {
    font-size: 0.86rem;
    letter-spacing: 0.12em;
  }

  .slogan-section,
  .partner-section {
    padding-left: 0;
    padding-right: 0;
  }

  .feature-links .container,
  .social-section__container,
  .partner-section .container,
  .slogan-section .container,
  .narrow-wide {
    width: calc(100vw - 32px);
  }

  .feature-links__grid,
  .social-grid--thumbnails,
  .players-grid,
  .partner-section .link-card-grid,
  .staff-grid {
    grid-template-columns: 1fr;
  }

  .feature-banner {
    aspect-ratio: 1 / 1;
  }

  .feature-banner span {
    font-size: 1.85rem;
  }

  .social-heading img {
    width: 30px;
    height: 30px;
  }

  .social-feed-panel__head {
    gap: 8px;
    margin-bottom: 12px;
  }

  .social-feed-panel__icon {
    width: 28px;
    height: 28px;
  }

  .members-hero__subnav {
    gap: 8px;
    margin-top: 14px;
  }

  .members-hero__subnav a {
    min-width: 88px;
    height: 34px;
    padding: 0 14px;
    font-size: 15px;
  }

  .player-card__number,
  .player-card__position {
    font-size: 1.6rem;
  }

  .player-card__name-jp {
    font-size: 1.5rem;
  }

  .player-card__name-en {
    font-size: 0.8rem;
  }

  .player-card__meta {
    font-size: 1.15rem;
  }

  .back-to-top {
    right: 8px;
    width: 34px;
    height: 34px;
  }
}


@media (max-width: 900px) {
  .hero-section__content {
    padding-top: 9%;
  }
}

@media (max-width: 640px) {
  .hero-section__content {
    padding-top: 0%;
  }
}


/*
.site-header__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.site-header__nav,
.site-header__sns {
  display: flex;
  align-items: center;
  height: 100%;
}

.site-header__menu {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__menu li {
  display: flex;
  align-items: center;
  height: 100%;
}

.site-header__menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50%;
  color: #ffffff;
  text-decoration: none;
  font-size: calc(var(--header-h) * 0.5);
  line-height: 1;
  white-space: nowrap;
}

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

.site-header__sns li {
  display: flex;
  align-items: center;
  height: 100%;
}

.site-header__sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--header-h) * 0.5);
  height: calc(var(--header-h) * 0.5);
  text-decoration: none;
}

.site-header__sns img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

*/




.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.site-header__inner {
  width: min(1320px, calc(100vw - 32px));
  margin-inline: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.8vw;
}

.site-header__nav,
.site-header__sns {
  display: flex;
  align-items: center;
}

.site-header__menu,
.site-header__sns {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__menu {
  display: flex;
  align-items: center;
  gap: 1.15vw;
}

.site-header__menu li,
.site-header__sns li {
  display: flex;
  align-items: center;
}

.site-header__menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: calc(var(--header-h) * var(--header-item-scale));
  line-height: 1;
  white-space: nowrap;
}

.site-header__sns {
  display: flex;
  align-items: center;
  gap: 0.7vw;
}

.site-header__sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--header-h) * var(--header-item-scale));
  height: calc(var(--header-h) * var(--header-item-scale));
  text-decoration: none;
}

.site-header__sns img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}



.social-feed-panel__body--facebook {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}

.social-feed-panel__body--facebook .fb-page,
.social-feed-panel__body--facebook .fb-page span,
.social-feed-panel__body--facebook .fb-page iframe {
  max-width: 100%;
}

.social-feed-panel__body--facebook .fb-page iframe {
  display: block;
}

.social-feed-panel__body--facebook {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  width: 340px;
}

.social-feed-panel__iframe--facebook {
  display: block;
  border: 0;
}

