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

/* 基本設定
------------------------------------- */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: 100%;
  font-size: 1.8rem; /* =18px */
  line-height: 1.6;
  color: #fff;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  background-color: #051020;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 850px) {
  body {
    background-size: 8vw 8vw;
    font-size: 4.2666666667vw;
  }
}

img {
  pointer-events: none;
}

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

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: 851px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 850px) {
  .pc {
    display: none !important;
  }
}
#wrapper {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 103;
  display: none;
}
.modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  cursor: pointer;
}
.modal__body {
  width: 1000px;
  aspect-ratio: 16/9;
  max-width: 95vw;
  max-height: calc(100vh - 70px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 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;
  }
}

.fixed-btn {
  width: 92px;
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 100;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.25));
  opacity: 0;
  transition: opacity 1s 1s;
  animation: pulse 2.5s infinite ease-in-out;
}
@media screen and (max-width: 850px) {
  .fixed-btn {
    width: 15.4666666667vw;
    bottom: 5.3333333333vw;
    right: 5.3333333333vw;
  }
}
.fixed-btn.on {
  opacity: 1;
}

@keyframes pulse {
  0%, 20%, 40% {
    transform: scale(1);
  }
  10%, 30% {
    transform: scale(1.1);
  }
}
.line-horizontal {
  display: block;
  width: 100%;
  height: 1px;
  z-index: 10;
}
.line-horizontal.on::after {
  transform: scaleX(1);
}
.line-horizontal::after {
  content: "";
  transition: transform 1s ease;
  transform: scaleX(0);
  transform-origin: center left;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.line-vertical-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  z-index: 10;
}
.line-vertical-left.on::after {
  transform: scaleY(1);
}
.line-vertical-left::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100%;
  transition: transform 1s ease;
  transform: scaleY(0);
  transform-origin: top center;
}

.line-vertical-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  z-index: 10;
}
.line-vertical-right.on::after {
  transform: scaleY(1);
}
.line-vertical-right::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100%;
  transition: transform 1s ease;
  transform: scaleY(0);
  transform-origin: top center;
}

.fixed-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-image: url("../images/pc_back.webp");
  background-size: cover;
  background-position: top center;
  z-index: -1;
}
@media screen and (max-width: 850px) {
  .fixed-bg {
    background-image: url("../images/sp_back.webp");
  }
}

.fixed-bg-02 {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-image: url("../images/bg03.webp");
  background-position: bottom 40% right;
  background-size: cover;
  z-index: -1;
}
@media screen and (max-width: 850px) {
  .fixed-bg-02 {
    background-position: top center;
  }
}

