@charset "utf-8";
/* CSS Document */

/*----------------------------------------
header
----------------------------------------*/
header {
  --height_logo: 50px;
  position: fixed;
  z-index: 10;
  top: 0px;
  width: 100%;
  padding: 20px;
  background-color: color-mix(in srgb, #141418 60%, transparent);
}
header .header_wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  width: min(95%, 1400px);
  margin-inline: auto;
}
header .logo img {
  width: 180px;
}
header nav {
  display: grid;
  gap: 10px;
}
header .cv_wrap,
header .sitemap {
  display: grid;
  grid-auto-flow: column;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  font-family: var(--font_jp02);
}
header .sitemap {
  gap: 30px;
}
header [class*="btn_"] {
  --btn_color: var(--base_bg);
  --btn_bg: var(--c_main);
  min-width: 140px;
  min-height: 40px;
  padding: 5px;
}
header a {
  display: block;
}
@media (max-width: 1100px) {
  header {
    padding: 10px;
  }
  header .logo img {
    width: 150px;
  }
  header .cv_wrap {
    display: none;
  }
  header .sitemap {
    grid-auto-flow: row;
    justify-content: stretch;
    gap: 10px;
  }
  header .sitemap a {
    padding: 10px 0;
  }
}
/* #hamburger */
input[type="checkbox"],
#hamburger ~ label {
  display: none;
}
@media (max-width: 1100px) {
  #hamburger ~ label {
    position: relative;
    display: grid;
    justify-content: center;
    align-items: center;
    width: 30px;
    aspect-ratio: 1 / 1;
    z-index: 10;
  }
  #hamburger ~ label span {
    position: absolute;
    left: 50%;
    translate: -50% -50%;
    width: 100%;
    height: 2px;
    display: inline-block;
    background-color: #fff;
  }
  #hamburger ~ label span:nth-of-type(1) {
    top: 20%;
  }
  #hamburger ~ label span:nth-of-type(2) {
    top: 50%;
  }
  #hamburger ~ label span:nth-of-type(3) {
    top: 80%;
  }
  #hamburger:checked ~ label span {
    translate: -50% -50%;
  }
  #hamburger:checked ~ label span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    rotate: -45deg;
  }
  #hamburger:checked ~ label span:nth-of-type(2) {
    display: none;
  }
  #hamburger:checked ~ label span:nth-of-type(3) {
    top: 50%;
    left: 50%;
    rotate: 45deg;
  }
  /* .nav_wrap */
  #hamburger ~ .nav_wrap {
    visibility: hidden;
  }
  #hamburger:checked ~ .nav_wrap {
    visibility: visible;
  }
  body:has(#hamburger:checked) {
    overflow: hidden;
  }
  header:has(#hamburger:checked) h1 .logo {
    position: relative;
    z-index: -1;
  }
  #hamburger ~ .nav_wrap {
    --width: 320px;
    position: fixed;
    z-index: -1;
    top: 0px;
    /* right: calc(-1 * var(--width)); */
    right: 0px;
    width: min(100%, var(--width));
    height: 100dvh;
    padding-block: calc(var(--height_header) + 20px);
    padding-inline: 20px;
    background-color: var(--base_bg);
    filter: drop-shadow(0px 0px 5px rgb(0 0 0 / 0.3));
    overflow-y: scroll;
  }
}

/*----------------------------------------
.mv
----------------------------------------*/
.mv .bg_img::before {
  content: "";
  position: absolute;
  inset: 0px;
  background-color: rgb(0 0 0 / 0.4);
}
.mv .bg_img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv .mv_wrap {
  aspect-ratio: 16 / 9;
}
.mv .mv_wrap > * {
  position: relative;
  height: 100%;
}
.mv .mv_heading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 9.5rem;
  font-family: var(--font_en);
  line-height: 1.2;
  text-align: center;
}
.mv_catch {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px 0;
}
.mv_catch .mv_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
.mv_catch .figure img {
  width: 130px;
  aspect-ratio: 133 / 190;
}
@media (max-width: 520px) {
  .mv .mv_wrap {
    aspect-ratio: auto;
  }
  .mv .mv_heading {
    height: auto;
    padding: 130px 0 30px;
    font-size: 5rem;
  }
  .mv_catch {
    position: relative;
    bottom: auto;
  }
  .mv_catch .mv_inner {
    gap: 10px;
    font-size: 1.4rem;
  }
  .mv_catch .mv_inner .fs26 {
    font-size: 2rem;
  }
  .mv_catch .figure img {
    width: 100px;
  }
}

