@charset "UTF-8";
/*------------------------------------------------*/
/*------------------- reset ----------------------*/
/*------------------------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

ol,
ul {
  list-style: none;
}

img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  max-width: 100%;
  height: auto;
  border-style: none;
}

input,
button,
textarea,
select {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 1rem;
  font-family: inherit;
  appearance: none;
}

/*------------------------------------------------*/
/*------------------- fonts ----------------------*/
/*------------------------------------------------*/
:root {
  --font-sans-serif: "Noto Sans", "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif", serif;
  --font-title: "Cormorant Garamond", serif;
}

body {
  font-family: var(--font-sans-serif);
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
}

/*------------------------------------------------*/
/*------------------- colors ---------------------*/
/*------------------------------------------------*/
:root {
  --color-black: #1a2e1a;        /* deep forest dark */
  --color-gray: #6b8f71;         /* sage gray-green */
  --color-gray-light: #f0f7f0;   /* mint light */
  --color-gray-dark: #4a6b4a;    /* dark sage */
  --color-white: #ffffff;
  --color-primary: #E91E63;      /* pink from logo tent */
  --color-primary-light: #FCE4EC; /* light pink bg */
  --color-secondary: #FDD835;    /* yellow from logo */
  --color-accent: #66BB6A;       /* green from logo */
  --color-sky: #E3F2FD;          /* light sky blue */
  --color-warm: #FFF8E1;         /* warm cream */
}

/*------------------------------------------------*/
/*------------------- Base -----------------------*/
/*------------------------------------------------*/
.content {
  width: min(90%, 1200px);
  margin-left: auto;
  margin-right: auto;
}

.content-1500 {
  position: relative;
  width: min(100%, 1500px);
  margin-left: auto;
  margin-right: auto;
}

.placeholder-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* Hero and features img */
.slide-img img,
.features-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Utility classes */
.u-pc-no {
  display: none;
}
.u-sp-no {
  display: inline;
}

/*------------------------------------------------*/
/*-------------- Animations ----------------------*/
/*------------------------------------------------*/
@keyframes title-rotate {
  0% {
    opacity: 0;
    transform: rotateY(-90deg) translateX(2.5rem) scale(0.86);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg) translateX(0rem) scale(1);
  }
}

