@keyframes animeE-engine {
	  0% { transform: translate(  0px,	 0px) rotateZ(   0deg) scale(5); }
	100% { transform: translate(  0px,	 0px) rotateZ(-720deg) scale(1); }
}

.animationE{
	animation-name:				animeE-engine;
    animation-timing-function:  ease;
   	animation-delay:			0s;				/* アニメーション開始を3秒遅らせる	*/
	animation-iteration-count:	1;
	animation-duration:			4.0s;			   /* 時間	*/
}
