@charset "UTF-8";

/*fade-in*/
.fl-text {
  opacity: 0;
  transform: translateX(20px);
  transition: none; /* Not Delate */
}
.fl-textY{
    transform: translateY(20px);
}
.fl-textX{
    transform: translateX(-20px);
}
.fl-text.is-visible {
  animation: fadeInLeft 0.8s ease-out forwards;
  animation-play-state: running;
}
.fl-text02.is-visible {
  animation-delay: 0.5s;
}
.fl-textY.is-visible {
  animation: fadeInBottom 0.8s ease-out forwards;
  animation-play-state: running;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInBottom {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*fl-mots*/
.fl-mots {
  opacity: 0;
  transform: translateY(20px);
  transition: none; /* Not Delate */
}
.fl-mots.is-visible {
  animation: motion 0.8s ease-out forwards;
  animation-play-state: running;
}
.fl-mots01.is-visible {
  animation-delay: 0.5s;
}
.fl-mots01.is-visible {
  animation-delay: 0.8s;
}
@keyframes motion {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
