/*------------------------------------------------------------
 読み込み画像のCSS
-------------------------------------------------------------*/
#cover {
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	background: #ffffff;
	top: 0;
	left: 0;
	z-index: 10000;
}

#loader {
	position: absolute;
	/*top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;*/
	width: 100%;
	height: auto;
	
	top: 50%;
	left: 50%;

}

#cover #loader img {
    height: auto;
    width: 100%;
	transform: translate(-50%,-50%);
}

@media
only screen and (max-width : 640px){

#loader {
	width: 80%;
	height: auto;
}

#cover #loader img {
    top: 20%;
	position: absolute;
}



}
