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

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

/* 基本設定
------------------------------------- */
@media print {
  img {
    display: none;
  }
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem; /* =14px */
  font-family: "Zen Kaku Gothic Antique", serif;
  color: #543838;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

img {
  pointer-events: none;
}

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-en01 {
  font-family: "Zen Antique", serif;
}

.font-en02 {
  font-family: "Literata", serif;
}

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

#wrapper {
  position: relative;
}

.op {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  background-color: #9E2E37;
}
.op__movie {
  aspect-ratio: 397/705;
  max-width: 95vw;
  height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .op__movie {
    height: calc(85% - 8vw);
    max-width: 100%;
  }
}
.op__movie iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.op__movie-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.op__movie-close {
  font-size: 2rem;
  color: #fff;
  position: absolute;
  top: 10px;
  left: calc(100% + 10px);
}
@media screen and (max-width: 768px) {
  .op__movie-close {
    font-size: 4.8vw;
    top: auto;
    left: auto;
    bottom: calc(100% + 1vw);
    right: 2vw;
  }
}
.op__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 70% 40%;
     object-position: 70% 40%;
  opacity: 0;
  transform: scale(1.2);
  transition: opacity 1.4s cubic-bezier(0.5, 1, 0.89, 1), transform 1.4s cubic-bezier(0.5, 1, 0.89, 1);
}
@media screen and (max-width: 768px) {
  .op__bg {
    -o-object-position: 50% 40%;
       object-position: 50% 40%;
  }
}
.op__copy {
  width: min(23.2857142857vw, 326px);
  position: absolute;
  top: 55%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 40px));
  transition: transform 0.8s cubic-bezier(0.5, 1, 0.89, 1) 1.2s, opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 1.2s;
}
@media screen and (max-width: 768px) {
  .op__copy {
    width: 70vw;
    top: 55%;
  }
}
.op.on .op__bg {
  transform: inherit;
  opacity: 1;
}
.op.on .op__copy {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.menu-btn {
  position: fixed;
  top: 15px;
  left: 15px;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #D4CCB6;
  z-index: 102;
}
@media screen and (max-width: 768px) {
  .menu-btn {
    top: 2.4vw;
    left: inherit;
    right: 2vw;
    width: 8vw;
    height: 8vw;
  }
}
.menu-btn.on span:first-of-type {
  top: 50%;
  transform: translate(-50%, -50%) rotate(30deg);
}
.menu-btn.on span:nth-of-type(2) {
  transform: translate(25%, -50%);
  opacity: 0;
}
.menu-btn.on span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
}
.menu-btn span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #D4CCB6;
  position: absolute;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .menu-btn span {
    width: 4vw;
  }
}
.menu-btn span:first-of-type {
  top: calc(50% - 7px);
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .menu-btn span:first-of-type {
    top: 35%;
  }
}
.menu-btn span:nth-of-type(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.menu-btn span:nth-of-type(3) {
  top: calc(50% + 7px);
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .menu-btn span:nth-of-type(3) {
    top: 65%;
  }
}

.g-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 100;
  display: none;
}
.g-menu__inner {
  padding: 27px 20px 20px 80px;
}
@media screen and (max-width: 768px) {
  .g-menu__inner {
    padding: 10vw 4vw 4vw;
  }
}
.g-menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 50px;
}
@media screen and (max-width: 768px) {
  .g-menu ul {
    gap: 3vw;
  }
}
.g-menu ul li a {
  color: #D4CCB6;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .g-menu ul li a {
    font-size: 4vw;
  }
}

.bg-pc {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 500px);
  height: 100vh;
  background-image: url("../images/bg-pc.webp");
  background-size: cover;
  background-position: 70% 20%;
}
.bg-pc__logo {
  width: min(8.7142857143vw, 122px);
  position: absolute;
  top: 25px;
  right: 25px;
}
.bg-pc__nav {
  position: absolute;
  bottom: 25px;
  left: 20px;
}
.bg-pc__nav ul li a {
  font-size: 2.4rem;
  font-weight: 600;
  color: #D4CCB6;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.bg-pc__nav ul li a span {
  text-decoration: underline;
}

