/* =========================================================
   HERO
========================================================= */
.front-hero {
  position: relative;
  min-height: 100svh;
  overflow: visible;
  background: var(--color-off-white);
  padding: 0;
  touch-action: pan-y;
}

.front-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  grid-template-rows: 1fr auto auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 100svh;
}

.front-hero__visual {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1 / -1;
  width: calc(100% + 5vw);
  height: 100svh;
  margin-left: -5vw;
  transform: none;
  overflow: hidden;
  touch-action: pan-y;
}

.front-hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ddd;
}

.front-hero-slider__item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  transform: translateX(18px) scale(1.01);
  transition:
    opacity 0.75s cubic-bezier(.4, 0, .2, 1),
    transform 0.95s cubic-bezier(.4, 0, .2, 1);
  pointer-events: none;
  z-index: 1;
}

.front-hero-slider__item.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

.front-hero-slider__item.is-leaving {
  opacity: 0;
  transform: translateX(-18px) scale(1.015);
  z-index: 3;
}

.front-hero-slider__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 4.2s cubic-bezier(.2, .55, .3, 1);
}

.front-hero-slider__item.is-active img { transform: scale(1.075); }
.front-hero-slider__item.is-leaving img { transform: scale(1.095); }

.front-hero__label {
  grid-column: 2;
  grid-row: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  margin: 45px clamp(70px, 6vw, 125px) 42px clamp(45px, 4vw, 75px);
  padding: 13px 28px;
  border-radius: 12px;
  background: #747163;
  color: var(--color-white);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}

.front-hero__copy {
  grid-column: 2;
  grid-row: 3;
  width: auto;
  margin: 0 clamp(70px, 6vw, 125px) 40px clamp(45px, 4vw, 75px);
}

.front-hero__title {
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-en), var(--font-ja), sans-serif;
  font-size: clamp(38px, 3.25vw, 58px);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: .01em;
}

.front-hero__lead {
  margin: 30px 0 0;
  color: var(--color-text);
  font-size: clamp(17px, 1.3vw, 21px);
  font-weight: 400;
  line-height: 2;
}

.front-hero__logo {
  width: clamp(190px, 18vw, 300px);
  min-width: 0;
  max-width: 100%;
  margin: 44px auto 0;
  animation: heroLogoSwing 8s ease-in-out infinite;
  transform-origin: center;
}

.front-hero__logo img {
  width: 100%;
  height: auto;
}

@keyframes heroLogoSwing {
  0%, 72%, 100% { transform: translateX(0); }
  76% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
  84% { transform: translateX(-3px); }
  88% { transform: translateX(2px); }
  92% { transform: translateX(0); }
}

@media (min-width: 2560px) {
  .front-hero { min-height: 100vh; }

  .front-hero__inner {
    grid-template-columns: minmax(0, 58%) minmax(0, 42%);
    min-height: 100vh;
  }

  .front-hero__visual {
    width: calc(100% + 4vw);
    height: 100vh;
    margin-left: -4vw;
  }

  .front-hero__label {
    min-width: 420px;
    margin: 70px 8vw 58px 4vw;
    padding: 18px 36px;
    border-radius: 16px;
    font-size: 25px;
  }

  .front-hero__copy { margin: 0 7vw 60px 4vw; }

  .front-hero__title {
    font-size: clamp(58px, 2.35vw, 72px);
    line-height: 1.6;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .front-hero__lead {
    margin-top: 42px;
    font-size: 25px;
    line-height: 2.1;
  }

  .front-hero__logo {
    width: clamp(300px, 15vw, 420px);
    margin-top: 65px;
  }
}

@media (min-width: 1600px) and (max-width: 2559.98px) {
  .front-hero__inner { grid-template-columns: minmax(0, 60%) minmax(0, 40%); }

  .front-hero__visual {
    width: calc(100% + 4vw);
    margin-left: -4vw;
  }

  .front-hero__label {
    margin-left: 70px;
    margin-right: 70px;
    font-size: 20px;
  }

  .front-hero__copy {
    margin-left: 70px;
    margin-right: 55px;
  }

  .front-hero__title {
    font-size: clamp(46px, 2.75vw, 56px);
    line-height: 1.65;
    letter-spacing: 0;
  }

  .front-hero__lead {
    font-size: 19px;
    line-height: 2.05;
  }
}

@media (max-width: 1024px) {
  .front-hero { padding: 56px 0 48px; }

  .front-hero__inner { min-height: calc(100svh - 104px); }

  .front-hero__visual {
    width: 94%;
    height: min(62vw, 68svh, 680px);
    margin-left: -5vw;
    transform: translateY(-10px);
  }

  .front-hero__label {
    min-width: 0;
    margin: 50px 55px 24px 34px;
    padding: 12px 22px;
    font-size: 14px;
  }

  .front-hero__copy { margin: 0 55px 40px 34px; }
  .front-hero__title { font-size: clamp(23px, 2.6vw, 30px); }
}

@media (max-width: 767px) {
  .front-hero {
    min-height: auto;
    height: auto;
    padding: 42px 0 0;
  }

  .front-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    min-height: 0;
  }

  .front-hero__label {
    width: calc(100% - 40px);
    min-width: 0;
    margin: 0 auto 18px;
    padding: 11px 16px;
    border-radius: 30px;
    font-size: 14px;
    text-align: center;
  }

  .front-hero__visual {
    width: calc(100% - 68px);
    height: auto;
    aspect-ratio: 0.72;
    margin: 0 auto 0 -12px;
    transform: none;
  }

  .front-hero__copy {
    position: relative;
    z-index: 5;
    width: calc(100% - 64px);
    margin: 0 auto;
    padding: 0;
    overflow: visible;
  }

  .front-hero__title {
    position: absolute;
    left: -20px;
    bottom: calc(100% + 24px);
    width: 100%;
    margin: 0;
    color: var(--color-white);
    font-size: clamp(23px, 8.5vw, 50px);
    font-weight: 600;
    line-height: 1.75;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.32), 0 4px 14px rgba(0, 0, 0, 0.28);
  }

  .front-hero__lead {
    position: relative;
    display: block;
    margin: 34px 0 0;
    font-size: 14px;
    line-height: 1.9;
  }

  .front-hero__logo {
    position: relative;
    display: block;
    z-index: 6;
    width: 200px;
    max-width: 200px;
    margin: 24px 0 0 auto;
  }
}

