<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */

/* ------------------------------ SP ------------------------------ */
@media not screen and (min-width:781px) {
	/* Loading背景画面設定　*/
	#splash {
		/*fixedで全面に固定*/
		position: fixed;
		width: 100vw;
		height: 100svh;
		z-index: 999;
		background: #FFF;
	}
	/* Loading画像中央配置 */
	#splash_logo {
		position: absolute;
		top: 50svh;
		left: 50vw;
		transform: translate(-50%, -50%);
	}
	/* Loading アイコンの大きさ設定 */
	#splash_logo img {
		width: calc(120vw / 7.8);
	}
}

/* ------------------------------ PC ------------------------------ */
@media screen and (min-width:781px) {
	/* Loading背景画面設定　*/
	#splash {
		/*fixedで全面に固定*/
		position: fixed;
		width: 100%;
		height: 100%;
		z-index: 999;
		background: #FFF;
	}
	/* Loading画像中央配置 */
	#splash_logo {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	/* Loading アイコンの大きさ設定 */
	#splash_logo img {
		width: 60px;
	}
}</pre></body></html>