.header {
  position: relative;
}
.header .line-horizontal {
  position: absolute;
  bottom: 0;
  left: 0;
}
.header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 19px 73px 19px 40px;
}
@media screen and (max-width: 850px) {
  .header__inner {
    gap: 8vw;
    padding: 4.8vw 5.3333333333vw;
  }
}
.header__left {
  display: flex;
  align-items: center;
  gap: 20px;
  width: calc(100% - 91px);
}
@media screen and (max-width: 850px) {
  .header__left {
    gap: 2.6666666667vw;
    width: calc(100% - 21.6vw);
  }
}
.header__left .--text {
  font-size: 1.5rem;
  line-height: 1.4;
  padding: 2px 14px 4px;
  border: 1px solid #fff;
  border-radius: 50px;
  flex: 0 0 auto;
}
@media screen and (max-width: 850px) {
  .header__left .--text {
    font-size: 2.6666666667vw;
    padding: 0.2666666667vw 2.6666666667vw 0.8vw;
    border-radius: 13.3333333333vw;
  }
}
.header__left .--line {
  width: 100%;
  height: 1px;
  position: relative;
}
.header__left .--line.on span {
  transform: scaleX(1);
}
.header__left .--line span {
  display: block;
  width: calc(100% - 12px);
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 1s ease;
  transform-origin: center left;
  transform: scaleX(0);
  will-change: transform;
}
.header__left .--line img {
  width: 14px;
  position: absolute;
  top: calc(50% - 1px);
  left: 100%;
  transform: translateY(-50%);
  will-change: transform;
}
.header__btn {
  display: block;
  width: 52px;
  height: 52px;
  position: relative;
}
@media screen and (max-width: 850px) {
  .header__btn {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
  }
}
.header__btn.on .--line:first-of-type {
  width: 53px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (max-width: 850px) {
  .header__btn.on .--line:first-of-type {
    width: 13.6vw;
  }
}
.header__btn.on .--line:nth-of-type(2) {
  left: 50%;
  opacity: 0;
}
.header__btn.on .--line:last-of-type {
  width: 53px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width: 850px) {
  .header__btn.on .--line:last-of-type {
    width: 13.6vw;
  }
}
.header__btn .--line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition: all 0.3s;
}
.header__btn .--line:first-of-type {
  top: 16px;
  left: 0;
}
@media screen and (max-width: 850px) {
  .header__btn .--line:first-of-type {
    top: 4.2666666667vw;
  }
}
.header__btn .--line:nth-of-type(2) {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.header__btn .--line:last-of-type {
  top: 35px;
  left: 0;
}
@media screen and (max-width: 850px) {
  .header__btn .--line:last-of-type {
    top: 9.0666666667vw;
  }
}
.header__menu {
  border-top: 1px solid #fff;
  display: none;
}
.header__menu__inner {
  padding: 50px 40px;
}
@media screen and (max-width: 850px) {
  .header__menu__inner {
    padding: 8vw 2.6666666667vw;
  }
}
.header__menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 50px;
}
@media screen and (max-width: 850px) {
  .header__menu__list {
    gap: 2.6666666667vw 13.3333333333vw;
  }
}
.header__menu__list a {
  display: block;
  font-weight: bold;
  padding-left: 33px;
  position: relative;
}
@media screen and (max-width: 850px) {
  .header__menu__list a {
    padding-left: 4.5333333333vw;
    font-size: 3.2vw;
  }
}
.header__menu__list a::after {
  content: "";
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 18px solid #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 850px) {
  .header__menu__list a::after {
    border-top: 1.0666666667vw solid transparent;
    border-bottom: 1.0666666667vw solid transparent;
    border-left: 2.4vw solid #fff;
  }
}

