@charset "UTF-8";
/*-----------------------------------

allstar.scss

------------------------------------*/
.pcDISP {
  display: initial;
}

.spDISP {
  display: none !important;
}

a {
  color: #e60012;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
}

a:hover {
  opacity: 0.4;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  overflow-y: auto;
  overscroll-behavior: none;
}

body {
  background: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.65;
  font-family: "Barlow Condensed", sans-serif;
}

body footer {
  line-height: 130%;
}

footer #partnersArea {
  display: none;
}

.txt__center {
  text-align: center;
}

p {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.65;
  text-align: left;
}

.headline__topmain {
  font-weight: 700;
  font-size: 34px;
  font-size: 3.4rem;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.2;
  text-align: center;
}

@keyframes fadehere {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   informationArea
========================================================================== */
.informationArea {
  background: #fff;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.informationArea__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 30px;
}

/* --- Date + venue block --- */
.information-meta {
  text-align: center;
  margin-bottom: 20px;
}

.information-meta__date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  justify-content: center;
}

.information-meta__date-text {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.02em;
  line-height: 1;
}

.information-meta__day-badge {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.information-meta__divider {
  border: none;
  border-top: 2px solid #000;
  margin: 8px auto;
  width: 100%;
  max-width:49%;
}

.information-meta__venue {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  text-align: center;
}

/* --- Hospitality Seat banner link --- */
.information-seat-card-link {
  display: block;
  margin-bottom: 14px;
}

.information-seat-card-link img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.information-seat-card-link:hover {
  opacity: 1;
}

/* --- Gold seat card - removed, now using banner image --- */

.ticket__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  border-radius: 50px;
  border: 1.5px solid #bbb;
  background: #fff;
  color: #111;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  gap: 12px;
  max-width: 80%;
  margin: 0 auto;
}

.ticket__btn:hover {
  background: #f5f5f5;
  border-color: #999;
  opacity: 1;
  color: #111;
}

.ticket__btn__icon-left,
.ticket__btn__icon-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #666;
}

.ticket__btn__label {
  flex: 1;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.05em;
}

/* Purchase tickets button - gray style */
.seat-map__btn--purchase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  border-radius: 50px;
  background: #8a8a8a;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.seat-map__btn--purchase:hover {
  background: #6e6e6e;
  opacity: 1;
  color: #fff;
}

.seat-map__btn--purchase .seat-map__icon-left,
.seat-map__btn--purchase .seat-map__icon-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #fff;
}

.seat-map__btn--purchase .seat-map__icon-left svg,
.seat-map__btn--purchase .seat-map__icon-right svg {
  width: 16px;
  height: 16px;
}

.seat-map__btn--purchase .seat-map__label {
  flex: 1;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

/* Disabled button style */
.seat-map__btn--disabled {
  background: #b0b0b0 !important;
  cursor: not-allowed;
  pointer-events: none;
}

.seat-map__btn--disabled:hover {
  background: #b0b0b0 !important;
  opacity: 1;
}

/* --- Regular Seat Card --- */
.regular-seat-card {
  background: #fff;
  border: 2px solid #000;
  border-radius: 16px;
  padding: 24px 32px;
  text-align: center;
  margin-bottom: 20px;
}

.regular-seat-card__title {
  font-size: 56px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}


.information-tickets-note {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  text-align: center;
  margin: 0;
}

/* Seat map ticket button - white style */
.seat-map-btn--ticket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  border-radius: 50px;
  background: #fff;
  color: #111;
  text-decoration: none;
  transition: background 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  gap: 12px;
}

.seat-map-btn--ticket:hover {
  background: #f5f5f5;
  opacity: 1;
  color: #111;
}

.seat-map-btn__icon-left,
.seat-map-btn__icon-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  color: #111;
}

