@charset "UTF-8";
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Noto Sans JP", sans-serif, "Noto Sans JP", "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #231815;
  background-color: #eeeae4;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #ea4f25;
  transition: color 0.2s ease;
}
a:hover {
  color: rgb(197.7506276151, 57.1481171548, 19.0493723849);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.bg {
  position: fixed;
  inset: 0;
  min-height: 100dvh;
  background-color: #eeeae4;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (orientation: landscape) {
  .bg {
    background-image: url("../images/bg-ls.jpg");
    background-position: center;
  }
}
@media (orientation: portrait) {
  .bg {
    background-image: url("../images/bg-pr.jpg");
    background-position: bottom;
  }
}

input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.drawer {
  position: static;
}

.drawer-open {
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: calc(7px + env(safe-area-inset-top));
  right: calc(10px + env(safe-area-inset-right));
  z-index: 1000;
  cursor: pointer;
}
.drawer-open span {
  content: "";
  display: block;
  height: 3px;
  width: 30px;
  background: #231815;
  transition: 0.5s;
  position: absolute;
  overflow: hidden;
}
.drawer-open span:nth-of-type(1) {
  top: calc(50% - 8px);
}
.drawer-open span:nth-of-type(2) {
  bottom: calc(50% - 8px);
}
@media (min-width: 1025px) {
  .drawer-open {
    top: 10px;
    right: 20px;
    left: auto;
  }
}

#drawer-check:checked ~ .drawer-open span {
  top: 50%;
  transform: rotate(45deg);
}

#drawer-check:checked ~ .drawer-open span:nth-of-type(2) {
  top: 50%;
  transform: rotate(-45deg);
}

#drawer-close {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: transparent;
  transition: 0.7s;
  transform: translate3d(0, -100dvh, 0);
}

#drawer-check:checked ~ #drawer-close {
  transform: translate3d(0, 0, 0);
}

#drawer-check:checked ~ .menu-outer {
  transform: translate3d(0, 0, 0);
}