@media (max-width: 390px) {
  .front-hero__visual { aspect-ratio: 0.71; }
  .front-hero__copy { margin-top: -130px; }
  .front-hero__lead { margin-top: 32px; }
  .front-hero__title { font-size: 22px; }
  .front-hero__logo { width: 120px; max-width: 120px; }
}


/* =========================================================
   CONCEPT
========================================================= */
.concept-section {
  background: #f3ecd8;
  color: #2d2a24;
  padding-bottom: 120px;
}

.concept-visual {
  width: 100%;
  overflow: hidden;
}

.concept-visual__image {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 48%;
}

.concept-intro {
  max-width: 980px;
  margin: 0 auto;
  padding: 76px 40px 56px;
  text-align: center;
}

.concept-intro__title {
  margin: 0;
  font-size: clamp(25px, 2.2vw, 38px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.concept-intro__lead {
  margin-top: 48px;
  font-weight: 500;
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.04em;
}

.concept-intro__lead p { margin: 0 0 12px; }
.concept-intro__lead p:last-child { margin-bottom: 0; }

.concept-gallery {
  width: min(86vw, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr 0.78fr 0.95fr;
  grid-template-rows: 210px 210px;
  gap: 0;
}

.concept-gallery__item {
  position: relative;
  overflow: hidden;
}

.concept-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.8s ease;
}

.concept-gallery__item:hover img { transform: scale(1.035); }

.concept-gallery__item--01 { grid-column: 1; grid-row: 1 / 3; }
.concept-gallery__item--02 { grid-column: 2; grid-row: 1 / 3; }
.concept-gallery__item--03 { grid-column: 3; grid-row: 1; }
.concept-gallery__item--04 { grid-column: 3; grid-row: 2; }

@media (min-width: 1800px) {
  .concept-visual__image { height: 680px; }
  .concept-intro { max-width: 1180px; padding-top: 100px; padding-bottom: 78px; }
  .concept-intro__title { font-size: 42px; }
  .concept-intro__lead { font-size: 17px; }
  .concept-gallery { width: min(82vw, 1500px); grid-template-rows: 270px 270px; }
}

@media (max-width: 767px) {
  .concept-section { padding-bottom: 72px; }

  .concept-visual__image {
    height: 46vw;
    min-height: 190px;
    max-height: 280px;
    object-position: center center;
  }

  .concept-intro { padding: 34px 24px 30px; }

  .concept-intro__title {
    font-size: 20px;
    line-height: 1.65;
    letter-spacing: 0.04em;
  }

  .concept-intro__lead {
    margin-top: 34px;
    font-size: 12px;
    line-height: 2.1;
    letter-spacing: 0.02em;
  }

  .concept-intro__lead p { margin-bottom: 10px; }

  .pc-only { display: none; }

  .concept-gallery {
    width: 100%;
    grid-template-columns: 1.4fr 0.6fr;
    grid-template-rows: 135px 135px 135px;
    margin: 0;
  }

  .concept-gallery__item--01 { grid-column: 1; grid-row: 1 / 3; }
  .concept-gallery__item--02 { grid-column: 2; grid-row: 1 / 3; }
  .concept-gallery__item--03 { grid-column: 1; grid-row: 3; }
  .concept-gallery__item--04 { grid-column: 2; grid-row: 3; }
}


/* =========================================================
   ROOM STORY
========================================================= */
.room-story {
  --room-story-bg: #9d9988;
  position: relative;
  background: var(--room-story-bg);
  transition: background-color 1.1s cubic-bezier(.4, 0, .2, 1);
}

.room-story__sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: inherit;
}

.room-story__stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.room-story__panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(380px, 43%) minmax(0, 57%);
  align-items: center;
  padding: clamp(80px, 8vh, 130px) clamp(50px, 7vw, 140px);
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .9s cubic-bezier(.4, 0, .2, 1),
    visibility .9s ease;
}

.room-story__panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.room-story__content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  padding-right: clamp(20px, 3vw, 60px);
  color: #fff;
}

.room-story__number {
  margin: 0 0 16px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  opacity: .55;
}

.room-story__en {
  margin: 0 0 28px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .22em;
  opacity: .7;
}

.room-story__title {
  margin: 0;
  padding: 0;
  color: #fff !important;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(42px, 4vw, 72px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: .02em;
  text-align: left;
  white-space: nowrap;
  word-break: keep-all;
}

