@charset "utf-8";
.popupCover{ width:100%; height:100%; background:#000; opacity:0.5; filter:alpha(opacity=50); position:fixed; top:0; left:0; z-index:1001;}
.indexPopup{ width:560px; height:530px; position:fixed; left:50%; top:50%; margin-left:-280px; margin-top:-265px; animation:popupImg 2s ease-in-out infinite; z-index:1002;}
.closePopup{ width:37px; height:37px; right:70px; top:20px;}
.indexPopup:hover{ animation:popupStop;}
@keyframes popupImg{
	0%,100%{ transform:translateX(-10px);}
	50%{ transform:translateX(10px);}
}
@keyframes popupStop{
	0%,50%,100%{ transform:translateX(0);}

}