:root {
  --color-base: #524b40;
  --color-gold: #c6a647;
  --color-blue: #6d98ab;
}

body {
  background: #fff;
  font-family: "Noto Serif JP", serif;
  color: var(--color-base);
  font-size: 0.8333333333vw;
  margin: 0;
  padding: 0;
  letter-spacing: 0.0052083333vw;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-gold);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: opacity 0.5s ease-out;
  overflow: hidden;
}
#loading-screen .loading-line {
  position: absolute;
  top: 50%;
  left: 3%;
  width: 0;
  height: 1px;
  background-color: white;
  animation: loadingGauge 1.5s ease-out forwards;
}

@keyframes loadingGauge {
  0% {
    width: 0;
  }
  100% {
    width: 94%;
  }
}
* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--color-base);
}

img {
  vertical-align: bottom;
  max-width: 100%;
  width: 100%;
}

.container {
  max-width: 85.4166666667vw;
  margin: 0 auto;
  padding: 0 1.0416666667vw;
}
.container__sm {
  max-width: 68.75vw;
  margin: 0 auto;
  padding: 0 1.0416666667vw;
}

.js-svg-draw svg path {
  visibility: hidden;
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
}

.fadeup {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadeup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-lines-slideup span {
  display: block;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.js-lines-slideup.is-active span {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.js-lines-slideup.is-active span:nth-child(1) {
  transition-delay: 0.1s;
}

.js-lines-slideup.is-active span:nth-child(2) {
  transition-delay: 0.5s;
}

.js-lines-slideup.is-active span:nth-child(3) {
  transition-delay: 0.9s;
}

.fadeup-list li {
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fadeup-list li.is-visible {
  opacity: 1;
}

.section__title {
  margin-top: 0;
  text-align: center;
}
.section__title .en {
  font-family: "Oswald", sans-serif;
  font-size: 2.0833333333vw;
  color: var(--color-gold);
  margin-bottom: 1.3020833333vw;
  font-weight: 500;
}
.section__title .ja {
  font-size: 2.0833333333vw;
  font-weight: 500;
}
.section__title.about {
  min-height: initial;
  margin-top: 0;
}
.section__title.about .ja .accent {
  font-size: 3.6458333333vw;
  font-weight: normal;
  font-family: "Baskerville", serif;
}
.section__title.about .ja rt {
  text-align: center;
  font-size: 1.25vw;
}

.header {
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 0;
  left: 0;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.header.header-hidden {
  transform: translateY(-100%);
  opacity: 0;
}
.header__inner {
  display: flex;
  padding: 1.0416666667vw 3.3854166667vw 1.0416666667vw;
  align-items: start;
  justify-content: end;
  background: #fff;
}
.header__logo {
  width: 13.5416666667vw;
  position: absolute;
  padding: 1.6666666667vw;
  left: 0vw;
  padding-left: 3.3854166667vw;
  background: #fff;
}
.header__logo a {
  display: block;
}
.header__logo .logo-pc {
  display: block;
}
.header__logo .logo-sp {
  display: none;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 1.0416666667vw;
  position: relative;
}
.header__nav-list {
  display: flex;
  gap: 1.5625vw;
  padding: 1.0416666667vw;
}
.header__nav-list.scrolled {
  background: #fff;
}
.header__nav-item a {
  font-size: 0.9375vw;
  font-weight: 500;
  position: relative;
}
.header__nav-item a::after {
  content: "";
  width: 0%;
  height: 1px;
  background: var(--color-gold);
  display: block;
  position: absolute;
  bottom: -10px;
  left: 0;
  transition: width 0.4s ease;
}
.header__nav-item a:hover {
  color: var(--color-gold);
}
.header__nav-item a:hover::after {
  width: 100%;
}
.header__contact {
  display: flex;
  gap: 1.0416666667vw;
}
.header__contact-btn a {
  color: #fff;
  padding: 0.78125vw 1.0416666667vw;
  display: block;
  font-size: 0.9375vw;
  font-weight: bold;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.4s ease;
  position: relative;
  display: inline-flex;
  position: relative;
  z-index: 2;
}
.header__contact-btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 101%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
  z-index: -1;
}
.header__contact-btn a:hover {
  color: var(--color-gold);
}
.header__contact-btn a:hover::before {
  transform: scaleX(1);
}
.header__contact-btn.btn-1 {
  color: #fff;
}
.header__contact-btn.btn-1 a {
  background: var(--color-gold);
}
.header__contact-btn.btn-2 {
  background: var(--color-blue);
  color: #fff;
}
.header__contact-btn.btn-2 a:hover {
  color: var(--color-blue);
}
.header__hamburger {
  display: none;
}

.sp {
  display: none !important;
}

.sp-cta {
  display: none;
}

.scroll-cta {
  display: none;
}

.sp-hamburger {
  display: none;
}

.footer {
  background: #f9f8f5;
}
.footer__content {
  padding: 3.6458333333vw 0.5208333333vw 4.1666666667vw;
}
.footer__logo {
  width: 9.375vw;
  margin: 0px auto 4.1666666667vw;
}
.footer__link-list {
  display: flex;
  justify-content: center;
  gap: 5.2083333333vw;
}
.footer__link-sublist {
  display: flex;
  flex-direction: column;
  gap: 1.3020833333vw;
}
.footer__link-sublist a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.footer__credit {
  text-align: center;
  font-size: 0.625vw;
  padding: 1.0416666667vw 0;
  border-top: 1px solid #474747;
}

.fv {
  position: relative;
  padding-top: 0;
}
.fv__content {
  padding-top: 14.5833333333vw;
  padding-left: 7.2916666667vw;
  position: relative;
  z-index: 1;
}
.fv__catch {
  font-size: 1.5625vw;
  font-weight: bold;
  margin-left: -0.78125vw;
  margin-bottom: 1.5625vw;
  color: #fff;
  text-shadow: 0 0.5208333333vw 2.0833333333vw rgba(0, 0, 0, 0.7), 0 0.8333333333vw 3.6458333333vw rgba(0, 0, 0, 0.55), 0 0.1041666667vw 0.5208333333vw rgba(0, 0, 0, 0.25);
}
.fv__title {
  font-size: 3.125vw;
  font-weight: 500;
  margin: 0;
  color: var(--color-gold);
  text-align: center;
  display: inline-block;
  color: #fff;
  text-shadow: 0 0.5208333333vw 2.0833333333vw rgba(0, 0, 0, 0.7), 0 0.8333333333vw 3.6458333333vw rgba(0, 0, 0, 0.55), 0 0.1041666667vw 0.5208333333vw rgba(0, 0, 0, 0.25);
}
.fv__title > span {
  font-size: 5.2083333333vw;
  font-family: "Baskerville", serif;
  font-weight: normal;
}
.fv__title .en {
  font-size: 6.7708333333vw;
  font-family: "Baskerville", serif;
  font-weight: normal;
  display: inline-block;
  margin-bottom: 0;
  color: #fff;
  text-shadow: 0 0.5208333333vw 2.0833333333vw rgba(0, 0, 0, 0.7), 0 0.8333333333vw 3.6458333333vw rgba(0, 0, 0, 0.55), 0 0.1041666667vw 0.5208333333vw rgba(0, 0, 0, 0.25);
}
.fv__title ruby rt {
  text-align: center;
  letter-spacing: 0.03125vw;
  font-size: 2.0833333333vw;
  text-shadow: 0 0.5208333333vw 2.0833333333vw rgba(0, 0, 0, 0.7), 0 0.8333333333vw 3.6458333333vw rgba(0, 0, 0, 0.55), 0 0.1041666667vw 0.5208333333vw rgba(0, 0, 0, 0.25);
}
.fv__text {
  font-size: 1.0416666667vw;
  font-weight: 500;
  margin-bottom: 1.0416666667vw;
  line-height: 1.8;
}
.fv__vertical-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: absolute;
  top: 23.4375vw;
  right: 9.375vw;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-size: 2.0833333333vw;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.1041666667vw;
  line-height: 1.8;
  z-index: 1;
  text-shadow: 0 0.5208333333vw 2.0833333333vw rgba(0, 0, 0, 0.7), 0 0.8333333333vw 3.6458333333vw rgba(0, 0, 0, 0.55), 0 0.1041666667vw 0.5208333333vw rgba(0, 0, 0, 0.25);
}
.fv__img {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  z-index: -1 !important;
  overflow: hidden;
}
.fv__img.vegas-container {
  position: fixed !important;
  height: auto !important;
  aspect-ratio: 16/9;
}
.fv__img .vegas-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fv__img .vegas-slide-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100% auto !important;
  background-position: top center !important;
  background-repeat: no-repeat !important;
}
.fv__cta {
  margin-top: -8.8541666667vw;
  position: relative;
  z-index: 1;
}
.fv__cta-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 4.1666666667vw;
  position: relative;
}
.fv__cta-img {
  width: 26.0416666667vw;
  position: absolute;
  bottom: -3.125vw;
  right: 0vw;
}
.fv__cta-img1 {
  width: 26.0416666667vw;
  opacity: 0;
}
.fv__btn {
  display: flex;
  gap: 1.5625vw;
  padding-bottom: 3.6458333333vw;
}
.fv__btn-item a {
  display: flex;
  align-items: center;
  padding: 0.6770833333vw 1.0416666667vw;
  font-size: 1.1458333333vw;
  font-weight: bold;
  color: #fff;
  border: 1px solid #fff;
  cursor: pointer;
  box-shadow: 0 0.15625vw 0.5208333333vw rgba(0, 0, 0, 0.3);
}
.fv__btn-item a .text {
  display: flex;
  flex-direction: column;
  gap: 0.2604166667vw;
  padding-right: 1.5625vw;
  border-right: 1px solid #fff;
  transition: all 0.4s;
}
.fv__btn-item a .text small {
  font-size: 0.8333333333vw;
  font-weight: 500;
}
.fv__btn-item a .arrow {
  display: block;
  padding-left: 1.0416666667vw;
  width: 2.0833333333vw;
  transition: all 0.4s;
}
.fv__btn-item a .arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.4s;
}
.fv__btn-item.btn-1 a {
  background: var(--color-gold);
  overflow: hidden;
  transition: color 0.4s ease;
  position: relative;
  display: inline-flex;
  position: relative;
  z-index: 2;
}
.fv__btn-item.btn-1 a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
  z-index: -1;
}
.fv__btn-item.btn-1 a:hover .text {
  color: var(--color-gold);
  border-right: 1px solid var(--color-gold);
}
.fv__btn-item.btn-1 a:hover .arrow svg rect,
.fv__btn-item.btn-1 a:hover .arrow svg path {
  stroke: var(--color-gold);
}
.fv__btn-item.btn-1 a:hover .arrow svg rect {
  fill: var(--color-gold);
}
.fv__btn-item.btn-1 a:hover::before {
  transform: scaleX(1);
}
.fv__btn-item.btn-2 a {
  background: var(--color-blue);
  overflow: hidden;
  transition: color 0.4s ease;
  position: relative;
  display: inline-flex;
  position: relative;
  z-index: 2;
}
.fv__btn-item.btn-2 a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
  z-index: -1;
}
.fv__btn-item.btn-2 a:hover .text {
  color: var(--color-blue);
  border-right: 1px solid var(--color-blue);
}
.fv__btn-item.btn-2 a:hover .arrow svg rect,
.fv__btn-item.btn-2 a:hover .arrow svg path {
  stroke: var(--color-blue);
}
.fv__btn-item.btn-2 a:hover .arrow svg rect {
  fill: var(--color-blue);
}
.fv__btn-item.btn-2 a:hover::before {
  transform: scaleX(1);
}

.present {
  padding: 7.8125vw 0;
  background-color: #fff;
}
.present__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  padding: 1.0416666667vw 1.5625vw;
  font-size: 1.5625vw;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
  width: 100%;
  border-radius: 5.2083333333vw;
  box-shadow: 0 0.5208333333vw 1.0416666667vw rgba(0, 0, 0, 0.2);
}
.present__button:hover {
  transform: translateY(-2px);
}
.present__button-content {
  display: flex;
  align-items: center;
  gap: 1.5625vw;
  flex: 1;
  justify-content: center;
}
.present__button-content::before {
  content: "Present";
  font-size: 4.1666666667vw;
  font-weight: 700;
  font-family: absolute-beauty, sans-serif;
  color: var(--color-gold);
  letter-spacing: 0.1041666667vw;
  white-space: nowrap;
}
.present__button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.1666666667vw;
  height: 4.1666666667vw;
  background: var(--color-gold);
  color: #fff;
  border-radius: 50%;
  font-size: 2.0833333333vw;
  font-weight: bold;
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.present__button-text {
  letter-spacing: 0.0520833333vw;
  white-space: nowrap;
}