.main-contents {
  width: 500px;
  margin-left: auto;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  background: linear-gradient(to bottom, #9E2E37, #972B34);
  border-left: 1px solid #D9D9D9;
}
@media screen and (max-width: 768px) {
  .main-contents {
    width: 100%;
    padding-top: 12vw;
    border-left: none;
  }
}

.mt0 {
  margin-top: 0 !important;
}

.mt10 {
  margin-top: 10px !important;
}
@media screen and (max-width: 768px) {
  .mt10 {
    margin-top: 2vw !important;
  }
}

.pl16 {
  padding-left: 16px;
}
@media screen and (max-width: 768px) {
  .pl16 {
    padding-left: 3.2vw;
  }
}

@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #9E2E37;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 0 0 2vw 2vw;
    z-index: 50;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 2vw 12.6vw 2vw 3vw;
    display: flex;
    gap: 2vw;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 6vw;
  }
}
.header__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1vw 8vw;
}
.header__nav ul li a {
  display: block;
  font-size: 2.8vw;
  line-height: 1.2;
  font-weight: 600;
  color: #D4CCB6;
}

.footer {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 10vw;
  }
}
.footer__label {
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  color: #F4F2EE;
  text-align: center;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer__label {
    font-size: 3.6vw;
  }
}
.footer__label span {
  text-align: center;
  text-decoration: underline;
}
.footer dl > div:last-of-type {
  margin: 35px 0;
}
@media screen and (max-width: 768px) {
  .footer dl > div:last-of-type {
    margin: 7vw 0;
  }
}
.footer dl ul {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .footer dl ul {
    margin-top: 3vw;
    gap: 3vw;
  }
}
.footer dl ul li {
  width: 30px;
}
@media screen and (max-width: 768px) {
  .footer dl ul li {
    width: 6vw;
  }
}
.footer__copyright {
  margin-top: 70px;
  background-color: #F4F2EE;
  padding: 10px;
  font-size: 1.3rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    margin-top: 14vw;
    padding: 2vw;
    font-size: 2.6vw;
  }
}

.inner {
  max-width: 450px;
  margin: 0 auto;
  background-color: #F4F2EE;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 90vw;
    border-radius: 4vw;
  }
}

.mv {
  padding: 25px 0 0;
}
@media screen and (max-width: 768px) {
  .mv {
    padding: 5vw 0 0;
  }
}
.mv .inner {
  padding: 16px 15px 50px;
}
@media screen and (max-width: 768px) {
  .mv .inner {
    padding: 3.2vw 3vw 10vw;
  }
}
.mv__img {
  overflow: hidden;
}
.mv__copy {
  width: 326px;
  margin: -71px auto 0;
}
@media screen and (max-width: 768px) {
  .mv__copy {
    width: 65.2vw;
    margin-top: -14.2vw;
  }
}
.mv .line-white {
  display: block;
  margin-top: 31px;
}
@media screen and (max-width: 768px) {
  .mv .line-white {
    margin-top: 6.2vw;
  }
}

.area-top {
  padding: 80px 0 0;
}
@media screen and (max-width: 768px) {
  .area-top {
    padding: 12vw 0 0;
  }
}
.area-top .inner {
  background-color: transparent;
}
.area-top .inner p {
  font-size: 1.6rem;
  text-align: center;
  color: #fff;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .area-top .inner p {
    font-size: 3.4vw;
  }
}
.area-top .line-white {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .area-top .line-white {
    margin-top: 12vw;
  }
}

