@charset "UTF-8";
/* コンテンツ最大幅 */
/* color */
/* ============================================ */
/* font */
/* ============================================ */
.lighting {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 250vw;
  aspect-ratio: 1;
  border-radius: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%);
  background: #fff;
  mix-blend-mode: screen;
}
@media all and (max-width: 896px) {
  .lighting {
    width: 250vh;
  }
}
.lighting.is-active {
  animation: lighting 4s ease-in-out forwards;
}
.lighting::before, .lighting::after {
  content: "";
  position: absolute;
  inset: -120px;
  border-radius: 50%;
  background: inherit;
  filter: blur(100px);
  opacity: 0.5;
}

dialog {
  margin: auto;
  padding: 0;
  border: none;
  background: transparent;
  overflow: hidden;
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.4s;
}
dialog .modal-content {
  position: relative;
  width: 897px;
  max-height: calc(100dvh - 40px);
  background: #fff;
  overflow: auto;
  opacity: 0;
  transition: opacity 0.4s;
}
@media all and (max-width: 896px) {
  dialog .modal-content {
    width: 100%;
  }
}
dialog.is-show::backdrop,
dialog.is-show .modal-content {
  opacity: 1;
}

.modal-close {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 64px;
  height: 64px;
  background: #fff;
  font-size: 3rem;
}
@media all and (max-width: 896px) {
  .modal-close {
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 2.4rem;
  }
}

.spec {
  padding: 0 48px 64px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 250;
}
@media all and (max-width: 896px) {
  .spec {
    padding: 0 15px 40px;
    font-size: 1.2rem;
  }
}
.spec dl {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #cfd0d2;
}
@media all and (max-width: 896px) {
  .spec dl {
    margin-bottom: 32px;
    padding-bottom: 32px;
  }
}
.spec dl:first-child dt {
  margin-bottom: 20px;
  font-family: "Cinzel", serif;
  font-size: 2.4rem;
}
@media all and (max-width: 896px) {
  .spec dl:first-child dt {
    font-size: 2rem;
  }
}
.spec dl dt {
  margin-bottom: 24px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .spec dl dt {
    font-size: 1.6rem;
  }
}
.spec dl dd {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.spec dl dd ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media all and (max-width: 896px) {
  .spec dl dd ul {
    gap: 16px;
  }
}
.spec dl dd ul li {
  padding: 10px 24px 16px;
  background: #eee;
}
@media all and (max-width: 896px) {
  .spec dl dd ul li {
    padding-inline: 16px;
  }
}
.spec dl dd ul li hgroup {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
@media all and (max-width: 896px) {
  .spec dl dd ul li hgroup {
    gap: 8px;
  }
}
.spec dl dd ul li hgroup h4 {
  font-family: "Cinzel", serif;
  font-size: 2.1rem;
  font-weight: 500;
}
@media all and (max-width: 896px) {
  .spec dl dd ul li hgroup h4 {
    font-size: 1.6rem;
  }
}
.spec table th, .spec table td {
  padding-block: 2px;
}
.spec table th {
  font-weight: 250;
  width: 4.5em;
}
.spec > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  margin-inline: auto;
  padding: 24px 8px;
  background: #212121;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}

.swiper-wrapper {
  padding-bottom: 46px;
}
@media all and (max-width: 896px) {
  .swiper-wrapper {
    padding-bottom: 36px;
  }
}
.swiper-slide {
  position: relative;
}
.swiper-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transform-origin: bottom;
}
.swiper-slide span {
  position: absolute;
  right: 12px;
  bottom: 5px;
  color: #fff;
  font-size: 1.4rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.35);
  paint-order: stroke;
}
@media all and (max-width: 896px) {
  .swiper-slide span {
    font-size: 1.2rem;
  }
}
.swiper-button-prev, .swiper-button-next {
  width: 20px;
  height: 20px;
}
.swiper-button-prev::after, .swiper-button-next::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  rotate: 45deg;
}
.swiper-button-prev {
  left: 20px;
}
@media all and (max-width: 896px) {
  .swiper-button-prev {
    left: 16px;
  }
}
.swiper-button-prev::after {
  rotate: 225deg;
}
.swiper-button-next {
  right: 20px;
}
@media all and (max-width: 896px) {
  .swiper-button-next {
    right: 16px;
  }
}
.swiper-pagination {
  bottom: 0;
  padding-right: 52px;
  text-align: right;
}
@media all and (max-width: 896px) {
  .swiper-pagination {
    padding-right: 6px;
  }
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin-inline: 12px !important;
  border-radius: 0;
  border: 1px solid #bdbdbd;
  background: #fff;
}
@media all and (max-width: 896px) {
  .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin-inline: 6px !important;
  }
}
.swiper-pagination-bullet-active {
  background: #bdbdbd;
}

