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

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

body {
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem;
  color: #fff;
  background-color: #000;
  font-family: "Zen Antique", serif;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 4.1025641026vw;
  }
}

img {
  pointer-events: none;
}

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

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

/* レスポンシブ設定
------------------------------------- */
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
.font-en {
  font-family: "Libre Baskerville", serif;
}

.font-gothic {
  font-family: "Noto Sans JP", sans-serif;
}

.main-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/main-bg.webp?1024");
  background-size: cover;
  background-position: 50% 50%;
  z-index: -1;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
}
.header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 150;
}
@media screen and (max-width: 768px) {
  .header__btn {
    width: 19.2307692308vw;
    height: 19.2307692308vw;
  }
}
.header__btn.open .--open {
  opacity: 0;
}
.header__btn.open .--close {
  opacity: 1;
}
.header__btn .--open {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  transition: opacity 0.45s;
}
@media screen and (max-width: 768px) {
  .header__btn .--open {
    width: 10.2564102564vw;
  }
}
.header__btn .--close {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  transition: opacity 0.45s;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .header__btn .--close {
    width: 8.9743589744vw;
  }
}

#wrapper {
  overflow: hidden;
}

.menu {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.8);
  width: 415px;
  height: 100vh;
  height: 100dvh;
  display: none;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .menu {
    width: 100%;
    box-shadow: none;
  }
}
.menu__inner {
  padding: 60px 10px 60px 30px;
  height: 100%;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .menu__inner {
    padding: 15.3846153846vw 2.5641025641vw 15.3846153846vw 5.1282051282vw;
  }
}
.menu__list li + li {
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .menu__list li + li {
    margin-top: 1.2820512821vw;
  }
}
.menu__list li a {
  display: block;
  font-weight: bold;
  position: relative;
  padding: 20px 0 20px 26px;
}
@media screen and (max-width: 768px) {
  .menu__list li a {
    padding: 5.1282051282vw 0 5.1282051282vw 6.6666666667vw;
  }
}
.menu__list li a::after {
  content: "";
  width: 13px;
  height: 17px;
  background-image: url("../images/icon-dia.svg");
  background-size: 13px 17px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 1.2em;
  left: 0;
}
@media screen and (max-width: 768px) {
  .menu__list li a::after {
    width: 3.3333333333vw;
    height: 4.358974359vw;
    background-size: cover;
  }
}
.menu__list li a .--top {
  width: 40px;
}
@media screen and (max-width: 768px) {
  .menu__list li a .--top {
    width: 10.2564102564vw;
  }
}
.menu__list li a .--news {
  width: 62px;
}
@media screen and (max-width: 768px) {
  .menu__list li a .--news {
    width: 15.8974358974vw;
  }
}
.menu__list li a .--tour {
  width: 296px;
}
@media screen and (max-width: 768px) {
  .menu__list li a .--tour {
    width: 75.8974358974vw;
  }
}
.menu__list li a .--info {
  width: 189px;
}
@media screen and (max-width: 768px) {
  .menu__list li a .--info {
    width: 48.4615384615vw;
  }
}
.menu__list li a .--event {
  width: 245px;
}
@media screen and (max-width: 768px) {
  .menu__list li a .--event {
    width: 62.8205128205vw;
  }
}
.menu__list li a .--reser {
  width: 277px;
}
@media screen and (max-width: 768px) {
  .menu__list li a .--reser {
    width: 71.0256410256vw;
  }
}
.menu__list li a .--movie {
  width: 69px;
}
@media screen and (max-width: 768px) {
  .menu__list li a .--movie {
    width: 17.6923076923vw;
  }
}
.menu__sns {
  margin: 27px auto 0;
  padding-right: 20px;
  width: 100%;
  height: 125px;
}
@media screen and (max-width: 768px) {
  .menu__sns {
    margin: 6.9230769231vw 0 0;
    padding-right: 2.5641025641vw;
    height: 32.0512820513vw;
  }
}
.menu__sns-inner {
  display: flex;
  height: 100%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.menu__sns-inner a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  position: relative;
}
.menu__sns-inner a::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
}
.menu__sns-inner a.--x::after {
  right: 0;
  transform: translateX(50%);
}
.menu__sns-inner a.--x img {
  width: 128px;
}
@media screen and (max-width: 768px) {
  .menu__sns-inner a.--x img {
    width: 32.8205128205vw;
  }
}
.menu__sns-inner a.--instagram::after {
  left: 0;
  transform: translateX(-50%);
}
.menu__sns-inner a.--instagram img {
  width: 136px;
}
@media screen and (max-width: 768px) {
  .menu__sns-inner a.--instagram img {
    width: 34.8717948718vw;
  }
}
.menu__bottom {
  margin-top: 52px;
}
@media screen and (max-width: 768px) {
  .menu__bottom {
    margin-top: 13.3333333333vw;
  }
}
.menu__bottom .--top {
  display: block;
  width: 34px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .menu__bottom .--top {
    width: 8.7179487179vw;
    margin-bottom: 5.1282051282vw;
  }
}
.menu__bottom a {
  display: block;
  font-size: 1.2rem;
  line-height: 1.5;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .menu__bottom a {
    font-size: 3.0769230769vw;
  }
}
.menu__bottom a + a {
  margin-top: 1em;
}

