#loading {
	position: fixed;
	width: 100%;
	height: 100%;
	text-align: center;
	z-index: -10;
	overflow: hidden;
	background-color: #000229;
	opacity: 1;
}
#loading.LoadOut{opacity: 0; display:none;}
.ldTxt {
	position: absolute;
	content: '';
	display: block;
	top:50%;
	left: 50%;
    transform: translate(-50%, -70%);
	width: 20%;
	height: auto;
    opacity: 0;
    transition: all 1.8s ease-out;
}
.ldTxt.ldTxtIn{opacity: 1;}

/* ----- pc ----- */
@media screen and (min-width: 641px) {
    #loading .ldTxt {
        width: auto;
        height: 60%;
    }
}