.section-title {
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .section-title {
    padding-bottom: 6vw;
  }
}
.section-title .font-s {
  display: block;
  margin: 5px auto 0;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section-title .font-s {
    margin-top: 1vw;
    font-size: 2.6vw;
  }
}
.section-title__news {
  width: 127px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section-title__news {
    width: 25.4vw;
  }
}
.section-title__calendar {
  width: 259px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section-title__calendar {
    width: 51.8vw;
  }
}
.section-title__products {
  width: 255px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section-title__products {
    width: 51vw;
  }
}
.section-title__reservations {
  width: 402px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section-title__reservations {
    width: 80.4vw;
  }
}
.section-title__movie {
  width: 147px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section-title__movie {
    width: 29.4vw;
  }
}

.news {
  padding: 30px 0 0;
}
@media screen and (max-width: 768px) {
  .news {
    padding-top: 6vw;
  }
}
.news__btn-more {
  margin: 10px auto 0;
  display: block;
  width: 100%;
  padding: 10px;
  text-align: center;
  font-size: 1.5rem;
  border: 1px solid #000;
  background-color: #fff;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news__btn-more {
    margin-top: 2vw;
    padding: 2vw;
    font-size: 3.2vw;
  }
}
.news__btn-more.on {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .news__btn-more.on {
    margin-top: 6vw;
  }
}
.news__btn-more.on .news__btn-line::after {
  opacity: 0;
}
.news__btn-line {
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .news__btn-line {
    width: 3vw;
    height: 3vw;
    right: 4vw;
  }
}
.news__btn-line::before, .news__btn-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000;
}
.news__btn-line::before {
  width: 100%;
  height: 1px;
}
.news__btn-line::after {
  width: 1px;
  height: 100%;
}
.news .inner {
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .news .inner {
    padding: 8vw 0;
  }
}
.news__body {
  padding: 40px 20px 0;
}
@media screen and (max-width: 768px) {
  .news__body {
    padding: 8vw 4vw 0;
  }
}
.news__body ul {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news__body ul {
    font-size: 3.2vw;
  }
}
.news__body ul > li {
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .news__body ul > li {
    padding: 4vw 0;
  }
}
.news__body ul > li:not(:first-of-type) {
  border-top: 1px dashed #9E2E37;
}
.news__body ul > li:last-of-type {
  padding: 20px 0 0;
}
@media screen and (max-width: 768px) {
  .news__body ul > li:last-of-type {
    padding-top: 4vw;
  }
}
.news__body ul > li:first-of-type {
  padding: 0 0 20px;
}
@media screen and (max-width: 768px) {
  .news__body ul > li:first-of-type {
    padding-bottom: 4vw;
  }
}
.news__date {
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .news__date {
    margin-bottom: 2vw;
  }
}
.news__icon-external {
  width: 12px;
  display: inline;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .news__icon-external {
    width: 2.4vw;
    margin-left: 1vw;
  }
}
.news .line-white {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .news .line-white {
    margin-top: 6vw;
  }
}