.footer {
  padding: 26px 0 70px;
  z-index: 10;
  position: relative;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 3.3333333333vw 0 22.6666666667vw;
  }
}
.footer_sns {
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer_sns {
    display: block;
    margin-top: 7.0666666667vw;
  }
}
.footer_sns_top {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer_sns_top {
    justify-content: center;
  }
}
.footer_sns_top dl:first-of-type {
  margin-right: 3.0666666667vw;
}
.footer_sns dl {
  display: flex;
  align-items: center;
  margin-right: 38px;
}
@media screen and (max-width: 768px) {
  .footer_sns dl {
    display: block;
    margin-right: 0;
  }
}
.footer_sns dt {
  margin-right: 15px;
  width: 160px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer_sns dt {
    margin-right: 0;
    width: 40vw;
    border: 0.1333333333vw solid #fff;
    font-size: 2.6666666667vw;
    padding: 0.2666666667vw;
  }
}
.footer_sns_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
@media screen and (max-width: 768px) {
  .footer_sns_list {
    gap: 4.5333333333vw;
    margin-top: 2.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .footer_sns_link_twitter {
    width: 4.5333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .footer_sns_link_facebook {
    width: 1.7333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .footer_sns_link_line {
    width: 4.5333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .footer_sns_link_d {
    width: 4.2666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .footer_sns_link_youtube {
    width: 4.5333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .footer_sns_link_instagram {
    width: 4.6666666667vw;
  }
}
.footer_btn {
  display: block;
  width: 160px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer_btn {
    width: 40vw;
    border: 0.1333333333vw solid #fff;
    font-size: 2.6666666667vw;
    padding: 0.2666666667vw;
    margin: 5.3333333333vw auto 0;
  }
}
.footer_copyright {
  margin-top: 34px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 768px) {
  .footer_copyright {
    margin-top: 3.6vw;
    font-size: 2.9333333333vw;
  }
}

.bg-dark {
  padding: 100px 20px 140px;
  margin: 72px auto 0;
  max-width: 1200px;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  -webkit-mask: radial-gradient(circle 50px at top left, transparent 49px, black 50px), radial-gradient(circle 50px at top right, transparent 49px, black 50px), radial-gradient(circle 50px at bottom left, transparent 49px, black 50px), radial-gradient(circle 50px at bottom right, transparent 49px, black 50px);
          mask: radial-gradient(circle 50px at top left, transparent 49px, black 50px), radial-gradient(circle 50px at top right, transparent 49px, black 50px), radial-gradient(circle 50px at bottom left, transparent 49px, black 50px), radial-gradient(circle 50px at bottom right, transparent 49px, black 50px);
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
}
@media screen and (max-width: 768px) {
  .bg-dark {
    padding: 20.5128205128vw 1.2820512821vw 20.5128205128vw;
    margin-top: 15.3846153846vw;
    max-width: 94.8717948718vw;
    -webkit-mask: radial-gradient(circle 6.4102564103vw at top left, transparent 6.1538461538vw, black 6.4102564103vw), radial-gradient(circle 6.4102564103vw at top right, transparent 6.1538461538vw, black 6.4102564103vw), radial-gradient(circle 6.4102564103vw at bottom left, transparent 6.1538461538vw, black 6.4102564103vw), radial-gradient(circle 6.4102564103vw at bottom right, transparent 6.1538461538vw, black 6.4102564103vw);
            mask: radial-gradient(circle 6.4102564103vw at top left, transparent 6.1538461538vw, black 6.4102564103vw), radial-gradient(circle 6.4102564103vw at top right, transparent 6.1538461538vw, black 6.4102564103vw), radial-gradient(circle 6.4102564103vw at bottom left, transparent 6.1538461538vw, black 6.4102564103vw), radial-gradient(circle 6.4102564103vw at bottom right, transparent 6.1538461538vw, black 6.4102564103vw);
    -webkit-mask-composite: source-in, xor;
            mask-composite: intersect;
  }
}
.bg-dark.--top {
  margin-bottom: 140px;
  padding-top: 45px;
}
@media screen and (max-width: 768px) {
  .bg-dark.--top {
    margin-bottom: 15.3846153846vw;
    padding-top: 16.6666666667vw;
  }
}
.bg-dark.--bottom {
  margin-top: 140px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .bg-dark.--bottom {
    margin-top: 15.3846153846vw;
    margin-bottom: 12.8205128205vw;
  }
}

.mv {
  padding: 0 20px 140px;
}
@media screen and (max-width: 768px) {
  .mv {
    padding: 0 1.2820512821vw 11.5384615385vw;
  }
}
.mv.on .mv__body {
  opacity: 1;
  filter: none;
  transform: inherit;
}
.mv__body {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  transition: filter 1.4s ease-out, opacity 1.4s ease-out, transform 1.4s ease-out;
  transform: scale(1.05);
  opacity: 0;
  filter: blur(30px);
}
@media screen and (max-width: 768px) {
  .mv__body {
    max-width: 85.8974358974vw;
  }
}

.area-lead {
  position: relative;
  padding: 0 0 140px;
}
@media screen and (max-width: 768px) {
  .area-lead {
    padding: 0 3.8461538462vw 17.9487179487vw;
  }
}
.area-lead__top {
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .area-lead__top {
    max-width: 81.0256410256vw;
  }
}
.area-lead__desc {
  margin-top: 80px;
  text-align: center;
  font-size: 2rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .area-lead__desc {
    margin-top: 10.7692307692vw;
    font-size: 3.5897435897vw;
    text-align: left;
  }
}
.area-lead__desc .--title {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  padding: 5px 100px 4px;
  margin: 0 auto 20px;
  font-weight: 500;
  font-size: 2.4rem;
  border: 2px solid #fff;
}
@media screen and (max-width: 768px) {
  .area-lead__desc .--title {
    padding: 1.0256410256vw 12.8205128205vw 0.5128205128vw;
    margin-bottom: 3.8461538462vw;
    font-size: 4.6153846154vw;
    border: 1px solid #fff;
  }
}

.movie-top {
  max-width: 774px;
  margin: 0 auto 76px;
}
@media screen and (max-width: 768px) {
  .movie-top {
    max-width: 90%;
    margin: 0 auto 15.3846153846vw;
  }
}
.movie-top__btn {
  display: block;
  position: relative;
  box-shadow: 0 4px 30px 12px rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 768px) {
  .movie-top__btn {
    box-shadow: 0 2px 15px 6px rgba(255, 255, 255, 0.3);
  }
}
@media (any-hover: hover) {
  .movie-top__btn:hover .--icon {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.movie-top__btn .--icon {
  width: 128px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .movie-top__btn .--icon {
    width: 15.3846153846vw;
  }
}

.news {
  padding: 30px 0 90px;
}
@media screen and (max-width: 768px) {
  .news {
    padding: 7.6923076923vw 0 15.3846153846vw;
  }
}
.news__title {
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .news__title {
    max-width: 85.1282051282vw;
  }
}
.news__body {
  margin: 50px auto 0;
  max-width: 850px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .news__body {
    margin-top: 8.9743589744vw;
    padding: 0 3.8461538462vw;
    max-width: 100%;
    width: 100%;
  }
}
.news__list li + li {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .news__list li + li {
    margin-top: 7.6923076923vw;
  }
}
.news__list li > a, .news__list li > span {
  display: flex;
  align-items: flex-start;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news__list li > a, .news__list li > span {
    display: block;
  }
}
.news__list li > a .news__text {
  text-decoration: underline;
}
.news__date {
  display: block;
  min-width: 140px;
  margin-top: 3px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .news__date {
    min-width: auto;
    margin-top: 0;
    margin-bottom: 1.2820512821vw;
    font-size: 5.1282051282vw;
  }
}
.news__text {
  line-height: 1.75;
}
.news__more {
  margin: 50px auto 0;
  width: 201px;
  min-height: 42px;
  border-radius: 50px;
  border: 2px solid #fff;
  background-color: rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news__more {
    margin-top: 10.7692307692vw;
    width: 51.5384615385vw;
    min-height: 12.8205128205vw;
    border-radius: 12.8205128205vw;
    font-size: 4.6153846154vw;
  }
}

.information {
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .information {
    padding: 0 2.5641025641vw;
  }
}
.information__note {
  margin: 0 auto 10px;
  max-width: 1050px;
  display: block;
  color: #000;
  font-size: 1.4rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .information__note {
    max-width: 100%;
    font-size: 2.5641025641vw;
  }
}
.information__title-outer, .information__item-outer {
  background-image: url("../images/bg-beige.webp");
  background-repeat: repeat;
  background-size: 1200px 600px;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .information__title-outer, .information__item-outer {
    max-width: 100%;
    border-radius: 5.1282051282vw;
    background-size: 600px 300px;
  }
}
.information__title-outer {
  padding: 47px 20px 83px;
}
@media screen and (max-width: 768px) {
  .information__title-outer {
    padding: 7.6923076923vw 2.5641025641vw 10.2564102564vw;
  }
}
.information__item-outer {
  padding: 75px 20px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .information__item-outer {
    padding: 10.2564102564vw 2.5641025641vw;
  }
}
.information__item-outer::after {
  content: "";
  width: 100%;
  height: 0;
  border-top: 2px dashed #000;
  position: absolute;
  bottom: 0;
  top: 0;
}
.information__title {
  max-width: 898px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .information__title {
    max-width: 85.1282051282vw;
  }
}
.information__item {
  margin: 0 auto 0;
  max-width: 1050px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .information__item {
    max-width: 100%;
  }
}
.information__item-line {
  display: block;
  background-repeat: repeat;
  position: absolute;
}
.information__item-line:nth-of-type(2) {
  width: 100%;
  height: 6px;
  background-image: url("../images/line-bold.png");
  background-size: auto 100%;
  bottom: 0;
  left: 0;
  transform: translateY(50%);
}
.information__item-line:nth-of-type(3) {
  width: 3px;
  height: 100%;
  background-image: url("../images/line-normal-vertical.png");
  background-size: 100% auto;
  top: 0;
  left: 0;
}
.information__item-line:nth-of-type(4) {
  width: 3px;
  height: 100%;
  background-image: url("../images/line-normal-vertical.png");
  background-size: 100% auto;
  top: 0;
  right: 0;
}
.information__item-title {
  position: relative;
}
.information__item-detail {
  padding: 50px 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .information__item-detail {
    padding: 7.6923076923vw 2.5641025641vw 7.6923076923vw 2.5641025641vw;
  }
}
.information__item-detail .--bottom-line {
  display: block;
  width: 100%;
  height: 3px;
  background-image: url("../images/line-nallow.png");
  background-size: auto 100%;
  background-repeat: repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(50%);
}
.information__item-detail > div {
  margin: 0 auto;
  max-width: 960px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .information__item-detail > div {
    display: block;
    max-width: 100%;
  }
}
.information__img {
  width: 401px;
}
@media screen and (max-width: 768px) {
  .information__img {
    width: 100%;
  }
}
.information__body {
  width: 517px;
}
@media screen and (max-width: 768px) {
  .information__body {
    margin-top: 7.6923076923vw;
    width: 100%;
  }
}
.information__info02 {
  margin-top: min(2vw, 20px);
  color: #000;
  font-size: min(1.6vw, 1.6rem);
}
@media screen and (max-width: 768px) {
  .information__info02 {
    margin-top: 2.5641025641vw;
    font-size: 3.3333333333vw;
  }
}
.information__song-list {
  margin-top: min(1vw, 10px);
  display: none;
}
@media screen and (max-width: 768px) {
  .information__song-list {
    margin-top: 2.5641025641vw;
  }
}
.information__song-list p {
  line-height: 1.6;
}
.information__btn-more {
  margin-top: min(1vw, 10px);
  padding: min(0.7vw, 7px) min(4vw, 40px);
  line-height: 1;
  border: 1px solid #000;
  position: relative;
}
@media screen and (max-width: 768px) {
  .information__btn-more {
    margin-top: 2.5641025641vw;
    padding: 1.7948717949vw 10.2564102564vw;
  }
}
.information__btn-more.open .--icon {
  transform: translateY(-50%) rotate(90deg);
}
.information__btn-more.open .--icon::after {
  opacity: 0;
}
.information__btn-more .--icon {
  display: block;
  width: min(1vw, 10px);
  height: min(1vw, 10px);
  position: absolute;
  top: 50%;
  right: min(1vw, 10px);
  transform: translateY(-50%);
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .information__btn-more .--icon {
    width: 2.5641025641vw;
    height: 2.5641025641vw;
    right: 2.5641025641vw;
  }
}
.information__btn-more .--icon::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.3s;
}
.information__btn-more .--icon::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.3s;
}
.information__info03 {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .information__info03 {
    margin-top: 5.1282051282vw;
  }
}
.information__item-tokuten {
  padding: 50px 20px 80px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .information__item-tokuten {
    padding: 7.6923076923vw 1.2820512821vw 7.6923076923vw 2.5641025641vw;
  }
}
@media screen and (max-width: 768px) {
  .information__item-tokuten.--a, .information__item-tokuten.--starring {
    padding-bottom: 23.0769230769vw;
  }
}
.information__item-tokuten .--deco-a {
  width: min(27.25vw, 327px);
  position: absolute;
  right: 21px;
  bottom: 7px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .information__item-tokuten .--deco-a {
    width: 46.1538461538vw;
    right: 2.5641025641vw;
    bottom: 1.2820512821vw;
  }
}
.information__item-tokuten .--deco-b {
  width: min(23.5vw, 282px);
  position: absolute;
  top: -83px;
  left: 199px;
  z-index: -1;
  mix-blend-mode: darken;
}
@media screen and (max-width: 768px) {
  .information__item-tokuten .--deco-b {
    width: 48.7179487179vw;
    top: -15.3846153846vw;
    left: auto;
    right: -2.5641025641vw;
  }
}
.information__item-tokuten .--deco-starring {
  width: min(27.25vw, 327px);
  position: absolute;
  right: 21px;
  bottom: 7px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .information__item-tokuten .--deco-starring {
    width: 46.1538461538vw;
    right: 2.5641025641vw;
    bottom: 1.2820512821vw;
  }
}
.information__item-tokuten .--deco-normal {
  width: min(14.75vw, 177px);
  position: absolute;
  right: 78px;
  bottom: 23px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .information__item-tokuten .--deco-normal {
    width: 30.7692307692vw;
    right: calc(50% - 15.3846153846vw);
    bottom: 2.5641025641vw;
  }
}
.information__item-tokuten > div {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 36px 125px;
}
@media screen and (max-width: 768px) {
  .information__item-tokuten > div {
    max-width: 100%;
    display: block;
  }
}
.information__item-tokuten > div .--syokaifunyu {
  max-width: 380px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .information__item-tokuten > div .--syokaifunyu {
    max-width: 77.9487179487vw;
  }
}
.information__item-tokuten > div .--funyu {
  max-width: 380px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .information__item-tokuten > div .--funyu {
    margin-top: 5.1282051282vw;
    max-width: 77.9487179487vw;
  }
}
.information__item-tokuten > div .--sotozuke {
  max-width: 640px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .information__item-tokuten > div .--sotozuke {
    margin-top: 5.1282051282vw;
    max-width: 85.1282051282vw;
    width: 110%;
  }
}
.information__item-tokuten > div .--tokuten04 {
  max-width: 718px;
  width: 100%;
  aspect-ratio: 1436/290;
  position: relative;
}
@media screen and (max-width: 768px) {
  .information__item-tokuten > div .--tokuten04 {
    margin-top: 5.1282051282vw;
    max-width: 85.1282051282vw;
    width: 110%;
    aspect-ratio: 830/395;
  }
}
.information__item-tokuten > div .--tokuten04 a {
  display: block;
  width: 83.56545961%;
  aspect-ratio: 600/35;
  position: absolute;
  bottom: -3.4482758621%;
  left: 6.2674094708%;
}
@media screen and (max-width: 768px) {
  .information__item-tokuten > div .--tokuten04 a {
    width: 62.8205128205vw;
    height: 12.8205128205vw;
    aspect-ratio: inherit;
    bottom: -1.7948717949vw;
    left: 10.2564102564vw;
  }
}

.logo-bottom {
  max-width: 611px;
  margin: 120px auto 0;
}
@media screen and (max-width: 768px) {
  .logo-bottom {
    max-width: 78.9743589744vw;
    margin-top: 20.5128205128vw;
  }
}

.reservation__title {
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .reservation__title {
    max-width: 85.1282051282vw;
  }
}
.reservation__list {
  margin: 60px auto 0;
  max-width: 971px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .reservation__list {
    margin-top: 8.9743589744vw;
    max-width: 100%;
    gap: 2.5641025641vw;
  }
}
.reservation__list a {
  display: block;
  width: calc(25% - 22.5px);
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 768px) {
  .reservation__list a {
    width: calc(50% - 1.2820512821vw);
  }
}

.sns {
  padding: 30px 20px 0;
}
@media screen and (max-width: 768px) {
  .sns {
    padding: 7.6923076923vw 3.8461538462vw 0;
  }
}
.sns__title {
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sns__title {
    max-width: 85.1282051282vw;
  }
}
.sns__list {
  margin: 66px auto 0;
  max-width: 892px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
@media screen and (max-width: 768px) {
  .sns__list {
    margin-top: 8.9743589744vw;
    max-width: 100%;
    flex-direction: column;
    gap: 5.1282051282vw;
  }
}
.sns__list li {
  max-width: calc(50% - 15px);
}
@media screen and (max-width: 768px) {
  .sns__list li {
    max-width: 100%;
  }
}
.sns__list a {
  display: block;
}

.movie {
  margin-top: 30px;
  margin-bottom: 140px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .movie {
    margin-top: 5.1282051282vw;
    margin-bottom: 30.7692307692vw;
  }
}
.movie__title {
  max-width: 1001px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .movie__title {
    max-width: 100vw;
  }
}
.movie__title img {
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.6));
}
.movie__body {
  margin-top: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  filter: drop-shadow(0 0 44px rgba(255, 255, 255, 0.3));
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
@media screen and (max-width: 768px) {
  .movie__body {
    margin-top: 12.8205128205vw;
  }
}
.movie__body-top, .movie__body-bottom {
  width: 100%;
  height: 108px;
}
@media screen and (max-width: 768px) {
  .movie__body-top, .movie__body-bottom {
    height: 13.8461538462vw;
  }
}
.movie__body-top > div, .movie__body-bottom > div {
  display: flex;
  height: 100%;
  width: -moz-fit-content;
  width: fit-content;
}
.movie__body-top img, .movie__body-bottom img {
  width: auto;
  height: 100%;
}
.movie__body-top {
  position: relative;
}
.movie__body-top > div {
  position: absolute;
  top: 0;
  left: 0;
}
.movie__body-top img {
  animation: slideLeft 20s linear infinite;
}
.movie__body-bottom {
  position: relative;
}
.movie__body-bottom > div {
  position: absolute;
  top: 0;
  right: 0;
}
.movie__body-bottom img {
  animation: slideRight 20s linear infinite;
}
.movie__slider {
  margin: 10px 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .movie__slider {
    margin: 5.1282051282vw 0;
  }
}
.movie__slider-inner {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  left: 18.2638888889vw;
}
@media screen and (max-width: 768px) {
  .movie__slider-inner {
    left: 6.4102564103vw;
  }
}
.movie__btn {
  display: block;
  margin: 0 2.4305555556vw;
  border-radius: 2.0833333333vw;
  overflow: hidden;
  width: 61.1111111111vw;
  aspect-ratio: 1760/990;
  position: relative;
}
@media screen and (max-width: 768px) {
  .movie__btn {
    border-radius: 5.1282051282vw;
    margin: 0 1.2820512821vw;
    width: 84.6153846154vw;
  }
}
@media (any-hover: hover) {
  .movie__btn:hover .--icon {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.movie__btn .--thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.movie__btn .--icon {
  width: 120px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .movie__btn .--icon {
    width: 15.3846153846vw;
  }
}
.movie__nav {
  margin-top: 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .movie__nav {
    margin-top: 5.1282051282vw;
  }
}
.movie__nav-thumbnail {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  left: calc(50% - 138px);
}
@media screen and (max-width: 768px) {
  .movie__nav-thumbnail {
    left: 29.4871794872vw;
  }
}
.movie__thumbnail-btn {
  width: 260px;
  aspect-ratio: 260/140;
  margin: 0 8px;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .movie__thumbnail-btn {
    width: 38.4615384615vw;
    margin: 1.0256410256vw;
    border-radius: 2.5641025641vw;
  }
}
.movie__thumbnail-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.movie__nav-bottom {
  margin: 31px auto 0;
  max-width: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .movie__nav-bottom {
    margin-top: 5.1282051282vw;
    max-width: calc(100% - 5.1282051282vw);
  }
}
.movie__prev {
  width: 50px;
  margin-right: 60px;
  flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .movie__prev {
    width: 10.2564102564vw;
    margin-right: 7.6923076923vw;
  }
}
.movie__next {
  width: 50px;
  margin-left: 60px;
  flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .movie__next {
    width: 10.2564102564vw;
    margin-left: 7.6923076923vw;
  }
}
.movie__nav-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 17px;
}
@media screen and (max-width: 768px) {
  .movie__nav-list {
    gap: 1.7948717949vw 4.358974359vw;
  }
}
.movie__pagination {
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .movie__pagination {
    width: 2.5641025641vw;
    height: 2.5641025641vw;
  }
}
.movie__pagination::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .movie__pagination::after {
    width: 2.5641025641vw;
    height: 2.5641025641vw;
  }
}
.movie__pagination.--current::after {
  width: 20px;
  height: 20px;
  background-image: url("../images/icon-crown.svg");
  background-size: cover;
  background-color: transparent;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  .movie__pagination.--current::after {
    width: 5.1282051282vw;
    height: 5.1282051282vw;
  }
}

@keyframes slideLeft {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes slideRight {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translateX(100%);
  }
}
.pagetotop {
  display: block;
  z-index: 50;
  width: 93px;
  position: fixed;
  bottom: 24px;
  right: 24px;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.6));
  transition: opacity 0.6s, transform 0.6s;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .pagetotop {
    width: 17.9487179487vw;
    bottom: 2.5641025641vw;
    right: 2.5641025641vw;
  }
}
.pagetotop.on {
  opacity: 1;
}

.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 - 120px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 850px) {
  .modal__body {
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 20.5128205128vw);
  }
}
.modal__body iframe, .modal__body video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal__close {
  width: 58px;
  position: absolute;
  bottom: 100%;
  right: 0;
}
@media screen and (max-width: 850px) {
  .modal__close {
    width: 10.2564102564vw;
    bottom: calc(100% + 1.2820512821vw);
    right: 2.5641025641vw;
  }
}

.event {
  margin-bottom: 140px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .event {
    margin-bottom: 15.3846153846vw;
    padding: 0 3.8461538462vw;
  }
}
.event__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  background-image: url("../images/bg-beige.webp");
  background-repeat: repeat;
  background-size: 1200px 600px;
  -webkit-mask: radial-gradient(circle 50px at top left, transparent 49px, black 50px), radial-gradient(circle 50px at top right, transparent 49px, black 50px), radial-gradient(circle 50px at bottom left, transparent 49px, black 50px), radial-gradient(circle 50px at bottom right, transparent 49px, black 50px);
          mask: radial-gradient(circle 50px at top left, transparent 49px, black 50px), radial-gradient(circle 50px at top right, transparent 49px, black 50px), radial-gradient(circle 50px at bottom left, transparent 49px, black 50px), radial-gradient(circle 50px at bottom right, transparent 49px, black 50px);
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
}
@media screen and (max-width: 768px) {
  .event__inner {
    max-width: 100%;
    padding: 3.8461538462vw;
    -webkit-mask: radial-gradient(circle 8.9743589744vw at top left, transparent 8.7179487179vw, black 8.9743589744vw), radial-gradient(circle 8.9743589744vw at top right, transparent 8.7179487179vw, black 8.9743589744vw), radial-gradient(circle 8.9743589744vw at bottom left, transparent 8.7179487179vw, black 8.9743589744vw), radial-gradient(circle 8.9743589744vw at bottom right, transparent 8.7179487179vw, black 8.9743589744vw);
            mask: radial-gradient(circle 8.9743589744vw at top left, transparent 8.7179487179vw, black 8.9743589744vw), radial-gradient(circle 8.9743589744vw at top right, transparent 8.7179487179vw, black 8.9743589744vw), radial-gradient(circle 8.9743589744vw at bottom left, transparent 8.7179487179vw, black 8.9743589744vw), radial-gradient(circle 8.9743589744vw at bottom right, transparent 8.7179487179vw, black 8.9743589744vw);
    -webkit-mask-composite: source-in, xor;
            mask-composite: intersect;
  }
}
.event__body {
  max-width: 1049px;
  margin: 0 auto;
  padding: 70px 30px 80px;
  background-image: url("../images/waku.webp");
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  .event__body {
    max-width: 100%;
    padding: 10.2564102564vw 2.5641025641vw 12.3076923077vw;
    background-image: url("../images/waku-sp.webp");
  }
}
.event__title {
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .event__title {
    max-width: 77.1794871795vw;
  }
}
.event__a {
  max-width: 861px;
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  .event__a {
    max-width: 72.0512820513vw;
    margin-top: 7.6923076923vw;
  }
}
.event__b {
  max-width: 861px;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .event__b {
    max-width: 72.0512820513vw;
    margin-top: 7.6923076923vw;
  }
}
.event__info {
  max-width: 861px;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .event__info {
    max-width: 72.0512820513vw;
    margin-top: 7.6923076923vw;
  }
}
.event__btn {
  max-width: 579px;
  margin: 60px auto 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .event__btn {
    max-width: 74.8717948718vw;
    margin-top: 7.6923076923vw;
  }
}
.event__btn a {
  display: block;
  width: 64.9395509499%;
  aspect-ratio: 376/93;
  position: absolute;
  top: 6.4516129032%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .event__btn a {
    width: 100%;
    aspect-ratio: 281/80;
    top: 0;
  }
}

.tour {
  margin-bottom: 140px;
  padding: 80px 20px 0;
}
@media screen and (max-width: 768px) {
  .tour {
    margin-bottom: 15.3846153846vw;
    padding: 15.3846153846vw 3.8461538462vw 0;
  }
}
.tour__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 41px;
  background-image: url("../images/bg-beige.webp");
  background-repeat: repeat;
  background-size: 1200px 600px;
  -webkit-mask: radial-gradient(circle 50px at top left, transparent 49px, black 50px), radial-gradient(circle 50px at top right, transparent 49px, black 50px), radial-gradient(circle 50px at bottom left, transparent 49px, black 50px), radial-gradient(circle 50px at bottom right, transparent 49px, black 50px);
          mask: radial-gradient(circle 50px at top left, transparent 49px, black 50px), radial-gradient(circle 50px at top right, transparent 49px, black 50px), radial-gradient(circle 50px at bottom left, transparent 49px, black 50px), radial-gradient(circle 50px at bottom right, transparent 49px, black 50px);
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
}
@media screen and (max-width: 768px) {
  .tour__inner {
    max-width: 100%;
    padding: 3.8461538462vw;
    -webkit-mask: radial-gradient(circle 8.9743589744vw at top left, transparent 8.7179487179vw, black 8.9743589744vw), radial-gradient(circle 8.9743589744vw at top right, transparent 8.7179487179vw, black 8.9743589744vw), radial-gradient(circle 8.9743589744vw at bottom left, transparent 8.7179487179vw, black 8.9743589744vw), radial-gradient(circle 8.9743589744vw at bottom right, transparent 8.7179487179vw, black 8.9743589744vw);
            mask: radial-gradient(circle 8.9743589744vw at top left, transparent 8.7179487179vw, black 8.9743589744vw), radial-gradient(circle 8.9743589744vw at top right, transparent 8.7179487179vw, black 8.9743589744vw), radial-gradient(circle 8.9743589744vw at bottom left, transparent 8.7179487179vw, black 8.9743589744vw), radial-gradient(circle 8.9743589744vw at bottom right, transparent 8.7179487179vw, black 8.9743589744vw);
    -webkit-mask-composite: source-in, xor;
            mask-composite: intersect;
  }
}
.tour__body {
  max-width: 1049px;
  margin: 0 auto;
  padding: 90px 30px 90px;
  background-image: url("../images/waku-tour.webp");
  background-size: 100% 100%;
  color: #000;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .tour__body {
    max-width: 100%;
    padding: 16.1538461538vw 2.5641025641vw 12.3076923077vw;
    background-image: url("../images/waku-tour-sp.webp");
  }
}
.tour__title {
  max-width: 540px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .tour__title {
    max-width: 66.6666666667vw;
  }
}
.tour__info {
  margin: 82px auto 0;
  max-width: 680px;
}
@media screen and (max-width: 768px) {
  .tour__info {
    margin-top: 15.3846153846vw;
    max-width: 73.0769230769vw;
  }
}
.tour__info .--top {
  display: flex;
  align-items: center;
  padding: 0 20px 18px 20px;
}
@media screen and (max-width: 768px) {
  .tour__info .--top {
    flex-wrap: wrap;
    padding: 0 4.358974359vw 5.8974358974vw;
  }
}
.tour__info .--top span {
  font-weight: bold;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .tour__info .--top span {
    font-size: 4.6153846154vw;
  }
}
@media screen and (max-width: 768px) {
  .tour__info .--top .--loc {
    margin-bottom: 2.5641025641vw;
  }
}
.tour__info .--col {
  display: flex;
  align-items: center;
  padding: 26px 20px;
  border-top: 1px solid #CE8B90;
}
@media screen and (max-width: 768px) {
  .tour__info .--col {
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 5.1282051282vw 3.5897435897vw 7.1794871795vw;
  }
}
.tour__info .--col.--border-bottom {
  border-bottom: 1px solid #CE8B90;
}
.tour__info .--col span {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .tour__info .--col span {
    font-size: 4.1025641026vw;
  }
}
.tour__info .--col .--date span, .tour__info .--col .--time span {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .tour__info .--col .--loc {
    margin-bottom: 1.7948717949vw;
  }
}
.tour__info .--col .--loc span {
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .tour__info .--col .--loc span {
    font-size: 4.6153846154vw;
  }
}
.tour__info .--date {
  width: 32.8125%;
}
@media screen and (max-width: 768px) {
  .tour__info .--date {
    order: 2;
    width: 43.5897435897vw;
  }
}
.tour__info .--time {
  width: 29.375%;
}
@media screen and (max-width: 768px) {
  .tour__info .--time {
    order: 3;
  }
}
.tour__info .--loc {
  width: 37.8125%;
}
@media screen and (max-width: 768px) {
  .tour__info .--loc {
    order: 1;
    width: 100%;
  }
}
.tour__note {
  display: block;
  padding: 20px 20px 0;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .tour__note {
    padding: 7.6923076923vw 1.2820512821vw 0 3.8461538462vw;
    font-size: 4.1025641026vw;
  }
}
.tour__btn {
  margin: 84px auto 0;
  width: 300px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .tour__btn {
    margin-top: 12.8205128205vw;
    width: 58.4615384615vw;
  }
}
.tour__btn a {
  display: block;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.3));
}
.tour__btn .--deco {
  width: 424px;
  position: absolute;
  top: -37px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .tour__btn .--deco {
    position: static;
    margin: 8.9743589744vw auto 0;
    transform: inherit;
    width: 26.6666666667vw;
  }
}/*# sourceMappingURL=base.css.map */