@charset "UTF-8";


		/* 画面中央に配置するローディング容器 */
		.loader-wrapper {
			position: fixed;
			top:0; left:0;
			width:100%; height:100%;
			background: rgba(0,0,0,0.9);
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			opacity: 0;             /* 初期状態は透明にする */
			display: none;          /* 最初は非表示 */
			transition: opacity 0.3s ease; /* フワッと消える演出用 */
			z-index: 999;
		}

		/* Canvasの設定（高解像度ディスプレイでもボケないよう制御） */
		#loadingCanvas {
			width: 400px;
			height: 400px;
		}