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

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;
  line-height: 1.6;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #000;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 850px) {
  body {
    font-size: 4.2666666667vw;
  }
}

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

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;
  }
}
.op {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 300;
  transition: opacity 1.5s, transform 1.5s;
}
.op.fadeout {
  opacity: 0;
  transform: scale(1.5);
  pointer-events: none;
}
.op__body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.op__logo {
  width: 168px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .op__logo {
    width: 32vw;
  }
}
.op__logo .--ripple {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: blur(3px);
}
.op__logo .--ripple::before, .op__logo .--ripple::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 3px solid #ccc;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.25);
  opacity: 0;
  pointer-events: none;
}
.op__logo.on img {
  animation: pulse 2.4s ease-in-out 0.28s 1;
}
.op__logo.on .--ripple::before {
  animation: ripple 2.4s ease-out 0s 1;
}
.op__logo.on .--ripple::after {
  animation: ripple 2.4s ease-out 0.72s 1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.06);
  }
  20% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.06);
  }
  40% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.7;
  }
  80% {
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}
.bg-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
.bg-fixed::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.bg-fixed img, .bg-fixed video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

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

#wrapper {
  overflow: hidden;
}

.header__logo {
  width: 284px;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 44.2666666667vw;
    top: 5.3333333333vw;
  }
}
.header__btn {
  position: fixed;
  top: 40px;
  right: 40px;
  display: block;
  width: 50px;
  height: 45px;
  z-index: 200;
}
@media screen and (max-width: 768px) {
  .header__btn {
    width: 10.9333333333vw;
    height: 10.9333333333vw;
    top: 3.7333333333vw;
    right: 5.3333333333vw;
  }
}
.header__btn.open .--line:first-of-type {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.header__btn.open .--line:nth-of-type(2) {
  opacity: 0;
}
.header__btn.open .--line:nth-of-type(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header__btn .--line {
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #BC850E 0%, #BC850E 15%, #FBE575 60%, #FFF7A9 72%, #FBE575 83%, #BC850E 99%);
  position: absolute;
  transition: transform 0.2s, opacity 0.2s, top 0.2s, left 0.2s;
}
@media screen and (max-width: 768px) {
  .header__btn .--line {
    width: 10.9333333333vw;
  }
}
.header__btn .--line:first-of-type {
  top: calc(50% - 12px);
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .header__btn .--line:first-of-type {
    top: calc(50% - 2.6666666667vw);
  }
}
.header__btn .--line:nth-of-type(2) {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.header__btn .--line:nth-of-type(3) {
  top: calc(50% + 12px);
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .header__btn .--line:nth-of-type(3) {
    top: calc(50% + 2.6666666667vw);
  }
}
.header__menu {
  position: fixed;
  top: 0;
  right: 0;
  min-width: 347px;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.95);
  display: none;
}
@media screen and (max-width: 768px) {
  .header__menu {
    min-width: 100%;
    width: 100%;
  }
}
.header__menu-inner {
  width: 100%;
  height: 100%;
  padding: 30px 5px;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .header__menu-inner {
    min-height: auto;
    padding: 10.6666666667vw 1.3333333333vw;
  }
}
.header__menu-inner ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.header__menu-inner ul li {
  width: 100%;
}
.header__menu-inner ul li:not(:first-of-type) {
  margin-top: 20px;
  padding-top: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header__menu-inner ul li:not(:first-of-type) {
    margin-top: 5.3333333333vw;
    padding-top: 5.3333333333vw;
  }
}
.header__menu-inner ul li:not(:first-of-type) img {
  width: 95px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .header__menu-inner ul li:not(:first-of-type) img {
    width: 20vw;
  }
}
.header__menu-inner ul li a {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .header__menu-inner ul li a {
    font-size: 5.3333333333vw;
  }
}
.header__menu-inner ul li a span {
  display: block;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(90deg, #BC850E 0%, #BC850E 15%, #FBE575 60%, #FFF7A9 72%, #FBE575 83%, #BC850E 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  position: relative;
}
.header__menu-inner ul li a span::before, .header__menu-inner ul li a span::after {
  content: "";
  width: 19px;
  height: 20px;
  background-image: url("../images/star1.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .header__menu-inner ul li a span::before, .header__menu-inner ul li a span::after {
    width: 5.0666666667vw;
    height: 5.3333333333vw;
  }
}
.header__menu-inner ul li a span::before {
  right: calc(100% + 16px);
}
@media screen and (max-width: 768px) {
  .header__menu-inner ul li a span::before {
    right: calc(100% + 2.6666666667vw);
  }
}
.header__menu-inner ul li a span::after {
  left: calc(100% + 16px);
}
@media screen and (max-width: 768px) {
  .header__menu-inner ul li a span::after {
    left: calc(100% + 2.6666666667vw);
  }
}

.footer {
  background-color: #000;
  padding: 60px 20px;
  font-size: 1.4rem;
}
@media screen and (max-width: 850px) {
  .footer {
    padding: 18.6666666667vw 6.6666666667vw 18.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
}
@media screen and (max-width: 850px) {
  .footer__top {
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 5.3333333333vw;
  }
}
.footer__top > dl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 850px) {
  .footer__top > dl {
    gap: 3.7333333333vw;
  }
}
.footer__top > dl dt {
  padding: 5px 10px;
  border: 1px solid #fff;
  color: #fff;
  line-height: 1;
  width: 155px;
  text-align: center;
}
@media screen and (max-width: 850px) {
  .footer__top > dl dt {
    padding: 1.3333333333vw 2.6666666667vw;
    width: auto;
  }
}
.footer__top > dl dd {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 850px) {
  .footer__top > dl dd {
    gap: 12;
  }
}
.footer__top > dl dd a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
}
@media screen and (max-width: 768px) {
  .footer__top > dl dd a {
    width: 10.1333333333vw;
  }
}
.footer__privacypolicy {
  background-color: #fff;
  border: 1px solid #fff;
  color: #000;
  padding: 5px 10px;
  line-height: 1;
  width: 155px;
  text-align: center;
}
@media screen and (max-width: 850px) {
  .footer__privacypolicy {
    padding: 1.3333333333vw 2.6666666667vw;
    width: auto;
  }
}
.footer__copyright {
  font-size: 1.1rem;
  color: #A7A7A7;
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 850px) {
  .footer__copyright {
    font-size: 2.9333333333vw;
    margin-top: 10.6666666667vw;
  }
}

.mv {
  padding-top: 150px;
  padding-bottom: 50px;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .mv {
    padding-top: 26.6666666667vw;
    padding-bottom: 24vw;
  }
}
.mv__copy {
  display: block;
  max-width: 640px;
  margin: auto auto 0;
}
@media screen and (max-width: 768px) {
  .mv__copy {
    max-width: 100%;
    width: 78.6666666667vw;
  }
}

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

.section-title {
  position: relative;
}
.section-title__deco {
  width: 100%;
  min-width: 1440px;
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  mix-blend-mode: screen;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .section-title__deco {
    min-width: auto;
    top: -28.8vw;
  }
}
.section-title .--about {
  width: 163px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section-title .--about {
    width: 37.8666666667vw;
  }
}
.section-title .--products {
  width: 230px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section-title .--products {
    width: 53.6vw;
  }
}
.section-title .--reservation {
  width: 290px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section-title .--reservation {
    width: 68.5333333333vw;
  }
}
.section-title .--movie {
  width: 167px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section-title .--movie {
    width: 37.8666666667vw;
  }
}
.section-title .titleAnim {
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 80%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 0% 100%;
  -webkit-mask-position: left center;
  mask-image: linear-gradient(to right, #000 0%, #000 80%, transparent 100%);
  mask-repeat: no-repeat;
  mask-size: 0% 100%;
  mask-position: left center;
}
.section-title .titleAnim.on {
  animation: imgReveal 1.6s ease forwards;
}

@keyframes imgReveal {
  from {
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
  }
  to {
    -webkit-mask-size: 200% 100%;
    mask-size: 200% 100%;
  }
}
.about {
  padding: 120px 0 150px;
}
@media screen and (max-width: 768px) {
  .about {
    padding: 28.8vw 0 21.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .about .inner {
    padding: 0 7.2vw;
  }
}
.about__desc {
  margin: 70px auto 0;
  max-width: 640px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .about__desc {
    margin-top: 13.3333333333vw;
    max-width: 100%;
  }
}
.about__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin: 40px auto 0;
  font-size: 2rem;
  min-width: 400px;
  height: 82px;
  padding: 10px 20px;
  background-image: url("../images/btn-bg.webp?0914");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .about__btn {
    min-width: 84.5333333333vw;
    height: 20.2666666667vw;
    padding: 1.3333333333vw 4vw;
    margin-top: 10.6666666667vw;
    background-image: url("../images/btn-bg-sp.webp?0914");
  }
}
.about__btn .--top {
  font-size: 2rem;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .about__btn .--top {
    font-size: 4.2666666667vw;
  }
}
.about__btn .--bottom {
  display: block;
  margin-top: 2px;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .about__btn .--bottom {
    font-size: 3.2vw;
    margin-top: 0.5333333333vw;
  }
}

.products {
  padding: 120px 0 150px;
}
@media screen and (max-width: 768px) {
  .products {
    padding: 28.8vw 0 21.3333333333vw;
  }
}
.products__list {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 80px 4.5454545455%;
}
@media screen and (max-width: 768px) {
  .products__list {
    margin-top: 13.3333333333vw;
    gap: 10.6666666667vw;
  }
}
.products__item {
  width: 47.7272727273%;
}
@media screen and (max-width: 768px) {
  .products__item {
    width: 100%;
  }
}
.products__item-top {
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 24px;
}
@media screen and (max-width: 768px) {
  .products__item-top {
    margin-top: 5.3333333333vw;
    gap: 2.1333333333vw 4.2666666667vw;
  }
}
.products__item-top .--text {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .products__item-top .--text {
    font-size: 6.4vw;
  }
}
.products__item-top .--tag {
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: #000;
  line-height: 1;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-color: #fff;
  margin: 0 29px;
  padding: 0 7px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .products__item-top .--tag {
    font-size: 3.7333333333vw;
    height: 7.4666666667vw;
    padding: 0;
    margin: 0 5.3333333333vw;
  }
}
.products__item-top .--tag::before, .products__item-top .--tag::after {
  content: "";
  position: absolute;
  top: 0;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
.products__item-top .--tag::before {
  width: 29px;
  height: 100%;
  background-image: url("../images/cat-left.svg");
  right: calc(100% - 1px);
}
@media screen and (max-width: 768px) {
  .products__item-top .--tag::before {
    width: 7.7333333333vw;
    height: 100%;
  }
}
.products__item-top .--tag::after {
  width: 29px;
  height: 100%;
  background-image: url("../images/cat-right.svg");
  left: calc(100% - 1px);
}
@media screen and (max-width: 768px) {
  .products__item-top .--tag::after {
    width: 7.7333333333vw;
    height: 100%;
    left: calc(100% - 0.8vw);
  }
}
.products__info {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .products__info {
    margin-top: 5.3333333333vw;
  }
}
.products__info dl:not(:first-of-type) {
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .products__info dl:not(:first-of-type) {
    margin-top: 3.7333333333vw;
  }
}
.products__info dl dt {
  text-indent: -1.2em;
  padding-left: 1.2em;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .products__info dl dt {
    font-size: 4vw;
  }
}
.products__info dl dd {
  line-height: 1.4;
  margin-top: 8px;
  padding-left: 1.3em;
}
@media screen and (max-width: 768px) {
  .products__info dl dd {
    margin-top: 2.1333333333vw;
    font-size: 4vw;
  }
}
.products__info dl dd .--price {
  display: block;
}
.products__info dl dd .--price .--small {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .products__info dl dd .--price .--small {
    font-size: 3.2vw;
  }
}
.products__btn {
  margin-top: 40px;
  display: block;
  width: 100%;
  color: #BC850E;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  padding: 17px 40px;
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid transparent;
  -o-border-image: linear-gradient(90deg, #BC850E 0%, #BC850E 15%, #FBE575 60%, #FFF7A9 72%, #FBE575 83%, #BC850E 99%) 1;
     border-image: linear-gradient(90deg, #BC850E 0%, #BC850E 15%, #FBE575 60%, #FFF7A9 72%, #FBE575 83%, #BC850E 99%) 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .products__btn {
    margin-top: 10.6666666667vw;
    padding: 3.7333333333vw 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.products__btn.open .--icon {
  transform: translateY(-50%) rotate(90deg);
}
.products__btn.open .--icon::before {
  opacity: 0;
}
.products__btn .--icon {
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .products__btn .--icon {
    width: 5.0666666667vw;
    height: 5.0666666667vw;
    right: 4.2666666667vw;
  }
}
.products__btn .--icon::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #BC850E;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.3s;
}
.products__btn .--icon::after {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #BC850E;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.3s;
}
.products__ac {
  display: none;
}
.products__ac-inner {
  padding: 30px 20px;
  background-color: rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 768px) {
  .products__ac-inner {
    padding: 10.6666666667vw 3.2vw;
  }
}
.products__ac-inner dl:not(:first-of-type) {
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .products__ac-inner dl:not(:first-of-type) {
    margin-top: 5.3333333333vw;
  }
}
.products__ac-inner dl dt {
  text-indent: -1.2em;
  padding-left: 1.2em;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .products__ac-inner dl dt {
    font-size: 4vw;
  }
}
.products__ac-inner dl dd {
  line-height: 1.4;
  margin-top: 8px;
  padding-left: 1.3em;
}
@media screen and (max-width: 768px) {
  .products__ac-inner dl dd {
    margin-top: 3.2vw;
    font-size: 4vw;
  }
}
.products__ac-inner dl dd .--price {
  display: block;
}
.products__ac-inner dl dd .--price .--small {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .products__ac-inner dl dd .--price .--small {
    font-size: 3.2vw;
  }
}
.products__bottom {
  margin: 80px auto 0;
  max-width: 1080px;
  padding: 80px 20px;
  background-color: rgba(0, 0, 0, 0.9);
  border: 1px solid transparent;
  -o-border-image: linear-gradient(90deg, #BC850E 0%, #BC850E 15%, #FBE575 60%, #FFF7A9 72%, #FBE575 83%, #BC850E 99%) 1;
     border-image: linear-gradient(90deg, #BC850E 0%, #BC850E 15%, #FBE575 60%, #FFF7A9 72%, #FBE575 83%, #BC850E 99%) 1;
}
@media screen and (max-width: 768px) {
  .products__bottom {
    margin-top: 13.3333333333vw;
    padding: 13.3333333333vw 5.3333333333vw;
    max-width: 100%;
  }
}
.products__bottom-inner {
  max-width: 640px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .products__bottom-inner {
    max-width: 100%;
  }
}
.products__bottom-inner h3 {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 2.8rem;
  background: linear-gradient(90deg, #BC850E 0%, #BC850E 15%, #FBE575 60%, #FFF7A9 72%, #FBE575 83%, #BC850E 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 768px) {
  .products__bottom-inner h3 {
    font-size: 5.3333333333vw;
  }
}
.products__bottom-inner ul.--top {
  margin-top: 40px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .products__bottom-inner ul.--top {
    margin-top: 10.6666666667vw;
  }
}
.products__bottom-inner ul.--top li {
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .products__bottom-inner ul.--top li {
    font-size: 4vw;
  }
}
.products__bottom-inner ul.--bottom {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px dashed #fff;
}
@media screen and (max-width: 768px) {
  .products__bottom-inner ul.--bottom {
    margin-top: 8vw;
    padding-top: 8vw;
  }
}
.products__bottom-inner ul.--bottom li {
  text-indent: -1.2em;
  padding-left: 1.2em;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .products__bottom-inner ul.--bottom li {
    font-size: 3.7333333333vw;
  }
}

.reservation {
  padding: 120px 0 150px;
}
@media screen and (max-width: 768px) {
  .reservation {
    padding: 28.8vw 0 21.3333333333vw;
  }
}
.reservation__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin: 80px auto 0;
  font-size: 2rem;
  min-width: 400px;
  height: 82px;
  padding: 10px 20px;
  background-image: url("../images/btn-bg.webp?0914");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .reservation__btn {
    min-width: 84.5333333333vw;
    height: 20.2666666667vw;
    padding: 1.3333333333vw 4vw;
    margin-top: 10.6666666667vw;
    background-image: url("../images/btn-bg-sp.webp?0914");
  }
}
.reservation__btn .--top {
  font-size: 2rem;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .reservation__btn .--top {
    font-size: 4.2666666667vw;
  }
}
.reservation__btn .--bottom {
  display: block;
  margin-top: 2px;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .reservation__btn .--bottom {
    font-size: 3.2vw;
    margin-top: 0.5333333333vw;
  }
}

.movie {
  padding: 120px 0 150px;
}
@media screen and (max-width: 768px) {
  .movie {
    padding: 28.8vw 0 21.3333333333vw;
  }
}
.movie__body {
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .movie__body {
    margin-top: 13.3333333333vw;
  }
}
.movie__btn {
  display: block;
  position: relative;
}
@media (any-hover: hover) {
  .movie__btn:hover {
    filter: none;
  }
  .movie__btn:hover .movie__icon {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.movie__icon {
  width: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, transform 0.3s;
}
@media screen and (max-width: 850px) {
  .movie__icon {
    width: 10.6666666667vw;
  }
}
.movie__thumbnail {
  width: min(64.371257485vw, 860px);
  border: 1px solid transparent;
  -o-border-image: linear-gradient(90deg, #BC850E 0%, #BC850E 15%, #FBE575 60%, #FFF7A9 72%, #FBE575 83%, #BC850E 99%) 1;
     border-image: linear-gradient(90deg, #BC850E 0%, #BC850E 15%, #FBE575 60%, #FFF7A9 72%, #FBE575 83%, #BC850E 99%) 1;
}
@media screen and (max-width: 850px) {
  .movie__thumbnail {
    width: 84vw;
  }
}
.movie .splide__slide {
  margin-right: min(4.1167664671vw, 55px);
}
@media screen and (max-width: 850px) {
  .movie .splide__slide {
    margin-right: 5.3333333333vw;
  }
}
.movie .splide__arrow--prev, .movie .splide__arrow--next {
  background-color: transparent;
  border-radius: 0;
  width: 79px;
  height: 100%;
  opacity: 1;
}
@media screen and (max-width: 1336px) {
  .movie .splide__arrow--prev, .movie .splide__arrow--next {
    width: 5.7833089312vw;
  }
}
@media screen and (max-width: 850px) {
  .movie .splide__arrow--prev, .movie .splide__arrow--next {
    width: 10.6666666667vw;
  }
}
.movie .splide__arrow--prev:hover, .movie .splide__arrow--next:hover {
  opacity: 1;
}
.movie .splide__arrow--prev img, .movie .splide__arrow--prev svg, .movie .splide__arrow--next img, .movie .splide__arrow--next svg {
  display: none;
}
.movie .splide__arrow--prev {
  background-image: url("../images/icon-prev.svg");
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  left: calc(50% - 479px);
}
@media screen and (max-width: 1336px) {
  .movie .splide__arrow--prev {
    left: calc(50% - 38.0988023952vw);
  }
}
@media screen and (max-width: 850px) {
  .movie .splide__arrow--prev {
    left: 4vw;
  }
}
.movie .splide__arrow--next {
  background-image: url("../images/icon-next.svg");
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  right: calc(50% - 479px);
}
@media screen and (max-width: 1336px) {
  .movie .splide__arrow--next {
    right: calc(50% - 38.0988023952vw);
  }
}
@media screen and (max-width: 850px) {
  .movie .splide__arrow--next {
    right: 4vw;
  }
}
.movie .splide__slide.is-active .movie__btn {
  transform: scale(1);
}

.fadeUp {
  opacity: 0;
  transform: translateY(12px);
  transition: transform 1s cubic-bezier(0.5, 1, 0.89, 1), opacity 1s cubic-bezier(0.5, 1, 0.89, 1);
}
.fadeUp.on {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=base.css.map */