/* loading */
/* ============================================ */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9999;
  width: 100dvw;
  height: 100dvh;
  background: #fff;
  color: #000;
  overflow: hidden;
  opacity: 1;
  transition: 0.5s;
}
.loading.hide {
  opacity: 0;
  visibility: hidden;
}
.loading p {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  animation: fade 1.5s forwards;
}
.loading img {
  width: 210px;
}

body.is-loading {
  overflow: hidden;
  height: 100vh;
}

/* top */
/* ============================================ */
hgroup:has(h2) {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: min(1.25vw, 24px);
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  line-height: 1;
}
@media all and (max-width: 896px) {
  hgroup:has(h2) {
    gap: 10px;
    margin-bottom: 1em;
    font-size: 1.4rem;
  }
}
hgroup:has(h2) h2 {
  /*color: var(--surface-white, #fff);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;*/
  font-family: "Cinzel", serif;
  font-size: clamp(6.8rem, 5.2vw, 12rem);
  letter-spacing: 4px;
  line-height: 1;
}
@media all and (max-width: 896px) {
  hgroup:has(h2) h2 {
    font-size: 4rem;
    letter-spacing: 3.2px;
  }
}

.mv {
  position: relative;
}
.mv-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}
.mv-inner hgroup {
  position: absolute;
  top: 9.5vw;
  left: 8vw;
  font-family: "Cinzel", serif;
  font-size: clamp(1.4rem, 1vw, 2rem);
  font-weight: 500;
  opacity: 0;
  filter: blur(20px);
  letter-spacing: 0.4em;
  transform: scale(1.08);
}
@media all and (max-width: 896px) {
  .mv-inner hgroup {
    top: 90px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 1.7rem;
  }
}
.mv-inner hgroup h1 {
  margin-bottom: 8px;
  font-size: min(2.6vw, 5rem);
  line-height: 1.1;
}
@media all and (max-width: 896px) {
  .mv-inner hgroup h1 {
    margin-bottom: -2px;
    font-size: 2.2rem;
  }
}
.mv-inner .collabo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6.3vw;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50vw;
  height: 13vw;
  background: url(../images/top/bg_collabo.svg) no-repeat center/cover;
  translate: -50% -50%;
  opacity: 0;
}
@media all and (max-width: 896px) {
  .mv-inner .collabo {
    top: 168px;
    flex-direction: column;
    gap: 50px;
    width: 261px;
    height: 230px;
    padding-top: 14px;
    background: url(../images/top/bg_collabo_sp.svg) no-repeat center/cover;
    translate: -50%;
  }
}
.mv-inner .collabo .k-art {
  width: 16.7vw;
  opacity: 0;
}
@media all and (max-width: 896px) {
  .mv-inner .collabo .k-art {
    width: 145px;
  }
}
.mv-inner .collabo .stay {
  position: relative;
  width: 17vw;
  opacity: 0;
}
@media all and (max-width: 896px) {
  .mv-inner .collabo .stay {
    width: 70px;
  }
}
.mv-inner .collabo .stay::before {
  content: "×";
  position: absolute;
  top: 50%;
  left: -4.2vw;
  color: #000;
  font-size: 2.4vw;
  line-height: 1;
  translate: 0 -50%;
  opacity: 0;
}
@media all and (max-width: 896px) {
  .mv-inner .collabo .stay::before {
    font-size: 3rem;
    top: -40px;
    left: 50%;
    translate: -50%;
  }
}
.mv-inner dl {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 33vw;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: clamp(1.4rem, 1vw, 2rem);
  opacity: 0;
}
@media all and (max-width: 896px) {
  .mv-inner dl {
    top: 400px;
    font-size: 1.2rem;
  }
}
.mv-inner dl dt {
  font-family: "Noto Serif JP", serif;
  font-size: min(3vw, 6rem);
}
@media all and (max-width: 896px) {
  .mv-inner dl dt {
    font-size: 3.4rem;
  }
}
.mv-inner .scroll {
  position: absolute;
  top: 25vw;
  left: 8vw;
  writing-mode: vertical-rl;
  font-weight: 300;
  opacity: 0;
}
@media all and (max-width: 896px) {
  .mv-inner .scroll {
    top: calc(100svh - 100px);
    left: 50%;
    writing-mode: horizontal-tb;
    translate: -50%;
    opacity: 1;
    transition: opacity 0.3s;
  }
  .mv-inner .scroll.is-hide {
    opacity: 0;
    pointer-events: none;
  }
  .mv-inner .scroll.is-reserve-show {
    top: calc(100svh - 167px);
  }
}
.mv-inner .scroll::before {
  animation: scroll 3s infinite;
  background-color: #fff;
  bottom: -95px;
  content: "";
  height: 80px;
  left: -1px;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
@media all and (max-width: 896px) {
  .mv-inner .scroll::before {
    bottom: -32px;
    height: 30px;
  }
}
.mv.is-active hgroup {
  animation: renewalText 1.2s cubic-bezier(0.22, 1, 0.36, 1) 2.5s forwards;
}
.mv.is-active .collabo {
  animation: fade 1s cubic-bezier(0.33, 1, 0.68, 1) 3s forwards;
}
.mv.is-active .collabo .k-art {
  animation: k-art 1s cubic-bezier(0.33, 1, 0.68, 1) 3.5s forwards;
}
.mv.is-active .collabo .stay {
  animation: stay 1s cubic-bezier(0.33, 1, 0.68, 1) 3.5s forwards;
}
.mv.is-active .collabo .stay::before {
  animation: stay-before 0.7s cubic-bezier(0.33, 1, 0.68, 1) 4s forwards;
}
.mv.is-active dl {
  animation: fade 1s cubic-bezier(0.33, 1, 0.68, 1) 5s forwards;
}
.mv.is-active .scroll {
  animation: fade 1s cubic-bezier(0.33, 1, 0.68, 1) 2.5s forwards;
}
@media all and (max-width: 896px) {
  .mv.is-active .scroll {
    animation: none;
  }
}

.feature {
  margin-top: 10vw;
  font-size: clamp(1.6rem, 1vw, 2rem);
  line-height: 2.4;
  letter-spacing: 0.2em;
}
@media all and (max-width: 896px) {
  .feature {
    font-size: 1.6rem;
  }
}
.feature div div {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.feature01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  padding-right: 20vw;
}
@media all and (max-width: 896px) {
  .feature01 {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0;
  }
}
.feature01 figure {
  position: relative;
  z-index: 0;
  width: 38.54vw;
  opacity: 0;
  transform: scale(1.2);
  filter: blur(2px);
}
@media all and (max-width: 896px) {
  .feature01 figure {
    width: 300px;
  }
}
.feature01 figure::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 17vw;
  height: 17vw;
  background: #d7b968;
}
@media all and (max-width: 896px) {
  .feature01 figure::after {
    width: 128px;
    height: 128px;
  }
}
.feature01 p {
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 896px) {
  .feature01 p {
    padding-left: 20px;
    line-height: 1.6;
  }
}
.feature01 p span {
  clip-path: inset(0 100% 0 0);
}
.feature01 p strong {
  font-size: 4rem;
  font-weight: 400;
}
@media all and (max-width: 896px) {
  .feature01 p strong {
    font-size: 3.4rem;
  }
}
.feature01.is-show figure {
  animation: p01 1.5s ease-out 0.5s forwards;
}
.feature01.is-show figure::after {
  animation: p01-after 1.5s ease-out 0.5s forwards;
}
@media all and (max-width: 896px) {
  .feature01.is-show figure::after {
    animation: p01-after_sp 1.5s ease-out 0.5s forwards;
  }
}
.feature01.is-show p span {
  animation: p01-txt 1.25s ease-out 2s forwards;
}
.feature01.is-show p span:last-child {
  animation-delay: 3s;
}
.feature02 {
  display: flex;
  justify-content: flex-end;
  margin-top: -7vw;
}
@media all and (max-width: 896px) {
  .feature02 {
    margin-top: 68px;
  }
}
.feature02 figure {
  width: 30vw;
  opacity: 0;
  transform: scale(1.2);
  filter: blur(2px);
}
@media all and (max-width: 896px) {
  .feature02 figure {
    width: 271px;
  }
}
.feature02.is-show figure {
  animation: p01 1.5s ease-out 0.5s forwards;
}
.feature02.is-show figure::after {
  animation: p01-after 1.5s ease-out 0.5s forwards;
}
.feature03 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 5vw;
  margin-top: -2vw;
  padding-inline: 15vw 9vw;
}
@media all and (max-width: 896px) {
  .feature03 {
    flex-direction: column;
    align-items: flex-start;
    gap: 100px;
    margin-top: 36px;
    padding-inline: 35px 0;
  }
}
.feature03 figure {
  position: relative;
  z-index: 0;
  width: 24.27vw;
  opacity: 0;
  transform: scale(1.2);
  filter: blur(2px);
}
@media all and (max-width: 896px) {
  .feature03 figure {
    width: 208px;
  }
}
.feature03 figure::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 24vw;
  height: 24vw;
  background: #5486ac;
}
@media all and (max-width: 896px) {
  .feature03 figure::after {
    width: 128px;
    height: 128px;
  }
}
.feature03 p {
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 896px) {
  .feature03 p {
    margin-left: 54px;
  }
}
.feature03 p span {
  clip-path: inset(0 100% 0 0);
}
.feature03.is-show figure {
  animation: p01 1.5s ease-out 0.5s forwards;
}
.feature03.is-show figure::after {
  animation: p03-after 1.5s ease-out 0.5s forwards;
}
@media all and (max-width: 896px) {
  .feature03.is-show figure::after {
    animation: p03-after_sp 1.5s ease-out 0.5s forwards;
  }
}
.feature03.is-show p span {
  animation: p01-txt 1.25s ease-out 2s forwards;
}
.feature03.is-show p span:last-child {
  animation-delay: 3s;
}
.feature03.is-show p:last-child span {
  animation-delay: 4s;
}
.feature04 {
  display: flex;
  justify-content: flex-end;
  margin-top: 10vw;
  padding-right: 6vw;
}
@media all and (max-width: 896px) {
  .feature04 {
    margin-top: 76px;
    padding-right: 0;
  }
}
.feature04 figure {
  position: relative;
  z-index: 0;
  width: 42.81vw;
  opacity: 0;
  transform: scale(1.2);
  filter: blur(2px);
}
@media all and (max-width: 896px) {
  .feature04 figure {
    width: 317px;
  }
}
.feature04 figure::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 24vw;
  height: 24vw;
  background: #956134;
}
@media all and (max-width: 896px) {
  .feature04 figure::after {
    width: 220px;
    height: 220px;
  }
}
.feature04.is-show figure {
  animation: p01 1.5s ease-out 0.5s forwards;
}
.feature04.is-show figure::after {
  animation: p04-after 1.5s ease-out 0.5s forwards;
}
@media all and (max-width: 896px) {
  .feature04.is-show figure::after {
    animation: p04-after_sp 1.5s ease-out 0.5s forwards;
  }
}
.feature05 {
  display: flex;
  margin-top: -21vw;
}
@media all and (max-width: 896px) {
  .feature05 {
    margin-top: 54px;
  }
}
.feature05 figure {
  position: relative;
  z-index: 0;
  width: 30vw;
  opacity: 0;
  transform: scale(1.2);
  filter: blur(2px);
}
@media all and (max-width: 896px) {
  .feature05 figure {
    width: 262px;
  }
}
.feature05.is-show figure {
  animation: p01 1.5s ease-out 0.5s forwards;
}
.feature06 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 7vw;
  margin-top: 15vw;
  padding-inline: 10vw 8vw;
}
@media all and (max-width: 896px) {
  .feature06 {
    flex-direction: column-reverse;
    gap: 326px;
    margin-top: 64px;
    padding-inline: 20px 0;
  }
}
.feature06 figure {
  flex: none;
  position: relative;
  z-index: 0;
  width: 48.54vw;
  opacity: 0;
  transform: scale(1.2);
  filter: blur(2px);
}
@media all and (max-width: 896px) {
  .feature06 figure {
    width: 335px;
  }
}
.feature06 figure::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 24vw;
  height: 24vw;
  background: #96b086;
}
@media all and (max-width: 896px) {
  .feature06 figure::after {
    width: 94px;
    height: 94px;
  }
}
.feature06 figure::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 24vw;
  height: 24vw;
  background: #f3a696;
}
@media all and (max-width: 896px) {
  .feature06 figure::before {
    width: 208px;
    height: 208px;
  }
}
.feature06 div {
  padding-bottom: 8.125vw;
}
@media all and (max-width: 896px) {
  .feature06 div {
    padding-bottom: 0;
  }
}
.feature06 p {
  display: flex;
  flex-direction: column;
}
.feature06 p span {
  clip-path: inset(0 100% 0 0);
}
.feature06.is-show figure {
  animation: p01 1.5s ease-out 0.5s forwards;
}
@media all and (max-width: 896px) {
  .feature06.is-show figure {
    animation-delay: 2s;
  }
}
.feature06.is-show figure::after {
  animation: p06-after 1.5s ease-out 0.5s forwards;
}
@media all and (max-width: 896px) {
  .feature06.is-show figure::after {
    animation: p06-after_sp 1.5s ease-out 1.75s forwards;
  }
}
.feature06.is-show figure::before {
  animation: p06-before 1.5s ease-out 0.5s forwards;
}
@media all and (max-width: 896px) {
  .feature06.is-show figure::before {
    animation: p06-before_sp 1.5s ease-out 1.75s forwards;
  }
}
.feature06.is-show p span {
  animation: p01-txt 1.25s ease-out 2s forwards;
}
@media all and (max-width: 896px) {
  .feature06.is-show p span {
    animation-delay: 0.5s;
  }
}
.feature06.is-show p span:last-child {
  animation-delay: 3s;
}
@media all and (max-width: 896px) {
  .feature06.is-show p span:last-child {
    animation-delay: 0.6s;
  }
}
.feature06.is-show p:last-child span {
  animation-delay: 4s;
}
@media all and (max-width: 896px) {
  .feature06.is-show p:last-child span {
    animation-delay: 0.7s;
  }
}