@keyframes title-fade {
  0% {
    opacity: 0;
    transform: translate(0, 20px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

@keyframes arrowmove {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Fade classes */
.fade {
  opacity: 0;
  transform: translate(0, 20px);
  transition: all 1s ease 0.2s;
}
.fade.active {
  opacity: 1;
  transform: translate(0, 0);
}

.fade09 {
  opacity: 0;
  transform: translate(0, 20px);
  transition: all 1s ease 0.2s;
}
.fade09.active {
  opacity: 0.9;
  transform: translate(0, 0);
}

/*------------------------------------------------*/
/*------------------- header ---------------------*/
/*------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 9.5rem;
  background-image: linear-gradient(
    180deg,
    rgba(15, 15, 16, 0.4) 0%,
    rgba(15, 15, 16, 0.28) 45%,
    rgba(15, 15, 16, 0) 100%
  );
}
.header .header__inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-left: 2rem;
  margin-top: 1.6rem;
}
.header .header__logo img {
  max-height: 5rem;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.header .header__nav {
  margin-left: auto;
}
.header .header__nav__group {
  display: flex;
  gap: 2rem;
}
.header .header__nav__item a {
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.header .header__nav__item a:hover {
  opacity: 0.7;
}
.header .header__btn {
  margin-left: 2rem;
  margin-right: 2rem;
}
.header .header__btn a {
  display: inline-block;
  padding: 0.7rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  transition: opacity 0.3s;
}
.header .header__btn a:hover {
  opacity: 0.8;
}

/*------------------------------------------------*/
/*------------------- TOP / Hero -----------------*/
/*------------------------------------------------*/
.top {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.top::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 0.3) 100%
  );
  pointer-events: none;
}

.mv-swiper {
  width: 100%;
  height: 100%;
}
.mv-swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.mv-swiper .swiper-slide .slide-img {
  position: absolute;
  inset: 0;
}
.mv-swiper .swiper-slide .slide-img img {
  animation: zoomUp 8s linear forwards;
}

/* Title area */
.top-title {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-title__content {
  text-align: center;
  color: var(--color-white);
}

/* Main copy - letter animation */
.main-copy p {
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  line-height: 1;
}
.main-copy .mv-letter {
  display: inline-block;
  font-family: var(--font-title);
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: rotateY(-90deg) translateX(2.5rem) scale(0.86);
}
.main-copy .mv-space {
  display: inline-block;
  width: 0.5em;
}

/* Active slide letter animation */
.swiper-slide-active .main-copy .mv-letter {
  transform-origin: 100% center;
  animation-name: title-rotate;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  animation-fill-mode: forwards;
  animation-delay: calc(0.1s * var(--index));
  will-change: transform;
  backface-visibility: hidden;
}

/* Sub copy */
.sub-copy {
  margin-top: 1.5rem;
}
.sub-copy p {
  font-family: var(--font-title);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translate(0, 20px);
}
.swiper-slide-active .sub-copy p {
  animation: title-fade 1s forwards 0.5s;
  backface-visibility: hidden;
}

/* Pagination */
.content-swiper-pagination {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  z-index: 10;
}
.swiper-pagination {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-title);
  font-size: 0.875rem;
  color: var(--color-white);
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.5s;
}
.swiper-pagination.is-active {
  opacity: 1;
}
.swiper-pagination .border {
  display: inline-block;
  width: 4rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 0.75rem;
  position: relative;
  overflow: hidden;
}
.swiper-pagination .border span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 5000ms linear;
}

/* Scroll indicator */
.top-scroll {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.top-scroll__arrow {
  display: block;
  width: 1px;
  height: 3rem;
  background: var(--color-white);
  animation: arrowmove 2s ease-in-out infinite;
}
.top-scroll__txt {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: var(--color-white);
  writing-mode: vertical-rl;
}

/*------------------------------------------------*/
/*------------ Features (Enjoy) ------------------*/
/*------------------------------------------------*/
.content-sticky {
  position: relative;
  z-index: 2;
}

.features-sticky-wrap {
  position: relative;
}

.features-sticky {
  width: 100%;
  height: calc(100vh + 8rem);
  position: sticky;
  overflow: hidden;
  top: 0;
}

.features-content {
  width: 100%;
  height: calc(100vh + 50px);
  position: sticky;
  overflow: hidden;
  top: 0;
  transition: position 0.3s ease, top 0.3s ease;
}
.features-content .features-inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.features-content .features-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.features-content .features-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.features-content .features-img img {
  object-fit: cover;
}

/* Features text */
.features-txt {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  max-width: 500px;
  padding: 2.5rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 1rem;
}
.features-txt.right {
  right: 8%;
}
.features-txt.left {
  left: 8%;
}
.features-txt.black {
  color: var(--color-black);
}
.features-txt.white {
  color: var(--color-white);
}

.features-title h2 {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.features-description .title {
  font-family: var(--font-sans-serif);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.features-description .description {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

/*------------------------------------------------*/
/*-------------- Buttons -------------------------*/
/*------------------------------------------------*/
.bt-01 {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
}
.bt-01:hover {
  opacity: 0.7;
}
.bt-01 .arrow {
  display: inline-block;
  width: 2rem;
  height: 1px;
  position: relative;
}
.bt-01 .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1px solid;
  border-top: 1px solid;
  transform: translateY(-50%) rotate(45deg);
}
.bt-01.black {
  color: var(--color-black);
}
.bt-01.black .arrow {
  background: var(--color-black);
}
.bt-01.black .arrow::after {
  border-color: var(--color-black);
}
.bt-01.white {
  color: var(--color-white);
}
.bt-01.white .arrow {
  background: var(--color-white);
}
.bt-01.white .arrow::after {
  border-color: var(--color-white);
}
.bt-01.color {
  color: var(--color-primary);
}
.bt-01.color .arrow {
  background: var(--color-primary);
}
.bt-01.color .arrow::after {
  border-color: var(--color-primary);
}

/* Reserve button */
.bt-02 {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 3rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  transition: opacity 0.3s;
}
.bt-02:hover {
  opacity: 0.8;
}
.bt-02 .arrow {
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--color-white);
  position: relative;
}
.bt-02 .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1px solid var(--color-white);
  border-top: 1px solid var(--color-white);
  transform: translateY(-50%) rotate(45deg);
}

/*------------------------------------------------*/
/*-------------- Map -----------------------------*/
/*------------------------------------------------*/
.map {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}
.map-content {
  width: min(90%, 1400px);
  margin: 0 auto;
  position: relative;
}

/*------------------------------------------------*/
/*-------------- Movie ---------------------------*/
/*------------------------------------------------*/
.movie {
  position: relative;
  z-index: 2;
  padding-bottom: 5rem;
}
.movie-content {
  height: 100%;
  overflow: hidden;
}
.movie-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.movie-play-icon {
  opacity: 0.6;
  transition: opacity 0.3s;
  cursor: pointer;
}
.movie-play-icon:hover {
  opacity: 1;
}

/*------------------------------------------------*/
/*------------- Ski Valet / Special Experience ---*/
/*------------------------------------------------*/
.ski-valet {
  position: relative;
  z-index: 2;
  padding: 6rem 0;
  background-color: var(--color-warm);
}
.ski-valet__title h2 {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--color-black);
}
.ski-valet__description p {
  font-family: var(--font-sans-serif);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2;
  text-align: center;
  color: var(--color-black);
  max-width: 700px;
  margin: 0 auto;
}

/*------------------------------------------------*/
/*-------------- Rooms / Activities --------------*/
/*------------------------------------------------*/
.rooms {
  position: relative;
  z-index: 2;
}
.rooms .rooms-swiper {
  width: 100%;
  height: 100vh;
  max-height: 860px;
  position: relative;
}
.rooms .rooms-swiper .slide-txt__title {
  width: 100%;
  position: absolute;
  top: 5%;
  left: 5%;
  z-index: 10;
}
.rooms .rooms-swiper .slide-txt__title h2 {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.02em;
}
.rooms .rooms-swiper .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
}
.rooms .rooms-swiper .swiper-slide {
  overflow: hidden;
  backface-visibility: hidden;
  position: relative;
}
.rooms .rooms-swiper .swiper-slide .slide-img {
  position: absolute;
  inset: 0;
}
.rooms .rooms-swiper .swiper-slide .slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.rooms .rooms-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
  pointer-events: none;
}
.rooms .rooms-swiper .slide-txt {
  position: absolute;
  bottom: 8%;
  left: 0;
  z-index: 2;
  width: 100%;
}
.rooms .rooms-swiper .slide-txt__description {
  max-width: 500px;
}
.rooms .rooms-swiper .slide-txt__description .title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.rooms .rooms-swiper .slide-txt__description .detail {
  font-family: var(--font-title);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

/* Swiper navigation */
.rooms .swiper-button-prev,
.rooms .swiper-button-next {
  color: var(--color-white);
  width: 3rem;
  height: 3rem;
}
.rooms .swiper-button-prev::after,
.rooms .swiper-button-next::after {
  font-size: 1.25rem;
}

/*------------------------------------------------*/
/*------------ Facilities ------------------------*/
/*------------------------------------------------*/
.facilities {
  position: relative;
  z-index: 2;
  padding-bottom: 12rem;
  padding-top: 6rem;
  background-image: linear-gradient(
    180deg,
    #81C784 85%,
    #C8E6C9 93%,
    #E8F5E9 100%
  );
}
.facilities .facilities-main-img {
  position: relative;
  margin-bottom: 4rem;
}
.facilities .facilities-main-img-inner {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
.facilities .facilities-main-img-inner .img {
  width: 58%;
  overflow: hidden;
  position: relative;
}
.facilities .facilities-main-img-inner .txt {
  width: 42%;
  padding-top: 2rem;
}
.facilities .facilities-main-img-inner .txt h2 {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--color-black);
  margin-bottom: 1.5rem;
}
.facilities .facilities-main-img-inner .txt p {
  font-family: var(--font-title);
  font-size: 1rem;
  line-height: 2;
  color: #3E6B3E;
}

.facilities-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 0 2rem;
}
.facilities-sub-item {
  overflow: hidden;
  position: relative;
}
.facilities-sub-item:last-child {
  grid-column: span 2;
  position: relative;
}
.facilities-sub-txt {
  padding-top: 1.5rem;
}
.facilities-sub-txt h3 {
  font-family: var(--font-sans-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 0.5rem;
}
.facilities-sub-txt p {
  font-family: var(--font-title);
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #3E6B3E;
}

/*------------------------------------------------*/
/*-------------- Access --------------------------*/
/*------------------------------------------------*/
.access {
  position: relative;
  z-index: 2;
  padding: 6rem 0;
  background-color: var(--color-sky);
}
.access-title h2 {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  text-align: center;
  color: var(--color-black);
  margin-bottom: 3rem;
}
.access-map {
  margin-bottom: 3rem;
}
.access-description {
  text-align: center;
}
.access-description p {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2rem;
  color: #3E6B3E;
}

/*------------------------------------------------*/
/*-------------- FAQ / Accordion -----------------*/
/*------------------------------------------------*/
.faq {
  position: relative;
  z-index: 2;
  padding: 6rem 0;
  background-color: var(--color-warm);
}
.faq-title h2 {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  text-align: center;
  color: var(--color-black);
  margin-bottom: 3rem;
}

.accordion-wrapper {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.accordion-bt {
  width: 100%;
  text-align: left;
  padding: 2rem 3rem 2rem 1rem;
  position: relative;
  font-size: 1.25rem;
  line-height: 1.6875rem;
  font-weight: 500;
  display: block;
  cursor: pointer;
  color: var(--color-black);
  font-family: var(--font-sans-serif);
}
.accordion-bt .icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  display: block;
  will-change: transform;
}
.accordion-bt .icon::before,
.accordion-bt .icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 1px;
  background: var(--color-black);
  transition: transform 0.3s;
}
.accordion-bt .icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Open state */
.accordion-item.open .accordion-bt .icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}
.accordion-inner {
  padding: 0 1rem 2rem;
}
.accordion-txt {
  font-size: 0.9375rem;
  line-height: 2;
  color: #3E6B3E;
  font-family: var(--font-sans-serif);
}

