@charset "UTF-8";
/* aタグ設定
------------------------------------- */
@media (any-hover: hover) {
  a:hover, button:hover {
    filter: opacity(0.75);
  }
}

a, button {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  text-decoration: none;
  color: currentColor;
}

/* 基本設定
------------------------------------- */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 17.3333333333vw;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem;
  line-height: 1.66;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.4666666667vw;
  }
}

img {
  pointer-events: none;
}

.font-en {
  font-family: "Kantumruy Pro", sans-serif;
}

ul {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* デフォルトの三角形アイコンを非表示にする */
summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker,
summary::marker {
  display: none;
}

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

/* レスポンシブ設定
------------------------------------- */
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
.main-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.main-bg img, .main-bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media screen and (max-width: 768px) {
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    background-color: #fff;
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .menu__top {
    padding: 5.0666666667vw 5.3333333333vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .menu__logo {
    width: 42.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .menu__btn {
    display: block;
    width: 9.6vw;
    height: 5.8666666667vw;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .menu__btn .--line {
    width: 9.6vw;
    height: 1.0666666667vw;
    background-color: #23123E;
    position: absolute;
    top: 50%;
    left: 50%;
  }
}
@media screen and (max-width: 768px) {
  .menu__btn .--line:first-of-type {
    transform: translate(-50%, -50%) rotate(30deg);
  }
}
@media screen and (max-width: 768px) {
  .menu__btn .--line:nth-of-type(2) {
    transform: translate(-50%, -50%) rotate(-30deg);
  }
}
@media screen and (max-width: 768px) {
  .menu__body {
    border-top: 1px solid #23123E;
    height: calc(100vh - 17.6vw);
    height: calc(100dvh - 17.6vw);
    overflow: auto;
    display: grid;
    place-items: center;
  }
}
@media screen and (max-width: 768px) {
  .menu__list {
    padding: 20px 0;
  }
}
@media screen and (max-width: 768px) {
  .menu__list li {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .menu__list li:not(:first-of-type) {
    margin-top: 5.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .menu__list a {
    font-size: 3.2vw;
    color: #23123E;
    font-weight: 500;
    line-height: 1.2;
  }
}
@media screen and (max-width: 768px) {
  .menu__list a .--top {
    display: block;
    font-size: 5.8666666667vw;
    letter-spacing: -0.04em;
    font-weight: 600;
  }
}

.mv {
  position: relative;
  height: calc(100vh - 89px);
  height: calc(100dvh - 89px);
  min-height: 34.7222222222vw;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .mv {
    height: calc(100vh - 17.6vw);
    height: calc(100dvh - 17.6vw);
    min-height: 98.6666666667vw;
  }
}
.mv__cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: -1;
}
.mv__logo {
  width: 65.3472222222vw;
  position: absolute;
  top: 50%;
  right: -2.9861111111%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .mv__logo {
    width: 100%;
    right: 0;
  }
}
.mv__date {
  width: 35.9722222222vw;
  position: absolute;
  top: 50%;
  left: 4.1666666667%;
  transform: translateY(-50%);
}

.bg-body__cover {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: -1;
}
.bg-body__cover img {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.nav {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #23123E;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .nav {
    padding: 5.0666666667vw 0;
  }
}
.nav__inner {
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .nav__inner {
    padding: 0 5.3333333333vw;
    gap: 2.6666666667vw;
    max-width: 100%;
  }
}
.nav__logo {
  width: min(29.7894736842vw, 283px);
}
@media screen and (max-width: 768px) {
  .nav__logo {
    width: 42.6666666667vw;
  }
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #23123E;
}
.nav__list a {
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: min(1.2631578947vw, 1.2rem);
}
.nav__list a .--top {
  display: block;
  font-weight: 600;
  font-size: min(2.3157894737vw, 2.2rem);
  line-height: 1;
  margin-bottom: 3px;
}
@media screen and (max-width: 768px) {
  .nav__btn {
    width: 9.6vw;
    height: 5.8666666667vw;
    display: block;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .nav__btn .--line {
    display: block;
    width: 100%;
    height: 4px;
    position: absolute;
    background-color: #23123E;
  }
}
@media screen and (max-width: 768px) {
  .nav__btn .--line:first-of-type {
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .nav__btn .--line:nth-of-type(2) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  .nav__btn .--line:last-of-type {
    bottom: 0;
    left: 0;
  }
}

.top-line {
  background-image: url("../images/deco-line.png");
  background-size: 1411px 24px;
  background-repeat: repeat-x;
  background-position: top center;
}
@media screen and (max-width: 768px) {
  .top-line {
    background-image: url("../images/deco-line-sp.svg");
    background-size: 100vw 5.3333333333vw;
  }
}

.section-top {
  padding: 100px 0 156px;
}
@media screen and (max-width: 768px) {
  .section-top {
    padding: 18.6666666667vw 0 21.3333333333vw;
  }
}
.section-top .inner {
  max-width: 880px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section-top .inner {
    max-width: 100%;
    padding: 0 8vw;
  }
}
.section-top__title {
  max-width: 516px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section-top__title {
    max-width: 64vw;
  }
}
.section-top__desc {
  margin-top: 10px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .section-top__desc {
    margin-top: 4vw;
  }
}
.section-top__desc:first-of-type {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .section-top__desc:first-of-type {
    margin-top: 10.6666666667vw;
  }
}
.section-top .splide {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .section-top .splide {
    margin-top: 12vw;
  }
}
.section-top .splide.single-slide {
  visibility: visible !important;
}
.section-top .splide.single-slide .splide__arrows {
  display: none;
}
.section-top .splide.single-slide .splide__list {
  justify-content: center;
}
.section-top .splide.single-slide .splide__slide {
  margin: 0;
}
.section-top .movie__btn {
  display: block;
  position: relative;
  transition: filter 0.3s;
}
@media (any-hover: hover) {
  .section-top .movie__btn:hover {
    opacity: 1;
    filter: none;
  }
  .section-top .movie__btn:hover .--icon {
    transform: translate(-50%, -50%) scale(1.2);
  }
}
.section-top .movie__btn .--icon {
  display: block;
  width: 8%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .section-top .movie__btn .--icon {
    width: 14%;
  }
}
.section-top .movie__thumbnail {
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .section-top .movie__thumbnail {
    border-radius: 0.8vw;
  }
}
.section-top .splide__slide {
  width: min(62.874251497vw, 840px);
  margin-right: min(4.4910179641vw, 60px);
}
@media screen and (max-width: 768px) {
  .section-top .splide__slide {
    width: 84.2666666667vw;
    margin-right: 5.3333333333vw;
  }
}
.section-top .splide__arrow--prev, .section-top .splide__arrow--next {
  background-color: transparent;
  border-radius: 0;
  width: 55px;
  height: 100%;
  opacity: 1;
}
@media screen and (max-width: 1440px) {
  .section-top .splide__arrow--prev, .section-top .splide__arrow--next {
    width: 3.8194444444vw;
  }
}
@media screen and (max-width: 768px) {
  .section-top .splide__arrow--prev, .section-top .splide__arrow--next {
    width: 7.2vw;
  }
}
.section-top .splide__arrow--prev img, .section-top .splide__arrow--prev svg, .section-top .splide__arrow--next img, .section-top .splide__arrow--next svg {
  display: none;
}
.section-top .splide__arrow--prev {
  background-image: url("../images/btn-prev.svg");
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  left: calc(50% - 467px);
}
@media screen and (max-width: 1440px) {
  .section-top .splide__arrow--prev {
    left: calc(50% - 34.5138888889vw);
  }
}
@media screen and (max-width: 768px) {
  .section-top .splide__arrow--prev {
    left: 3.4666666667vw;
  }
}
.section-top .splide__arrow--next {
  background-image: url("../images/btn-next.svg");
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  right: calc(50% - 467px);
}
@media screen and (max-width: 1440px) {
  .section-top .splide__arrow--next {
    right: calc(50% - 34.5138888889vw);
  }
}
@media screen and (max-width: 768px) {
  .section-top .splide__arrow--next {
    right: 3.4666666667vw;
  }
}

.section-title {
  text-align: center;
  font-weight: 500;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 3.2vw;
  }
}
.section-title .--top {
  display: block;
  font-size: 9.6rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 768px) {
  .section-title .--top {
    font-size: 12.8vw;
  }
}

.news {
  padding: 104px 0 120px;
}
@media screen and (max-width: 768px) {
  .news {
    padding: 21.3333333333vw 0;
  }
}
.news .inner {
  max-width: 880px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .news .inner {
    max-width: 100%;
    padding: 0 8vw;
  }
}
.news__body {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .news__body {
    margin-top: 10.6666666667vw;
  }
}
.news__item {
  border-bottom: 1px solid #fff;
}
.news__item-body {
  display: flex;
  align-items: center;
  position: relative;
  padding: 18px 60px 18px 0;
}
@media screen and (max-width: 768px) {
  .news__item-body {
    padding: 4vw 6.6666666667vw 4vw 0;
  }
}
.news__date {
  width: 188px;
  flex: 0 0 auto;
  font-weight: bold;
  font-size: 2.4rem;
  letter-spacing: -0.04em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .news__date {
    font-size: 5.6vw;
    width: 19.4666666667vw;
  }
}
.news__date .--large {
  font-size: 3.6rem;
}
@media screen and (max-width: 768px) {
  .news__date .--large {
    display: block;
    font-size: 5.8666666667vw;
  }
}
.news__text {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .news__text {
    font-size: 3.7333333333vw;
  }
}
.news__arrow {
  width: 27px;
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .news__arrow {
    width: 6.4vw;
    right: 0;
  }
}
.news .btn {
  margin: 50px auto 0;
  width: 280px;
  min-height: 72px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: #fff;
  border-radius: 4px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #23123E;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 768px) {
  .news .btn {
    margin-top: 13.3333333333vw;
    width: 69.3333333333vw;
    min-height: 13.8666666667vw;
    padding: 2.6666666667vw;
    gap: 5.3333333333vw;
    font-size: 5.3333333333vw;
  }
}
.news .btn.on img {
  transform: rotate(180deg);
}
@media (any-hover: hover) {
  .news .btn:hover {
    opacity: 1;
    filter: brightness(0.9);
  }
}
.news .btn .--line {
  display: block;
  width: 1px;
  height: 28px;
  background-color: #23123E;
}
@media screen and (max-width: 768px) {
  .news .btn .--line {
    height: 7.4666666667vw;
  }
}
.news .btn img {
  width: 28px;
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .news .btn img {
    width: 9.0666666667vw;
  }
}

.about {
  padding: 104px 0 120px;
}
@media screen and (max-width: 768px) {
  .about {
    padding: 21.3333333333vw 0;
  }
}
.about .inner {
  max-width: 880px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .about .inner {
    max-width: 100%;
    padding: 0 4vw;
  }
}
.about__body {
  margin-top: 14px;
  padding: 33px 40px;
  background-color: #fff;
  color: #23123E;
}
@media screen and (max-width: 768px) {
  .about__body {
    margin-top: 2.6666666667vw;
    padding: 6.1333333333vw 4vw;
  }
}
.about__body:first-of-type {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .about__body:first-of-type {
    margin-top: 13.3333333333vw;
  }
}
.about__body-inner {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .about__body-inner {
    display: block;
  }
}
.about__body-inner .--left {
  flex: 0 0 auto;
}
.about__body-inner .--right {
  width: 100%;
}
.about__midashi {
  font-size: 1.2rem;
  padding: 3px 19px;
  border: 1px solid #23123E;
  margin-top: 8px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .about__midashi {
    font-size: 2.6666666667vw;
    padding: 0.8vw 4.8vw 0.2666666667vw;
    margin: 0 4vw 0 0;
  }
}
.about__date {
  letter-spacing: -0.04em;
  font-size: 4.8rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .about__date {
    font-size: 10.1333333333vw;
    display: flex;
    align-items: center;
  }
}
.about__date .--small {
  font-size: 2.4rem;
  margin-left: 6px;
}
@media screen and (max-width: 768px) {
  .about__date .--small {
    font-size: 4.8vw;
    margin: 0 0 0.8vw 0.8vw;
    align-self: flex-end;
  }
}
.about__location {
  letter-spacing: -0.04em;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .about__location {
    display: flex;
    align-items: center;
    font-size: 6.1333333333vw;
  }
}
.about__desc {
  margin-top: 8px;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .about__desc {
    margin-top: 2.6666666667vw;
    font-size: 3.2vw;
  }
}
.about__map {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px dashed #23123E;
}
@media screen and (max-width: 768px) {
  .about__map {
    margin-top: 5.3333333333vw;
    padding-top: 5.3333333333vw;
  }
}
.about__map-top {
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .about__map-top {
    font-size: 3.2vw;
  }
}
.about__map-google {
  margin-top: 30px;
  aspect-ratio: 540/205;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #23123E;
}
@media screen and (max-width: 768px) {
  .about__map-google {
    margin-top: 5.3333333333vw;
    aspect-ratio: 315/203;
    border-radius: 1.0666666667vw;
  }
}
.about__map-google iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.about__map-link {
  width: -moz-fit-content;
  width: fit-content;
  margin: 4px 0 0 auto;
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .about__map-link {
    font-size: 3.2vw;
    margin-top: 1.6vw;
    gap: 1.6vw;
  }
}
.about__map-link span {
  text-decoration: underline;
}
.about__map-link img {
  width: 20px;
}
@media screen and (max-width: 768px) {
  .about__map-link img {
    width: 5.3333333333vw;
  }
}
.about__map-img {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .about__map-img {
    margin-top: 5.3333333333vw;
  }
}
.about__note {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .about__note {
    margin-top: 5.3333333333vw;
  }
}
.about__note-top {
  padding: 12px;
  background-color: #FFC800;
}
@media screen and (max-width: 768px) {
  .about__note-top {
    padding: 3.2vw;
  }
}
.about__note-top h3 {
  font-size: 1.8rem;
  color: #23123E;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about__note-top h3 {
    font-size: 4.2666666667vw;
  }
}
.about__note-body {
  border: 1px solid #FFC800;
  background-color: #000007;
  padding: 30px 40px;
}
@media screen and (max-width: 768px) {
  .about__note-body {
    padding: 5.3333333333vw 4vw;
  }
}
.about__note-body p {
  font-size: 1.4rem;
  font-weight: 500;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .about__note-body p {
    font-size: 3.2vw;
  }
}
.about__note-body p .u-line {
  text-decoration: underline;
}
.about__note-body p.--large {
  margin: 2em 0 0.2em;
}

.ticket {
  padding: 104px 0 112px;
}
@media screen and (max-width: 768px) {
  .ticket {
    padding: 21.3333333333vw 0;
  }
}
.ticket .inner {
  max-width: 880px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .ticket .inner {
    max-width: 100%;
    padding: 0 4vw;
  }
}
.ticket__box-top {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .ticket__box-top {
    margin-top: 13.3333333333vw;
  }
}
.ticket__box-top-midashi {
  font-size: 1.8rem;
  padding: 9px;
  letter-spacing: 0.04em;
  font-weight: bold;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .ticket__box-top-midashi {
    font-size: 4.2666666667vw;
    padding: 3.4666666667vw;
  }
}
.ticket__box-top-body {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 5px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ticket__box-top-body {
    padding: 2.1333333333vw 2.6666666667vw;
  }
}
.ticket__box-top-body p {
  font-size: 4.8rem;
  font-weight: bold;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 768px) {
  .ticket__box-top-body p {
    font-size: 10.1333333333vw;
  }
}
.ticket__box-top-body p .--small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .ticket__box-top-body p .--small {
    font-size: 3.7333333333vw;
  }
}
.ticket__box {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .ticket__box {
    margin-top: 5.3333333333vw;
  }
}
.ticket__box.--top {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .ticket__box.--top {
    margin-top: 13.3333333333vw;
  }
}
.ticket__box-midashi {
  background-color: #fff;
}
.ticket__box-midashi button {
  display: block;
  text-align: left;
  width: 100%;
  padding: 35px 70px 35px 40px;
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  color: #23123E;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .ticket__box-midashi button {
    padding: 5.6vw 10.6666666667vw 5.3333333333vw 4vw;
    font-size: 3.7333333333vw;
  }
}
.ticket__box-midashi button.no-accordion {
  pointer-events: none;
}
@media (any-hover: hover) {
  .ticket__box-midashi button:hover {
    opacity: 1;
    filter: brightness(0.9);
  }
}
.ticket__box-midashi button.--fin {
  pointer-events: none;
}
.ticket__box-midashi button.--fin img {
  display: none;
}
.ticket__box-midashi button img {
  width: 27px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .ticket__box-midashi button img {
    width: 9.0666666667vw;
    right: 3.7333333333vw;
  }
}
.ticket__box-midashi button.on img {
  transform: translateY(-50%) rotate(180deg);
}
.ticket__box-body {
  background-color: #111;
  border: 1px solid #fff;
  display: none;
}
.ticket__box-body.open {
  display: block;
}
.ticket__box-body-inner {
  padding: 50px 40px;
}
@media screen and (max-width: 768px) {
  .ticket__box-body-inner {
    padding: 8vw 5.3333333333vw;
  }
}
.ticket__box-body-inner dl > div {
  display: flex;
  align-items: center;
  padding: 20px;
  border-top: 1px solid #fff;
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .ticket__box-body-inner dl > div {
    padding: 4vw 0;
    font-size: 3.2vw;
  }
}
.ticket__box-body-inner dl > div:last-of-type {
  border-bottom: 1px solid #fff;
}
.ticket__box-body-inner dl dt {
  width: 128px;
  flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .ticket__box-body-inner dl dt {
    width: 24vw;
  }
}
.ticket__box-body-inner dl dd {
  padding: 0 0 0 32px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .ticket__box-body-inner dl dd {
    padding-left: 5.3333333333vw;
  }
}
.ticket__box-body-inner dl dd::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .ticket__box-body-inner dl dd .--mts {
    display: inline-block;
    margin-top: 0.75em;
  }
}
.ticket__list-link {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .ticket__list-link {
    margin-top: 10.6666666667vw;
    gap: 1.3333333333vw;
  }
}
.ticket__list-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 55px;
  padding: 5px 30px;
  font-weight: bold;
  color: #23123E;
  background-color: #fff;
  position: relative;
  border-radius: 4px;
  width: calc(33.3333333333% - 6.6666666667px);
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .ticket__list-link a {
    width: calc(50% - 0.6666666667vw);
    min-height: 12vw;
    font-size: 3.2vw;
    padding: 1.3333333333vw 5.3333333333vw;
  }
}
.ticket__list-link a img {
  width: 12px;
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .ticket__list-link a img {
    width: 2.1333333333vw;
    right: 2.6666666667vw;
  }
}
.ticket__fin-text {
  margin-left: 16px;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  padding: 2px 8px 3px;
  background-color: #23123E;
}
@media screen and (max-width: 768px) {
  .ticket__fin-text {
    margin-left: 2.6666666667vw;
    font-size: 2.6666666667vw;
    padding: 0.5333333333vw 0.5333333333vw 0.8vw;
  }
}

.--comingsoon {
  margin: 60px auto 0;
  padding: 20px 10px;
  border: 2px solid #fff;
  font-size: 4rem;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .--comingsoon {
    margin-top: var(50);
    padding: 2.6666666667vw;
    font-size: 7.4666666667vw;
  }
}

.goods {
  padding: 104px 0 120px;
}
@media screen and (max-width: 768px) {
  .goods {
    padding: 21.3333333333vw 0;
  }
}
.goods .inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .goods .inner {
    max-width: 100%;
    padding: 0 8vw;
  }
}
.goods__desc {
  margin-top: 10px;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .goods__desc {
    margin-top: 2.6666666667vw;
  }
}
.goods__desc:first-of-type {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .goods__desc:first-of-type {
    margin-top: 10.6666666667vw;
  }
}
.goods__img {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .goods__img {
    margin-top: 10.6666666667vw;
  }
}
.goods__note {
  margin-top: 20px;
  padding-left: 48px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .goods__note {
    margin-top: 5.3333333333vw;
    padding-left: 7.4666666667vw;
  }
}
.goods__note::after {
  content: "";
  width: 40px;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: linear-gradient(to right, #FFC800 50%, #00B9F3 50%);
}
@media screen and (max-width: 768px) {
  .goods__note::after {
    width: 6.1333333333vw;
    height: 0.8vw;
  }
}
.goods__desc02 {
  margin-top: 4px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .goods__desc02 {
    margin-top: 2.1333333333vw;
    font-size: 3.2vw;
  }
}
.goods__link {
  margin-top: 10px;
  display: block;
  font-weight: bold;
  text-align: center;
  color: #23123E;
  padding: 12px;
  position: relative;
  background-color: #fff;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .goods__link {
    margin-top: 2.6666666667vw;
    font-size: 3.7333333333vw;
    padding: 3.2vw 5.8666666667vw;
    border-radius: 1.0666666667vw;
  }
}
@media (any-hover: hover) {
  .goods__link:hover {
    opacity: 1;
    filter: brightness(0.9);
  }
}
.goods__link:first-of-type {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .goods__link:first-of-type {
    margin-top: 8vw;
  }
}
.goods__link img {
  width: 12px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .goods__link img {
    width: 2.9333333333vw;
    right: 2.6666666667vw;
  }
}

