@charset "UTF-8";
/* ------------------------------ */
/* カスタムプロパティ */
/* ------------------------------ */
/* カラー */
:root {
  --color-gray: #f3f3f2;
  --color-red: #d40201;
  --color-black: #000;
  --color-yellow: #b89221;
  --color-white: #fff;
}

/* フォント */
:root {
  --font-family-base: "Noto Sans JP", sans-serif;
}

/* -------------------------
全体共通のスタイル
------------------------- */
html {
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-family-base);
  font-size: 14px;
  background-image: url(../images/bg-pc.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  background-attachment: fixed;
  background-color: var(--color-black);
}
body.is-fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

@media screen and (max-width: 430px) {
  body {
    background-image: none;
  }
}
a,
button {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

.l-container {
  padding-inline: 12px;
}

main {
  position: relative;
}

/* -------------------------
コンテナの幅
------------------------- */
.lp-wrapper {
  max-width: 500px;
  position: relative;
  box-shadow: 0 0 18px #000;
  margin: auto;
  background-image: url(../images/bg-yellow.webp);
  background-size: contain;
  background-color: var(--color-black);
  overflow: hidden;
}

/* -------------------------
ボタン
------------------------- */
.c-button {
  display: block;
  width: 89%;
  margin: 0 auto;
  position: relative;
  transition: 0.3s ease;
}
.c-button:hover {
  opacity: 0.7;
}

.c-button-red {
  outline: solid 3px #e91223;
  text-shadow: 0px 0px 4px #8a0303;
  background-image: url(../images/button-bg.webp);
  color: var(--color-white);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  font-size: 19px;
  padding: 16px 0;
  width: 82%;
  font-weight: bold;
  border-radius: 100vw;
  text-align: center;
}

/* -------------------------
タイトル
------------------------- */
.section__title {
  font-weight: 900;
}

.section__title--base {
  position: relative;
  background: linear-gradient(180deg, #ffff90 0%, #b89221 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
  display: flex;
  gap: 11px;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.313rem, -0.017rem + 5.45vw, 1.688rem);
}

/* -------------------------
CTAボタン
------------------------- */
.c-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* -------------------------
左右
------------------------- */
.pc-left__logo {
  position: fixed;
  top: 50%;
  display: flex;
  justify-content: center;
  align-content: center;
  transform: translateY(-50%);
  left: 0;
  width: calc(50% - 250px);
  height: 100%;
}
@media screen and (max-width: 1080px) {
  .pc-left {
    display: none;
  }
}

.pc-right__menu {
  position: fixed;
  top: 50%;
  display: flex;
  justify-content: center;
  align-content: center;
  transform: translateY(-50%);
  right: 0;
  flex-wrap: wrap;
  width: calc(50% - 250px);
  height: 100%;
}
.pc-right__menu ul {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.pc-right__menu ul li {
  font-weight: 500;
  color: var(--color-white);
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.74);
  font-size: 15px;
  line-height: 1.8;
  transition: 0.3s ease;
}
.pc-right__menu ul li:hover {
  color: var(--color-red);
  font-weight: 900;
}
@media screen and (max-width: 1080px) {
  .pc-right {
    display: none;
  }
}

/* -------------------------
ヘッダー
------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 500px;
  z-index: 10;
  transition: 0.3s ease-in-out;
}
.header.is-active {
  background-color: var(--color-black);
}
.header.open {
  background-color: var(--color-black);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 10px;
  padding-inline: 24px;
  position: relative;
}
.header__logo {
  max-width: 60px;
  position: relative;
  z-index: 1;
}
.header .hamburger {
  position: relative;
  z-index: 10;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
}
.header .hamburger__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 20px;
}
.header .hamburger__text {
  margin-block-start: 5px;
  font-family: "Tomorrow", sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: var(--color-white);
  text-align: center;
}
.header .hamburger span {
  width: 30px;
  height: 3px;
  background-color: var(--color-white);
  transition: 0.3s ease;
}
.header .hamburger.is-active span {
  position: absolute;
  top: 50%;
  transform-origin: center;
}
.header .hamburger.is-active span:first-of-type {
  transform: translateY(-50%) rotate(-27deg);
}
.header .hamburger.is-active span:last-of-type {
  width: 31px;
  transform: translateY(-50%) rotate(27deg);
}
.header .header.open {
  background-color: var(--color-black);
}
.header .header-menu {
  padding: 16px 47px 32px 47px;
  background: rgba(27, 27, 27, 0.9);
  display: none;
  width: 100%;
  position: fixed;
  top: 60px;
  left: 0;
  animation-name: fade;
  animation-duration: 1s;
  animation-iteration-count: 1;
}
.header .header-menu.is-active {
  display: block;
}
.header .header-menu__list {
  display: flex;
  flex-direction: column;
}
.header .header-menu__item {
  font-size: 15px;
  color: var(--color-white);
  letter-spacing: 0.04rem;
  font-weight: 500;
  border-bottom: solid 1px var(--color-white);
  transition: 0.3s ease;
}
.header .header-menu__item:hover {
  color: var(--color-red);
  font-weight: 900;
}
.header .header-menu__item a {
  display: block;
  padding-block: 16px;
}

/* -------------------------
FV
------------------------- */
.fv {
  position: relative;
  background-color: var(--color-black);
}
.fv__title {
  position: absolute;
  bottom: 19%;
  left: 11%;
  width: 81%;
  opacity: 0;
}
.fv__button {
  position: absolute;
  bottom: -6%;
  padding-inline: 36px;
  left: 0;
  width: 100%;
  display: block;
  transition: 0.3s ease;
}
.fv__button .venue-ticket__button {
  position: relative;
}
.fv__button:hover {
  opacity: 0.7;
}
.fv__title.is-show {
  animation: fvTitleSlideIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fvTitleSlideIn {
  from {
    opacity: 0;
    transform: translateX(-120px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* -------------------------
対戦カード
------------------------- */
.match-card {
  background-image: url(../images/card-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.match-card__inner {
  text-align: center;
  padding-block-start: 35px;
}
.match-card__button {
  width: 87%;
  display: block;
  margin: 0 auto;
  transition: 0.3s ease;
}
.match-card__button:hover {
  opacity: 0.7;
}
.match-card .u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.match-card__slider {
  margin-block: 32px;
}
.match-card__progress {
  margin-bottom: 36px;
}
.match-card__progress-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.match-card__progress-item {
  position: relative;
  width: 12px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-white);
  overflow: hidden;
  transition: width 0.3s ease, background-color 0.3s ease;
  flex: 0 0 auto;
}
.match-card__progress-item.is-active {
  width: 37px;
}
.match-card__progress-item.is-done .match-card__progress-fill {
  width: 100%;
}
.match-card__progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--color-black);
  transition: width 0.1s linear;
}
.match-card .match-main-slider {
  margin-bottom: 8px;
}
.match-card .match-main-slide {
  overflow: hidden;
  border-radius: 24px;
  background: #111;
  color: #fff;
}
.match-card .match-main-slide__image img {
  display: block;
  width: 100%;
  height: auto;
}
.match-card .match-main-slide__body {
  padding: 20px;
}
.match-card .match-main-slide__label {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.match-card .match-thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.match-card .match-thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.match-card .match-thumb-slider .splide__track {
  overflow: visible;
}
.match-card .match-thumb-slider .splide__slide {
  opacity: 0.5;
  transition: opacity 0.3s ease;
  border: none;
}
.match-card .match-thumb-slider .splide__slide.is-active {
  opacity: 1;
  border: none;
}

.match-main-slider .splide__arrows,
.match-main-slider .splide__pagination,
.match-thumb-slider .splide__arrows,
.match-thumb-slider .splide__pagination {
  display: none;
}

/* -------------------------
独占配信
------------------------- */
.video-distribution {
  margin-block-end: 36px;
}

/* -------------------------
10%オフ
------------------------- */
.ticket-off {
  background-image: url(../images/venue-ticket-bg.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
.ticket-off__inner {
  padding-block: 40px;
}

/* -------------------------
対戦カード
------------------------- */
.card {
  padding: 42px 0 60px 0;
  background-image: url(../images/card-bg.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--color-black);
}
.card__title {
  margin-bottom: 22px;
}

.swiper-container {
  position: relative;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -19px;
}

.swiper-pagination-bullet {
  background-color: var(--color-white);
  opacity: 0.5;
}
.swiper-pagination-bullet-active {
  background-color: var(--color-white);
  opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
  height: 25px;
  width: 25px;
  top: var(--swiper-navigation-top-offset, 58%);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  height: 25px;
  margin: auto;
  width: 25px;
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 10px);
}
.swiper-button-prev::after {
  background-image: url(../images/icon-arrow-circle-red.png);
}

.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 10px);
}
.swiper-button-next::after {
  background-image: url(../images/icon-arrow-circle-red.png);
  transform: scale(-1, 1);
}

/* -------------------------
チケット購入
------------------------- */
.ticket {
  background-image: url(../images/bg-yellow.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 20px 30px;
}
.ticket__title {
  padding: 10px 0;
  background: linear-gradient(180deg, #b89221 0%, #fce184 49.5%, #b89221 100%);
  text-align: center;
}
.ticket__title img {
  width: 62%;
}
.ticket .ticket-card {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
  color: var(--color-white);
  outline: solid 3px var(--color-yellow);
  border-radius: 6px;
  margin-block-start: 20px;
}
.ticket .ticket-card__list {
  background-color: var(--color-black);
  padding-inline: 6px;
}
.ticket .ticket-card__item {
  border-bottom: solid 1px #b8b8b8;
  padding-inline: 10px;
}
.ticket .ticket-card__item:first-child {
  padding-block: 16px 10px;
}
.ticket .ticket-card__item:nth-child(2) {
  padding-block: 14px 10px;
}
.ticket .ticket-card__item:last-child {
  padding-block: 21px 10px;
  border-bottom: none;
}
.ticket .ticket-card__item:last-child .ticket-card__head {
  margin-bottom: 23px;
}
.ticket .ticket-card__item:last-child .ticket-card__notes.first {
  margin-bottom: 35px;
}
.ticket .ticket-card__item:last-child .ticket-card__button {
  margin-bottom: 10px;
}
.ticket .ticket-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 10px;
}
.ticket .ticket-card__name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin-block-start: 24px;
}
.ticket .ticket-card__name .normal {
  font-size: 14px;
  font-weight: 400;
}
.ticket .ticket-card__price {
  width: 38%;
}
.ticket .ticket-card__notes {
  color: #bbbbbb;
  line-height: 1.7;
  font-size: clamp(0.625rem, -0.261rem + 3.64vw, 0.875rem);
  letter-spacing: 0.05em;
}
.ticket .ticket-card__notes.first {
  margin-bottom: 10px;
}
.ticket .ticket-card__button {
  margin-bottom: 19px;
}

/* -------------------------
会場チケット
------------------------- */
.venue-ticket {
  background-image: url(../images/venue-ticket-bg.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
.venue-ticket__inner {
  padding-block: 35px;
}
.venue-ticket__button {
  padding-inline: 18px;
}
.venue-ticket__button--general {
  margin-block-end: 25px;
}
.venue-ticket__cta {
  padding-inline: 8px;
  display: block;
  transition: 0.3s ease;
}
.venue-ticket__cta:hover {
  opacity: 0.7;
}
.venue-ticket__map {
  background-color: var(--color-white);
  color: var(--color-red);
  outline: solid 2px var(--color-red);
  font-size: 15px;
  font-weight: 600;
  padding-block: 7px;
  line-height: 1;
  text-align: center;
  display: block;
  width: 95%;
  margin: 25px auto;
  transition: 0.3s ease;
}
.venue-ticket__map:hover {
  opacity: 0.7;
}
.venue-ticket__cta-head {
  margin-block-end: 15px;
}
.venue-ticket__title {
  margin-block-end: 25px;
}
.venue-ticket__text {
  padding-inline: 6px;
}
.venue-ticket .dialog__inner {
  border-radius: 0;
  border: none;
  padding: 0;
}
.venue-ticket .dialog__open--inner {
  width: 100%;
  padding: 0;
  overflow: visible;
}
.venue-ticket .js-dialog-close {
  top: -17px;
  right: -10px;
}

/*----------------------------------------------------------*/
/* モーダルウインドウ Slide In */
/*----------------------------------------------------------*/
.dialog__open--inner {
  position: relative;
  background-color: transparent;
  width: 89%;
  padding: 40px 14px 10px 14px;
}

@media screen and (min-width: 767px) {
  .dialog__open--inner {
    max-width: 400px;
  }
}
.dialog__inner {
  text-align: center;
  padding: 127px 10px 19px 10px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border: solid 7px #d40201;
  border-radius: 30px;
  position: relative;
}
.dialog .ticket-card__head {
  display: flex;
  align-items: center;
}
.dialog .ticket-card__price {
  max-width: 140px;
  flex-shrink: 0;
}
.dialog .ticket-card__name {
  flex-grow: 1;
  font-weight: 600;
}
.dialog .ticket-card__item {
  border-bottom: solid 1px var(--color-white);
}
.dialog .ticket-card__item:first-child {
  padding-block-end: 20px;
}
.dialog .ticket-card__item:last-child {
  margin-block-start: 20px;
  border-bottom: none;
}
.dialog .ticket-card__lead {
  color: var(--color-white);
  background-color: var(--color-red);
  border-radius: 100vw;
  font-size: clamp(0.75rem, -0.136rem + 3.64vw, 1rem);
  font-weight: bold;
  text-align: center;
  display: inline-block;
  padding: 0.2rem 0;
  width: 100%;
  margin-bottom: 3px;
}
.dialog .ticket-card__head {
  margin-bottom: 20px;
}
.dialog .ticket-card__button {
  font-size: 17px;
  display: inline-block;
  width: 88%;
  padding: 1.1rem 0;
  font-weight: bold;
  color: var(--color-red);
  border-radius: 100vw;
  font-weight: 900;
  background-color: var(--color-white);
  position: relative;
}
.dialog .ticket-card__button::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 10px;
  right: 19%;
  top: 50%;
  transform: translateY(-50%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%); /* Safari 用 */
  background: #d40201;
}
.dialog .ticket-card__detail {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 0px 4px #000000;
  padding: 37px 14px 30px 14px;
}
.dialog .ticket-card__title {
  margin-bottom: 20px;
}
.dialog .ticket-card__benefit {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dialog .ticket-card__benefit li {
  padding-left: 31px;
  position: relative;
  text-align: left;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.dialog .ticket-card__benefit li:before {
  content: "";
  width: 20px;
  height: 18px;
  background-image: url(../images/icon-check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 4px;
}

.modal-head {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  max-width: 310px;
}

.dialog_inner .ticket-fee-box-box {
  margin-bottom: 0;
  gap: 13px;
}

.js-dialog-close {
  position: absolute;
  top: 30px;
  right: 0;
  width: 41px;
  height: 41px;
  z-index: 1;
}

/* 本体 */
#js-dialog-1 {
  opacity: 0;
  transition: opacity 0.24s ease, transform 0.28s ease;
}

/* open になったら最終状態へ */
#js-dialog-1[open] {
  opacity: 1;
}
@starting-style {
  #js-dialog-1[open] {
    opacity: 0;
  }
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.6);
}

/* -------------------------
フッター
------------------------- */
.footer {
  background: rgba(0, 0, 0, 0.3);
  color: var(--color-white);
  letter-spacing: 0.07em;
}
.footer__inner {
  padding: 23px 10px;
}
.footer__head {
  text-align: center;
  margin-bottom: 23px;
}
.footer__logo {
  margin-bottom: 8px;
}
.footer__date {
  color: var(--color-white);
  font-size: 36px;
  font-weight: 900;
  margin-bottom: -2px;
}
.footer__time {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 9px;
}
.footer__schedule {
  font-size: 10px;
  margin-bottom: 16px;
}
.footer__schedule, .footer__notes {
  color: var(--color-white);
}
.footer__notes {
  text-align: left;
  font-size: 11px;
  line-height: 1.8;
  padding-inline: 10px;
}
.footer__summary {
  padding: 0 10px;
  margin-bottom: 29px;
}
.footer__summary dl {
  margin-bottom: 20px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.footer__summary dt {
  margin-block-start: 30px;
  margin-bottom: 8px;
  font-weight: bold;
}
.footer__summary dt + dd {
  margin-block-end: 10px;
}
.footer__summary dd {
  line-height: 1.75;
}
.footer__summary dd .small {
  font-size: 10px;
  margin-block: 8px;
}
.footer__text {
  padding-top: 20px;
  border-top: solid 1px var(--color-white);
  line-height: 1.8;
  letter-spacing: 0.1rem;
  font-feature-settings: "palt";
}
.footer__text a {
  text-decoration: underline;
}
.footer__privacy {
  font-size: 10px;
  display: block;
  text-align: center;
}/*# sourceMappingURL=style.css.map */