.seat-map-btn__label {
  flex: 1;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.03em;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .informationArea {
    padding: 40px 0 60px;
  }

  .information-meta__date {
    gap: 8px;
  }

  .information-meta__day-badge {
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: 0.04em;
    padding: 6px 8px 5px;
  }

  .information-meta__date-text {
    font-size: 20px;
    line-height: 1.1;
  }

  .information-meta__venue {
    font-size: 16px;
  }

  .information-seat-card-link {
    border-radius: 14px;
  }

  .regular-seat-card {
    padding: 20px 16px;
  }

  .regular-seat-card__title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .ticket__btn {
    padding: 12px 18px;
  }

  .ticket__btn__label {
    font-size: 15px;
  }

  .ticket__btn__icon-left,
  .ticket__btn__icon-right {
    width: 20px;
    height: 20px;
  }

  .information-btn__label {
    font-size: 17px;
  }

  .information-btn--ticket {
    padding: 14px 18px;
  }

  .information-tickets-note {
    font-size: 13px;
  }

  .seat-map__btn--purchase {
    padding: 6px 14px;
  }

  .seat-map__btn--purchase .seat-map__label {
    font-size: 14px;
  }

  .seat-map__btn--purchase .seat-map__icon-left,
  .seat-map__btn--purchase .seat-map__icon-right {
    width: 18px;
    height: 18px;
  }

  .seat-map__btn--purchase .seat-map__icon-left svg,
  .seat-map__btn--purchase .seat-map__icon-right svg {
    width: 14px;
    height: 14px;
  }

  .seat-map-btn--ticket {
    padding: 14px 18px;
  }

  .seat-map-btn__label {
    font-size: 17px;
  }

  .seat-map-btn__icon-left,
  .seat-map-btn__icon-right {
    width: 24px;
    height: 24px;
  }

  .seat-map-btn__icon-left svg,
  .seat-map-btn__icon-right svg {
    width: 16px;
    height: 16px;
  }
}

/* ==========================================================================
   allstar-header
========================================================================== */
.allstar-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 111;
  background: #000;
  height: 70px;
  width: 100%;
  min-width: 1100px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  box-sizing: border-box;
}

.allstar-header__inner {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
}

.allstar-header__title a {
  text-align: center;
}

.allstar-header__title img {
  vertical-align: top;
  height: 3vw;
  max-height: 50px;
  min-height: 25px;
}

.allstar-header__jLogo {
  margin-right: 10px;
}

.allstar-header__jLogo img {
  height: 100%;
  width: auto;
  display: block;
}

.allstar-header__gnav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: left;
  align-items: center;
  margin-left: 20px;
}

.allstar-header__gnav__li {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  position: relative;
  height: 70px;
  line-height: 70px;
}

.allstar-header__gnav__li a {
  color: #fff;
  display: inline-block;
  padding: 0 10px;
  height: 70px;
  font-weight: 700;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  line-height: 1;
  text-align: center;
  gap: 6px;
  font-size: 16px;
}

.nav-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ==========================================================================
   allstar-header__hamburger  (SP only)
========================================================================== */
.allstar-header__hamburger {
  display: none; /* shown via .spDISP media query */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  margin-left: 8px;
  flex-shrink: 0;
  position: relative;
  z-index: 200;
}

