/* =========================
   Photo Section
========================= */
.home-photo {
  position: relative;
  padding: 30px 0 100px;
  background: #f7f4ef;
  overflow: hidden;
}

.home-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("https://varie-fuji-terrace.com/wp-content/uploads/2026/03/v105-6-scaled.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 1.2s ease;
}

.home-photo > * {
  position: relative;
  z-index: 1;
}

/* =========================
   Gallery Wrap / Head
========================= */
.photo-gallery-wrap {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.photo-gallery-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.photo-gallery-head__label {
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(35, 24, 21, 0.56);
}

/* =========================
   Gallery Layout
========================= */
.photo-gallery {
  display: grid;
  gap: 18px;
    align-items: end;
}

.photo-gallery__main {
  position: relative;
}

.photo-gallery__main-inner {
  position: relative;
  aspect-ratio: 1.15 / 1;
  background: #ddd;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.photo-gallery__main-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  filter: blur(10px);
  transition:
    opacity 0.7s ease,
    transform 1s ease,
    filter 0.9s ease;
  pointer-events: none;
}

.photo-gallery__main-image.is-active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  pointer-events: auto;
}

.photo-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.photo-gallery__thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.photo-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.8s ease,
    opacity 0.35s ease,
    filter 0.45s ease;
}

.photo-gallery__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(35, 24, 21, 0.18);
  transition:
    border-color 0.35s ease,
    opacity 0.35s ease;
}

.photo-gallery__thumb:hover img {
  transform: scale(1.05);
}

.photo-gallery__thumb.is-active::after {
  border: 2px solid rgba(35, 24, 21, 0.7);
}

.photo-gallery__thumb:not(.is-active) img {
  opacity: 0.88;
  filter: saturate(0.92);
}

.photo-gallery-bottom-cta {
  margin-top: 55px;
  display: flex;
  justify-content: center;
}
.photo-hero-band {
  position: relative;
  width: 100%;
  height: clamp(280px, 46vw, 620px);
  overflow: hidden;
  margin: 56px 0 72px;
}

.photo-hero-band__image {
  position: absolute;
  inset: -30% 0;
  background-image: url("https://varie-fuji-terrace.com/wp-content/uploads/2026/04/ffu2-7.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0) scale(1.24);
  will-change: transform;
}

.photo-hero-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(247,244,239,0.18) 0%,
      rgba(247,244,239,0.04) 24%,
      rgba(247,244,239,0.04) 76%,
      rgba(247,244,239,0.16) 100%
    );
  pointer-events: none;
}
.room-title-svg--stay{
width: min(82vw, 435px);
}

/* =========================
   STAY
========================= */
.home-stay {
  position: relative;
  padding: 140px 0 140px;
  background: #f7f4ef;
  color: #2f2a24;
}

.home-stay__inner {
  width: min(1080px, calc(100% - 48px));
  margin: 56px auto 0;
}

.stay-block {
  position: relative;
  padding: 0;
}

.stay-block .room-features-head {
  margin-bottom: 34px;
}

.stay-block .room-features-title-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.stay-block .room-features-subtitle {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(60, 50, 42, 0.62);
}

.section-title--stay {
  margin-bottom: 64px;
}

.stay-block__title-en {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1;
  letter-spacing: .14em;
  color: #231815;
}

/* =========================
   Divider
========================= */
.stay-divider {
  width: 100%;
  height: 1px;
  margin: 56px 0;
  background: linear-gradient(
    to right,
    rgba(80, 70, 60, 0) 0%,
    rgba(80, 70, 60, 0.18) 14%,
    rgba(80, 70, 60, 0.18) 86%,
    rgba(80, 70, 60, 0) 100%
  );
}

/* =========================
   Info list
========================= */
.stay-info-list {
  display: grid;
  gap: 24px;
}

.stay-info-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  column-gap: 26px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(70, 58, 48, 0.08);
}

.stay-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stay-info-item__label {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(55, 45, 37, 0.54);
  line-height: 1.9;
}

