/* ---------------------------------------------------
reset
---------------------------------------------------- */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

body, html {
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, p, figure, picture, blockquote, ul, li, dl, dd {
  margin: 0;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 { /*text-wrap:balance;*/
  text-align: left;
}

i, s {
  font-style: normal;
}

a:not([class]) {
  color: currentColor;
}

img, figure, picture {
  display: block;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

button {
  all: unset;
  display: revert;
}

table {
  border-collapse: collapse;
}

textarea {
  white-space: revert;
}

/* ---------------------------------------------------
mixin
---------------------------------------------------- */
/*-------------------------------------------
config
-------------------------------------------*/
/* color */
/* width */
/*-------------------------------------------
base
-------------------------------------------*/
html {
  font-size: clamp(15px, 1.5vw, 16px);
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  position: relative;
  text-align: center;
  color: #000;
  font-size: 1rem;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.65;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  min-height: 100vh;
}

.loadering {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  opacity: 1;
  pointer-events: none;
  -webkit-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
}
.loadering.hide {
  opacity: 0;
}

.head {
  margin: 0 auto 3em;
}
@media screen and (max-width: 768px) {
  .head {
    margin: 0 auto 2em;
  }
}
.head img {
  width: 100%;
}

.shead {
  color: #000;
  font-size: 3rem;
  font-family: "changeling-neo-stencil", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.1em;
  margin: 0 auto 2em;
}
@media screen and (max-width: 1024px) {
  .shead {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .shead {
    font-size: 1.6rem;
  }
}

.readText01 {
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.5em;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 1024px) {
  .readText01 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .readText01 {
    font-size: 1rem;
    letter-spacing: 0.4em;
  }
}

.readText02 {
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 1024px) {
  .readText02 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .readText02 {
    font-size: 1rem;
  }
}

a {
  opacity: 1;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

.center {
  text-align: center;
}

.bold {
  font-weight: 700;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn > a {
  width: 800px;
  display: grid;
  place-items: center;
  background-image: url(../img/bg_button01_pc.webp);
  background-size: 100%;
  aspect-ratio: 885/75;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .btn > a {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .btn > a {
    width: 100%;
    background-image: url(../img/bg_button01_sp.webp);
    aspect-ratio: 750/108;
  }
}
.btn > a span {
  color: #000;
  font-size: 2rem;
  font-family: "changeling-neo-stencil", sans-serif;
  font-weight: 700;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 1024px) {
  .btn > a span {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .btn > a span {
    font-size: 1.3rem;
    letter-spacing: 0.2rem;
  }
}
.btn.is-inactive {
  pointer-events: none;
  opacity: 0.3;
}

.fadein {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
  will-change: opacity, transform;
}
.fadein.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fadein-hero {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
  will-change: opacity, transform;
}
.fadein-hero.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.forSP {
  display: none;
}
@media screen and (max-width: 768px) {
  .forSP {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .forPC {
    display: none;
  }
}

.forTB, .forSP, .forTBSP {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  .forTB, .forTBSP {
    display: block !important;
  }
  .forSP, .forPC {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .forSP, .forTBSP {
    display: block !important;
  }
  .forTB, .forPC, .forPCTB {
    display: none !important;
  }
}
.prtct {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}

/*-------------------------------------------
common
-------------------------------------------*/
#wrapper {
  position: relative;
  text-align: center;
  z-index: 0;
}

#main {
  max-width: 1440px;
  margin-inline: auto;
}
@media (max-width: 1488px) {
  #main {
    padding-inline: 24px;
  }
}
@media screen and (max-width: 768px) {
  #main {
    padding-inline: 30px;
  }
}

section {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
  scroll-margin-top: 120px;
  margin-inline: calc(50% - 50vw);
  max-width: 100vw;
  padding-inline: calc(50vw - 50%);
}
@media screen and (max-width: 1024px) {
  section {
    padding-top: 100px;
    padding-bottom: 100px;
    scroll-margin-top: 100px;
  }
}
@media (max-width: 520px) {
  section {
    padding-top: 60px;
    padding-bottom: 60px;
    scroll-margin-top: 60px;
  }
}

/*-------------------------------------------
fixed background
-------------------------------------------*/
.bg-fixed-wrap .bg-fixed {
  position: fixed;
  top: -100px;
  left: -100px;
  width: calc(100% + 200px);
  height: calc(100% + 200px);
  min-height: 200%;
  background-image: url(../img/bg_fixed01.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .bg-fixed-wrap .bg-fixed {
    background-image: url(../img/bg_fixed01_sp.webp);
    background-repeat: repeat-y;
  }
}

/*-------------------------------------------
header
-------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}
#header .drawer_hidden {
  display: none;
}
#header .drawer_open {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70px;
  height: 70px;
  z-index: 100;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  #header .drawer_open {
    width: 60px;
    height: 60px;
  }
}
#header .drawer_open span, #header .drawer_open span:before, #header .drawer_open span:after {
  position: absolute;
  content: "";
  display: block;
  background: #fff;
  width: 36px;
  height: 4px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
@media screen and (max-width: 1024px) {
  #header .drawer_open span, #header .drawer_open span:before, #header .drawer_open span:after {
    width: 30px;
    height: 3px;
  }
}
#header .drawer_open span:before {
  bottom: 12px;
}
@media screen and (max-width: 1024px) {
  #header .drawer_open span:before {
    bottom: 10px;
  }
}
#header .drawer_open span:after {
  top: 12px;
}
@media screen and (max-width: 1024px) {
  #header .drawer_open span:after {
    top: 10px;
  }
}
#header #drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}
#header #drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  background: #fff;
  -webkit-transform: rotate(45deg) scale(0.9);
          transform: rotate(45deg) scale(0.9);
}
#header #drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  background: #fff;
  -webkit-transform: rotate(-45deg) scale(0.9);
          transform: rotate(-45deg) scale(0.9);
}
#header .header-nav {
  position: fixed;
  background: url(../img/bg_header01.webp) no-repeat right bottom;
  background-size: cover;
  width: 26em;
  height: 100vh;
  min-height: 100dvh;
  top: 0;
  right: -100%;
  z-index: 99;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 50px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 1024px) {
  #header .header-nav {
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  #header .header-nav {
    width: 90%;
  }
}
#header .header-nav > figure {
  margin: 0 0 50px;
}
#header .header-nav > figure img {
  width: 110px;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  #header .header-nav > figure img {
    width: 90px;
  }
}
@media screen and (max-width: 768px) {
  #header .header-nav > figure img {
    width: 80px;
  }
}
#header .header-nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2em;
}
@media screen and (max-width: 768px) {
  #header .header-nav > ul {
    gap: 1.5em;
  }
}
#header .header-nav > ul > li {
  text-align: left;
}
#header .header-nav > ul > li a {
  position: relative;
  display: inline-block;
  color: #000;
  font-family: "changeling-neo-stencil", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  #header .header-nav > ul > li a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  #header .header-nav > ul > li a {
    font-size: 1.3rem;
  }
}
#header .header-nav > ul > li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: calc(100% + 1.5em);
  height: 4px;
  background: #000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1024px) {
  #header .header-nav > ul > li a::after {
    display: none;
  }
}
#header .header-nav > ul > li a:hover, #header .header-nav > ul > li a:hover::after {
  opacity: 1;
}
#header .header-nav > ul > li a:active {
  color: #fff;
}
#header .header-nav > ul > li a:active::after {
  background: #fff;
}
#header .header-nav > ul > li.is-inactive > a {
  pointer-events: none;
  opacity: 0.4;
}
#header #drawer_input:checked ~ .header-nav {
  right: 0;
}

/*-------------------------------------------
kv
-------------------------------------------*/
#kv {
  padding: 0;
  background: #000;
}
#kv .imgbox {
  position: relative;
  width: 100vw;
}
#kv .imgbox .kv-bg {
  width: 100%;
  max-width: 100%;
  display: block;
}
#kv .imgbox .kv-logo {
  position: absolute;
  width: 87vw;
  top: 37.6vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: opacity 1.5s ease;
  transition: opacity 1.5s ease;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
#kv .imgbox.is-show .kv-logo {
  opacity: 1;
}

/*-------------------------------------------
about
-------------------------------------------*/
#about {
  background-image: url(../img/bg_about01_pc.webp);
  background-size: cover;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #about {
    background-image: url(../img/bg_about01_sp.webp);
  }
}
#about .head {
  width: 72.4vw;
}
@media screen and (max-width: 768px) {
  #about .head {
    width: 86vw;
  }
}

