@charset "utf-8";
#loading{
	position: fixed;
	top:0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: 100svh;
	background-color: #01050B;
	z-index: 100000;
}
.loadWrap{
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	height: 100svh;
	background-image: url("../img/bg_loading.jpg");
	background-repeat: no-repeat;
	background-position: 50% 0;
	background-size: cover;
	opacity: 0;
	animation: fadeInL 1.8s ease .1s 1 normal forwards;
}
@keyframes fadeInL {
	0%{opacity: 0;}
	100% { opacity: 0.15;}
}

@media screen and (min-width: 641px) {
	.loadWrap{
		background-image: url("../img/bg_loading_pc.jpg");
		background-position: 50% 100%;
	}
}