@charset "utf-8";

@import url(./global/_variable.css);
@import url(./layout/_reset.css);


/* common
  ---- memo ----
  font-feature-settings: 'palt';
  font-size: calc( 16 / var(--r_size) * 1rem );

  font-family: "Noto Sans JP", sans-serif;
  font-family: "Shippori Mincho", serif;
  font-family: "Cormorant", serif;
  font-family: "Sora", sans-serif;
  font-family: "Inter", sans-serif;
============================================ */
html {
  scroll-behavior: smooth;
  /*scroll-padding-top: 50px; check the header hight!*/
}

body {
	background-color: var(--color_bg);
	color: var(--color_font);
  font-family: var(--font_normal);
  font-weight: 400;
  min-height: 100vh;
  overflow-wrap: anywhere;
  &.is-fixed {
    height: 100%;
    overflow: hidden;
  }
}

#wrapper {
  position:relative;
  overflow: hidden;
}

a {
  color: currentColor;
  transition: all .3s ease-out;
  &:hover {
    @media(hover:hover) {
      opacity: .7;
    }
  }
}

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

.pconly {
  @media (width < 896px) {
    display: none;
  }
}
.sponly {
  display: none;
  @media (width < 896px) {
    display: block;
  }
}
.portraitonly {
  display: none;
  @media (width < 480px) {
    display: block;
  }
}
.portraitnone {
  @media (width < 480px) {
    display: none;
  }
}
.tabonly {
  display: none;
  @media (width < 1025px) {
    display: block;
  }
}
.tabnone {
  @media (width < 1025px) {
    display: none;
  }
}

.newline {
	display: inline-block;
}

.w_base {
  margin-inline: 15.1vw;
  container-type: inline-size;
  @media (width < 1367px) {
    margin-inline: 8.3vw;
  }
  @media (width < 896px) {
    margin-inline: 20px;
  }
}

.fitright {
  padding-left: 15.1vw;
  @media (width < 1367px) {
    padding-left: 8.3vw;
  }
  @media (width < 896px) {
    padding-left: 20px;
  }
}

.fitleft {
  padding-right: 15.1vw;
  @media (width < 1367px) {
    padding-right: 8.3vw;
  }
  @media (width < 896px) {
    padding-right: 20px;
  }
}


.pt15em {
  padding-top: 1.5em;
}

.pt15em_rpd {
  padding-top: 1.5em;
  @media (width < 1025px) {
    padding-top: 0.7em;
  }
}

.pt09em_rpd {
  padding-top: 0.9em;
  @media (width < 1025px) {
    padding-top: 0.7em;
  }
}

.pt52vw {
  padding-top: 5.2vw;
  @media (width < 1025px) {
    padding-top: 10px;
  }
}

.pt52vw_f {
  padding-top: 5.2vw;
  @media (width < 1025px) {
    padding-top: 26px;
  }
}

.pt8vw {
  padding-top: 8vw;
  @media (width < 480px) {
    padding-top: 50px;
  }
}


/* pagetop
============================================ */
.pagetop_arrow {
  position: fixed;
  right: 70px;
  bottom: -100px;
  z-index: 1500;
  transition: all 300ms 0s ease;
  opacity: 0;
  a {
    overflow: hidden;
    outline: none;
    display: block;
    background-color: rgba(0,0,0,0.4);
    padding: 5px;
    img {
      width: 60px;
      height: auto;
    }
  }
  @media (max-width:1025px) {
    right: 10px;
  }
  @media (max-width:896px) {
    a {
      img {
        width: 30px;
      }
    }
  }
}
.fade_in {
  .pagetop_arrow {
    opacity: 1;
    transition: all 300ms 0s ease;
    bottom: 100px;
  }
}

.test {
  color: #F00;
}


.area_header {
  position: absolute;
  top: 0px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 32px;
  z-index: 100;
  @media (width < 896px) {
    padding: 20px;
  }
}

.area_header_logo {
  max-width: 250px;
  width: 45%;
  
}

.area_header_reserve {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
  max-width: 640px;
  position: fixed;
  top: 32px;
  right: 32px;
  @media (width < 896px) {
    top: 16px;
    right: 16px;
    grid-template-columns: repeat(1,1fr);
    gap: 5px;
  }
}