/*-------------------------------------------
movie
-------------------------------------------*/
#movie {
  background-image: url(../img/bg_movie01_pc.webp);
  background-size: cover;
  padding-top: 45px;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #movie {
    background-image: url(../img/bg_movie01_sp.webp);
  }
}
#movie .head {
  width: 38.5vw;
  margin: 0 auto 1em;
}
@media screen and (max-width: 768px) {
  #movie .head {
    width: 63.5vw;
    margin: 0 auto 1.5em;
  }
}
#movie .movie-wrap {
  width: 800px;
  text-align: center;
  padding: 0;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  #movie .movie-wrap {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #movie .movie-wrap {
    width: 100%;
  }
}
#movie .movie-wrap .movie-inner {
  padding-top: 56.25%;
  position: relative;
  height: 0;
  overflow: hidden;
}
#movie .movie-wrap .movie-inner > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*-------------------------------------------
schedule
-------------------------------------------*/
#schedule .head {
  width: 59.1vw;
}
@media screen and (max-width: 768px) {
  #schedule .head {
    width: 79.5vw;
  }
}

.js-swiper-schedule {
  position: relative;
  overflow: hidden;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .js-swiper-schedule {
    --swiper-navigation-size: 30px;
    margin-bottom: 40px;
    overflow: visible;
  }
}
.js-swiper-schedule .swiper-wrapper {
  width: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .js-swiper-schedule .swiper-wrapper {
    width: 90%;
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .js-swiper-schedule .swiper-wrapper {
    width: 100%;
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .js-swiper-schedule .swiper-wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 0;
    margin: 0 auto 30px;
  }
}
.js-swiper-schedule .swiper-wrapper .swiper-slide.card {
  width: calc((100% - 60px) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px;
  background: url(../img/bg_card01.webp) no-repeat;
  background-size: 100%;
  color: #000;
  aspect-ratio: 430/549;
  z-index: 0;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .js-swiper-schedule .swiper-wrapper .swiper-slide.card {
    width: calc((100% - 40px) / 3);
    padding: 30px 15px;
  }
}
@media screen and (max-width: 768px) {
  .js-swiper-schedule .swiper-wrapper .swiper-slide.card {
    width: calc((100% - 0.8px) / 1.04);
    padding: 30px 20px;
  }
}
.js-swiper-schedule .swiper-wrapper .swiper-slide.card::before, .js-swiper-schedule .swiper-wrapper .swiper-slide.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 100%;
  background-repeat: no-repeat;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.js-swiper-schedule .swiper-wrapper .swiper-slide.card::before {
  background-image: url(../img/bg_card01.webp);
  opacity: 1;
}
.js-swiper-schedule .swiper-wrapper .swiper-slide.card::after {
  background-image: url(../img/bg_card01_hv.webp);
  opacity: 0;
}
.js-swiper-schedule .swiper-wrapper .swiper-slide.card:hover::after {
  opacity: 1;
}
.js-swiper-schedule .swiper-wrapper .swiper-slide.card .vs {
  height: 72px;
  -webkit-transform: translateX(calc(-50% + 40px));
          transform: translateX(calc(-50% + 40px));
  margin: 10px auto 30px;
}
@media screen and (max-width: 1024px) {
  .js-swiper-schedule .swiper-wrapper .swiper-slide.card .vs {
    height: 52px;
    -webkit-transform: translateX(calc(-50% + 30px));
            transform: translateX(calc(-50% + 30px));
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 768px) {
  .js-swiper-schedule .swiper-wrapper .swiper-slide.card .vs {
    height: 72px;
    -webkit-transform: translateX(calc(-50% + 40px));
            transform: translateX(calc(-50% + 40px));
    margin: 10px auto 20px;
  }
}
.js-swiper-schedule .swiper-wrapper .swiper-slide.card .vs img {
  width: auto;
  height: 100%;
}
.js-swiper-schedule .swiper-wrapper .swiper-slide.card ul {
  margin-bottom: 20px;
}
.js-swiper-schedule .swiper-wrapper .swiper-slide.card ul li {
  display: grid;
  grid-template-columns: 35% 15% 8% 42%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.js-swiper-schedule .swiper-wrapper .swiper-slide.card ul li span {
  font-family: "hyperspace-race-variable", sans-serif;
  font-variation-settings: "ital" 0, "wdth" 100, "wght" 500;
  line-height: 1;
  font-size: clamp(20px, 1.6666666667vw, 28px);
}
@media screen and (max-width: 768px) {
  .js-swiper-schedule .swiper-wrapper .swiper-slide.card ul li span {
    font-size: 1.5rem;
  }
}
.js-swiper-schedule .swiper-wrapper .swiper-slide.card ul li span.date {
  font-size: clamp(32px, 3.1944444444vw, 47px);
}
@media screen and (max-width: 768px) {
  .js-swiper-schedule .swiper-wrapper .swiper-slide.card ul li span.date {
    font-size: 3rem;
  }
}
.js-swiper-schedule .swiper-wrapper .swiper-slide.card ul li + li {
  margin-top: 0.5em;
}
.js-swiper-schedule .swiper-wrapper .swiper-slide.card .buttons {
  margin-top: auto;
  text-align: right;
  line-height: 0;
}
.js-swiper-schedule .swiper-wrapper .swiper-slide.card .buttons a {
  display: inline-block;
  width: 65%;
}
.js-swiper-schedule .swiper-wrapper .swiper-slide.card.inactive {
  cursor: default;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .js-swiper-schedule .swiper-wrapper .swiper-slide.card.inactive {
    pointer-events: all;
  }
}
.js-swiper-schedule .swiper-wrapper .swiper-slide.card.inactive .buttons a {
  display: none;
}
.js-swiper-schedule .swiper-pagination {
  display: none;
}
@media screen and (max-width: 768px) {
  .js-swiper-schedule .swiper-pagination {
    display: block;
    position: relative;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .js-swiper-schedule .swiper-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border: #fff 1px solid;
    background: transparent;
    opacity: 1;
    margin: 0 15px;
  }
}
.js-swiper-schedule .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}
.js-swiper-schedule .swiper-button-prev, .js-swiper-schedule .swiper-button-next {
  top: 42%;
  color: #fff;
}
.js-swiper-schedule .swiper-button-prev {
  left: -25px;
}
.js-swiper-schedule .swiper-button-next {
  right: -25px;
}

/*-------------------------------------------
ticket
-------------------------------------------*/
#ticket .head {
  width: 41.6vw;
}
@media screen and (max-width: 768px) {
  #ticket .head {
    width: 70.4vw;
  }
}
#ticket .shead {
  margin-top: 2em;
}
#ticket .readText02 {
  margin-bottom: 4em;
}
@media screen and (max-width: 1024px) {
  #ticket .readText02 {
    margin-bottom: 3em;
  }
}

