@charset "UTF-8";
body {
  position: relative;
}

/*==========================================================
SP
==========================================================*/
#main-nav h1 .main-logo {
  background-image: url(../img/logo_w.webp);
}
#main-nav .hamburger_line {
  background-color: #fff;
}

#top-mv {
  height: 100svh;
  overflow: hidden;
}
#top-mv .main-movie {
  height: 100svh;
  width: 100%;
  line-height: initial;
  font-size: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.guidline {
  position: absolute;
  height: 100svh;
  width: 100%;
  top: 0;
  left: 0;
}
.guidline_inner {
  position: absolute;
  display: block;
  background-color: #fff;
  bottom: -30px;
  right: 0;
  left: 0;
  height: 0vh;
  width: 1px;
  margin: 0 auto;
  mix-blend-mode: difference;
  animation: line 8s infinite;
}
@keyframes line {
  /* 0%: 線がない状態。開始位置を「伸び切った時の上端」に合わせるため、bottomを高く設定します */
  0% {
    height: 0vh;
    bottom: calc(-30px + 30vh);
  }
  /* 50%: 線が伸び切った状態。bottomを所定の位置(-30px)まで下げることで、上端を固定したまま伸びたように見せます */
  50% {
    height: 30vh;
    bottom: -30px;
  }
  /* 100%: bottomを固定したまま高さを0にすることで、上端が下がって消える動きになります */
  100% {
    height: 0vh;
    bottom: -30px;
  }
}

#btn-erea {
  padding: 40px 0 0;
  background-color: #f1f1f1;
}
#btn-erea .design-btn_box {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border: #000 solid 1px;
  text-align: center;
  padding: 8px 20px;
  margin: auto;
}
#btn-erea .design-btn_box p {
  font-size: 12px;
  letter-spacing: 0.3em;
}

/*==========================================================
タブレット
==========================================================*/
@media screen and (min-width: 744px) {
  body {
    height: 100vh;
    position: relative;
    background-color: #f1f1f1;
  }
  #top-mv {
    height: auto;
    width: auto;
  }
  #top-mv .main-movie {
    display: block;
    height: auto;
    width: 100%;
    aspect-ratio: 16/9;
  }
  .guidline {
    height: auto;
    aspect-ratio: 16/9;
  }
  .guidline_inner {
    bottom: -30px;
    right: 0;
    left: 0;
    height: 0px;
    width: 1px;
    margin: 0 auto;
    mix-blend-mode: difference;
    animation: line 8s infinite;
  }
  @keyframes line {
    /* 0%: 線がない状態。開始位置を「伸び切った時の上端」に合わせるため、bottomを高く設定します */
    0% {
      height: 0vh;
      bottom: 70px;
    }
    /* 50%: 線が伸び切った状態。bottomを所定の位置(-30px)まで下げることで、上端を固定したまま伸びたように見せます */
    50% {
      height: 100px;
      bottom: -30px;
    }
    /* 100%: bottomを固定したまま高さを0にすることで、上端が下がって消える動きになります */
    100% {
      height: 0px;
      bottom: -30px;
    }
  }
  footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 60px 0 30px;
  }
}
/*==========================================================
pc
==========================================================*/
@media screen and (min-width: 1025px) {
  main {
    overflow-y: hidden;
  }
  main #top-mv {
    height: 100vh;
    width: 100%;
  }
  main #top-mv .main-movie {
    display: block;
    height: 100vh;
    width: 100%;
  }
  .guidline {
    height: 100vh;
    width: 100%;
    aspect-ratio: auto;
  }
  .guidline_inner {
    bottom: -30px;
    right: 0;
    left: 0;
    height: 0px;
    width: 1px;
    margin: 0 auto;
    mix-blend-mode: difference;
    animation: line 5s infinite;
  }
  @keyframes line {
    /* 0%: 線がない状態。開始位置を「伸び切った時の上端」に合わせるため、bottomを高く設定します */
    0% {
      height: 0vh;
      bottom: 120px;
    }
    /* 50%: 線が伸び切った状態。bottomを所定の位置(-30px)まで下げることで、上端を固定したまま伸びたように見せます */
    50% {
      height: 150px;
      bottom: -30px;
    }
    /* 100%: bottomを固定したまま高さを0にすることで、上端が下がって消える動きになります */
    100% {
      height: 0px;
      bottom: -30px;
    }
  }
  footer {
    position: static;
    overflow-y: hidden;
  }
}/*# sourceMappingURL=top.css.map */