.stay-info-item__content p {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #2f2a24;
}

.stay-info-item__content p + p {
  margin-top: 6px;
}
.stay-plain-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.stay-plain-list__item {
  position: relative;
  margin: 0;
  padding: 0 0 0 14px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #2f2a24;
}

.stay-plain-list__item::before {
  content: "";
  position: absolute;
  top: 0.95em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(68, 57, 47, 0.42);
}
.room-title-wrap--stay {
  margin-bottom: 0;
}

.stay-block {
  display: block;
}

.stay-block__photo {
  margin: 28px 0 30px;
}

.stay-photo-stack {
  position: relative;
  width: min(100%, 340px);
  margin: 0 auto;
}

.stay-photo-stack__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 0.78 / 1;
  min-height: 420px;
}

.stay-photo-card {
  position: absolute;
  inset: 0;
  width: min(100%, 290px);
  aspect-ratio: 0.78 / 1;
  margin: auto;
  padding: 10px;
  background: #fbf8f3;
  border-radius: 2px;
  overflow: hidden;
  box-shadow:
    0 18px 42px rgba(26, 21, 16, 0.12),
    0 6px 18px rgba(26, 21, 16, 0.08);
  transition:
    transform 0.82s cubic-bezier(.22, .8, .2, 1),
    opacity 0.55s ease;
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.stay-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 0.78 / 1;
  object-fit: cover;
}

.stay-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.16) 0%,
      rgba(255,255,255,0.03) 30%,
      rgba(0,0,0,0.02) 100%
    );
}

.stay-photo-card.is-pos-1 {
  transform: translate(-18px, 16px) rotate(-8deg) scale(0.94);
  z-index: 1;
  opacity: 0.8;
}

.stay-photo-card.is-pos-2 {
  transform: translate(16px, 8px) rotate(6deg) scale(0.97);
  z-index: 2;
  opacity: 0.92;
}

.stay-photo-card.is-pos-3 {
  transform: translate(0, 0) rotate(-2deg) scale(1);
  z-index: 3;
  opacity: 1;
}

/* 次へめくる */
.stay-photo-card.is-leaving-next {
  transform: translate(125%, -4%) rotate(16deg) scale(0.94);
  opacity: 0;
  z-index: 5;
}

/* 戻るめくる */
.stay-photo-card.is-entering-prev {
  transform: translate(-125%, -4%) rotate(-16deg) scale(0.94);
  opacity: 0;
  z-index: 5;
}

.stay-photo-stack__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(47, 42, 36, 0.15);
  border-radius: 50%;
  background: rgba(251, 248, 243, 0.86);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}

.stay-photo-stack__nav:hover {
  background: rgba(251, 248, 243, 0.98);
  border-color: rgba(47, 42, 36, 0.3);
}

.stay-photo-stack__nav--prev {
  left: -8px;
}

.stay-photo-stack__nav--next {
  right: -8px;
}

.stay-photo-stack__nav span {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid #2f2a24;
  border-right: 1.5px solid #2f2a24;
}

.stay-photo-stack__nav--next span {
  transform: rotate(45deg);
}

.stay-photo-stack__nav--prev span {
  transform: rotate(-135deg);
}

/* =========================
   ACCESS
========================= */
.home-access {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 110px 24px 130px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.home-access::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0.54) 48%,
      rgba(0, 0, 0, 0.64) 100%
    ),
    rgba(255,255,255,0.04);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.home-access::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 42%),
    radial-gradient(circle at 75% 68%, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 40%);
  mix-blend-mode: screen;
  opacity: 0.7;
}

.home-access--dark::after {
  background:
    radial-gradient(circle at 24% 20%, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 34%),
    radial-gradient(circle at 76% 66%, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 38%);
  opacity: 1;
  filter: blur(8px);
}

.home-access > * {
  position: relative;
  z-index: 1;
}

.home-access .room-subtitle {
  color: rgba(255,255,255,0.84);
}

