@charset "UTF-8";

/* 下から上 */
.parabox {
  opacity: 0;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transform: translate(0, 100px);
}

.parabox.fade {
  opacity: 1;
  transform: translate(0, 0);
}

/* 左右のアニメーション */
.animationLR {
  visibility: hidden;
}

.fadeInDownLR {
  display: block;
  visibility: visible !important;
  animation-name: fadeInDownR;
  animation-duration: 0.7s;
  animation-fill-mode: both;
}

.fadeInDownLR:nth-child(even){
  animation-name: fadeInDownL;
}

@keyframes fadeInDownR {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }

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

@keyframes fadeInDownL {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }

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

/* 左から右 */
.animation1 {
  visibility: hidden;
}

.fadeInDown1 {
  display: block;
  visibility: visible !important;
  animation-name: fadeInDown1;
  animation-duration: 0.7s;
  animation-fill-mode: both;
}

@keyframes fadeInDown1 {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }

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

/* 右から左 */
.animation2 {
  visibility: hidden;
}

.fadeInDown2 {
  display: block;
  visibility: visible !important;
  animation-name: fadeInDown2;
  animation-duration: 0.7s;
  animation-fill-mode: both;
}

@keyframes fadeInDown2 {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }

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

/* 下から順番に上へフェードイン */
.delay-show1 .show, .delay-show2 .show, .delay-show3 .show {
  position: relative;
  top: 60px;
  opacity: 0;
}