.menu-outer {
  background-color: #eeeae4;
  position: fixed;
  inset: 0;
  z-index: 900;
  transform: translate3d(0, -100dvh, 0);
  transition: transform 0.7s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.menu-inner {
  width: 100vw;
  position: static;
  width: 100%;
  list-style: none;
}

.menu-item {
  width: 100%;
  margin: 0;
}

.menu-link {
  display: block;
  width: 100%;
  background: transparent;
  padding: 20px 0;
  width: 100%;
  font-size: 1.5rem;
  display: inline-block;
  transform: scaleY(0.75);
  transform-origin: center;
  text-align: center;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 700;
}
.menu-link span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media (min-width: 769px) {
  .menu-link {
    font-size: 2rem;
  }
}
@media (min-width: 481px) {
  .menu-link {
    font-size: 1.5rem;
  }
}
.menu-link {
  text-decoration: none;
}

.hero {
  background-color: #eeeae4;
  max-width: 100% !important;
  min-height: 100dvh;
  height: auto;
  padding-top: 60px;
  padding-bottom: 40px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.hero-inner {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  display: flex;
  align-items: center;
}

.hero-card {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  flex-wrap: nowrap;
}
@media (orientation: portrait) {
  .hero-card {
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
  }
}

.hero-media,
.hero-copy {
  height: auto;
  flex: 1;
}

.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (orientation: portrait) {
  .hero-media {
    width: 100%;
    height: 50%;
  }
}
.hero-media .hero-media__base {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-media {
  position: relative;
}
.hero-media .hero-media__overlay {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  display: block;
  z-index: 1;
}
.hero-media.animate .hero-media__overlay {
  animation: heroFadeIn 3s forwards ease-out;
  animation-delay: 2s;
}
@keyframes heroFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.hero-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-height: 250px;
  text-align: center;
}
@media (orientation: portrait) {
  .hero-copy {
    height: auto;
  }
}

.hero-copy h1,
.hero-copy p {
  width: 100%;
  margin: 0 auto 2rem;
}

.hero-copy p:last-child {
  margin-bottom: 0;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 1.15em;
  font-weight: 600;
}

.hero-copy h1 {
  width: 100%;
  max-width: 280px;
}

.hero-copy h1 img {
  width: 100%;
  max-width: 280px;
  display: block;
  margin: 0 auto;
}

@media (orientation: portrait) {
  .hero {
    min-height: 100dvh;
    height: auto;
    padding: 60px 1rem 40px;
  }
  .hero-inner {
    height: auto;
  }
  .hero-card {
    flex-direction: column;
    justify-content: center;
    height: auto;
    gap: 1.5rem;
  }
  .hero-media {
    max-height: 52dvh;
    height: auto;
    margin: auto;
  }
  .hero-copy {
    height: auto;
    padding: 1rem 0;
  }
  .hero-copy h1,
  .hero-copy p {
    margin: 0 auto 0.75em;
  }
  .hero-copy p:last-child {
    margin-bottom: auto;
  }
}
@media (min-width: 769px) {
  .hero {
    padding: 60px 16px;
  }
  .hero-card {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 481px) and (orientation: portrait) {
  .hero-media {
    max-width: 75%;
    margin: auto;
  }
  .hero-copy {
    padding: 0 0 2rem;
  }
}
@media (min-width: 769px) and (orientation: portrait) {
  .hero-card {
    flex-direction: column;
    align-items: center;
  }
}
@media (min-height: 900px) and (orientation: portrait) {
  .hero-media {
    margin: auto auto 2rem;
  }
}
@media (min-width: 481px) {
  .hero {
    padding: 40px 12px;
  }
}
.btn {
  padding: 0.5rem 2rem;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
}
.btn-primary {
  background-color: #ea4f25;
  color: #fff;
}
.btn-primary:hover {
  background-color: rgb(197.7506276151, 57.1481171548, 19.0493723849);
  transform: translateY(2px);
  color: #fff;
}
@media (min-width: 481px) {
  .btn {
    padding: 10px 1.5rem;
    font-size: 0.95rem;
  }
}

.content-wrapper {
  background-color: rgba(238, 234, 228, 0.8);
  max-width: 1000px;
  margin: auto;
  padding: 1rem;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}
@media (orientation: landscape) {
  .content-wrapper {
    background-color: rgba(238, 234, 228, 0.9);
    margin: 120px auto;
  }
}

section {
  width: 100%;
  margin: auto;
  padding: 80px 0;
}
@media (min-width: 481px) {
  section {
    padding: 40px 1rem;
  }
}
@media (min-width: 769px) {
  section {
    padding: 80px 1rem;
  }
}
section h2 {
  margin: 0 auto 1.5rem;
  color: #ea4f25;
}

.section-title {
  width: 100%;
  font-size: 1.5rem;
  display: inline-block;
  transform: scaleY(0.75);
  transform-origin: center;
  text-align: center;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 700;
}
.section-title span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media (min-width: 769px) {
  .section-title {
    font-size: 2rem;
  }
}
@media (min-width: 481px) {
  .section-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 769px) {
  .section-title {
    font-size: 2rem;
  }
}

.grid {
  display: grid;
  gap: 2rem;
}
.grid > * {
  min-width: 0;
}
.grid-2col {
  grid-template-columns: 1fr;
}
@media (min-width: 481px) {
  .grid-2col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.release .track {
  text-align: center;
  font-family: "Noto Sans JP", "Inter", sans-serif;
}
.release .track-list {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 5rem;
  padding: 0;
  list-style: none;
  counter-reset: track;
}
.release .track-list li {
  padding: 0.25rem 0;
  position: relative;
  counter-increment: track;
  padding-left: 2rem;
}
.release .track-list li::before {
  content: counter(track, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #231815;
  text-align: center;
}
.release .release-info {
  margin-bottom: 3rem;
}
.release .release-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
@media (min-width: 769px) {
  .release .items {
    margin: 0 2rem;
    gap: 5rem;
  }
}
.release .item {
  min-width: 0;
}
.release .item h3 {
  border-bottom: 2px solid #ea4f25;
  margin-bottom: 0.5rem;
  padding-bottom: 0.25rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
}
.release .shops {
  margin-bottom: 1.5rem;
  list-style: none;
}
.release .shops li {
  margin-bottom: 1rem;
}
.release .link-item-shops {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
}
.release .link-item-shops:hover .icon-arrow {
  animation: iconArrowPop 0.3s ease-out;
}
.release .link-item-shops:hover .icon-wrap {
  animation: iconWrapPop 0.3s ease-out;
}
.release .icon-wrap {
  background-color: #ea4f25;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 0.5rem;
}
.release .icon-arrow {
  margin: 0;
  color: #eeeae4;
  font-size: 1.2rem;
  transform: rotate(45deg);
  line-height: 1;
}
@keyframes iconArrowPop {
  0% {
    transform: rotate(45deg) translateY(0);
  }
  40% {
    transform: rotate(45deg) translateY(-2px);
  }
  100% {
    transform: rotate(45deg) translateY(0);
  }
}
@keyframes iconWrapPop {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}
.release .item-deluxe {
  list-style: none;
  padding-left: 0;
}
.release .item-deluxe li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 2rem;
  line-height: 1.5;
}
.release .item-deluxe li:nth-child(1)::before {
  content: "①";
}
.release .item-deluxe li:nth-child(2)::before {
  content: "②";
}
.release .item-deluxe li:nth-child(3)::before {
  content: "③";
}
.release .item-deluxe li:nth-child(4)::before {
  content: "④";
}
.release .item-deluxe li:nth-child(5)::before {
  content: "⑤";
}
.release .item-deluxe li:nth-child(6)::before {
  content: "⑥";
}
.release .item-deluxe li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  line-height: 1.3;
}
.release .reservation-period {
  width: 100%;
  border: 2px solid #ea4f25;
  margin: 2rem auto 0.25rem;
  padding: 0.5rem 0.25rem;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.2;
  white-space: nowrap;
  letter-spacing: -0.04em;
  font-feature-settings: "palt";
  text-align: center;
  font-weight: 600;
  color: #ea4f25;
}
.release .btn-reservation-deluxe {
  width: 100%;
  text-align: center;
  font-weight: 800;
  font-size: 1.25rem;
}
.release .image-spacer {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(35, 24, 21, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video .video-list {
  display: grid;
  gap: 80px;
  padding: 3rem 0;
}
.video .video-item {
  width: 100%;
  max-width: 714px;
  margin: 0 auto;
  text-align: center;
}
.video .link-youtube {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.video .link-youtube img {
  margin-bottom: 1rem;
}
.video .link-youtube:hover img {
  opacity: 0.75;
}
.video .link-youtube {
  color: #231815;
}
.video .link-single-shops {
  padding-left: 1.5rem;
}
.video .arrow-regular {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 20;
  transform: rotate(90deg) translateX(6px);
  line-height: 1;
}
.video .link-single-shops:hover .arrow-regular {
  transform: rotate(90deg) translateX(6px) translateY(-2px);
}
@media (min-width: 769px) {
  .video .video-list {
    gap: 120px;
  }
}

.footer {
  max-width: 1000px;
  margin: auto;
  padding: 0 1rem;
}

.list {
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}
.list-share {
  max-width: 200px;
  gap: 2rem;
}
.list-sns {
  max-width: 125px;
  gap: 3rem;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #231815;
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: #ea4f25;
}
.footer-link .icon-x {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: currentColor;
  -webkit-mask-image: url(../images/icon-x.svg);
  mask-image: url(../images/icon-x.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.footer-link .icon-fb {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: currentColor;
  -webkit-mask-image: url(../images/icon-facebook.svg);
  mask-image: url(../images/icon-facebook.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.footer-link .icon-line {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: currentColor;
  -webkit-mask-image: url(../images/icon-line.svg);
  mask-image: url(../images/icon-line.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.footer-link .icon-note {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: currentColor;
  -webkit-mask-image: url(../images/icon-note.svg);
  mask-image: url(../images/icon-note.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.footer-link:hover {
  color: #ea4f25;
}

.link-official {
  display: block;
  width: 100%;
  max-width: 350px;
  margin: 1rem auto 2rem;
  text-align: center;
}

.copyright {
  margin: 50vh auto 2em;
  text-align: center;
  font-size: 0.875rem;
}
@media (min-width: 769px) {
  .copyright {
    margin: 80vh auto 2em;
  }
}

.u-center {
  text-align: center;
}

.u-right {
  text-align: right;
}

.u-left {
  text-align: left;
}

.u-text-lg {
  font-size: 1.25em;
}

.u-text-xl {
  font-size: 1.5em;
}

.u-text-sm {
  font-size: 0.875em;
}

.u-text-xs {
  font-size: 0.75em;
}

.u-small {
  font-size: 0.94em;
}

.u-fw-400 {
  font-weight: 400;
}

.u-fw-600 {
  font-weight: 600;
}

.u-fw-800 {
  font-weight: 800;
}

.u-fw-900 {
  font-weight: 900;
}

.u-ff-mono {
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-mb-025 {
  margin-bottom: 0.25rem;
}

.u-mb-05 {
  margin-bottom: 0.5rem;
}

.u-mb-075 {
  margin-bottom: 0.75rem;
}

.u-mb-1 {
  margin-bottom: 1rem;
}

.u-mb-15 {
  margin-bottom: 1.5rem;
}

.u-mb-2 {
  margin-bottom: 2rem;
}

.notice {
  margin-top: 0.5em;
  padding-left: 0;
}

.notice li {
  margin-bottom: 0.25rem;
  padding-left: 1em;
  text-indent: -1em;
  text-align: left;
  list-style-type: none;
  line-height: 1.5;
  font-size: 0.8em;
  font-weight: 300;
}

.notice li:before {
  content: "※";
}/*# sourceMappingURL=styles.css.map */