.room-story__description {
  max-width: 390px;
  margin: 58px 0 0;
  color: rgba(255, 255, 255, .92);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 2.15;
  letter-spacing: .04em;
}

.room-story__gallery {
  position: relative;
  width: 100%;
  height: min(76vh, 720px);
  min-height: 520px;
}

.room-story__image {
  position: absolute;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(35px) scale(.985);
  transition:
    opacity .9s ease,
    transform 1.2s cubic-bezier(.2, .7, .2, 1);
}

.room-story__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s cubic-bezier(.2, .6, .3, 1);
}

.room-story__panel.is-active .room-story__image {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.room-story__panel.is-active .room-story__image img { transform: scale(1.045); }

.room-story__image--01 {
  top: 0;
  left: 0;
  width: 72%;
  height: 54%;
  transition-delay: .05s;
}

.room-story__image--02 {
  top: 57%;
  left: 0;
  width: 46%;
  height: 33%;
  transition-delay: .14s;
}

.room-story__image--03 {
  right: 0;
  bottom: 0;
  width: 42%;
  height: 42%;
  transition-delay: .23s;
}

#room-exterior .room-story__image--03 {
  width: 34%;
  height: 53%;
}

.room-story__progress {
  position: absolute;
  z-index: 10;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.room-story__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    background .3s ease,
    transform .3s ease;
}

.room-story__dot.is-active {
  background: #fff;
  transform: scale(1.4);
}

.room-story__scroll-space {
  height: 700vh;
  pointer-events: none;
}

@media (max-width: 767px) {
  .room-story { transition: background-color 1.4s cubic-bezier(.4, 0, .2, 1); }

  .room-story__panel {
    grid-template-columns: 1fr;
    align-content: center;
    padding: 80px 20px 45px;
    transition:
      opacity 1.1s cubic-bezier(.4, 0, .2, 1),
      visibility 1.1s ease;
  }

  .room-story__content {
    max-width: none;
    padding: 0;
    margin-bottom: 25px;
  }

  .room-story__number {
    margin-bottom: 7px;
    font-size: 8px;
  }

  .room-story__en {
    margin-bottom: 9px;
    font-size: 8px;
  }

  .room-story__title {
    font-size: clamp(32px, 10vw, 45px);
    white-space: normal;
    word-break: normal;
  }

  .room-story__description {
    max-width: 300px;
    margin-top: 18px;
    font-size: 10px;
    line-height: 1.9;
  }

  .room-story__gallery {
    width: 100%;
    height: 43vh;
    min-height: 320px;
  }

  .room-story__image {
    transition:
      opacity 1.1s ease,
      transform 1.35s cubic-bezier(.2, .7, .2, 1);
  }

  .room-story__image--01 {
    width: 76%;
    height: 55%;
    left: 0;
    top: 0;
  }

  .room-story__image--02 {
    width: 46%;
    height: 34%;
    left: 5%;
    top: 61%;
  }

  .room-story__image--03 {
    width: 40%;
    height: 45%;
    right: 0;
    bottom: 0;
  }

  #room-exterior .room-story__image--03 {
    width: 34%;
    height: 50%;
  }

  .room-story__progress {
    right: 9px;
    gap: 8px;
  }

  .room-story__dot {
    width: 5px;
    height: 5px;
  }

  .room-story__scroll-space { height: 560vh; }
}


/* =========================================================
   ACCESS
========================================================= */
.front-access {
  position: relative;
  background: #efe8d2;
  padding: 90px max(40px, calc((100vw - 1500px) / 2)) 120px;
  color: #25221d;
}

.front-access__inner {
  display: grid;
  grid-template-columns: minmax(240px, .65fr) minmax(0, 1.7fr);
  gap: clamp(55px, 7vw, 120px);
  align-items: start;
}

.front-access__side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.front-access__circle {
  width: clamp(210px, 19vw, 300px);
  aspect-ratio: 1 / 1;
  border: clamp(18px, 2vw, 30px) solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.front-access__circle span {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: clamp(42px, 4vw, 68px);
  font-weight: 800;
  line-height: 1;
}

.front-access__info {
  width: 100%;
  margin-left: 30px;
  margin-top: 75px;
}

.front-access__info-item + .front-access__info-item { margin-top: 20px; }

.front-access__info-title {
  display: inline-flex;
  justify-content: center;
  min-width: 165px;
  margin: 0 0 22px;
  padding: 24px 25px 16px;
  border-radius: 18px;
  background: #fff;
  color: #25221d !important;
  font-family: var(--font-no);
  font-size: 18px;
  font-weight: 700;
}

.front-access__info-text {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
}

.front-access__head {
  display: flex;
  align-items: baseline;
  gap: 22px;
  margin: 20px 0 30px;
}

.front-access__lead {
  margin: 0;
  font-size: clamp(28px, 3vw, 45px);
  font-weight: 800;
  line-height: 1.3;
}

.front-access__minutes {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
}

.front-access__minutes strong {
  position: relative;
  top: 7px;
  font-family: "Inter", sans-serif;
  font-size: clamp(80px, 8vw, 125px);
  font-weight: 900;
  line-height: .9;
}

.front-access__minutes span {
  font-size: clamp(25px, 2.6vw, 40px);
  font-weight: 800;
}

.front-access__map {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  padding: 10px;
  background: #fff;
  box-sizing: border-box;
}

.front-access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.front-access__address {
  margin: 20px 0 0;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.7;
}

.front-access__transport { margin-top: 130px; }

.front-access__transport-head {
  margin-bottom: 55px;
  text-align: center;
}

.front-access__transport-en {
  margin: 0 0 12px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: .25em;
  opacity: .6;
}

.front-access__transport-title {
  margin: 0;
  padding: 0;
  color: #25221d !important;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 800;
}

.front-access__routes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.front-access-route {
  padding: 42px 35px;
  background: rgba(255, 255, 255, .65);
  border-radius: 22px;
}

.front-access-route__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.front-access-route__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #25221d;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.front-access-route__title {
  margin: 0;
  color: #25221d !important;
  font-size: 22px;
  font-weight: 800;
}

