@charset "UTF-8";

/* ================================
	fadeUp
================================ */
.fadeUp {
  opacity: 0;
}
.is-animeStart.fadeUp{
  -webkit-animation: 1.0s fadeInUp both;
  animation: 1.0s fadeInUp both;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	visibility: visible;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 20%, 0);
  }
  99.9%,to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 20%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

/* ================================
	shadow
================================ */
.is-animeStart.shadow:before{
	-webkit-animation: 0.8s shadow both;
	animation: 0.8s shadow both;
	animation-delay: 0.3s;
}
@-webkit-keyframes shadow {
	0% {
		top: 0px;
		right: 0px;
	}
	99.9%,to {
		top: 13px;
		right: -13px;
	}
}
@keyframes shadow {
	0% {
		top: 0px;
		right: 0px;
	}
	100% {
		top: 12px;
		right: -12px;
	}
}

/*---------------------------------------------------
	delay
---------------------------------------------------*/
.delay01 {
  animation-delay: 0.5s;
}
.delay02 {
  animation-delay: 0.8s;
}
.delay03 {
  animation-delay: 1.2s;
}
.delay04 {
  animation-delay: 1.5s;
}
