@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;
}

@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: 16px;
}

main {
  position: relative;
}

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

/* -------------------------
ボタン
------------------------- */
.cta__button {
  cursor: pointer;
  transition: 0.3s ease;
  display: block;
  margin: 0 auto;
  position: relative;
  transition: 0.3s ease;
  border-radius: 100vmax;
  width: 100%;
  text-align: center;
  padding-block: 20px;
}
.cta__button:hover {
  transform: translateY(-15px);
}
.cta__button--shadow {
  filter: drop-shadow(0px 0px 15px #9f7b47);
}
.cta__button--gold {
  background-image: url(../images/cta-bg-gold.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-block: 10px;
  outline: solid 1px #DFC5A5;
  width: 90%;
  margin-inline: auto;
}
.cta__button--gold img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 243px;
}
.cta__button--gold-02 {
  background-image: url(../images/cta-bg-gold-02.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-block: 22px;
  color: var(--color-black);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  outline: solid 2px #DFC5A5;
  letter-spacing: 0.05rem;
  filter: drop-shadow(0px 4px 4px #A78711);
  text-shadow: 0px 4px 10px #FFFFFF;
}
.cta__button--gold-02 .text {
  display: inline-block;
  margin-inline-start: 8px;
}
.cta__button--gold-02 .circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 4px;
  background-color: var(--color-black);
  width: 63px;
  height: 63px;
  border-radius: 50%;
  text-align: center;
  align-content: center;
  color: var(--color-white);
  font-weight: 600;
  line-height: 1.2;
  font-size: 14px;
  text-shadow: none;
}
.cta__button--gold-02:before {
  content: "";
  width: 22px;
  height: 11px;
  background-image: url(../images/icon-arrow-black.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
}
.cta__button--off:after {
  content: "";
  width: 93px;
  height: 40px;
  background-image: url(../images/10off.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
}
.cta__button--1520off:after {
  content: "";
  width: 218px;
  height: 37px;
  background-image: url(../images/1520off.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: -21px;
  left: 50%;
  transform: translateX(-50%);
}
.cta__button--red {
  background-image: url(../images/cta-bg-red.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05rem;
  text-shadow: 0px 0px 4px #8A0303;
}
.cta__button--red .text {
  display: inline-block;
  margin-inline-start: -34px;
}
.cta__button--red:before {
  content: "";
  width: 22px;
  height: 11px;
  background-image: url(../images/icon-arrow-white.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
}
.cta:hover {
  opacity: 0.7;
}

/* -------------------------
タイトル
------------------------- */
.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: 37px;
}

/* -------------------------
左右
------------------------- */
.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 {
  cursor: pointer;
  font-weight: 500;
  color: var(--color-white);
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.74);
  transition: 0.3s ease;
  font-size: 15px;
  line-height: 1.8;
}
.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: flex-start;
  padding-block: 16px;
  padding-inline: 11px 20px;
  position: relative;
}
.header__logo {
  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: 80px;
  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,
.header .header-menu__item p {
  cursor: pointer;
  display: block;
  padding-block: 16px;
}

/* -------------------------
FV
------------------------- */
.fv {
  position: relative;
  background-color: var(--color-white);
}
.fv__title {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  opacity: 0;
}
.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);
  }
}
.fv-bottom {
  padding-inline: 12px;
  padding-block: 20px 29px;
  text-align: center;
}
.fv-bottom__logo {
  margin-block-end: 17px;
}

/* -------------------------
イントロダクション
------------------------- */
.introduction {
  display: none;
  padding-block: 4px;
  background-image: url(../images/introduction-bg.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--color-white);
}
.introduction__title {
  display: inline-block;
}
.introduction__subtitle {
  color: var(--color-white);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.5;
  margin-block-start: 20px;
}
.introduction__inner {
  padding-block: 18px 37px;
  padding-inline: 16px;
}
.introduction__text {
  text-shadow: 0px 0px 4px #000000;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  margin-block-start: 15px;
}

/* -------------------------
対戦カード
------------------------- */
.match-card {
  margin-block: 30px 20px;
}
.match-card__inner {
  text-align: center;
}
.match-card__button {
  width: 87%;
  display: block;
  margin: 0 auto;
}
.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 0;
}
.match-card__progress {
  margin-bottom: 26px;
}
.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: 4px;
  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-red);
  transition: width 0.1s linear;
}
.match-card .match-main-slider {
  margin-bottom: 23px;
}
.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;
}