.mv__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 850px) {
  .mv__inner {
    max-width: 100%;
    padding: 0;
  }
}
.mv__body {
  position: relative;
}
@media screen and (max-width: 850px) {
  .mv__body {
    border: none;
  }
}
.mv__top {
  display: flex;
}
@media screen and (max-width: 850px) {
  .mv__top {
    display: block;
  }
}
.mv__top > div {
  width: 50%;
}
@media screen and (max-width: 850px) {
  .mv__top > div {
    width: 100%;
  }
}
.mv__top .--left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
@media screen and (max-width: 850px) {
  .mv__top .--left {
    padding: 16vw 8vw;
    border: none;
  }
}
.mv__top .--logo {
  max-width: 534px;
  width: 100%;
}
@media screen and (max-width: 850px) {
  .mv__top .--logo {
    max-width: 100%;
  }
}
.mv__top .--right {
  padding: 100px 50px;
}
@media screen and (max-width: 850px) {
  .mv__top .--right {
    padding: 13.3333333333vw 6.4vw;
    position: relative;
  }
}
@media screen and (max-width: 850px) {
  .mv__top .--right .line-horizontal {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.mv__top .--right p {
  font-weight: bold;
  line-height: 1.9;
}
@media screen and (max-width: 850px) {
  .mv__top .--right p {
    font-size: 3.7333333333vw;
  }
}
.mv__top .--right p:not(:first-of-type) {
  margin-top: 36px;
}
@media screen and (max-width: 850px) {
  .mv__top .--right p:not(:first-of-type) {
    margin-top: 9.6vw;
  }
}
.mv__bottom {
  display: flex;
  position: relative;
}
@media screen and (max-width: 850px) {
  .mv__bottom {
    display: block;
  }
}
.mv__bottom .line-horizontal {
  position: absolute;
  top: 0;
  left: 0;
}
.mv__bottom > div {
  width: 50%;
}
@media screen and (max-width: 850px) {
  .mv__bottom > div {
    width: 100%;
  }
}
.mv__bottom .--left {
  position: relative;
}
.mv__bottom .--left a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  font-size: 2.4rem;
  font-weight: bold;
}

.section-title {
  font-size: 6.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 850px) {
  .section-title {
    font-size: 9.6vw;
  }
}
.section-title .--small {
  margin-top: 6px;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 850px) {
  .section-title .--small {
    font-size: 3.7333333333vw;
    margin-top: 1.0666666667vw;
  }
}

.product {
  padding-top: 48px;
  position: relative;
}
@media screen and (max-width: 850px) {
  .product {
    padding-top: 7.7333333333vw;
  }
}
.product .line-horizontal {
  position: absolute;
  top: 0;
  left: 0;
}
.product__inner {
  padding: 0 20px;
  margin-top: 47px;
  position: relative;
}
@media screen and (max-width: 850px) {
  .product__inner {
    margin-top: 7.7333333333vw;
    padding: 0;
  }
}
.product__body {
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 850px) {
  .product__body {
    max-width: 100%;
    border: none;
  }
}
.product__area {
  display: flex;
}
@media screen and (max-width: 850px) {
  .product__area {
    display: block;
    background-color: transparent;
  }
}
.product__area > div {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding: 80px min(5.5555555556vw, 80px);
}
@media screen and (max-width: 1100px) {
  .product__area > div {
    padding: 80px 20px;
  }
}
@media screen and (max-width: 850px) {
  .product__area > div {
    width: 100%;
    display: block;
    padding: 10.6666666667vw 6.4vw;
  }
}
.product__area .--left {
  position: relative;
}
@media screen and (max-width: 850px) {
  .product__area .--left {
    border: none;
  }
}
.product h3 {
  margin-top: 30px;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 850px) {
  .product h3 {
    margin-top: 5.3333333333vw;
    font-size: 5.8666666667vw;
  }
}
.product h3 .--tag {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  color: #191919;
  background-color: #fff;
  padding: 8px 10px;
}
@media screen and (max-width: 850px) {
  .product h3 .--tag {
    font-size: 3.7333333333vw;
    padding: 2.1333333333vw;
  }
}
.product__price {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 850px) {
  .product__price {
    margin-top: 5.3333333333vw;
  }
}
.product__price:not(:first-of-type) {
  margin-top: 10px;
}
@media screen and (max-width: 850px) {
  .product__price:not(:first-of-type) {
    margin-top: 2.6666666667vw;
  }
}
.product__price-label {
  padding-left: 38px;
  position: relative;
}
@media screen and (max-width: 850px) {
  .product__price-label {
    padding-left: 7.4666666667vw;
  }
}
.product__price-label::after {
  content: "";
  width: 8px;
  height: 45px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 850px) {
  .product__price-label::after {
    width: 2.1333333333vw;
    height: 12vw;
  }
}
.product__price-label .--large {
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 850px) {
  .product__price-label .--large {
    font-size: 5.3333333333vw;
  }
}
.product__price-label .--small {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 8px;
}
@media screen and (max-width: 850px) {
  .product__price-label .--small {
    font-size: 3.2vw;
    margin-top: 1.6vw;
  }
}
.product__price-text {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 850px) {
  .product__price-text {
    font-size: 6.4vw;
  }
}
.product__price-text .--small {
  font-size: 1.6rem;
}
@media screen and (max-width: 850px) {
  .product__price-text .--small {
    font-size: 3.7333333333vw;
  }
}
.product__line {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 850px) {
  .product__line {
    margin-top: 6.9333333333vw;
    gap: 5.3333333333vw;
  }
}
.product__line img {
  width: 8px;
  flex: 0 0 auto;
}
@media screen and (max-width: 850px) {
  .product__line img {
    width: 2.1333333333vw;
  }
}
.product__line .--line {
  width: calc(100% - 28px);
  height: 1px;
  position: relative;
}
@media screen and (max-width: 850px) {
  .product__line .--line {
    width: calc(100% - 7.4666666667vw);
  }
}
.product__line .--line.on::after {
  transform: scaleX(1);
}
.product__line .--line::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  transition: transform 0.7s ease;
  transform: scaleX(0);
  transform-origin: center left;
}
.product__siyo {
  margin-top: 30px;
  font-size: 1.6rem;
}
@media screen and (max-width: 850px) {
  .product__siyo {
    margin-top: 6.9333333333vw;
    font-size: 3.7333333333vw;
  }
}
.product__siyo .--top {
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 850px) {
  .product__siyo .--top {
    margin-bottom: 1.6vw;
  }
}
.product__siyo .--bottom {
  font-weight: 500;
}
.product__info {
  margin-top: 30px;
  margin-bottom: 50px;
  font-size: 1.6rem;
}
@media screen and (max-width: 850px) {
  .product__info {
    margin-top: 6.9333333333vw;
    margin-bottom: 8vw;
    font-size: 3.7333333333vw;
  }
}
.product__info .--top {
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 850px) {
  .product__info .--top {
    margin-bottom: 1.6vw;
  }
}
.product__info-list li {
  font-size: 1.6rem;
  padding-left: 1em;
  text-indent: -1em;
  font-weight: bold;
}
@media screen and (max-width: 850px) {
  .product__info-list li {
    font-size: 3.7333333333vw;
  }
}
.product__info-list li a {
  text-decoration: underline;
}
.product__info-list li .--small {
  font-weight: normal;
}
.product__btn {
  margin: auto auto 0;
  padding: 20px;
  width: 100%;
  display: block;
  text-align: center;
  font-weight: bold;
  background-color: #fff;
  border-radius: 2px;
}
@media screen and (max-width: 850px) {
  .product__btn {
    margin-top: 8vw;
    padding: 5.3333333333vw;
    font-size: 4.2666666667vw;
    border-radius: 0.5333333333vw;
  }
}
.product__btn span {
  color: #2A2252;
}
@media screen and (max-width: 850px) {
  .product__line-sp {
    padding: 0 6.4vw !important;
  }
}
@media screen and (max-width: 850px) {
  .product__line-sp > div {
    display: flex;
    align-items: center;
    gap: 5.3333333333vw;
  }
}
@media screen and (max-width: 850px) {
  .product__line-sp .--egg {
    display: flex;
    align-items: center;
    gap: 2.9333333333vw;
    flex: 0 0 auto;
  }
}
@media screen and (max-width: 850px) {
  .product__line-sp .--egg img {
    width: 2.1333333333vw;
  }
}
@media screen and (max-width: 850px) {
  .product__line-sp .--line {
    width: 100%;
    height: 1px;
    position: relative;
  }
}
@media screen and (max-width: 850px) {
  .product__line-sp .--line.on::after {
    transform: scaleX(1);
  }
}
@media screen and (max-width: 850px) {
  .product__line-sp .--line::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    transition: transform 0.7s ease;
    transform: scaleX(0);
    transform-origin: center left;
  }
}

