@charset "utf-8";
/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
	position: fixed;
	width: 100vw;
	height: 100vh;
	z-index: 999;
	background:#fff;
	text-align:center;
	color:#fff;
	z-index: 9999;
	TOP: 0;
}

/* Loading画像中央配置　*/
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo video {
    width:100%;
    height: 90vh;
}

@media screen and (max-width: 640px){
    #splash_logo video {
        width:100vw;
		/*margin-top: -30%;
    }
}

/*動画の枠線を消す*/
video {
    /*safari*/
    filter: drop-shadow(0px 0px #000);
    /*Chrome*/
    outline: none;
    border: none;
  }