/* -------------------------
特典
------------------------- */
.benefit {
  background-image: url(../images/benefit-bg.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
.benefit__title {
  padding-inline: 12px;
}
.benefit__inner {
  padding-block-start: 3px;
}
.benefit__list {
  margin-block-start: 14px;
}
.benefit__item {
  position: relative;
}
.benefit__item:first-child {
  padding-block-end: 12px;
}
.benefit__item:first-child img {
  position: relative;
  z-index: 2;
}
.benefit__item:nth-child(2) {
  background-color: #B80A08;
}
.benefit__item:nth-child(2) img {
  margin-block-start: -20px;
  position: relative;
  z-index: 2;
}
.benefit__item:nth-child(2):before, .benefit__item:nth-child(2):after {
  position: absolute;
  content: "";
  height: 70px;
  background-color: #B80A08;
  display: block;
  width: 100%;
  left: 0;
  z-index: 1;
}
.benefit__item:nth-child(2):before {
  top: -69px;
  clip-path: polygon(0 99%, 100% 0, 100% 100%, 0% 100%);
}
.benefit__item:nth-child(2):after {
  bottom: -69px;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0% 100%);
}
.benefit__item:last-child {
  background-image: url(../images/benefit-03-bg.webp);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.benefit__text {
  padding-inline: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.5;
  margin-block-start: 8px;
  letter-spacing: 0.05rem;
}

/* -------------------------
マップ
------------------------- */
.map {
  background-color: var(--color-black);
  position: relative;
}
.map:before {
  content: "";
  width: 100%;
  height: 110px;
  background-image: url(../images/map-bg.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.map__inner {
  padding-block: 28px 24px;
  text-align: center;
}
.map__cta {
  margin-block-start: 30px;
}
.map__title {
  width: 55%;
  margin-inline: auto;
}
.map__image {
  padding-block: 20px 10px;
}
.map__annotation {
  padding-block-start: 35px;
  font-size: 10px;
  color: var(--color-white);
  line-height: 1.4;
  text-align: left;
  font-weight: 400;
  text-shadow: 0px 1px 9px rgba(0, 0, 0, 0.82);
}

/* -------------------------
特典
------------------------- */
.benefits {
  padding-block-end: 30px;
}
.benefits__inner {
  background-color: var(--color-black);
  padding-block: 35px;
  padding-inline: 15px;
  outline: solid 3px var(--color-red);
}
.benefits__title {
  font-weight: 900;
  font-size: 21px;
  line-height: 135%;
  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;
}
.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-block-start: 20px;
}
.benefits__item {
  color: var(--color-white);
  position: relative;
  padding-left: 31px;
  font-size: 15px;
  letter-spacing: 0.01rem;
  line-height: 1.5;
}
.benefits__item:before {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  width: 20px;
  height: 20px;
  display: block;
  background-image: url(../images/icon-check.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.benefits__item.paragraph:before {
  top: 5%;
}

/* -------------------------
アクセス
------------------------- */
.access {
  position: relative;
  background-color: var(--color-black);
}
.access:after {
  position: absolute;
  content: "";
  height: 70px;
  background-color: var(--color-black);
  display: block;
  width: 100%;
  left: 0;
  z-index: 1;
  top: -69px;
  clip-path: polygon(0 99%, 100% 0, 100% 100%, 0% 100%);
}
.access::before {
  content: "";
  width: 100%;
  height: 206px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/access-bg.webp);
}
.access__inner {
  padding-block: 21px;
}
.access__title {
  width: 90%;
  margin-inline: auto;
}
.access__image {
  margin-block-start: 30px;
}
.access__cta {
  margin-block-start: 28px;
}
.access .access-card {
  background-color: #eaeaea;
  padding-block: 23px 15px;
  padding-inline: 12px;
  display: flex;
  flex-direction: column;
}
.access .access-card__head {
  display: flex;
  align-items: center;
}
.access .access-card__right {
  font-size: 15px;
  font-weight: bold;
  align-content: center;
  display: inline-block;
  border-right: solid 1px #bbb;
  text-align: center;
  width: 76px;
  flex-shrink: 0;
}
.access .access-card__address {
  font-size: 15px;
  display: inline-block;
  font-feature-settings: "palt";
  align-content: center;
  padding-inline-start: 20px;
}
.access .access-card__button {
  margin-block-start: 18px;
  width: 100%;
  text-align: center;
  background-color: var(--color-black);
  color: var(--color-red);
  display: flex;
  gap: 9px;
  padding-block: 13px;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.access .access-card__button:hover {
  opacity: 0.7;
}
.access .access-card__button p {
  font-size: 15px;
  font-weight: bold;
  color: var(--color-white);
}

/* -------------------------
対戦カード
------------------------- */
.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 {
  transform: translateY(-20px);
}
.ticket__title {
  padding: 13px 0;
  border-bottom: solid 3px #B89221;
  background: linear-gradient(180deg, #b89221 0%, #fce184 49.5%, #b89221 100%);
  text-align: center;
}
.ticket__title img {
  width: 62%;
}

.ticket-card {
  border-radius: 5px;
  outline: solid 3px var(--color-yellow);
  margin-block-start: 20px;
  background: linear-gradient(180deg, #B89221 0%, #FCE184 49.5%, #B89221 100%);
  padding-block-end: 30px;
}
.ticket-card__list {
  padding-inline: 13px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ticket-card__name {
  text-align: center;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.5;
}
.ticket-card__notes {
  font-size: 10px;
  line-height: 1.5;
  padding-inline: 20px;
  text-align: left;
  margin-block-start: 21px;
  letter-spacing: 0.05rem;
}
.ticket-card__cta {
  margin-block-start: 30px;
}
.ticket-card__price {
  margin-block-start: 16px;
  padding-inline: 28px;
}
.ticket-card__type {
  font-size: 14px;
  text-align: center;
  display: inline-block;
  font-weight: 500;
  line-height: 1.5;
  padding-block: 4px;
  padding-inline: 10px;
  color: var(--color-black);
  outline: solid 1px var(--color-black);
  margin: 0 auto;
}
.ticket-card__type--new {
  color: var(--color-red);
  outline: solid 1px var(--color-red);
}
.ticket-card__annotation {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 2;
  padding-inline-end: 13px;
  text-align: right;
}
.ticket-card__item {
  background-color: var(--color-white);
  padding-inline: 10px;
  position: relative;
  padding-block: 24px;
  text-align: center;
}
.ticket-card__item .cta__button--gold-02 {
  font-size: 15px;
}
.ticket-card__item:first-child .ticket-card__cta {
  margin-block-start: 48px;
}
.ticket-card__item:first-child:before {
  content: "おすすめ";
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #E10000;
  color: var(--color-white);
  font-size: 11px;
  align-content: center;
  position: absolute;
  top: -21px;
  left: -6px;
  text-align: center;
}
.ticket-card__item__name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin-block-start: 24px;
  color: pink;
}
.ticket-card__item__name .normal {
  font-size: 14px;
  font-weight: 400;
}
.ticket-card__item__button {
  margin-bottom: 19px;
}

/* -------------------------
会場チケット
------------------------- */
.venue-ticket {
  padding-top: 45px;
  background-color: var(--color-black);
}
.venue-ticket__title {
  margin-bottom: 25px;
}
.venue-ticket__cta {
  padding: 25px 20px;
}
.venue-ticket__cta figure {
  margin-bottom: 10px;
}
.venue-ticket__cta:first-of-type {
  padding-bottom: 0;
}
.venue-ticket__button {
  position: relative;
}
.venue-ticket__button--app {
  font-size: clamp(1.063rem, -0.045rem + 4.55vw, 1.375rem);
}

/*----------------------------------------------------------*/
/* モーダルウインドウ 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 12px 19px 12px;
  text-align: center;
  background-color: #000;
  border: solid 7px #d40201;
  border-radius: 30px;
  position: relative;
}
.dialog__button {
  position: relative;
  background-color: var(--color-white);
  border-radius: 100vmax;
  color: var(--color-red);
  font-size: 17px;
  width: 88%;
  padding-block: 17px;
  display: inline-block;
  font-weight: 900;
  margin-block-start: 8px;
}
.dialog__button:after {
  content: "";
  clip-path: polygon(0% 100%, 0% 0%, 100% 50%);
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 55px;
  background-color: var(--color-red);
}
.dialog .dialog-benefit {
  margin-block-start: 16px;
  background-color: #333;
  padding-block: 32px;
  padding-inline: 8px;
}
.dialog .dialog-benefit__title {
  display: block;
  width: 65%;
  margin-inline: auto;
}
.dialog .dialog-benefit ul {
  margin-block-start: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.dialog .dialog-benefit ul li {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  position: relative;
  padding-inline-start: 26px;
  text-align: left;
}
.dialog .dialog-benefit ul 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;
  top: 0;
  left: 0;
}

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

.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;
  }
}

#js-dialog-1::backdrop {
  background: rgba(0, 0, 0, 0.6);
}

/* -------------------------
フッター
------------------------- */
.footer {
  background-image: url(../images/footer-bg.webp);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-white);
  letter-spacing: 0.07em;
}
.footer__inner {
  padding-block-start: 71px;
}
.footer__date {
  width: 84%;
  margin-inline: auto;
  margin-block-start: -10px;
}
.footer__head {
  text-align: center;
  margin-bottom: 6px;
}
.footer__notes {
  color: var(--color-white);
}
.footer__notes {
  text-align: left;
  font-size: 11px;
  line-height: 1.8;
  margin-block-start: 16px;
  padding-inline: 19px;
}
.footer__summary {
  padding: 0 10px;
  margin-bottom: 29px;
  padding-inline: 19px;
}
.footer__summary dl {
  margin-bottom: 20px;
}
.footer__summary dt {
  margin-bottom: 8px;
  font-weight: bold;
}
.footer__summary dd {
  line-height: 1.75;
}
.footer__summary dd .small {
  font-size: 10px;
}
.footer__text {
  font-size: 14px;
  padding-top: 20px;
  line-height: 1.8;
  letter-spacing: 0.05rem;
  font-feature-settings: "halt";
}
.footer__text a {
  text-decoration: underline;
}
.footer__privacy {
  font-size: 10px;
  display: block;
  background-color: var(--color-black);
  text-align: center;
  padding-block: 10px;
}/*# sourceMappingURL=style.css.map */