/*-------------------------------------------
uniform
-------------------------------------------*/
#uniform {
  background-image: url(../img/bg_uniform01_pc.webp);
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100vw;
  padding-top: 11vw;
}
@media screen and (max-width: 768px) {
  #uniform {
    background-image: url(../img/bg_uniform01_sp.webp);
    padding-top: 21.3vw;
  }
}
#uniform .head {
  width: 54.3vw;
}
@media screen and (max-width: 768px) {
  #uniform .head {
    width: 86.6vw;
  }
}
#uniform .uniform-wrap {
  margin-top: 56vw;
  margin-bottom: 3em;
}
@media (max-width: 1440px) {
  #uniform .uniform-wrap {
    margin-top: 60vw;
  }
}
@media screen and (max-width: 768px) {
  #uniform .uniform-wrap {
    margin-top: 116vw;
  }
}
#uniform .fadein {
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
#uniform .readText01 {
  line-height: 3;
  letter-spacing: 0.3em;
}
@media (max-width: 1200px) {
  #uniform .readText01 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1024px) {
  #uniform .readText01 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  #uniform .readText01 {
    font-size: 1rem;
    letter-spacing: 0.3em;
    margin-bottom: 3em;
  }
}
@media screen and (max-width: 1024px) {
  #uniform .uniImg {
    width: 100vw;
    max-width: none;
    margin-inline: calc(50% - 50vw);
  }
}
@media screen and (max-width: 768px) {
  #uniform .uniImg {
    padding: 0 10px;
  }
}