.js_delay span {
  filter: blur(10px);
  animation: blur 1.5s ease 2s both;
}
@keyframes blur {
  from {
    opacity: 1;
    filter: blur(0);
  }
  to {
    opacity: 0;
    filter: blur(10px);
  }
}

.js_delay p:nth-child(1) span:nth-child(1) {
  animation-delay: 2.8s;
}
.js_delay p:nth-child(1) span:nth-child(2) {
  animation-delay: 2s;
}
.js_delay p:nth-child(1) span:nth-child(3) {
  animation-delay: 3.8s;
}
.js_delay p:nth-child(1) span:nth-child(4) {
  animation-delay: 3.2s;
}
.js_delay p:nth-child(1) span:nth-child(5) {
  animation-delay: 4s;
}
.js_delay p:nth-child(1) span:nth-child(6) {
  animation-delay: 4.6s;
}

.js_delay p:nth-child(2) span:nth-child(1) {
  animation-delay: 3s;
}
.js_delay p:nth-child(2) span:nth-child(2) {
  animation-delay: 2.4s;
}
.js_delay p:nth-child(2) span:nth-child(3) {
  animation-delay: 4.2s;
}
.js_delay p:nth-child(2) span:nth-child(4) {
  animation-delay: 4.8s;
}

.js_delay p:nth-child(3) span:nth-child(1) {
  animation-delay: 2.2s;
}
.js_delay p:nth-child(3) span:nth-child(2) {
  animation-delay: 3.4s;
}
.js_delay p:nth-child(3) span:nth-child(3) {
  animation-delay: 5s;
}
.js_delay p:nth-child(3) span:nth-child(4) {
  animation-delay: 2.6s;
}
.js_delay p:nth-child(3) span:nth-child(5) {
  animation-delay: 4.4s;
}
.js_delay p:nth-child(3) span:nth-child(6) {
  animation-delay: 3.6s;
}

/*----------------------------------------
.reserve
----------------------------------------*/
@media (max-width: 520px) {
  .reserve .grid_2c {
    --gap: 10px;
  }
}

/*----------------------------------------
.check_list
----------------------------------------*/
.check_list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--c_acc);
  border-bottom: 1px dashed #9d9d9e;
}
.check_list li:first-child {
  border-top: 1px dashed #9d9d9e;
}
.check_list li::before {
  content: "";
  width: 25px;
  height: auto;
  aspect-ratio: 1 / 1;
  background: url(../images/check_list.png) center center / contain no-repeat;
}

/*----------------------------------------
.concept
----------------------------------------*/
.concept .bg_img {
  left: auto;
  bottom: auto;
  width: min(80%, 970px);
}
.concept .bg_img img {
  mask-image: linear-gradient(to right, transparent 10%, black 60%),
    linear-gradient(to top, transparent 10%, black 60%);
  mask-composite: intersect;
}

/*----------------------------------------
.modal
----------------------------------------*/
body:has(input[type="checkbox"].modal:checked) {
  overflow: hidden;
}

.close_A {
  cursor: pointer;
  position: absolute;
  inset: 0;
}
.close_B {
  cursor: pointer;
  display: block;
  margin-bottom: 20px;
  font-size: 3rem;
  text-align: right;
  line-height: 1;
}

.modal_hide {
  overflow: auto;
  position: fixed;
  z-index: 100;
  inset: 0px;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: rgb(0 0 0 / 0.9);
  transition: var(--transition);
  display: none;
  opacity: 0;
}
input[type="checkbox"].modal:checked + .modal_hide {
  display: block;
  opacity: 1;
}

.modal_scroll {
  height: 100%;
  overflow-y: auto;
}
.modal_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(100%, 980px);
  height: 100%;
  margin-inline: auto;
}
.modal_inner {
  position: relative;
  z-index: 1;
}
@media (max-width: 520px) {
  .modal_wrap {
    align-items: flex-start;
  }
}

[id*="room_"] ~ .modal_hide .btn_B {
  width: fit-content;
  background-color: transparent;
  border: none;
}
[id*="room_"] ~ .modal_hide .btn_B.L::before {
  background-color: #fff;
}
[id*="room_"] ~ .modal_hide .figcaption {
  margin-top: 10px;
  text-align: center;
}

label[for*="campaign_"] .figure {
  overflow: hidden;
}
label[for*="campaign_"] .figure img {
  transition: var(--transition);
}
label[for*="campaign_"]:hover .figure img {
  scale: 1.05;
}
[id*="campaign_"] ~ .modal_hide .box_2c {
  --box: 50%;
  --gap: 40px;
}

/*----------------------------------------
.splide
----------------------------------------*/
.modal_splide {
  padding: 0 2em;
}