.room {
  margin-top: 8vw;
  opacity: 0;
}
@media all and (max-width: 896px) {
  .room {
    margin-top: 50px;
  }
}
.room.is-show {
  animation: fade 1s forwards;
}
.room a:hover {
  opacity: 1;
}
.room-inner {
  padding-inline: min(5vw, 100px);
}
.room-inner dl {
  font-size: 1.6rem;
  padding-inline: min(4vw, 80px);
  letter-spacing: 0.2em;
  line-height: 2;
}
@media all and (max-width: 896px) {
  .room-inner dl {
    padding-inline: 0;
    font-size: 1.4rem;
  }
}
.room-inner dl dt {
  font-size: clamp(2rem, 1.25vw, 2.4rem);
  font-weight: 500;
}
.room-inner dl dt:not(:first-child) {
  margin-top: 1.5em;
}
@media all and (max-width: 896px) {
  .room-inner dl dt {
    display: flex;
    flex-direction: column;
    font-size: 1.8rem;
  }
}
.room-inner dl dt span {
  margin-left: 0.5em;
  font-size: clamp(1.6rem, 1vw, 2rem);
}
@media all and (max-width: 896px) {
  .room-inner dl dt span {
    margin-left: 0;
    font-size: 1.4rem;
  }
}
.room-inner .note {
  margin: 1.5em 0 0 1.2em;
  padding-inline: min(4vw, 80px);
  text-indent: -1.2em;
  letter-spacing: 0.2em;
  line-height: 1.8;
}
@media all and (max-width: 896px) {
  .room-inner .note {
    padding-inline: 0;
  }
}
.room ul {
  position: relative;
  aspect-ratio: 16/6;
  margin: 40px min(2.5vw, 50px) 0;
}
@media (hover: hover) {
  .room ul:hover li:not(:hover) {
    transition-duration: 0.2s;
  }
}
@media all and (max-width: 896px) {
  .room ul {
    margin-inline: 20px;
  }
}
.room ul::before {
  content: "";
  position: absolute;
  bottom: -6vw;
  left: 50%;
  z-index: 0;
  width: 100vw;
  height: 23vw;
  background: url(../images/common/bg.webp);
  translate: -50% 0;
}
@media all and (max-width: 896px) {
  .room ul::before {
    bottom: -12vw;
    height: 100vw;
  }
}
.room ul li {
  position: absolute;
  top: 0;
  z-index: 1;
  width: calc((100% - 16px) / 2);
  height: 100%;
  overflow: hidden;
  transition: width 0.4s ease, opacity 0.25s ease;
}
@media all and (max-width: 896px) {
  .room ul li {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
}
.room ul li::after {
  content: "coming\asoon";
  white-space: pre-wrap;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 1.25vw;
  bottom: 1.25vw;
  width: min(7.3vw, 140px);
  aspect-ratio: 1;
  padding-top: 4px;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: clamp(1.2rem, 1.25vw, 2.4rem);
  line-height: 1.2;
}
@media all and (max-width: 896px) {
  .room ul li::after {
    right: 8px;
    bottom: 8px;
    width: 64px;
    font-size: 1rem;
  }
}
.room ul li:first-child {
  left: 0;
  background: url(../images/top/img_room_01.webp) no-repeat center/cover;
}
@media all and (max-width: 896px) {
  .room ul li:first-child {
    margin-top: 0;
  }
}
.room ul li:last-child {
  right: 0;
  background: url(../images/top/img_room_02.webp) no-repeat center/cover;
}
.room ul li a, .room ul li button {
  display: flex;
  width: 100%;
  height: 100%;
}
.room ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.room ul li:has(a)::after, .room ul li:has(button)::after {
  content: "";
  background: url(../images/common/ico_arrow.svg) no-repeat center/2.3vw auto;
  pointer-events: none;
}
@media all and (max-width: 896px) {
  .room ul li:has(a)::after, .room ul li:has(button)::after {
    background-size: 20px auto;
  }
}
@media (hover: hover) {
  .room ul li:has(a):hover, .room ul li:has(button):hover {
    width: 100%;
    z-index: 10;
  }
  .room ul li:has(a):hover img, .room ul li:has(button):hover img {
    opacity: 0;
    visibility: hidden;
  }
}
.room ul li hgroup {
  position: absolute;
  bottom: -21px;
  left: 0;
  width: 100%;
  color: #fff;
  pointer-events: none;
}
@media (max-width: 1366px) {
  .room ul li hgroup {
    bottom: -14px;
  }
}
@media (max-width: 1000px) {
  .room ul li hgroup {
    bottom: -10px;
  }
}
@media all and (max-width: 896px) {
  .room ul li hgroup {
    bottom: -8px;
  }
}
.room ul li hgroup h3 {
  display: flex;
  flex-direction: column;
}
.room ul li hgroup h3 em {
  /*color: transparent;
  -webkit-text-stroke: 1px #fff;
  font-family: "League Spartan";
  font-weight: 600;*/
  display: flex;
  align-items: center;
  gap: 1.35vw;
  font-family: "Cinzel", serif;
  font-size: clamp(5rem, 5.21vw, 10rem);
  letter-spacing: 7px;
  font-style: normal;
  line-height: 1;
}
@media all and (max-width: 896px) {
  .room ul li hgroup h3 em {
    gap: 10px;
    font-size: 3.7rem;
  }
}
.room ul li hgroup h3 span {
  margin-top: -8px;
  color: #fff;
  -webkit-text-stroke: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.2rem, 0.93vw, 1.8rem);
  letter-spacing: 0.2em;
}
@media all and (max-width: 896px) {
  .room ul li hgroup h3 span {
    font-size: 1rem;
  }
}