.front-access-route__flow {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
}

.front-access-route__point {
  flex: 1;
  min-width: 0;
  padding: 20px 10px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.front-access-route__point--goal {
  background: #bea549;
  color: #fff;
}

.front-access-route__small {
  display: block;
  margin-bottom: 7px;
  font-size: 9px;
  line-height: 1.5;
  opacity: .7;
}

.front-access-route__point strong {
  font-size: 14px;
  line-height: 1.5;
}

.front-access-route__arrow {
  flex: 0 0 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  align-self: center;
}

.front-access-route__time {
  display: block;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .04em;
  color: #837b69;
}

.front-access-route__arrow-line {
  position: relative;
  display: block;
  width: 42px;
  height: 4px;
  background: #fff;
  border-radius: 999px;
}

.front-access-route__arrow-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #fff;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .front-access { padding: 55px 18px 75px; }

  .front-access__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .front-access__circle {
    position: relative;
    top: -45px;
    width: 150px;
    border-width: 14px;
  }

  .front-access__circle span { font-size: 32px; }

  .front-access__side {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
  }

  .front-access__info {
    width: auto;
    margin-top: 0;
  }

  .front-access__info-title {
    min-width: 125px;
    margin-bottom: 12px;
    padding: 18px 15px 11px;
    border-radius: 14px;
    font-size: 13px;
  }

  .front-access__info-text {
    max-width: 175px;
    font-size: 10px;
    line-height: 1.8;
  }

  .front-access__head {
    gap: 10px;
    margin: 10px 0 22px;
  }

  .front-access__lead { font-size: 20px; }

  .front-access__minutes { gap: 5px; }
  .front-access__minutes strong { font-size: 64px; }
  .front-access__minutes span { font-size: 21px; }

  .front-access__map {
    aspect-ratio: 1 / .82;
    padding: 6px;
  }

  .front-access__address {
    margin-top: 13px;
    font-size: 12px;
  }

  .front-access__transport { margin-top: 80px; }
  .front-access__transport-head { margin-bottom: 30px; }
  .front-access__transport-title { font-size: 27px; }

  .front-access__routes {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .front-access-route {
    padding: 28px 18px;
    border-radius: 16px;
  }

  .front-access-route__head { margin-bottom: 25px; }
  .front-access-route__title { font-size: 17px; }

  .front-access-route__flow {
    flex-direction: column;
    gap: 8px;
  }

  .front-access-route__point {
    min-height: 60px;
    padding: 12px 15px;
  }

  .front-access-route__point strong { font-size: 13px; }

  .front-access-route__arrow {
    flex: 0 0 auto;
    gap: 8px;
    padding: 5px 0 8px;
  }

  .front-access-route__time { font-size: 9px; }

  .front-access-route__arrow-line {
    width: 4px;
    height: 26px;
  }

  .front-access-route__arrow-line::after {
    top: auto;
    right: auto;
    bottom: -1px;
    left: 50%;
    border-top: 11px solid #fff;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 0;
    transform: translateX(-50%);
  }
}


/* =========================================================
   INFO
========================================================= */
.front-info {
  --info-bg: #9d9988;
  --info-dark: #35332f;
  --info-white: #fff;
  position: relative;
  padding: 100px max(50px, calc((100vw - 1500px) / 2)) 110px;
  background: var(--info-bg);
  color: var(--info-white);
}

.front-info__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .75fr);
  gap: clamp(70px, 8vw, 150px);
  align-items: center;
}

.front-info__content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.front-info-card {
  overflow: hidden;
  min-height: 170px;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 24px;
  color: #fff;
  cursor: pointer;
  transition:
    background-color .45s cubic-bezier(.4, 0, .2, 1),
    color .45s cubic-bezier(.4, 0, .2, 1),
    transform .35s cubic-bezier(.4, 0, .2, 1);
}

.front-info-card--wide { grid-column: span 2; }

.front-info-card__head {
  min-height: 72px;
  padding: 10px 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--info-dark);
  text-align: center;
  transition:
    background-color .45s cubic-bezier(.4, 0, .2, 1),
    color .45s cubic-bezier(.4, 0, .2, 1);
}

.front-info-card__en {
  display: block;
  margin-bottom: 9px;
  font-family: serif;
  font-size: 11px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  opacity: .85;
}

.front-info-card__title {
  margin: 0 !important;
  padding: 0 !important;
  color: #fff !important;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center !important;
}

.front-info-card:hover,
.front-info-card.is-active {
  background: #fff;
  color: var(--info-dark);
  transform: translateY(-4px);
}

