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

/* Loading背景画面設定　*/
/* 
#splash {
    /*fixedで全面に固定*/
	position: fixed;
	z-index: 3000;
	width: 100%;
	height: 100%;
	font-family: "Cinzel", "Noto Sans JP";
	background:#1d1d1d;
	text-align:center;
	color:#A7A08C;
}

/* Loadingバー中央配置　*/
#splash_text {
	position: absolute;
	top: 50%;
	left: 50%;
    z-index:3000;
	width: 100%;
	transform: translate(-50%, -50%);
}

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