/* ローディング画面のスタイル　色の変更などは直接ここを改変する */
	#loading-bg{ position: fixed; top: 0; left: 0; z-index: 10000; background: rgba(255,255,255,1); width: 100%; height: 100vh; display: -webkit-flex; display: flex; justify-content: center; align-items: center; text-align: center; }

	/* なんちゃってロードアニメーション　単にくるくる回ってるだけ */
	/*#loading-icon #site-logo::after{
		content: "";
		display: block;
		width: 22%;
		margin: 0 auto;
		border-bottom: 3px double gray;
		animation: loopani 1s infinite ease;
	}
	@-webkit-keyframes loopani{
		0%{opacity: .2; transform: rotateZ(0deg);}
		50%{opacity: 1}
		100%{opacity: .2; transform: rotateZ(360deg);}
	}
	@keyframes loopani{
		0%{opacity: .2; transform: rotateZ(0deg);}
		50%{opacity: 1}
		100%{opacity: .2; transform: rotateZ(360deg);}
	}*/