.front-info-card:hover .front-info-card__head,
.front-info-card.is-active .front-info-card__head {
  background: #fff;
  color: var(--info-dark);
}

.front-info-card:hover .front-info-card__title,
.front-info-card.is-active .front-info-card__title {
  color: var(--info-dark) !important;
}

.front-info-card:hover .front-info-card__en,
.front-info-card.is-active .front-info-card__en,
.front-info-card:hover .front-info-card__body,
.front-info-card.is-active .front-info-card__body {
  color: var(--info-dark);
}

.front-info-card__body {
  min-height: 96px;
  padding: 17px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-align: center;
}

.front-info-card__body p {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

.front-info-card__body p:last-child { margin-bottom: 0; }

.front-info-card__main {
  font-family: "Inter", sans-serif;
  font-size: 15px !important;
  font-weight: 800 !important;
}

.front-info-card__body small {
  display: block;
  margin-top: 3px;
  font-size: 8px;
  line-height: 1.6;
  opacity: .9;
}

.front-info__side {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.front-info__circle {
  width: 315px;
  aspect-ratio: 1 / 1;
  border: 34px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.front-info__circle span {
  font-family: "Inter", sans-serif;
  color: #fff;
  font-size: clamp(58px, 4vw, 72px);
  font-weight: 800;
  line-height: 1;
}

.front-info__faq {
  width: 100%;
  margin-top: 42px;
  padding: 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-bottom: 2px solid rgba(255, 255, 255, .75);
  color: #fff;
  text-decoration: none;
  transition:
    opacity .3s ease,
    transform .3s ease;
}

.front-info__faq:hover {
  opacity: .65;
  transform: translateX(5px);
}

.front-info__faq-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.front-info__faq-arrow {
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}

.front-info__faq-en {
  margin-bottom: 9px;
  font-family: "Inter", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

@media (min-width: 2200px) {
  .front-info {
    padding-top: 140px;
    padding-bottom: 150px;
  }

  .front-info__inner {
    max-width: 1800px;
    margin: 0 auto;
  }

  .front-info__circle {
    width: 380px;
    border-width: 40px;
  }

  .front-info__circle span { font-size: 82px; }

  .front-info-card { min-height: 205px; }
  .front-info-card__title { font-size: 24px; }
  .front-info-card__body p { font-size: 16px; }

  .front-info-card:hover,
  .front-info-card.is-active { transform: translateY(-2px); }
}

@media (max-width: 1100px) {
  .front-info__inner {
    grid-template-columns: minmax(0, 1.6fr) minmax(220px, .7fr);
    gap: 50px;
  }

  .front-info__circle {
    width: 230px;
    border-width: 24px;
  }

  .front-info__circle span { font-size: 48px; }

  .front-info-card__title { font-size: 17px; }
}

@media (max-width: 767px) {
  .front-info { padding: 65px 18px 70px; }

  .front-info__inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 45px;
  }

  .front-info__side {
    width: 100%;
    flex-direction: row;
    justify-content: flex-end;
    gap: 30px;
    margin-left: -90px;
  }

  .front-info__circle {
    flex: 0 0 150px;
    width: 150px;
    border-width: 14px;
  }

  .front-info__circle span { font-size: 32px; }

  .front-info__faq {
    width: auto;
    flex: 0 0 auto;
    gap: 6px;
    margin: 0 -30px 0 0;
    padding: 0 0 9px;
    border-bottom: 1px solid rgba(255, 255, 255, .8);
  }

  .front-info__faq-ja {
    font-size: 11px;
    white-space: nowrap;
  }

  .front-info__faq-arrow { font-size: 17px; }
  .front-info__faq-en { font-size: 17px; }

  .front-info__content {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .front-info-card {
    min-height: 145px;
    border-radius: 17px;
  }

  .front-info-card--wide { grid-column: 1 / -1; }

  .front-info-card__head {
    min-height: 58px;
    padding: 8px 10px;
  }

  .front-info-card__en { font-size: 8px; }
  .front-info-card__title { font-size: 15px; }

  .front-info-card__body {
    min-height: 82px;
    padding: 12px 9px;
  }

  .front-info-card__body p {
    font-size: 10px;
    line-height: 1.7;
  }

  .front-info-card__main { font-size: 12px !important; }
  .front-info-card__body small { font-size: 7px; }
}


/* =========================================================
   PHOTOS
========================================================= */
.front-photos {
  position: relative;
  overflow: hidden;
  padding: 85px 0 70px;
  background: #f3edda;
  color: #25221d;
}

.front-photos__head {
  width: min(calc(100% - 100px), 1500px);
  margin: 0 auto 45px;
}

.front-photos__title {
  margin: 0 !important;
  padding: 0 !important;
  color: #25221d !important;
  font-family: var(--font-it);
  font-size: clamp(70px, 7.5vw, 115px);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  letter-spacing: -.02em;
  text-align: left !important;
}

.front-photos__viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  cursor: grab;
  overscroll-behavior-x: contain;
}

.front-photos__viewport::-webkit-scrollbar { display: none; }
.front-photos__viewport.is-dragging { cursor: grabbing; }

.front-photos__track {
  display: flex;
  width: max-content;
  height: min(52vw, 610px);
  gap: 0;
}

.front-photos__group {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: min(58vw, 780px) min(30vw, 410px);
  height: 100%;
}

.front-photos__item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.front-photos__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform .8s cubic-bezier(.2, .7, .2, 1),
    filter .5s ease;
}

@media (hover: hover) and (pointer: fine) {
  .front-photos__item:hover img { transform: scale(1.035); }
}

.front-photos__small {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  height: 100%;
}

.front-photos__control {
  width: min(360px, calc(100% - 60px));
  height: 44px;
  margin: 28px auto 0;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-sizing: border-box;
  border-radius: 14px;
  background: #fff;
}

.front-photos__arrow {
  position: relative;
  flex: 0 0 70px;
  width: 70px;
  height: 30px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition:
    opacity .3s ease,
    transform .3s ease;
}

.front-photos__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 52px;
  height: 2px;
  background: #25221d;
  transform: translateY(-50%);
}

.front-photos__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transform: translateY(-50%);
}