.bg-deco {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 850px) {
  .bg-deco {
    max-width: 100%;
    padding: 0;
  }
}
.bg-deco > div {
  position: relative;
}
@media screen and (max-width: 850px) {
  .bg-deco > div {
    border-right: none;
    border-left: none;
  }
}
.bg-deco > div .line-horizontal {
  position: absolute;
  top: 0;
  left: 0;
}

.songs__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 850px) {
  .songs__inner {
    max-width: 100%;
    padding: 0;
  }
}
.songs__body {
  padding-top: 48px;
  position: relative;
}
@media screen and (max-width: 850px) {
  .songs__body {
    padding-top: 7.7333333333vw;
    border-left: none;
    border-right: none;
  }
}
.songs__body .line-horizontal {
  position: absolute;
  top: 0;
  left: 0;
}
.songs__conts {
  margin-top: 48px;
  padding: 80px 20px;
  position: relative;
}
@media screen and (max-width: 850px) {
  .songs__conts {
    margin-top: 8vw;
    padding: 13.3333333333vw 6.4vw;
  }
}
.songs__conts > div {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 850px) {
  .songs__conts > div {
    display: block;
    max-width: 100%;
  }
}
.songs__list {
  width: 344px;
}
@media screen and (max-width: 850px) {
  .songs__list {
    width: 100%;
  }
}
@media screen and (max-width: 850px) {
  .songs__list:not(:first-of-type) li:first-of-type {
    border-top: none;
  }
}
.songs__list li {
  font-size: min(1.3333333333vw, 1.6rem);
  padding: 13px 10px 16px 33px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  border-bottom: 1px dashed #fff;
}
@media screen and (max-width: 850px) {
  .songs__list li {
    font-size: 4.2666666667vw;
    padding: 3.7333333333vw 2.6666666667vw 4.2666666667vw 8.8vw;
  }
}
.songs__list li:first-of-type {
  border-top: 1px dashed #fff;
}
.songs__list li::after {
  content: "";
  width: 8px;
  height: 10px;
  background-image: url("../images/egg.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
@media screen and (max-width: 850px) {
  .songs__list li::after {
    top: 50%;
    width: 2.1333333333vw;
    height: 2.9333333333vw;
    left: 2.6666666667vw;
  }
}

.movie__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 850px) {
  .movie__inner {
    max-width: 100%;
    padding: 0;
  }
}
.movie__body {
  padding: 80px 0;
  position: relative;
}
@media screen and (max-width: 850px) {
  .movie__body {
    padding: 13.3333333333vw 0;
    border-right: none;
    border-left: none;
  }
}
.movie__body .line-horizontal {
  position: absolute;
  top: 0;
  left: 0;
}
.movie__btn {
  display: block;
  transform: scale(0.85);
  position: relative;
}
@media (any-hover: hover) {
  .movie__btn:hover {
    opacity: 1;
  }
  .movie__btn:hover .movie__icon {
    opacity: 0.5;
  }
  .movie__btn:hover .movie__icon-triangle {
    transform: translate(-50%, -50%) scale(1.5);
  }
  .movie__btn:hover .movie__icon-play {
    animation-play-state: paused;
  }
}
.movie__icon {
  width: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
@media screen and (max-width: 850px) {
  .movie__icon {
    width: 8vw;
  }
}
.movie__thumbnail {
  width: min(64.371257485vw, 860px);
}
@media screen and (max-width: 850px) {
  .movie__thumbnail {
    width: 80vw;
  }
}
.movie .splide__slide {
  margin-right: min(4.1167664671vw, 55px);
}
@media screen and (max-width: 850px) {
  .movie .splide__slide {
    margin-right: 0;
  }
}
.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: 7.2vw;
  }
}
.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 {
    background-image: url("../images/icon-prev-sp.svg");
    left: 5.8666666667vw;
  }
}
.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 {
    background-image: url("../images/icon-next-sp.svg");
    right: 5.8666666667vw;
  }
}
.movie .splide__slide.is-active .movie__btn {
  transform: scale(1);
}

