@charset "UTF-8";
.animation {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}
@keyframes kakikakiAnime {
  from {
    animation-timing-function: linear;
    transform: translate(0px, 0px) scale(1, 1) rotate(0deg) skew(0deg, 0deg);
    opacity: 1;
  }
  to {
    animation-timing-function: linear;
    transform: translate(0px, 0px) scale(1, 1) rotate(0deg) skew(0deg, 0deg);
    opacity: 1;
  }
  40% {
    animation-timing-function: linear;
    transform: translate(70px, -10px) scale(1, 1) rotate(15deg) skew(0deg, 0deg);
    opacity: 1;
  }
  20% {
    animation-timing-function: linear;
    transform: translate(20px, -10px) scale(1, 1) rotate(-15deg) skew(0deg, 0deg);
    opacity: 1;
  }
  85% {
    animation-timing-function: linear;
    transform: translate(20px, -10px) scale(1, 1) rotate(-15deg) skew(0deg, 0deg);
    opacity: 1;
  }
  65% {
    animation-timing-function: linear;
    transform: translate(70px, -10px) scale(1, 1) rotate(15deg) skew(0deg, 0deg);
    opacity: 1;
  }
}
.kakikaki {
  animation-name: kakikakiAnime;
  transform-origin: center center;
}

.fadein,
.fadein_delay1,
.fadein_delay2,
.fadein_nissisan {
  opacity: 0;
}

/*-- フェードイン-------------------------------------------------*/
.fadein_anime,
.fadein_anime_start,
.fadein_normal_start {
  animation-name: fadeInAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadein_anime_start_delay1 {
  animation-name: fadeInAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.fadein_anime_start_delay2 {
  animation-name: fadeInAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

@keyframes fadeInAnime {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadein_normal_start {
  animation-name: fadeInAnimeNormal;
  animation-duration: 2s;
  animation-delay: 0.3s;
}

@keyframes fadeInAnimeNormal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadein_anime_nissisan {
  animation-name: fadeInAnimeNissisan;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnimeNissisan {
  0% {
    opacity: 0;
    transform: rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: rotate(18deg);
  }
}
.bounce_down {
  animation: bounceInDown 4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes bounceInDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}/*# sourceMappingURL=animation.css.map */