/*-------------------------------------------
event
-------------------------------------------*/
@media screen and (max-width: 768px) {
  #event {
    padding-inline: 15px;
  }
}
#event .head {
  width: 46.1vw;
}
@media screen and (max-width: 768px) {
  #event .head {
    width: 69vw;
  }
}
#event .event-wrap {
  margin-bottom: 5em;
}
@media screen and (max-width: 768px) {
  #event .event-wrap {
    margin-bottom: 3em;
  }
}

.cardList {
  width: 75%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .cardList {
    width: 90%;
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .cardList {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .cardList {
    gap: 10px;
  }
}
.cardList > li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  aspect-ratio: 430/549;
  padding: 30px;
  overflow: hidden;
  z-index: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .cardList > li {
    padding: 15px;
  }
}
.cardList > li::before, .cardList > li::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 100%;
  background-repeat: no-repeat;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.cardList > li::before {
  background-image: url(../img/bg_card01.webp);
  opacity: 1;
}
.cardList > li::after {
  background-image: url(../img/bg_card01_hv.webp);
  opacity: 0;
}
.cardList > li:hover::after {
  opacity: 1;
}
.cardList > li .image {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .cardList > li .image {
    margin-bottom: 3px;
  }
}
.cardList > li .image img {
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .cardList > li .image img {
    border-radius: 6px;
  }
}
.cardList > li .text {
  text-align: left;
}
.cardList > li .text .date {
  font-size: 1.3rem;
  font-family: "hyperspace-race-variable", sans-serif;
  font-variation-settings: "ital" 0, "wdth" 100, "wght" 500;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .cardList > li .text .date {
    font-size: 0.9rem;
  }
}
.cardList > li .text .ttl {
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .cardList > li .text .ttl {
    font-size: 0.7rem;
  }
}
.cardList > li .buttons {
  margin-top: auto;
  text-align: right;
  line-height: 0;
}
.cardList > li .buttons a {
  display: inline-block;
  width: 54%;
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  .cardList > li .buttons a {
    width: 60%;
  }
}

/*-------------------------------------------
guest
-------------------------------------------*/
@media screen and (max-width: 768px) {
  #guest {
    padding-inline: 15px;
  }
}
#guest .head {
  width: 48.1vw;
}
@media screen and (max-width: 768px) {
  #guest .head {
    width: 69.9vw;
  }
}