.js-photos-prev::before { left: 12px; }
.js-photos-prev::after {
  left: 0;
  border-right: 15px solid #25221d;
}

.js-photos-next::before { right: 12px; }
.js-photos-next::after {
  right: 0;
  border-left: 15px solid #25221d;
}

.front-photos__arrow:hover { opacity: .6; }
.js-photos-prev:hover { transform: translateX(-3px); }
.js-photos-next:hover { transform: translateX(3px); }

.front-photos__bar {
  position: relative;
  flex: 1;
  height: 1px;
  margin: 0 8px;
  overflow: hidden;
  background: rgba(37, 34, 29, .18);
}

.front-photos__bar-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #25221d;
  transition: width .1s linear;
}

.front-photos-lightbox {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px;
  box-sizing: border-box;
  background: rgba(24, 23, 20, .94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .45s ease,
    visibility .45s ease;
}

.front-photos-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.front-photos-lightbox__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.front-photos-lightbox__image {
  display: block;
  max-width: 92vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: scale(.96);
  transition:
    opacity .5s ease .08s,
    transform .65s cubic-bezier(.2, .7, .2, 1);
}

.front-photos-lightbox.is-open .front-photos-lightbox__image {
  opacity: 1;
  transform: scale(1);
}

.front-photos-lightbox__close {
  position: absolute;
  z-index: 3;
  top: 30px;
  right: 38px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.front-photos-lightbox__close span {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
}

.front-photos-lightbox__close i {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
}

.front-photos-lightbox__close i::before,
.front-photos-lightbox__close i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 1px;
  background: #fff;
}

.front-photos-lightbox__close i::before { transform: rotate(45deg); }
.front-photos-lightbox__close i::after { transform: rotate(-45deg); }

@media (max-width: 767px) {
  .front-photos { padding: 55px 0 45px; }

  .front-photos__head {
    width: calc(100% - 40px);
    margin-bottom: 28px;
  }

  .front-photos__title { font-size: 62px; }

  .front-photos__track {
    height: 72vw;
    min-height: 280px;
  }

  .front-photos__group { grid-template-columns: 72vw 48vw; }

  .front-photos__control {
    width: 260px;
    height: 42px;
    margin-top: 20px;
    padding: 0 20px;
    border-radius: 13px;
  }

  .front-photos__arrow {
    flex-basis: 55px;
    width: 55px;
    height: 26px;
  }

  .front-photos__arrow::before {
    width: 40px;
    height: 1.5px;
  }

  .front-photos__arrow::after {
    border-top-width: 6px;
    border-bottom-width: 6px;
  }

  .js-photos-prev::before { left: 9px; }
  .js-photos-prev::after { border-right-width: 12px; }

  .js-photos-next::before { right: 9px; }
  .js-photos-next::after { border-left-width: 12px; }

  .front-photos__bar { margin: 0 5px; }
}


/* =========================================================
   ROOM
========================================================= */
.front-room {
  --room-gold: #BEA549;
  --room-brown: #55452c;
  --room-cream: #f3edda;
  --room-black: #25221d;
  position: relative;
  overflow: hidden;
  background: var(--room-cream);
}

.front-room::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 520px;
  background: var(--room-gold);
}

.front-room__head {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 520px;
  min-height: 520px;
  margin: 0;
  display: grid;
  grid-template-columns: 30% 38% 32%;
  align-items: stretch;
  overflow: visible;
}

.front-room__nav {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 72px;
  box-sizing: border-box;
}

.front-room__nav-bg {
  position: absolute;
  top: 25px;
  left: -90px;
  width: clamp(410px, 25vw, 500px);
  height: 455px;
  transform: none;
  border-radius: 0 228px 228px 0;
  background: rgba(81, 62, 31, .58);
  pointer-events: none;
}

.front-room__nav-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: clamp(28px, 1.7vw, 36px);
  padding-left: clamp(68px, 4.4vw, 88px);
  padding-top: 24px;
  box-sizing: border-box;
}

.front-room__nav-en {
  margin: 0;
  writing-mode: vertical-rl;
  font-family: "Inter", sans-serif;
  font-size: clamp(13px, .78vw, 15px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .78);
}

.front-room__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(15px, .9vw, 19px);
}

.front-room__nav-list li {
  margin: 0;
  padding: 0;
}