/* .splide__arrow */
.splide__arrow {
  background: transparent;
}
.splide__arrow svg {
  fill: #fff;
}

.splide__arrow--next {
  right: auto;
  left: 100%;
}
.splide__arrow--prev {
  left: auto;
  right: 100%;
}

/* .splide__pagination */
.splide__pagination {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  margin-top: 10px;
}
.splide__pagination__page {
  background: color-mix(in srgb, var(--c_main) 50%, #fff);
}
.splide__pagination__page.is-active {
  background: var(--c_main);
}

/* isNavigation: true, */
.splide__track--nav > .splide__list > .splide__slide,
.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: none;
}

/*----------------------------------------
.floor_map
----------------------------------------*/
.floor_map {
  position: relative;
}
.floor_map label {
  position: absolute;
  width: 65px;
  height: auto;
  aspect-ratio: 1 / 1;
  /* background-color: red; */
}
.floor_map label[for="room_A"] {
  top: 54.5%;
  left: 59.5%;
}
.floor_map label[for="room_B"] {
  top: 88%;
  left: 16.5%;
}
.floor_map label[for="room_C"] {
  top: 54.5%;
  left: 43.5%;
}
.floor_map label[for="room_VIP"] {
  top: 36%;
  left: 50.5%;
}
@media (max-width: 520px) {
  .floor_map label {
    width: 20px;
  }
}

