@charset "UTF-8";
.animation_reverse {
  animation-direction: reverse;
}

/* スライドイン */
@keyframes slideIn_t {
  from {
    opacity: 0;
    transform: translateY(-50%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideIn_r {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideIn_b {
  from {
    opacity: 0;
    transform: translateY(50%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideIn_b2 {
  from {
    opacity: 0;
    transform: translateY(20%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideIn_l {
  from {
    opacity: 0;
    transform: translateX(-50%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
[js-slide_in],
[js-slide_in=bottom] {
  opacity: 0;
  animation-timing-function: ease-out;
}
[js-slide_in].is-start,
[js-slide_in=bottom].is-start {
  animation: slideIn_b 0.8s forwards;
}

[js-slide_in=bottom2] {
  opacity: 0;
  animation-timing-function: ease-out;
}
[js-slide_in=bottom2].is-start {
  animation: slideIn_b2 0.8s forwards;
}

[js-slide_in=top] {
  opacity: 0;
  animation-timing-function: ease-out;
}
[js-slide_in=top].is-start {
  animation: slideIn_t 0.8s forwards;
}

[js-slide_in=right] {
  opacity: 0;
  animation-timing-function: ease-out;
}
[js-slide_in=right].is-start {
  animation: slideIn_r 0.8s forwards;
}

[js-slide_in=left] {
  opacity: 0;
  animation-timing-function: ease-out;
}
[js-slide_in=left].is-start {
  animation: slideIn_l 0.8s forwards;
}

/* フェードイン/アウト */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
[js-fade_in] {
  opacity: 0;
}
[js-fade_in].is-start {
  animation: fadeIn 0.5s forwards;
}

[js-fade_out] {
  opacity: 1;
}
[js-fade_out].is-start {
  animation: fadeOut 0.5s forwards;
}

[js-fade_in_out] {
  animation: fadeOut 0.5s forwards;
}
[js-fade_in_out].is-start {
  animation: fadeIn 0.5s forwards;
}/*# sourceMappingURL=animation.css.map */