.front-room__nav-list a {
  display: inline-block;
  color: #fff;
  font-size: clamp(16px, 1vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
  text-decoration: none;
  transition:
    opacity .3s ease,
    transform .3s ease;
}

.front-room__nav-list a:hover {
  opacity: .65;
  transform: translateX(4px);
}

.front-room__title-wrap {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 72px;
  box-sizing: border-box;
}

.front-room__circle {
  width: clamp(300px, 19vw, 365px);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border: clamp(28px, 1.9vw, 36px) solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.front-room__circle span {
  font-family: "Inter", sans-serif;
  color: #fff;
  font-size: clamp(58px, 3.5vw, 70px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.front-room__catch {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 30px 0 0 30px;
  box-sizing: border-box;
  overflow: visible;
}

.front-room__catch-title {
  position: relative;
  z-index: 5;
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(66px, 4.5vw, 88px);
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: .055em;
  white-space: nowrap;
}

.front-room__catch-title span { display: block; }

.front-room__catch-title span:nth-child(2) {
  margin-top: clamp(205px, 12vw, 245px);
  margin-right: clamp(28px, 1.7vw, 38px);
}

.front-room__visual {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 120px), 1500px);
  margin: 30px auto 0;
}

.front-room-slider {
  position: relative;
  width: 78%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.front-room-slider__item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(.4, 0, .2, 1);
  pointer-events: none;
}

.front-room-slider__item.is-active {
  opacity: 1;
  z-index: 2;
}

.front-room-slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 7s cubic-bezier(.2, .6, .3, 1);
}

.front-room-slider__item.is-active img { transform: scale(1.065); }

.front-room__intro {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 45px max(60px, calc((100vw - 1500px) / 2)) 110px;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(360px, .78fr);
  gap: clamp(70px, 9vw, 160px);
  align-items: start;
  background: transparent;
}

.front-room__intro-text {
  max-width: 680px;
  padding-top: 38px;
}

.front-room__intro-label {
  margin: 0 0 22px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .24em;
  color: #81765e;
}

.front-room__intro-title {
  margin: 0 0 34px;
  padding: 0;
  color: var(--room-black) !important;
  font-size: clamp(27px, 2.25vw, 40px);
  font-weight: 800 !important;
  line-height: 1.65;
  letter-spacing: .03em;
  text-align: left;
}

.front-room__intro-desc {
  max-width: 600px;
  margin: 0;
  color: #3f3c35;
  font-size: clamp(16px, 1.05vw, 18px);
  font-weight: 400;
  line-height: 2.15;
  letter-spacing: .04em;
}

.front-room__intro-image {
  position: relative;
  width: 100%;
  margin-top: 0;
}

.front-room__intro-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.front-room__sp-photo { display: none; }

@media (min-width: 1600px) {
  .front-room__nav-bg {
    top: 22px;
    left: -100px;
    width: clamp(460px, 25vw, 540px);
    height: 470px;
    border-radius: 0 235px 235px 0;
  }
}

@media (max-width: 767px) {
  .front-room::before { height: 690px; }

  .front-room__head {
    height: 690px;
    min-height: 690px;
    padding: 20px 14px 115px 0;
    grid-template-columns: 36% 28% 36%;
    align-items: start;
    box-sizing: border-box;
  }

  .front-room__nav {
    position: absolute;
    z-index: 10;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    display: block;
  }

  .front-room__nav-bg {
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0 55px 0 0;
    background: rgba(81, 62, 31, .68);
  }

  .front-room__nav-inner {
    display: block;
    width: 100%;
    padding: 17px 22px 19px;
  }

  .front-room__nav-en {
    display: block;
    margin: 0 0 14px;
    writing-mode: horizontal-tb;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: .18em;
    color: rgba(255, 255, 255, .72);
  }

  .front-room__nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
  }

  .front-room__nav-list a {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
  }

  .front-room__nav-list a::before {
    content: "";
    width: 3px;
    height: 3px;
    margin-right: 7px;
    flex-shrink: 0;
    border-radius: 50%;
    background: currentColor;
    opacity: .7;
  }

  .front-room__title-wrap {
    grid-column: 1 / 3;
    width: 100%;
    height: auto;
    padding-top: 22px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .front-room__circle {
    width: 190px;
    margin-left: 12px;
    border: 17px solid #fff;
  }

  .front-room__circle span { font-size: 30px; }

  .front-room__catch {
    position: absolute;
    z-index: 6;
    top: 35px;
    right: 18px;
    width: 48%;
    height: auto;
    padding: 0;
  }

  .front-room__catch-title {
    font-size: clamp(34px, 9.5vw, 40px);
    line-height: 1.15;
    letter-spacing: .025em;
  }

  .front-room__catch-title span:nth-child(2) {
    margin-top: 210px;
    margin-right: 18px;
  }

  .front-room__visual {
    width: 100%;
    margin-top: 18px;
  }

  .front-room-slider {
    width: 77%;
    max-width: none;
    aspect-ratio: 1.36 / 1;
  }

  .front-room__intro {
    padding: 8px 12px 55px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .front-room__intro-image {
    order: 1;
    width: 57%;
    margin-left: auto;
  }

  .front-room__intro-text {
    order: 2;
    max-width: none;
    padding-top: 2px;
  }

  .front-room__intro-label { font-size: 12px; }

  .front-room__intro-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-weight: 600 !important;
    line-height: 1.65;
  }

  .front-room__intro-desc {
    font-size: 12px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: .02em;
  }

  .front-room__sp-photo {
    position: absolute;
    z-index: 2;
    top: 300px;
    left: 28px;
    display: block;
    width: 31vw;
    max-width: 145px;
    height: 330px;
    overflow: hidden;
  }

  .front-room__sp-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: translateY(24px) scale(1.06);
    transition:
      opacity 1.6s ease,
      transform 2.2s cubic-bezier(.22, .61, .36, 1);
  }

  .front-room__sp-photo.is-show img {
    opacity: 1;
    transform: translateY(0) scale(1.02);
  }
}
/* =========================================================
   ROOM STORY - 4K
========================================================= */

