@charset "UTF-8";
/******************
アニメーションcss
******************/
.action {
  opacity: 0;
  transition: 1.2s all;
}
.action.fadeup {
  transform: translateY(60px);
}
.action.animated {
  opacity: 1;
  transform: none;
}

@keyframes flash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
  }
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-bottom {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0);
    opacity: 1;
  }
  25% {
    transform: translate(-5px, -5px);
  }
  50% {
    transform: translate(-5px, 5px);
    opacity: 0.2;
  }
  75% {
    transform: translate(5px, 5px);
  }
  100% {
    transform: translate(0);
    opacity: 1;
  }
}
.fade_IN {
  opacity: 0;
}

.fade_IN.show {
  animation: fadeIn 0.9s ease-out forwards;
}

@media screen and (max-width: 768px) {
  .fade_IN.show {
    animation: fadeIn 0.3s ease-out forwards;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade_UPIN {
  opacity: 0;
  transform: translateY(40px);
}

.fade_UPIN.show {
  animation: fadeUpIn 0.6s ease-out forwards;
}

@media screen and (max-width: 768px) {
  .fade_UPIN.show {
    animation: fadeUpIn 0.3s ease-out forwards;
  }
}
@keyframes fadeUpIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  60% {
    opacity: 0.7;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpIn_2 {
  opacity: 0;
  transform: translateY(40px);
}

.fadeUpIn_2.show {
  animation: fadeUpIn_2 0.6s ease-out forwards;
}

@media screen and (max-width: 768px) {
  .fadeUpIn_2.show {
    animation: fadeUpIn_2 0.3s ease-out forwards;
  }
}
@keyframes fadeUpIn_2 {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  60% {
    opacity: 0.7;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpIn_2:nth-child(1) {
  animation-delay: 0.2s;
}

.fadeUpIn_2:nth-child(2) {
  animation-delay: 0.4s;
}

.fadeUpIn_2:nth-child(3) {
  animation-delay: 0.6s;
}

.fadeUpIn_2:nth-child(4) {
  animation-delay: 0.8s;
}/*# sourceMappingURL=animation.css.map */