/* =========================
   Layout
========================= */
.access-layout {
  width: min(1180px, 100%);
  margin: 54px auto 0;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.access-map-wrap {
  order: 1;
  width: 100%;
}

.access-info {
  order: 2;
  width: 100%;
}

/* =========================
   Map
========================= */
.access-map-svg-wrap,
.access-map-svg {
  display: block;
  width: 100%;
}

.access-map-wrap {
  max-width: 720px;
  margin: 0 auto;
}
animation: accessHereBlink 1.4s ease-in-out infinite;
}

/* =========================
   Info Table
========================= */
.access-info {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1.1s ease .15s,
    transform 1.1s ease .15s;
}

.home-access.is-visible .access-info {
  opacity: 1;
  transform: translateY(0);
}

.access-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.access-row {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(0,0,0,0.14);
}

.access-row__head {
  padding: 18px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}

.access-row__label {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
}

.access-row__place {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.95);
}

.access-row__body {
  display: grid;
  gap: 0;
}

.access-item {
  padding: 16px 20px 18px;
}

.access-item + .access-item {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.access-item__mode {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
}

.access-item__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88);
}
.home-access--dark .section-title__en,
.home-access--dark .section-title__ja {
  color: #fffaf4 !important;
}

.home-access--light .section-title__en,
.home-access--light .section-title__ja {
  color: #231815 !important;
}


/* =========================
   Google Map Link
========================= */
.access-map-link {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
  padding-right: 24px; /* ← ここで内側に余白つくる */
}
.access-map-link a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity .3s ease;
}

.access-map-link a:hover {
  opacity: 1;
}

/* 矢印（右上方向） */
.access-map-link__arrow {
  width: 14px;
  height: 14px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  display: inline-block;
  transition: transform .3s ease;
}

/* hoverで少し伸びる */
.access-map-link a:hover .access-map-link__arrow {
  transform: rotate(45deg) translate(2px, -2px);
}



.access-map-image-link,
.access-map-image {
  display: block;
  width: 100%;
}

.access-map-image {
  border-radius: 22px;
  box-shadow: 0 18px 34px rgba(0,0,0,0.14);
}

.access-map-card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 220px;
  padding: 28px;
  border-radius: 22px;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  letter-spacing: 0.16em;
}

.home-access--light .access-map-card-link {
  color: #231815;
  background: rgba(255,255,255,0.72);
  border-color: rgba(60,50,42,0.08);
}

.home-access--dark {
  background-image: url('../img/bk4.jpg');
}

.home-access--light {
  background-image: url('../img/bk5.jpg');
  color: #231815;
}

.home-access--light::before {
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.72),
      rgba(255,255,255,0.86)
    );
}

.home-access--light::after {
  opacity: 0.25;
}

.home-access--light .section-title__en,
.home-access--light .section-title__ja,
.home-access--light .access-row__place,
.home-access--light .access-item__text {
  color: #231815;
}

.home-access--light .access-row__label,
.home-access--light .access-item__mode {
  color: rgba(35,24,21,.52);
}

.home-access--light .access-row {
  background: rgba(255,255,255,.72);
  border-color: rgba(35,24,21,.12);
}
/* =========================
   Contact
========================= */
.home-contact {
  position: relative;
  padding: clamp(88px, 10vw, 148px) 0;
  background: #f7f4ef;
}

.contact-links {
  width: min(1200px, calc(100% - 28px));
  margin: clamp(34px, 5vw, 58px) auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.home-contact .stay-divider {
  width: 100%;
  margin: 0;
}

/* =========================
   Link block
========================= */
.contact-link-block {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 150px;
  padding: 20px 0 22px;
  text-decoration: none;
  color: #1f1f1f;
  background: transparent;
  transition:
    transform .45s ease,
    color .45s ease;
}

.contact-link-block__label {
  display: block;
  margin-bottom: 10px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.24em;
  color: rgba(50, 50, 50, 0.56);
  transition: color .45s ease;
}

.contact-link-block__title {
  display: block;
  font-size: clamp(22px, 6vw, 34px);
  line-height: 1.45;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: inherit;
}
/* =========================
   Modern Arrow
========================= */
.contact-link-block__arrow {
  position: relative;
  display: block;
  width: 150px;
  height: 12px;
  margin-top: 22px;
  opacity: 0.72;
  transition:
    transform .55s ease,
    opacity .45s ease;
}

.contact-link-block__arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 0.5px;
  background: currentColor;
  transform: translateY(-50%);
}

