/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/


#splash {pointer-events: none;
    /*fixedで全面に固定*/
	position: fixed;
	z-index: 1000000;
	width: 100%;
	height: 100%;
	background:#fff;
	text-align:center;
	color:#fff;
    
    
}

/* Loadingバー中央配置　*/
#splash_text {
    width: 400px;
    height: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
    z-index: 999;
	transform: translate(-50%, -50%);
	color: #fff;
}

/*IE11対策用バーの線の高さ※対応しなければ削除してください*/
#splash_text img{
    width: 50%;height: auto;
    margin-bottom: 30px;
    margin-top: 0;
}


#splash_text img.loadLogo{
    height:auto;
    width: 30%;
    padding: 0 20px 0;

    opacity:0.2;
}





@media(max-width:750px){

#splash_text {width: 400px;}
#splash_text img.loadLogo{width: 60%;}
.progressbar-text{ transform: scale(1.2) !important; margin-bottom: 30px !important;}

}