/* FAQ other */
.faq-other {
  text-align: center;
  margin-top: 4rem;
}
.faq-other-txt {
  font-size: 1rem;
  color: var(--color-black);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/*------------------------------------------------*/
/*-------------- Reserve CTA ---------------------*/
/*------------------------------------------------*/
.reserve {
  position: relative;
  z-index: 2;
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-warm) 50%, var(--color-sky) 100%);
  text-align: center;
}
.reserve h2 {
  font-family: var(--font-title);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  line-height: 2;
  color: var(--color-black);
  margin-bottom: 3rem;
}

/*------------------------------------------------*/
/*-------------- Footer --------------------------*/
/*------------------------------------------------*/
.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 4rem 3rem;
}
.c-flex {
  display: flex;
}
.c-flex--between {
  justify-content: space-between;
}
.footer__logo {
  margin-bottom: 2rem;
}
.footer__logo img {
  max-height: 6rem;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}
.footer__address .address {
  font-size: 0.8125rem;
  line-height: 1.8;
  color: #a8c5ab;
  margin-bottom: 1rem;
}
.footer__address .tel-mail {
  font-size: 0.8125rem;
  color: #a8c5ab;
}
.footer__address .tel-mail a {
  color: #a8c5ab;
  transition: opacity 0.3s;
}
.footer__address .tel-mail a:hover {
  opacity: 0.7;
}
.footer__address .line {
  margin: 0 0.5rem;
}