/* 矢印head */
.contact-link-block__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 42px;
  height: 0.5px;
  background: currentColor;
  transform-origin: right center;
  transform:
    translateY(-50%)
    rotate(18deg);
}

/* head下 */
.contact-link-block__arrow span {
  position: absolute;

  right: 0;
  top: 50%;

  width: 10px;
  height: 1.5px;

  background: currentColor;

  transform-origin: right center;

  transform:
    translateY(-50%)
    rotate(-45deg);
}
.contact-link-block::before {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 70%;
  height: 100%;

  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,0.06) 40%,
      rgba(255,255,255,0.26) 50%,
      rgba(255,255,255,0.06) 60%,
      transparent 100%
    );

  transform: skewX(-18deg);

  transition:
    left .9s cubic-bezier(.22,.61,.36,1);

  z-index: 0;
  pointer-events: none;
}

.contact-link-block:hover::before {
  left: 150%;
}
/* Hover */
.contact-link-block:hover .contact-link-block__arrow,
.contact-link-block:focus-visible .contact-link-block__arrow {
  transform: translateX(10px);
  opacity: 1;
}
/* =========================
   Carousel
========================= */
.home-carousel {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vw, 84px) 0 clamp(88px, 10vw, 140px);
  background: #f7f4ef;
}

.home-carousel__heading {
  position: absolute;
  inset: 42% auto auto 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: min(90%, 900px);
  text-align: center;
  pointer-events: none;
}

.home-carousel__brand {
  margin: 0 0 10px;
  font-size: clamp(12px, 1.2vw, 16px);
  line-height: 1;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
}

.home-carousel__title {
  margin: 0;
  font-size: clamp(28px, 7vw, 62px);
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.carousel-marquee {
  --carousel-gap: 14px;
  --carousel-loop-distance: 0px;
  --carousel-duration: 42s;

  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  gap: 0;
  will-change: transform;
  animation: carouselLoop var(--carousel-duration) linear infinite;
}

.carousel-group {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
  gap: var(--carousel-gap);
  padding-right: var(--carousel-gap);
}

@keyframes carouselLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--carousel-loop-distance)));
  }
}
.carousel-item {
  position: relative;
  flex: 0 0 auto;
  width: 44vw;
  max-width: 220px;
  aspect-ratio: 0.68 / 1;
  overflow: hidden;
  border-radius: 18px;
  background: #ddd6cc;
}

.carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.22);
  z-index: 1;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  filter: brightness(0.92);
}

/* =========================
   SP
========================= */
@media (max-width: 767px) {
  .home-stay {
    padding: 110px 0 110px;
  }

  .home-stay__inner {
    width: min(100% - 28px, 720px);
    margin-top: 42px;
  }

  .stay-block .room-features-head {
    margin-bottom: 24px;
  }

  .stay-divider {
    margin: 42px 0;
  }

  .stay-info-list {
    gap: 18px;
  }

  .stay-info-item {
    grid-template-columns: 1fr;
    row-gap: 6px;
    padding-bottom: 16px;
  }

  .stay-info-item__label {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .stay-info-item__content p {
    font-size: 14px;
    line-height: 1.95;
  }


  .view-hero-band {
    height: 240px;
    margin: 36px 0 48px;
  }

  .view-hero-band__image {
    inset: -14% 0;
    transform: translate3d(0, 0, 0) scale(1.10);
  }
  .home-view {
    padding: 24px 0 100px;
  }

  .view-hero__media img {
    height: 118%;
    transform: translate3d(0, -3%, 0) scale(1.03);
  }

  .view-gallery-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
  }

  .stay-photo-stack {
    width: min(100%, 280px);
  }

  .stay-photo-stack__stage {
    min-height: 360px;
  }

  .stay-photo-card {
    width: min(100%, 245px);
    padding: 8px;
  }

  .stay-photo-card.is-pos-1 {
    transform: translate(-14px, 12px) rotate(-7deg) scale(0.95);
  }

  .stay-photo-card.is-pos-2 {
    transform: translate(12px, 6px) rotate(5deg) scale(0.98);
  }

  .stay-photo-stack__nav {
    width: 38px;
    height: 38px;
  }
}
/* =========================
   Tablet / SP
========================= */
@media (max-width: 991px) {
  .stay-block__photo {
    margin: 24px 0 26px;
  }

  .stay-photo-stack {
    width: min(100%, 320px);
  }

  .stay-photo-stack__stage {
    min-height: 400px;
  }
}