.present-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.present-popup.is-active {
  display: block;
}
.present-popup.is-active .present-popup__overlay {
  animation: fadeIn 0.3s ease-out forwards;
}
.present-popup.is-active .present-popup__content {
  animation: popupShow 0.4s ease-out forwards;
}
.present-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  opacity: 0;
}
.present-popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: auto;
  max-height: 80vh;
  background: #fff;
  opacity: 0;
}
.present-popup__content img {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
}
.present-popup__close {
  position: absolute;
  top: 0.5208333333vw;
  right: 0.5208333333vw;
  width: 2.6041666667vw;
  height: 2.6041666667vw;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.5625vw;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.present-popup__close:hover {
  background: rgba(0, 0, 0, 0.7);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes popupShow {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes marqueeLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marqueeRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.about {
  position: relative;
  background-color: #fff;
}
.about__bg-1 {
  position: absolute;
  top: 8.8541666667vw;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
.about__bg-2 {
  position: absolute;
  bottom: 5.2083333333vw;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
.about__deco-1 {
  width: 27.5vw;
  position: absolute;
  top: 0vw;
  left: 0;
  z-index: 1;
}
.about__deco-2 {
  width: 16.1458333333vw;
  position: absolute;
  bottom: 0px;
  right: 0;
}
.about__deco-3 {
  width: 46.6145833333vw;
  position: absolute;
  top: 9.375vw;
  right: 3.3854166667vw;
}
.about__text {
  margin-top: 4.1666666667vw;
  text-align: center;
  font-size: 1.0416666667vw;
  line-height: 2.4;
  display: flex;
  flex-direction: column;
  gap: 3.125vw;
  padding-bottom: 6.25vw;
}
.about__text p {
  margin: 0;
}
.about__content-1 .container {
  position: relative;
}
.about__content-2 {
  position: relative;
  padding-top: 0.5208333333vw;
  padding-bottom: 7.8125vw;
}
.about__content-2 .about__img {
  width: 19.5833333333vw;
  margin-bottom: 5.2083333333vw;
  position: relative;
  z-index: 2;
}
.about__content-2 .about__img img {
  width: 100%;
  height: auto;
  display: block;
}
.about__content-2 .about__img video {
  width: 100%;
  aspect-ratio: 259/355;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.about__content-2 .about__img-list {
  display: flex;
  gap: 2.6041666667vw;
  position: relative;
  z-index: 2;
}
.about__content-2 .about__img-list > div {
  flex: 1;
}
.about__content-2 h3 {
  font-size: 2.0833333333vw;
  font-weight: 400;
  margin-bottom: 4.1666666667vw;
  line-height: 1.8;
}
.about__content-2 p {
  font-size: 1.0416666667vw;
  line-height: 1.8;
  margin-bottom: 4.1666666667vw;
}

.floor-plan {
  background: #f9f8f5;
  padding: 5.2083333333vw 0;
  text-align: center;
  overflow: visible;
}
.floor-plan__title {
  margin-bottom: 2.0833333333vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.floor-plan__title span {
  font-weight: normal;
  font-size: 1.6666666667vw;
  margin: 0 0.4166666667vw;
}
.floor-plan p {
  font-size: 0.9375vw;
  margin: 0 0 4.6875vw;
}
.floor-plan p .pc-only {
  display: inline-block;
}
.floor-plan__imgs {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  position: relative;
  overflow: visible;
}
.floor-plan__inner {
  position: relative;
  padding: 2.6041666667vw 2.0833333333vw;
  flex: 1;
}
.floor-plan__number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 3.125vw;
  height: 3.125vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-size: 0.9375vw;
}
.floor-plan__marker {
  position: absolute;
  width: 1.25vw;
  height: 1.25vw;
  background: var(--color-gold);
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
}
.floor-plan__marker.is-active::after {
  animation: none;
  opacity: 0;
}
.floor-plan__marker.is-active .floor-plan__marker-text {
  opacity: 0;
}
.floor-plan__marker-text {
  position: absolute;
  top: 50%;
  left: calc(100% + 0.5208333333vw);
  transform: translateY(-50%);
  white-space: nowrap;
  font-size: 1.0416666667vw;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.2604166667vw 0.5208333333vw;
}
.floor-plan__marker::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.0833333333vw;
  height: 2.0833333333vw;
  background: rgba(198, 166, 71, 0.3);
  border-radius: 50%;
  z-index: -1;
}
.floor-plan__marker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.0833333333vw;
  height: 2.0833333333vw;
  background: rgba(198, 166, 71, 0.4);
  border-radius: 50%;
  animation: markerPulse 2s ease-out infinite;
}
.floor-plan__marker--1 {
  right: 11.9791666667vw;
  top: 20.8333333333vw;
  transform: translateY(-50%);
  z-index: 10;
}
.floor-plan__marker--2 {
  left: 16.6666666667vw;
  bottom: 6.7708333333vw;
  transform: translateX(-50%);
  z-index: 12;
}
.floor-plan__marker--3 {
  right: 13.5416666667vw;
  top: 19.7916666667vw;
  transform: translateY(-50%);
  z-index: 12;
}
.floor-plan__marker--4 {
  left: 13.0208333333vw;
  top: 11.9791666667vw;
  transform: translateX(-50%);
  z-index: 12;
}
@keyframes markerPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
@keyframes lineExpandH {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes lineExpandV {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInPoint {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.floor-plan__point {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.78125vw;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.floor-plan__point.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.floor-plan__point.is-active .floor-plan__point-lines .floor-plan__point-line--h {
  animation: lineExpandH 0.4s ease 0.3s forwards;
}
.floor-plan__point.is-active .floor-plan__point-top,
.floor-plan__point.is-active .floor-plan__point-num,
.floor-plan__point.is-active .floor-plan__point-text {
  animation: fadeInPoint 0.4s ease 0.6s forwards;
}
.floor-plan__point-top {
  opacity: 0;
}
.floor-plan__point-num {
  width: 2.6041666667vw;
  height: auto;
  opacity: 0;
}
.floor-plan__point-text {
  display: flex;
  flex-direction: column;
  font-size: 1.25vw;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.6;
  white-space: nowrap;
  opacity: 0;
}
.floor-plan__point-line {
  background: var(--color-text);
  flex-shrink: 0;
}
.floor-plan__point-line--h {
  transform: scaleX(0);
  transform-origin: right center;
}
.floor-plan__point-line--v {
  opacity: 0;
}
.floor-plan__point--1 {
  left: -13.0208333333vw;
  top: 10%;
  flex-direction: column;
  align-items: flex-start;
}
.floor-plan__point--1 .floor-plan__point-top {
  display: flex;
  align-items: center;
  gap: 0.78125vw;
}
.floor-plan__point--1 .floor-plan__point-text {
  text-align: left;
}
.floor-plan__point--1 .floor-plan__point-lines {
  position: relative;
  width: 15.625vw;
  height: 7.8125vw;
  margin-top: 0.2604166667vw;
}
.floor-plan__point--1 .floor-plan__point-line--h {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #524b40;
}
.floor-plan__point--1 .floor-plan__point-line--v {
  position: absolute;
  top: 0px;
  right: 0;
  width: 20.8333333333vw;
  height: 1px;
  background: #524b40;
  transform-origin: right center;
  transform: rotate(-150deg);
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  opacity: 1;
}
.floor-plan__point--1.is-active .floor-plan__point-line--v {
  animation: lineExpandFromEnd 0.4s ease forwards;
}
@keyframes lineExpandFromEnd {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
.floor-plan__point--2 {
  right: -10.4166666667vw;
  bottom: -5.2083333333vw;
  flex-direction: column;
  align-items: flex-end;
}
.floor-plan__point--2 .floor-plan__point-top {
  display: flex;
  align-items: center;
  gap: 0.78125vw;
}
.floor-plan__point--2 .floor-plan__point-text {
  text-align: right;
}
.floor-plan__point--2 .floor-plan__point-lines {
  position: relative;
  width: 15.625vw;
  height: 7.8125vw;
  margin-top: 0.2604166667vw;
}
.floor-plan__point--2 .floor-plan__point-line--h {
  position: absolute;
  top: -1px;
  right: 0;
  width: 100%;
  height: 1px;
  background: #524b40;
  transform-origin: left center;
}
.floor-plan__point--2 .floor-plan__point-line--v {
  position: absolute;
  top: 0;
  left: 0;
  width: 12.5vw;
  height: 1px;
  background: #524b40;
  transform-origin: 0 0;
  transform: rotate(-157deg);
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
  opacity: 1;
}
.floor-plan__point--2.is-active .floor-plan__point-line--v {
  animation: lineExpandFromStart 0.4s ease forwards;
}
.floor-plan__point--3 {
  right: -14.5833333333vw;
  top: 14.5833333333vw;
  transform: translateY(-50%);
  flex-direction: column;
  align-items: flex-end;
}
.floor-plan__point--3 .floor-plan__point-top {
  display: flex;
  align-items: center;
  gap: 0.78125vw;
}
.floor-plan__point--3 .floor-plan__point-text {
  text-align: right;
}
.floor-plan__point--3 .floor-plan__point-lines {
  position: relative;
  width: 14.5833333333vw;
  height: 6.25vw;
  margin-top: 0.2604166667vw;
}
.floor-plan__point--3 .floor-plan__point-line--h {
  position: absolute;
  top: -1px;
  right: 0;
  width: 100%;
  height: 1px;
  background: #524b40;
  transform-origin: left center;
}
.floor-plan__point--3 .floor-plan__point-line--v {
  position: absolute;
  top: 0;
  left: 0;
  width: 15.1041666667vw;
  height: 1px;
  background: #524b40;
  transform-origin: 0 0;
  transform: rotate(-203deg);
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
  opacity: 1;
}
.floor-plan__point--3.is-active .floor-plan__point-line--v {
  animation: lineExpandFromStart 0.4s ease forwards;
}
.floor-plan__point--4 {
  right: -14.5833333333vw;
  top: -1.0416666667vw;
  flex-direction: column;
  align-items: flex-end;
}
.floor-plan__point--4 .floor-plan__point-top {
  display: flex;
  align-items: center;
  gap: 0.78125vw;
}
.floor-plan__point--4 .floor-plan__point-text {
  text-align: right;
}
.floor-plan__point--4 .floor-plan__point-lines {
  position: relative;
  width: 13.0208333333vw;
  height: 5.2083333333vw;
  margin-top: 0.2604166667vw;
}
.floor-plan__point--4 .floor-plan__point-line--h {
  position: absolute;
  top: -1px;
  right: 0;
  width: 100%;
  height: 1px;
  background: #524b40;
  transform-origin: left center;
}
.floor-plan__point--4 .floor-plan__point-line--v {
  position: absolute;
  top: 0;
  left: 0;
  width: 23.4375vw;
  height: 1px;
  background: #524b40;
  transform-origin: 0 0;
  transform: rotate(158deg);
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
  opacity: 1;
}
.floor-plan__point--4.is-active .floor-plan__point-line--v {
  animation: lineExpandFromStart 0.4s ease forwards;
}
@keyframes lineExpandFromStart {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}

.point {
  padding: 0;
  background-color: #fff;
}
.point .section__title .ja {
  font-size: 1.6666666667vw;
}
.point .section__title .ja .num {
  font-size: 3.125vw;
  color: var(--color-gold);
  margin-right: 0.3125vw;
}
.point__list {
  display: flex;
  flex-wrap: wrap;
  margin: 4.1666666667vw 0 0;
}
.point__item {
  width: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 28.6458333333vw;
  position: relative;
}
.point__item.point__item-1 {
  background-image: url("/assets/images/hygge/bg-point1.webp");
}
.point__item.point__item-2 {
  background-image: url("/assets/images/hygge/bg-point2.webp");
}
.point__item.point__item-3 {
  background-image: url("/assets/images/hygge/bg-point3.webp");
}
.point__item.point__item-4 {
  background-image: url("/assets/images/hygge/bg-point4.webp");
}
.point__item-text {
  background: #fff;
  position: absolute;
  bottom: 1.0416666667vw;
  right: 1.0416666667vw;
  padding: 2.6041666667vw;
  min-width: 18.8541666667vw;
}
.point__item-text h3 {
  font-size: 1.3541666667vw;
  margin: 0 0 1.3020833333vw;
  font-weight: 500;
}
.point__item-text p {
  font-size: 0.8333333333vw;
  margin: 0;
}
.point__item.point__item-1 .point__item-text::after {
  content: "";
  position: absolute;
  bottom: 0.78125vw;
  right: 0.78125vw;
  width: 4.1666666667vw;
  height: 4.1666666667vw;
  background-image: url("/assets/images/hygge/point1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8;
}
.point__item.point__item-2 .point__item-text::after {
  content: "";
  position: absolute;
  bottom: 0.78125vw;
  right: 0.78125vw;
  width: 4.1666666667vw;
  height: 4.1666666667vw;
  background-image: url("/assets/images/hygge/point2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8;
}
.point__item.point__item-3 .point__item-text::after {
  content: "";
  position: absolute;
  bottom: 0.78125vw;
  right: 0.78125vw;
  width: 4.1666666667vw;
  height: 4.1666666667vw;
  background-image: url("/assets/images/hygge/point3.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8;
}
.point__item.point__item-4 .point__item-text::after {
  content: "";
  position: absolute;
  bottom: 0.78125vw;
  right: 0.78125vw;
  width: 4.1666666667vw;
  height: 4.1666666667vw;
  background-image: url("/assets/images/hygge/point4.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8;
}
.point__feature {
  padding: 7.8125vw 0;
}
.point__feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25vw;
}
.point__feature-item {
  width: 50%;
  flex: 1;
}
.point__feature-img {
  margin-bottom: 1.3020833333vw;
}
.point__feature-text h3 {
  font-size: 1.1458333333vw;
  margin: 0 0 0.5208333333vw;
  font-weight: 500;
  min-height: 3.6458333333vw;
}
.point__feature-text p {
  font-size: 0.8333333333vw;
  margin: 0;
  line-height: 1.8;
}

.gallery {
  background: transparent;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.gallery .section__title {
  text-align: left;
  margin-bottom: 3.0208333333vw;
}
.gallery .section__title .ja {
  font-size: 1.6666666667vw;
}
.gallery__marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 7.8125vw;
}
.gallery__marquee-row {
  overflow: hidden;
  margin-bottom: 0.2083333333vw;
}
.gallery__marquee-row--top .gallery__marquee-track {
  animation: marqueeLeft 60s linear infinite;
}
.gallery__marquee-row--top .gallery__marquee-item {
  width: 27.34375vw;
}
.gallery__marquee-row--top .gallery__marquee-item img {
  height: 31.25vw;
}
.gallery__marquee-row--bottom .gallery__marquee-track {
  animation: marqueeRight 60s linear infinite;
}
.gallery__marquee-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.2083333333vw;
  width: -moz-fit-content;
  width: fit-content;
}
.gallery__marquee-item {
  flex: 0 0 auto;
  width: 26.0416666667vw;
}
.gallery__marquee-item img {
  width: 100%;
  height: 18.2291666667vw;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.gallery__content {
  position: relative;
}
.gallery__deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 33.0729166667vw;
}
.gallery__deco-inner {
  position: relative;
}
.gallery__deco-img1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 33.0729166667vw;
}
.gallery__deco-img2 {
  position: absolute;
  top: 2.6041666667vw;
  right: calc(100% + 5.2083333333vw);
  width: 15.625vw;
}
.gallery__deco-img3 {
  position: absolute;
  top: 15.625vw;
  right: calc(100% + 1.5625vw);
  width: 13.0208333333vw;
}
.gallery__content {
  padding-top: 6.25vw;
  padding-bottom: 7.8125vw;
  margin-bottom: 5.2083333333vw;
}
.gallery__content h4 {
  font-size: 1.3541666667vw;
  font-weight: normal;
  margin-bottom: 2.0833333333vw;
  line-height: 1.8;
}
.gallery__content p {
  font-size: 1.0416666667vw;
  line-height: 1.8;
}
.gallery__title {
  font-size: 2.0833333333vw;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 4.1666666667vw;
  line-height: 1.8;
}
.gallery__title .en {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 2.0833333333vw;
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: 1.3020833333vw;
}

.video-bg-wrapper {
  position: relative;
  background: #fff;
}

.shared-video-bg {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  margin-bottom: -100vh;
}
.shared-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.4;
}

.parallax {
  position: relative;
  z-index: 1;
  height: 46.875vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.parallax--gallery {
  background-image: url("/assets/images/hygge/parallax2.png");
}

.power {
  padding: 5.2083333333vw 0;
  background: transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.power .container__sm {
  position: relative;
  z-index: 1;
}
.power .section__title {
  text-align: left;
  margin-bottom: 4.1666666667vw;
}
.power .section__title .ja {
  font-size: 1.6666666667vw;
  line-height: 1.8;
}
.power .container__sm {
  position: relative;
  z-index: 1;
}
.power__main-list {
  display: flex;
  gap: 1.5625vw;
  justify-content: space-between;
  margin-bottom: 5.2083333333vw;
}
.power__main-item {
  flex: 1;
  width: 33.3333%;
}
.power__main-img {
  margin-bottom: 1.5625vw;
}
.power__main-text h3 {
  font-size: 1.0416666667vw;
  color: var(--color-gold);
  font-weight: normal;
  margin-bottom: 0.78125vw;
}
.power__sub-list {
  display: flex;
  gap: 1.5625vw;
}
.power__sub-item {
  width: 25%;
  text-align: center;
}
.power__sub-item:last-child .power__sub-img::after {
  display: none;
}
.power__sub-img {
  position: relative;
}
.power__sub-img::after {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: -0.78125vw;
  border-right: 1px dotted #524b40;
}
.power__sub-img img {
  width: 100%;
}
.power__sub-text h3 {
  font-weight: normal;
  font-size: 0.8333333333vw;
}
.power__bg {
  position: absolute;
  bottom: 15.1041666667vw;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.power__bg svg {
  max-width: 100%;
}

.comfortable {
  padding: 7.8125vw 0;
  background: transparent;
  position: relative;
  z-index: 1;
}
.comfortable .section__title {
  font-weight: 500;
}
.comfortable .section__title small {
  display: block;
  font-size: 1.6666666667vw;
}
.comfortable .section__title span {
  font-size: 3.6458333333vw;
  letter-spacing: 0.0052083333vw;
}
.comfortable .section__title span .small {
  font-size: 2.6041666667vw;
}
.comfortable__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 2.6041666667vw;
  -moz-column-gap: 2.6041666667vw;
       column-gap: 2.6041666667vw;
  margin-top: 4.1666666667vw;
}
.comfortable__list.is-expanded .comfortable__item--hidden {
  display: block;
  animation: fadeInDown 0.5s ease forwards;
}
.comfortable__item {
  width: calc((100% - 5.2083333333vw) / 3);
  text-align: center;
  position: relative;
}
.comfortable__item--hidden {
  display: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.comfortable__item::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  bottom: -1.3020833333vw;
  left: 0;
  border-bottom: 1px dotted #524b40;
}
.comfortable__item::after {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: -1.3020833333vw;
  border-right: 1px dotted #524b40;
}
.comfortable__item:nth-last-child(-n+3)::before {
  display: none;
}
.comfortable__item:nth-child(3n)::after {
  display: none;
}
.comfortable__item-img {
  width: 100%;
  margin-bottom: 1.3020833333vw;
}
.comfortable__item-text h3 {
  font-size: 1.3541666667vw;
  font-weight: 500;
}
.comfortable__item-text h3 small {
  font-size: 0.8333333333vw;
  display: block;
  margin-bottom: 0.2604166667vw;
}
.comfortable__toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4.1666666667vw auto 0;
  padding: 1.0416666667vw 4.1666666667vw 1.0416666667vw 3.125vw;
  background: var(--color-gold);
  border: none;
  border-radius: 5.2083333333vw;
  color: #fff;
  font-size: 1.0416666667vw;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Noto Serif JP", serif;
  box-shadow: 0 0.5208333333vw 1.0416666667vw rgba(0, 0, 0, 0.2);
}
.comfortable__toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.78125vw 1.5625vw rgba(0, 0, 0, 0.25);
}
.comfortable__toggle-text {
  text-align: center;
}
.comfortable__toggle-icon {
  position: absolute;
  right: 1.0416666667vw;
  top: 50%;
  transform: translateY(-50%);
  width: 2.0833333333vw;
  height: 2.0833333333vw;
  background: #fff;
  border-radius: 50%;
}
.comfortable__toggle-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7291666667vw;
  height: 2px;
  background: var(--color-gold);
  transform: translate(-50%, -50%);
  transition: background 0.3s ease;
}
.comfortable__toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 0.7291666667vw;
  background: var(--color-gold);
  transform: translate(-50%, -50%);
  transition: background 0.3s ease, opacity 0.3s ease;
}
.comfortable__toggle.is-expanded .comfortable__toggle-icon::after {
  opacity: 0;
}

.cta {
  overflow: hidden;
  padding-top: 4.6875vw;
}
.cta .section__title {
  text-align: left;
  margin: 0;
  margin-bottom: 2.0833333333vw;
}
.cta .section__title .en {
  color: #fff;
  font-size: 0.9375vw;
}
.cta .section__title .ja {
  color: #fff;
  font-size: 1.6666666667vw;
}
.cta__text p {
  font-size: 1.0416666667vw;
  color: #fff;
  margin: 0;
  line-height: 2;
}
.cta__wrap {
  display: flex;
  justify-content: space-between;
  align-items: end;
  background: var(--color-gold);
  position: relative;
  padding: 3.125vw 0 2.6041666667vw 5.2083333333vw;
  border-top-left-radius: 5.2083333333vw;
}
.cta__wrap::after {
  content: "";
  width: 50%;
  height: 100%;
  left: 100%;
  position: absolute;
  bottom: 0;
  background: var(--color-gold);
}
.cta__btns {
  display: flex;
  gap: 1.5625vw;
}
.cta__btns-img {
  position: absolute;
  top: -4.6875vw;
  right: 0;
  width: 26.0416666667vw;
}
.cta__btns-img-inner {
  position: relative;
}
.cta__btns-img-inner .img1 {
  width: 20.8333333333vw;
  position: absolute;
  top: 0;
  right: 5.2083333333vw;
}
.cta__btns-img-inner .img2 {
  width: 10.4166666667vw;
  position: absolute;
  top: 5.2083333333vw;
  right: 0;
}
.cta__btns-item a {
  display: flex;
  align-items: center;
  padding: 0.6770833333vw 1.0416666667vw;
  font-size: 1.1458333333vw;
  font-weight: bold;
  color: #fff;
  border: 1px solid #fff;
  cursor: pointer;
  box-shadow: 0 0.15625vw 0.5208333333vw rgba(0, 0, 0, 0.3);
}
.cta__btns-item a .text {
  display: flex;
  flex-direction: column;
  gap: 0.2604166667vw;
  padding-right: 1.5625vw;
  border-right: 1px solid #fff;
}
.cta__btns-item a .text small {
  font-size: 0.8333333333vw;
  font-weight: 500;
}
.cta__btns-item a .arrow {
  display: block;
  padding-left: 1.0416666667vw;
  width: 2.0833333333vw;
}
.cta__btns-item a .arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}
.cta__btns-item.btn-1 a {
  background: #fff;
  color: var(--color-gold);
  overflow: hidden;
  transition: color 0.4s ease;
  position: relative;
  display: inline-flex;
  position: relative;
  z-index: 2;
}
.cta__btns-item.btn-1 a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
  z-index: -1;
}
.cta__btns-item.btn-1 a:hover .text {
  color: #fff;
  border-right: 1px solid #fff;
}
.cta__btns-item.btn-1 a:hover .arrow svg rect,
.cta__btns-item.btn-1 a:hover .arrow svg path {
  stroke: #fff;
}
.cta__btns-item.btn-1 a:hover .arrow svg rect {
  fill: #fff;
}
.cta__btns-item.btn-1 a:hover::before {
  transform: scaleX(1);
}
.cta__btns-item.btn-1 a .text {
  border-right: 1px solid var(--color-gold);
}
.cta__btns-item.btn-1 a .arrow svg rect,
.cta__btns-item.btn-1 a .arrow svg path {
  stroke: var(--color-gold);
}
.cta__btns-item.btn-1 a .arrow svg rect {
  fill: var(--color-gold);
}
.cta__btns-item.btn-2 a {
  background: #474747;
  overflow: hidden;
  transition: color 0.4s ease;
  position: relative;
  display: inline-flex;
  position: relative;
  z-index: 2;
}
.cta__btns-item.btn-2 a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
  z-index: -1;
}
.cta__btns-item.btn-2 a:hover .text {
  color: #fff;
  border-right: 1px solid #fff;
}
.cta__btns-item.btn-2 a:hover .arrow svg rect,
.cta__btns-item.btn-2 a:hover .arrow svg path {
  stroke: #fff;
}
.cta__btns-item.btn-2 a:hover .arrow svg rect {
  fill: #fff;
}
.cta__btns-item.btn-2 a:hover::before {
  transform: scaleX(1);
}

.usp {
  overflow-x: hidden;
}
.usp__pallalax {
  position: relative;
  height: 52.0833333333vw;
  width: 100%;
  clip: rect(0, auto, auto, 0);
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}
.usp__pallalax video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.usp__logo-marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  transform: translateY(-100%);
  z-index: 10;
}
.usp__logo-track {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  animation: logoMarquee 150s linear infinite;
}
.usp__logo-track img {
  flex: 0 0 auto;
  width: 145.8333333333vw;
  height: auto;
  display: block;
}
@keyframes logoMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.usp__intro-box {
  background: #eff9fa;
  padding: 7.2916666667vw 2.0833333333vw;
  text-align: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.usp__staff-free {
  text-align: center;
}
.usp__staff-free-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.78125vw;
  font-size: 1.4583333333vw;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 1.5625vw;
}
.usp__staff-free-title img {
  height: 2.0833333333vw;
  width: auto;
}
.usp__staff-free-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.usp__staff-free-list li {
  display: flex;
  align-items: center;
  gap: 0.5208333333vw;
  font-size: 2.0833333333vw;
  color: var(--color-text);
}
.usp__staff-free-list li img {
  width: 2.5vw;
  height: 2.5vw;
}
.usp__staff-free-list li span {
  position: relative;
  display: inline-block;
  padding-bottom: 0.2604166667vw;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
}
.usp__staff-free-list li span::after {
  content: "";
  position: absolute;
  bottom: -0.4166666667vw;
  left: 0;
  width: 100%;
  height: 6px;
  background: #18a7bd;
}
.usp__staff-free-list li.item-1 span::after {
  width: 80%;
}
.usp__staff-free-list li.item-2 span::after {
  width: 80%;
}
.usp__staff-free-list li.item-3 span::after {
  width: 70%;
}
.usp__intro {
  position: relative;
  background: #eff9fa;
  padding: 0;
  text-align: center;
}
.usp__intro-title {
  margin-top: 0;
  margin-bottom: 3.125vw;
  font-weight: 700;
  position: relative;
  display: inline-block;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.usp__intro-title::before {
  content: "";
  height: 11.6666666667vw;
  width: 2px;
  background: #524b40;
  position: absolute;
  bottom: 0.7291666667vw;
  left: -4.1666666667vw;
  transform: rotate(-30deg);
  transform-origin: bottom left;
}
.usp__intro-title::after {
  content: "";
  height: 11.6666666667vw;
  width: 2px;
  background: #524b40;
  position: absolute;
  bottom: 0.7291666667vw;
  right: -4.1666666667vw;
  transform: rotate(30deg);
  transform-origin: bottom left;
}
.usp__intro-title-sub {
  font-size: 1.6666666667vw;
  display: block;
  margin-bottom: 0.7291666667vw;
}
.usp__intro-title-main {
  font-size: 3.6458333333vw;
  color: #18a7bd;
}
.usp__intro-title-main .accent {
  font-size: 5.2083333333vw;
  color: #18a7bd;
}
.usp__intro p {
  font-size: 2.0833333333vw;
  font-weight: 400;
  margin: 0;
  margin-bottom: 1.0416666667vw;
  gap: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.usp__intro-text {
  margin: 4.1666666667vw 0 !important;
}
.usp__intro-list {
  position: relative;
}
.usp__intro-item {
  width: 14.375vw;
  height: 9.375vw;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3541666667vw;
  font-weight: 500;
  color: #73b8bf;
  box-shadow: 0 0.15625vw 0.5208333333vw rgba(0, 0, 0, 0.1);
  position: absolute;
}
.usp__intro-item::before {
  content: "";
  width: 1.5625vw;
  height: 1.0416666667vw;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0.15625vw 0.5208333333vw rgba(0, 0, 0, 0.1);
  position: absolute;
  top: calc(100% + 0.5208333333vw);
}
.usp__intro-item::after {
  content: "";
  width: 1.0416666667vw;
  height: 0.6770833333vw;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0.15625vw 0.5208333333vw rgba(0, 0, 0, 0.1);
  position: absolute;
  top: calc(100% + 1.8229166667vw);
}
.usp__intro-item.item-1 {
  left: 0;
  top: 4.6875vw;
}
.usp__intro-item.item-1::before {
  right: 48%;
}
.usp__intro-item.item-1::after {
  left: 50%;
}
.usp__intro-item.item-2 {
  right: calc(50% + 0.8333333333vw);
  top: 0px;
}
.usp__intro-item.item-2::before {
  right: 48%;
}
.usp__intro-item.item-2::after {
  left: 50%;
}
.usp__intro-item.item-3 {
  left: calc(50% + 0.8333333333vw);
  top: 0px;
}
.usp__intro-item.item-3::before {
  left: 48%;
}
.usp__intro-item.item-3::after {
  right: 50%;
}
.usp__intro-item.item-4 {
  right: 0;
  top: 4.6875vw;
}
.usp__intro-item.item-4::before {
  left: 48%;
}
.usp__intro-item.item-4::after {
  right: 50%;
}
.usp__intro-img {
  padding-top: 10.4166666667vw;
  width: 16.1458333333vw;
  margin: auto;
}
.usp__features {
  background: #eff9fa;
}
.usp__features-inner {
  padding: 0 3.3854166667vw;
}
.usp__features .features__title {
  margin: 0;
  background-image: url("/assets/images/hygge/bg-usp-features.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  height: 20.5729166667vw;
  font-weight: normal;
  text-align: center;
  color: #fff;
  padding-top: 2.6041666667vw;
}
.usp__features .features__title small {
  font-size: 1.6666666667vw;
  display: block;
  margin-bottom: 1.0416666667vw;
}
.usp__features .features__title span {
  font-size: 2.6041666667vw;
}
.usp__features .features__title span .accent {
  font-size: 3.6458333333vw;
}
.usp__features .features__title-logo {
  height: 3.6458333333vw;
  width: auto;
  vertical-align: bottom;
  margin-right: 0.5208333333vw;
}
.usp__features .features__wrap {
  margin-top: -2.0833333333vw;
}
.usp__features .features__inner {
  background: #fff;
  padding: 1.5625vw 2.6041666667vw;
  display: flex;
  gap: 5.2083333333vw;
  align-items: center;
  box-shadow: 0 0.15625vw 0.5208333333vw rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}
.usp__features .features__inner::after {
  content: "";
  position: absolute;
  top: -4.1666666667vw;
  right: 0;
  width: 14.5833333333vw;
  height: 4.1666666667vw;
  background: url("/assets/images/hygge/logo_spacecore.png") no-repeat center;
  background-size: contain;
}
.usp__features .features__badge {
  width: 11.9791666667vw;
  height: 11.9791666667vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #73b8bf;
  border-radius: 50%;
  font-size: 1.6666666667vw;
  font-weight: 500;
  color: #fff;
  flex-direction: column;
}
.usp__features .features__badge span {
  font-size: 2.0833333333vw;
  font-weight: bold;
}
.usp__features .features__list {
  flex: 1;
}
.usp__features .features__item {
  display: flex;
  align-items: center;
  gap: 0.5208333333vw;
  font-size: 1.25vw;
  padding: 0.625vw 0 0;
}
.usp__features .features__item:not(:last-child) {
  border-bottom: 1px solid #524b40;
  padding-bottom: 0.625vw;
}
.usp__features .features__item:not(:first-child) {
  padding-top: 0.625vw;
}
.usp__features .features__item-icon {
  width: 1.5625vw;
  height: 1.5625vw;
}
.usp__features .features__item-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.usp__calendar {
  margin-top: -6.25vw;
  padding: 0 3.3854166667vw 5.2083333333vw;
  background: #eff9fa;
}
.usp__calendar-inner {
  background: #fff;
  padding: 10.4166666667vw 2.0833333333vw 3.125vw;
}
.usp__calendar-text {
  font-size: 1.25vw;
  margin-bottom: 1.0416666667vw;
  text-align: center;
}
.usp__calendar .section__title .en {
  color: #73b8bf;
}
.usp__calendar .section__title .ja {
  font-size: 1.6666666667vw;
}
.usp__calendar-embed iframe {
  display: block;
  border: none;
  border-radius: 0.5208333333vw;
  height: 740px;
}
.usp__flow {
  padding: 0 3.3854166667vw;
  padding-bottom: 9.375vw;
  position: relative;
  background: #eff9fa;
}
.usp__flow .section__title {
  margin-top: 0;
  margin-bottom: 2.0833333333vw;
}
.usp__flow .section__title .ja {
  font-size: 1.6666666667vw;
}
.usp__flow::before {
  content: "";
  width: 100%;
  height: 62.5vw;
  background: #fffae9;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.usp__flow-inner {
  background: #fff;
  padding-top: 5.2083333333vw;
  padding-bottom: 5.2083333333vw;
  margin-top: -7.2916666667vw;
}
.usp__flow .section__title .en {
  color: #73b8bf;
}
.usp .flow__need {
  border: 1px solid #73b8bf;
  padding: 1.3020833333vw;
  text-align: center;
  position: relative;
  margin-bottom: 5.7291666667vw;
}
.usp .flow__need-text .heading {
  display: flex;
  align-items: center;
  gap: 0.5208333333vw;
  font-size: 1.25vw;
  justify-content: center;
}
.usp .flow__need-text .heading .label {
  background: #73b8bf;
  color: #fff;
  padding: 0.2604166667vw 0.5208333333vw;
  font-size: 1.0416666667vw;
}
.usp .flow__need-text p {
  font-size: 0.9375vw;
  margin-bottom: 0;
}
.usp .flow__need-img {
  width: 10.4166666667vw;
  height: 10.4166666667vw;
  position: absolute;
  top: 50%;
  right: 7.8125vw;
  transform: translateY(-50%);
}
.usp .flow__list {
  display: flex;
  gap: 1.25vw;
  margin-bottom: 2.6041666667vw;
}
.usp .flow__item {
  position: relative;
  text-align: center;
  padding: 2.6041666667vw 1.0416666667vw 1.5625vw;
  border: 1px solid #524b40;
  border-radius: 0.5208333333vw;
  width: 25%;
  flex: 1;
}
.usp .flow__item h4 {
  font-size: 1.25vw;
  font-weight: 500;
  height: 5.2083333333vw;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.usp .flow__item p {
  text-align: left;
}
.usp .flow__item .arrow {
  position: absolute;
  left: calc(100% + 0.625vw);
  top: 50%;
  transform: translate(-50%, -50%);
  height: 5.2083333333vw;
  width: 2.2916666667vw;
  z-index: 1;
}
.usp .flow__item:last-child .arrow {
  display: none;
}
.usp .flow__step {
  position: absolute;
  top: 0;
  left: 50%;
  width: 5.2083333333vw;
  height: 5.2083333333vw;
  background: #73b8bf;
  color: #fff;
  font-size: 0.8333333333vw;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  flex-direction: column;
}
.usp .flow__step .num {
  display: block;
  font-size: 1.6666666667vw;
}
.usp .flow__note p {
  margin: 0;
}
.usp .flow__faq {
  margin-top: 4.1666666667vw;
}
.usp .flow__faq-title {
  font-weight: 500;
  text-align: center;
  margin-bottom: 2.0833333333vw;
}
.usp .flow__faq-title .en {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 2.0833333333vw;
  font-weight: 500;
  color: #73b8bf;
  margin-bottom: 0.78125vw;
}
.usp .flow__faq-title .ja {
  display: block;
  font-size: 1.6666666667vw;
  color: var(--color-text);
}
.usp .flow__faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.usp .flow__faq-item {
  border: 1px solid #ddd;
  background: #fff;
  margin-bottom: 1.0416666667vw;
}
.usp .flow__faq-item:last-child {
  margin-bottom: 0;
}
.usp .flow__faq-item.is-open .flow__faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.usp .flow__faq-item.is-open .flow__faq-answer {
  max-height: 15.625vw;
}
.usp .flow__faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5625vw 2.0833333333vw;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.1458333333vw;
  font-weight: 400;
  color: var(--color-text);
  text-align: left;
  font-family: "Noto Serif JP", serif;
  transition: background 0.3s ease;
  gap: 1.5625vw;
}
.usp .flow__faq-question > span:first-child {
  display: flex;
  align-items: center;
  gap: 1.5625vw;
  line-height: 1.6;
}
.usp .flow__faq-question > span:first-child::before {
  content: "Q";
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1875vw;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1;
  flex-shrink: 0;
  vertical-align: middle;
  padding-bottom: 0.3125vw;
}
.usp .flow__faq-icon {
  position: relative;
  width: 2.6041666667vw;
  height: 2.6041666667vw;
  flex-shrink: 0;
  background: #73b8bf;
  border-radius: 50%;
}
.usp .flow__faq-icon::before, .usp .flow__faq-icon::after {
  content: "";
  position: absolute;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.usp .flow__faq-icon::before {
  top: 50%;
  left: 50%;
  width: 1.0416666667vw;
  height: 2px;
  transform: translate(-50%, -50%);
}
.usp .flow__faq-icon::after {
  top: 50%;
  left: 50%;
  width: 2px;
  height: 1.0416666667vw;
  transform: translate(-50%, -50%);
}
.usp .flow__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.usp .flow__faq-answer p {
  display: flex;
  align-items: center;
  gap: 1.5625vw;
  padding: 1.3020833333vw 0 1.5625vw;
  margin: 0 2.0833333333vw;
  border-top: 1px solid #ddd;
  font-size: 1.1458333333vw;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  font-family: "Noto Serif JP", serif;
}
.usp .flow__faq-answer p::before {
  content: "A";
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1875vw;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1;
  flex-shrink: 0;
  vertical-align: middle;
}

.map {
  background: #fff;
  padding-top: 5.2083333333vw;
  padding-bottom: 5.2083333333vw;
}
.map .section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.0833333333vw;
}
.map .section__title .en {
  display: block;
  margin-bottom: 1.3020833333vw;
}
.map .section__title .ja {
  display: block;
}
.map__wrap {
  width: 100%;
  height: 31.25vw;
  position: relative;
  margin-bottom: 5.2083333333vw;
}
.map__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  mix-blend-mode: hue;
  pointer-events: none;
}
.map__wrap iframe {
  width: 100%;
  height: 100%;
}
.map__text {
  margin-bottom: 2.0833333333vw;
}
.map__text p {
  text-align: center;
  font-size: 1.0416666667vw;
  line-height: 2;
  margin: 0;
}
.map__content {
  position: relative;
  margin-top: 6.25vw;
}
.map__content-line {
  position: absolute;
  top: 2.6041666667vw;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}
.map__content-line svg {
  width: 100%;
  height: auto;
}
.map__content h3 {
  position: relative;
  z-index: 1;
  font-size: 2.0833333333vw;
  font-weight: 500;
  line-height: 1.8;
  margin: 0 0 4.1666666667vw;
}
.map__content h3 .en {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 2.0833333333vw;
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: 1.3020833333vw;
}
.map__content p {
  font-size: 1.0416666667vw;
  line-height: 2.2;
  margin: 0 0 3.125vw;
}
.map__content-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 36.4583333333vw;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.map__content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reservation {
  padding: 6.25vw 0 7.8125vw;
  background: #fff;
}
.reservation .section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.0833333333vw;
}
.reservation .section__title .en {
  display: block;
  margin-bottom: 1.0416666667vw;
  color: var(--color-gold);
}
.reservation .section__title .ja {
  display: block;
}
.reservation__subtitle {
  display: flex;
  justify-content: center;
  margin-bottom: 3.125vw;
}
.reservation__subtitle span {
  display: inline-block;
  padding: 0.78125vw 3.125vw;
  background: #555;
  color: #fff;
  font-size: 1.1458333333vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
}
.reservation__cards {
  display: flex;
  justify-content: center;
  gap: 3.125vw;
}
.reservation__card {
  width: 28.6458333333vw;
  padding: 1.5625vw;
  border: 2px solid;
  text-align: center;
}
.reservation__card--unmanned {
  border-color: #7cbcc3;
}
.reservation__card--staffed {
  border-color: var(--color-gold);
}
.reservation__card-img {
  margin-bottom: 3.125vw;
  overflow: hidden;
  height: 14.5833333333vw;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reservation__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.reservation__card-label {
  font-size: 1.0416666667vw;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.78125vw;
  letter-spacing: 0.1em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
}
.reservation__card-title {
  font-size: 1.875vw;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1.3020833333vw;
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.reservation__card-title--cyan {
  color: #7cbcc3;
}
.reservation__card-title--gold {
  color: var(--color-gold);
}
.reservation__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.78125vw;
  padding: 0.78125vw 2.0833333333vw;
  border-radius: 2.6041666667vw;
  font-size: 1.0416666667vw;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.reservation__card-btn:hover {
  opacity: 0.8;
}
.reservation__card-btn--cyan {
  background: #7cbcc3;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  margin-bottom: 1.5625vw;
}
.reservation__card-btn--cyan .reservation__card-btn-icon {
  background: #fff;
}
.reservation__card-btn--cyan .reservation__card-btn-icon::before {
  background: #7cbcc3;
}
.reservation__card-btn--cyan .reservation__card-btn-icon::after {
  border-color: #7cbcc3;
}
.reservation__card-btn--gold {
  background: var(--color-gold);
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  margin-bottom: 1.5625vw;
}
.reservation__card-btn--gold .reservation__card-btn-icon {
  background: #fff;
}
.reservation__card-btn--gold .reservation__card-btn-icon::before {
  background: var(--color-gold);
}
.reservation__card-btn--gold .reservation__card-btn-icon::after {
  border-color: var(--color-gold);
}
.reservation__card-btn-icon {
  position: relative;
  width: 1.5625vw;
  height: 1.5625vw;
  border-radius: 50%;
}
.reservation__card-btn-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.625vw;
  height: 2px;
}
.reservation__card-btn-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  width: 0.3125vw;
  height: 0.3125vw;
  border-top: 2px solid;
  border-right: 2px solid;
  border-color: inherit;
  transform: translate(-50%, -50%) rotate(45deg);
  background: transparent;
}

@media screen and (max-width: 1200px) {
  body {
    font-size: 1.1666666667vw;
  }
  .container {
    max-width: 100%;
    padding: 0 2.5vw;
  }
  .container__sm {
    max-width: 100%;
    padding: 0 2.5vw;
  }
  .section__title .en {
    font-size: 2.6666666667vw;
    margin-bottom: 1.6666666667vw;
  }
  .section__title .ja {
    font-size: 2.6666666667vw;
  }
  .section__title.about .ja .accent {
    font-size: 4.1666666667vw;
  }
  .section__title.about .ja rt {
    font-size: 1.5vw;
  }
  .header__inner {
    padding: 1.25vw 2.5vw 1.25vw;
    justify-content: flex-end;
    background: #fff;
  }
  .header__logo {
    width: 16.6666666667vw;
    padding: 0.8333333333vw 3.3333333333vw;
    position: absolute;
    left: 0;
    background: #fff;
  }
  .header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
  }
  .header__hamburger-line {
    display: block;
    width: 40px;
    height: 1px;
    background: #524b40;
    transition: transform 0.3s ease;
  }
  .header__hamburger.is-active .header__hamburger-line:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }
  .header__hamburger.is-active .header__hamburger-line:nth-child(2) {
    transform: translateY(-5px) rotate(-45deg);
  }
  .header__nav {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 100px 30px 40px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  .header__nav.is-open {
    right: 0 !important;
  }
  .header__nav-list {
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: transparent;
  }
  .header__nav-item {
    border-bottom: 1px solid #eee;
  }
  .header__nav-item a {
    font-size: 16px;
    display: block;
    padding: 18px 0;
  }
  .header__contact {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }
  .header__contact-btn a {
    padding: 15px 20px;
    font-size: 14px;
    text-align: center;
    display: block;
  }
  .footer__content {
    padding: 4.1666666667vw 1.6666666667vw 5vw;
  }
  .footer__logo {
    width: 11.6666666667vw;
    margin: 0px auto 4.1666666667vw;
  }
  .footer__link-list {
    gap: 4.1666666667vw;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer__link-sublist {
    gap: 1.5vw;
  }
  .footer__link-sublist a {
    font-size: 1.1666666667vw;
  }
  .footer__credit {
    font-size: 0.9166666667vw;
    padding: 1.25vw 0;
  }
  .fv__content {
    padding-top: 15vw;
  }
  .fv__catch {
    font-size: 1.8333333333vw;
    margin-bottom: 1.6666666667vw;
    margin-left: 0vw;
  }
  .fv__title {
    font-size: 3.3333333333vw;
  }
  .fv__title > span {
    font-size: 5.8333333333vw;
  }
  .fv__title .en {
    font-size: 7.5vw;
  }
  .fv__title ruby rt {
    font-size: 2.3333333333vw;
  }
  .fv__vertical-text {
    top: 25vw;
    right: 8.3333333333vw;
    font-size: 2.3333333333vw;
  }
  .fv__img {
    max-height: 800px;
  }
  .fv__img.vegas-container {
    height: auto !important;
    aspect-ratio: 1/1;
  }
  .fv__img .vegas-slide-inner {
    background-size: auto 100% !important;
    background-position: center top !important;
  }
  .fv__cta {
    margin-top: -10vw;
  }
  .fv__cta-inner {
    padding-bottom: 5vw;
  }
  .fv__cta-img {
    width: 29.1666666667vw;
    bottom: -3.3333333333vw;
  }
  .fv__cta-img1 {
    width: 29.1666666667vw;
  }
  .fv__btn {
    gap: 1.6666666667vw;
    padding-bottom: 4.1666666667vw;
  }
  .fv__btn-item a {
    padding: 0.8333333333vw 1.25vw;
    font-size: 1.3333333333vw;
  }
  .fv__btn-item a .text {
    gap: 0.3333333333vw;
    padding-right: 1.6666666667vw;
  }
  .fv__btn-item a .text small {
    font-size: 1vw;
  }
  .fv__btn-item a .arrow {
    padding-left: 1.25vw;
    width: 2.5vw;
  }
  .present {
    padding: 8.3333333333vw 0;
  }
  .present__button {
    padding: 1.25vw 2.0833333333vw;
    font-size: 1.8333333333vw;
    border-radius: 6.6666666667vw;
  }
  .present__button-content {
    gap: 1.6666666667vw;
  }
  .present__button-content::before {
    font-size: 4.1666666667vw;
  }
  .present__button-icon {
    width: 5vw;
    height: 5vw;
    font-size: 2.5vw;
  }
  .present-popup__content {
    width: 85%;
  }
  .present-popup__close {
    top: 0.6666666667vw;
    right: 0.6666666667vw;
    width: 3.3333333333vw;
    height: 3.3333333333vw;
    font-size: 2vw;
  }
  .about__bg-1 {
    top: 10vw;
  }
  .about__bg-2 {
    bottom: 6.6666666667vw;
  }
  .about__deco-1 {
    width: 25vw;
  }
  .about__deco-2 {
    width: 16.6666666667vw;
  }
  .about__deco-3 {
    width: 50vw;
    top: 10vw;
    right: 3.3333333333vw;
  }
  .about__text {
    margin-top: 5vw;
    font-size: 1.3333333333vw;
    gap: 3.3333333333vw;
    padding-bottom: 6.6666666667vw;
  }
  .about__content-2 {
    padding-top: 0.8333333333vw;
    padding-bottom: 8.3333333333vw;
  }
  .about__content-2 .about__img {
    width: 23.3333333333vw;
    margin-bottom: 8.3333333333vw;
  }
  .about__content-2 .about__img-list {
    gap: 2.5vw;
  }
  .about__content-2 h3 {
    font-size: 2.5vw;
    margin-bottom: 4.1666666667vw;
  }
  .about__content-2 p {
    font-size: 1.3333333333vw;
    margin-bottom: 4.1666666667vw;
  }
  .floor-plan {
    padding: 6.6666666667vw 0;
    overflow: hidden;
  }
  .floor-plan__title {
    margin-bottom: 2.5vw;
  }
  .floor-plan__title span {
    font-size: 2vw;
  }
  .floor-plan p {
    font-size: 1.1666666667vw;
    margin: 0 0 5vw;
  }
  .floor-plan__inner {
    padding: 3.3333333333vw 2.5vw;
  }
  .floor-plan__number {
    width: 4.1666666667vw;
    height: 4.1666666667vw;
    font-size: 1.1666666667vw;
  }
  .floor-plan__marker {
    display: none !important;
  }
  .floor-plan__point {
    display: none !important;
  }
  .point .section__title .ja {
    font-size: 2vw;
  }
  .point .section__title .ja .num {
    font-size: 3.75vw;
    margin-right: 0.4166666667vw;
  }
  .point__list {
    margin: 5vw 0 0;
  }
  .point__item {
    height: 33.3333333333vw;
  }
  .point__item-text {
    bottom: 1.25vw;
    right: 1.25vw;
    padding: 2.9166666667vw;
    min-width: 23.3333333333vw;
  }
  .point__item-text h3 {
    font-size: 1.6666666667vw;
    margin: 0 0 1.5vw;
  }
  .point__item-text p {
    font-size: 1.0833333333vw;
  }
  .point__item.point__item-1 .point__item-text::after, .point__item.point__item-2 .point__item-text::after, .point__item.point__item-3 .point__item-text::after, .point__item.point__item-4 .point__item-text::after {
    width: 5vw;
    height: 5vw;
    bottom: 0.8333333333vw;
    right: 0.8333333333vw;
  }
  .point__feature {
    padding: 8.3333333333vw 0;
  }
  .point__feature-list {
    gap: 1.6666666667vw;
  }
  .point__feature-img {
    margin-bottom: 1.5vw;
  }
  .point__feature-text h3 {
    font-size: 1.5vw;
    margin: 0 0 0.6666666667vw;
    min-height: 4.5833333333vw;
  }
  .point__feature-text p {
    font-size: 1.0833333333vw;
  }
  .gallery .section__title {
    margin-bottom: 3.3333333333vw;
  }
  .gallery .section__title .ja {
    font-size: 2vw;
  }
  .gallery__marquee {
    margin-bottom: 8.3333333333vw;
  }
  .gallery__marquee-row {
    margin-bottom: 0.25vw;
  }
  .gallery__marquee-row--top .gallery__marquee-item {
    width: 31.6666666667vw;
  }
  .gallery__marquee-row--top .gallery__marquee-item img {
    height: 35.8333333333vw;
  }
  .gallery__marquee-track {
    gap: 0.25vw;
  }
  .gallery__marquee-item {
    width: 30vw;
  }
  .gallery__marquee-item img {
    height: 21.6666666667vw;
  }
  .gallery__deco {
    width: 37.5vw;
  }
  .gallery__deco-img1 {
    width: 33.3333333333vw;
  }
  .gallery__deco-img2 {
    top: 5vw;
    right: calc(100% - 0.8333333333vw);
    width: 18.3333333333vw;
  }
  .gallery__deco-img3 {
    top: 20.8333333333vw;
    right: calc(100% - 2.5vw);
    width: 13.3333333333vw;
  }
  .gallery__content {
    padding-top: 6.6666666667vw;
    padding-bottom: 8.3333333333vw;
    margin-bottom: 5.8333333333vw;
  }
  .gallery__content h4 {
    font-size: 1.6666666667vw;
    margin-bottom: 2.5vw;
  }
  .gallery__content p {
    font-size: 1.3333333333vw;
  }
  .gallery__title {
    font-size: 2.5vw;
    margin-bottom: 5vw;
  }
  .gallery__title .en {
    font-size: 2.5vw;
    margin-bottom: 1.6666666667vw;
  }
  .parallax {
    height: 54.1666666667vw;
  }
  .power {
    padding: 6.6666666667vw 0;
  }
  .power .section__title {
    margin-bottom: 5vw;
  }
  .power .section__title .ja {
    font-size: 2vw;
  }
  .power__main-list {
    gap: 1.6666666667vw;
    margin-bottom: 5.8333333333vw;
  }
  .power__main-img {
    margin-bottom: 1.6666666667vw;
  }
  .power__main-text h3 {
    font-size: 1.3333333333vw;
    margin-bottom: 0.8333333333vw;
  }
  .power__sub-list {
    gap: 1.6666666667vw;
  }
  .power__sub-img::after {
    right: -0.8333333333vw;
  }
  .power__sub-text h3 {
    font-size: 1.0833333333vw;
  }
  .power__bg {
    bottom: 16.6666666667vw;
  }
  .comfortable {
    padding: 8.3333333333vw 0;
  }
  .comfortable .section__title small {
    font-size: 2vw;
  }
  .comfortable .section__title span {
    font-size: 4.1666666667vw;
  }
  .comfortable .section__title span .small {
    font-size: 3vw;
  }
  .comfortable__list {
    row-gap: 2.9166666667vw;
    -moz-column-gap: 2.9166666667vw;
         column-gap: 2.9166666667vw;
    margin-top: 5vw;
  }
  .comfortable__item {
    width: calc((100% - 5.8333333333vw) / 3);
  }
  .comfortable__item::before {
    bottom: -1.4166666667vw;
  }
  .comfortable__item::after {
    right: -1.4166666667vw;
  }
  .comfortable__item-img {
    margin-bottom: 1.5vw;
  }
  .comfortable__item-text h3 {
    font-size: 1.6666666667vw;
  }
  .comfortable__item-text h3 small {
    font-size: 1.0833333333vw;
    margin-bottom: 0.3333333333vw;
  }
  .comfortable__toggle {
    margin: 5vw auto 0;
    padding: 1.25vw 5vw 1.25vw 3.75vw;
    font-size: 1.3333333333vw;
  }
  .comfortable__toggle-icon {
    right: 1.25vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
  .comfortable__toggle-icon::before {
    width: 1vw;
  }
  .comfortable__toggle-icon::after {
    height: 1vw;
  }
  .cta {
    padding-top: 5.8333333333vw;
  }
  .cta .section__title {
    margin-bottom: 2.5vw;
  }
  .cta .section__title .en {
    font-size: 1.1666666667vw;
  }
  .cta .section__title .ja {
    font-size: 2vw;
  }
  .cta__text p {
    font-size: 1.3333333333vw;
  }
  .cta__wrap {
    padding: 3.75vw 0 3.3333333333vw 5.8333333333vw;
    border-top-left-radius: 5.8333333333vw;
  }
  .cta__btns {
    gap: 1.6666666667vw;
  }
  .cta__btns-img {
    top: -5.8333333333vw;
    width: 29.1666666667vw;
  }
  .cta__btns-img-inner .img1 {
    width: 23.3333333333vw;
    right: 5.8333333333vw;
  }
  .cta__btns-img-inner .img2 {
    width: 11.6666666667vw;
    top: 5.8333333333vw;
  }
  .cta__btns-item a {
    padding: 0.8333333333vw 1.25vw;
    font-size: 1.3333333333vw;
  }
  .cta__btns-item a .text {
    gap: 0.3333333333vw;
    padding-right: 1.6666666667vw;
  }
  .cta__btns-item a .text small {
    font-size: 1vw;
  }
  .cta__btns-item a .arrow {
    padding-left: 1.25vw;
    width: 2.5vw;
  }
  .usp__pallalax {
    height: 58.3333333333vw;
  }
  .usp__logo-track img {
    width: 166.6666666667vw;
  }
  .usp__intro-box {
    padding: 8.3333333333vw 2.5vw;
  }
  .usp__staff-free-title {
    gap: 0.8333333333vw;
    font-size: 1.8333333333vw;
    margin-bottom: 2.0833333333vw;
  }
  .usp__staff-free-title img {
    height: 2.5vw;
  }
  .usp__staff-free-list li {
    font-size: 2vw;
  }
  .usp__staff-free-list li img {
    width: 2.5vw;
    height: 2.5vw;
  }
  .usp__staff-free-list li span::after {
    height: 5px;
    bottom: -0.5vw;
  }
  .usp__intro-title {
    margin-bottom: 3.75vw;
  }
  .usp__intro-title::before {
    height: 13.3333333333vw;
    left: -4.5833333333vw;
  }
  .usp__intro-title::after {
    height: 13.3333333333vw;
    right: -4.5833333333vw;
  }
  .usp__intro-title-sub {
    font-size: 2vw;
    margin-bottom: 0.8333333333vw;
  }
  .usp__intro-title-main {
    font-size: 4.1666666667vw;
  }
  .usp__intro-title-main .accent {
    font-size: 5.8333333333vw;
  }
  .usp__intro p {
    font-size: 2.5vw;
    margin-bottom: 1.25vw;
  }
  .usp__intro-text {
    margin: 5vw 0 !important;
  }
  .usp__intro-item {
    width: 16.6666666667vw;
    height: 10.8333333333vw;
    font-size: 1.6666666667vw;
  }
  .usp__intro-item::before {
    width: 1.8333333333vw;
    height: 1.25vw;
    top: calc(100% + 0.6666666667vw);
  }
  .usp__intro-item::after {
    width: 1.25vw;
    height: 0.8333333333vw;
    top: calc(100% + 2.3333333333vw);
  }
  .usp__intro-item.item-1 {
    top: 5.4166666667vw;
  }
  .usp__intro-item.item-2 {
    right: calc(50% + 1vw);
  }
  .usp__intro-item.item-3 {
    left: calc(50% + 1vw);
  }
  .usp__intro-item.item-4 {
    top: 5.4166666667vw;
  }
  .usp__intro-img {
    padding-top: 12.5vw;
    width: 19.1666666667vw;
  }
  .usp__features-inner {
    padding: 0 3.75vw;
  }
  .usp__features .features__title {
    height: 16.6666666667vw;
    padding-top: 1.6666666667vw;
  }
  .usp__features .features__title small {
    font-size: 2vw;
    margin-bottom: 0.6666666667vw;
  }
  .usp__features .features__title span {
    font-size: 2.3333333333vw;
  }
  .usp__features .features__title span .accent {
    font-size: 4.1666666667vw;
  }
  .usp__features .features__title-logo {
    height: 2.5vw;
    margin-right: 0.6666666667vw;
  }
  .usp__features .features__wrap {
    margin-top: -2.5vw;
  }
  .usp__features .features__inner {
    padding: 2.0833333333vw 2.9166666667vw;
    gap: 5.8333333333vw;
  }
  .usp__features .features__inner::after {
    top: -5vw;
    width: 16.6666666667vw;
    height: 5vw;
  }
  .usp__features .features__badge {
    width: 14.1666666667vw;
    height: 14.1666666667vw;
    font-size: 2vw;
  }
  .usp__features .features__badge span {
    font-size: 2.5vw;
  }
  .usp__features .features__item {
    font-size: 1.5vw;
    padding: 0.8333333333vw 0 0;
  }
  .usp__features .features__item:not(:last-child) {
    padding-bottom: 0.8333333333vw;
  }
  .usp__features .features__item:not(:first-child) {
    padding-top: 0.8333333333vw;
  }
  .usp__features .features__item-icon {
    width: 1.8333333333vw;
    height: 1.8333333333vw;
  }
  .usp__calendar {
    margin-top: -7.5vw;
    padding: 0 3.75vw 5.8333333333vw;
  }
  .usp__calendar-inner {
    padding: 12.5vw 2.5vw 3.75vw;
  }
  .usp__calendar-inner iframe {
    height: 740px;
  }
  .usp__calendar .section__title .ja {
    font-size: 2vw;
  }
  .usp__flow {
    padding: 0 3.75vw;
    padding-bottom: 10.8333333333vw;
  }
  .usp__flow .section__title {
    margin-bottom: 2.5vw;
  }
  .usp__flow .section__title .ja {
    font-size: 2vw;
  }
  .usp__flow::before {
    height: 75vw;
  }
  .usp__flow-inner {
    padding-top: 5.8333333333vw;
    padding-bottom: 5.8333333333vw;
    margin-top: -8.3333333333vw;
  }
  .usp .flow__need {
    padding: 1.6666666667vw;
    margin-bottom: 6.6666666667vw;
  }
  .usp .flow__need-text .heading {
    font-size: 1.5vw;
  }
  .usp .flow__need-text .heading .label {
    padding: 0.3333333333vw 0.6666666667vw;
    font-size: 1.3333333333vw;
  }
  .usp .flow__need-text p {
    font-size: 1.1666666667vw;
  }
  .usp .flow__need-img {
    width: 12.5vw;
    height: 12.5vw;
    right: 8.3333333333vw;
  }
  .usp .flow__list {
    gap: 1.5vw;
    margin-bottom: 3.3333333333vw;
  }
  .usp .flow__item {
    padding: 3.3333333333vw 1.25vw 2.0833333333vw;
    border-radius: 0.6666666667vw;
  }
  .usp .flow__item h4 {
    font-size: 1.5vw;
    height: 6.25vw;
  }
  .usp .flow__item p {
    font-size: 1.0833333333vw;
  }
  .usp .flow__item .arrow {
    left: calc(100% + 0.75vw);
    height: 5.8333333333vw;
    width: 2.6666666667vw;
  }
  .usp .flow__step {
    width: 6.25vw;
    height: 6.25vw;
    font-size: 1.0833333333vw;
  }
  .usp .flow__step .num {
    font-size: 2vw;
  }
  .usp .flow__faq {
    margin-top: 5vw;
  }
  .usp .flow__faq-title {
    margin-bottom: 2.5vw;
  }
  .usp .flow__faq-title .en {
    font-size: 2.5vw;
    margin-bottom: 1vw;
  }
  .usp .flow__faq-title .ja {
    font-size: 2vw;
  }
  .usp .flow__faq-item {
    margin-bottom: 1.25vw;
  }
  .usp .flow__faq-item.is-open .flow__faq-answer {
    max-height: 20.8333333333vw;
  }
  .usp .flow__faq-question {
    padding: 1.8333333333vw 2.5vw;
    font-size: 1.4166666667vw;
    gap: 1.8333333333vw;
  }
  .usp .flow__faq-question > span:first-child {
    gap: 1.8333333333vw;
  }
  .usp .flow__faq-question > span:first-child::before {
    font-size: 2.6666666667vw;
  }
  .usp .flow__faq-icon {
    width: 3.3333333333vw;
    height: 3.3333333333vw;
  }
  .usp .flow__faq-icon::before {
    width: 1.3333333333vw;
  }
  .usp .flow__faq-icon::after {
    height: 1.3333333333vw;
  }
  .usp .flow__faq-answer p {
    gap: 1.8333333333vw;
    padding: 1.6666666667vw 0 2.0833333333vw;
    margin: 0 2.5vw;
    font-size: 1.4166666667vw;
  }
  .usp .flow__faq-answer p::before {
    font-size: 2.6666666667vw;
  }
  .map {
    padding-top: 6.6666666667vw;
    padding-bottom: 6.6666666667vw;
  }
  .map .section__title {
    margin-bottom: 2.5vw;
  }
  .map__wrap {
    height: 37.5vw;
    margin-bottom: 5.8333333333vw;
  }
  .map__text {
    margin-bottom: 2.5vw;
  }
  .map__text p {
    font-size: 1.3333333333vw;
  }
  .map__content {
    margin-top: 7.5vw;
  }
  .map__content-line {
    top: 3.3333333333vw;
  }
  .map__content h3 {
    font-size: 2.5vw;
    margin: 0 0 5vw;
  }
  .map__content h3 .en {
    font-size: 2.5vw;
    margin-bottom: 1.6666666667vw;
  }
  .map__content p {
    font-size: 1.3333333333vw;
    margin: 0 0 3.75vw;
  }
  .map__content-img {
    width: 41.6666666667vw;
  }
  .reservation {
    padding: 7.5vw 0 9.1666666667vw;
  }
  .reservation .section__title {
    margin-bottom: 2.5vw;
  }
  .reservation__subtitle {
    margin-bottom: 3.75vw;
  }
  .reservation__subtitle span {
    padding: 1vw 3.75vw;
    font-size: 1.4166666667vw;
  }
  .reservation__cards {
    gap: 3.3333333333vw;
  }
  .reservation__card {
    width: 33.3333333333vw;
    padding: 2.0833333333vw;
  }
  .reservation__card-img {
    margin-bottom: 3.75vw;
    height: 17.5vw;
  }
  .reservation__card-label {
    font-size: 1.3333333333vw;
    margin-bottom: 1vw;
  }
  .reservation__card-title {
    font-size: 2.3333333333vw;
    margin-bottom: 1.6666666667vw;
  }
  .reservation__card-btn {
    gap: 1vw;
    padding: 1vw 2.5vw;
    font-size: 1.3333333333vw;
  }
  .reservation__card-btn--cyan {
    margin-bottom: 1.8333333333vw;
  }
  .reservation__card-btn-icon {
    width: 2vw;
    height: 2vw;
  }
  .reservation__card-btn-icon::before {
    width: 0.8333333333vw;
  }
  .reservation__card-btn-icon::after {
    width: 0.4166666667vw;
    height: 0.4166666667vw;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.125vw;
  }
  .container {
    padding: 0 3.90625vw;
  }
  .container__sm {
    padding: 0 3.90625vw;
  }
  .section__title .en {
    font-size: 3.90625vw;
    margin-bottom: 2.6041666667vw;
  }
  .section__title .ja {
    font-size: 3.125vw;
  }
  .section__title.about .ja .accent {
    font-size: 7.8125vw;
  }
  .section__title.about .ja rt {
    font-size: 3.125vw;
  }
  .header__inner {
    padding: 1.5625vw 2.6041666667vw 1.5625vw;
    background: none;
  }
  .header__logo {
    width: 26.0416666667vw;
    padding: 2.6041666667vw 5.2083333333vw 2.6041666667vw;
    background: none;
  }
  .header__logo .logo-pc {
    display: none;
  }
  .header__logo .logo-sp {
    display: block;
  }
  .header__hamburger {
    display: none !important;
  }
  .header__nav {
    width: 100%;
    max-width: none;
    padding: 80px 20px 40px;
  }
  .header__nav-item a {
    font-size: 14px;
    padding: 15px 0;
  }
  .header__contact {
    gap: 12px;
    margin-top: 20px;
  }
  .header__contact-btn a {
    padding: 12px 15px;
    font-size: 13px;
  }
  .footer__content {
    padding: 5.2083333333vw 2.6041666667vw 15.625vw;
  }
  .footer__logo {
    width: 19.53125vw;
    margin: 0px auto 10.4166666667vw;
  }
  .footer__link-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 5.2083333333vw 2.6041666667vw;
    justify-items: start;
    width: 85%;
    margin: 0 auto;
  }
  .footer__link-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1/3;
  }
  .footer__link-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .footer__link-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }
  .footer__link-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }
  .footer__link-item:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
  }
  .footer__link-sublist {
    display: flex;
    flex-direction: column;
    gap: 1.5625vw;
    align-items: flex-start;
  }
  .footer__link-sublist a {
    font-size: 2.8645833333vw;
  }
  .footer__credit {
    font-size: 2.6041666667vw;
    padding: 1.5625vw 0;
  }
  .fv {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .fv__img {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    max-height: none !important;
    z-index: -1 !important;
  }
  .fv__img.vegas-container {
    height: 100vh !important;
    aspect-ratio: unset !important;
  }
  .fv__img .vegas-slide-inner {
    background-size: cover !important;
    background-position: center center !important;
  }
  .fv__content {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 2.6041666667vw;
  }
  .fv__catch {
    font-size: 3.6458333333vw;
    margin-bottom: 2.6041666667vw;
  }
  .fv__title {
    font-size: 5.2083333333vw;
  }
  .fv__title > span {
    font-size: 10.4166666667vw;
  }
  .fv__title .en {
    font-size: 13.0208333333vw;
  }
  .fv__title ruby rt {
    font-size: 4.1666666667vw;
  }
  .fv__vertical-text {
    display: none;
  }
  .fv__vertical-text.sp-only {
    display: block;
    top: 45.5729166667vw;
    right: 3.2552083333vw;
    font-size: 3.6458333333vw;
  }
  .fv__cta {
    position: relative;
    margin-top: auto;
    z-index: 2;
  }
  .fv__cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
  }
  .fv__cta-img {
    position: absolute;
    bottom: -10.4166666667vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    z-index: 2;
  }
  .fv__cta-img1 {
    display: none;
  }
  .fv__btn {
    display: none;
  }
  .sp-cta {
    display: block;
    padding: 15.625vw 2.6041666667vw 2.6041666667vw;
    background: #f9f8f5;
  }
  .sp-cta__inner {
    display: flex;
    gap: 1.953125vw;
    justify-content: center;
  }
  .sp-cta__btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.6041666667vw 2.8645833333vw;
    color: #fff;
    text-decoration: none;
    flex: 1;
    border: 1px solid #fff;
    box-shadow: 0 0.6510416667vw 1.953125vw rgba(0, 0, 0, 0.3);
  }
  .sp-cta__btn--gold {
    background: var(--color-gold);
  }
  .sp-cta__btn--blue {
    background: var(--color-blue);
  }
  .sp-cta__btn-text {
    display: flex;
    flex-direction: column;
    gap: 0.78125vw;
    padding-right: 4.5572916667vw;
    border-right: 1px solid #fff;
    font-size: 2.8645833333vw;
    font-weight: bold;
  }
  .sp-cta__btn-text small {
    font-size: 2.6041666667vw;
    font-weight: 500;
  }
  .sp-cta__btn-arrow {
    display: block;
    padding-left: 2.34375vw;
    width: 6.5104166667vw;
  }
  .sp-cta__btn-arrow svg {
    display: block;
    width: 100%;
    height: auto;
  }
  .scroll-cta {
    display: block !important;
    position: fixed;
    bottom: 2.6041666667vw;
    left: 2.6041666667vw;
    right: 2.6041666667vw;
    z-index: 999;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .scroll-cta.show {
    transform: translateY(0);
    opacity: 1;
  }
  .scroll-cta__inner {
    display: flex;
    gap: 1.953125vw;
    justify-content: center;
  }
  .scroll-cta__btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.6041666667vw 2.8645833333vw;
    color: #fff;
    text-decoration: none;
    flex: 1;
    border: 1px solid #fff;
    box-shadow: 0 0.6510416667vw 1.953125vw rgba(0, 0, 0, 0.3);
  }
  .scroll-cta__btn--gold {
    background: var(--color-gold);
  }
  .scroll-cta__btn--blue {
    background: var(--color-blue);
  }
  .scroll-cta__btn-text {
    display: flex;
    flex-direction: column;
    gap: 0.78125vw;
    padding-right: 4.1666666667vw;
    border-right: 1px solid #fff;
    font-size: 2.8645833333vw;
    font-weight: bold;
  }
  .scroll-cta__btn-text small {
    font-size: 2.6041666667vw;
    font-weight: 500;
  }
  .scroll-cta__btn-arrow {
    display: block;
    padding-left: 2.34375vw;
    width: 6.5104166667vw;
  }
  .scroll-cta__btn-arrow svg {
    display: block;
    width: 100%;
    height: auto;
  }
  .sp-hamburger {
    display: flex !important;
    position: fixed;
    top: 2.6041666667vw;
    right: 2.6041666667vw;
    width: 60px;
    height: 60px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 1002;
    background: none;
    border: none;
    cursor: pointer;
  }
  .sp-hamburger__line {
    display: block;
    width: 48px;
    height: 1px;
    background: #fff;
    transition: transform 0.3s ease, background 0.3s ease;
  }
  .sp-hamburger.is-active .sp-hamburger__line {
    background: #524b40 !important;
  }
  .sp-hamburger.is-active .sp-hamburger__line:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }
  .sp-hamburger.is-active .sp-hamburger__line:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }
  .present-popup__content {
    width: 85%;
  }
  .present-popup__close {
    top: 0.8333333333vw;
    right: 0.8333333333vw;
    width: 6.6666666667vw;
    height: 6.6666666667vw;
    font-size: 6vw;
  }
  .present {
    padding: 5.2083333333vw 0 15.625vw;
    overflow: visible;
    background: #f9f8f5;
  }
  .present .container__sm {
    overflow: visible;
  }
  .present__button {
    position: relative;
    padding: 1.3020833333vw 2.6041666667vw 1.3020833333vw 13.0208333333vw;
    font-size: 4.1666666667vw;
    font-weight: bold;
    border-radius: 10.4166666667vw;
    overflow: visible;
    border: 1px solid var(--color-gold);
    background: #f9f8f5;
    box-shadow: none;
  }
  .present__button::before {
    content: "Present";
    position: absolute;
    left: 3.90625vw;
    top: calc(50% + 0.2604166667vw);
    transform: translateY(-50%);
    font-size: 13.0208333333vw;
    font-family: absolute-beauty, sans-serif;
    color: var(--color-gold);
    letter-spacing: normal;
    white-space: nowrap;
    z-index: 1;
  }
  .present__button-content {
    gap: 1.953125vw;
  }
  .present__button-content::before {
    display: none;
  }
  .present__button-icon {
    width: 5.2083333333vw;
    height: 5.2083333333vw;
    font-size: 2.6041666667vw;
  }
  .present__button-text {
    white-space: nowrap;
  }
  .present__button-text-product {
    font-size: 2.34375vw;
  }
  .present__button-text-sub {
    display: none;
  }
  .present__close {
    top: 1.0416666667vw;
    right: 1.0416666667vw;
    width: 4.1666666667vw;
    height: 4.1666666667vw;
    font-size: 2.6041666667vw;
  }
  .about {
    background: #f9f8f5;
  }
  .about .container .section__title ruby rt {
    padding-bottom: 10px;
  }
  .about__bg-1 {
    top: 10.4166666667vw;
  }
  .about__bg-2 {
    bottom: 46.875vw;
  }
  .about__deco-3 {
    display: none;
  }
  .about__content-1 .about__deco-1,
  .about__content-1 .about__deco-2 {
    display: none;
  }
  .about__text {
    margin-top: 7.8125vw;
    font-size: 3.125vw;
    gap: 5.2083333333vw;
    padding-bottom: 7.8125vw;
  }
  .about__content-2 {
    padding-top: 1.3020833333vw;
    padding-bottom: 10.4166666667vw;
  }
  .about__content-2 .about__deco-1.sp {
    display: block !important;
    position: static;
    width: 70%;
    margin-bottom: 5.2083333333vw;
  }
  .about__content-2 .about__deco-1.sp img {
    width: 100%;
    height: auto;
  }
  .about__content-2 .about__deco-2.sp {
    display: block !important;
    position: static;
    width: 28%;
    margin-top: -10.4166666667vw;
    margin-bottom: 5.2083333333vw;
    float: right;
    margin-right: 10.4166666667vw;
  }
  .about__content-2 .about__deco-2.sp img {
    width: 100%;
    height: auto;
  }
  .about__content-2 .about__deco-3 {
    display: block !important;
    position: static;
    width: 100%;
    margin-bottom: 10.4166666667vw;
  }
  .about__content-2 .about__deco-3 img {
    width: 100%;
    height: auto;
  }
  .about__content-2 .container__sm {
    clear: both;
  }
  .about__content-2 .about__img {
    display: none;
  }
  .about__content-2 .about__img.sp {
    display: block !important;
    width: 43%;
    margin-left: 10.4166666667vw;
    margin-bottom: 7.8125vw;
  }
  .about__content-2 .about__img.sp img {
    width: 100%;
    height: auto;
  }
  .about__content-2 .about__img-list {
    display: flex !important;
    flex-direction: row;
    gap: 1.953125vw;
    margin-bottom: 7.8125vw;
  }
  .about__content-2 .about__img-list > div {
    flex: 1;
  }
  .about__content-2 .about__img-list > div img {
    width: 100%;
    height: auto;
  }
  .about__content-2 h3 {
    padding: 0 3.90625vw;
    font-size: 4.1666666667vw;
    margin-bottom: 6.5104166667vw;
  }
  .about__content-2 p {
    padding: 0 3.90625vw;
    font-size: 3.125vw;
    margin-bottom: 6.5104166667vw;
  }
  .floor-plan {
    padding: 10.4166666667vw 0;
  }
  .floor-plan__title {
    margin-bottom: 3.90625vw;
  }
  .floor-plan__title span {
    font-size: 4.1666666667vw;
  }
  .floor-plan p {
    font-size: 3.3854166667vw;
    margin: 0 0 13.0208333333vw;
  }
  .floor-plan p .pc-only {
    display: none;
  }
  .floor-plan__imgs.pc {
    display: none;
  }
  .floor-plan__inner {
    padding: 5.2083333333vw 3.2552083333vw;
  }
  .floor-plan__number {
    width: 7.8125vw;
    height: 7.8125vw;
    font-size: 3.125vw;
  }
  .floor-plan__slider.sp {
    display: block !important;
    position: relative;
    padding: 3.90625vw 2.6041666667vw 3.90625vw;
    overflow: visible;
  }
  .floor-plan__slider-inner {
    position: relative;
    text-align: center;
    padding: 13.0208333333vw 2.6041666667vw 5.2083333333vw;
    background: #fff;
  }
  .floor-plan__slider-inner .floor-plan__number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15.625vw;
    height: 15.625vw;
    background: #f9f8f5;
    border: 0.2604166667vw solid var(--color-gold);
    border-radius: 50%;
    color: var(--color-gold);
    font-size: 5.2083333333vw;
    z-index: 2;
  }
  .floor-plan__slider-inner img {
    width: 100%;
    height: auto;
    display: block;
  }
  .floor-plan__slider-nav .floor-plan__slider-prev,
  .floor-plan__slider-nav .floor-plan__slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8.4635416667vw;
    height: 8.4635416667vw;
    background: var(--color-gold);
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
  }
  .floor-plan__slider-nav .floor-plan__slider-prev::before,
  .floor-plan__slider-nav .floor-plan__slider-next::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
  }
  .floor-plan__slider-nav .floor-plan__slider-prev.swiper-button-disabled,
  .floor-plan__slider-nav .floor-plan__slider-next.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
  }
  .floor-plan__slider-nav .floor-plan__slider-prev {
    left: 0;
  }
  .floor-plan__slider-nav .floor-plan__slider-prev::before {
    border-width: 2.34375vw 3.125vw 2.34375vw 0;
    border-color: transparent #fff transparent transparent;
    margin-right: 0.390625vw;
  }
  .floor-plan__slider-nav .floor-plan__slider-next {
    right: 0;
  }
  .floor-plan__slider-nav .floor-plan__slider-next::before {
    border-width: 2.34375vw 0 2.34375vw 3.125vw;
    border-color: transparent transparent transparent #fff;
    margin-left: 0.390625vw;
  }
  .floor-plan__slider-pagination {
    display: flex;
    justify-content: center;
    gap: 1.5625vw;
    margin-top: 3.90625vw;
  }
  .floor-plan__slider-pagination .swiper-pagination-bullet {
    width: 1.953125vw;
    height: 1.953125vw;
    background: #d4d0c8;
    border-radius: 50%;
    opacity: 1;
  }
  .floor-plan__slider-pagination .swiper-pagination-bullet-active {
    background: var(--color-gold);
  }
  .point {
    background: #f9f8f5;
  }
  .point .section__title .ja {
    font-size: 4.1666666667vw;
  }
  .point .section__title .ja .num {
    font-size: 6.5104166667vw;
    margin-right: 0.78125vw;
  }
  .point__list.pc {
    display: none;
  }
  .point__slider.sp {
    display: block !important;
    margin: 6.5104166667vw 0 0;
    position: relative;
    padding-bottom: 7.8125vw;
  }
  .point__slider.sp .swiper-slide {
    width: 84%;
    background: #fff;
    overflow: hidden;
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }
  .point__slider.sp .swiper-slide-active {
    opacity: 1;
  }
  .point__slider.sp .point__slider-img {
    width: 100%;
    position: relative;
  }
  .point__slider.sp .point__slider-img img {
    width: 100%;
    height: auto;
    display: block;
  }
  .point__slider.sp .point__slider-content {
    display: flex;
    align-items: flex-start;
    gap: 7.8125vw;
    padding: 5.2083333333vw 3.2552083333vw 5.2083333333vw;
    background: #fff;
  }
  .point__slider.sp .point__slider-num {
    width: auto;
    height: 14.3229166667vw;
    flex-shrink: 0;
    opacity: 0.6;
  }
  .point__slider.sp .point__slider-text {
    padding-top: 1.3020833333vw;
  }
  .point__slider.sp .point__slider-text h3 {
    font-size: 3.6458333333vw;
    font-weight: bold;
    color: var(--color-text);
    margin-top: 0;
    margin-bottom: 2.6041666667vw;
    line-height: 1.5;
  }
  .point__slider.sp .point__slider-text p {
    font-size: 2.34375vw;
    color: var(--color-text);
    line-height: 1.8;
  }
  .point__slider.sp .point__slider-nav .point__slider-prev,
  .point__slider.sp .point__slider-nav .point__slider-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 8.4635416667vw;
    height: 8.4635416667vw;
    background: var(--color-gold);
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
  }
  .point__slider.sp .point__slider-nav .point__slider-prev::before,
  .point__slider.sp .point__slider-nav .point__slider-next::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
  }
  .point__slider.sp .point__slider-nav .point__slider-prev {
    left: 3.90625vw;
  }
  .point__slider.sp .point__slider-nav .point__slider-prev::before {
    border-width: 2.34375vw 3.125vw 2.34375vw 0;
    border-color: transparent #fff transparent transparent;
    margin-right: 0.390625vw;
  }
  .point__slider.sp .point__slider-nav .point__slider-next {
    right: 3.90625vw;
  }
  .point__slider.sp .point__slider-nav .point__slider-next::before {
    border-width: 2.34375vw 0 2.34375vw 3.125vw;
    border-color: transparent transparent transparent #fff;
    margin-left: 0.390625vw;
  }
  .point__slider.sp .point__slider-pagination {
    display: flex;
    justify-content: center;
    gap: 1.953125vw;
    margin-top: 3.90625vw;
  }
  .point__slider.sp .point__slider-pagination .swiper-pagination-bullet {
    width: 1.953125vw;
    height: 1.953125vw;
    background: #d4d0c8;
    border-radius: 50%;
    opacity: 1;
    transition: background 0.3s ease;
  }
  .point__slider.sp .point__slider-pagination .swiper-pagination-bullet-active {
    background: var(--color-gold);
  }
  .point__item {
    height: 52.0833333333vw;
  }
  .point__item-text {
    bottom: 1.953125vw;
    right: 1.953125vw;
    padding: 4.5572916667vw;
    min-width: 36.4583333333vw;
  }
  .point__item-text h3 {
    font-size: 3.90625vw;
    margin: 0 0 2.34375vw;
  }
  .point__item-text p {
    font-size: 2.8645833333vw;
  }
  .point__item.point__item-1 .point__item-text::after, .point__item.point__item-2 .point__item-text::after, .point__item.point__item-3 .point__item-text::after, .point__item.point__item-4 .point__item-text::after {
    width: 9.1145833333vw;
    height: 9.1145833333vw;
    bottom: 1.5625vw;
    right: 1.5625vw;
  }
  .point__feature {
    padding: 13.0208333333vw 0;
    background: #fff;
  }
  .point__feature .container__sm.pc {
    display: block;
  }
  .point__feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3.90625vw;
  }
  .point__feature-item {
    width: calc(50% - 1.953125vw);
    flex: none;
  }
  .point__feature-img {
    margin-bottom: 2.6041666667vw;
  }
  .point__feature-text h3 {
    font-size: 2.8645833333vw;
    margin: 0 0 1.3020833333vw;
    min-height: none;
  }
  .point__feature-text p {
    font-size: 2.34375vw;
  }
  .point__feature-slider.sp {
    display: none !important;
  }
  .point__feature-slider-img {
    width: 100%;
  }
  .point__feature-slider-img img {
    width: 100%;
    height: auto;
    display: block;
  }
  .point__feature-slider-text h3 {
    font-size: 4.4270833333vw;
    font-weight: bold;
    color: var(--color-text);
    margin-bottom: 1.953125vw;
    line-height: 1.5;
  }
  .point__feature-slider-text p {
    font-size: 3.3854166667vw;
    color: var(--color-text);
    line-height: 1.8;
  }
  .point__feature-slider-nav .point__feature-slider-prev,
  .point__feature-slider-nav .point__feature-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8.4635416667vw;
    height: 8.4635416667vw;
    background: var(--color-gold);
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
  }
  .point__feature-slider-nav .point__feature-slider-prev::before,
  .point__feature-slider-nav .point__feature-slider-next::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
  }
  .point__feature-slider-nav .point__feature-slider-prev {
    left: 3.90625vw;
  }
  .point__feature-slider-nav .point__feature-slider-prev::before {
    border-width: 2.34375vw 3.125vw 2.34375vw 0;
    border-color: transparent #fff transparent transparent;
    margin-right: 0.390625vw;
  }
  .point__feature-slider-nav .point__feature-slider-next {
    right: 3.90625vw;
  }
  .point__feature-slider-nav .point__feature-slider-next::before {
    border-width: 2.34375vw 0 2.34375vw 3.125vw;
    border-color: transparent transparent transparent #fff;
    margin-left: 0.390625vw;
  }
  .point__feature-slider-pagination {
    display: flex;
    justify-content: center;
    gap: 1.5625vw;
    margin-top: 3.2552083333vw;
  }
  .point__feature-slider-pagination .swiper-pagination-bullet {
    width: 1.953125vw;
    height: 1.953125vw;
    background: #d4d0c8;
    border-radius: 50%;
    opacity: 1;
    transition: background 0.3s ease;
  }
  .point__feature-slider-pagination .swiper-pagination-bullet-active {
    background: var(--color-gold);
  }
  .gallery .section__title {
    margin-bottom: 5.2083333333vw;
  }
  .gallery .section__title .ja {
    font-size: 4.1666666667vw;
  }
  .gallery__marquee {
    margin-bottom: 10.4166666667vw;
  }
  .gallery__marquee-row {
    margin-bottom: 0.390625vw;
  }
  .gallery__marquee-row--top .gallery__marquee-item {
    width: 45.5729166667vw;
  }
  .gallery__marquee-row--top .gallery__marquee-item img {
    height: 52.0833333333vw;
  }
  .gallery__marquee-track {
    gap: 0.390625vw;
  }
  .gallery__marquee-item {
    width: 39.0625vw;
  }
  .gallery__marquee-item img {
    height: 31.25vw;
  }
  .gallery__deco {
    display: block;
    width: 100%;
    position: relative;
  }
  .gallery__deco-inner {
    position: relative;
    padding-left: 40%;
    padding-bottom: 5.2083333333vw;
  }
  .gallery__deco-img1 {
    position: relative !important;
    width: 65.1041666667vw !important;
    right: auto !important;
    top: auto !important;
  }
  .gallery__deco-img1 img {
    width: 100%;
    height: auto;
  }
  .gallery__deco-img2 {
    position: absolute !important;
    width: 32% !important;
    top: 6% !important;
    left: 0 !important;
    right: auto !important;
  }
  .gallery__deco-img2 img {
    width: 100%;
    height: auto;
  }
  .gallery__deco-img3 {
    position: absolute !important;
    width: 26% !important;
    bottom: 16% !important;
    left: 11% !important;
    top: auto !important;
    right: auto !important;
  }
  .gallery__deco-img3 img {
    width: 100%;
    height: auto;
  }
  .gallery__content {
    padding-top: 0;
    padding-bottom: 13.0208333333vw;
    margin-bottom: 0;
    display: flex;
    flex-direction: column-reverse;
  }
  .gallery__content h4 {
    font-size: 3.3854166667vw;
    margin-bottom: 3.90625vw;
  }
  .gallery__content p {
    font-size: 3.125vw;
  }
  .gallery__title {
    font-size: 4.1666666667vw;
    margin-bottom: 6.5104166667vw;
  }
  .gallery__title .en {
    font-size: 3.90625vw;
    margin-bottom: 2.6041666667vw;
  }
  .parallax {
    height: 65.1041666667vw;
    background-attachment: scroll;
    background-position: center center;
  }
  .power {
    padding: 10.4166666667vw 0;
  }
  .power .section__title {
    margin-bottom: 6.5104166667vw;
  }
  .power .section__title .ja {
    font-size: 4.1666666667vw;
  }
  .power__main-list {
    gap: 7.8125vw;
    margin-bottom: 7.8125vw;
    flex-direction: column;
  }
  .power__main-item {
    width: 100%;
  }
  .power__main-img {
    margin-bottom: 2.6041666667vw;
  }
  .power__main-text h3 {
    font-size: 3.6458333333vw;
    margin-bottom: 1.5625vw;
  }
  .power__main-text p {
    font-size: 2.8645833333vw;
  }
  .power__sub-list {
    gap: 1.5625vw;
    flex-wrap: wrap;
    justify-content: center;
  }
  .power__sub-item {
    width: calc(33.333% - 1.3020833333vw);
  }
  .power__sub-item:nth-child(4), .power__sub-item:nth-child(5) {
    width: calc(33.333% - 1.3020833333vw);
  }
  .power__sub-img::after {
    display: none;
  }
  .power__sub-text h3 {
    font-size: 3.125vw;
  }
  .power__bg {
    bottom: 19.53125vw;
  }
  .comfortable {
    padding: 13.0208333333vw 0;
  }
  .comfortable .container__sm {
    padding: 0 3.90625vw;
  }
  .comfortable .section__title small {
    font-size: 4.1666666667vw;
  }
  .comfortable .section__title span {
    font-size: 6.5104166667vw;
  }
  .comfortable .section__title span .small {
    font-size: 4.6875vw;
  }
  .comfortable__list.pc {
    display: flex !important;
    flex-wrap: wrap;
    gap: 2.6041666667vw;
    margin-top: 7.8125vw;
  }
  .comfortable__toggle.pc {
    display: none;
  }
  .comfortable__item {
    width: calc(33.333% - 1.8229166667vw);
    flex: none;
  }
  .comfortable__item--hidden {
    display: block !important;
  }
  .comfortable__item::before {
    bottom: -1.5625vw;
  }
  .comfortable__item::after {
    right: -1.5625vw;
  }
  .comfortable__item-img {
    margin-bottom: 2.34375vw;
  }
  .comfortable__item-text h3 {
    font-size: 2.6041666667vw;
  }
  .comfortable__item-text h3 small {
    font-size: 2.0833333333vw;
    margin-bottom: 0.5208333333vw;
  }
  .comfortable__slider.sp {
    display: none !important;
  }
  .comfortable__slider-img {
    width: 100%;
  }
  .comfortable__slider-img img {
    width: 100%;
    height: auto;
    display: block;
  }
  .comfortable__slider-text {
    padding: 2.6041666667vw;
    text-align: center;
  }
  .comfortable__slider-text h3 {
    font-size: 4.4270833333vw;
    font-weight: bold;
    color: var(--color-text);
    line-height: 1.5;
    margin-top: 0;
  }
  .comfortable__slider-text h3 small {
    display: block;
    font-size: 3.3854166667vw;
    font-weight: normal;
    margin-bottom: 0.6510416667vw;
  }
  .comfortable__slider-nav .comfortable__slider-prev,
  .comfortable__slider-nav .comfortable__slider-next {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 8.4635416667vw;
    height: 8.4635416667vw;
    background: var(--color-gold);
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
  }
  .comfortable__slider-nav .comfortable__slider-prev::before,
  .comfortable__slider-nav .comfortable__slider-next::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
  }
  .comfortable__slider-nav .comfortable__slider-prev {
    left: 3.90625vw;
  }
  .comfortable__slider-nav .comfortable__slider-prev::before {
    border-width: 2.34375vw 3.125vw 2.34375vw 0;
    border-color: transparent #fff transparent transparent;
    margin-right: 0.390625vw;
  }
  .comfortable__slider-nav .comfortable__slider-next {
    right: 3.90625vw;
  }
  .comfortable__slider-nav .comfortable__slider-next::before {
    border-width: 2.34375vw 0 2.34375vw 3.125vw;
    border-color: transparent transparent transparent #fff;
    margin-left: 0.390625vw;
  }
  .comfortable__slider-pagination {
    display: flex;
    justify-content: center;
    gap: 1.5625vw;
    margin-top: 3.2552083333vw;
  }
  .comfortable__slider-pagination .swiper-pagination-bullet {
    width: 1.953125vw;
    height: 1.953125vw;
    background: #d4d0c8;
    border-radius: 50%;
    opacity: 1;
    transition: background 0.3s ease;
  }
  .comfortable__slider-pagination .swiper-pagination-bullet-active {
    background: var(--color-gold);
  }
  .cta {
    padding-top: 9.1145833333vw;
  }
  .cta .section__title {
    margin-bottom: 3.90625vw;
  }
  .cta .section__title .en {
    font-size: 3.125vw;
  }
  .cta .section__title .ja {
    font-size: 4.1666666667vw;
  }
  .cta__text p {
    font-size: 3.125vw;
  }
  .cta__wrap {
    padding: 6.5104166667vw 0 5.2083333333vw 7.8125vw;
    border-top-left-radius: 7.8125vw;
  }
  .cta__btns {
    flex-direction: column;
    gap: 2.6041666667vw;
  }
  .cta__btns-img {
    display: none;
  }
  .cta__btns-item {
    width: 100%;
  }
  .cta__btns-item a {
    padding: 2.34375vw 2.8645833333vw;
    font-size: 3.125vw;
    justify-content: center;
  }
  .cta__btns-item a .text {
    gap: 0.6510416667vw;
    padding-right: 2.8645833333vw;
  }
  .cta__btns-item a .text small {
    font-size: 2.34375vw;
  }
  .cta__btns-item a .arrow {
    padding-left: 2.34375vw;
    width: 5.2083333333vw;
  }
  .usp__pallalax {
    height: 78.125vw;
  }
  .usp__logo-track {
    width: 200%;
    animation: logoMarquee 20s linear infinite;
  }
  .usp__logo-track img {
    width: 100%;
  }
  .usp__intro-box {
    padding: 10.4166666667vw 3.90625vw;
  }
  .usp__staff-free-title {
    gap: 1.5625vw;
    font-size: 3.90625vw;
    margin-bottom: 3.90625vw;
    flex-wrap: wrap;
    justify-content: center;
  }
  .usp__staff-free-title img {
    margin-top: 2.6041666667vw;
    height: 6.5104166667vw;
  }
  .usp__staff-free-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .usp__staff-free-list li {
    font-size: 4.1666666667vw;
  }
  .usp__staff-free-list li img {
    width: 3.90625vw;
    height: 3.90625vw;
  }
  .usp__staff-free-list li span::after {
    height: 5px;
    bottom: -0.78125vw;
  }
  .usp__staff-free-list li.item-3 {
    width: 100%;
    justify-content: center;
    margin-top: 2.6041666667vw;
  }
  .usp__intro-title {
    margin-bottom: 6.5104166667vw;
  }
  .usp__intro-title::before {
    width: 1px;
    height: 19.53125vw;
    left: -2.6041666667vw;
  }
  .usp__intro-title::after {
    width: 1px;
    height: 19.53125vw;
    right: -2.6041666667vw;
  }
  .usp__intro-title-sub {
    font-size: 3.6458333333vw;
    margin-bottom: 1.5625vw;
  }
  .usp__intro-title-main {
    font-size: 5.2083333333vw;
  }
  .usp__intro-title-main .accent {
    font-size: 7.8125vw;
  }
  .usp__intro p {
    font-size: 3.90625vw;
    margin-bottom: 6.5104166667vw;
  }
  .usp__intro-text {
    margin: 7.8125vw 0 !important;
  }
  .usp__intro-item {
    width: 33.8541666667vw;
    height: 22.1354166667vw;
    font-size: 3.125vw;
    color: #524b40;
  }
  .usp__intro-item::before {
    width: 3.125vw;
    height: 2.34375vw;
    top: calc(100% + 1.3020833333vw);
  }
  .usp__intro-item::after {
    width: 2.34375vw;
    height: 1.8229166667vw;
    top: calc(100% + 4.1666666667vw);
  }
  .usp__intro-item.item-1 {
    top: 29.9479166667vw;
  }
  .usp__intro-item.item-2 {
    right: calc(50% + 1.953125vw);
  }
  .usp__intro-item.item-3 {
    left: calc(50% + 1.953125vw);
  }
  .usp__intro-item.item-4 {
    top: 29.9479166667vw;
  }
  .usp__intro-img {
    padding-top: 45.5729166667vw;
    width: 31.25vw;
  }
  .usp__features-inner {
    padding: 0 3.90625vw;
  }
  .usp__features .features__title {
    background-size: cover;
    background-position-x: center;
    height: 39.0625vw;
    padding-top: 3.2552083333vw;
    margin: 0 -3.90625vw;
  }
  .usp__features .features__title small {
    font-size: 3.6458333333vw;
    margin-bottom: 2.6041666667vw;
  }
  .usp__features .features__title span {
    font-size: 3.90625vw;
  }
  .usp__features .features__title span .accent {
    font-size: 6.5104166667vw;
  }
  .usp__features .features__title-logo {
    height: 6.5104166667vw;
    margin-right: 1.3020833333vw;
  }
  .usp__features .features__wrap {
    margin-top: 5.2083333333vw;
  }
  .usp__features .features__inner {
    padding: 4.5572916667vw 5.2083333333vw;
    gap: 9.1145833333vw;
    flex-direction: column;
    position: relative;
  }
  .usp__features .features__inner::after {
    top: -7.8125vw;
    width: 28.6458333333vw;
    height: 7.8125vw;
  }
  .usp__features .features__badge {
    width: 15.625vw;
    height: 15.625vw;
    font-size: 2.6041666667vw;
    position: absolute;
    top: 2.6041666667vw;
    right: -2.6041666667vw;
    z-index: 1;
  }
  .usp__features .features__badge span {
    font-size: 3.125vw;
  }
  .usp__features .features__item {
    font-size: 2.6041666667vw;
    padding: 1.8229166667vw 0 0;
  }
  .usp__features .features__item:not(:last-child) {
    padding-bottom: 1.8229166667vw;
  }
  .usp__features .features__item:not(:first-child) {
    padding-top: 1.8229166667vw;
  }
  .usp__features .features__item-icon {
    width: 3.125vw;
    height: 3.125vw;
  }
  .usp__calendar {
    margin-top: -13.0208333333vw;
    padding: 0 3.90625vw 9.1145833333vw;
  }
  .usp__calendar-inner {
    padding: 13.0208333333vw 3.90625vw 6.5104166667vw;
  }
  .usp__calendar-inner iframe {
    height: 680px;
  }
  .usp__calendar-text {
    display: none;
  }
  .usp__calendar .section__title {
    display: none;
  }
  .usp__calendar .section__title .ja {
    font-size: 4.1666666667vw;
  }
  .usp__flow {
    padding: 0 2.6041666667vw;
    padding-bottom: 10.4166666667vw;
  }
  .usp__flow .section__title {
    margin-bottom: 3.2552083333vw;
  }
  .usp__flow .section__title .ja {
    font-size: 3.6458333333vw;
  }
  .usp__flow::before {
    height: 91.1458333333vw;
  }
  .usp__flow-inner {
    padding-top: 6.5104166667vw;
    padding-bottom: 6.5104166667vw;
    margin-top: -10.4166666667vw;
  }
  .usp .flow__need {
    padding: 2.34375vw;
    margin-bottom: 6.5104166667vw;
  }
  .usp .flow__need-text .heading {
    gap: 1.0416666667vw;
    font-size: 2.6041666667vw;
  }
  .usp .flow__need-text .heading .label {
    padding: 0.5208333333vw 1.0416666667vw;
    font-size: 2.34375vw;
  }
  .usp .flow__need-text p {
    font-size: 2.34375vw;
  }
  .usp .flow__need-img {
    display: none;
    width: 15.625vw;
    height: 15.625vw;
    right: 1.3020833333vw;
  }
  .usp .flow__list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 3.90625vw;
    margin-bottom: 4.5572916667vw;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 5.859375vw 1.953125vw 1.953125vw;
    margin-left: -1.953125vw;
    margin-right: -1.953125vw;
    -webkit-overflow-scrolling: touch;
  }
  .usp .flow__list::-webkit-scrollbar {
    display: none;
  }
  .usp .flow__note {
    font-size: 2.0833333333vw;
    margin-bottom: 2.6041666667vw;
  }
  .usp .flow__item {
    flex: 0 0 41.6666666667vw;
    width: 41.6666666667vw;
    padding: 11.71875vw 1.953125vw 2.34375vw;
    border-radius: 1.0416666667vw;
    border: 2px solid #524b40;
    position: relative;
  }
  .usp .flow__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -4.5572916667vw;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5.2083333333vw 0 5.2083333333vw 4.5572916667vw;
    border-color: transparent transparent transparent #73b8bf;
    z-index: 10;
  }
  .usp .flow__item h4 {
    font-size: 2.6041666667vw;
    height: auto;
    min-height: 6.5104166667vw;
    margin-bottom: 1.5625vw;
  }
  .usp .flow__item p {
    font-size: 2.0833333333vw;
  }
  .usp .flow__item .arrow {
    display: none;
  }
  .usp .flow__step {
    width: 13.0208333333vw;
    height: 13.0208333333vw;
    font-size: 2.34375vw;
    top: 2.6041666667vw;
  }
  .usp .flow__step .num {
    font-size: 3.90625vw;
  }
  .usp .flow__faq {
    margin-top: 10.4166666667vw;
  }
  .usp .flow__faq-title {
    margin-bottom: 3.2552083333vw;
  }
  .usp .flow__faq-title .en {
    font-size: 4.1666666667vw;
    margin-bottom: 1.3020833333vw;
  }
  .usp .flow__faq-title .ja {
    font-size: 3.125vw;
  }
  .usp .flow__faq-item {
    margin-bottom: 1.5625vw;
  }
  .usp .flow__faq-item.is-open .flow__faq-answer {
    max-height: 52.0833333333vw;
  }
  .usp .flow__faq-question {
    padding: 2.34375vw 2.6041666667vw;
    font-size: 2.34375vw;
    gap: 1.953125vw;
  }
  .usp .flow__faq-question > span:first-child {
    gap: 1.953125vw;
  }
  .usp .flow__faq-question > span:first-child::before {
    font-size: 4.1666666667vw;
  }
  .usp .flow__faq-icon {
    width: 4.1666666667vw;
    height: 4.1666666667vw;
  }
  .usp .flow__faq-icon::before {
    width: 1.8229166667vw;
  }
  .usp .flow__faq-icon::after {
    height: 1.8229166667vw;
  }
  .usp .flow__faq-answer p {
    gap: 1.953125vw;
    padding: 1.953125vw 0 2.6041666667vw;
    margin: 0 2.6041666667vw;
    font-size: 2.34375vw;
  }
  .usp .flow__faq-answer p::before {
    font-size: 4.1666666667vw;
  }
  .map {
    padding-top: 6.5104166667vw;
    padding-bottom: 0;
  }
  .map .section__title {
    margin-bottom: 3.2552083333vw;
  }
  .map__wrap {
    height: 49.4791666667vw;
    margin-bottom: 5.859375vw;
  }
  .map__text {
    margin-bottom: 3.2552083333vw;
  }
  .map__text p {
    font-size: 2.34375vw;
  }
  .map__content {
    margin-top: 8.4635416667vw;
  }
  .map__content-line {
    top: 3.90625vw;
  }
  .map__content h3 {
    font-size: 3.90625vw;
    margin: 0 0 5.2083333333vw;
  }
  .map__content h3 .en {
    font-size: 3.90625vw;
    margin-bottom: 1.953125vw;
  }
  .map__content p {
    font-size: 2.34375vw;
    margin: 0 0 4.5572916667vw;
  }
  .map__content-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
  }
  .reservation {
    padding: 8.4635416667vw 0 10.4166666667vw;
  }
  .reservation .section__title {
    margin-bottom: 3.2552083333vw;
  }
  .reservation .section__title .ja {
    font-size: 3.125vw;
  }
  .reservation__subtitle {
    margin-bottom: 4.5572916667vw;
  }
  .reservation__subtitle span {
    padding: 1.5625vw 5.2083333333vw;
    font-size: 2.34375vw;
  }
  .reservation__cards {
    gap: 2.6041666667vw;
    flex-direction: column;
  }
  .reservation__card {
    width: 100%;
    padding: 2.34375vw;
  }
  .reservation__card--unmanned, .reservation__card--staffed {
    display: flex;
    align-items: flex-start;
    gap: 1.953125vw;
  }
  .reservation__card--unmanned .reservation__card-img, .reservation__card--staffed .reservation__card-img {
    margin-bottom: 0;
    height: 19.53125vw;
    width: 39.0625vw;
    flex-shrink: 0;
  }
  .reservation__card--unmanned .reservation__card-img img, .reservation__card--staffed .reservation__card-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .reservation__card--unmanned .reservation__card-content, .reservation__card--staffed .reservation__card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .reservation__card--unmanned .reservation__card-label, .reservation__card--staffed .reservation__card-label {
    margin-bottom: 0.78125vw;
  }
  .reservation__card--unmanned .reservation__card-title, .reservation__card--staffed .reservation__card-title {
    margin-bottom: 2.34375vw;
  }
  .reservation__card-label {
    font-size: 2.0833333333vw;
    margin-bottom: 1.3020833333vw;
  }
  .reservation__card-title {
    font-size: 3.3854166667vw;
    margin-bottom: 2.34375vw;
  }
  .reservation__card-btn {
    gap: 1.5625vw;
    padding: 1.5625vw 3.6458333333vw;
    font-size: 2.0833333333vw;
    border-radius: 4.5572916667vw;
  }
  .reservation__card-btn--cyan {
    margin-bottom: 2.0833333333vw;
    margin: 0 auto;
  }
  .reservation__card-btn--gold {
    margin-bottom: 2.0833333333vw;
    margin: 0 auto;
  }
  .reservation__card-btn-icon {
    width: 3.125vw;
    height: 3.125vw;
  }
  .reservation__card-btn-icon::before {
    width: 1.3020833333vw;
  }
  .reservation__card-btn-icon::after {
    width: 0.78125vw;
    height: 0.78125vw;
  }
}
@media screen and (max-width: 576px) {
  body {
    font-size: 3.125vw;
  }
  .container {
    padding: 0 3.90625vw;
  }
  .container__sm {
    padding: 0 3.90625vw;
  }
  .section__title .en {
    font-size: 5.7291666667vw;
    margin-bottom: 2.6041666667vw;
  }
  .section__title .ja {
    font-size: 5.7291666667vw;
  }
  .section__title.about .ja .accent {
    font-size: 9.1145833333vw;
  }
  .section__title.about .ja rt {
    font-size: 3.125vw;
  }
  .header__inner {
    padding: 1.5625vw 2.6041666667vw 1.5625vw;
    background: none;
  }
  .header__logo {
    width: 32.5520833333vw;
    padding: 2.6041666667vw 5.2083333333vw 2.6041666667vw;
    background: none;
  }
  .header__logo .logo-pc {
    display: none;
  }
  .header__logo .logo-sp {
    display: block;
  }
  .header__hamburger {
    display: none !important;
  }
  .header__nav {
    width: 100%;
    max-width: none;
    padding: 80px 20px 40px;
  }
  .header__nav-item a {
    font-size: 14px;
    padding: 15px 0;
  }
  .header__contact {
    gap: 12px;
    margin-top: 20px;
  }
  .header__contact-btn a {
    padding: 12px 15px;
    font-size: 13px;
  }
  .footer__content {
    padding: 5.2083333333vw 2.6041666667vw 15.625vw;
  }
  .footer__logo {
    width: 19.53125vw;
    margin: 0px auto 10.4166666667vw;
  }
  .footer__link-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 5.2083333333vw 2.6041666667vw;
    justify-items: start;
    width: 85%;
    margin: 0 auto;
  }
  .footer__link-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1/3;
  }
  .footer__link-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .footer__link-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }
  .footer__link-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }
  .footer__link-item:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
  }
  .footer__link-sublist {
    display: flex;
    flex-direction: column;
    gap: 1.5625vw;
    align-items: flex-start;
  }
  .footer__link-sublist a {
    font-size: 2.8645833333vw;
  }
  .footer__credit {
    font-size: 2.6041666667vw;
    padding: 1.5625vw 0;
  }
  .fv {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .fv__img {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    max-height: none !important;
    z-index: -1 !important;
  }
  .fv__img.vegas-container {
    height: 100vh !important;
    aspect-ratio: unset !important;
  }
  .fv__img .vegas-slide-inner {
    background-size: cover !important;
    background-position: center center !important;
  }
  .fv__content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 2.6041666667vw;
  }
  .fv__catch {
    font-size: 4.4270833333vw;
    margin-bottom: 3.90625vw;
  }
  .fv__title {
    font-size: 6.5104166667vw;
  }
  .fv__title > span {
    font-size: 18.2291666667vw;
  }
  .fv__title .en {
    font-size: 20.8333333333vw;
  }
  .fv__title ruby rt {
    font-size: 5.9895833333vw;
  }
  .fv__vertical-text {
    display: none;
  }
  .fv__vertical-text.sp-only {
    display: block;
    top: 62.5vw;
    right: 5.2083333333vw;
    font-size: 5.46875vw;
  }
  .fv__cta {
    position: relative;
    margin-top: auto;
    z-index: 2;
  }
  .fv__cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
  }
  .fv__cta-img {
    position: absolute;
    bottom: -10.4166666667vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    z-index: 2;
  }
  .fv__cta-img1 {
    display: none;
  }
  .fv__btn {
    display: none;
  }
  .sp-cta {
    display: block;
    padding: 15.625vw 2.6041666667vw 2.6041666667vw;
    background: #f9f8f5;
  }
  .sp-cta__inner {
    display: flex;
    gap: 1.953125vw;
    justify-content: center;
  }
  .sp-cta__btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.6041666667vw 2.8645833333vw;
    color: #fff;
    text-decoration: none;
    flex: 1;
    border: 1px solid #fff;
    box-shadow: 0 0.6510416667vw 1.953125vw rgba(0, 0, 0, 0.3);
  }
  .sp-cta__btn--gold {
    background: var(--color-gold);
  }
  .sp-cta__btn--blue {
    background: var(--color-blue);
  }
  .sp-cta__btn-text {
    display: flex;
    flex-direction: column;
    gap: 0.78125vw;
    padding-right: 4.5572916667vw;
    border-right: 1px solid #fff;
    font-size: 2.8645833333vw;
    font-weight: bold;
  }
  .sp-cta__btn-text small {
    font-size: 2.6041666667vw;
    font-weight: 500;
  }
  .sp-cta__btn-arrow {
    display: block;
    padding-left: 2.34375vw;
    width: 6.5104166667vw;
  }
  .sp-cta__btn-arrow svg {
    display: block;
    width: 100%;
    height: auto;
  }
  .scroll-cta {
    display: block !important;
    position: fixed;
    bottom: 2.6041666667vw;
    left: 2.6041666667vw;
    right: 2.6041666667vw;
    z-index: 999;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .scroll-cta.show {
    transform: translateY(0);
    opacity: 1;
  }
  .scroll-cta__inner {
    display: flex;
    gap: 1.953125vw;
    justify-content: center;
  }
  .scroll-cta__btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.6041666667vw 2.8645833333vw;
    color: #fff;
    text-decoration: none;
    flex: 1;
    border: 1px solid #fff;
    box-shadow: 0 0.6510416667vw 1.953125vw rgba(0, 0, 0, 0.3);
  }
  .scroll-cta__btn--gold {
    background: var(--color-gold);
  }
  .scroll-cta__btn--blue {
    background: var(--color-blue);
  }
  .scroll-cta__btn-text {
    display: flex;
    flex-direction: column;
    gap: 0.78125vw;
    padding-right: 4.6875vw;
    border-right: 1px solid #fff;
    font-size: 2.8645833333vw;
    font-weight: bold;
  }
  .scroll-cta__btn-text small {
    font-size: 2.6041666667vw;
    font-weight: 500;
  }
  .scroll-cta__btn-arrow {
    display: block;
    padding-left: 2.34375vw;
    width: 6.5104166667vw;
  }
  .scroll-cta__btn-arrow svg {
    display: block;
    width: 100%;
    height: auto;
  }
  .sp-hamburger {
    display: flex !important;
    position: fixed;
    top: 2.6041666667vw;
    right: 2.6041666667vw;
    width: 60px;
    height: 60px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 1002;
    background: none;
    border: none;
    cursor: pointer;
  }
  .sp-hamburger__line {
    display: block;
    width: 48px;
    height: 1px;
    background: #fff;
    transition: transform 0.3s ease, background 0.3s ease;
  }
  .sp-hamburger.is-active .sp-hamburger__line {
    background: #524b40 !important;
  }
  .sp-hamburger.is-active .sp-hamburger__line:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }
  .sp-hamburger.is-active .sp-hamburger__line:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }
  .present-popup__content {
    width: 85%;
  }
  .present-popup__close {
    top: 0.8333333333vw;
    right: 0.8333333333vw;
    width: 6.6666666667vw;
    height: 6.6666666667vw;
    font-size: 6vw;
  }
  .present {
    padding: 5.2083333333vw 0 15.625vw;
    overflow: visible;
    background: #f9f8f5;
  }
  .present .container__sm {
    overflow: visible;
  }
  .present__button {
    position: relative;
    padding: 1.3020833333vw 2.6041666667vw 1.3020833333vw 13.0208333333vw;
    font-size: 4.1666666667vw;
    font-weight: bold;
    border-radius: 10.4166666667vw;
    overflow: visible;
    border: 1px solid var(--color-gold);
    background: #f9f8f5;
    box-shadow: none;
  }
  .present__button::before {
    content: "Present";
    position: absolute;
    left: 3.90625vw;
    top: calc(50% + 0.2604166667vw);
    transform: translateY(-50%);
    font-size: 13.0208333333vw;
    font-family: absolute-beauty, sans-serif;
    color: var(--color-gold);
    letter-spacing: normal;
    white-space: nowrap;
    z-index: 1;
  }
  .present__button-content {
    gap: 1.953125vw;
  }
  .present__button-content::before {
    display: none;
  }
  .present__button-icon {
    width: 5.2083333333vw;
    height: 5.2083333333vw;
    font-size: 2.6041666667vw;
  }
  .present__button-text {
    white-space: nowrap;
  }
  .present__button-text-product {
    font-size: 2.34375vw;
  }
  .present__button-text-sub {
    display: none;
  }
  .present__close {
    top: 1.0416666667vw;
    right: 1.0416666667vw;
    width: 4.6875vw;
    height: 4.6875vw;
    font-size: 2.6041666667vw;
  }
  .about {
    background: #f9f8f5;
  }
  .about .container .section__title ruby rt {
    padding-bottom: 0px;
  }
  .about__bg-1 {
    top: 10.4166666667vw;
  }
  .about__bg-2 {
    bottom: 46.875vw;
  }
  .about__deco-3 {
    display: none;
  }
  .about__content-1 .about__deco-1,
  .about__content-1 .about__deco-2 {
    display: none;
  }
  .about__text {
    margin-top: 7.8125vw;
    font-size: 3.125vw;
    gap: 5.2083333333vw;
    padding-bottom: 7.8125vw;
  }
  .about__content-2 {
    padding-top: 1.3020833333vw;
    padding-bottom: 10.4166666667vw;
  }
  .about__content-2 .about__deco-1.sp {
    display: block !important;
    position: static;
    width: 70%;
    margin-bottom: 5.2083333333vw;
  }
  .about__content-2 .about__deco-1.sp img {
    width: 100%;
    height: auto;
  }
  .about__content-2 .about__deco-2.sp {
    display: block !important;
    position: static;
    width: 28%;
    margin-top: -10.4166666667vw;
    margin-bottom: 5.2083333333vw;
    float: right;
    margin-right: 10.4166666667vw;
  }
  .about__content-2 .about__deco-2.sp img {
    width: 100%;
    height: auto;
  }
  .about__content-2 .about__deco-3 {
    display: block !important;
    position: static;
    width: 100%;
    margin-bottom: 10.4166666667vw;
  }
  .about__content-2 .about__deco-3 img {
    width: 100%;
    height: auto;
  }
  .about__content-2 .container__sm {
    clear: both;
  }
  .about__content-2 .about__img {
    display: none;
  }
  .about__content-2 .about__img.sp {
    display: block !important;
    width: 43%;
    margin-left: 10.4166666667vw;
    margin-bottom: 7.8125vw;
  }
  .about__content-2 .about__img.sp img {
    width: 100%;
    height: auto;
  }
  .about__content-2 .about__img-list {
    display: flex !important;
    flex-direction: row;
    gap: 1.953125vw;
    margin-bottom: 7.8125vw;
  }
  .about__content-2 .about__img-list > div {
    flex: 1;
  }
  .about__content-2 .about__img-list > div img {
    width: 100%;
    height: auto;
  }
  .about__content-2 h3 {
    padding: 0 3.90625vw;
    font-size: 5.7291666667vw;
    margin-bottom: 6.5104166667vw;
  }
  .about__content-2 p {
    padding: 0 3.90625vw;
    font-size: 3.125vw;
    margin-bottom: 6.5104166667vw;
  }
  .floor-plan {
    padding: 10.4166666667vw 0;
  }
  .floor-plan__title {
    margin-bottom: 3.90625vw;
  }
  .floor-plan__title span {
    font-size: 4.6875vw;
  }
  .floor-plan p {
    font-size: 3.3854166667vw;
    margin: 0 0 13.0208333333vw;
  }
  .floor-plan p .pc-only {
    display: none;
  }
  .floor-plan__imgs.pc {
    display: none;
  }
  .floor-plan__inner {
    padding: 5.2083333333vw 3.2552083333vw;
  }
  .floor-plan__number {
    width: 7.8125vw;
    height: 7.8125vw;
    font-size: 3.125vw;
  }
  .floor-plan__slider.sp {
    display: block !important;
    position: relative;
    padding: 3.90625vw 2.6041666667vw 3.90625vw;
    overflow: visible;
  }
  .floor-plan__slider-inner {
    position: relative;
    text-align: center;
    padding: 13.0208333333vw 2.6041666667vw 5.2083333333vw;
    background: #fff;
  }
  .floor-plan__slider-inner .floor-plan__number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15.625vw;
    height: 15.625vw;
    background: #f9f8f5;
    border: 0.2604166667vw solid var(--color-gold);
    border-radius: 50%;
    color: var(--color-gold);
    font-size: 5.2083333333vw;
    z-index: 2;
  }
  .floor-plan__slider-inner img {
    width: 100%;
    height: auto;
    display: block;
  }
  .floor-plan__slider-nav .floor-plan__slider-prev,
  .floor-plan__slider-nav .floor-plan__slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8.4635416667vw;
    height: 8.4635416667vw;
    background: var(--color-gold);
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
  }
  .floor-plan__slider-nav .floor-plan__slider-prev::before,
  .floor-plan__slider-nav .floor-plan__slider-next::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
  }
  .floor-plan__slider-nav .floor-plan__slider-prev.swiper-button-disabled,
  .floor-plan__slider-nav .floor-plan__slider-next.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
  }
  .floor-plan__slider-nav .floor-plan__slider-prev {
    left: 0;
  }
  .floor-plan__slider-nav .floor-plan__slider-prev::before {
    border-width: 2.34375vw 3.125vw 2.34375vw 0;
    border-color: transparent #fff transparent transparent;
    margin-right: 0.390625vw;
  }
  .floor-plan__slider-nav .floor-plan__slider-next {
    right: 0;
  }
  .floor-plan__slider-nav .floor-plan__slider-next::before {
    border-width: 2.34375vw 0 2.34375vw 3.125vw;
    border-color: transparent transparent transparent #fff;
    margin-left: 0.390625vw;
  }
  .floor-plan__slider-pagination {
    display: flex;
    justify-content: center;
    gap: 1.5625vw;
    margin-top: 3.90625vw;
  }
  .floor-plan__slider-pagination .swiper-pagination-bullet {
    width: 1.953125vw;
    height: 1.953125vw;
    background: #d4d0c8;
    border-radius: 50%;
    opacity: 1;
  }
  .floor-plan__slider-pagination .swiper-pagination-bullet-active {
    background: var(--color-gold);
  }
  .point {
    background: #f9f8f5;
  }
  .point .section__title .ja {
    font-size: 4.6875vw;
  }
  .point .section__title .ja .num {
    font-size: 7.8125vw;
    margin-right: 0.78125vw;
  }
  .point__list.pc {
    display: none;
  }
  .point__slider.sp {
    display: block !important;
    margin: 6.5104166667vw 0 0;
    position: relative;
    padding-bottom: 7.8125vw;
  }
  .point__slider.sp .swiper-slide {
    width: 84%;
    background: #fff;
    overflow: hidden;
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }
  .point__slider.sp .swiper-slide-active {
    opacity: 1;
  }
  .point__slider.sp .point__slider-img {
    width: 100%;
    position: relative;
  }
  .point__slider.sp .point__slider-img img {
    width: 100%;
    height: auto;
    display: block;
  }
  .point__slider.sp .point__slider-content {
    display: flex;
    align-items: flex-start;
    gap: 7.8125vw;
    padding: 5.2083333333vw 3.2552083333vw 5.2083333333vw;
    background: #fff;
  }
  .point__slider.sp .point__slider-num {
    width: auto;
    height: 14.3229166667vw;
    flex-shrink: 0;
    opacity: 0.6;
  }
  .point__slider.sp .point__slider-text {
    padding-top: 1.3020833333vw;
  }
  .point__slider.sp .point__slider-text h3 {
    font-size: 4.6875vw;
    font-weight: bold;
    color: var(--color-text);
    margin-top: 0;
    margin-bottom: 2.6041666667vw;
    line-height: 1.5;
  }
  .point__slider.sp .point__slider-text p {
    font-size: 3.3854166667vw;
    color: var(--color-text);
    line-height: 1.8;
  }
  .point__slider.sp .point__slider-nav .point__slider-prev,
  .point__slider.sp .point__slider-nav .point__slider-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 8.4635416667vw;
    height: 8.4635416667vw;
    background: var(--color-gold);
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
  }
  .point__slider.sp .point__slider-nav .point__slider-prev::before,
  .point__slider.sp .point__slider-nav .point__slider-next::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
  }
  .point__slider.sp .point__slider-nav .point__slider-prev {
    left: 3.90625vw;
  }
  .point__slider.sp .point__slider-nav .point__slider-prev::before {
    border-width: 2.34375vw 3.125vw 2.34375vw 0;
    border-color: transparent #fff transparent transparent;
    margin-right: 0.390625vw;
  }
  .point__slider.sp .point__slider-nav .point__slider-next {
    right: 3.90625vw;
  }
  .point__slider.sp .point__slider-nav .point__slider-next::before {
    border-width: 2.34375vw 0 2.34375vw 3.125vw;
    border-color: transparent transparent transparent #fff;
    margin-left: 0.390625vw;
  }
  .point__slider.sp .point__slider-pagination {
    display: flex;
    justify-content: center;
    gap: 1.953125vw;
    margin-top: 3.90625vw;
  }
  .point__slider.sp .point__slider-pagination .swiper-pagination-bullet {
    width: 1.953125vw;
    height: 1.953125vw;
    background: #d4d0c8;
    border-radius: 50%;
    opacity: 1;
    transition: background 0.3s ease;
  }
  .point__slider.sp .point__slider-pagination .swiper-pagination-bullet-active {
    background: var(--color-gold);
  }
  .point__item {
    height: 52.0833333333vw;
  }
  .point__item-text {
    bottom: 1.953125vw;
    right: 1.953125vw;
    padding: 4.5572916667vw;
    min-width: 36.4583333333vw;
  }
  .point__item-text h3 {
    font-size: 3.90625vw;
    margin: 0 0 2.34375vw;
  }
  .point__item-text p {
    font-size: 2.8645833333vw;
  }
  .point__item.point__item-1 .point__item-text::after, .point__item.point__item-2 .point__item-text::after, .point__item.point__item-3 .point__item-text::after, .point__item.point__item-4 .point__item-text::after {
    width: 9.1145833333vw;
    height: 9.1145833333vw;
    bottom: 1.5625vw;
    right: 1.5625vw;
  }
  .point__feature {
    padding: 13.0208333333vw 0;
    background: #fff;
  }
  .point__feature .container__sm.pc {
    display: none;
  }
  .point__feature-list {
    gap: 3.2552083333vw;
    flex-direction: column;
  }
  .point__feature-item {
    width: 100%;
  }
  .point__feature-img {
    margin-bottom: 2.6041666667vw;
  }
  .point__feature-text h3 {
    font-size: 3.90625vw;
    margin: 0 0 1.3020833333vw;
    min-height: auto;
  }
  .point__feature-text p {
    font-size: 3.125vw;
  }
  .point__feature-slider.sp {
    display: block !important;
    position: relative;
    padding-bottom: 7.8125vw;
  }
  .point__feature-slider.sp .swiper-slide {
    width: 70%;
    overflow: hidden;
  }
  .point__feature-slider-img {
    width: 100%;
  }
  .point__feature-slider-img img {
    width: 100%;
    height: auto;
    display: block;
  }
  .point__feature-slider-text h3 {
    font-size: 4.4270833333vw;
    font-weight: bold;
    color: var(--color-text);
    margin-bottom: 1.953125vw;
    line-height: 1.5;
  }
  .point__feature-slider-text p {
    font-size: 3.3854166667vw;
    color: var(--color-text);
    line-height: 1.8;
  }
  .point__feature-slider-nav .point__feature-slider-prev,
  .point__feature-slider-nav .point__feature-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8.4635416667vw;
    height: 8.4635416667vw;
    background: var(--color-gold);
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
  }
  .point__feature-slider-nav .point__feature-slider-prev::before,
  .point__feature-slider-nav .point__feature-slider-next::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
  }
  .point__feature-slider-nav .point__feature-slider-prev {
    left: 3.90625vw;
  }
  .point__feature-slider-nav .point__feature-slider-prev::before {
    border-width: 2.34375vw 3.125vw 2.34375vw 0;
    border-color: transparent #fff transparent transparent;
    margin-right: 0.390625vw;
  }
  .point__feature-slider-nav .point__feature-slider-next {
    right: 3.90625vw;
  }
  .point__feature-slider-nav .point__feature-slider-next::before {
    border-width: 2.34375vw 0 2.34375vw 3.125vw;
    border-color: transparent transparent transparent #fff;
    margin-left: 0.390625vw;
  }
  .point__feature-slider-pagination {
    display: flex;
    justify-content: center;
    gap: 1.5625vw;
    margin-top: 3.2552083333vw;
  }
  .point__feature-slider-pagination .swiper-pagination-bullet {
    width: 1.953125vw;
    height: 1.953125vw;
    background: #d4d0c8;
    border-radius: 50%;
    opacity: 1;
    transition: background 0.3s ease;
  }
  .point__feature-slider-pagination .swiper-pagination-bullet-active {
    background: var(--color-gold);
  }
  .gallery .section__title {
    margin-bottom: 5.2083333333vw;
  }
  .gallery .section__title .ja {
    font-size: 4.6875vw;
  }
  .gallery__marquee {
    margin-bottom: 20.8333333333vw;
  }
  .gallery__marquee-row {
    margin-bottom: 0.390625vw;
  }
  .gallery__marquee-row--top .gallery__marquee-item {
    width: 71.6145833333vw;
  }
  .gallery__marquee-row--top .gallery__marquee-item img {
    height: 78.125vw;
  }
  .gallery__marquee-track {
    gap: 0.390625vw;
  }
  .gallery__marquee-item {
    width: 54.6875vw;
  }
  .gallery__marquee-item img {
    height: 44.2708333333vw;
  }
  .gallery__deco {
    display: block;
    width: 100%;
    position: relative;
  }
  .gallery__deco-inner {
    position: relative;
    padding-left: 40%;
    padding-bottom: 5.2083333333vw;
  }
  .gallery__deco-img1 {
    position: relative !important;
    width: 65.1041666667vw !important;
    right: auto !important;
    top: auto !important;
  }
  .gallery__deco-img1 img {
    width: 100%;
    height: auto;
  }
  .gallery__deco-img2 {
    position: absolute !important;
    width: 32% !important;
    top: 6% !important;
    left: 0 !important;
    right: auto !important;
  }
  .gallery__deco-img2 img {
    width: 100%;
    height: auto;
  }
  .gallery__deco-img3 {
    position: absolute !important;
    width: 26% !important;
    bottom: 16% !important;
    left: 11% !important;
    top: auto !important;
    right: auto !important;
  }
  .gallery__deco-img3 img {
    width: 100%;
    height: auto;
  }
  .gallery__content {
    padding-top: 0;
    padding-bottom: 13.0208333333vw;
    margin-bottom: 0;
    display: flex;
    flex-direction: column-reverse;
  }
  .gallery__content h4 {
    font-size: 3.90625vw;
    margin-bottom: 3.90625vw;
  }
  .gallery__content p {
    font-size: 3.125vw;
  }
  .gallery__title {
    font-size: 5.7291666667vw;
    margin-bottom: 6.5104166667vw;
  }
  .gallery__title .en {
    font-size: 5.7291666667vw;
    margin-bottom: 2.6041666667vw;
  }
  .parallax {
    height: 65.1041666667vw;
    background-attachment: scroll;
    background-position: center center;
  }
  .power {
    padding: 10.4166666667vw 0;
  }
  .power .section__title {
    margin-bottom: 6.5104166667vw;
  }
  .power .section__title .ja {
    font-size: 4.6875vw;
  }
  .power__main-list {
    gap: 7.8125vw;
    margin-bottom: 7.8125vw;
    flex-direction: column;
  }
  .power__main-item {
    width: 100%;
  }
  .power__main-img {
    margin-bottom: 2.6041666667vw;
  }
  .power__main-text h3 {
    font-size: 4.6875vw;
    margin-bottom: 1.5625vw;
  }
  .power__main-text p {
    font-size: 3.3854166667vw;
  }
  .power__sub-list {
    gap: 1.5625vw;
    flex-wrap: wrap;
    justify-content: center;
  }
  .power__sub-item {
    width: calc(33.333% - 1.3020833333vw);
  }
  .power__sub-item:nth-child(4), .power__sub-item:nth-child(5) {
    width: calc(33.333% - 1.3020833333vw);
  }
  .power__sub-img::after {
    display: none;
  }
  .power__sub-text h3 {
    font-size: 3.125vw;
  }
  .power__bg {
    bottom: 19.53125vw;
  }
  .comfortable {
    padding: 13.0208333333vw 0;
  }
  .comfortable .container__sm {
    padding: 0;
  }
  .comfortable .section__title small {
    font-size: 4.1666666667vw;
  }
  .comfortable .section__title span {
    font-size: 7.8125vw;
  }
  .comfortable .section__title span .small {
    font-size: 6.25vw;
  }
  .comfortable__list.pc {
    display: none !important;
  }
  .comfortable__toggle.pc {
    display: none !important;
  }
  .comfortable__item {
    width: calc(50% - 1.3020833333vw);
  }
  .comfortable__item::before {
    bottom: -2.2135416667vw;
  }
  .comfortable__item::after {
    right: -2.2135416667vw;
  }
  .comfortable__item-img {
    margin-bottom: 2.34375vw;
  }
  .comfortable__item-text h3 {
    font-size: 3.125vw;
  }
  .comfortable__item-text h3 small {
    font-size: 2.6041666667vw;
    margin-bottom: 0.5208333333vw;
  }
  .comfortable__slider.sp {
    display: block !important;
    margin-top: 7.8125vw;
    position: relative;
    padding-bottom: 7.8125vw;
  }
  .comfortable__slider.sp .swiper-slide {
    width: 75%;
    overflow: hidden;
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }
  .comfortable__slider.sp .swiper-slide-active {
    opacity: 1;
  }
  .comfortable__slider-img {
    width: 100%;
  }
  .comfortable__slider-img img {
    width: 100%;
    height: auto;
    display: block;
  }
  .comfortable__slider-text {
    padding: 2.6041666667vw;
    text-align: center;
  }
  .comfortable__slider-text h3 {
    font-size: 4.4270833333vw;
    font-weight: bold;
    color: var(--color-text);
    line-height: 1.5;
    margin-top: 0;
  }
  .comfortable__slider-text h3 small {
    display: block;
    font-size: 3.3854166667vw;
    font-weight: normal;
    margin-bottom: 0.6510416667vw;
  }
  .comfortable__slider-nav .comfortable__slider-prev,
  .comfortable__slider-nav .comfortable__slider-next {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 8.4635416667vw;
    height: 8.4635416667vw;
    background: var(--color-gold);
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
  }
  .comfortable__slider-nav .comfortable__slider-prev::before,
  .comfortable__slider-nav .comfortable__slider-next::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
  }
  .comfortable__slider-nav .comfortable__slider-prev {
    left: 3.90625vw;
  }
  .comfortable__slider-nav .comfortable__slider-prev::before {
    border-width: 2.34375vw 3.125vw 2.34375vw 0;
    border-color: transparent #fff transparent transparent;
    margin-right: 0.390625vw;
  }
  .comfortable__slider-nav .comfortable__slider-next {
    right: 3.90625vw;
  }
  .comfortable__slider-nav .comfortable__slider-next::before {
    border-width: 2.34375vw 0 2.34375vw 3.125vw;
    border-color: transparent transparent transparent #fff;
    margin-left: 0.390625vw;
  }
  .comfortable__slider-pagination {
    display: flex;
    justify-content: center;
    gap: 1.5625vw;
    margin-top: 3.2552083333vw;
  }
  .comfortable__slider-pagination .swiper-pagination-bullet {
    width: 1.953125vw;
    height: 1.953125vw;
    background: #d4d0c8;
    border-radius: 50%;
    opacity: 1;
    transition: background 0.3s ease;
  }
  .comfortable__slider-pagination .swiper-pagination-bullet-active {
    background: var(--color-gold);
  }
  .cta {
    padding-top: 9.1145833333vw;
  }
  .cta .section__title {
    margin-bottom: 3.90625vw;
  }
  .cta .section__title .en {
    font-size: 3.125vw;
  }
  .cta .section__title .ja {
    font-size: 4.6875vw;
  }
  .cta__text p {
    font-size: 3.125vw;
  }
  .cta__wrap {
    padding: 6.5104166667vw 0 5.2083333333vw 7.8125vw;
    border-top-left-radius: 7.8125vw;
  }
  .cta__btns {
    flex-direction: column;
    gap: 2.6041666667vw;
  }
  .cta__btns-img {
    display: none;
  }
  .cta__btns-item {
    width: 100%;
  }
  .cta__btns-item a {
    padding: 2.34375vw 2.8645833333vw;
    font-size: 3.125vw;
    justify-content: center;
  }
  .cta__btns-item a .text {
    gap: 0.6510416667vw;
    padding-right: 2.8645833333vw;
  }
  .cta__btns-item a .text small {
    font-size: 2.34375vw;
  }
  .cta__btns-item a .arrow {
    padding-left: 2.34375vw;
    width: 5.2083333333vw;
  }
  .usp__pallalax {
    height: 78.125vw;
  }
  .usp__logo-track {
    width: 200%;
    animation: logoMarquee 20s linear infinite;
  }
  .usp__logo-track img {
    width: 100%;
  }
  .usp__intro-box {
    padding: 10.4166666667vw 3.90625vw;
  }
  .usp__staff-free-title {
    gap: 1.5625vw;
    font-size: 3.90625vw;
    margin-bottom: 3.90625vw;
    flex-wrap: wrap;
    justify-content: center;
  }
  .usp__staff-free-title img {
    margin-top: 2.6041666667vw;
    height: 7.8125vw;
  }
  .usp__staff-free-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .usp__staff-free-list li {
    font-size: 4.4270833333vw;
  }
  .usp__staff-free-list li img {
    width: 4.9479166667vw;
    height: 4.9479166667vw;
  }
  .usp__staff-free-list li span::after {
    height: 5px;
    bottom: -0.78125vw;
  }
  .usp__staff-free-list li.item-3 {
    width: 100%;
    justify-content: center;
    margin-top: 2.6041666667vw;
  }
  .usp__intro-title {
    margin-bottom: 6.5104166667vw;
  }
  .usp__intro-title::before {
    width: 1px;
    height: 19.53125vw;
    left: -2.6041666667vw;
  }
  .usp__intro-title::after {
    width: 1px;
    height: 19.53125vw;
    right: -2.6041666667vw;
  }
  .usp__intro-title-sub {
    font-size: 4.1666666667vw;
    margin-bottom: 1.5625vw;
  }
  .usp__intro-title-main {
    font-size: 6.5104166667vw;
  }
  .usp__intro-title-main .accent {
    font-size: 9.1145833333vw;
  }
  .usp__intro p {
    font-size: 5.7291666667vw;
    margin-bottom: 7.8125vw;
  }
  .usp__intro-text {
    margin: 7.8125vw 0 !important;
  }
  .usp__intro-item {
    width: 33.8541666667vw;
    height: 22.1354166667vw;
    font-size: 3.125vw;
    color: #524b40;
  }
  .usp__intro-item::before {
    width: 3.125vw;
    height: 2.34375vw;
    top: calc(100% + 1.3020833333vw);
  }
  .usp__intro-item::after {
    width: 2.34375vw;
    height: 1.8229166667vw;
    top: calc(100% + 4.1666666667vw);
  }
  .usp__intro-item.item-1 {
    top: 29.9479166667vw;
  }
  .usp__intro-item.item-2 {
    right: calc(50% + 1.953125vw);
  }
  .usp__intro-item.item-3 {
    left: calc(50% + 1.953125vw);
  }
  .usp__intro-item.item-4 {
    top: 29.9479166667vw;
  }
  .usp__intro-img {
    padding-top: 45.5729166667vw;
    width: 31.25vw;
  }
  .usp__features-inner {
    padding: 0 3.90625vw;
  }
  .usp__features .features__title {
    background-size: cover;
    background-position-x: center;
    height: 41.6666666667vw;
    padding-top: 3.2552083333vw;
    margin: 0 -3.90625vw;
  }
  .usp__features .features__title small {
    font-size: 3.6458333333vw;
    margin-bottom: 2.6041666667vw;
  }
  .usp__features .features__title span {
    font-size: 5.2083333333vw;
  }
  .usp__features .features__title span .accent {
    font-size: 7.8125vw;
  }
  .usp__features .features__title-logo {
    height: 7.8125vw;
    margin-right: 1.3020833333vw;
  }
  .usp__features .features__wrap {
    margin-top: 5.2083333333vw;
  }
  .usp__features .features__inner {
    padding: 4.5572916667vw 5.2083333333vw;
    gap: 9.1145833333vw;
    flex-direction: column;
    position: relative;
  }
  .usp__features .features__inner::after {
    top: -7.8125vw;
    width: 28.6458333333vw;
    height: 7.8125vw;
  }
  .usp__features .features__badge {
    width: 20.8333333333vw;
    height: 20.8333333333vw;
    font-size: 3.125vw;
    position: absolute;
    top: 2.6041666667vw;
    right: -2.6041666667vw;
    z-index: 1;
  }
  .usp__features .features__badge span {
    font-size: 4.1666666667vw;
  }
  .usp__features .features__item {
    font-size: 3.125vw;
    padding: 1.8229166667vw 0 0;
  }
  .usp__features .features__item:not(:last-child) {
    padding-bottom: 1.8229166667vw;
  }
  .usp__features .features__item:not(:first-child) {
    padding-top: 1.8229166667vw;
  }
  .usp__features .features__item-icon {
    width: 3.90625vw;
    height: 3.90625vw;
  }
  .usp__calendar {
    margin-top: -13.0208333333vw;
    padding: 0 3.90625vw 9.1145833333vw;
  }
  .usp__calendar-inner {
    padding: 13.0208333333vw 3.90625vw 6.5104166667vw;
  }
  .usp__calendar-inner iframe {
    height: 680px;
  }
  .usp__calendar .section__title {
    display: none;
  }
  .usp__calendar .section__title .ja {
    font-size: 4.6875vw;
  }
  .usp__flow {
    padding: 0 3.90625vw;
    padding-bottom: 16.9270833333vw;
  }
  .usp__flow .section__title {
    margin-bottom: 4.5572916667vw;
  }
  .usp__flow .section__title .ja {
    font-size: 4.6875vw;
  }
  .usp__flow::before {
    height: 117.1875vw;
  }
  .usp__flow-inner {
    padding-top: 9.1145833333vw;
    padding-bottom: 9.1145833333vw;
    margin-top: -13.0208333333vw;
  }
  .usp .flow__note {
    font-size: 3.125vw;
    margin-bottom: 2.6041666667vw;
  }
  .usp .flow__need {
    padding: 3.2552083333vw;
    margin-bottom: 10.4166666667vw;
  }
  .usp .flow__need-text .heading {
    gap: 1.3020833333vw;
    font-size: 3.6458333333vw;
  }
  .usp .flow__need-text .heading .label {
    padding: 0.6510416667vw 1.3020833333vw;
    font-size: 3.6458333333vw;
  }
  .usp .flow__need-text p {
    font-size: 3.3854166667vw;
  }
  .usp .flow__need-img {
    display: none;
    width: 20.8333333333vw;
    height: 20.8333333333vw;
    right: 1.953125vw;
  }
  .usp .flow__list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 5.2083333333vw;
    margin-bottom: 6.5104166667vw;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 7.8125vw 2.6041666667vw 2.6041666667vw;
    margin-left: -2.6041666667vw;
    margin-right: -2.6041666667vw;
    -webkit-overflow-scrolling: touch;
  }
  .usp .flow__list::-webkit-scrollbar {
    display: none;
  }
  .usp .flow__item {
    flex: 0 0 65.1041666667vw;
    width: 65.1041666667vw;
    padding: 18.2291666667vw 2.6041666667vw 3.2552083333vw;
    border-radius: 1.3020833333vw;
    border: 2px solid #524b40;
    position: relative;
  }
  .usp .flow__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -6.5104166667vw;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9.1145833333vw 0 9.1145833333vw 7.8125vw;
    border-color: transparent transparent transparent #73b8bf;
    z-index: 10;
  }
  .usp .flow__item h4 {
    font-size: 4.4270833333vw;
    height: auto;
    min-height: 9.1145833333vw;
    margin-bottom: 2.6041666667vw;
  }
  .usp .flow__item p {
    font-size: 3.125vw;
  }
  .usp .flow__item .arrow {
    display: none;
  }
  .usp .flow__step {
    width: 20.8333333333vw;
    height: 20.8333333333vw;
    font-size: 3.125vw;
    top: 3.90625vw;
  }
  .usp .flow__step .num {
    font-size: 6.5104166667vw;
  }
  .usp .flow__faq {
    margin-top: 15.625vw;
  }
  .usp .flow__faq-title {
    margin-bottom: 4.5572916667vw;
  }
  .usp .flow__faq-title .en {
    font-size: 5.7291666667vw;
    margin-bottom: 1.953125vw;
  }
  .usp .flow__faq-title .ja {
    font-size: 4.1666666667vw;
  }
  .usp .flow__faq-item {
    margin-bottom: 2.34375vw;
  }
  .usp .flow__faq-item.is-open .flow__faq-answer {
    max-height: 65.1041666667vw;
  }
  .usp .flow__faq-question {
    padding: 3.2552083333vw 3.90625vw;
    font-size: 3.125vw;
    gap: 2.8645833333vw;
  }
  .usp .flow__faq-question > span:first-child {
    gap: 2.8645833333vw;
  }
  .usp .flow__faq-question > span:first-child::before {
    font-size: 5.7291666667vw;
  }
  .usp .flow__faq-icon {
    width: 6.5104166667vw;
    height: 6.5104166667vw;
  }
  .usp .flow__faq-icon::before {
    width: 2.6041666667vw;
  }
  .usp .flow__faq-icon::after {
    height: 2.6041666667vw;
  }
  .usp .flow__faq-answer p {
    gap: 2.8645833333vw;
    padding: 2.8645833333vw 0 3.90625vw;
    margin: 0 3.90625vw;
    font-size: 3.125vw;
  }
  .usp .flow__faq-answer p::before {
    font-size: 5.7291666667vw;
  }
  .map {
    padding-top: 10.4166666667vw;
    padding-bottom: 0;
  }
  .map .section__title {
    margin-bottom: 4.5572916667vw;
  }
  .map__wrap {
    height: 72.9166666667vw;
    margin-bottom: 9.1145833333vw;
  }
  .map__text {
    margin-bottom: 4.5572916667vw;
  }
  .map__text p {
    font-size: 3.125vw;
  }
  .map__content {
    margin-top: 13.0208333333vw;
  }
  .map__content-line {
    top: 5.859375vw;
  }
  .map__content h3 {
    font-size: 5.7291666667vw;
    margin: 0 0 7.8125vw;
  }
  .map__content h3 .en {
    font-size: 5.7291666667vw;
    margin-bottom: 2.8645833333vw;
  }
  .map__content p {
    font-size: 3.125vw;
    margin: 0 0 6.5104166667vw;
  }
  .map__content-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
  }
  .reservation {
    padding: 13.0208333333vw 0 15.625vw;
  }
  .reservation .section__title {
    margin-bottom: 4.5572916667vw;
  }
  .reservation .section__title .ja {
    font-size: 5.7291666667vw;
  }
  .reservation__subtitle {
    margin-bottom: 6.5104166667vw;
  }
  .reservation__subtitle span {
    padding: 2.0833333333vw 7.8125vw;
    font-size: 4.1666666667vw;
  }
  .reservation__cards {
    gap: 3.90625vw;
    flex-direction: column;
  }
  .reservation__card {
    width: 100%;
    padding: 3.125vw;
  }
  .reservation__card--unmanned, .reservation__card--staffed {
    display: flex;
    align-items: flex-start;
    gap: 2.6041666667vw;
  }
  .reservation__card--unmanned .reservation__card-img, .reservation__card--staffed .reservation__card-img {
    margin-bottom: 0;
    height: 28.6458333333vw;
    width: 24.7395833333vw;
    flex-shrink: 0;
  }
  .reservation__card--unmanned .reservation__card-img img, .reservation__card--staffed .reservation__card-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .reservation__card--unmanned .reservation__card-content, .reservation__card--staffed .reservation__card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .reservation__card--unmanned .reservation__card-label, .reservation__card--staffed .reservation__card-label {
    margin-bottom: 1.0416666667vw;
  }
  .reservation__card--unmanned .reservation__card-title, .reservation__card--staffed .reservation__card-title {
    margin-bottom: 3.2552083333vw;
  }
  .reservation__card-label {
    font-size: 3.125vw;
    margin-bottom: 2.0833333333vw;
  }
  .reservation__card-title {
    font-size: 5.2083333333vw;
    margin-bottom: 3.2552083333vw;
  }
  .reservation__card-btn {
    gap: 2.0833333333vw;
    padding: 2.34375vw 5.2083333333vw;
    font-size: 3.125vw;
    border-radius: 6.5104166667vw;
  }
  .reservation__card-btn--cyan {
    margin-bottom: 3.125vw;
    margin: 0 auto;
  }
  .reservation__card-btn--gold {
    margin-bottom: 3.125vw;
    margin: 0 auto;
  }
  .reservation__card-btn-icon {
    width: 4.6875vw;
    height: 4.6875vw;
  }
  .reservation__card-btn-icon::before {
    width: 1.8229166667vw;
  }
  .reservation__card-btn-icon::after {
    width: 1.0416666667vw;
    height: 1.0416666667vw;
  }
}/*# sourceMappingURL=hygge.css.map */