.footer__menu {
  display: flex;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer__link {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__link a {
  font-size: 0.8125rem;
  color: #a8c5ab;
  transition: opacity 0.3s;
}
.footer__link a:hover {
  opacity: 0.7;
}
.footer__copyright {
  text-align: right;
}
.footer__copyright small {
  font-size: 0.75rem;
  color: #a8c5ab;
}

/*------------------------------------------------*/
/*---------- Responsive (Mobile) -----------------*/
/*------------------------------------------------*/
@media screen and (max-width: 999px) {
  .u-pc-no {
    display: inline;
  }
  .u-sp-no {
    display: none;
  }

  /* Header */
  .header .header__nav {
    display: none;
  }
  .header .header__inner {
    justify-content: space-between;
    margin-left: 1rem;
  }
  .header .header__btn {
    margin-right: 1rem;
  }
  .header .header__btn a {
    padding: 0.5rem 1.2rem;
    font-size: 0.625rem;
  }
  .header .header__logo img {
    max-height: 2.5rem;
  }

  /* Hero */
  .main-copy .mv-letter {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  .content-swiper-pagination {
    bottom: 2rem;
    left: 1.5rem;
  }
  .top-scroll {
    bottom: 2rem;
    right: 1.5rem;
  }

  /* Features */
  .features-txt {
    position: absolute;
    bottom: 5%;
    top: auto;
    left: 5%;
    right: 5%;
    transform: none;
    max-width: 100%;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
  }
  .features-txt.right,
  .features-txt.left {
    left: 5%;
    right: 5%;
  }
  .features-txt.black {
    color: var(--color-white);
    background: rgba(0, 0, 0, 0.4);
  }
  .features-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  /* Rooms / Activities */
  .rooms .rooms-swiper {
    height: 70vh;
    max-height: 600px;
  }
  .rooms .rooms-swiper .slide-txt__description .title {
    font-size: 1.5rem;
  }

  /* Facilities */
  .facilities {
    padding-bottom: 6rem;
    padding-top: 4rem;
  }
  .facilities .facilities-main-img-inner {
    flex-direction: column;
  }
  .facilities .facilities-main-img-inner .img {
    width: 100%;
  }
  .facilities .facilities-main-img-inner .txt {
    width: 100%;
    padding: 0 1rem;
  }
  .facilities-sub {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  .facilities-sub-item:last-child {
    grid-column: span 1;
  }

  /* Ski valet */
  .ski-valet {
    padding: 4rem 0;
  }
  .ski-valet__title h2 {
    font-size: 2.5rem;
  }

  /* Access */
  .access {
    padding: 4rem 0;
  }
  .access-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  /* FAQ */
  .faq {
    padding: 4rem 0;
  }
  .faq-title h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  .accordion-bt {
    font-size: 1rem;
    padding: 1.5rem 2.5rem 1.5rem 0.5rem;
  }

  /* Reserve */
  .reserve {
    padding: 5rem 1rem;
  }

  /* Footer */
  .footer {
    padding: 3rem 1.5rem;
  }
  .c-flex {
    flex-direction: column;
    gap: 3rem;
  }
  .footer__menu {
    flex-direction: column;
    gap: 2rem;
  }
  .footer__copyright {
    text-align: left;
  }
}