.reservation__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 850px) {
  .reservation__inner {
    max-width: 100%;
    padding: 0;
  }
}
.reservation__body {
  padding: 110px 20px 140px;
  position: relative;
  background-image: url("../images/reservation-bg.webp?0825");
  background-size: cover;
  background-position: top center;
}
@media screen and (max-width: 850px) {
  .reservation__body {
    padding: 16vw 1.3333333333vw;
    border-right: none;
    border-left: none;
    background-image: url("../images/reservation-bg-sp.webp?0825");
  }
}
.reservation__body .line-horizontal {
  position: absolute;
  top: 0;
  left: 0;
}
.reservation__body .line-horizontal:nth-of-type(2) {
  top: auto;
  bottom: 0;
}
.reservation__title {
  text-align: center;
  font-size: 6.4rem;
  line-height: 1;
}
@media screen and (max-width: 850px) {
  .reservation__title {
    font-size: 9.6vw;
  }
}
.reservation__list {
  margin: 40px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 900px;
}
@media screen and (max-width: 850px) {
  .reservation__list {
    margin-top: 10.6666666667vw;
    max-width: 86.6666666667vw;
    gap: 1.3333333333vw;
  }
}
.reservation__list li {
  width: calc(25% - 7.5px);
}
@media screen and (max-width: 850px) {
  .reservation__list li {
    width: calc(50% - 0.6666666667vw);
  }
}

