:root {
            --primary: #e07a5f; /* コッパーオレンジ */
            --primary-hover: #f28482; /* 明るいコッパー */
            --dark-bg: #111215; /* 漆黒・高級感のあるベース背景 */
            --card-bg: #1c1d22; /* カードやコンポーネントの背景 */
            --text-main: #f4f4f6; /* メインテキスト（読みやすいオフホワイト） */
            --text-muted: #a0a5b5; /* 補助テキスト */
            --border-color: #2c2e36; /* 枠線・区切り線 */
            --accent-glow: rgba(224, 122, 95, 0.15);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
            -webkit-font-smoothing: antialiased;
        }

        .results-wrapper {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 24px;
            position: relative;
        }


	/* ==============================
	   Common Section Heading
	============================== */

	.section-heading {
    		margin-bottom: 32px;
	}

	.section-heading.is-center {
    		text-align: center;
	}

	.section-heading.is-left {
    		text-align: left;
	}

	.section-label {
    		margin-bottom: 8px;
    		color: var(--primary);
    		font-size: 13px;
    		font-weight: 600;
    		letter-spacing: 0.12em;
    		text-transform: uppercase;
	}

	.section-heading h2,
	.section-heading h3 {
    		color: var(--text-main);
    		font-size: 30px;
    		line-height: 1.45;
	}

	.section-heading-title {
    		position: relative;
    		display: inline-block;
    		padding-left: 18px;
	}

	.section-heading-title::before {
    		content: "";
    		position: absolute;
    		left: 0;
    		top: 0.18em;
    		width: 5px;
    		height: 1.3em;
    		background: var(--primary);
    		border-radius: 999px;
    		box-shadow: 0 0 12px rgba(224, 122, 95, 0.65);
	}

	@media (max-width: 768px) {
    		.section-heading {
        		margin-bottom: 24px;
    		}

    		.section-label {
        		font-size: 12px;
    		}

    		.section-heading h2,
    		.section-heading h3 {
        		font-size: 25px;
    		}

    		.section-heading-title {
        		padding-left: 16px;
    		}
	}