/*-------------------------------------------
goods / gourmet swiper
-------------------------------------------*/
.js-swiper {
  position: relative;
  --swiper-navigation-size: 40px;
  overflow: hidden;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .js-swiper {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .js-swiper {
    --swiper-navigation-size: 30px;
    overflow: visible;
    margin-bottom: 35px;
  }
}
.js-swiper .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .js-swiper .swiper-wrapper {
    padding-bottom: 30px;
  }
}
.js-swiper .swiper-wrapper .swiper-slide.card {
  width: calc((100% - 48px) / 5.2) !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 25px;
  background-image: url(../img/bg_card01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  color: #000;
  aspect-ratio: 430/549;
}
@media screen and (max-width: 1024px) {
  .js-swiper .swiper-wrapper .swiper-slide.card {
    width: calc((100% - 16px) / 3.2) !important;
    padding: 25px 20px;
  }
}
@media screen and (max-width: 768px) {
  .js-swiper .swiper-wrapper .swiper-slide.card {
    width: calc((100% - 12px) / 1.3) !important;
  }
}
.js-swiper .swiper-wrapper .swiper-slide.card.swiper-slide-active {
  width: calc((100% - 48px) / 5.2 * 1.2) !important;
  background-image: url(../img/bg_card01_hv.webp);
}
@media screen and (max-width: 1024px) {
  .js-swiper .swiper-wrapper .swiper-slide.card.swiper-slide-active {
    width: calc((100% - 16px) / 3.2 * 1.2) !important;
  }
}
@media screen and (max-width: 768px) {
  .js-swiper .swiper-wrapper .swiper-slide.card.swiper-slide-active {
    width: calc((100% - 12px) / 1.3 * 1.2) !important;
  }
}
.js-swiper .swiper-wrapper .swiper-slide.card .image {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .js-swiper .swiper-wrapper .swiper-slide.card .image {
    margin-bottom: 5px;
  }
}
.js-swiper .swiper-wrapper .swiper-slide.card .text {
  text-align: left;
}
.js-swiper .swiper-wrapper .swiper-slide.card .text .name {
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .js-swiper .swiper-wrapper .swiper-slide.card .text .name {
    font-size: 1rem;
  }
}
.js-swiper .swiper-wrapper .swiper-slide.card .text .price {
  font-size: 1.3rem;
  font-family: "hyperspace-race-variable", sans-serif;
  font-variation-settings: "ital" 0, "wdth" 100, "wght" 500;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .js-swiper .swiper-wrapper .swiper-slide.card .text .price {
    font-size: 1.2rem;
  }
}
.js-swiper .swiper-wrapper .swiper-slide.card .buttons {
  margin-top: auto;
  text-align: right;
  line-height: 0;
}
.js-swiper .swiper-wrapper .swiper-slide.card .buttons a {
  display: inline-block;
  width: 55%;
}
.js-swiper .swiper-pagination {
  display: block;
  position: relative;
  text-align: center;
}
.js-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  border: #fff 2px solid;
  background: transparent;
  opacity: 1;
  margin: 0 20px;
}
@media screen and (max-width: 1024px) {
  .js-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border-width: 1px;
    margin: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  .js-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 12px;
  }
}
.js-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}
.js-swiper .swiper-button-prev, .js-swiper .swiper-button-next {
  top: 42%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .js-swiper .swiper-button-prev {
    left: -25px;
  }
}
@media screen and (max-width: 768px) {
  .js-swiper .swiper-button-next {
    right: -25px;
  }
}

