.side-menu {
  animation-delay: 2600ms;
}
.header-logo {
  display: none;
}

.hero {
  width: 100%;
  height: calc(100vh + 100px);
  position: relative;
  overflow: hidden;
}

.hero .kv-background {
  width: 100%;
  height: auto;
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center bottom;
  transform: scale(1.15);
  animation: zoomUp 15000ms linear forwards;
}

@keyframes zoomUp {
  0% {
    transform-origin: center bottom;
    transform: scale(1.15);
  }
  100% {
    transform-origin: center bottom;
    transform: scale(1.3);
  }
}

.hero .logo-portside {
  width: 400px;
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
  margin: auto;
}

.hero .logo-portside g > path {
  opacity: 0;
  animation: topLogofade 1600ms linear forwards;
}

.hero .logo-portside g > g {
  opacity: 0;
  transform: translateY(1.5625vw) translateZ(0);
  animation: topLogofade2 1000ms linear forwards;
}

.hero .logo-portside g > path:nth-child(1) {
  animation-delay: 700ms;
}
.hero .logo-portside g > path:nth-child(2) {
  animation-delay: 800ms;
}
.hero .logo-portside g > path:nth-child(3) {
  animation-delay: 900ms;
}
.hero .logo-portside g > path:nth-child(4) {
  animation-delay: 1000ms;
}
.hero .logo-portside g > path:nth-child(5) {
  animation-delay: 1100ms;
}
.hero .logo-portside g > path:nth-child(6) {
  animation-delay: 1200ms;
}
.hero .logo-portside g > path:nth-child(7) {
  animation-delay: 1300ms;
}
.hero .logo-portside g > path:nth-child(8) {
  animation-delay: 1400ms;
}

.hero .logo-portside g > g:nth-child(9) {
  animation-delay: 1500ms;
}
.hero .logo-portside g > g:nth-child(10) {
  animation-delay: 1600ms;
}
.hero .logo-portside g > g:nth-child(11) {
  animation-delay: 1700ms;
}
.hero .logo-portside g > g:nth-child(12) {
  animation-delay: 1800ms;
}
.hero .logo-portside g > g:nth-child(13) {
  animation-delay: 1900ms;
}
.hero .logo-portside g > g:nth-child(14) {
  animation-delay: 2000ms;
}
.hero .logo-portside g > g:nth-child(15) {
  animation-delay: 2100ms;
}
.hero .logo-portside g > g:nth-child(16) {
  animation-delay: 2200ms;
}
.hero .logo-portside g > g:nth-child(17) {
  animation-delay: 2300ms;
}
.hero .logo-portside g > g:nth-child(18) {
  animation-delay: 2400ms;
}
.hero .logo-portside g > g:nth-child(19) {
  animation-delay: 2500ms;
}


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