.breakfast {
  margin-top: 17vw;
  opacity: 0;
}
@media all and (max-width: 896px) {
  .breakfast {
    margin-top: 100px;
  }
}
.breakfast.is-show {
  animation: fade 1s forwards;
}
.breakfast-inner {
  display: flex;
  justify-content: space-between;
  gap: min(8.3vw, 160px);
  padding-inline: min(5vw, 100px);
}
@media all and (max-width: 896px) {
  .breakfast-inner {
    flex-direction: column;
    gap: 24px;
    padding-inline: 20px;
  }
}
.breakfast-visual {
  flex: none;
  width: 46.15vw;
  max-width: 886px;
}
@media all and (max-width: 896px) {
  .breakfast-visual {
    width: 100%;
    order: 2;
  }
}
.breakfast-visual .swiper-wrapper {
  padding-bottom: 0;
}
.breakfast-visual .swiper-slide img {
  width: 100%;
  aspect-ratio: 886/665;
  object-fit: cover;
}
.breakfast-visual .note {
  margin-top: 1.77vw;
  color: #3c3a39;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-indent: -1.1em;
  margin-left: 1.1em;
}
@media all and (max-width: 896px) {
  .breakfast-visual .note {
    margin-top: 12px;
    font-size: 1rem;
  }
}
.breakfast-visual .swiper-pagination {
  position: static;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  width: auto;
  margin-top: 16px;
  padding-right: 0;
}
@media all and (max-width: 896px) {
  .breakfast-visual .swiper-pagination {
    margin-top: 12px;
  }
}
.breakfast-visual .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  margin: 0 !important;
  border-radius: 0;
  border: 1px solid #221815;
  background: transparent;
  opacity: 1;
}
.breakfast-visual .swiper-pagination-bullet-active {
  background: #221815;
}
.breakfast-content {
  flex: 1;
  min-width: 0;
  padding-top: 2.6vw;
}
@media all and (max-width: 896px) {
  .breakfast-content {
    padding-top: 0;
    order: 1;
  }
}
.breakfast-content hgroup {
  margin-left: -4.17vw;
  color: #221815;
}
@media all and (max-width: 896px) {
  .breakfast-content hgroup {
    margin-left: 0;
  }
}
.breakfast-content .lead {
  color: #3c3a39;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  line-height: 2.4;
}
@media all and (max-width: 896px) {
  .breakfast-content .lead {
    font-size: 1.3rem;
    line-height: 2;
  }
}
.breakfast-content .table {
  margin-top: 2.5vw;
}
@media all and (max-width: 896px) {
  .breakfast-content .table {
    margin-top: 24px;
  }
}
.breakfast-content .table div {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(34, 24, 21, 0.3);
}
.breakfast-content .table dt,
.breakfast-content .table dd {
  padding: 24px;
  color: #221815;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
}
@media all and (max-width: 896px) {
  .breakfast-content .table dt,
  .breakfast-content .table dd {
    padding: 16px 8px;
    font-size: 1.3rem;
  }
}
.breakfast-content .table dt {
  width: 180px;
}
@media all and (max-width: 896px) {
  .breakfast-content .table dt {
    width: 96px;
  }
}
.breakfast-content .table dd {
  width: calc(100% - 180px);
}
@media all and (max-width: 896px) {
  .breakfast-content .table dd {
    width: calc(100% - 96px);
  }
}