.btn_reserve {
  a {
    display: block;
    border: 1px solid #FFF;
    color: #FFF;
    font-size: clamp(1rem, 0.13vw + 0.969rem, 1.125rem);
    letter-spacing: 0.1em;
    text-align: center;
    padding: 0.5em 2em;
    background-color: rgba(97, 49, 2, 0.1);
    transition: background-color 0.3s ease;
    @media (width < 896px) {
      letter-spacing: 0em;
      font-size: 13px;
      padding: 0.5em 1em;
    }
  }
}

.area_header_reserve.is-over_about {
  .btn_reserve a {
    background-color: rgba(97, 49, 2, 0.6);
  }
}

.area_visual {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100svh;
}

.area_visual_img {
  width: 100%;
  height: 100svh;
  overflow: hidden;
  position: fixed;
  z-index: -1;
  transition: opacity 0.5s ease-out;
  opacity: 1;
  animation-name: mv;
  animation-delay: 0s;
  animation-duration: 1s;
  animation-timing-function:ease-in-out;
  animation-fill-mode: forwards;
  img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    will-change: transform;
    transform-origin: center center;
    @media (width < 480px) {
      object-position: 28% center;
    }
  }
}

.bg_hide {
  opacity: 0;
  transition: opacity 0.5s ease-out;
  transform: translateY(100px);
}


@keyframes mv {
	0% {
		opacity: 0;
	}
	100% {
    opacity: 1;
	}
}