/*-------------------------------------------
goods
-------------------------------------------*/
#goods .head {
  width: 48.1vw;
}
@media screen and (max-width: 768px) {
  #goods .head {
    width: 72.8vw;
  }
}

/*-------------------------------------------
gourmet
-------------------------------------------*/
#gourmet .head {
  width: 60.1vw;
}
@media screen and (max-width: 768px) {
  #gourmet .head {
    width: 90.4vw;
  }
}

/*-------------------------------------------
playlist
-------------------------------------------*/
#playlist {
  background: #000;
}
#playlist .head {
  width: 40.8vw;
}
@media screen and (max-width: 1024px) {
  #playlist .head {
    width: 60vw;
  }
}
@media screen and (max-width: 768px) {
  #playlist .head {
    width: 73.3vw;
  }
}
#playlist .playlist-wrap .musicbox {
  width: 60%;
  height: 680px;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  #playlist .playlist-wrap .musicbox {
    width: 70%;
    height: 70vw;
  }
}
@media screen and (max-width: 768px) {
  #playlist .playlist-wrap .musicbox {
    width: 100%;
    height: 110vw;
  }
}

/*-------------------------------------------
coming soon
-------------------------------------------*/
.comingsoon {
  display: grid;
  place-items: center;
  aspect-ratio: 1920/520;
}
@media screen and (max-width: 768px) {
  .comingsoon {
    aspect-ratio: 375/150;
  }
}
.comingsoon p {
  font-size: clamp(24px, 3.6111111111vw, 46px);
  font-family: "changeling-neo-stencil", sans-serif;
  font-weight: 400;
  line-height: 1;
}