.access {
  position: relative;
  z-index: 0;
  margin-top: 12.5vw;
  padding-bottom: 6.25vw;
  opacity: 0;
}
@media all and (max-width: 896px) {
  .access {
    margin-top: 40px;
    padding-bottom: 40px;
  }
}
.access::before {
  content: "";
  position: absolute;
  top: 2vw;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../images/common/bg.webp);
}
@media all and (max-width: 896px) {
  .access::before {
    top: 18px;
  }
}
.access.is-show {
  animation: fade 1s forwards;
}
.access-inner {
  padding-inline: min(5vw, 100px);
}
@media all and (max-width: 896px) {
  .access-inner {
    padding-inline: 20px;
  }
}
.access-inner hgroup {
  margin-bottom: min(4vw, 80px);
}
@media all and (max-width: 896px) {
  .access-inner hgroup {
    margin-bottom: 40px;
  }
}
.access-inner .info-wrap {
  display: flex;
  gap: 3.75vw;
  padding-inline: min(4vw, 80px);
}
@media all and (max-width: 896px) {
  .access-inner .info-wrap {
    flex-direction: column-reverse;
    gap: 16px;
    padding-inline: 0;
  }
}
.access-inner .info-wrap .info {
  flex: none;
  width: 400px;
  line-height: 2.4;
}
@media all and (max-width: 896px) {
  .access-inner .info-wrap .info {
    width: 100%;
    line-height: 2;
  }
}
.access-inner .info-wrap .info dl {
  display: flex;
  gap: 2vw;
  padding-block: 24px;
  border-bottom: 1px solid #fff;
  color: #fff;
}
@media all and (max-width: 896px) {
  .access-inner .info-wrap .info dl {
    flex-direction: column;
    gap: 0;
    padding-block: 20px;
  }
}
.access-inner .info-wrap .info dl dt {
  min-width: 3.8em;
  font-size: 1.8rem;
}
@media all and (max-width: 896px) {
  .access-inner .info-wrap .info dl dt {
    margin-bottom: 4px;
    font-size: 1.6rem;
  }
}
.access-inner .info-wrap .info dl a[href^="tel:"] {
  pointer-events: none;
}
@media all and (max-width: 896px) {
  .access-inner .info-wrap .info dl a[href^="tel:"] {
    pointer-events: auto;
  }
}
.access-inner .map {
  width: calc(100% - 400px - 3.75vw);
}
@media all and (max-width: 896px) {
  .access-inner .map {
    width: 100%;
  }
}
.access-inner .map iframe {
  width: 100%;
  height: 100%;
}
@media all and (max-width: 896px) {
  .access-inner .map iframe {
    aspect-ratio: 4/3;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes overlay {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.3;
  }
}
@keyframes overlay-out {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
  }
}
@keyframes lighting {
  100% {
    transform: translate(-100%, -100%);
  }
}
@keyframes renewalText {
  0% {
    opacity: 0;
    filter: blur(20px);
    letter-spacing: 0.4em;
    transform: scale(1.08);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    filter: blur(0);
    letter-spacing: 0.08em;
    transform: scale(1);
  }
}
@keyframes k-art {
  0% {
    opacity: 0;
    translate: -200px;
  }
  100% {
    opacity: 1;
    translate: 0;
  }
}
@keyframes stay {
  0% {
    opacity: 0;
    translate: 200px;
  }
  100% {
    opacity: 1;
    translate: 0;
  }
}
@keyframes stay-before {
  0% {
    opacity: 0;
    scale: 30;
    rotate: 90deg;
  }
  100% {
    opacity: 1;
    scale: 1;
    rotate: 0;
  }
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes p01 {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.9) rotate(-1deg);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(-8px) scale(1) rotate(0.5deg);
    filter: blur(0);
  }
}
@keyframes p01-txt {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0);
  }
}
@keyframes p01-after {
  0% {
    right: 0;
    bottom: 0;
    transform: rotate(-18deg) scale(0.8);
  }
  100% {
    right: -5vw;
    bottom: -5vw;
    transform: rotate(0deg) scale(1);
  }
}
@keyframes p01-after_sp {
  0% {
    right: 0;
    bottom: 0;
    transform: rotate(-18deg) scale(0.8);
  }
  100% {
    right: -18px;
    bottom: -18px;
    transform: rotate(0deg) scale(1);
  }
}
@keyframes p03-after {
  0% {
    left: -25vw;
    bottom: -7vw;
    transform: rotate(18deg) scale(0.8);
    @media all and (max-width: 896px) {
      left: 260px;
      bottom: -38px;
    }
  }
  100% {
    left: -30vw;
    bottom: -13vw;
    transform: rotate(0deg) scale(1);
    @media all and (max-width: 896px) {
      left: 290px;
      bottom: -38px;
    }
  }
}
@keyframes p03-after_sp {
  0% {
    left: 260px;
    bottom: -90px;
    transform: rotate(18deg) scale(0.8);
  }
  100% {
    left: 290px;
    bottom: -90px;
    transform: rotate(0deg) scale(1);
  }
}
@keyframes p04-after {
  0% {
    top: 0;
    left: -13vw;
    transform: rotate(-18deg) scale(0.8);
  }
  100% {
    top: -2vw;
    left: -17vw;
    transform: rotate(0deg) scale(1);
  }
}
@keyframes p04-after_sp {
  0% {
    top: -60px;
    left: -60px;
    transform: rotate(-18deg) scale(0.8);
  }
  100% {
    top: -18px;
    left: -18px;
    transform: rotate(0deg) scale(1);
  }
}
@keyframes p06-after {
  0% {
    top: 0;
    left: 0;
    transform: rotate(18deg) scale(0.8);
  }
  100% {
    top: -7vw;
    left: -5vw;
    transform: rotate(0deg) scale(1);
  }
}
@keyframes p06-after_sp {
  0% {
    top: 0;
    left: 0;
    transform: rotate(18deg) scale(0.8);
  }
  100% {
    top: -16px;
    left: -16px;
    transform: rotate(0deg) scale(1);
  }
}
@keyframes p06-before {
  0% {
    top: 0;
    left: 64vw;
    transform: rotate(-18deg) scale(0.8);
  }
  100% {
    top: -9vw;
    left: 67vw;
    transform: rotate(0deg) scale(1);
  }
}
@keyframes p06-before_sp {
  0% {
    top: -200px;
    right: 20px;
    transform: rotate(-18deg) scale(0.8);
  }
  100% {
    top: -260px;
    right: 40px;
    transform: rotate(0deg) scale(1);
  }
}

/*# sourceMappingURL=top.css.map */
