@charset "utf-8";

#glworld{
	position:fixed;
	width:100%;
	height:100%;
	top:0; left:0;
	overflow:hidden;
}
.gl-foot-logo{
	position:absolute;
	width:520px; height:520px;
	top:0; left:50%;
	margin-left:-260px;
	margin-top:-260px;
}
.gl-foot-logoIn{
	position:absolute;
	width:100%; height:100%;
	top:0; left:0;
	background-image:url(../image/logo.png);
	background-repeat:no-repeat;
	background-size:contain;
	backface-visibility:hidden;
	animation:10s ease-in-out infinite gl-logo-rot;
}
@keyframes gl-logo-rot{
	0%{ transform:rotate(-12deg);}
	50%{ transform:rotate(12deg);}
	100%{ transform:rotate(-12deg);}
}
