/*	cmn-color
------------------------------------ */
/*	transition,hover
------------------------------------ */
/*	media-screen
------------------------------------ */
/*	font
------------------------------------ */
/*	layout
------------------------------------ */
/* MV  PC
------------------------------------ */
@keyframes mvborder {
  to {
    width: 100%;
    height: 100%;
  }
}
.mv-catch {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .mv-catch {
    margin: auto;
    animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards, moveCatch 1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
    animation-delay: 0.2s, 1.1s;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -40%);
  }
}
@media screen and (max-width: 767px) {
  .mv-catch {
    animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.5s;
  }
}
.mv-catch {
  z-index: 10;
}

@media screen and (min-width: 768px) {
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translate(-50%, -40%);
    }
    to {
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }
}
@media screen and (max-width: 767px) {
  @keyframes fadeUp {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}
@keyframes moveCatch {
  from {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  to {
    left: 1%;
    top: 19.1%;
    transform: translate(0, 0);
  }
}
.mv-img {
  clip-path: inset(0 100% 0 0);
  animation: mvImgReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.mv-img01, .mv-sp01 {
  animation-delay: 1.3s;
}

.mv-img02, .mv-sp02 {
  animation-delay: 1.5s;
}

.mv-img03, .mv-sp03 {
  animation-delay: 1.7s;
}

.mv-img04, .mv-sp04 {
  animation-delay: 1.9s;
}

.mv-img05, .mv-sp05 {
  animation-delay: 2.1s;
}

@keyframes mvImgReveal {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }
}
.top .headline, .top .gnav {
  animation: mvhead 1.4s ease forwards;
  animation-delay: 2s;
  opacity: 0;
}

.is-loading .sidebar, .is-loading .sp-menu-btn-wrp {
  animation: mvhead 1.4s ease forwards;
  animation-delay: 2s;
  opacity: 0;
}

@keyframes mvhead {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* SV  PC
------------------------------------ */
.sv-img {
  animation: svReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.sv-img .fit {
  transform: scale(1.12);
  animation: svImgScale 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes svReveal {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
@keyframes svImgScale {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}/*# sourceMappingURL=animation.css.map */