/*
================================================
e-Craft Electrician
layout.css

共通レイアウト・セクション関連

2026 Phase6
style.cssより分離
================================================
*/


        body {
            background-color: var(--dark-bg);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        section {
            padding: 100px 24px 60px 24px;
            max-width: 1200px;
            margin: 0 auto;
            min-height: auto;
        }

        .section-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 32px;
            position: relative;
            padding-left: 14px;
            letter-spacing: 0.05em;
        }

        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            bottom: 4px;
            width: 4px;
            background-color: var(--primary);
            border-radius: 2px;
            box-shadow: 0 0 10px var(--primary);
        }

        @media (max-width: 768px) {
                section {
                padding: 70px 16px 40px 16px;
            }

            .section-title {
                font-size: 20px;
                margin-bottom: 20px;
            }
