@charset "UTF-8";
/* Scss Document */
/* motion-> */
/*
	animation -- 固有名 -- 動作時間 -- ease -- 開始遅延 -- 繰り返し -- 正反
	ex) animation: anime1 2s ease 0s infinite alternate;
	*/
.wait {
  opacity: 0;
}

.play.fadeIn {
  animation: fadeIn 0.625s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.play.bounceIn {
  animation: bounceIn 0.625s ease 0s 1 normal;
  -webkit-animation: bounceIn 0.625s ease 0s 1 normal;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.8, 0.8);
  }
  70% {
    opacity: 0.7;
    transform: scale(1.05, 1.05);
  }
  80% {
    opacity: 0.64;
    transform: scale(0.9, 0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
.play.slideLeft {
  animation: slideLeft 0.625s ease 0s 1 normal;
  -webkit-animation: slideLeft 0.625s ease 0s 1 normal;
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(2rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.play.slideRight {
  animation: slideRight 0.625s ease 0s 1 normal;
  -webkit-animation: slideRight 0.625s ease 0s 1 normal;
}

@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(-2rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.play.slideUp {
  animation: slideUp 0.625s ease 0s 1 normal;
  -webkit-animation: slideUp 0.625s ease 0s 1 normal;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.play.slideUpRight {
  animation: slideUpRight 0.625s ease 0s 1 normal;
  -webkit-animation: slideUpRight 0.625s ease 0s 1 normal;
}

@keyframes slideUpRight {
  0% {
    opacity: 0;
    transform: translate(-2rem, 2rem);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.play.slideUpLeft {
  animation: slideUpLeft 0.625s ease 0s 1 normal;
  -webkit-animation: slideUpLeft 0.625s ease 0s 1 normal;
}

@keyframes slideUpLeft {
  0% {
    opacity: 0;
    transform: translate(2rem, 2rem);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.play.blurInc {
  animation: blurInc 1.5s ease 0s 1 normal;
}
@keyframes blurInc {
  0% {
    opacity: 0;
    filter: blur(16px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
  }
}
.play.blurIncUp {
  animation: blurIncUp 1.5s ease 0s 1 normal;
}
@keyframes blurIncUp {
  0% {
    opacity: 0;
    -webkit-filter: blur(16px);
    -webkit-transform: translateY(2rem);
    filter: blur(16px);
    transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0px);
    -webkit-transform: translateY(0);
    filter: blur(0px);
    transform: translateY(0);
  }
}
/* ->motion *//*# sourceMappingURL=motion.css.map */