/*----------------------------------------
.price
----------------------------------------*/
.price .bg_img {
  bottom: auto;
  height: 50%;
}
.price .bg_img img {
  mask-image: linear-gradient(to top, transparent 0%, #000 100%);
  mask-composite: intersect;
  opacity: 0.6;
}

/* .table_price */
.table_price table {
  width: 100%;
  color: var(--base_bg);
}
.table_price tbody {
  --distance: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-auto-columns: 1fr;
  gap: var(--distance);
}
.table_price tr {
  display: grid;
  grid-template-columns: subgrid;
}
.table_price tr:not(:first-child) {
  align-items: center;
  background-color: #fff;
}
.table_price tr:first-child th:not(:empty) {
  line-height: 1.4;
  background: linear-gradient(to right, #c49e3f 0%, #fff 50%, #c49e3f 100%);
}
.table_price tr:first-child th:not(:empty) .btn_C {
  margin-top: 10px;
  font-size: 1.4rem;
}
.table_price :is(th, td) {
  padding: 10px;
  vertical-align: middle;
}
.table_price th {
  font-size: 2rem;
  text-align: center;
}
.table_price th small {
  display: block;
  font-size: 1.4rem;
}
.table_price td p {
  width: fit-content;
  margin: auto;
  font-size: 2.2rem;
  text-align: right;
  line-height: 1.2;
}

@media (min-width: 521px) {
  .table_price tr {
    grid-column: span 5;
  }
}
@media (max-width: 520px) {
  .table_price tbody {
    --distance: 5px;
  }
  .table_price tr {
    grid-column: span 2;
  }
  .table_price tr:first-child th {
    grid-column: 1 / -1;
  }
  .table_price tr:first-child th small {
    display: inline-block;
  }
  .table_price tr:first-child th:not(:empty) .btn_C {
    margin-top: 5px;
  }
  .table_price :is(th, td) {
    padding: 5px 10px;
  }
  .table_price th {
    font-size: 1.6rem;
  }
  .table_price th small {
    font-size: 1.2rem;
  }
  .table_price td p {
    font-size: 1.8rem;
  }
}

/*----------------------------------------
.menu
----------------------------------------*/
.menu .bg_img {
  left: auto;
  bottom: auto;
  width: min(80%, 970px);
}
.menu .bg_img img {
  mask-image: linear-gradient(to right, transparent 10%, black 60%),
    linear-gradient(to top, transparent 10%, black 60%);
  mask-composite: intersect;
}

.menu .w470 {
  margin-bottom: 100px;
}
.menu .menu_list {
  --gap: 40px;
}
.menu .menu_list:not(:has(dl:nth-child(2))) {
  width: min(100%, 720px);
  margin: auto;
}
.menu .menu_list dt {
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 1.8rem;
  border-bottom: 1px solid;
}
.menu .menu_list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  line-height: 2;
}
.menu .deco_img .figure {
  position: absolute;
  width: 450px;
  height: auto;
}
@media (max-width: 520px) {
  .menu .deco_img {
    display: none;
  }
}

@media (max-width: 520px) {
  .grad_wrap {
    --padding: 50px;
    position: relative;
  }
  .grad_wrap > *:first-child {
    height: var(--gradHeight);
    padding-bottom: var(--padding);
    overflow: hidden;
  }
  .grad_wrap .grad_toggle {
    cursor: pointer;
    position: absolute;
    bottom: -5px;
    left: 0px;
    width: 100%;
    padding-top: var(--padding);
    text-align: center;
    background: linear-gradient(
      180deg,
      rgb(from var(--base_bg) r g b / 0) 0%,
      rgb(from var(--base_bg) r g b / 1) 70%
    );
    transition: bottom 0.2s;
  }
  .grad_wrap.open .grad_toggle {
    padding-top: 0px;
    background: none;
  }
}

/*----------------------------------------
.flow_list
----------------------------------------*/
.flow_list {
  counter-reset: num 0;
}
.flow_list li {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
  padding: 20px;
  background-color: #fff;
}
.flow_list li::before {
  counter-increment: num 1;
  content: counter(num, decimal-leading-zero);
  font-size: 2.6rem;
  font-family: var(--font_jp02);
  text-align: center;
  color: var(--c_acc);
}
.flow_list li .figure {
  width: 86%;
  margin: auto;
  border: 1px solid var(--c_acc);
}
.flow_list li .figure img {
  aspect-ratio: 260 / 290;
}

/*----------------------------------------
.review_list
----------------------------------------*/
.review .bg_img {
  top: auto;
  height: 60%;
}
.review .bg_img img {
  mask-image: linear-gradient(to bottom, transparent 0%, #000 100%);
  mask-composite: intersect;
  opacity: 0.6;
}
.review_list details {
  padding: 20px 0;
  border-bottom: 1px solid #c9c8c8;
}
.review_list details summary {
  font-size: 2rem;
  font-family: var(--font_jp02);
  color: var(--c_main);
}
.review_list details .answer_wrap .answer_inner {
  padding-top: 10px;
}

/*----------------------------------------
.faq_list
----------------------------------------*/
summary {
  display: block;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
.faq_list details summary:hover {
  cursor: pointer;
}
.faq_list details .answer_wrap {
  overflow: hidden;
}
.faq_list details summary::before,
.faq_list details .answer_wrap .answer_inner::before {
  font-size: 2.2rem;
  font-family: var(--font_en);
  line-height: 1.5;
}
.faq_list details summary::before {
  content: "Q";
  color: var(--c_acc);
}
.faq_list details .answer_wrap .answer_inner::before {
  content: "A";
  color: var(--c_main);
}
.faq_list details summary::after {
  content: "add";
  font-family: "Material Symbols Outlined";
  line-height: 1;
  color: #fff;
  background-color: var(--c_acc);
  border-radius: 1000px;
  transition: var(--transition);
}
.faq_list details.open summary::after {
  content: "remove";
  rotate: 180deg;
}
.faq_list details {
  padding: 20px;
  background-color: #fff;
}
.faq_list details summary,
.faq_list details .answer_wrap .answer_inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 50px;
}
.faq_list details summary {
  align-items: center;
  font-size: 2rem;
  font-family: var(--font_jp02);
  color: var(--c_acc);
  line-height: 2;
}
.faq_list details .answer_wrap .answer_inner {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #c9c8c8;
}
@media (max-width: 520px) {
  .faq_list details summary,
  .faq_list details .answer_wrap .answer_inner {
    gap: 20px;
  }
  .faq_list details summary {
    font-size: 1.6rem;
  }
}

/*----------------------------------------
.information
----------------------------------------*/
.information .map iframe {
  aspect-ratio: 580 / 390;
}

/*----------------------------------------
footer
----------------------------------------*/
footer .logo img {
  width: 320px;
}
footer .sns_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
footer .sns_list img {
  width: 48px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
@media (max-width: 520px) {
  footer .logo img {
    width: 250px;
  }
}

/*----------------------------------------
.fix_footer
----------------------------------------*/
.fix_footer {
  display: none;
}
@media (max-width: 1100px) {
  .fix_footer {
    display: block;
    position: fixed;
    z-index: 10;
    bottom: 0;
    width: 100%;
    background-color: var(--base_bg);
  }
  .fix_footer .fix_wrap {
    display: grid;
    grid-auto-flow: column;
    gap: 1px;
  }
  .fix_footer .fix_wrap a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 5px 10px;
    color: var(--base_bg);
    background-color: var(--c_main);
  }
  .fix_footer .fix_wrap a p {
    display: grid;
    width: 100%;
    font-family: var(--font_jp02);
    text-align: center;
  }
  .fix_footer .fix_wrap a p small {
    border-bottom: 1px solid;
  }
}
