@charset "UTF-8";
@keyframes pulsate {
  0% {
    box-shadow: 0 0 0 1px #A1FF7C, 0 0 4px #48FF00, 0 0 6px #48FF00, 0 0 7px #48FF00, 0 0 16px #48FF00, inset 0 0 4px #48FF00, inset 0 0 6px #48FF00, inset 0 0 7px #48FF00, inset 0 0 12px #48FF00;
  }
  100% {
    box-shadow: 0 0 0 1px #A1FF7C, 0 0 2px #48FF00, 0 0 4px #48FF00, 0 0 6px #48FF00, 0 0 14px #48FF00, inset 0 0 3px #48FF00, inset 0 0 4px #48FF00, inset 0 0 5px #48FF00, inset 0 0 10px #48FF00;
  }
}
@keyframes pulsate-narrow {
  0% {
    box-shadow: inset 0 0 0 1px #A1FF7C, 0 0 4px #48FF00, 0 0 6px #48FF00, inset 0 0 4px #48FF00, inset 0 0 5px #48FF00, inset 0 0 6px #48FF00;
  }
  100% {
    box-shadow: inset 0 0 0 1px #A1FF7C, 0 0 2px #48FF00, 0 0 4px #48FF00, inset 0 0 3px #48FF00, inset 0 0 4px #48FF00, inset 0 0 6px #48FF00;
  }
}
@keyframes pulsate-line {
  0% {
    box-shadow: 0 0 4px #48FF00, 0 0 6px #48FF00, 0 0 7px #48FF00, 0 0 16px #48FF00;
  }
  100% {
    box-shadow: 0 0 1px #48FF00, 0 0 2px #48FF00, 0 0 5px #48FF00, 0 0 14px #48FF00;
  }
}
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 20;
  text-align: center;
  animation: loading 0s forwards;
  animation-delay: 6s;
}

.loading__top {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: calc(50% - 70px);
  background: #000;
  animation: loading-top 2s forwards;
  animation-delay: 4s;
}
.loading__top div {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  animation: loading-top-left 2s forwards;
  animation-delay: 4s;
}
.loading__top div:before {
  content: "";
  position: absolute;
  bottom: -139px;
  left: -69px;
  width: 50%;
  height: 140px;
  background-color: #000;
}
.loading__top div:after {
  content: "";
  position: absolute;
  bottom: -139px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  background-color: #000;
}

.loading__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(50% - 70px);
  background: #000;
  animation: loading-bottom 2s forwards;
  animation-delay: 4s;
}
.loading__bottom div {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  animation: loading-top-right 2s forwards;
  animation-delay: 4s;
}
.loading__bottom div:before {
  content: "";
  position: absolute;
  top: -139px;
  right: -66px;
  width: 50%;
  height: 140px;
  background-color: #000;
}
.loading__bottom div:after {
  content: "";
  position: absolute;
  top: -139px;
  right: calc(50% - 68px);
  width: 140px;
  height: 140px;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background-color: #000;
}

@keyframes loading {
  0% {
    display: block;
  }
  100% {
    display: none;
  }
}
@keyframes loading-top {
  0% {
    top: 0;
  }
  100% {
    top: -100%;
  }
}
@keyframes loading-bottom {
  0% {
    bottom: 0;
  }
  100% {
    bottom: -100%;
  }
}
@keyframes loading-top-left {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
@keyframes loading-top-right {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}
#loading__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 21;
  animation: loading-logo 1s forwards;
  animation-delay: 2.5s;
}