.calendar {
  padding: 30px 0 0;
}
@media screen and (max-width: 768px) {
  .calendar {
    padding-top: 6vw;
  }
}
.calendar .inner {
  padding: 40px 0 40px;
}
@media screen and (max-width: 768px) {
  .calendar .inner {
    padding: 8vw 0;
  }
}
.calendar__outer {
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .calendar__outer {
    padding-top: 8vw;
  }
}
.calendar__body {
  width: 410px;
  height: 500px;
  overflow: auto;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px 20px 75px;
}
@media screen and (max-width: 768px) {
  .calendar__body {
    width: 82vw;
    height: 110vw;
    padding: 8vw 4vw 15vw;
  }
}
.calendar__body-in {
  position: relative;
}
.calendar__body-in::after {
  content: "";
  width: 2px;
  height: calc(100% + 25px);
  background-color: #9E2E37;
  position: absolute;
  top: 18px;
  left: 89px;
}
@media screen and (max-width: 768px) {
  .calendar__body-in::after {
    width: 0.4vw;
    height: calc(100% + 5vw);
    top: 3.6vw;
    left: 17.8vw;
  }
}
.calendar__item {
  display: flex;
}
.calendar__date {
  flex: 0 0 auto;
  width: 90px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .calendar__date {
    width: 18vw;
  }
}
.calendar__date::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #9E2E37;
  position: absolute;
  top: 14px;
  right: -6px;
}
@media screen and (max-width: 768px) {
  .calendar__date::after {
    width: 2.4vw;
    height: 2.4vw;
    top: 2.8vw;
    right: -1.2vw;
  }
}
.calendar__date p {
  color: #9E2E37;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .calendar__date p {
    font-size: 7.2vw;
  }
}
.calendar__date p span {
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .calendar__date p span {
    font-size: 2.8vw;
    margin-top: 1vw;
  }
}
.calendar__right {
  padding: 40px 0 15px 20px;
  width: calc(100% - 90px);
}
@media screen and (max-width: 768px) {
  .calendar__right {
    padding: 8vw 0 3vw 4vw;
    width: calc(100% - 18vw);
  }
}
.calendar a.calendar__box {
  position: relative;
}
@media (any-hover: hover) {
  .calendar a.calendar__box {
    opacity: 1;
  }
}
.calendar a.calendar__box::before {
  content: "";
  width: 10px;
  height: 11px;
  background-image: url("../images/icon-external-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .calendar a.calendar__box::before {
    width: 2vw;
    height: 2.2vw;
    top: 4vw;
    right: 4vw;
  }
}
.calendar a.calendar__box.--red::before {
  background-image: url("../images/icon-external-white.svg");
}
.calendar__box {
  padding: 15px 35px 15px 15px;
  border-radius: 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: block;
  font-weight: 500;
  font-size: 1.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .calendar__box {
    padding: 3vw 8vw 3vw 4vw;
    border-radius: 2vw;
    font-size: 3vw;
  }
}
.calendar__box::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #9E2E37;
  background-color: #F4F2EE;
  position: absolute;
  top: 20px;
  left: -25px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .calendar__box::after {
    width: 2vw;
    height: 2vw;
    top: 4vw;
    left: -5vw;
  }
}
.calendar__box + .calendar__box {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .calendar__box + .calendar__box {
    margin-top: 3vw;
  }
}
.calendar__box.--red {
  background-color: #9E2E37;
  color: #fff;
}
.calendar__box.--gray {
  background-color: #F4F2EE;
}