/*-------------------------------------------
footer
-------------------------------------------*/
#footer {
  position: relative;
  padding: 120px 20px 60px;
  text-align: center;
  color: #fff;
  background: #000;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  #footer {
    padding: 100px 20px 50px;
  }
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 60px 10px 90px;
  }
}
#footer .footer-mlogo {
  width: 765px;
  margin: 0 auto 8em;
}
@media screen and (max-width: 1024px) {
  #footer .footer-mlogo {
    width: 50vw;
    margin: 0 auto 6em;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer-mlogo {
    width: 75vw;
    margin: 0 auto 3em;
  }
}
#footer .footer-mlogo a {
  display: block;
}
#footer .footer-mlogo a img {
  width: 100%;
}
#footer .footer-sponsor {
  padding: 0 75px;
}
@media screen and (max-width: 1024px) {
  #footer .footer-sponsor {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer-sponsor {
    padding: 0;
  }
}
#footer .footer-sponsor .stl {
  background: url(../img/stl_sponsors01.webp) no-repeat center top;
  background-size: 100%;
  aspect-ratio: 1920/34;
  margin-bottom: 3em;
}
@media screen and (max-width: 1024px) {
  #footer .footer-sponsor .stl {
    aspect-ratio: 1024/34;
    background-size: 130%;
    margin-bottom: 1.5em;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer-sponsor .stl {
    aspect-ratio: 750/34;
    background-size: 200%;
    margin-bottom: 1em;
  }
}
#footer .footer-sponsor .stl > span {
  display: none;
}
#footer .footer-sponsor .sponsor-coolish img {
  width: 175px;
  margin-bottom: 3.6em;
}
@media screen and (max-width: 1024px) {
  #footer .footer-sponsor .sponsor-coolish img {
    width: 120px;
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer-sponsor .sponsor-coolish img {
    width: 58px;
  }
}
#footer .footer-sponsor .sponsor-list {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 60px;
}
@media screen and (max-width: 1024px) {
  #footer .footer-sponsor .sponsor-list {
    padding-inline: 10px;
  }
}
#footer .footer-sponsor .sponsor-list ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  #footer .footer-sponsor .sponsor-list ul {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer-sponsor .sponsor-list ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
#footer .footer-sponsor .sponsor-list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#footer .footer-sponsor .sponsor-list ul li a {
  display: block;
}
#footer .footer-sponsor .sponsor-list ul li a img {
  width: 100%;
  height: 100%;
  max-height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1024px) {
  #footer .footer-sponsor .sponsor-list ul li a img {
    max-height: 50px;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer-sponsor .sponsor-list ul li a img {
    max-height: 7vw;
  }
}
#footer .footer-bswlogo {
  width: 338px;
  margin: 6em auto 5em;
}
@media screen and (max-width: 1024px) {
  #footer .footer-bswlogo {
    width: 25vw;
    margin: 4em auto 3em;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer-bswlogo {
    width: 38vw;
    margin: 4em auto 2em;
  }
}
#footer .footer-bswlogo img {
  width: 100%;
}
#footer .footer-copyright p {
  font-family: "hyperspace-race-variable", sans-serif;
  font-variation-settings: "ital" 0, "wdth" 100, "wght" 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  #footer .footer-copyright p {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer-copyright p {
    font-size: 0.6rem;
  }
}

/*-------------------------------------------
float button
-------------------------------------------*/
.floatBtn {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.floatBtn a {
  display: block;
  width: 330px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .floatBtn a {
    width: 240px;
  }
}
@media screen and (max-width: 768px) {
  .floatBtn a {
    width: 37vw;
  }
}
.floatBtn a:hover {
  scale: 1.1;
  opacity: 1;
}/*# sourceMappingURL=style.css.map */