@keyframes loading-logo {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media screen and (min-width: 768px) {
  #loading__logo img {
    width: 320px;
  }
}
@media screen and (max-width: 767px) {
  #loading__logo img {
    width: 48vw;
  }
}
@keyframes a-kv {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
@media screen and (min-width: 768px) {
  .kv {
    padding-top: 100px;
    max-height: calc(100vh - 100px);
  }
  .kv .slide {
    position: relative;
    max-height: calc(100vh - 100px);
  }
  .kv .swiper-slide img {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 100px);
    -o-object-fit: cover;
       object-fit: cover;
    transform: scale(1.15);
  }
  .kv .slide.loaded .swiper-slide-active img {
    transition-delay: 0s;
    animation: a-kv 6.5s linear 0s forwards;
  }
  .kv .swiper-button-prev,
  .kv .swiper-button-next {
    display: none;
  }
  .kv .pagination-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 220px;
    height: 80px;
    background-color: #000;
    z-index: 2;
  }
  .kv .pagination-wrap:after {
    content: "";
    display: block;
    position: absolute;
    top: 1px;
    left: 0;
    transform: translateX(-100%);
    width: 80px;
    height: 80px;
    background-color: #000;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
  }
  .kv .swiper-pagination {
    display: flex;
    justify-content: space-between;
    top: 45%;
    left: auto;
    right: 40px;
    width: 160px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
  }
  .kv .progressbar {
    display: block;
    position: absolute;
    top: 43%;
    right: 70px;
    width: 100px;
    height: 2px;
    margin-top: 10px;
    background: #222;
    overflow: hidden;
    z-index: 2;
  }
  .kv .progressbar_in {
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left center;
    transition-timing-function: linear;
    animation: a-progressbar 6s 2s linear;
  }
  @keyframes a-progressbar {
    0% {
      transform: scaleX(0);
    }
    100% {
      transform: scaleX(1);
    }
  }
  .kv__copy {
    position: absolute;
    left: 80px;
    bottom: 56px;
    z-index: 5;
  }
  .kv__text {
    display: inline;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.79;
    color: #fff;
  }
  .kv__text span {
    display: inline-block;
    padding: 0 10px;
    background-color: #0A0A0A;
  }
  .kv__text span:not(:first-of-type) {
    margin-top: 8px;
  }
  .kv__text span.sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .kv {
    padding-top: 16.8vw;
    max-height: calc(100vh - 16.8vw);
  }
  .kv .slide {
    position: relative;
    max-height: calc(100vh - 16.8vw);
  }
  .kv .swiper-slide img {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 16.8vw);
    -o-object-fit: cover;
       object-fit: cover;
    transform: scale(1.15);
  }
  .kv .slide.loaded .swiper-slide-active img {
    transition-delay: 0s;
    animation: a-kv 6.5s linear 0s forwards;
  }
  .kv .swiper-button-prev,
  .kv .swiper-button-next {
    display: none;
  }
  .kv .pagination-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 33.33vw;
    height: 8.53vw;
    background-color: #000;
    z-index: 2;
  }
  .kv .pagination-wrap:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    width: 8.6vw;
    height: 8.6vw;
    background-color: #000;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
  }
  .kv .swiper-pagination {
    display: flex;
    justify-content: space-between;
    top: 34%;
    left: auto;
    right: 5.87vw;
    width: 24.27vw;
    font-size: 2.67vw;
    font-weight: 700;
    color: #fff;
  }
  .kv .progressbar {
    display: block;
    position: absolute;
    top: 50%;
    right: 11.73vw;
    width: 13.33vw;
    height: 1px;
    background: #222;
    overflow: hidden;
    z-index: 2;
  }
  .kv .progressbar_in {
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left center;
    transition-timing-function: linear;
    animation: a-progressbar 6s 2s linear;
  }
  @keyframes a-progressbar {
    0% {
      transform: scaleX(0);
    }
    100% {
      transform: scaleX(1);
    }
  }
  .kv__copy {
    position: absolute;
    left: 0;
    bottom: 8.53vw;
    z-index: 5;
  }
  .kv__text {
    display: inline;
    font-size: 5.33vw;
    font-weight: 700;
    line-height: 1.8;
    color: #fff;
  }
  .kv__text span {
    display: inline-block;
    padding: 0 3.73vw 0 4.27vw;
    background-color: #0A0A0A;
  }
  .kv__text span:not(:first-of-type) {
    margin-top: 1.33vw;
  }
  .kv__text span.pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .about {
    background-color: #000;
    overflow: hidden;
  }
  .about__inner {
    padding: 100px 0;
  }
  .about__contents {
    margin-top: 80px;
    padding-bottom: 3px;
  }
  .l-about {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .l-about--reverse {
    flex-direction: row-reverse;
  }
  .about__imgbox {
    position: relative;
    padding: 60px 0;
    width: 40%;
  }
  .about__imgbox:before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    width: 101%;
    height: 101%;
    --x-gradient: linear-gradient(90deg, #48FF00 0 24px, transparent 0 calc(100% - 24px), #48FF00 calc(100% - 24px));
    --y-gradient: linear-gradient(#48FF00 0 24px, transparent 0 calc(100% - 24px), #48FF00 calc(100% - 24px));
    background-image: var(--x-gradient), var(--y-gradient), var(--x-gradient), var(--y-gradient);
    background-repeat: no-repeat;
    background-size: 100% 4px, 4px 100%, 100% 4px, 4px 100%;
    background-position: top, right, bottom, left;
    filter: blur(3px);
  }
  .about__imgbox:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    --x-gradient: linear-gradient(90deg, #A1FF7C 0 20px, transparent 0 calc(100% - 20px), #A1FF7C calc(100% - 20px));
    --y-gradient: linear-gradient(#A1FF7C 0 20px, transparent 0 calc(100% - 20px), #A1FF7C calc(100% - 20px));
    background-image: var(--x-gradient), var(--y-gradient), var(--x-gradient), var(--y-gradient);
    background-repeat: no-repeat;
    background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
    background-position: top, right, bottom, left;
  }
  .about__imgbox img {
    display: block;
    margin: 0 auto;
    width: 77.6%;
  }
  .about__text {
    width: 53%;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.06em;
    line-height: 2;
    color: #fff;
  }
  .about__text .small {
    display: inline-block;
    margin-top: 32px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .about {
    background-color: #000;
  }
  .about__inner {
    padding: 0 0 16vw;
  }
  .about__contents {
    margin-top: 10.67vw;
  }
  .l-about {
    text-align: center;
  }
  .about__imgbox {
    position: relative;
    padding: 11.2vw 0;
  }
  .about__imgbox:before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    width: 100.5%;
    height: 101%;
    --x-gradient: linear-gradient(90deg, #48FF00 0 5.33vw, transparent 0 calc(100% - 5.33vw), #48FF00 calc(100% - 5.33vw));
    --y-gradient: linear-gradient(#48FF00 0 5.33vw, transparent 0 calc(100% - 5.33vw), #48FF00 calc(100% - 5.33vw));
    background-image: var(--x-gradient), var(--y-gradient), var(--x-gradient), var(--y-gradient);
    background-repeat: no-repeat;
    background-size: 100% 4px, 4px 100%, 100% 4px, 4px 100%;
    background-position: top, right, bottom, left;
    filter: blur(3px);
  }
  .about__imgbox:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    --x-gradient: linear-gradient(90deg, #A1FF7C 0 5.33vw, transparent 0 calc(100% - 5.33vw), #A1FF7C calc(100% - 5.33vw));
    --y-gradient: linear-gradient(#A1FF7C 0 5.33vw, transparent 0 calc(100% - 5.33vw), #A1FF7C calc(100% - 5.33vw));
    background-image: var(--x-gradient), var(--y-gradient), var(--x-gradient), var(--y-gradient);
    background-repeat: no-repeat;
    background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
    background-position: top, right, bottom, left;
  }
  .about__imgbox img {
    display: block;
    margin: 0 auto;
    width: 64vw;
  }
  .about__text {
    margin-top: 16vw;
    font-size: 4.8vw;
    text-align: left;
    font-weight: 300;
    letter-spacing: 0.06em;
    line-height: 2;
    color: #fff;
  }
  .about__text .small {
    display: inline-block;
    margin-top: 8.53vw;
    font-size: 3.73vw;
  }
}
.blinkingDetailsBgTrigger {
  opacity: 0;
}

.blinkingDetailsBg {
  animation-name: blinkingDetailsBgAnime;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}

@keyframes blinkingDetailsBgAnime {
  0%, 40%, 60%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@media screen and (min-width: 768px) {
  .details {
    position: relative;
    background-color: #000;
  }
  .details:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(71, 255, 0, 0.08);
  }
  .details__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
    overflow: hidden;
  }
  .details__bg:before {
    content: "";
    display: block;
    position: absolute;
    top: -10px;
    left: -1%;
    width: 102%;
    height: 260px;
    background: linear-gradient(#48FF00 0, #000 100%);
    animation: pulsate-bg 8s infinite alternate none;
    filter: blur(15px);
  }
  .details__bg:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -10px;
    left: -1%;
    width: 102%;
    height: 260px;
    background: linear-gradient(#000 0, #48FF00 100%);
    animation: pulsate-bg 8s infinite alternate none;
    filter: blur(15px);
  }
  @keyframes pulsate-bg {
    0% {
      height: 260px;
    }
    50% {
      height: 300px;
    }
    70% {
      height: 290px;
    }
    90% {
      height: 300px;
    }
    100% {
      height: 300px;
    }
  }
  .details__net {
    position: relative;
    background-image: url(../images/top/bg_net.png);
    background-size: 720px auto;
    z-index: 1;
  }
  .details__inner {
    padding: 150px 0 200px;
  }
  .detail:not(:first-of-type) {
    margin-top: 40px;
  }
  .main-btn {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 200px;
    cursor: pointer;
    transition: 0.3s;
  }
  .main-btn:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    mix-blend-mode: normal;
    z-index: 1;
  }
  .main-btn .font-en {
    position: relative;
    z-index: 2;
  }
  .main-btn .btn-icon__wrapper {
    position: absolute;
    top: 50%;
    right: 9.76%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    z-index: 2;
  }
  .main-btn .btn-icon {
    position: absolute;
    top: 50%;
    right: 9.76%;
    transform: translateY(-50%) rotate(90deg);
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    z-index: 2;
    transition: 0.3s;
  }
  .main-btn .btn-icon:before {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%) rotate(0);
    width: 1px;
    height: 20px;
    background-color: #fff;
    transition: 0.3s;
  }
  .main-btn .btn-icon:after {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    width: 1px;
    height: 20px;
    background-color: #fff;
    transition: 0.3s;
  }
  .main-btn.n01 .main-btn__inner {
    background-image: url(../images/top/img_details-01-4.png);
    background-size: 100%;
    background-position: center 57%;
  }
  .main-btn.n02 .main-btn__inner {
    background-image: url(../images/top/img_details-02-1.png);
    background-size: 100%;
    background-position: center 35%;
  }
  .main-btn.n03 .main-btn__inner {
    background-image: url(../images/top/img_details-03.png);
    background-size: 100%;
    background-position: center 62%;
  }
  .main-btn .btn-icon__inner {
    display: block;
    width: 100%;
    height: 100%;
  }
  .detail.js-open .main-btn:hover {
    filter: none;
  }
  .detail.js-open .main-btn .btn-icon:after {
    transform: translate(-50%, 0);
  }
  .main-btn__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
  }
  .main-btn__inner:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #41403F;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    mix-blend-mode: multiply;
  }
  .sub-btn {
    position: relative;
    padding: 15px;
    background-color: #000;
    text-align: center;
    font-size: 24px;
    color: #48FF00;
    cursor: pointer;
  }
  .sub-btn .btn-icon {
    display: inline-block;
    position: relative;
    margin-right: 16px;
    width: 20px;
    height: 20px;
  }
  .sub-btn .btn-icon:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 2px;
    height: 26px;
  }
  .sub-btn .btn-icon:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 2px;
    height: 26px;
    background-color: #48FF00;
  }
  .detailbox {
    position: relative;
    top: -40px;
    display: none;
  }
  .detail__border {
    position: relative;
    margin: 40px auto 0;
  }
  .detail__inner {
    position: relative;
    padding: 100px 10.9% 100px;
    width: 100%;
    background-color: #000;
  }
  .detail__inner > img {
    width: 100%;
  }
  .detail__logo {
    margin-top: 112px;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    color: #fff;
  }
  .detail:first-of-type .detail__logo img {
    width: 400px;
  }
  .detail:nth-of-type(2) .detail__logo img {
    width: 560px;
  }
  .detail__text {
    margin-top: 40px;
    font-size: 18px;
    letter-spacing: 0.06em;
    line-height: 2;
    text-align: center;
    font-weight: 300;
    color: #fff;
  }
  .detail__text--n03 {
    text-align: left;
  }
  .detail__text .text-small {
    font-size: 12px;
  }
  .detail__contents:not(:first-of-type) {
    margin-top: 100px;
  }
  .subttl {
    position: relative;
    padding: 8px 0 8px;
  }
  .subttl__text {
    display: block;
    font-size: 24px;
    text-align: center;
    font-weight: 500;
    color: #48FF00;
  }
  .menu {
    text-align: center;
  }
  .menu img {
    margin-top: 60px;
    width: 100%;
  }

  .menu__img-box{
    position: relative;
  }
  .modal-btn__wrapper.js-btn .modal-menu{
    pointer-events: none
  }
  .menu__img-box .modal-btn__wrapper{
    display: block;
    position: relative;
    margin-inline: auto;
    width: 76%;
    transform-origin: bottom;
    transition: opacity .3s, scale .3s, right .3s, left .3s, translate .3s;
    filter: drop-shadow(0 0 60px rgba(0, 0, 0, 0.3));
  }
  .menu__img-box .modal-btn__wrapper.js-btn{
    position: absolute;
    scale: .27;
    cursor: pointer;
    bottom: 0;
    z-index: 1;
  }
  .menu__img-box .modal-btn__wrapper.js-btn:hover{
    opacity: 0.8;
  }
  .menu__img-box .modal-btn__wrapper.n01{
    left: 0;
    margin-left: 0;
  }
  .menu__img-box .modal-btn__wrapper.js-btn.n01{
    left: -27.5%;
  }
  .menu__img-box .modal-btn__wrapper.n02{
    right: 0;
    margin-right: 0;
  }
  .menu__img-box .modal-btn__wrapper.js-btn.n02{
    right: -27.5%;
  }

  .pdf__exptext {
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: 0.06em;
    color: #fff;
  }
  .pdf__exptext svg {
    margin-left: 7px;
    width: 14px;
  }
  .floor-guide {
    text-align: center;
  }
  .floor-guide__textbox {
    margin-top: 60px;
  }
  .floor-guide__open {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: #fff;
  }
  .floor-guide__open dt {
    font-weight: 300;
  }
  .floor-guide__open dt:not(:first-of-type) {
    margin-left: 20px;
  }
  .floor-guide__note {
    margin-top: 24px;
    font-size: 12px;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.06em;
    line-height: 2;
    color: #fff;
  }
  .floor-guide__map img {
    margin-top: 60px;
    width: 60%;
  }
  .l-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .detail__textbox {
    width: 62.5%;
  }
  .detail__linkbox {
    margin-top: 32px;
    cursor: pointer;
  }
  .detail__link {
    display: flex;
    align-items: center;
    font-size: 20px;
    letter-spacing: 0.06em;
    line-height: 2;
    font-weight: 300;
    color: #fff;
    transition: 0.3s;
  }
  .detail__link:hover {
    color: #48FF00;
  }
  .detail__link:hover svg {
    fill: #48FF00;
  }
  .detail__linkbox svg {
    margin-top: 3px;
    margin-left: 16px;
    transition: 0.3s;
    fill: #fff;
  }
  .detail__imgbox {
    width: 30%;
  }
  .detail__imgbox img {
    width: 100%;
  }
  .payment__contents {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 4.12%;
         column-gap: 4.12%;
    row-gap: 37px;
    padding: 40px 36px;
  }
  .payment__subttl {
    font-size: 16px;
    text-align: left;
    font-weight: 700;
    color: #fff;
  }
  .payment__subttl .font-en {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 300;
    color: #fff;
  }
  .payment__kind {
    justify-items: center;
    align-items: center;
    margin-top: 16px;
    padding: 20px;
    background-color: #fff;
  }
  .payment__kind img {
    display: block;
    margin: 0 auto;
    width: 100%;
  }
  .payment__kind--point img {
    width: 35.3%;
  }
  .payment__kind--cash img {
    width: 41.6%;
  }
  .col-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 12.3%;
         column-gap: 12.3%;
    row-gap: 20px;
  }
  .col3-2 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    -moz-column-gap: 12.3%;
         column-gap: 12.3%;
    row-gap: 20px;
  }
  .col3-2 img:first-of-type {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .col3-2 img:nth-of-type(2) {
    grid-column: 3/5;
    grid-row: 1/2;
  }
  .col3-2 img:nth-of-type(3) {
    grid-column: 5/7;
    grid-row: 1/2;
  }
  .col3-2 img:nth-of-type(4) {
    grid-column: 1/4;
    grid-row: 2/3;
  }
  .col3-2 img:nth-of-type(5) {
    grid-column: 4/7;
    grid-row: 2/3;
  }
  .col3-2 img:nth-of-type(6) {
    grid-column: 1/4;
    grid-row: 3/4;
  }
  .col3-2 img:nth-of-type(7) {
    grid-column: 4/7;
    grid-row: 3/4;
  }
  .payment__note {
    margin-top: 12px;
    font-size: 12px;
    text-align: left;
    line-height: 1.83;
    font-weight: 300;
    color: #fff;
  }
  .teams-goods {
    margin-top: 67px;
  }
  .teams-goods__contents:not(:first-of-type) {
    margin-top: 87px;
  }
  .teams-goods__ttl {
    font-size: 18px;
    text-align: center;
    color: #48FF00;
  }
  .teams-goods__light {
    position: relative;
    font-size: 20px;
    color: #A1FF7C;
  }
  .teams-goods__light--left {
    margin-right: 6px;
  }
  .teams-goods__light--left:before {
    content: "［";
    display: block;
    position: absolute;
    top: 2px;
    left: -2px;
    font-weight: bold;
    filter: blur(2px);
    font-size: 22px;
    color: #48FF00;
  }
  .teams-goods__light--right {
    margin-left: 6px;
  }
  .teams-goods__light--right:before {
    content: "］";
    display: block;
    position: absolute;
    top: 2px;
    right: -2px;
    font-weight: bold;
    filter: blur(2px);
    font-size: 22px;
    color: #48FF00;
  }
  .teams {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .team {
    margin-top: 60px;
    width: calc(33.3333333333% - 26.6666666667px);
  }
  .team:not(:nth-of-type(3n+1)) {
    margin-left: 40px;
  }
  .team__img {
    transition: 0.3s;
    width: 100%;
  }
  .team__name {
    margin-top: 12px;
  }
  .team__sns {
    display: inline-block;
    transition: 0.3s;
  }
  .team__sns + svg {
    position: relative;
    top: -5px;
    margin-left: 10px;
    width: 15px;
    height: 15px;
    transition: 0.3s;
    fill: #fff;
  }
  .team__sns:hover {
    color: #48FF00;
  }
  .team__sns:hover + svg {
    fill: #48FF00;
  }
  .team__name,
  .team__sns {
    font-size: 16px;
    line-height: 1.625;
    font-weight: 300;
    color: #fff;
  }
  .goods {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .goods__img {
    margin-top: 60px;
    width: 47.5%;
    transition: 0.3s;
  }
  .goods__img:nth-of-type(n+3){
    margin-top: 33px;
  }
  #modal-floor,
  #modal-menu,
  #modal-menu-morning,
  #modal-floor-goods {
    display: none;
  }
  .modaal-content-container {
    padding: 0;
  }
  .modaal-content-container img {
    width: 100%;
  }
  .modaal-container {
    background-color: #0A0A0A;
  }

  .detail-slider-wrapper {
    position: relative;
  }
  .detail-slider-wrapper .detail-slider {
    overflow: hidden;
  }
  .detail-slider-wrapper .swiper-slide {
    width: 100%;
  }
  .detail-slider-wrapper .swiper-slide img {
    width: 100%;
  }
  .detail-slider-wrapper .detail-slider-pagenation {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: -32px;
    z-index: 1;
  }
  .detail-slider-wrapper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.49);
    opacity: 1;
  }
  .detail-slider-wrapper .swiper-pagination-bullet-active {
    background: #48FF00;
  }
  .detail-slider-wrapper .detail-slider-button-prev,
  .detail-slider-wrapper .detail-slider-button-next {
    position: absolute;
    top: 46%;
    width: 32px;
    height: 32px;
    background-color: #000;
    z-index: 1;
    cursor: pointer;
  }
  .detail-slider-wrapper .detail-slider-button-prev .detail-slider-button-inner,
  .detail-slider-wrapper .detail-slider-button-next .detail-slider-button-inner {
    display: block;
    width: 100%;
    height: 100%;
  }
  .detail-slider-wrapper .detail-slider-button-prev .detail-slider-button-inner:before,
  .detail-slider-wrapper .detail-slider-button-next .detail-slider-button-inner:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 1px solid #48FF00;
    border-right: 1px solid #48FF00;
  }
  .detail-slider-wrapper .detail-slider-button-prev {
    left: 0;
    transform: translateX(-50%);
  }
  .detail-slider-wrapper .detail-slider-button-prev .detail-slider-button-inner:before {
    transform: translate(-28%, -50%) rotate(225deg);
  }
  .detail-slider-wrapper .detail-slider-button-prev .detail-slider-button-inner:after {
    transform: translate(-28%, -50%) rotate(225deg);
  }
  .detail-slider-wrapper .detail-slider-button-next {
    right: 0;
    transform: translateX(50%);
  }
  .detail-slider-wrapper .detail-slider-button-next .detail-slider-button-inner:before {
    transform: translate(-72%, -50%) rotate(45deg);
  }
  .detail-slider-wrapper .detail-slider-button-next .detail-slider-button-inner:after {
    transform: translate(-72%, -50%) rotate(45deg);
  }
  .main-btn:hover,
  .detail.js-open .main-btn {
    position: relative;
  }
  .main-btn:hover:before,
  .detail.js-open .main-btn:before {
    background-color: #48FF00;
    mix-blend-mode: multiply;
  }
  .main-btn:hover:after,
  .detail.js-open .main-btn:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 0 1px #A1FF7C, 0 0 4px #48FF00, 0 0 6px #48FF00, 0 0 7px #48FF00, 0 0 16px #48FF00, inset 0 0 4px #48FF00, inset 0 0 6px #48FF00, inset 0 0 7px #48FF00, inset 0 0 12px #48FF00;
    animation: pulsate 1.5s infinite alternate;
  }
  .main-btn:hover.n01 .main-btn__inner,
  .detail.js-open .main-btn.n01 .main-btn__inner {
    background-size: 120%;
  }
  .main-btn:hover.n02 .main-btn__inner,
  .detail.js-open .main-btn.n02 .main-btn__inner {
    background-size: 120%;
  }
  .main-btn:hover.n03 .main-btn__inner,
  .detail.js-open .main-btn.n03 .main-btn__inner {
    background-size: 120%;
  }
  .main-btn:hover .main-btn__inner,
  .detail.js-open .main-btn .main-btn__inner {
    position: relative;
    color: #48FF00;
  }
  .main-btn:hover .main-btn__inner .btn-icon,
  .detail.js-open .main-btn .main-btn__inner .btn-icon {
    border-color: #A1FF7C;
    box-shadow: inset 0 0 0 1px #A1FF7C, 0 0 4px #48FF00, 0 0 6px #48FF00, inset 0 0 4px #48FF00, inset 0 0 5px #48FF00, inset 0 0 6px #48FF00;
    animation: pulsate-narrow 1.5s infinite alternate;
  }
  .main-btn:hover .main-btn__inner .btn-icon:before,
  .detail.js-open .main-btn .main-btn__inner .btn-icon:before {
    transform: translateX(-50%) rotate(360deg);
    background-color: #A1FF7C;
    box-shadow: 0 0 4px #48FF00, 0 0 6px #48FF00;
  }
  .main-btn:hover .main-btn__inner .btn-icon:after,
  .detail.js-open .main-btn .main-btn__inner .btn-icon:after {
    transform: translateX(-50%) rotate(450deg);
    background-color: #A1FF7C;
    box-shadow: 0 0 4px #48FF00, 0 0 6px #48FF00;
  }
  .detail.js-open .main-btn:after {
    animation: pulsate 1.5s infinite alternate;
    animation-delay: 0.6s;
  }
  .detail.js-open .main-btn .main-btn__inner .btn-icon:before {
    transform: translateX(-50%) rotate(720deg);
  }
  .detail.js-open .main-btn .main-btn__inner .btn-icon:after {
    transform: translateX(-50%) rotate(720deg);
  }
  .detail.js-open .main-btn .main-btn__inner .btn-icon__inner:before {
    transform: translateX(-50%) rotate(720deg);
  }
  .detail.js-open .main-btn .main-btn__inner .btn-icon__inner:after {
    transform: translateX(-50%) rotate(720deg);
  }
  .detail__inner {
    box-shadow: 0 0 0 1px #A1FF7C, 0 0 4px #48FF00, 0 0 6px #48FF00, 0 0 7px #48FF00, 0 0 16px #48FF00, inset 0 0 4px #48FF00, inset 0 0 6px #48FF00, inset 0 0 7px #48FF00, inset 0 0 12px #48FF00;
    animation: pulsate 1.5s infinite alternate;
  }
  .detail-slider-button-prev,
  .detail-slider-button-next {
    box-shadow: inset 0 0 0 1px #A1FF7C, 0 0 4px #48FF00, 0 0 6px #48FF00, inset 0 0 4px #48FF00, inset 0 0 5px #48FF00, inset 0 0 6px #48FF00;
    animation: pulsate-narrow 1.5s infinite alternate;
  }
  .subttl:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #A1FF7C;
    box-shadow: 0 0 4px #48FF00, 0 0 6px #48FF00, 0 0 7px #48FF00, 0 0 16px #48FF00;
    animation: pulsate-line 1.5s infinite alternate;
  }
  .subttl:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #A1FF7C;
    box-shadow: 0 0 4px #48FF00, 0 0 6px #48FF00, 0 0 7px #48FF00, 0 0 16px #48FF00;
    animation: pulsate-line 1.5s infinite alternate;
  }
  .sub-btn {
    box-shadow: 0 0 0 1px #A1FF7C, 0 0 4px #48FF00, 0 0 6px #48FF00, 0 0 7px #48FF00, 0 0 16px #48FF00, inset 0 0 4px #48FF00, inset 0 0 6px #48FF00, inset 0 0 7px #48FF00, inset 0 0 12px #48FF00;
    animation: pulsate 1.5s infinite alternate;
  }
  .sub-btn .btn-icon:before,
  .sub-btn .btn-icon:after {
    background: #A1FF7C;
    box-shadow: 0 0 4px #48FF00, 0 0 6px #48FF00;
  }
  .detail-slider-button-inner {
    display: block;
    width: 100%;
    height: 100%;
  }
  .detail-slider-button-inner:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 1px solid #48FF00;
    border-right: 1px solid #48FF00;
  }
  .detail-slider-button-inner:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #48FF00;
    border-right: 2px solid #48FF00;
    filter: blur(3px);
  }
}
@media screen and (max-width: 767px) {
  .details {
    position: relative;
    background-color: #000;
  }
  .details:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(71, 255, 0, 0.08);
  }
  .details__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
    overflow: hidden;
  }
  .details__bg:before {
    content: "";
    display: block;
    position: absolute;
    top: -2.67vw;
    left: 50%;
    width: 120%;
    height: 35vw;
    transform: translateX(-50%);
    background: linear-gradient(#48FF00 0, #000 100%);
    animation: pulsate-bg 8s infinite alternate none;
    filter: blur(15px);
  }
  .details__bg:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -2.67vw;
    left: 50%;
    width: 120%;
    height: 35vw;
    transform: translateX(-50%);
    background: linear-gradient(#000 0, #48FF00 100%);
    animation: pulsate-bg 8s infinite alternate none;
    filter: blur(15px);
  }
  @keyframes pulsate-bg {
    0% {
      height: 35vw;
    }
    50% {
      height: 46vw;
    }
    70% {
      height: 43vw;
    }
    90% {
      height: 46vw;
    }
    100% {
      height: 46vw;
    }
  }
  .details__net {
    position: relative;
    background-image: url(../images/top/bg_net.png);
    background-size: 100% auto;
    z-index: 1;
  }
  .details__inner {
    padding: 24.53vw 0 32vw;
  }
  .detail:not(:first-of-type) {
    margin-top: 7.47vw;
  }
  .main-btn {
    position: relative;
    z-index: 1;
    transition: 0.3s;
  }
  .main-btn:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    mix-blend-mode: normal;
    z-index: 1;
  }
  .main-btn .font-en {
    position: relative;
    z-index: 2;
  }
  .main-btn .btn-icon {
    position: absolute;
    top: 50%;
    right: 5.33vw;
    transform: translateY(-50%) rotate(90deg);
    width: 6.67vw;
    height: 6.67vw;
    border: 1px solid #fff;
    z-index: 2;
    transition: 0.3s;
  }
  .main-btn .btn-icon:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 3.33vw;
    background-color: #fff;
  }
  .main-btn .btn-icon:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    width: 1px;
    height: 3.33vw;
    background-color: #fff;
    transition: 0.3s;
  }
  .main-btn.n01 .main-btn__inner {
    background-image: url(../images/top/img_details-01-4.png);
    background-size: 100%;
    background-position: center 66%;
  }
  .main-btn.n02 .main-btn__inner {
    background-image: url(../images/top/img_details-02-1.png);
    background-size: 100%;
    background-position: center 41%;
  }
  .main-btn.n03 .main-btn__inner {
    background-image: url(../images/top/img_details-03.png);
    background-size: 100%;
    background-position: center 80%;
  }
  .detail.js-open .main-btn:hover {
    filter: none;
  }
  .detail.js-open .main-btn .btn-icon:after {
    transform: translate(-50%, -50%);
  }
  .main-btn__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 26.67vw;
    background-size: cover;
    background-repeat: no-repeat;
    font-size: 5.87vw;
    font-weight: 600;
    text-align: center;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
  }
  .main-btn__inner:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #41403F;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    mix-blend-mode: multiply;
  }
  .sub-btn {
    padding: 2.8vw;
    background-color: #000;
    text-align: center;
    font-size: 4.27vw;
    color: #48FF00;
    cursor: pointer;
  }
  .sub-btn .btn-icon {
    display: inline-block;
    position: relative;
    margin-right: 2.67vw;
    width: 3.2vw;
    height: 3.2vw;
  }
  .sub-btn .btn-icon:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 0.53vw;
    height: 4.48vw;
    background-color: #48FF00;
  }
  .sub-btn .btn-icon:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 0.53vw;
    height: 4.48vw;
    background-color: #48FF00;
  }
  .detailbox {
    display: none;
    position: relative;
    top: -5.33vw;
  }
  .detail__inner {
    margin: 0 auto;
    padding: 16vw 7.47vw;
    width: 100%;
    background-color: #000;
  }
  .detail__inner > img {
    width: 100%;
  }
  .detail__logo {
    margin-top: 14.4vw;
    font-size: 5.33vw;
    font-weight: 600;
    text-align: center;
    color: #fff;
  }
  .detail:first-of-type .detail__logo img {
    width: 58.67vw;
  }
  .detail:nth-of-type(2) .detail__logo img {
    width: 70.13vw;
  }
  .detail__text {
    margin-top: 8.53vw;
    font-size: 3.73vw;
    letter-spacing: 0.02em;
    line-height: 2;
    font-weight: 300;
    color: #fff;
  }
  .detail__text .text-small {
    font-size: 2.67vw;
  }
  .detail__contents:not(:first-of-type) {
    margin-top: 18.67vw;
  }
  .subttl {
    position: relative;
    padding: 1.5vw 0;
  }
  .subttl__text {
    display: block;
    font-size: 4.27vw;
    text-align: center;
    font-weight: 500;
    color: #48FF00;
  }
  .menu {
    text-align: center;
  }
  .menu img {
    margin-top: 10.67vw;
    width: 100%;
  }

  .menu__img-box{
    position: relative;
  }
  .modal-btn__wrapper.js-btn .modal-menu{
    pointer-events: none
  }
  .menu__img-box .modal-btn__wrapper{
    display: block;
    position: relative;
    margin-inline: auto;
    width: 76%;
    transform-origin: bottom;
    transition: opacity .3s, scale .3s, right .3s, left .3s, translate .3s;
    filter: drop-shadow(0 0 60px rgba(0, 0, 0, 0.3));
  }
  .menu__img-box .modal-btn__wrapper.js-btn{
    position: absolute;
    scale: .27;
    cursor: pointer;
    bottom: 0;
    z-index: 1;
  }
  .menu__img-box .modal-btn__wrapper.js-btn:hover{
    opacity: 0.8;
  }
  .menu__img-box .modal-btn__wrapper.n01{
    left: 0;
    margin-left: 0;
  }
  .menu__img-box .modal-btn__wrapper.js-btn.n01{
    left: -27.5%;
  }
  .menu__img-box .modal-btn__wrapper.n02{
    right: 0;
    margin-right: 0;
  }
  .menu__img-box .modal-btn__wrapper.js-btn.n02{
    right: -27.5%;
  }

  .pdf__exptext {
    margin-top: 2.67vw;
    font-size: 3.2vw;
    letter-spacing: 0.06em;
    color: #fff;
  }
  .pdf__exptext svg {
    margin-left: 2.13vw;
    width: 3.41vw;
  }
  .floor-guide {
    text-align: center;
  }
  .floor-guide__textbox {
    margin-top: 10.67vw;
  }
  .floor-guide__open {
    display: grid;
    grid-template-columns: auto auto;
    width: 80%;
    margin: 0 auto;
    font-size: 4vw;
    line-height: 1.4;
    font-weight: 300;
    color: #fff;
  }
  .floor-guide__open dt {
    margin-right: 6vw;
    text-align: right;
    font-weight: 300;
  }
  .floor-guide__open dd {
    text-align: left;
  }
  .floor-guide__note {
    margin-top: 5.33vw;
    font-size: 3.2vw;
    text-align: left;
    font-weight: 300;
    letter-spacing: 0.06em;
    line-height: 2;
    color: #fff;
  }
  .floor-guide__map img {
    margin-top: 10.67vw;
    width: 100%;
  }
  .l-detail {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  .detail__linkbox {
    display: flex;
    align-items: flex-end;
    transition: 0.3s;
    cursor: pointer;
  }
  .detail__linkbox:hover {
    opacity: 0.6;
  }
  .detail__link {
    margin-top: 8.53vw;
    font-size: 3.73vw;
    letter-spacing: 0.06em;
    line-height: 2;
    font-weight: 300;
    color: #fff;
  }
  .detail__linkbox svg {
    margin-bottom: 1vw;
    margin-left: 2.67vw;
    width: 3.93vw;
    fill: #fff;
  }
  .detail__imgbox {
    margin: 8.53vw auto 0;
    width: 42.67vw;
  }
  .detail__imgbox img {
    width: 100%;
  }
  .payment__contents {
    padding: 10.67vw 0;
  }
  .payment-box:not(:first-of-type) {
    margin-top: 10.67vw;
  }
  .payment__subttl {
    font-size: 4.27vw;
    text-align: left;
    font-weight: 700;
    color: #fff;
  }
  .payment__subttl .font-en {
    display: block;
    margin-top: 1.07vw;
    font-size: 3.2vw;
    font-weight: 300;
    color: #fff;
  }
  .payment__kind {
    justify-items: center;
    align-items: center;
    margin-top: 4.27vw;
    padding: 5.33vw;
    background-color: #fff;
  }
  .payment__kind img {
    display: block;
    margin: 0 auto;
    width: 100%;
  }
  .payment__kind--point img {
    width: 16.8vw;
  }
  .payment__kind--cash img {
    width: 20vw;
  }
  .col-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4.27vw;
  }
  .col3-2 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4.27vw;
  }
  .col3-2 img:first-of-type {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .col3-2 img:nth-of-type(2) {
    grid-column: 3/5;
    grid-row: 1/2;
  }
  .col3-2 img:nth-of-type(3) {
    grid-column: 5/7;
    grid-row: 1/2;
  }
  .col3-2 img:nth-of-type(4) {
    grid-column: 1/4;
    grid-row: 2/3;
  }
  .col3-2 img:nth-of-type(5) {
    grid-column: 4/7;
    grid-row: 2/3;
  }
  .col3-2 img:nth-of-type(6) {
    grid-column: 1/4;
    grid-row: 3/4;
  }
  .col3-2 img:nth-of-type(7) {
    grid-column: 4/7;
    grid-row: 3/4;
  }
  .payment__note {
    margin-top: 3.2vw;
    font-size: 3.2vw;
    text-align: left;
    line-height: 1.83;
    font-weight: 300;
    color: #fff;
  }
  .teams-goods__contents {
    margin-top: 11.47vw;
  }
  .teams-goods__ttl {
    font-size: 3.73vw;
    text-align: center;
    color: #48FF00;
  }
  .teams-goods__light {
    position: relative;
    top: 0.7vw;
    font-size: 5.33vw;
    color: #A1FF7C;
  }
  .teams-goods__light--left {
    margin-right: 6px;
  }
  .teams-goods__light--left:before {
    content: "［";
    display: block;
    position: absolute;
    top: 2px;
    left: -2px;
    font-weight: bold;
    filter: blur(2px);
    font-size: 5.87vw;
    color: #48FF00;
  }
  .teams-goods__light--right {
    margin-left: 6px;
  }
  .teams-goods__light--right:before {
    content: "］";
    display: block;
    position: absolute;
    top: 2px;
    right: -2px;
    font-weight: bold;
    filter: blur(2px);
    font-size: 5.87vw;
    color: #48FF00;
  }
  .teams {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 5.07vw;
         column-gap: 5.07vw;
  }
  .team {
    margin-top: 6.67vw;
  }
  .team__img {
    transition: 0.3s;
    width: 100%;
  }
  .team__name {
    margin-top: 3.2vw;
  }
  .team a {
    position: relative;
  }
  .team__sns {
    display: inline-block;
    transition: 0.3s;
  }
  .team__sns + svg {
    position: absolute;
    top: 1.3vw;
    right: -4.2vw;
    width: 3.2vw;
    fill: #fff;
  }
  .team__sns:hover {
    color: #48FF00;
  }
  .team__sns:hover + svg {
    fill: #48FF00;
  }
  .team__name,
  .team__sns {
    font-size: 3.73vw;
    line-height: 1.625;
    font-weight: 300;
    color: #fff;
  }
  .goods {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .goods__img {
    margin-top: 10.67vw;
    width: 32.53vw;
    transition: 0.3s;
  }
  .goods__img:nth-of-type(n+3){
    margin-top: 4.67vw;
  }
  #modal-floor,
  #modal-menu,
  #modal-menu-morning,
  #modal-floor-goods {
    display: none;
  }
  .modaal-content-container {
    padding: 0;
  }
  .modaal-content-container img {
    width: 100%;
  }
  .modaal-container {
    background-color: #0A0A0A;
  }

  /* .modal-menu__inner{
    position: relative;
  }
  .modal-menu__img-box{
    position: relative;
    width: 100%;
    transform-origin: bottom;
    transition: opacity .3s, scale .3s, right .3s, left .3s, translate .3s;
    filter: drop-shadow(0 0 60px rgba(0, 0, 0, 0.3));
  }
  .modal-menu__img-box.js-btn{
    position: absolute;
    scale: .1;
    cursor: pointer;
    bottom: -13%;
    z-index: 1;
  }
  .modal-menu__img-box.js-btn:hover{
    opacity: 0.8;
  }
  .modal-menu__img-box.n01{
    left: 0;
  }
  .modal-menu__img-box.js-btn.n01{
    left: -45%;
  }
  .modal-menu__img-box.n02{
    right: 0;
  }
  .modal-menu__img-box.js-btn.n02{
    right: -45%;
  } */

  .detail-slider-wrapper {
    position: relative;
  }
  .detail-slider-wrapper .detail-slider {
    overflow: hidden;
  }
  .detail-slider-wrapper .swiper-slide {
    width: 100%;
  }
  .detail-slider-wrapper .swiper-slide img {
    width: 100%;
  }
  .detail-slider-wrapper .detail-slider-pagenation {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: -4.47vw;
    z-index: 1;
  }
  .detail-slider-wrapper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.49);
    opacity: 1;
  }
  .detail-slider-wrapper .swiper-pagination-bullet-active {
    background: #48FF00;
  }
  .detail-slider-wrapper .detail-slider-button-prev,
  .detail-slider-wrapper .detail-slider-button-next {
    position: absolute;
    top: 41%;
    width: 6.4vw;
    height: 6.4vw;
    background-color: #000;
    z-index: 1;
    cursor: pointer;
  }
  .detail-slider-wrapper .detail-slider-button-prev .detail-slider-button-inner,
  .detail-slider-wrapper .detail-slider-button-next .detail-slider-button-inner {
    display: block;
    width: 100%;
    height: 100%;
  }
  .detail-slider-wrapper .detail-slider-button-prev .detail-slider-button-inner:before,
  .detail-slider-wrapper .detail-slider-button-next .detail-slider-button-inner:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2.13vw;
    height: 2.13vw;
    border-top: 1px solid #A1FF7C;
    border-right: 1px solid #A1FF7C;
  }
  .detail-slider-wrapper .detail-slider-button-prev {
    left: 0;
    transform: translateX(-50%);
  }
  .detail-slider-wrapper .detail-slider-button-prev .detail-slider-button-inner:before {
    transform: translate(-28%, -50%) rotate(225deg);
  }
  .detail-slider-wrapper .detail-slider-button-prev .detail-slider-button-inner:after {
    transform: translate(-28%, -50%) rotate(225deg);
  }
  .detail-slider-wrapper .detail-slider-button-next {
    right: 0;
    transform: translateX(50%);
  }
  .detail-slider-wrapper .detail-slider-button-next .detail-slider-button-inner:before {
    transform: translate(-72%, -50%) rotate(45deg);
  }
  .detail-slider-wrapper .detail-slider-button-next .detail-slider-button-inner:after {
    transform: translate(-72%, -50%) rotate(45deg);
  }
  .detail.js-open .main-btn {
    position: relative;
  }
  .detail.js-open .main-btn:before {
    background-color: #48FF00;
    mix-blend-mode: multiply;
  }
  .detail.js-open .main-btn:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 0 1px #A1FF7C, 0 0 4px #48FF00, 0 0 6px #48FF00, 0 0 7px #48FF00, 0 0 16px #48FF00, inset 0 0 4px #48FF00, inset 0 0 6px #48FF00, inset 0 0 7px #48FF00, inset 0 0 12px #48FF00;
    animation: pulsate 1.5s infinite alternate;
  }
  .detail.js-open .main-btn.n01 .main-btn__inner {
    background-size: 120%;
  }
  .detail.js-open .main-btn.n02 .main-btn__inner {
    background-size: 120%;
  }
  .detail.js-open .main-btn.n03 .main-btn__inner {
    background-size: 120%;
  }
  .detail.js-open .main-btn .main-btn__inner {
    position: relative;
    color: #48FF00;
  }
  .detail.js-open .main-btn .main-btn__inner .btn-icon {
    border: none;
    box-shadow: inset 0 0 0 1px #A1FF7C, 0 0 4px #48FF00, 0 0 6px #48FF00, inset 0 0 4px #48FF00, inset 0 0 5px #48FF00, inset 0 0 6px #48FF00;
    animation: pulsate-narrow 1.5s infinite alternate;
  }
  .detail.js-open .main-btn .main-btn__inner .btn-icon:before {
    transform: translate(-50%, -50%) rotate(360deg);
    background-color: #A1FF7C;
    box-shadow: 0 0 4px #48FF00, 0 0 6px #48FF00;
  }
  .detail.js-open .main-btn .main-btn__inner .btn-icon:after {
    transform: translate(-50%, -50%) rotate(450deg);
    background-color: #A1FF7C;
    box-shadow: 0 0 4px #48FF00, 0 0 6px #48FF00;
  }
  .detail__inner {
    box-shadow: 0 0 0 1px #A1FF7C, 0 0 4px #48FF00, 0 0 6px #48FF00, 0 0 7px #48FF00, 0 0 16px #48FF00, inset 0 0 4px #48FF00, inset 0 0 6px #48FF00, inset 0 0 7px #48FF00, inset 0 0 12px #48FF00;
    animation: pulsate 1.5s infinite alternate;
  }
  .detail-slider-button-prev,
  .detail-slider-button-next {
    box-shadow: inset 0 0 0 1px #A1FF7C, 0 0 4px #48FF00, 0 0 6px #48FF00, inset 0 0 4px #48FF00, inset 0 0 5px #48FF00, inset 0 0 6px #48FF00;
    animation: pulsate-narrow 1.5s infinite alternate;
  }
  .subttl:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #A1FF7C;
    box-shadow: 0 0 4px #48FF00, 0 0 6px #48FF00, 0 0 7px #48FF00, 0 0 16px #48FF00;
    animation: pulsate-line 1.5s infinite alternate;
  }
  .subttl:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #A1FF7C;
    box-shadow: 0 0 4px #48FF00, 0 0 6px #48FF00, 0 0 7px #48FF00, 0 0 16px #48FF00;
    animation: pulsate-line 1.5s infinite alternate;
  }
  .sub-btn {
    box-shadow: 0 0 0 1px #A1FF7C, 0 0 4px #48FF00, 0 0 6px #48FF00, 0 0 7px #48FF00, 0 0 16px #48FF00, inset 0 0 4px #48FF00, inset 0 0 6px #48FF00, inset 0 0 7px #48FF00, inset 0 0 12px #48FF00;
    animation: pulsate 1.5s infinite alternate;
  }
  .sub-btn .btn-icon:before,
  .sub-btn .btn-icon:after {
    background: #A1FF7C;
    box-shadow: 0 0 4px #48FF00, 0 0 6px #48FF00;
  }
  .detail-slider-button-inner {
    display: block;
    width: 100%;
    height: 100%;
  }
  .detail-slider-button-inner:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 1px solid #48FF00;
    border-right: 1px solid #48FF00;
  }
  .detail-slider-button-inner:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #48FF00;
    border-right: 2px solid #48FF00;
    filter: blur(3px);
  }
}
@media screen and (min-width: 768px) {
  .band {
    background-color: #000;
    overflow: hidden;
    padding-bottom: 100px;
  }
  .band__box {
    display: flex;
  }
  .band__box:nth-of-type(2) {
    margin-top: -18px;
  }
  .band__text {
    position: relative;
    margin: 0 15px;
    font-size: 140px;
    white-space: nowrap;
    line-height: 1.2;
    font-weight: 500;
    color: #000;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  }
  .band__text--right {
    transform: translateX(0);
  }
  .band__text--left {
    transform: translateX(-5000);
  }
}
@media screen and (max-width: 767px) {
  .band {
    background-color: #000;
    overflow: hidden;
    padding-bottom: 21.33vw;
  }
  .band__box {
    display: flex;
  }
  .band__box:nth-of-type(2) {
    margin-top: -3vw;
  }
  .band__text {
    position: relative;
    margin: 0 4vw;
    font-size: 16vw;
    white-space: nowrap;
    line-height: 1.2;
    font-weight: 500;
    color: #000;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  }
  .band__text--right {
    transform: translateX(0);
  }
  .band__text--left {
    transform: translateX(-5000);
  }
}
@media screen and (min-width: 768px) {
  .event {
    background-color: #191919;
  }
  .event__inner {
    padding: 100px 0;
    width: clamp(736px, 84.1%, 1170px);
  }
  .l-event {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .event__textbox {
    flex-shrink: 0;
    margin-top: 100px;
    margin-right: 16px;
    width: 45.1%;
    min-width: 462px;
  }
  .event__text {
    margin-top: 80px;
    font-size: 16px;
    letter-spacing: 0.048em;
    line-height: 2;
    font-weight: 300;
    color: #fff;
  }
  .event_xbox {
    margin-top: 100px;
    width: 50%;
  }
  .r-1roi411 {
    border-color: transparent;
  }
}
@media screen and (max-width: 767px) {
  .event {
    background-color: #191919;
  }
  .event__inner {
    padding-top: 21.33vw;
    width: 100%;
  }
  .event__textbox {
    margin: 0 auto;
    width: 85.3%;
  }
  .event__text {
    font-size: 4.27vw;
    letter-spacing: 0.048em;
    line-height: 2;
    font-weight: 300;
    color: #fff;
  }
  .event_xbox {
    margin-top: 16vw;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .floor {
    background-color: #000;
    overflow: hidden;
  }
  .floor img {
    width: 100%;
  }
  .floor__inner {
    padding-bottom: 200px;
  }
}
@media screen and (max-width: 767px) {
  .floor {
    background-color: #000;
  }
  .floor img {
    width: 100%;
  }
  .floor__inner {
    padding-bottom: 32vw;
  }
}
@media screen and (min-width: 768px) {
  .access {
    background-color: #191919;
  }
  .l-access {
    display: flex;
    align-items: stretch;
  }
  .access__map {
    width: 50%;
  }
  .access__map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
  }
  .access__textbox {
    padding: 84px 20px 100px 75px;
    width: 50%;
    color: #fff;
  }
  .access__list {
    margin-top: 80px;
  }
  .access__item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .access__item:not(:first-of-type) {
    margin-top: 32px;
  }
  .access__item:first-of-type .access__icon {
    background-image: url(../images/top/icon_walk.svg);
  }
  .access__item:nth-of-type(2) .access__icon {
    background-image: url(../images/top/icon_adress.svg);
  }
  .access__item:nth-of-type(3) .access__icon {
    background-image: url(../images/top/icon_time.svg);
  }
  .access__icon {
    display: inline-block;
    margin-top: 5px;
    margin-right: 8px;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .access__text {
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 2;
    vertical-align: bottom;
  }
  .time {
    margin-top: 20px;
  }
  .time__item:not(:first-of-type) {
    margin-top: 20px;
  }
  .time__number {
    display: inline-block;
    padding: 0 16px;
    border: 1px solid #fff;
    font-size: 14px;
    line-height: 1.43;
  }
  .time__shop {
    display: inline-block;
    margin-left: 10px;
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 1.625;
  }
  .time__text {
    margin-top: 6px;
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 1.625;
  }
}
@media screen and (max-width: 767px) {
  .access {
    background-color: #191919;
  }
  .l-access {
    display: flex;
    flex-direction: column-reverse;
  }
  .access__map {
    margin-top: 16vw;
    width: 100%;
    height: 56.27vw;
  }
  .access__map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
  }
  .access__textbox {
    padding: 21.33vw 7.47vw 0;
    width: 100%;
    color: #fff;
  }
  .access__item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .access__item:not(:first-of-type) {
    margin-top: 8.53vw;
  }
  .access__item:first-of-type .access__icon {
    background-image: url(../images/top/icon_walk.svg);
  }
  .access__item:nth-of-type(2) .access__icon {
    background-image: url(../images/top/icon_adress.svg);
  }
  .access__item:nth-of-type(3) .access__icon {
    background-image: url(../images/top/icon_time.svg);
  }
  .access__icon {
    display: inline-block;
    margin-right: 2.13VW;
    width: 6.4VW;
    height: 6.4VW;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .access__text {
    font-size: 4.27VW;
    letter-spacing: 0.08em;
    line-height: 1.625;
  }
  .time {
    margin-top: 5.33vw;
  }
  .time__item:not(:first-of-type) {
    margin-top: 5.33vw;
  }
  .time__number {
    display: inline-block;
    padding: 0 4.53vw;
    border: 1px solid #fff;
    font-size: 3.73vw;
    line-height: 1.43;
  }
  .time__shop {
    display: inline-block;
    margin-left: 2.67vw;
    font-size: 4.27vw;
    letter-spacing: 0.08em;
    line-height: 1.625;
  }
  .time__text {
    font-size: 4.27vw;
    letter-spacing: 0.08em;
    line-height: 1.625;
  }
  .time__text span {
    display: block;
    margin-top: 1.6vw;
  }
}
@media screen and (min-width: 768px) {
  .sponsors {
    background-color: #000;
    overflow: hidden;
  }
  .sponsors .section__inner {
    padding: 80px 0 200px;
  }
  .sponsors__inner {
    margin: 0 auto;
    width: 79.1%;
    max-width: 840px;
  }
  .sponsors__logo {
    transition: 0.3s;
    cursor: pointer;
  }
  .sponsors__logo--large {
    margin-top: 80px;
  }
  .sponsors__logo:hover {
    filter: drop-shadow(0 0 20px #fff);
  }
  .sponsors__logo img {
    width: 100%;
  }
  .sponsors__ttl {
    margin-top: 160px;
    font-size: 40px;
    text-align: center;
    font-weight: 600;
    color: #fff;
  }
  .sponsors__logobox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .sponsors {
    background-color: #000;
  }
  .sponsors .section__inner {
    padding: 0 0 32vw;
  }
  .sponsors .section__ttl {
    margin-top: 10.67vw;
  }
  .sponsors__logo {
    transition: 0.3s;
    cursor: pointer;
  }
  .sponsors__logo:hover {
    filter: drop-shadow(0 0 20px #fff);
  }
  .sponsors__logo img {
    width: 100%;
  }
  .sponsors__ttl {
    margin-top: 16vw;
    font-size: 5.87vw;
    text-align: center;
    font-weight: 600;
    color: #fff;
  }
  .sponsors__logobox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5.07vw;
    margin-top: 10.67vw;
  }
}/*# sourceMappingURL=top.css.map */