.area_visual_fg {
  width: 100%;
  height: 100svh;
  overflow: hidden;
  position: absolute;
  top: 0px;
  img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

.area_visual_ttl {
  top: 50%;
  transform: translateY(-50%);
  right: 17.18vw;
  position: absolute;
  writing-mode: vertical-rl;
  color: #FFF;
  text-align: end;
  opacity: 0;
  animation-name: mv;
  animation-delay: 1s;
  animation-duration: 1s;
  animation-timing-function:ease-in-out;
  animation-fill-mode: forwards;
  @media (width < 480px) {
    top: 25%;
    transform: translateY(-25%);
    right: 40px;
  }
}

.catch_copy {
  font-size: clamp(1.625rem, 2.98vw + 0.927rem, 4.5rem);
  font-weight: 400;
  line-height: 1.4em;
  text-indent: -2em;
  letter-spacing: 0.4em;
  @media (width < 480px) {
    text-indent: 0em;
    text-align: center;
    padding-bottom: 30px;
  }
  br {
    @media (width < 480px) {
      display: none;
    }
  }
}

.hd_main {
  display: inline-block;
  border-left: #FFF solid 1px;
  border-right: #FFF solid 1px;
  padding: 16px;
  font-size:clamp(0.875rem, 0.13vw + 0.844rem, 1rem);
  margin-right: 16px;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.area_about {
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 42% auto;
  position: relative;
  z-index: 1;
}

.column_about {
  display: grid;
  grid-template-columns: 1fr 58%;
  gap: 20px;
  padding-block: 8vw;
  @media (width < 896px) {
    grid-template-columns: 1fr;
  }
}

.hd_en {
  font-family: Cormorant;
  font-size: clamp(32px, 3.32vw + 19.56px, 64px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 3.2px;
}

.hd_column {
  color: var(--color_point);
  font-family: "Shippori Mincho";
  font-size: clamp(0.875rem, 0.21vw + 0.826rem, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  letter-spacing: 2.4px;
  padding-top: 1em;
}

.hd_copy {
  font-size: clamp(1.125rem, 1.04vw + 0.882rem, 1.75rem);
  font-weight: 400;
  line-height: 1.6em;
  letter-spacing: 4.2px;
  word-break: break-all;
  overflow-wrap: anywhere;
}

.hd_fac_en {
  font-size: 0.7em;
  letter-spacing: 0;
  padding-left: 1.5em;
  color: var(--color_point);
  font-family: "Cormorant", serif;
}

.txt_body {
  font-size: clamp(0.875rem, 0.21vw + 0.826rem, 1rem);
  text-align: left;
  font-weight: 400;
  line-height: 2.4em;
  letter-spacing: 1.6px;
  word-break: keep-all;
  overflow-wrap: anywhere;
  @media (width < 896px) {
    line-height: 2.0em;
  }
  br {
    @media (width < 896px) {
      display: none;
    }
  }
}

.txt_fac {
  font-size: clamp(0.875rem, 0.21vw + 0.826rem, 1rem);
  text-align: left;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 1.6px;
  word-break: keep-all;
  overflow-wrap: anywhere;
  @media (width < 896px) {
    line-height: 1.6em;
  }
  br {
    @media (width < 896px) {
      display: none;
    }
  }
}

#slide_about {
  position: relative;
  container-type: inline-size;
  .splide__track {
    .splide__list {
      .splide__slide {
        padding-bottom: 5cqw;
        img {
          box-shadow: 1.56cqw 1.56cqw 4.17cqw 0 rgba(48, 45, 33, 0.25);
        }
      }
    }
  }
}

.area_about_img {
  aspect-ratio: 16 / 5;
  overflow: hidden;
  @media (width <= 480px) {
    aspect-ratio: 3 / 2;
  }
  img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

.bg_wrap {
  background-color: var(--color_bg);
  position: relative;
}

.bg_wrap_image {
  width: 42%;
  position: absolute;
  top: 0;
  right: 0;
  @media (width < 480px) {
    width: 60%;
  }
  &.is-fixed {
    position: fixed;
  }
}

.area_movie {
  padding-top: 8vw;
  text-align: center;
  position: relative;
  @media (width < 480px) {
    padding-top: 50px;
  }
}

.list_movie {
  display: none;
  @media (width <= 896px) {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 3.58cqw;
    padding-top: 4.17cqw;
  }
  @media (width < 480px) {
    grid-template-columns: repeat(2,1fr);
  }
  a {
    display: block;
    img {
      position: relative;
    }
  }
}

.imgbox_yt {
  position: relative;
}

.btn_play {
  width: 36%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.youtube_pc {
  position: relative;
  padding-top: 4.17cqw;
  @media (width <= 896px) {
    display: none;
  }
  .btn_play {
    width: 20%;
    max-width: 120px;
  }
}

.item_movie {
  iframe {
    aspect-ratio: 9 / 16;
  }
}

.ttl_yt {
  padding-block: 8px 0;
  line-height: 1.4em;
}

.cap_movie {
  color: var(--color_point);
  font-size: clamp(0.875rem, 0.41vw + 0.778rem, 1.125rem);
  font-family: Cormorant;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 0.9px;
  margin-top: 1.1cqw;
  border-top: var(--color_point) solid 1px;
  border-bottom: var(--color_point) solid 1px;
  padding-block: 0.9cqw;
}

.area_plan {
  text-align: center;
  background-color: #F9F8F5;
  will-change: background-color;
  padding-bottom: 10vw;
  @media (width < 480px) {
    padding-bottom: 60px;
  }
}

.column_plan,.column_plan_l {
  display: grid;
  gap: 5.2vw;
  align-items: end;
  position: relative;
}

.column_plan {
  grid-template-columns: 1fr 54.68vw;
  @media (width < 1025px) {
    grid-template-columns: 1fr;
  }
  .box_plan {
    @media (width < 1025px) {
      padding-right: 20px;
    }
  }
}

.column_plan_l {
  grid-template-columns: 54.68vw 1fr;
  @media (width < 1025px) {
    grid-template-columns: 1fr;
  }
  .column_plan_img{
    order: 1;
    @media (width < 1025px) {
      order: 2;
    }
  }
  .column_plan_txt {
    order: 2;
    @media (width < 1025px) {
      order: 1;
    }
    .box_plan {
      @media (width < 1025px) {
        padding-left: 20px;
      }
    }
  }
}

.column_plan_txt {
  display: grid;
  grid-template-columns: 1fr;
  height: 100%;
  align-items: end;
  row-gap: 3vw;
}

.column_plan_img {
  aspect-ratio: 2 / 1;
  overflow: hidden;
  box-shadow: 1.56cqw 1.56cqw 4.17cqw 0 rgba(48, 45, 33, 0.25);
  @media (width < 480px) {
    aspect-ratio: 3 / 2;
  }
  img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

.hd_day {
  color: rgba(48, 45, 33, 0.10);
  font-family: Cormorant;
  font-size: clamp(4.375rem, 5.18vw + 3.161rem, 9.375rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0.2;
  text-align: left;
}

.hd_day02 {
  color: rgba(48, 45, 33, 0.10);
  font-family: Cormorant;
  font-size: clamp(4.375rem, 5.18vw + 3.161rem, 9.375rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0.2;
  text-transform: capitalize;
  text-align: left;
  @media (width < 1025px) {
    padding-left: 20px;
  }
}

.box_plan {
  position: relative;
  text-align: justify;
  @media (width < 1025px) {
    padding-top: 20px;
  }
}

.dl_time {
  display: flex;
  grid-template-columns: auto auto;
  gap: 1em;
  position: relative;
  padding-left: 3em;
  &::before {
    content: "";
    display: block;
    width: 2em;
    height: 1px;
    background-color: var(--color_font);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
  }
}

.dt_time {
  font-family: Cormorant;
  font-size: clamp(1.125rem, 0.39vw + 1.034rem, 1.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 24px */
  letter-spacing: 1.2px;
}

.dd_time {
  font-size: clamp(0.875rem, 0.26vw + 0.814rem, 1.125rem);
  line-height: 160%; /* 28.8px */
  letter-spacing: 2.7px;
}

.block_plan_outer {
  position: relative;
}

.block_plan {
  text-align: center;
  position: relative;
}

.bg_ripples01 {
  width: 42.5vw;
  position: absolute;
  top: 0px;
  left: -14vw;
  opacity: 0.7;
  @media (width < 480px) {
    width: 60vw;
  }
}

.bg_ripples02 {
  width: 42.5vw;
  position: absolute;
  top: 0px;
  right: -14vw;
  opacity: 0.7;
  @media (width < 480px) {
    width: 60vw;
  }
}

.txt_body_outer {
  display: inline-block;
  max-width: 600px;
  text-align: justify;
}

.list_planimg {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 3.58cqw;
  padding-top: 4.17cqw;
  @media (width < 480px) {
    padding-top: 24px;
  }
}

.item_planimg {
  box-shadow: 1.56cqw 1.56cqw 4.17cqw 0 rgba(48, 45, 33, 0.30);
}

/* Plan scroll color animation
============================================ */
.area_plan .hd_en,
.area_plan .hd_copy,
.area_plan .txt_body,
.area_plan .dt_time,
.area_plan .dd_time {
  transition: color 0.35s ease,
              opacity var(--_fade-dur, 0s) ease-out,
              transform var(--_fade-dur, 0s) ease-out;
}

.area_plan .dl_time::before {
  transition: background-color 0.35s ease;
}

/* dark state: text → white */
.area_plan.plan--dark .hd_en,
.area_plan.plan--dark .hd_copy,
.area_plan.plan--dark .txt_body,
.area_plan.plan--dark .dt_time,
.area_plan.plan--dark .dd_time {
  color: #FFF;
}

.area_plan.plan--dark .hd_day,
.area_plan.plan--dark .hd_day02 {
  color: rgba(255, 255, 255, 0.10);
}

.area_plan.plan--dark .dl_time::before {
  background-color: #FFF;
}

/* morning state: ふわっと restore */
.area_plan.plan--morning {
  transition: background-color 0.8s ease;
}

.area_plan.plan--morning .hd_en,
.area_plan.plan--morning .hd_copy,
.area_plan.plan--morning .txt_body,
.area_plan.plan--morning .dt_time,
.area_plan.plan--morning .dd_time {
  color: var(--color_font);
  transition: color 0.8s ease,
              opacity var(--_fade-dur, 0s) ease-out,
              transform var(--_fade-dur, 0s) ease-out;
}

.area_plan.plan--morning .hd_day,
.area_plan.plan--morning .hd_day02 {
  color: rgba(48, 45, 33, 0.10);
  transition: color 0.8s ease;
}

.area_plan.plan--morning .dl_time::before {
  background-color: var(--color_font);
  transition: background-color 0.8s ease;
}

.area_facilities {
  position: relative;
  text-align: center;
  padding-bottom: 10vw;
  @media (width < 480px) {
    padding-bottom: 60px;
  }
}

.column_lp {
  display: grid;
  grid-template-columns: 52% 1fr;
  gap: 8cqw;
  @media (width < 480px) {
    grid-template-columns: 1fr;
  }
}


.column_lp_img {
  aspect-ratio: 2 / 1;
  overflow: hidden;
  @media (width < 896px) {
    aspect-ratio: 3 / 2;
  }
  img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

.column_lp_txt {
  text-align: left;
}

.box_btn {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.8cqw;
  text-align: center;
  padding-top: 3.6cqw;
  @media (width < 480px) {
    padding-top: 20px;
  }
}

.btn_search {
  a {
    display: block;
    border: var(--color_point) solid 1px;
    padding: 1.8cqw;
    color: var(--color_point);
    &:hover {
      color: #FFF;
      background-color: var(--color_point);
      opacity: 1;
    }
  }
}

.btn_yoyaku {
  a {
    display: block;
    border: var(--color_point) solid 1px;
    padding: 1.8cqw;
    color: #FFF;
    background-color: var(--color_point);
    &:hover {
      color: var(--color_point);
      background-color: #FFF;
      opacity: 1;
    }
  }
}

.list_room {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2.38cqw;
  margin-top: 4.8cqw;
  padding: 4.8cqw;
  background-color: #FFF;
  box-shadow: 1.56cqw 1.56cqw 4.17cqw 0 rgba(48, 45, 33, 0.20);
  @media (width < 480px) {
    margin-top: 30px;
    padding: 20px;
    grid-template-columns: repeat(1,1fr);
    gap: 30px;
  }
}

.item_room {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 1.2cqw;
  @media (width < 480px) {
    row-gap: 12px;
  }
}

.item_room_ttl_sub {
  font-size: clamp(0.875rem, 0.13vw + 0.844rem, 1rem);
  line-height: 1.4em;
}

.hd_room {
  font-size: clamp(0.938rem, 0.77vw + 0.756rem, 1.375rem);
  line-height: 1.3em;
  padding-top: 3px;
  word-break: keep-all;
  @media (width < 480px) {
    padding-top: 0px;;
  }
}

.btn_detail {
  color: var(--color_point);
  border-top: var(--color_point) solid 1px;
  border-bottom: var(--color_point) solid 1px;
  padding-block: 1.2cqw;
  cursor: pointer;
  user-select: none;
  @media (width < 480px) {
    padding-block: 10px;
  }
}

.column_facilities {
  display: grid;
  grid-template-columns: 1fr 52cqw;
  gap: 7cqw;
  align-items: center;
  @media (width < 1025px) {
    grid-template-columns: 1fr;
  }
}

.column_facilities_txt {
  display: flex;
  flex-direction: column;
  gap: 1.8cqw;
  text-align: left;
}

.even {
  grid-template-columns: 52cqw 1fr;
  @media (width < 1025px) {
    grid-template-columns: 1fr;
  }
  .column_facilities_txt {
    order: 2;
    @media (width < 1025px) {
      order: 1;
    }
  }
  .column_facilities_imgs {
    order: 1;
    @media (width < 1025px) {
      order: 2;
    }
  }
}

.hd_facilities_row {
  display: flex;
  align-items: flex-end;
  gap: 32px;
}

.hd_facilities_ja {
  font-size: clamp(1.375rem, 1.04vw + 1.132rem, 2rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.6;
}

.hd_facilities_en {
  font-family: "Cormorant", serif;
  font-size: clamp(1rem, 0.52vw + 0.9rem, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(48, 45, 33, 0.4);
  text-transform: capitalize;
  line-height: 1.6;
}

.facilities_divider {
  width: 1px;
  height: 32px;
  background-color: var(--color_point);
}

.hd_facilities_sub {
  font-size: clamp(1rem, 0.52vw + 0.9rem, 1.25rem);
  line-height: 1.8;
  letter-spacing: 0.15em;
  text-align: left;
  word-break: keep-all;
}

.txt_facilities {
  font-size: clamp(0.875rem, 0.21vw + 0.826rem, 1rem);
  line-height: 2.4em;
  @media (width < 1025px) {
    line-height: 2em;
  }
}

.column_facilities_imgs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.column_facilities_imgs {
  .splide {
    position: relative;
    container-type: inline-size;
    .splide__track {
      .splide__list {
        .splide__slide {
          aspect-ratio: 16 / 9;
          overflow: hidden;
          position: relative;
          img {
            object-fit: cover;
            width: 100%;
            height: 100%;
            position: relative;
          }
        }
      }
    }
  }
}

.cap {
  position: absolute;
  right: 12px;
  bottom: 12px;
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.2em;
}

.thumbs {
  .splide__track {
    .splide__list {
      .splide__slide {
        position: relative;
        cursor: pointer;
        &:not(.is-active)::after {
          content: "";
          position: absolute;
          inset: 0;
          background-color: rgba(0, 0, 0, 0.6);
        }
        &:not(.is-active):hover::after {
          content: "";
          position: absolute;
          inset: 0;
          background-color: rgba(0, 0, 0, 0.3);
        }
      }
    }
  }
}


.item_facilities_thumb {
  aspect-ratio: 2 / 1;
  overflow: hidden;
  position: relative;
  img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  &:not(.is-active)::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(48, 45, 33, 0.7);
  }
}


/* Modal
============================================ */

.modal_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  &.is-open {
    opacity: 1;
    visibility: visible;
  }
}

.modal_inner {
  background: #fff;
  max-width: 1100px;
  width: 100%;
  max-height: 90svh;
  overflow-y: auto;
  position: relative;
  padding: 80px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  .modal_overlay.is-open & {
    transform: scale(1);
    opacity: 1;
  }
  @media (width < 1025px) {
    padding: 60px 48px;
    gap: 40px;
  }
  @media (width < 896px) {
    grid-template-columns: 1fr;
    padding: 48px 24px 40px;
    gap: 20px;
    max-height: 85svh;
  }
}

.modal_img {
  align-self: start;
  img {
    width: 100%;
    height: auto;
    display: block;
  }
}

.modal_body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.modal_ttl_sub {
  font-size: clamp(0.875rem, 0.21vw + 0.826rem, 1rem);
  letter-spacing: 4.8px;
  line-height: 1.6;
}

.modal_ttl_name {
  font-size: clamp(1.25rem, 1.04vw + 1rem, 1.75rem);
  letter-spacing: 2px;
  line-height: 1.4;
  padding-top: 4px;
}

.modal_sep {
  width: 32px;
  height: 1px;
  background-color: var(--color_point);
}

.modal_desc {
  font-size: clamp(0.875rem, 0.21vw + 0.826rem, 1rem);
  line-height: 2em;
  text-align: justify;
}

.btn_modal_reserve {
  display: inline-block;
  background-color: var(--color_point);
  color: #fff;
  font-size: clamp(0.875rem, 0.13vw + 0.844rem, 1rem);
  letter-spacing: 5.4px;
  padding: 1.2em 3em;
  transition: all 0.3s ease-out;
  &:hover {
    @media (hover: hover) {
      background-color: #fff;
      color: var(--color_point);
      outline: 1px solid var(--color_point);
      opacity: 1;
    }
  }
}

.modal_close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color_point);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  &::before,
  &::after {
    content: "";
    display: block;
    width: 22px;
    height: 1px;
    background-color: var(--color_font);
    position: absolute;
    top: 50%;
    left: 50%;
  }
  &::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  &::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  &:hover {
    @media (hover: hover) {
      background-color: var(--color_point);
      &::before,
      &::after {
        background-color: #fff;
      }
    }
  }
  @media (width < 896px) {
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    &::before,
    &::after {
      content: "";
      display: block;
      width: 16px;
      height: 1px;
      background-color: var(--color_font);
      position: absolute;
      top: 50%;
      left: 50%;
    }
  }
}


/* ===== access ===== */
#access {
  background-color: rgba(255, 246, 219, 0.60);;
  padding-block: 8vw;
  position: relative;
  @media (width < 896px) {
    padding-block: 50px;
  }
}

.column_access {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: clamp(40px, 6.25vw, 120px);
  @media (width < 896px) {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.column_access_info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  @media (width < 896px) {
    width: 100%;
  }
}

.column_access_hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.link_access_more {
  font-family: var(--font_normal);
  font-size: clamp(0.8125rem, 0.1vw + 0.789rem, 0.875rem);
  line-height: 2.4;
  letter-spacing: 1.4px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding-bottom: 0.3em;
}

.link_access_arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  &::before,
  &::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    background-color: currentColor;
  }
  &::before {
    width: 12px;
    height: 1px;
    left: 0;
    transform: translateY(-50%);
  }
  &::after {
    width: 6px;
    height: 6px;
    right: 3px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    background: transparent;
    transform: translateY(-38%) rotate(45deg);
    margin-top: -0.5px;
  }
}

.list_access {
  .item_access {
    display: flex;
    align-items: flex-start;
    gap: clamp(20px, 2.5vw, 48px);
    padding-block: 24px;
    border-bottom: 1px solid rgba(48, 45, 33, 0.15);
    @media (width < 896px) {
      padding-block: 16px;
      gap: 20px;
    }

    dt {
      font-family: var(--font_normal);
      font-size: clamp(0.875rem, 0.21vw + 0.826rem, 1rem);
      line-height: 2.4;
      letter-spacing: 1.6px;
      text-transform: capitalize;
      width: 6em;
      flex-shrink: 0;
    }

    dd {
      font-family: var(--font_normal);
      font-size: clamp(0.875rem, 0.21vw + 0.826rem, 1rem);
      line-height: 2.0;
      letter-spacing: 1.6px;
    }
  }
}

.link_map {
  font-size: clamp(0.8125rem, 0.1vw + 0.789rem, 0.875rem);
  letter-spacing: 1.4px;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.link_map_arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  &::before,
  &::after {
    content: "";
    display: block;
    position: absolute;
    background-color: currentColor;
  }
  &::before {
    width: 9px;
    height: 1px;
    right: 1px;
    top: 6px;
    transform: rotate(-45deg);
    transform-origin: right center;
  }
  &::after {
    width: 7px;
    height: 7px;
    right: 0px;
    top: 5px;
    background: transparent;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
  }
}

.column_access_map {
  box-shadow: 30px 30px 50px 0px rgba(48, 45, 33, 0.16);
  @media (width < 896px) {
    aspect-ratio: 4 / 3;
    box-shadow: 10px 10px 30px 0px rgba(48, 45, 33, 0.12);
  }

  iframe {
    width: 100%;
    height: 100%;
  }
}


/* ===== faq ===== */
#faq {
  padding-block: 8vw;
  @media (width < 896px) {
    padding-block: 50px;
  }
}

.area_faq_hd {
  text-align: center;
  padding-bottom: 4vw;
  @media (width < 896px) {
    padding-bottom: 30px;
  }
}

.item_faq_q {
  display: flex;
  align-items: center;
  gap: 2.4cqw;
  padding: 3cqw 1.8cqw;
  border-bottom: 1px solid rgba(48, 45, 33, 0.15);
  cursor: pointer;
  list-style: none;
  &::-webkit-details-marker {
    display: none;
  }
  &::marker {
    display: none;
    content: "";
  }
  @media (width < 896px) {
    padding: 24px 0;
    gap: 16px;
  }
}

details[open] > .item_faq_q {
  padding-bottom: 1.8cqw;
  border-bottom: none;
  @media (width < 896px) {
    padding-bottom: 16px;
  }
}

.faq_label {
  font-family: "Cormorant", serif;
  font-size: clamp(1.25rem, 0.83vw + 1.044rem, 2rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 3.2px;
  flex-shrink: 0;
}

.faq_q_text {
  font-family: var(--font_normal);
  font-size: clamp(0.9375rem, 0.21vw + 0.888rem, 1.125rem);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1.8px;
  flex: 1 0 0;
}

.faq_arrow {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;

  &::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 7px;
    width: 10px;
    height: 10px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    background: transparent;
    transform: rotate(45deg);
  }
}

details[open] > .item_faq_q .faq_arrow {
  transform: rotate(180deg);
}

.item_faq_a {
  display: flex;
  gap: 2.4cqw;
  align-items: flex-start;
  padding: 0 1.8cqw 3cqw;
  border-bottom: 1px solid rgba(48, 45, 33, 0.15);

  @media (width < 896px) {
    padding: 0 0 24px;
    gap: 16px;
  }

  p {
    font-family: var(--font_normal);
    font-size: clamp(0.875rem, 0.21vw + 0.826rem, 1rem);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 1.6px;
    flex: 1 0 0;
  }
}


/* ===== matome ===== */
.area_matome {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  @media (width < 480px) {
    height: 80svh;
  }
}

.area_matome_img {
  position: absolute;
  inset: 0;
  img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    @media (width < 480px) {
      object-position: 70% center;
    }
  }
}

.area_matome_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(34, 45, 27, 0) 9.145%, rgba(34, 45, 27, 0.6) 56.718%);
  pointer-events: none;
  @media (width < 480px) {
    background: linear-gradient(to left, rgba(34, 45, 27, 0) 30%, rgba(34, 45, 27, 0.6) 100%);
  }
}

.area_matome_ttl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8.33vw;
  writing-mode: vertical-rl;
  color: #FFF;
  display: flex;
  flex-direction: column;
  gap: 4.375vw;
  align-items: flex-start;
  @media (width < 480px) {
    top: 90%;
    transform: translateY(-90%);
    left: 5vw;
    gap: 5vw;
  }
}

.matome_catch {
  font-family: var(--font_normal);
  font-size: clamp(2rem, 2.07vw + 1.514rem, 4rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-shadow: 0 0 30px #fff, 0 0 50px #fff;
  text-align: end;
  @media (width < 480px) {
    br {
      display: none;
    }
  }
}

.matome_body_txt {
  font-family: var(--font_normal);
  font-size: clamp(0.813rem, 0.32vw + 0.737rem, 1.125rem);
  font-weight: 400;
  line-height: 2.6em;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff;
  white-space: nowrap;
  padding-top: 10vw;
  @media (width < 480px) {

  }
}


/* ========================
   Footer
   ======================== */
footer {
  background-color: #FFF;
}

.area_footer {
  padding-top: clamp(60px, 5.21vw, 100px);
  position: relative;
}

.footer_main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 5.97cqw;
  @media (width < 896px) {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 40px;
  }
}

.footer_info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer_logo {
  img {
    width: clamp(160px, 22.4cqw, 300px);
    height: auto;
  }
}

.footer_detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer_hotel_name {
  font-size: clamp(0.875rem, 0.21vw + 0.826rem, 1.125rem);
  letter-spacing: 1.8px;
  line-height: 1.8;
  word-break: keep-all;
}

.footer_address,
.footer_tel {
  font-size: clamp(0.8125rem, 0.1vw + 0.789rem, 0.875rem);
  letter-spacing: 1.4px;
  line-height: 1.8;
}

.footer_site_link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(0.8125rem, 0.1vw + 0.789rem, 0.875rem);
  letter-spacing: 1.4px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer_ext_arrow {
  display: inline-block;
  width: 14px;
  height: 14px;
  position: relative;
  flex-shrink: 0;
  &::before {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 1px;
    right: 1px;
    top: 5px;
    background-color: currentColor;
    transform: rotate(-45deg);
    transform-origin: right center;
  }
  &::after {
    content: "";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    right: 0;
    top: 4px;
    background: transparent;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
  }
}

.footer_right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.8cqw;
  @media (width < 896px) {
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }
}

