@charset "UTF-8";

		/* -----------------------------------------------------------------
		   Reset & Base Styles
		   ----------------------------------------------------------------- */
		.loading {
			margin: 0;
			padding: 0;
			background-color: rgba(0, 0, 0, 0.9);
			height: 100vh;
			width:100vw;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			font-family: 'Outfit', sans-serif;
		}

		/* -----------------------------------------------------------------
		   Loading Animation
		   ----------------------------------------------------------------- */
		.loading-container {
			text-align: center;
			position: relative;
		}

		.loading-gif {
			/* 表示サイズ調整 */
			width: 300px;
			height: auto;
			display: block;
			margin: 0 auto;
		}

		.loading-text {
			margin-top: 10px;
			font-size: 1.2rem;
			font-weight: 700;
			letter-spacing: 0.15em;
			/* ローディングテキストは白 */
			color: #fff;
			animation: pulse 1.5s infinite ease-in-out;
		}

		/* テキストの点滅アニメーション */
		@keyframes pulse {
			0%, 100% { opacity: 1; }
			50% { opacity: 0.4; }
		}