/* =========================
   PC
========================= */
@media (min-width: 992px) {
  .stay-block {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    column-gap: 56px;
    row-gap: 0;
    align-items: start;
  }

  .stay-block__photo {
    grid-column: 1;
    grid-row: 1 / span 3;
    margin: 0;
    align-self: start;
  }

  .room-features-head {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 18px;
  }

  .stay-info-list,
  .stay-plain-list {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
  }

  .stay-photo-stack {
    width: 100%;
    max-width: 320px;
    margin: 0;
  }

  .stay-photo-stack__stage {
    min-height: 455px;
  }

  .stay-photo-card {
    width: min(100%, 310px);
    padding: 11px;
  }

  .photo-hero-band {
    height: clamp(360px, 48vw, 680px);
    margin: 72px 0 96px;
  }

  .photo-hero-band__image {
    inset: -20% 0;
    transform: translate3d(0, 0, 0) scale(1.18);
  }
  .home-photo {
    padding: 40px 0 160px;
  }

  .photo-gallery-photo {
    width: min(100% - 80px, 1240px);
  }

  .photo-gallery-head {
    margin-bottom: 34px;
  }

  .photo-gallery {
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
    gap: 22px 28px;
    align-items: end;
  }

  .photo-gallery__main-inner {
    aspect-ratio: 1.22 / 0.92;
  }
  .photo-gallery__thumbs {
    align-self: end;
    align-content: end;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

.photo-gallery__thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  line-height: 0;
}
  .access-map-link {
    padding-right: 130px;
  }
}
@media (min-width: 768px) and (max-width: 1080px) {
  .stay-info-item {
    grid-template-columns: 180px 1fr;
    column-gap: 22px;
  }
}

