/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/

#splash {
    /*fixedで全面に固定*/
	position: fixed;
	z-index: 1000000;
	width: 100%;
	height: 100%;
	background:#333;
	text-align:center;
	color:#fff;
    
    
}

/* Loadingバー中央配置　*/
#splash_text {
    width: 200px;
    height: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
    z-index: 999;
	width: 200px;
	transform: translate(-50%, -50%);
	color: #fff;
}

/*IE11対策用バーの線の高さ※対応しなければ削除してください*/
#splash_text svg{
    height: 5px;
    width: 200px;
}


#splash_text svg.loadLogo{
    height:auto;
    fill: #fff;
    width:100%;
    position:absolute;
    top:50%;
    opacity:0;
    transform: translate(-50%, -60%);
}