.area-bottom {
  padding: 30px 20px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 850px) {
  .area-bottom {
    padding: 5.3333333333vw 6.6666666667vw;
    max-width: 100%;
    gap: 5.3333333333vw;
  }
}
.area-bottom .--egg {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}
@media screen and (max-width: 850px) {
  .area-bottom .--egg {
    gap: 2.9333333333vw;
  }
}
.area-bottom .--egg img {
  width: 8px;
}
@media screen and (max-width: 850px) {
  .area-bottom .--egg img {
    width: 2.1333333333vw;
  }
}
.area-bottom .--line {
  display: block;
  width: 100%;
  height: 1px;
  position: relative;
}
.area-bottom .--line.on::after {
  transform: scaleX(1);
}
.area-bottom .--line::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 1s ease;
  transform: scaleX(0);
  transform-origin: center left;
}

.footer {
  background-color: #fff;
  padding: 60px 20px;
  font-size: 1.4rem;
}
@media screen and (max-width: 850px) {
  .footer {
    padding: 16vw 6.6666666667vw 26.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 850px) {
  .footer__top {
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 5.3333333333vw;
  }
}
.footer__top > dl {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 850px) {
  .footer__top > dl {
    flex-direction: column;
    gap: 3.7333333333vw;
  }
}
.footer__top > dl dt {
  padding: 5px 10px;
  border: 1px solid #191919;
  color: #191919;
  line-height: 1;
}
@media screen and (max-width: 850px) {
  .footer__top > dl dt {
    padding: 1.3333333333vw 2.6666666667vw;
  }
}
.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.--x {
  width: 20px;
}
@media screen and (max-width: 850px) {
  .footer__top > dl dd a.--x {
    width: 5.3333333333vw;
  }
}
.footer__top > dl dd a.--facebook {
  width: 10px;
}
@media screen and (max-width: 850px) {
  .footer__top > dl dd a.--facebook {
    width: 2.6666666667vw;
  }
}
.footer__top > dl dd a.--line {
  width: 23px;
}
@media screen and (max-width: 850px) {
  .footer__top > dl dd a.--line {
    width: 6.1333333333vw;
  }
}
.footer__top > dl dd a.--tiktok {
  width: 19px;
}
@media screen and (max-width: 850px) {
  .footer__top > dl dd a.--tiktok {
    width: 5.0666666667vw;
  }
}
.footer__top > dl dd a.--instagram {
  width: 21px;
}
@media screen and (max-width: 850px) {
  .footer__top > dl dd a.--instagram {
    width: 5.6vw;
  }
}
.footer__top > dl dd a.--youtube {
  width: 23px;
}
@media screen and (max-width: 850px) {
  .footer__top > dl dd a.--youtube {
    width: 6.1333333333vw;
  }
}
.footer__privacypolicy {
  background-color: #191919;
  border: 1px solid #191919;
  padding: 5px 10px;
  line-height: 1;
}
@media screen and (max-width: 850px) {
  .footer__privacypolicy {
    padding: 1.3333333333vw 2.6666666667vw;
  }
}
.footer__copyright {
  font-size: 1.2rem;
  color: #191919;
  text-align: center;
  margin-top: 36px;
}
@media screen and (max-width: 850px) {
  .footer__copyright {
    font-size: 3.2vw;
    margin-top: 9.6vw;
  }
}/*# sourceMappingURL=base.css.map */