@charset "UTF-8";

/* fadeInLeft */
.fadeInLeft{
animation-name:fadeInLeftAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
animation-delay:2s;
}

@keyframes fadeInLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-50px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

.js-fadeInLeft {
    opacity: 0;
}