@media (min-width: 2560px) {

    .room-story__title {
        font-size: clamp(64px, 3.2vw, 96px);
        line-height: 1.15;
        letter-spacing: .02em;
    }

    .room-story__number,
    .room-story__en {
        font-size: 15px;
        letter-spacing: .18em;
    }

}
/* =========================================================
   CONTACT
========================================================= */

.front-contact {
    --contact-bg: #f3edda;
    --contact-text: #292620;

    position: relative;

    width: 100%;

    padding:
        clamp(110px, 10vw, 180px)
        30px
        clamp(120px, 11vw, 200px);

    box-sizing: border-box;

    background: var(--contact-bg);
}


/* =========================================================
   BOX
========================================================= */

.front-contact__box {
    position: relative;

    width: min(100%, 650px);

    margin: 0 auto;

    padding:
        30px
        55px
        65px;

    box-sizing: border-box;

    border: 7px solid #fff;
    border-radius: 30px;

    text-align: center;
}


/* =========================================================
   CONTACT CIRCLE
========================================================= */

.front-contact__circle {
    position: relative;

    width: 340px;
    max-width: 70%;

    aspect-ratio: 1 / 1;

    margin:
        -10px
        auto
        55px;

    border: 32px solid #fff;
    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    box-sizing: border-box;
}


.front-contact__circle span {
    font-family: "Inter", sans-serif;

    color: #fff;

    font-size: clamp(42px, 3.3vw, 60px);
    font-weight: 800;

    line-height: 1;

    text-transform: lowercase;
}


/* =========================================================
   CONTENT
========================================================= */

.front-contact__content {
    position: relative;

    width: 100%;
}


.front-contact__title {
    margin:
        0
        0
        25px !important;

    padding: 0 !important;

    color: var(--contact-text) !important;

    font-family: "Noto Sans JP", sans-serif;

    font-size: clamp(28px, 2vw, 38px);
    font-weight: 800 !important;

    line-height: 1.5;

    text-align: center;
}


/* =========================================================
   DOWN ARROW
========================================================= */

.front-contact__arrow {
    display: flex;

    justify-content: center;

    margin:
        0
        0
        28px;
}


.front-contact__arrow span {
    display: block;

    width: 0;
    height: 0;

    border-left: 38px solid transparent;
    border-right: 38px solid transparent;
    border-top: 60px solid var(--contact-text);
}


/* =========================================================
   BUTTON
========================================================= */

.front-contact__button {
    position: relative;

    width: min(100%, 430px);
    min-height: 82px;

    margin: 0 auto;

    padding:
        0
        65px
        0
        35px;

    box-sizing: border-box;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff;

    border-radius: 18px;

    color: var(--contact-text);

    font-family: "Noto Sans JP", sans-serif;

    font-size: 20px;
    font-weight: 700;

    line-height: 1.4;

    text-decoration: none;

    transition:
        transform .4s ease,
        background-color .4s ease;
}


.front-contact__button-arrow {
    position: absolute;

    top: 50%;
    right: 30px;

    transform: translateY(-50%);

    font-family: "Inter", sans-serif;

    font-size: 22px;
    font-weight: 400;

    transition:
        transform .4s ease;
}


.front-contact__button:hover {
    transform: translateY(-4px);
}


.front-contact__button:hover
.front-contact__button-arrow {
    transform:
        translate(6px, -50%);
}


/* =========================================================
   SP
========================================================= */

@media (max-width: 767px) {

    .front-contact {
        padding:
            80px
            22px
            95px;
    }


    .front-contact__box {
        width: 100%;

        padding:
            22px
            22px
            38px;

        border-width: 4px;
        border-radius: 22px;
    }


    .front-contact__circle {
        width: 210px;

        max-width: none;

        margin:
            -5px
            auto
            40px;

        border-width: 20px;
    }


    .front-contact__circle span {
        font-size: 36px;
    }


    .front-contact__title {
        margin-bottom: 18px !important;

        font-size: 24px;
    }


    .front-contact__arrow {
        margin-bottom: 22px;
    }


    .front-contact__arrow span {
        border-left-width: 27px;
        border-right-width: 27px;
        border-top-width: 43px;
    }


    .front-contact__button {
        width: 100%;
        min-height: 66px;

        padding:
            0
            50px
            0
            25px;

        border-radius: 13px;

        font-size: 16px;
    }


    .front-contact__button-arrow {
        right: 22px;

        font-size: 18px;
    }

}


/* =========================================================
   4K
========================================================= */

@media (min-width: 2560px) {

    .front-contact__box {
        width: 780px;

        padding:
            40px
            70px
            80px;
    }


    .front-contact__circle {
        width: 400px;

        border-width: 38px;
    }


    .front-contact__circle span {
        font-size: 68px;
    }


    .front-contact__title {
        font-size: 44px;
    }


    .front-contact__button {
        width: 500px;
        min-height: 92px;

        font-size: 23px;
    }

}