.footer_box_btn {
  padding-top: 0;
  gap: 1.5cqw;
  @media (width < 480px) {
    padding-top: 0;
  }
  .btn_search a,
  .btn_yoyaku a {
    padding: 2.39cqw 5.97cqw;
    font-size: clamp(1rem, 0.39vw + 0.781rem, 1.25rem);
    letter-spacing: 6px;
    @media (width < 896px) {
      padding: 16px 32px;
      font-size: 1rem;
    }
  }
}

.footer_sns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer_sns_link {
  display: block;
  width: 30px;
  height: 30px;
  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.footer_bottom {
  border-top: 1px solid rgba(48, 45, 33, 0.15);
  padding-block: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  @media (width < 896px) {
    padding-block: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.footer_copyright {
  font-family: "Cormorant", serif;
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  line-height: 1.6;
}

.footer_links {
  display: flex;
  align-items: center;
  gap: 40px;
  @media (width < 480px) {
    gap: 20px;
  }
}

.footer_link_item {
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fade_up_before01 {
  --_fade-dur: 0.9s;
  transform: translateY(50px);
  opacity: 0;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.fade_up_before02 {
  --_fade-dur: 1.5s;
  transform: translateY(50px);
  opacity: 0;
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.fade_up_before03 {
  --_fade-dur: 2.1s;
  transform: translateY(50px);
  opacity: 0;
  transition: opacity 2.1s ease-out, transform 2.1s ease-out;
}

.fade_up_appear {
  transform: translateY(0);
  opacity: 1;
}