.info {
  padding: 104px 0 120px;
}
@media screen and (max-width: 768px) {
  .info {
    padding: 21.3333333333vw 0;
  }
}
.info .inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .info .inner {
    max-width: 100%;
    padding: 0 8vw;
  }
}

.footer {
  background-color: #000;
  padding: 95px 20px 34px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 18.6666666667vw 5.8666666667vw 16vw;
  }
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .footer__top {
    gap: 2.6666666667vw;
  }
}
.footer__top > dl {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .footer__top > dl {
    flex-direction: column;
    gap: 3.7333333333vw;
    width: 42.6666666667vw;
  }
}
.footer__top > dl dt {
  width: 180px;
  padding: 5px 10px;
  border: 1px solid #fff;
  line-height: 1;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .footer__top > dl dt {
    padding: 1.3333333333vw 2.6666666667vw;
    width: 100%;
    font-size: 3.7333333333vw;
  }
}
.footer__top > dl dd {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .footer__top > dl dd {
    gap: 12;
  }
}
.footer__top > dl dd a.--x {
  width: 20px;
}
@media screen and (max-width: 768px) {
  .footer__top > dl dd a.--x {
    width: 5.3333333333vw;
  }
}
.footer__top > dl dd a.--facebook {
  width: 10px;
}
@media screen and (max-width: 768px) {
  .footer__top > dl dd a.--facebook {
    width: 2.6666666667vw;
  }
}
.footer__top > dl dd a.--line {
  width: 23px;
}
@media screen and (max-width: 768px) {
  .footer__top > dl dd a.--line {
    width: 6.1333333333vw;
  }
}
.footer__top > dl dd a.--tiktok {
  width: 19px;
}
@media screen and (max-width: 768px) {
  .footer__top > dl dd a.--tiktok {
    width: 5.0666666667vw;
  }
}
.footer__top > dl dd a.--instagram {
  width: 21px;
}
@media screen and (max-width: 768px) {
  .footer__top > dl dd a.--instagram {
    width: 5.6vw;
  }
}
.footer__top > dl dd a.--youtube {
  width: 23px;
}
@media screen and (max-width: 768px) {
  .footer__top > dl dd a.--youtube {
    width: 6.1333333333vw;
  }
}
.footer__privacypolicy {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  margin: 44px auto 0;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .footer__privacypolicy {
    margin-top: 9.0666666667vw;
    font-size: 3.7333333333vw;
  }
}
.footer__copyright {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 2.6666666667vw;
    margin-top: 3.2vw;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 103;
  display: none;
}
.modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  cursor: pointer;
}
.modal__body {
  width: 1000px;
  aspect-ratio: 16/9;
  max-width: 95vw;
  max-height: calc(100vh - 70px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .modal__body {
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 21.3333333333vw);
  }
}
.modal__body iframe, .modal__body video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal__close {
  font-size: 2rem;
  color: #fff;
  position: absolute;
  bottom: calc(100% + 5px);
  right: 0;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .modal__close {
    font-size: 6.4vw;
    bottom: calc(100% + 1.3333333333vw);
    right: 2.6666666667vw;
  }
}

.fadeIn {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}
.fadeIn.on {
  transform: inherit;
  opacity: 1;
}

.zoomIn {
  transform: translateY(-50%) scale(0.5);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s, opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s;
}
@media screen and (max-width: 768px) {
  .zoomIn {
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s, opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s;
  }
}
.zoomIn.on {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

.fadeUp {
  transform: translateY(53%);
  opacity: 0;
  transition: transform 0.5s ease-out, opacity 0.5s cubic-bezier(0.32, 0, 0.67, 0);
}
.fadeUp.on {
  transform: translateY(-50%);
  opacity: 1;
}/*# sourceMappingURL=base.css.map */