/*
Theme Name: Lightning Child
Template: lightning
*/

/*弾むアニメーション*/
@keyframes bound{
	0%{
		transform: translatey(0px);
	}
	25%{
		transform: translatey(-40px);
	}
	50%{
		transform: translatey(0px);
	}
	85%{
		transform: translatey(-10px);
	}
	100%{
		transform: translateY(0px);
	}
}

.anime-bound.animate{
	-webkit-animation: bound 1s 1 forwards;
	animation: bound 1s 1 forwards;
}
/*ここまで*/