@keyframes topLogofade2 {
  0% {
    opacity: 0;
    transform: translateY(1.5625vw) translateZ(0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.hero .input-bar {
  width: 587px;
  height: 42px;
  background: url(../img/input_bg.svg) center center / 100% 100% no-repeat;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 140px;
  margin: auto;
  opacity: 0;
  transform: translateY(1.5625vw) translateZ(0);
  animation: topInputAnim 1600ms 2700ms linear forwards;
}

@keyframes topInputAnim {
  0% {
    opacity: 0;
    transform: translateY(30%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .input-bar .submit {
  width: 121px;
  height: 42px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  padding-right: 13px;
  background: url(../img/submit_bg.svg) center center / 100% 100% no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}

.hero .input-email {
  display: flex;
  align-items: center;
  gap: 11px;
  height: 100%;
}

.hero .input-email .label {
  width: 142px;
  margin-left: 11px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  color: var(--primary-color);
}

.hero .input-email .input {
  width: calc(100% - 142px - 121px);
  font-size: 18px;
  color: var(--primary-color);
  caret-color: var(--primary-color);
}

@media screen and (max-width: 767px) {
  .hero .logo-portside {
    width: calc(248 * var(--basic-width));
    top: calc(40 * var(--basic-width));
  }

  .hero .kv-background {
    min-height: 1000px;
    overflow: hidden;
  }

  .hero .input-bar { 
    width: 351px;
    height: 40px;
    bottom: 150px;
    background: url(../img/input_bg_sp.svg) center center / 100% 100% no-repeat;
  }

  .hero .input-email {
    gap: 20px;
  }

  .hero .input-email .label {
    width: 90px;
    font-size: 14px;
    margin-left: 24px;
  }

  .hero .input-email .input {
    font-size: 14px;
  }

  .hero .input-bar .submit {
    width: 91px;
    height: 40px;
    font-size: 14px;
    background: url(../img/submit_bg_sp.svg) center center / 100% 100% no-repeat;
  }
  
}

/* --------------------------
            about
---------------------------- */
.about {
  margin-top: 80px;
  text-align: center;
}

.about .img {
  aspect-ratio: 706/502;
  width: calc(706 * var(--basic-width));
  height: 100%;
  margin: auto;
  opacity: 0;
  transform: translateY(1.5625vw) translateZ(0);
  transition: opacity 800ms cubic-bezier(0.2, 0.5, 0.4, 1), transform 800ms linear;
}

.about .img.show {
  opacity: 1;
  transform: none;
}

.about .heading-title {
  margin: 40px 0 30px;

}

.about .lead-text {
  font-size: 18px;
  opacity: 0;
  transform: translateY(1.5625vw) translateZ(0);
  transition: opacity 800ms cubic-bezier(0.2, 0.5, 0.4, 1), transform 800ms linear;
  max-width: 1095px;
  width: 100%;
  margin-inline: auto;
}

.about .lead-text.show {
  opacity: 1;
  transform: none;
}

@media screen and (max-width: 767px) {
  .about {
    margin-top: calc(80 * var(--basic-width));
  }

  .about .img {
    width: calc(340 * var(--basic-width));
  }

  .about .heading-title {
    margin: calc(35 * var(--basic-width)) 0 calc(25 * var(--basic-width));
  }

  .about .lead-text {
    width: calc(100% - calc(60 * var(--basic-width)));
    font-size: 14px;
    margin: auto;
    text-align: left;
  }
}

/* --------------------------
            gallery
---------------------------- */

.gallery {
  margin-top: 200px;
  text-align: center;
}

.gallery .description {
  font-size: 16px;
  line-height: 1.125;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(1.5625vw) translateZ(0);
  transition: opacity 800ms cubic-bezier(0.2, 0.5, 0.4, 1), transform 800ms linear;
}

.gallery .description.show {
  opacity: 1;
  transform: none;
}

.gallery .main-btn-style {
  margin-top: 60px;
  opacity: 0;
  transform: translateY(1.5625vw) translateZ(0);
  transition: opacity 800ms cubic-bezier(0.2, 0.5, 0.4, 1), transform 800ms linear;
}

.gallery .main-btn-style.show {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
  .gallery {
    margin-top: 100px;
  }

  .gallery .description {
    width: calc(100% - calc(60 * var(--basic-width)));
    font-size: 14px;
    margin: 25px auto 0;
  }

  .gallery .main-btn-style {
    margin-top: 25px;
  }
}

/* --------------------------
            access
---------------------------- */
.access {
  margin-top: 200px;
  text-align: center;
}

.access .map-wrapper {
  aspect-ratio: 924/393;
  width: calc(928 * var(--basic-width));
  height: 100%;
  margin: 60px auto 0;
  box-sizing: border-box;
  border: solid 2px var(--primary-color);
  opacity: 0;
  transform: translateY(1.5625vw) translateZ(0);
  transition: opacity 800ms cubic-bezier(0.2, 0.5, 0.4, 1), transform 800ms linear;
}

.access .map-wrapper.show {
  opacity: 1;
  transform: translateY(0);
}

.access .iframe {
  display: block;
  aspect-ratio: 924/393;
  width: 100%;
  height: 100%;
  filter: hue-rotate(325deg);
  -webkit-filter: hue-rotate(325deg);
  box-sizing: border-box;
}

.access .description {
  font-size: 18px;
  margin: 30px auto 0;
  opacity: 0;
  transform: translateY(1.5625vw) translateZ(0);
  transition: opacity 800ms cubic-bezier(0.2, 0.5, 0.4, 1), transform 800ms linear;
  max-width: calc(928 * var(--basic-width));
  text-align: left;
}

.access .description.show {
  opacity: 1;
  transform: none;
}

@media screen and (max-width: 767px) {
  .access {
    margin-top: 100px;
  }

  .access .map-wrapper {
    aspect-ratio: 330/200;
    width: calc(330 * var(--basic-width));
    margin: 60px auto 0;
  }

  .access .iframe {
    aspect-ratio: 330/200;
  }

  .access .description {
    width: calc(100% - calc(60 * var(--basic-width)));
    font-size: 16px;
    margin: 40px auto 0;
  }
}

.floor_plans {
  margin-top: 200px;
}


.facts {
  margin-top: 200px;
}
.facts-list {
  max-width: 1095px;
  width: 100%;
  margin-inline: auto;
  margin-top: 100px;
}
.facts-item {
  margin-bottom: 50px;
}
.facts-item-title {
  margin-bottom: 25px;

  overflow: hidden;
}
.facts-item-title p {
  font-weight: bold;
  font-size: 20px;
  text-align: center;

  transform: translateY(1.5625vw) translateZ(0);
  transition: opacity 800ms cubic-bezier(0.2, 0.5, 0.4, 1), transform 800ms linear;  
}
.show .facts-item-title p {
  transform: none;  
}
.facts-item-detail {
  overflow: hidden;
}
.facts-item-detail p {
  text-align: center;
  line-height: 1.95;
  transform: translateY(1.5625vw) translateZ(0);
  transition: opacity 800ms cubic-bezier(0.2, 0.5, 0.4, 1), transform 800ms linear; 
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 .5em;
}
.show .facts-item-detail p {
  transform: none;
}
.floor_plans .main-swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.floor_plans .main-swiper-slide .img {
  height: 80%;
  object-fit: contain;
}
.facts-item:nth-of-type(1) {
  /* transition-delay: 200ms; */
}
.facts-item:nth-of-type(2) {
  transition-delay: 500ms;
}
.facts-item:nth-of-type(3) {
  transition-delay: 1000ms;
}
.facts-item:nth-of-type(4) {
  transition-delay: 1500ms;
}



@media screen and (max-width: 767px) {
  .floor_plans, .facts {
    margin-top: 100px;
  }
  .facts-list {
    padding: 0 20px;
    margin-top: 40px;
  }
  .facts-item-title p {
    font-size: 15px;
  }
  .facts-item-detail {
    font-size: 13px;
  }

  .floor_plans .main-swiper-slide {
    padding: 20px 0;
  }
  .floor_plans .main-swiper-slide .img {
    height: 100%;
    object-fit: contain;
  }
}



