.front-page {
  background: var(--white);
} /* ========================================================================== FRONT SNS SECTION ========================================================================== */
.p-sns-section {
  --sns-glass-bg: rgba(255, 255, 255, 0.1);
  --sns-glass-border: rgba(255, 255, 255, 0.2);
  letter-spacing: 0;
  width: 100%;
  background-color: var(--navy);
  background-image: url("../images/common/sns-page-section-background.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
}
.p-sns-container {
  max-width: var(--content-max);
  width: 100%;
  padding: var(--gap-section-lg) var(--gap-section-md);
  display: flex;
  flex-direction: column;
  gap: 60px;
  box-sizing: border-box;
}
.p-sns-header {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: var(--gap-section-lg);
  flex-wrap: wrap;
}
.c-sns-title {
  display: flex;
  align-items: flex-end;
  gap: var(--gap-section-sm);
  color: var(--white);
  white-space: nowrap;
}
.c-sns-title__en {
  font-family: var(--font-heading-en-family);
  font-weight: var(--font-heading-en-weight);
  line-height: 0.9;
}
.c-sns-title__en-large {
  font-size: 64px;
}
.c-sns-title__en-small {
  font-size: 48px;
}
.c-sns-title__jp {
  font-family: var(--font-heading-jp-family);
  font-size: var(--font-heading-jp-size);
  font-weight: var(--font-heading-jp-weight);
  margin-bottom: 4px;
}
.p-sns-buttons {
  display: flex;
  gap: var(--gap-section-sm);
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
}
.p-sns-buttons--sp-bottom {
  display: none;
}
.p-sns-feeds {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: var(--gap-section-md);
}
.p-sns-feed-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.c-feed-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: var(--font-body-jp-size);
  font-weight: var(--font-heading-jp-weight);
}
.c-feed-header__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.c-feed-media {
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  background: var(--black);
}
.c-feed-media--youtube {
  width: 593px;
  max-width: 100%;
  height: 326px;
}
.c-feed-media--tiktok {
  width: 190px;
  max-width: 100%;
  height: 326px;
}
.c-feed-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-sns-btn {
  flex: 1 1 180px;
  max-width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px var(--gap-section-sm);
  background: var(--sns-glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--sns-glass-border);
  border-radius: 8px;
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.3s;
}
.c-sns-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}
.line-md-icon {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.line-md-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  max-width: none;
  height: auto;
}
.c-sns-btn__label {
  font-size: 14px;
  color: var(--white);
  white-space: nowrap;
  font-weight: var(--font-body-jp-weight);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-sns-container {
    padding: 60px var(--gap-section-md);
    gap: var(--gap-section-md);
  }
  .c-sns-title {
    flex-direction: row;
  }
  .p-sns-section .c-sns-title__en-large {
    font-size: 48px;
  }
  .p-sns-section .c-sns-title__en-small {
    font-size: 32px;
  }
  .p-sns-section .c-sns-title__jp {
    margin-bottom: 0;
  }
  .p-sns-header {
    flex-direction: column;
    align-items: flex-start;
    order: 1;
  }
  .p-sns-header .p-sns-buttons {
    display: none;
  }
  .p-sns-feeds {
    display: contents;
  }
  .p-sns-feed-item--youtube {
    order: 2;
    width: 100%;
  }
  .p-sns-feed-item--tiktok {
    order: 3;
    width: 100%;
  }
  .p-sns-buttons--sp-bottom {
    display: flex;
    order: 4;
    width: 100%;
    max-width: 100%;
    gap: var(--gap-section-sm);
    margin-top: var(--gap-section-sm);
    flex-wrap: wrap;
  }
  .c-feed-media--youtube {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .c-feed-media--tiktok {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 9 / 16;
  }
  .c-sns-btn {
    max-width: none;
    padding: 12px;
  }
  .c-sns-btn__label {
    display: none;
  }
}
@media (max-width: 767px) {
  .p-sns-container {
    padding: 60px var(--gap-section-md);
    gap: var(--gap-section-md);
  }
  .c-sns-title {
    flex-direction: row;
  }
  .p-sns-section .c-sns-title__en-large {
    font-size: 48px;
  }
  .p-sns-section .c-sns-title__en-small {
    font-size: 32px;
  }
  .p-sns-section .c-sns-title__jp {
    margin-bottom: 0;
  }
  .p-sns-header {
    flex-direction: column;
    align-items: flex-start;
    order: 1;
  }
  .p-sns-header .p-sns-buttons {
    display: none;
  }
  .p-sns-feeds {
    display: contents;
  }
  .p-sns-feed-item--youtube {
    order: 2;
    width: 100%;
  }
  .p-sns-feed-item--tiktok {
    order: 3;
    width: 100%;
  }
  .p-sns-buttons--sp-bottom {
    display: flex;
    order: 4;
    width: 100%;
    max-width: 100%;
    gap: var(--gap-section-sm);
    margin-top: var(--gap-section-sm);
    flex-wrap: wrap;
  }
  .c-feed-media--youtube {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .c-feed-media--tiktok {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 9 / 16;
  }
  .c-sns-btn {
    max-width: none;
    padding: 12px;
  }
  .c-sns-btn__label {
    display: none;
  }
}
@media (max-width: 767px) {
  .p-sns-buttons--sp-bottom {
    flex-wrap: nowrap;
  }
}
.front-section {
  width: 100%;
  padding: var(--gap-section-xlg) 0;
}
.front-section__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-inline: var(--gap-section-md);
  box-sizing: border-box;
  position: relative;
}
/* =======================
PC: FV
======================= */
.front-fv {
  /* Slick ラッパー（.slick-slide）が中身すべて absolute で高さ0になるのを防ぐ */
  --fv-slide-min-height: 720px;
  --fv-peek: 80px;
  --fv-slide-max: 1280px;
  overflow: hidden;
  background: #d4d6dc;
}
.front-fv__viewport {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.front-fv__track {
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0 calc((100% - min(100%, var(--fv-slide-max))) / 2);
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.front-fv__track::-webkit-scrollbar {
  display: none;
}
.front-fv__slide {
  position: relative;
  overflow: hidden;
  flex: 0 0 min(100%, var(--fv-slide-max));
  width: min(100%, var(--fv-slide-max));
  height: auto;
  aspect-ratio: 16 / 9;
  scroll-snap-align: center;
  transition: opacity 0.35s ease;
  opacity: 0.35;
}

.front-fv__slide.is-active {
  opacity: 1;
}

.front-fv__slide:not(.is-active) .front-fv__copy {
  opacity: 0;
  pointer-events: none;
}
.front-fv__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.front-fv__overlay::before {
  content: none;
}
.front-fv__main-bg,
.front-fv__side-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.front-fv__slide--side::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.front-fv__copy {
  position: absolute;
  top: min(6vw, 80px);
  left: min(4vw, 40px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 489px;
  min-height: 0;
  gap: var(--gap-section-md);
  overflow: hidden;
  transform-origin: left top;
  transform: scale(1);
}
@media (min-width: 1024px) {
  .front-fv {
    --front-fv-copy-scale: clamp(0.72, calc(100vw / 1440), 1);
  }
  .front-fv__copy {
    transform: scale(var(--front-fv-copy-scale));
  }
}
.front-fv__brand {
  display: grid;
  gap: 8px;
}
.front-fv__title {
  margin: 0;
  font-family: var(--font-heading-en-family);
  font-size: 128px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}

.front-fv__title-shadow,
.front-fv__title-main {
  display: block;
}

.front-fv__title-shadow {
  position: absolute;
  inset: 0;
  transform: translate(8px, 8px);
  color: #22347a;
  z-index: 0;
}

.front-fv__title-main {
  position: relative;
  color: var(--white);
  z-index: 1;
}

.front-fv__subtitle {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
}

.front-fv__subtitle-shadow,
.front-fv__subtitle-main {
  display: inline-block;
}

.front-fv__subtitle-shadow {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(2px, 3px);
  color: #22347a;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
  z-index: 0;
}

.front-fv__subtitle-main {
  position: relative;
  color: var(--white);
  z-index: 1;
}
.front-fv__ticket {
  width: 373px;
  min-height: 90px;
  border-radius: 8px;
  background: #9c0339;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: var(--gap-section-sm) var(--gap-section-md); /* 20px 40px */
  font-size: var(--font-heading-jp-size);
  font-weight: 700;
  box-sizing: border-box;
}
.front-fv__ticket-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.front-fv__shop-link {
  position: absolute;
  right: -3px;
  bottom: 0;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 298px;
  height: 52px;
  padding: 0 var(--gap-section-md);
  color: #fff;
  text-decoration: none;
  background: linear-gradient(110deg, #1f8fcd 0%, #5da2c3 100%);
  clip-path: polygon(12px 0, 100% 0, 100% 100%, 0 100%);
}
.front-fv__shop-link > img:first-child {
  width: 36px;
  height: 36px;
}
.front-fv__shop-link > img:last-child {
  width: 6px;
  height: 9px;
}
.front-fv__shop-text {
  display: grid;
  gap: 2px;
}
.front-fv__shop-text strong {
  font-family: var(--font-heading-en-family);
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
}
.front-fv__shop-text small {
  font-size: 10px;
  line-height: 1.01;
  font-weight: 700;
}
.front-fv__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 22px;
  height: 74px;
  border: none;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
}
.front-fv__nav--prev {
  left: 16px;
}
.front-fv__nav--next {
  right: 16px;
}
.front-fv__nav img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.front-fv__dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: min(100%, 568px);
}
.front-fv__pagination {
  display: flex;
  justify-content: center;
  padding: 10px var(--gap-section-lg);
  background: var(--white);
}

.front-fv__pagination--with-deco {
  background-image: url("../images/front/front-topteam-heading-deco.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 336px 42px;
}
.front-fv__dots button {
  width: 40px;
  height: 2px;
  border: 0;
  background: #000;
  padding: 0;
  cursor: pointer;
}
.front-fv__dots button.is-active {
  background: #ccc;
}
.front-fv__dots button:focus-visible {
  outline: 2px solid var(--blue-main);
  outline-offset: 2px;
} /* FV: Slick（ACF スライド用） */
.front-fv__media-link {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.front-fv__media-link .front-fv__main-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.front-fv .front-fv__track.slick-initialized {
  display: block;
  overflow: visible;
}
.front-fv .front-fv__track .slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.front-fv .front-fv__track .slick-track {
  display: flex;
  align-items: stretch;
}
.front-fv .front-fv__track .slick-slide {
  min-height: var(--fv-slide-min-height);
  height: auto;
}
.front-fv .js-fv-dots .front-fv__dots-slick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: min(100%, 568px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.front-fv .js-fv-dots .front-fv__dots-slick li {
  margin: 0;
  padding: 0;
  line-height: 0;
}
.front-fv .js-fv-dots .front-fv__dots-slick button {
  width: 40px;
  height: 2px;
  border: 0;
  background: #000;
  padding: 0;
  cursor: pointer;
  font-size: 0;
}
.front-fv .js-fv-dots .front-fv__dots-slick li.slick-active button {
  background: #ccc;
}
.front-fv .js-fv-dots .front-fv__dots-slick button:focus-visible {
  outline: 2px solid var(--blue-main);
  outline-offset: 2px;
}
.slick-dotted.slick-slider {
  margin-bottom: 0;
}
/* =======================
PC: MATCH
======================= */
.front-match__slider {
  position: relative;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.front-match__nav {
  position: absolute;
  top: 161px;
  z-index: 3;
  width: 30px;
  height: 100px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.front-match__nav span {
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
}
.front-match__nav--prev {
  left: max(8px, calc(50vw - 635px));
}
.front-match__nav--prev span {
  border-right: 14px solid var(--navy);
}
.front-match__nav--next {
  right: max(8px, calc(50vw - 635px));
}
.front-match__nav--next span {
  border-left: 14px solid var(--navy);
}
.front-match__nav:disabled {
  opacity: 0.35;
  cursor: default;
}
.front-match__viewport {
  overflow: hidden;
}
.front-match__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0 var(--gap-section-lg);
  margin: 0;
  list-style: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.front-match__track::-webkit-scrollbar {
  display: none;
}
.front-match-card {
  position: relative;
  flex: 0 0 386px;
  padding-top: 60px;
  scroll-snap-align: center;
  transition: opacity 0.4s ease;
}
.front-match-card__date {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  color: var(--black);
  font-family: var(--font-heading-en-family);
}
.front-match-card__date strong {
  font-size: 64px;
  line-height: 1;
  font-weight: 500;
}
.front-match-card__date span {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 500;
}
.front-match-card__body {
  min-height: 406px;
  border-radius: 8px;
  background: var(--gray-bg);
  padding: 40px;
  display: grid;
  align-content: start;
  gap: 20px;
}
.front-match-card__league {
  margin: 0;
  font-size: var(--font-body-jp-size);
  line-height: 1;
  font-weight: 700;
}
.front-match-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-body-jp-size);
  line-height: 1;
}
.front-match-card__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  font-family: "Bebas Neue", var(--font-heading-en-family), sans-serif;
  font-size: var(--font-body-jp-size);
  letter-spacing: 0.04em;
}
.front-match-card__label--home {
  background: var(--black);
  color: var(--white);
}
.front-match-card__label--away {
  border: 1px solid var(--navy);
  color: var(--navy);
}
.front-match-card__teams {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: var(--gap-section-sm) 0;
}
.front-match-card__teams img {
  max-width: 89px;
  max-height: 96px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.front-match-card__teams p {
  margin: 0;
  width: 161px;
  font-size: var(--font-body-jp-size);
  line-height: 1;
}
.front-match-card__actions {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.front-match-card__actions .c-btn {
  padding: 8px 8px 8px 16px;
}
.front-match-card.is-fade {
  opacity: 0.3;
}
.front-match__period {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
.front-match__period-btn,
.front-match__period-current {
  min-height: 36px;
  border: 0;
  padding: 8px 8px 8px 16px;
  cursor: pointer;
  font-weight: 700;
}
.front-match__period-current.c-btn--no-icon {
  padding-right: 16px;
}
.front-match__period-btn {
  gap: 8px;
} /* PCで隠す（スマホのみ表示） */
@media (min-width: 768px) and (max-width: 1023px) {
  .u-hidden-pc {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .u-hidden-pc {
    display: none !important;
  }
} /* スマホで隠す（PCのみ表示） */
@media (max-width: 767px) {
  .u-hidden-sp {
    display: none !important;
  } /* スマホ用ボタンの余白調整 */
  .front-goods__store-sp {
    margin-top: 20px;
    text-align: center;
  }
  .front-goods__store-sp .c-btn {
    display: block;
    width: 100%;
  }
} /* =======================
PC: DATA
======================= */
.front-data {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 100px var(--gap-section-md);
  background: url("../images/front/front-data-section-bg.png") center / cover
    no-repeat;
  background-attachment: fixed;
}
.front-data::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 26, 77, 0.9);
  pointer-events: none;
  z-index: 0;
}
.front-data__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1200px);
  margin: 0 auto;
  display: grid;
  gap: 60px;
  color: var(--white);
}
.front-data__heading--with-cta {
  width: 100%;
  justify-content: space-between;
}
.front-data__heading--with-cta,
.front-data__heading--with-cta .front-section-title-en span {
  color: var(--white);
}
.front-data-match {
  border-radius: 20px;
  background: #edeef2;
  padding: var(--gap-section-md);
}
.front-data-match__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.front-data-match__left {
  display: grid;
  align-content: start;
  gap: 20px;
  color: var(--black);
}
.front-data-match__date {
  margin: 0;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  font-family: var(--font-heading-en-family);
}
.front-data-match__date strong {
  font-size: 64px;
  line-height: 1;
  font-weight: 500;
}
.front-data-match__date span {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 500;
}
.front-data-match__league {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
}
.front-data-match__meta {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-body-jp-size);
  line-height: 1.5;
}
.front-data-match__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  background: #000;
  color: #fff;
  font-family: "Bebas Neue", var(--font-heading-en-family), sans-serif;
  font-size: var(--font-body-jp-size);
  line-height: 1;
  letter-spacing: 0.04em;
}
.front-data-match__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.front-data-match__actions .c-btn {
  padding: 8px 16px;
}
.front-data-match__right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 10px 20px;
  color: var(--black);
}
.front-data-team {
  width: 120px;
  display: grid;
  justify-items: center;
  gap: 8px;
}
.front-data-team img {
  max-width: 108px;
  max-height: 116px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.front-data-team__placeholder {
  width: 108px;
  height: 116px;
  border: 2px dashed #9fa6bf;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #63709c;
  font-family: var(--font-heading-en-family);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.04em;
}
.front-data-team p {
  margin: 0;
  width: 100%;
  font-size: var(--font-body-jp-size);
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
}
.front-data-match__score {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-heading-en-family);
  font-size: 120px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
}
.front-data-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap-section-lg);
}
.front-data-panel {
  display: grid;
  padding: 0 var(--gap-section-sm);
  align-content: start;
  position: relative;
}
.front-data-panel header{
  margin-bottom: var(--gap-section-md);
}
.front-data-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--gap-section-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: var(--gap-section-sm) 0;
  max-height: 120px;
}
.front-data-panel__title-en {
  margin: 0;
  font-family: var(--font-heading-en-family);
  font-size: 36px;
  line-height: 1.3;
  font-weight: 500;
}
.front-data-panel__title-ja {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}
.front-data-panel__value {
  margin: 0;
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
}
.front-data-panel__value strong {
  font-family: var(--font-heading-en-family);
  font-size: 80px;
  line-height: 1;
  font-weight: 500;
}
.front-data-panel__value span {
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
}
.front-data-table-wrap {
  overflow-x: auto;
  max-height: 380px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.front-data-table-wrap::-webkit-scrollbar {
  display: none;
}
.front-data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0;
  font-size: var(--font-body-jp-size);
  line-height: 1.2;
  position:initial;
}
.front-data-table thead th {
  padding: 12px 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  position: sticky;
  top: 0;
}
.front-data-table thead th:first-child {
  border-top-left-radius: 2px;
}
.front-data-table thead th:last-child {
  border-top-right-radius: 2px;
}
.front-data-table tbody td {
  padding: 11px 8px;
  text-align: center;
  color: #fff;
  border-bottom: 1px dashed rgba(237, 238, 242, 0.8);
  white-space: nowrap;
}
.front-data-table tbody tr.is-current td {
  background: #d2e9e8;
  color: #000;
}
.front-data-table tbody tr.is-current td:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.front-data-table tbody tr.is-current td:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.front-data-table--spectators th:nth-child(3),
.front-data-table--spectators td:nth-child(3) {
  text-align: center;
  padding-left: 20px;
}
.front-data-panel__meta {
  margin: -8px 0 0;
  font-size: var(--font-body-jp-size);
  line-height: 1.4;
  position: absolute;
  bottom: 0;
  left: var(--gap-section-sm);
}
.front-data-panel__actions {
  margin: 0;
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.front-data-panel__actions .c-btn {
  font-weight: 700;
}
.front-data-sponsor {
  display: grid;
  gap: 20px;
  padding: 0 var(--gap-section-md);
}
.front-data-sponsor__head {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: var(--gap-section-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.front-data-sponsor__title-en {
  margin: 0;
  font-family: var(--font-heading-en-family);
  font-size: 36px;
  line-height: 1;
  font-weight: 500;
}
.front-data-sponsor__title-ja {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}
.front-data-sponsor__body {
  display: grid;
  grid-template-columns: 332px 1fr;
  gap: 40px;
  padding: var(--gap-section-sm) 0;
}
.front-data-sponsor__amounts {
  margin: 0;
  display: grid;
  gap: 20px;
}
.front-data-sponsor__amounts dt {
  margin: 0 0 20px;
  font-size: var(--font-body-jp-size);
  line-height: 1.2;
  font-weight: 500;
}
.front-data-sponsor__amounts dd {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.front-data-sponsor__amounts strong {
  font-family: var(--font-heading-en-family);
  font-size: 36px;
  line-height: 1;
  font-weight: 500;
}
.front-data-sponsor__amounts span {
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
}
.front-data-sponsor__progress {
  display: grid;
  gap: 20px;
}
.front-data-sponsor__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 20px;
}
.front-data-sponsor__row p {
  margin: 0 0 20px;
  font-size: var(--font-body-jp-size);
  line-height: 1.2;
  font-weight: 500;
}
.front-data-sponsor__num {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.front-data-sponsor__num strong {
  font-family: var(--font-heading-en-family);
  font-size: 36px;
  line-height: 1;
  font-weight: 500;
}
.front-data-sponsor__num span {
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
}
.front-data-sponsor__bar {
  width: 100%;
  min-height: 36px;
  border-radius: 30px;
}
.front-data-sponsor__bar span {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 50px;
  border-radius: 30px;
  background: linear-gradient(90deg, #0070c0 0%, #d4ba7f 100%);
}
.front-data-sponsor__row--bottom {
  grid-template-columns: 130px 1fr;
  align-items: center;
}
.front-data-sponsor__row--bottom > div:first-child p {
  /* margin: 0; */
}
.front-data-sponsor__row--bottom > div:first-child p:first-child {
  font-size: var(--font-body-jp-size);
  line-height: 1.2;
}
.front-data-sponsor__buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  padding: 10px 0;
}
.front-data-sponsor__buttons .c-btn {
  border: 1px solid #fff;
  color: #fff;
}
@media (min-width: 768px) and (max-width: 1023px) {
  /* =======================
TB: FV
======================= */
  .front-fv {
    --fv-peek: 48px;
    --fv-slide-min-height: 560px;
  }
  .front-fv__overlay::before {
    width: 66%;
    clip-path: polygon(0 0, 70% 0, 40% 100%, 0 100%);
  }
  .front-fv__copy {
    width: 390px;
    min-height: 0;
    overflow: hidden;
  }
  .front-fv__title {
    font-size: 96px;
  }
  .front-fv__subtitle {
    font-size: 24px;
  }
  .front-fv__ticket {
    width: 300px;
    min-height: 74px;
    font-size: 18px;
    padding: 14px 26px;
  }
  .front-fv__ticket-icon {
    width: 32px;
    height: 32px;
  }
  .front-fv__shop-link {
    right: -3px;
    bottom: 0;
    width: 298px;
    height: 52px;
    padding: 0 18px;
    gap: 10px;
  }
  .front-fv__shop-text strong {
    font-size: 20px;
  }
  .front-fv__nav {
    width: 22px;
    height: 74px;
  }
  .front-fv__pagination {
    padding-inline: var(--gap-section-md);
  } /* =======================
TB: MATCH
======================= */
  .front-section {
    padding: 60px 0;
  }
  .front-section__inner {
    gap: 40px;
    padding-inline: 20px;
  }
  .front-section[data-match-slider] .front-topteam__slider {
    margin-top: 40px; /* gap（40px）相当 */
  }
  .front-match__track {
    gap: 16px;
    scroll-padding-inline-start: 20px;
  }
  .front-match-card {
    flex: 0 0 340px;
    padding-top: 46px;
  }
  .front-match-card__body {
    padding: 24px;
    min-height: 362px;
  }
  .front-match-card__date strong {
    font-size: 52px;
  }
  .front-match-card__date span {
    font-size: 24px;
  }
  .front-match__nav {
    top: 150px;
  }
  .front-match__nav--prev {
    left: 8px;
  }
  .front-match__nav--next {
    right: 8px;
  }
  .front-match__period {
    gap: 40px;
  }
  /* =======================
TB: DATA
======================= */
  .front-data {
    padding: 60px 40px;
  }
  .front-data__inner {
    gap: 40px;
  }
  .front-data-match {
    padding: var(--gap-section-md) var(--gap-section-sm);
  }
  .front-data-match__content {
    grid-template-columns: 1fr;
    gap: var(--gap-section-sm);
  }
  .front-data-match__date strong {
    font-size: 52px;
  }
  .front-data-match__date span {
    font-size: 24px;
  }
  .front-data-match__league {
    font-size: 18px;
  }
  .front-data-match__score {
    font-size: 88px;
  }
  .front-data-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .front-data-panel,
  .front-data-sponsor {
    padding: 0;
  }
  .front-data-sponsor__body {
    grid-template-columns: 1fr;
  }
  .front-data-sponsor__buttons {
    gap: 12px;
  }
}
@media (max-width: 767px) {
  /* =======================
SP: FV
======================= */
  .front-fv {
    --fv-peek: 0px;
    --fv-slide-min-height: 300px;
  }
  .front-fv__slide {
    flex-basis: 100%;
  }
  .front-fv__slide--side {
    display: none;
  }
  .front-fv__overlay::before {
    inset: -7% auto -8% 0;
    width: 76%;
    clip-path: polygon(0 0, 74% 0, 47% 100%, 0 100%);
  }
  .front-fv__copy {
    top: max(6vw, 24px);
    left: max(4vw, 20px);
    bottom: auto;
    width: 50%;
    gap: 20px;
    justify-content: flex-start;
  }
  .front-fv__brand {
    gap: 2px;
  }
  .front-fv__title {
    font-size: max(10vw, 38px);
    line-height: 1.247;
  }
  .front-fv__title-shadow {
    transform: translate(2px, 9px);
  }
  .front-fv__subtitle {
    font-size: min(3vw, 16px);
    letter-spacing: 0;
    line-height: 1.2;
  }
  .front-fv__ticket {
    width: 149px;
    min-height: 35px;
    gap: 4.7px;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 16px;
  }
  .front-fv__ticket-icon {
    width: 16px;
    height: 16px;
  }
  .front-fv__shop-link {
    display: none;
  }
  .front-fv__nav {
    display: none;
  }
  .front-fv__nav--prev {
    left: 8px;
  }
  .front-fv__nav--next {
    right: 8px;
  }
  .front-fv__pagination {
    padding: 8px 20px;
  }
  .front-fv__dots {
    gap: 6px;
  }
  .front-fv__dots button {
    width: 28px;
  }
  .front-fv .js-fv-dots .front-fv__dots-slick button {
    width: 28px;
  } /* =======================
SP: MATCH
======================= */
  .front-section {
    padding: var(--gap-section-md) 0;
  }
  .front-section__inner {
    gap: var(--gap-section-sm);
    padding-inline: var(--gap-section-md);
  }
  .front-section[data-match-slider] .front-topteam__slider {
    margin-top: var(--gap-section-sm); /* gap（20px）相当 */
  }
  .front-section-title-ja {
    font-size: 16px;
  }
  .front-match__slider {
    margin-top: var(--gap-section-sm);
  }
  .front-match__nav {
    display: none;
  }
  .front-match__track {
    padding: 0 var(--gap-section-md);
  }
  .front-match-card {
    flex: 0 0 284px;
    padding-top: 39px;
  }
  .front-match-card__date {
    gap: 8px;
  }
  .front-match-card__date strong {
    font-size: 48px;
  }
  .front-match-card__date span {
  }
  .front-match-card__body {
    min-height: auto;
    padding: var(--gap-section-sm);
    align-items: center;
  }
  .front-match-card__league {
    font-size: 16px;
    align-self: stretch;
  }
  .front-match-card__meta {
    font-size: 16px;
    align-self: stretch;
  }
  .front-match-card__teams {
    flex-direction: column;
    gap: 8px;
    padding: 10px;
  }
  .front-match-card__teams p {
    width: auto;
    font-size: 16px;
    text-align: center;
  }
  .front-match-card__actions {
    flex-direction: column;
    align-items: center;
    gap: var(--gap-section-sm);
    padding: 0 var(--gap-section-md);
    width: 100%;
  }
  .front-match-card__actions .c-btn {
    width: 200px;
    padding: 8px;
    font-size: 16px;
    font-weight: 700;
  }
  .front-match__period {
    margin-top: 20px;
  }
  .front-match__period-btn,
  .front-match__period-current {
    min-height: 36px;
    padding: 8px 8px 8px 16px;
    font-size: 16px;
  }
  .front-match__period-current.c-btn--no-icon {
  } /* =======================
SP: DATA
======================= */
  .front-data {
    padding: 40px 20px;
  }
  .front-data__inner {
    gap: 40px;
  }
  .front-data__heading {
    justify-content: flex-start;
  }
  .front-data-match {
    padding: 20px;
  }
  .front-data-match__content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .front-data-table thead tr th{
	font-size:0.8em;
	}
  .front-data-match__date strong {
    font-size: 48px;
  }
  .front-data-match__date span {
    font-size: 24px;
  }
  .front-data-match__league {
    font-size: 16px;
    font-weight: 700;
  }
  .front-data-match__meta {
    font-size: 16px;
  }
  .front-data-match__actions {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    min-height: 90px;
    width: 100%;
  }
  .front-data-match__actions .c-btn {
    width: 200px;
    min-height: 40px;
    border-radius: 4px;
    padding: 8px;
    font-size: 16px;
  }
  .front-data-match__right {
    gap: 8px;
    padding: 10px 0;
  }
  .front-data-team {
    width: 100px;
  }
  .front-data-team img {
    max-width: 80px;
    max-height: 86px;
  }
  .front-data-team__placeholder {
    width: 80px;
    height: 86px;
    font-size: 16px;
  }
  .front-data-team p {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
  }
  .front-data-match__score {
    font-size: 64px;
    font-weight: 600;
  }
  .front-data-stats {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .front-data-panel,
  .front-data-sponsor {
    padding: 0;
    gap: 20px;
  }
  .front-data-panel__title-ja {
    font-size: 16px;
  }
  .front-data-panel__value strong {
    font-size: 48px;
  }
  .front-data-panel__value span {
    font-size: 16px;
  }
  .front-data-table {
    table-layout: fixed;
    min-width: 100%;
  }
  .front-data-table thead th,
  .front-data-table tbody td {
    padding: 8px 0;
  }
  .front-data-table--ranking th,
  .front-data-table--ranking td {
    width: calc(100% / 7);
  }
  .front-data-table--spectators th:nth-child(1),
  .front-data-table--spectators td:nth-child(1) {
    width: 70px;
    text-align: center;
  }
  .front-data-table--spectators th:nth-child(2),
  .front-data-table--spectators td:nth-child(2) {
    width: 120px;
    text-align: center;
    padding-left: 0;
  }
  .front-data-table--spectators th:nth-child(3),
  .front-data-table--spectators td:nth-child(3) {
    width: auto;
    padding-left: 8px;
  }
  .front-data-panel__meta {
    margin: 0;
  }
  .front-data-panel__actions .c-btn {
    min-height: 40px;
    padding: 4px 8px 4px 16px;
    font-size: 16px;
  }
  .front-data-sponsor__body {
    grid-template-columns: 1fr;
  }
  .front-data-sponsor__amounts {
    max-width: 332px;
  }
  .front-data-sponsor__amounts dt,
  .front-data-sponsor__row > p,
  .front-data-sponsor__row--bottom > div:first-child p:first-child {
    font-size: 16px;
  }
  .front-data-sponsor__amounts strong,
  .front-data-sponsor__num strong {
    font-size: 36px;
  }
  .front-data-sponsor__amounts span,
  .front-data-sponsor__num span {
    font-size: 20px;
  }
  .front-data-sponsor__progress {
    gap: 40px;
  }
  .front-data-sponsor__row {
    grid-template-columns: 100px 1fr;
    gap: 10px 20px;
    align-items: center;
  }
  .front-data-sponsor__row > p:first-child {
    grid-column: 1 / -1;
  }
  .front-data-sponsor__row--bottom {
    align-items: start;
  }
  .front-data-sponsor__buttons {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .front-data-sponsor__buttons .c-btn {
    min-height: 40px;
    font-size: 16px;
    padding: 8px 8px 8px 16px;
  }
} /* =======================
NEWS
======================= */
.c-news-section.c-news-list-section.front-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, #ffffff 0%, #edeef2 100%);
}
.c-news-section.c-news-list-section::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 517px;
  background: url("../images/front/front-news-list-panel-bg.svg") no-repeat
    center / cover;
  transform: scaleY(-1);
  pointer-events: none;
}
.front-section-header {
  display: flex;
  align-items: flex-end;
  gap: var(--gap-section-sm);
}
.front-section-title-en {
  margin: 0;
  font-family: var(--font-heading-en-family);
  font-size: var(--font-heading-en-size);
  font-weight: 600;
  line-height: 1;
}
.front-section-title-en span {
  color: var(--blue-main);
  font-size: 64px;
}
.front-section-title-ja {
  margin: 0;
  font-size: var(--font-heading-jp-size);
  font-weight: 700;
  line-height: 1;
}
.front-section-header--with-cta {
  width: 100%;
  justify-content: space-between;
}
.front-section-header-group {
  display: flex;
  align-items: flex-end;
  gap: var(--gap-section-sm);
}
@media (max-width: 767px) {
  .front-section-header {
    margin-bottom: 20px;
  }
  .front-section-title-en {
    font-size: 36px;
  }
  .front-section-title-en span {
    font-size: 48px;
  }
} /* =======================
GOODS
======================= */
.front-goods {
  background: var(--gray-bg);
}
.front-goods__content {
  display: grid;
}
.front-goods__grid {
  /*display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));*/
  display: flex;
  gap: var(--gap-section-sm);
  flex-wrap: wrap;
  justify-content: center;
}
.front-goods-card {
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  width: calc((100% - (var(--gap-section-sm) * 3)) / 4);
  min-width: 200px;
}
.front-goods-card__link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: var(--gap-section-sm);
  text-decoration: none;
}
.front-goods-card__link img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.front-goods-card__link p {
  min-height: 57px;
  margin: 0;
  color: #000;
  font-size: var(--font-body-jp-size);
  font-weight: 700;
  line-height: 1.2;
}
.front-goods__shop-wrap {
  display: flex;
  justify-content: center;
}
.front-goods__shop-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: min(100%, 400px);
  padding: 20px var(--gap-section-md);
  border-radius: 8px;
  background: #9c0339;
  color: var(--white);
  text-decoration: none;
}
.front-goods__shop-link > img:first-child {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.front-goods__shop-link > img:last-child {
  width: 12px;
  height: 18px;
  flex-shrink: 0;
}
.front-goods__shop-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  white-space: nowrap;
}
.front-goods__shop-text strong {
  font-family: var(--font-heading-en-family);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}
.front-goods__shop-text small {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.front-goods__and-more {
  color: #ccc;
  font-family: var(--font-heading-en-family);
  font-size: var(--font-heading-jp-size);
  font-weight: 400;
  line-height: 1;
  text-align: right;
  margin-top: var(--gap-section-sm);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .front-goods__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .front-goods__shop-text strong {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .front-section-header--with-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: var(--gap-section-sm);
  }
  .front-goods__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .front-goods-card__link {
    padding: 10px;
  }
  .front-goods-card__link p {
    min-height: 44px;
    font-size: 14px;
  }
  .front-goods__shop-wrap {
    margin-top: var(--gap-section-sm);
  }
  .front-goods__shop-link {
    gap: 14px;
    min-height: 64px;
    padding: 12px 16px;
  }
  .front-goods__shop-link > img:first-child {
    width: 30px;
    height: 30px;
  }
  .front-goods__shop-text {
    gap: 4px;
  }
  .front-goods__shop-text strong {
    font-size: 26px;
  }
  .front-goods__shop-text small {
    font-size: 12px;
  }
  .front-goods__and-more {
    margin-top: 8px;
    font-size: 18px;
  } /* 親要素で中央寄せ */
  .front-goods__store-sp {
    text-align: center;
  } /* ボタン本体の調整 */
  .front-goods__store-sp .c-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 280px;
    padding: 12px 30px; /* もしPC版で「＞」をafter疑似要素で作っている場合、それを強制表示 */
    position: relative;
  } /* もし「＞」をCSSのafterで出している場合の設定（共通化） */
  .front-goods__store-sp .c-btn::after {
    display: inline-block;
    content: "";
    margin-left: 10px;
  }
} /* =======================
TOP TEAM（選手スライダー）
======================= */
.front-topteam {
  --front-topteam-gold: #d4ba7f;
  display: flex;
  flex-direction: column;
}
.front-topteam__deco {
  order: 1;
  width: 336px;
  height: 42px;
  margin-bottom: 60px;
  /* margin-inline: var(--gap-section-md) 0; */
  object-fit: contain;
}
.front-topteam__header {
  order: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1280px;
  margin: 0 auto 60px;
  padding: 0 var(--gap-section-md);
  width: 100%;
  box-sizing: border-box;
}
.front-topteam__title {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.front-topteam__title-heading {
  margin: 0;
  font-family: var(--font-heading-en-family);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}
.front-topteam__title-en-first {
  font-size: 64px;
  color: var(--blue-main);
}
.front-topteam__title-en-rest {
  font-size: 48px;
  color: var(--black);
}
.front-topteam__title-ja {
  font-size: var(--font-heading-jp-size);
  font-weight: 700;
  color: var(--black);
  font-family: var(--font-heading-jp-family);
  line-height: 1;
}
.front-topteam__slider {
  order: 3;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.front-section[data-match-slider] .front-topteam__slider {
  /* MATCH SCHEDULE 側では order を無効化（front-section__inner が flex なので入れ替わり防止） */
  order: 0;
  margin-top: 60px; /* front-section__inner の gap（60px）相当 */
}
.front-topteam__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0 var(--gap-section-lg);
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.front-topteam__track::-webkit-scrollbar {
  display: none;
}
.front-topteam-card {
  flex: 0 0 292px;
  scroll-snap-align: center;
  position: relative;
  background-color: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: inherit;
  display: block;
}
.front-topteam-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 5;
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.front-topteam-card.is-active::after {
  opacity: 0;
}
.front-topteam-card__pos {
  position: absolute;
  top: 14px;
  right: 14px;
  color: var(--gray-mid);
  font-family: var(--font-heading-en-family);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  letter-spacing: 0;
}
.front-topteam-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 245 / 239;
  background-color: var(--gray-bg);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.front-topteam-card__img-wrap img {
  width: 285px;
  height: 285px;
  object-fit: contain;
}
.front-topteam-card__origin {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--front-topteam-gold);
  color: var(--navy);
  font-size: 11px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 4px 20px 4px 28px;
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 2;
}
.front-topteam-card__info {
  background-color: var(--navy);
  padding: var(--gap-section-sm);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.front-topteam-card__name-block {
  min-width: 0;
}
.front-topteam-card__name-en {
  display: block;
  font-family: var(--font-heading-en-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}
.front-topteam-card__name-ja {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-heading-jp-family);
  line-height: 1.2;
}
.front-topteam-card__number {
  font-family: var(--font-heading-en-family);
  font-size: 64px;
  line-height: 0.8;
  font-weight: 600;
  letter-spacing: 0;
  flex-shrink: 0;
}
.front-topteam__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 74px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  border: none;
  transition: opacity 0.3s;
  padding: 0;
}
.front-topteam__arrow:hover {
  opacity: 0.7;
}
.front-topteam__arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.front-topteam__arrow--left {
  left: 20px;
}
.front-topteam__arrow--right {
  right: 20px;
}
.front-topteam__footer {
  order: 4;
  display: none;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gap-section-md);
  justify-content: flex-end;
  box-sizing: border-box;
} /* =======================
DANCE TEAM
======================= */
.front-danceteam {
  width: 100%;
  padding: var(--gap-section-lg) 0;
}
.front-danceteam__container {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding-inline: var(--gap-section-md);
  box-sizing: border-box;
}
.front-danceteam__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 1140px;
  margin-left: auto;
  gap: 20px;
}
.front-danceteam__header {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.front-danceteam__title {
  display: flex;
  align-items: baseline;
  gap: 15px;
}
.front-danceteam__title-en {
  font-family: var(--font-heading-en-family);
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  letter-spacing: 0;
}
.front-danceteam__title-ja {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  font-family: var(--font-heading-jp-family);
}
.front-danceteam__divider {
  width: 1px;
  height: 50px;
  background-color: var(--navy);
  transform: rotate(20deg);
}
.front-danceteam__logos {
  display: flex;
  gap: 20px;
  flex: 0 1 auto;
  min-width: 0;
  align-items: center;
}
.front-danceteam__logo-item {
  width: 100%;
  max-width: 200px;
  flex-shrink: 1;
}
.front-danceteam__logo-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
} /* =======================
ACADEMY / SCHOOL
======================= */
.front-as {
  background-color: var(--gray-bg);
  padding: 100px var(--gap-section-md);
}
.front-as__container {
  max-width: 1200px;
  margin: 0 auto;
}
.front-as__header {
  display: flex;
  align-items: baseline;
  margin-bottom: 20px;
}
.front-as__title-en {
  margin: 0;
  font-family: var(--font-heading-en-family);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}
.front-as__title-ja {
  font-weight: 600;
  white-space: nowrap;
  font-family: var(--font-heading-jp-family);
}
.front-as__text {
  font-size: var(--font-body-jp-size);
  line-height: 1.6;
  margin: 0 0 20px;
}
.front-as__nobreak {
  display: inline-block;
  white-space: nowrap;
}
.front-as__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
@media (min-width: 1024px) {
  .front-as__container {
    display: flex;
    flex-direction: row;
    gap: 60px;
  }
  .front-as__item {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }
  .front-as__title-en {
    font-size: 48px;
  }
  .front-as__title-ja {
    font-size: 16px;
    margin-left: 20px;
  }
  .front-as__text {
    width: 306px;
    text-align: left;
  }
  .front-as__img-wrap {
    flex: 0 1 240px;
  }
  .front-as__img {
    aspect-ratio: 240 / 160;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .front-as__container {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas: "acad-txt school-txt" "acad-img school-img";
    gap: 40px 50px;
    justify-content: center;
  }
  .front-as__item {
    display: contents;
  }
  .front-as__item:nth-child(1) .front-as__content {
    grid-area: acad-txt;
    justify-self: start;
  }
  .front-as__item:nth-child(1) .front-as__img-wrap {
    grid-area: acad-img;
    justify-self: start;
    width: 300px;
  }
  .front-as__item:nth-child(2) .front-as__content {
    grid-area: school-txt;
    justify-self: start;
  }
  .front-as__item:nth-child(2) .front-as__img-wrap {
    grid-area: school-img;
    justify-self: start;
    width: 300px;
  }
  .front-as__title-en {
    font-size: 48px;
  }
  .front-as__title-ja {
    font-size: 16px;
    margin-left: 20px;
  }
  .front-as__img {
    aspect-ratio: 300 / 200;
  }
} /* =======================
バナーエリア
======================= */
.front-banner {
  padding: var(--gap-section-md) 0;
  background-color: var(--white);
}
.front-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gap-section-md);
  box-sizing: border-box;
}
.front-banner__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.front-banner__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.front-banner__link {
  display: block;
  width: 100%;
  transition: opacity 0.3s ease;
  border-radius: 4px;
  overflow: hidden;
}
.front-banner__link:hover {
  opacity: 0.8;
}
.front-banner__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 270 / 90;
  object-fit: cover;
}
@media (max-width: 767px) {
  .front-topteam__deco {
    width: 78px;
    height: 20px;
    margin-bottom: 20px;
    /* margin-inline: var(--gap-section-md) 0; */
    object-fit: fill;
  }
  .front-topteam__header .c-btn {
    display: none;
  }
  .front-topteam__footer {
    display: flex;
    margin: 40px 0;
  }
  .front-topteam__header {
    justify-content: flex-start;
    align-items: baseline;
    margin-bottom: 40px;
  }
  .front-topteam__title {
    flex-direction: row;
    gap: 10px;
  }
  .front-topteam__title-en-first {
    font-size: 48px;
  }
  .front-topteam__title-en-rest {
    font-size: 32px;
  }
  .front-topteam__title-ja {
    display: inline-block;
    white-space: nowrap;
  }
  .front-topteam__track {
    padding: 0 var(--gap-section-md);
  }
  .front-topteam__arrow {
    display: none;
  }
  .front-topteam-card {
    flex: 0 0 240px;
  }
  .front-danceteam {
    padding: 0 0 40px;
  }
  .front-danceteam__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .front-danceteam__header {
    width: 100%;
    justify-content: flex-start;
  }
  .front-danceteam__divider {
    height: 30px;
  }
  .front-danceteam__logos {
    width: 100%;
    justify-content: flex-start;
    flex: none;
  }
  .front-as {
    padding: 60px var(--gap-section-md);
  }
  .front-as__container {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  .front-as__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .front-as__img-wrap {
    width: 100%;
  }
  .front-as__title-en {
    font-size: 40px;
  }
  .front-as__title-ja {
    margin-left: 15px;
  }
  .front-as__img {
    aspect-ratio: 14 / 9;
  }
  .front-banner__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-inline: auto;
  }
  .front-banner__image {
    aspect-ratio: 170 / 56;
  }
}
