@charset "UTF-8";

.fadeIn {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
  animation-duration: .8s;
  animation-delay: .3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.zoomOut {
  animation-name: zoomOut;
  animation-duration: 1.4s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes zoomOut {
  0% {
    filter: blur(50px);
    transform: scale(3);
    opacity: 0;
  }

  100% {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

.slideInLeft {
  transform: translate(-30%, 0);
  animation-name: slideInLeft;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

@keyframes slideInLeft {
  from {
    transform: translate(-30%, 0);
  }

  to {
    transform: translate(0, 0);
  }
}

.slideInRight {
  transform: translate(30%, 0);
  animation-name: slideInRight;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

@keyframes slideInRight {
  from {
    transform: translate(30%, 0);
  }

  to {
    transform: translate(0, 0);
  }
}

.slideInRightFace {
  opacity: 0;
  animation-name: slideInRightFace;
  animation-duration: .6s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

@keyframes slideInRightFace {
  from {
    transform: translate(50%, 0);
    opacity: 0;
  }

  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.face-delay-1 {
  animation-delay: .2s;
}

.face-delay-2 {
  animation-delay: .3s;
}

.face-delay-3 {
  animation-delay: .4s;
}

.slideInUP {
  opacity: 0;
  animation-name: slideInUP;
  animation-duration: .6s;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

@keyframes slideInUP {
  from {
    transform: translate(0, 15%);
    opacity: 0;
  }

  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.sign {
  opacity: 0;
  animation-name: signDown;
  animation-duration: .6s;
  animation-delay: .3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

@keyframes signDown {
  0% {
    transform: translate(0, -50%);
    opacity: 0;
  }

  60% {
    transform: translate(0, 0);
    opacity: 1;
  }

  80% {
    transform: translate(0, -1%);
    opacity: 1;
  }

  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}


.blur {
  transform: scale(0.8);
  opacity: 0;
  filter: blur(50px);
  animation: blur-anime 1.5s linear forwards;
  animation-delay: 1s;
}

@keyframes blur-anime {
  100% {
    filter: blur(50px);
    transform: scale(0.95);
    opacity: 0;
  }

  100% {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

.eachTextAnime {
  text-wrap: nowrap;
}

.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime:not(.appeartext) {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.intro p span.introductionIn {
  animation-name: introductionIn;
  animation-duration: 1s;
  animation-delay: 1.8s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  display: inline-block;
  opacity: 0;
  transform: scale(0.6);
  padding: 0;
  letter-spacing: inherit;
}

@keyframes introductionIn {
  0% {
    opacity: 0;
    transform: scale(0.6);
    filter: blur(24px);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@media screen and (min-width: 1px) and (max-width: 750px) {

}