.products {
  padding: 30px 0 0;
}
@media screen and (max-width: 768px) {
  .products {
    padding: 6vw 0 0;
  }
}
.products .section-title {
  padding-bottom: 0;
}
.products__movie {
  display: block;
  margin: 15px auto 30px;
  width: 300px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .products__movie {
    margin: 3vw auto 6vw;
    width: 60vw;
  }
}
.products__movie-play-icon {
  width: 59px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .products__movie-play-icon {
    width: 11.8vw;
  }
}
.products .inner {
  padding: 40px 0 40px;
}
@media screen and (max-width: 768px) {
  .products .inner {
    padding: 8vw 0;
  }
}
.products__body01, .products__body02 {
  width: 410px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .products__body01, .products__body02 {
    width: 82vw;
  }
}
.products__body01 {
  padding: 40px 0;
  border-bottom: 1px dashed #9E2E37;
}
@media screen and (max-width: 768px) {
  .products__body01 {
    padding: 8vw 0;
  }
}
.products__body01 > div {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .products__body01 > div {
    gap: 4vw;
  }
}
.products__note-top {
  font-size: 1.2rem;
  margin-top: 10px;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .products__note-top {
    font-size: 2.6vw;
    margin-top: 2vw;
  }
}
.products__body01-img {
  width: 160px;
  overflow: hidden;
  flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .products__body01-img {
    width: 32vw;
  }
}
.products__body01-desc h3 {
  font-size: 3.2rem;
  font-weight: normal;
  color: #9E2E37;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .products__body01-desc h3 {
    font-size: 6.4vw;
  }
}
.products__body01-desc h3 .font-s {
  font-size: 2rem;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .products__body01-desc h3 .font-s {
    font-size: 4vw;
  }
}
.products__num {
  font-size: 1.5rem;
  font-weight: bold;
  color: #9E2E37;
  display: block;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .products__num {
    font-size: 3vw;
    margin-top: 1.6vw;
  }
}
.products__body01-item {
  margin-top: 6px;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .products__body01-item {
    margin-top: 1.2vw;
    font-size: 2.6vw;
  }
}
.products__body01-price {
  margin-top: 5px;
  font-size: 2.8rem;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .products__body01-price {
    margin-top: 1vw;
    font-size: 5.6vw;
  }
}
.products__body01-price .font-m {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .products__body01-price .font-m {
    font-size: 4vw;
  }
}
.products__body01-price .font-s {
  font-size: 1.6rem;
  display: inline-block;
  margin-left: 11px;
}
@media screen and (max-width: 768px) {
  .products__body01-price .font-s {
    font-size: 3.2vw;
    margin-left: 2.2vw;
  }
}
.products__body02 {
  padding: 30px 0 0;
}
@media screen and (max-width: 768px) {
  .products__body02 {
    padding-top: 6vw;
  }
}
.products__body02 > div:not(:first-of-type) {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .products__body02 > div:not(:first-of-type) {
    margin-top: 6vw;
  }
}
.products__body02 h3 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 10px;
  text-indent: -0.4em;
}
@media screen and (max-width: 768px) {
  .products__body02 h3 {
    font-size: 4.8vw;
    margin-bottom: 2vw;
  }
}
.products__body02-bg {
  background-color: #fff;
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  .products__body02-bg {
    padding: 2vw 4vw;
  }
}
.products__body02-bg + .products__body02-bg {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .products__body02-bg + .products__body02-bg {
    margin-top: 2vw;
  }
}
.products__body02-bg.--row {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
@media screen and (max-width: 768px) {
  .products__body02-bg.--row {
    padding: 3vw 4vw;
    gap: 1.2vw;
  }
}
.products__body02-bg.--column {
  padding: 15px 20px;
}
@media screen and (max-width: 768px) {
  .products__body02-bg.--column {
    padding: 3vw 4vw;
  }
}
.products__body02-bg.--red {
  color: #9E2E37;
}
.products__body02-bg.--red .products__body02-text {
  font-weight: bold;
}
.products__body02-bg.--red .products__body02-caution {
  font-weight: 500;
}
.products__body02-text {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .products__body02-text {
    font-size: 3.2vw;
  }
}
.products__body02-notes {
  display: block;
  margin-top: 4px;
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .products__body02-notes {
    margin-top: 0.8vw;
    font-size: 2.6vw;
  }
}
.products__body02-img01 {
  width: 300px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .products__body02-img01 {
    width: 60vw;
  }
}
.products__body02-img01.--large {
  width: 100%;
}
.products__body02-img02 {
  width: 180px;
  overflow: hidden;
  margin: 0 0 0;
}
@media screen and (max-width: 768px) {
  .products__body02-img02 {
    width: 36vw;
    margin: 0 0 0;
  }
}
.products__body02-caution {
  display: block;
  margin-top: 4px;
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .products__body02-caution {
    margin-top: 0.8vw;
    font-size: 2.4vw;
  }
}
.products .line-red {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 50px 0 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .products .line-red {
    margin-top: 10vw;
  }
}
.products .line-white {
  display: block;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .products .line-white {
    margin-top: 6vw;
  }
}

.reservations {
  padding: 30px 0 0;
}
@media screen and (max-width: 768px) {
  .reservations {
    padding-top: 6vw;
  }
}
.reservations .inner {
  padding: 40px 0 40px;
}
@media screen and (max-width: 768px) {
  .reservations .inner {
    padding: 8vw 0;
  }
}
.reservations__list {
  margin: 50px auto 0;
  width: 360px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .reservations__list {
    margin-top: 10vw;
    width: 72vw;
    gap: 2vw;
  }
}
.reservations__list li {
  width: calc(50% - 5px);
}
@media screen and (max-width: 768px) {
  .reservations__list li {
    width: calc(50% - 1vw);
  }
}
.reservations .line-white {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .reservations .line-white {
    margin-top: 6vw;
  }
}

.movie {
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .movie {
    padding-top: 6vw;
  }
}
.movie .inner {
  padding: 40px 0 40px;
}
@media screen and (max-width: 768px) {
  .movie .inner {
    padding: 8vw 0 8vw;
  }
}
.movie .line-white {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .movie .line-white {
    margin-top: 6vw;
  }
}
.movie__body {
  margin: 50px auto 0;
  width: 362px;
  position: relative;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 768px) {
  .movie__body {
    margin-top: 10vw;
    width: 72.4vw;
  }
}
.movie__prev, .movie__next {
  width: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .movie__prev, .movie__next {
    width: 8vw;
  }
}
.movie__prev:hover, .movie__next:hover {
  opacity: 1;
}
.movie__prev {
  left: -25px;
}
@media screen and (max-width: 768px) {
  .movie__prev {
    left: -5vw;
  }
}
.movie__next {
  right: -25px;
}
@media screen and (max-width: 768px) {
  .movie__next {
    right: -5vw;
  }
}
.movie__btn {
  display: block;
  width: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  border: 1px solid #9E2E37;
}
.movie__btn.on {
  opacity: 1;
  pointer-events: inherit;
  z-index: 5;
}
.movie__thumbnail {
  width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.movie__play-icon {
  width: 59px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .movie__play-icon {
    width: 11.8vw;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 103;
  display: none;
}
.modal.--vertical .modal__body {
  height: 100%;
  width: auto;
  aspect-ratio: 397/705;
  max-height: 100%;
}
@media screen and (max-width: 768px) {
  .modal.--vertical .modal__body {
    height: calc(85% - 8vw);
  }
}
.modal.--vertical .modal__close {
  bottom: auto;
  right: auto;
  top: 10px;
  left: calc(100% + 10px);
}
@media screen and (max-width: 768px) {
  .modal.--vertical .modal__close {
    top: -8vw;
    left: auto;
    right: 1vw;
  }
}
.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: 95vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .modal__body {
    width: 100%;
    max-width: 100%;
  }
}
.modal__body iframe, .modal__body video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal__close {
  font-size: 2rem;
  color: #fff;
  position: absolute;
  bottom: calc(100% + 5px);
  right: 0;
}
@media screen and (max-width: 768px) {
  .modal__close {
    font-size: 4.8vw;
    bottom: calc(100% + 1vw);
    right: 2vw;
  }
}

.section-title {
  position: relative;
  overflow: hidden;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: opacity 1.5s cubic-bezier(0.5, 1, 0.89, 1) 0.4s, -webkit-clip-path 1.5s cubic-bezier(0.5, 1, 0.89, 1) 0.4s;
  transition: clip-path 1.5s cubic-bezier(0.5, 1, 0.89, 1) 0.4s, opacity 1.5s cubic-bezier(0.5, 1, 0.89, 1) 0.4s;
  transition: clip-path 1.5s cubic-bezier(0.5, 1, 0.89, 1) 0.4s, opacity 1.5s cubic-bezier(0.5, 1, 0.89, 1) 0.4s, -webkit-clip-path 1.5s cubic-bezier(0.5, 1, 0.89, 1) 0.4s;
  opacity: 0;
}
.section-title.on {
  opacity: 1;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

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