.allstar-header__hamburger__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* X animation when menu is open */
.allstar-header__hamburger.is-active .allstar-header__hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.allstar-header__hamburger.is-active .allstar-header__hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.allstar-header__hamburger.is-active .allstar-header__hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   allstar-sp-nav  (mobile drawer – full screen)
========================================================================== */
.allstar-sp-nav {
  display: none; /* enabled via media query */
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 200;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.allstar-sp-nav.is-open {
  transform: translateX(0);
}

/* Header row: logos + close button */
.allstar-sp-nav__header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 60px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.allstar-sp-nav__logo-jleague {
  justify-self: start;
  display: flex;
  align-items: center;
}

.allstar-sp-nav__logo-jleague img {
  height: 18px;
  width: auto;
  display: block;
}

.allstar-sp-nav__logo-allstar {
  justify-self: center;
  display: flex;
  align-items: center;
}

.allstar-sp-nav__logo-allstar img {
  height: 32px;
  width: auto;
  display: block;
}

/* Close (X) button */
.allstar-sp-nav__close {
  justify-self: end;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.allstar-sp-nav__close:hover {
  opacity: 0.6;
}

/* Nav list */
.allstar-sp-nav__list {
  list-style: none;
  margin: 0;
  padding: 20px 0;
}

.allstar-sp-nav__item {
  text-align: center;
}

.allstar-sp-nav__link {
  display: block;
  padding: 22px 20px;
  color: #fff !important;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.allstar-sp-nav__link:hover {
  opacity: 0.6;
}

/* Overlay (behind drawer – not needed for full-screen but keep as fallback) */
.allstar-sp-nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 190;
  pointer-events: none;
}

.allstar-sp-nav__overlay.is-active {
  pointer-events: auto;
}

h1.visually-hidden {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  margin: -1px;
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ==========================================================================
   floatingbnr
========================================================================== */
.floatingbnrArea {
  display: block;
  position: fixed;
  z-index: 999;
  bottom: 10px;
  right: 10px;
  width: 500px;
  height: inherit;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}

.floatingbnrArea img {
  width: 100%;
  display: block;
}

.floatingbnrArea.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floatingbnrArea .btn__close {
  display: inline-block;
  content: "\f2d7";
  font-family: "ionicons";
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #fff;
  background: #646464;
  color: #fff;
  position: absolute;
  right: 10px;
  top: -50px;
  pointer-events: all !important;
  font-size: 18px;
  font-size: 1.8rem;
}

.floatingbnrArea .btn__close:hover {
  opacity: 1;
  background: #4d4d4d;
}

/* ==========================================================================
   kv
========================================================================== */
.kvArea {
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

/* Banner full screen */
.kvArea__BG {
  position: relative;
  width: 100%;
  line-height: 0;
}

.kvArea__BG img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content section below banner */
.kv-content {
  background: #fff;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.kv-content__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.kv-logo {
  margin-bottom: 50px;
}

.kv-logo img {
  max-width: 500px;
  width: 100%;
  height: auto;
}

.kv-description {
  margin-bottom: 50px;
}

.kv-description__text {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2.0;
  color: #000;
  text-align: center;
  font-weight: 500;
  font-family: "Barlow Condensed", sans-serif;
}

.kv-buttons {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.kv-btn {
  display: inline-block;
  min-width: 260px;
  padding: 18px 50px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  border: 2px solid #e60012;
  cursor: pointer;
}

.kv-btn--primary {
  background: #e60012;
  color: #fff;
}

.kv-btn--primary:hover {
  background: #fff;
  color: #e60012;
  opacity: 1;
}

.kv-btn--secondary {
  background: #fff;
  color: #e60012;
}

.kv-btn--secondary:hover {
  background: #e60012;
  color: #fff;
  opacity: 1;
}

/* Responsive for kv-buttons */
@media screen and (max-width: 768px) {
  .kv-content {
    padding: 50px 0 70px;
  }

  .kv-logo {
    margin-bottom: 30px;
  }

  .kv-logo img {
    max-width: 300px;
  }

  .kv-description {
    margin-bottom: 30px;
  }

  .kv-description__text {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.8;
    padding: 0 10px;
  }

  .kv-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .kv-btn {
    min-width: 260px;
    width: 90%;
    max-width: 300px;
    padding: 15px 30px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.kvArea__img {
  width: 100%;
  opacity: 0;
  animation: 1s fadehere ease-in-out forwards;
  animation-delay: 0.5s;
}

.kvArea__img img {
  width: 100%;
  height: auto;
}

.kvArea__ttl {
  width: 50%;
  margin: 0 auto;
  margin-top: -8%;
  opacity: 0;
  animation: 1s fadehere ease-in-out forwards;
  animation-delay: 0.5s;
}

.kvArea__ttl img {
  width: 100%;
  height: auto;
}

.kvArea__line {
  width: 50%;
  margin: 4% auto;
  opacity: 0;
  animation: 1s fadehere ease-in-out forwards;
  animation-delay: 0.5s;
}

.kvArea__line img {
  width: 100%;
  height: auto;
}

.leadArea__list--item {
  max-width: 500px;
  margin: 0 auto;
  width: 40%;
  opacity: 0;
}

.leadArea__list--item.visible {
  animation: 1s fadeup ease-in-out forwards;
}

.leadArea__list--item img {
  width: 100%;
  height: auto;
}

.leadArea__list--item:nth-child(4) {
  margin-bottom: 50px;
}

.leadArea__list--item + .leadArea__list--item {
  margin-top: 30px;
}

.leadArea__btn {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 50px;
  position: relative;
}

.leadArea__btn img {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   voteArea
========================================================================== */
.voteArea {
  position: relative;
}

.voteArea__inner {
  position: relative;
  background-color: #e60012;
  transition: all 0.3s ease-in-out;
}

.voteArea__inner::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  font-size: 20px;
  font-size: 2rem;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.voteArea__img {
  font-size: 0;
  max-width: 1400px;
  margin: 0 auto;
  display: block;
}

.voteArea__img img {
  width: 100%;
  height: auto;
}

.voteArea a:hover {
  opacity: 1;
}

.voteArea a:hover img {
  opacity: 1;
}

.voteArea a:hover .voteArea__inner {
  background-color: #B2000E;
}

.voteArea a:hover .voteArea__inner:after {
  right: 4%;
}

/* ==========================================================================
   outlineArea
========================================================================== */
.outlineArea {
  box-sizing: border-box;
  border-radius: 30px;
  color: #000;
  margin-bottom: 80px;
  opacity: 0;
}

.outlineArea.visible {
  animation: 1s fadeup ease-in-out forwards;
}

.outlineArea__table {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.outlineArea__table table {
  width: 100%;
  border-top: 1px solid #000;
}

.outlineArea__table tr {
  border-bottom: 1px solid #000;
}

.outlineArea__table tr th {
  width: 30%;
  text-align: center;
}

.outlineArea__table tr td {
  width: 70%;
}

/* ==========================================================================
   youtubeArea
========================================================================== */
.youtubeArea {
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 800px;
  margin: 80px auto;
  opacity: 0;
}

.youtubeArea.visible {
  animation: 1s fadeup ease-in-out forwards;
}

.youtubeArea iframe {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   allstarArea (legacy – kept for compatibility)
========================================================================== */
.allstarArea__inner {
  width: 90%;
  max-width: 1362px;
  margin: 80px auto;
}

.allstarArea__title {
  font-weight: 700;
  font-size: 30px;
  font-size: 3rem;
  color: #000;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  opacity: 0;
}

.allstarArea__title.visible {
  animation: 1s fadeup ease-in-out forwards;
}

.allstarArea__title strong {
  font-weight: 700;
  font-size: 34px;
  font-size: 3.4rem;
  color: #000;
}

.allstarArea__title img {
  max-width: 60px;
  width: 100%;
  margin-right: 10px;
}

/* ==========================================================================
   aboutArea  (new UI matching design image)
========================================================================== */
.aboutArea {
  background: #fff;
  padding: 60px 0 80px;
}

.aboutArea__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Wrapper card with stronger shadow */
.aboutArea__wrapper--card {
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  padding: 30px 20px;
  background-color: #ffffff;
}

/* Block without border (for image-only blocks) */
.aboutBlock--no-border {
  border-top: 2px solid #000;
  border-bottom: none !important;
  margin-bottom: 0;
}

.aboutBlock--no-border:last-child {
  border-bottom: none !important;
}

.aboutBlock--no-border .aboutBlock__header {
  margin-top: 0;
}

.aboutBlock--no-border .aboutBlock__header span {
  transform: translateY(-50%);
}

.aboutBlock--no-border + .aboutBlock {
  border-top: 2px solid #000;
}

/* Main title */
.aboutArea__title {
  font-size: 64px;
  font-weight: 900;
  color: #000;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 16px;
  font-family: "Barlow Condensed", "Arial Black", sans-serif;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.25);
}

/* Short horizontal rule under title */
.aboutArea__title-divider {
  margin: 0 auto 32px;
  text-align: center;
}

/* Subtitle */
.aboutArea__subtitle {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.5;
}

/* ---- Block (each section) ---- */
.aboutBlock {
  border-top: 2px solid #000;
  margin-bottom: 0;
}

.aboutBlock:last-child {
  border-bottom: 2px solid #000;
}

/* Pill header — centered on the border-top line */
.aboutBlock__header {
  display: flex;
  justify-content: center;
  position: relative;
  /* Pull the header up so the span sits on the border */
  margin-top: 0;
}

.aboutBlock__header span {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  /* Move the span up by 50% of its own height so it straddles the border */
  transform: translateY(-50%);
}

/* Block body — compensate for span being pulled up */
.aboutBlock__body {
  padding: 4px 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.aboutBlock__body--center {
  text-align: center;
  align-items: center;
}

/* Table inside block */
.aboutBlock__table {
  width: auto;
  border-collapse: collapse;
  font-size: 13px;
  margin: 0 auto;
}

/* Border only at bottom of each row, via th/td so it stays within the table frame */
.aboutBlock__table th,
.aboutBlock__table td {
  padding: 12px 16px 12px 0;
  color: #000;
}

.aboutBlock__table tr.has-border-bottom th,
.aboutBlock__table tr.has-border-bottom td {
  border-bottom: 1px solid #000;
}

.aboutBlock__table th {
  width: 180px;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
  font-size: 16px;
}

.aboutBlock__table td {
  line-height: 1.6;
  font-size: 16px;
}

/* Remove bottom border on last row (only if not has-border-bottom) */
.aboutBlock__table tr:last-child:not(.has-border-bottom) th,
.aboutBlock__table tr:last-child:not(.has-border-bottom) td {
  border-bottom: none;
}

/* Link inside table */
.aboutBlock__link {
  /*color: #007bff;*/
  color: #00B7FF;
  text-decoration: underline;
  font-weight: 600;
}

.aboutBlock__link:hover {
  opacity: 0.7;
  color: #007bff;
}

/* Text inside block body */
.aboutBlock__text {
  font-size: 18px;
  color: #000;
  line-height: 1.7;
  margin-bottom: 6px;
  text-align: center;
}

.aboutBlock__text--bold {
  font-weight: 700;
}

.aboutBlock__note {
  font-size: 14px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 4px;
}

/* Match Rules section - larger text */
.aboutBlock--match-rules .aboutBlock__text {
  font-size: 20px;
}

.aboutBlock--match-rules .aboutBlock__note {
  font-size: 16px;
}

/* Team grid */
/* --- Team Lineup grid (6 cards, 3×2) --- */
.aboutBlock__teamwrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
}

/* Each team card */
.aboutBlock__teamcard {
  flex: 0 0 calc(33.333% - 10px);
  max-width: calc(33.333% - 10px);
  border-radius: 6px;
  overflow: hidden;
  background: #f0f0f0;
  display: flex;
  flex-direction: column;
}

/* Colored title bar */
.aboutBlock__teamcard-title {
  padding: 9px 12px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

/* J1 → red */
.aboutBlock__teamcard--red .aboutBlock__teamcard-title {
  background: #df0024;
}

/* J2/J3 EAST → green */
.aboutBlock__teamcard--green .aboutBlock__teamcard-title {
  background: #009044;
}

/* J2/J3 WEST → blue */
.aboutBlock__teamcard--blue .aboutBlock__teamcard-title {
  background: #0070c0;
}

/* Club logos image area */
.aboutBlock__teamcard-clubs {
  flex: 1;
  padding: 10px;
  background: #f0f0f0;
}

.aboutBlock__teamcard-clubs img {
  width: 100%;
  height: auto;
  display: block;
  padding: 10px 40px;
}

/* Tournament image */
.aboutBlock__tournament {
  margin-top: 16px;
}

.aboutBlock__tournament img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* DAZN banner */
.aboutBlock__dazn {
  margin-top: 20px;
}

.aboutBlock__dazn img {
  max-width: 500px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ---- Responsive ---- */
@media screen and (max-width: 768px) {
  .aboutArea {
    padding: 40px 0 60px;
  }

  .aboutArea__title {
    font-size: 32px;
  }

  .aboutArea__subtitle {
    font-size: 20px;
  }

  .aboutBlock__table th {
    width: 110px;
    font-size: 14px;
  }

  .aboutBlock__table td {
    font-size: 14px;
  }

  /* Match Rules section - smaller text on mobile */
  .aboutBlock--match-rules .aboutBlock__text {
    font-size: 16px;
  }

  .aboutBlock--match-rules .aboutBlock__note {
    font-size: 13px;
  }

  /* About section text - balanced for mobile */
  .aboutBlock__header span {
    font-size: 16px;
    padding: 4px 16px;
  }

  .aboutBlock__text {
    font-size: 14px;
  }

  .aboutBlock__note {
    font-size: 12px;
  }

  .aboutBlock__body p {
    text-align: center;
  }

  .aboutBlock__teamcard {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }

  .aboutBlock__teamwrap {
    gap: 10px;
  }

  .aboutBlock__teamcard-clubs img {
    padding: 5px;
  }
}

/* ==========================================================================
   pointArea
========================================================================== */
.pointArea {
  padding-top: 100px;
  padding-bottom: 30px;
  position: relative;
  opacity: 0;
}

.pointArea.visible {
  animation: 1s fadeup ease-in-out forwards;
}

.pointArea__wrap {
  background: #fff;
  border: 3px solid #000;
  border-radius: 40px;
  padding: 100px 40px 40px 40px;
  box-shadow: 0px 20px 30px 0 rgba(0, 0, 0, 0.16);
  position: relative;
}

.pointArea__title {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.pointArea__title .point {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
  background: #000;
  width: 130px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  margin: 0 auto;
}

.pointArea__title .txt {
  font-weight: 700;
  font-size: 24px;
  font-size: 2.4rem;
  color: #000;
  text-align: center;
  line-height: 1.5;
  margin-top: 10px;
}

.pointArea__title .txt span {
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  display: block;
}

.pointArea__subtitle {
  font-weight: 700;
  font-size: 24px;
  font-size: 2.4rem;
  color: #000;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.5;
}

.pointArea__subtitle span {
  display: inline-block;
  border-bottom: 3px solid #000;
  padding-bottom: 5px;
}

.pointArea__con {
  margin-bottom: 80px;
}

.pointArea__con .txt {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
}

.pointArea__con .attention {
  font-size: 13px;
  font-size: 1.3rem;
  margin-top: 10px;
}

/* ==========================================================================
   selectionmethod
========================================================================== */
.selectionmethod__con {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
}

.selectionmethod__title {
  margin-bottom: 30px;
}

.selectionmethod__title .right {
  font-weight: 700;
  font-size: 24px;
  font-size: 2.4rem;
  color: #000;
  text-align: center;
}

.selectionmethod__con--inner .schedule {
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
  color: #000;
  margin-bottom: 30px;
}

.selectionmethod__con--inner .schedule span {
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
  display: block;
  margin-top: 10px;
}

.selectionmethod__con--inner .box {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
}

.selectionmethod__con--inner .box .title {
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}

.selectionmethod__con--inner .box .wrap {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
}

.selectionmethod__con--inner .box .wrap .left,
.selectionmethod__con--inner .box .wrap .center,
.selectionmethod__con--inner .box .wrap .right {
  flex: 1;
  text-align: center;
}

.selectionmethod__con--inner .box .wrap .plus {
  font-weight: 700;
  font-size: 30px;
  font-size: 3rem;
  color: #000;
  margin: 0 10px;
  line-height: 1;
}

.selectionmethod__con--inner .box .wrap .inner {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 20px;
}

.selectionmethod__con--inner .box .wrap .number {
  font-weight: 700;
  font-size: 36px;
  font-size: 3.6rem;
  color: #e60012;
}

.selectionmethod__con--inner .box .wrap .subtitle {
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
  color: #000;
  margin-top: 10px;
}

.selectionmethod__con--inner .box .wrap .subtitle strong {
  color: #e60012;
}

.selectionmethod__con--inner .box .wrap .img {
  margin-top: 20px;
}

.selectionmethod__con--inner .box .wrap .img img {
  max-width: 100px;
  width: 100%;
}

.selectionmethod__con--inner .results {
  font-weight: 700;
  font-size: 24px;
  font-size: 2.4rem;
  color: #000;
  text-align: center;
  margin-bottom: 30px;
}

.selectionmethod__con--inner .results strong {
  display: block;
  font-size: 36px;
  font-size: 3.6rem;
  color: #e60012;
}

.selectionmethod__con--inner .arrow {
  text-align: center;
  margin-bottom: 30px;
}

.selectionmethod__con--inner .arrow img {
  max-width: 50px;
  width: 100%;
}

/* ==========================================================================
   teamwrap
========================================================================== */
.teamwrap {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.teamwrap__con {
  width: 30%;
  margin: 0 1.5% 30px;
  text-align: center;
}

.teamwrap__con .title {
  margin-bottom: 20px;
}

.teamwrap__con .title img {
  max-width: 150px;
  width: 100%;
}

.teamwrap__con .inner img {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   tournament
========================================================================== */
.tournament__img {
  text-align: center;
}

.tournament__img img {
  max-width: 800px;
  width: 100%;
}

/* ==========================================================================
   dazn
========================================================================== */
.dazn__img {
  max-width: 800px;
  margin: 0 auto;
}

.dazn__img img {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   sponsorArea
========================================================================== */
.sponsorArea {
  background: #fff;
}

.sponsorArea__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.sponsorArea__title {
  text-align: center;
  margin-bottom: 40px;
}

.sponsorArea__title img {
  max-width: 300px;
  width: 100%;
}

.sponsorArea__con {
  margin-bottom: 40px;
}

.sponsorArea__con .ttl {
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}

.sponsorArea__con .logo__L {
  text-align: center;
  margin-bottom: 40px;
}

.sponsorArea__con .logo__L img {
  max-width: 600px;
  width: 100%;
}

.sponsorArea__con .logo__S {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.sponsorArea__con .logo__S a {
  margin: 0 20px 20px;
}

.sponsorArea__con .logo__S img {
  max-width: 150px;
  width: 100%;
}

.sponsorArea__con.partner .logo__S a {
  display: inline-block;
  white-space: nowrap;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
  background: #000;
  padding: 15px 30px;
}

/* ==========================================================================
   btn
========================================================================== */
.btn {
  display: block;
  transition: 0.3s ease-in-out;
}

.btn img {
  width: 100%;
  height: auto;
}

.votebtn {
  max-width: 800px;
  margin: 0 auto 20px;
}

.margB20 {
  margin-bottom: 20px;
}

.margB30 {
  margin-bottom: 30px;
}

/* ==========================================================================
   table
========================================================================== */
.table tr th,
.table tr td {
  font-size: 16px;
  font-size: 1.6rem;
  padding: 10px;
}

.table tr th {
  font-weight: 700;
  text-align: center;
}

/* ==========================================================================
   Wider content sections (55% screen width)
========================================================================== */
.aboutArea__inner,
.sponsorArea__inner,
.ticketArea__inner {
  max-width: 70%;
  width: 70%;
}

/* Information section: slightly narrower than others */
.informationArea__inner {
  max-width: 45%;
  width: 45%;
}

/* Responsive: full width on mobile */
@media screen and (max-width: 768px) {
  .aboutArea__inner,
  .sponsorArea__inner,
  .ticketArea__inner,
  .informationArea__inner {
    max-width: 95%;
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .pcDISP {
    display: none !important;
  }

  .spDISP {
    display: initial !important;
  }

  /* SP header: 3-column grid [jLeague | allstar (center) | hamburger] */
  .allstar-header {
    min-width: 100%;
    height: 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 15px;
  }

  /* Make inner wrappers transparent to the grid */
  .allstar-header__inner {
    display: contents;
  }

  .allstar-header__gnav {
    display: none;
  }

  /* J.League logo → left column */
  .allstar-header__jLogo {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 40px;
  }

  .allstar-header__jLogo a {
    display: flex;
    align-items: center;
  }

  .allstar-header__jLogo img {
    height: 18px;
    width: auto;
    display: block;
  }

  /* Allstar logo → center column */
  .allstar-header__title {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    height: 40px;
  }

  .allstar-header__title a {
    display: flex;
    align-items: center;
  }

  .allstar-header__title img {
    height: 30px;
    width: auto;
    display: block;
  }

  /* Hamburger → right column, flush right */
  .allstar-header__hamburger {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 8px;
    height: auto;
    width: auto;
    background: none;
    border: none;
    cursor: pointer;
  }

  .allstar-header__hamburger img {
    width: auto;
    height: 16px;
    display: block;
  }

  /* Enable drawer & overlay on SP */
  .allstar-sp-nav {
    display: block;
  }

  .allstar-sp-nav__overlay {
    display: block;
  }

  .kvArea {
    padding-top: 60px;
    padding-bottom: 50px;
  }

  .kvArea__ttl {
    width: 80%;
  }

  .kvArea__line {
    width: 80%;
  }

  .leadArea__list--item {
    width: 80%;
  }

  .leadArea__btn {
    width: 90%;
  }

  .allstarArea__inner {
    width: 95%;
    margin: 40px auto;
  }

  .allstarArea__title {
    font-size: 20px;
    font-size: 2rem;
    flex-wrap: wrap;
  }

  .allstarArea__title strong {
    font-size: 24px;
    font-size: 2.4rem;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .allstarArea__title img {
    max-width: 40px;
  }

  .pointArea__wrap {
    padding: 80px 20px 30px;
  }

  .pointArea__title .txt {
    font-size: 18px;
    font-size: 1.8rem;
  }

  .pointArea__subtitle {
    font-size: 20px;
    font-size: 2rem;
  }

  .selectionmethod__con {
    padding: 20px;
  }

  .selectionmethod__con--inner .box .wrap {
    flex-wrap: wrap;
  }

  .selectionmethod__con--inner .box .wrap .left,
  .selectionmethod__con--inner .box .wrap .center,
  .selectionmethod__con--inner .box .wrap .right {
    width: 100%;
    margin-bottom: 20px;
  }

  .selectionmethod__con--inner .box .wrap .plus {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }

  .teamwrap__con {
    width: 45%;
  }

  .floatingbnrArea {
    width: 90%;
    right: 5%;
  }

  .sponsorArea__con .logo__S {
    flex-wrap: wrap;
  }

  .sponsorArea__con .logo__S a {
    width: 40%;
    margin: 0 5% 20px;
  }

  .sponsorArea__con .logo__S img {
    width: 100%;
  }

  .sponsorArea__con .ttl {
    font-size: 14px;
    font-size: 1.4rem;
  }

  .sponsorArea__con.partner .logo__S a {
    width: auto;
    margin: 0 10px 20px;
    padding: 12px 24px;
  }
}