/* =========================
   PC
========================= */
@media (min-width: 768px) {
  .contact-links {
    width: min(1280px, calc(100% - 80px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 0;
    align-items: start;
  }

  .home-contact .stay-divider {
    display: none;
  }

  .contact-link-block {
    min-height: 220px;
    padding: 28px 0 26px;
    border-top: 1px solid rgba(40, 40, 40, 0.14);
    border-bottom: 1px solid rgba(40, 40, 40, 0.14);
  }

  .contact-link-block__label {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .contact-link-block__title {
    font-size: clamp(28px, 2vw, 46px);
  }

  .contact-link-block {
    align-items: center;
    text-align: center;
    padding: 40px 0 36px;
  }

  .contact-link-block__label {
    margin-bottom: 14px;
  }

  .contact-link-block__arrow {
    margin-top: 26px;
  }
  .carousel-marquee {
    --carousel-gap: 20px;
  }
}

@media (min-width: 1100px) {
  .carousel-marquee {
    --carousel-gap: 24px;
  }
}


/* =========================
   Tablet
========================= */
@media (min-width: 768px) {
  .carousel-marquee {
    animation-duration: 52s;
  }

  .carousel-group {
    gap: 20px;
    padding-right: 20px;
  }

  .carousel-item {
    width: 24vw;
    max-width: 300px;
    border-radius: 0;
  }

  .home-carousel__brand {
    margin-bottom: 12px;
    font-size: clamp(12px, 0.9vw, 16px);
  }

  .home-carousel__title {
    font-size: clamp(42px, 4.5vw, 76px);
  }
}


/* =========================
   Custom Page Scrollbar
========================= */
.page-scrollbar {
  position: fixed;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  z-index: 9995;
  width: 30px;
  height: min(62vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.page-scrollbar.is-ready {
  opacity: 1;
  pointer-events: auto;
}

.page-scrollbar__rail {
  position: relative;
  width: 30px;
  height: 100%;
  display: flex;
  justify-content: center;
}

.page-scrollbar__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1.5px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 0 8px rgba(255,255,255,0.18),
    0 0 18px rgba(120, 190, 255, 0.10);
  border-radius: 999px;
}

.page-scrollbar__markers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-scrollbar__dot {
  position: absolute;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.14);
  box-shadow: 0 0 0 rgba(109, 193, 255, 0);
  border-radius: 1px;
  cursor: pointer;
  pointer-events: auto;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.35s ease;
  opacity: 0.75;
}

.page-scrollbar__dot:hover {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(45deg) scale(1.2);
}

.page-scrollbar__dot.is-active {
  background: rgba(119, 205, 255, 0.95);
  border-color: rgba(210, 241, 255, 0.95);
  box-shadow:
    0 0 10px rgba(80, 180, 255, 0.95),
    0 0 20px rgba(80, 180, 255, 0.65),
    0 0 34px rgba(80, 180, 255, 0.30);
  opacity: 1;
}

.page-scrollbar__thumb {
  position: absolute;
  top: 0;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid rgba(220, 245, 255, 0.98);
  background:
    radial-gradient(circle at 50% 50%, rgba(194,236,255,1) 0%, rgba(122,201,255,0.98) 48%, rgba(70,162,255,0.96) 100%);
  box-shadow:
    0 0 12px rgba(87, 186, 255, 0.95),
    0 0 24px rgba(87, 186, 255, 0.60),
    0 0 42px rgba(87, 186, 255, 0.25);
  border-radius: 2px;
  cursor: grab;
  z-index: 3;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.page-scrollbar__thumb:hover {
  transform: translate(-50%, -50%) rotate(45deg) scale(1.08);
}

.page-scrollbar__thumb.is-dragging {
  cursor: grabbing;
  transform: translate(-50%, -50%) rotate(45deg) scale(1.12);
  box-shadow:
    0 0 14px rgba(87, 186, 255, 1),
    0 0 30px rgba(87, 186, 255, 0.72),
    0 0 48px rgba(87, 186, 255, 0.32);
}

/* 各マーカー位置 */
.page-scrollbar__dot[data-target="hero"]       { top: 0%; }
.page-scrollbar__dot[data-target="room"]       { top: 16.66%; }
.page-scrollbar__dot[data-target="ex"] { top: 33.33%; }
.page-scrollbar__dot[data-target="view"]       { top: 50%; }
.page-scrollbar__dot[data-target="stay"]       { top: 66.66%; }
.page-scrollbar__dot[data-target="access"]     { top: 83.33%; }
.page-scrollbar__dot[data-target="contact"]    { top: 100%; }

/* 背景が白い箇所でも見えるよう少し補助 */
body:not(.menu-open) .page-scrollbar {
  mix-blend-mode: normal;
}

.page-scrollbar__label {
  position: absolute;
  top: 0;
  left: -14px;
  transform: translate(-100%, -50%) translateX(10px);
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.18em;
  line-height: 1;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
  background: rgba(20, 28, 42, 0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 0 12px rgba(90, 180, 255, 0.14),
    0 4px 18px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.page-scrollbar__label.is-visible {
  opacity: 1;
  transform: translate(-100%, -50%) translateX(0);
}

/* =========================
   PC
========================= */
@media (min-width: 960px) {
  .home-access {
    padding: 130px 40px 150px;
  }

  .access-layout {
    margin-top: 68px;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
    align-items: center;
    gap: 52px;
  }

  .access-info {
    order: 1;
  }

  .access-map-wrap {
    order: 2;
    max-width: none;
    margin: 0;
  }

  .access-row__head {
    padding: 20px 24px 18px;
  }

  .access-row__place {
    font-size: 17px;
  }

  .access-row__body {
    grid-template-columns: 1fr 1fr;
  }

  .access-item {
    padding: 18px 24px 20px;
  }

  .access-item + .access-item {
    border-top: none;
    border-left: 1px solid rgba(255,255,255,0.1);
  }

  .access-item__text {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .carousel-marquee {
    --carousel-gap: 20px;
  }
}
/* =========================
   Small Mobile
========================= */
@media (max-width: 767px) {
  .home-access {
    padding: 88px 20px 100px;
  }

  .access-layout {
    margin-top: 40px;
    gap: 26px;
  }

  .access-row {
    border-radius: 18px;
  }

  .access-row__head {
    padding: 16px 16px 14px;
  }

  .access-row__place {
    font-size: 15px;
    line-height: 1.65;
  }

  .access-item {
    padding: 14px 16px 16px;
  }

  .access-item__text {
    font-size: 13px;
    line-height: 1.8;
  }

  .page-scrollbar {
    right: 12px;
    width: 24px;
    height: min(50vh, 360px);
  }

  .page-scrollbar__thumb {
    width: 13px;
    height: 13px;
  }

  .page-scrollbar__dot {
    width: 6px;
    height: 6px;
  }
  .page-scrollbar__label {
    font-size: 9px;
    padding: 3px 7px;
    letter-spacing: 0.14em;
  }
}
/* =========================
   PC
========================= */
@media (min-width: 1100px) {
  .home-carousel {
    padding: 56px 0 150px;
  }

  .carousel-marquee {
    animation-duration: 60s;
  }

  .carousel-group {
    gap: 24px;
    padding-right: 24px;
  }

  .carousel-item {
    width: 18vw;
    max-width: 320px;
  }

  .home-carousel__title {
    font-size: clamp(54px, 4vw, 96px);
  }
  .stay-block__title-en {
    text-align: right;
    width: 100%;
  }

  .stay-block .room-features-title-wrap {
    width: 100%;
    align-items: flex-end;
  }
}

@media (min-width: 1100px) {
  .carousel-marquee {
    --carousel-gap: 24px;
  }
}

/* =========================
   Custom Section
========================= */
.home-custom-section {
  position: relative;
  padding: clamp(88px, 10vw, 150px) 0;
  background: #f7f4ef;
  color: #231815;
  overflow: hidden;
}

.custom-section-layout {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  gap: 42px;
}

.custom-section-gallery {
  position: relative;
}

.custom-section-gallery__stage {
  position: relative;
  aspect-ratio: 0.88 / 1;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 18px 42px rgba(0,0,0,0.08);
}

.custom-section-gallery__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  filter: blur(8px);
  transition:
    opacity .7s ease,
    transform 1.1s ease,
    filter .9s ease;
}

.custom-section-gallery__image.is-active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.custom-section-gallery__nav {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 50%;
  background: rgba(0,0,0,.24);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.custom-section-gallery__nav span {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 11px;
  height: 11px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(45deg);
}

.custom-section-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.custom-section-content__heading {
  margin: 0;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.65;
  letter-spacing: .08em;
  font-weight: 500;
}

.custom-section-content__text {
  margin: 24px 0 0;
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: .05em;
  color: rgba(35,24,21,.72);
}

.custom-section-content__button {
  margin-top: 34px;
}

@media (min-width: 900px) {
  .custom-section-layout {
    grid-template-columns: minmax(320px, .92fr) minmax(0, 1fr);
    gap: 68px;
    align-items: center;
  }

  .custom-section-gallery__stage {
    aspect-ratio: 0.82 / 1;
  }
}

@media (max-width: 640px) {
  .custom-section-layout {
    width: min(100% - 28px, 720px);
  }

  .custom-section-gallery__stage {
    aspect-ratio: 1 / 1.08;
  }
}