/* CSS Document */

        /*================================================
         * 基本スタイル & リセット
         *================================================*/
        :root {
            --primary-color: #005a9c; /* メインカラー (信頼感のある青) */
            --secondary-color: #2c3e50; /* テキストカラー (濃いグレー) */
            --accent-color: #ffc107; /* アクセントカラー (CTAボタンの黄色) */
            --bg-light-gray: #f8f9fa; /* 薄い背景色 */
            --font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
        }


        /*================================================
         * コンテナ & セクション
         *================================================*/
        .container {
            width: 95%;
            max-width: 1120px;
            margin-left: auto;
            margin-right: auto;
        }

        .carport-section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2rem !important;
            font-weight: bold !important;
            text-align: center;
            margin-top: 0;
            margin-bottom: 50px !important;
            color: var(--primary-color) !important;
            position: relative;
            padding-bottom: 15px;
            border-top: none !important;
            background: none !important;
            border-bottom: none !important;
        }


        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
        }


        /*================================================
         * ヒーローセクション
         *================================================*/
        .carport-hero {
            text-align: center;
            padding: 60px 0;
        }

        .carport-hero h1 {
            font-size: 2.2rem;
            font-weight: 700;
            line-height: 1.5;
            margin-bottom: 20px;
            color: var(--primary-color) !important;
        }

        .carport-hero .lead {
            font-size: 1.1rem;
            color: #555;
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .hero-image {
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }


        /*================================================
         * 特徴セクション
         *================================================*/
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .feature-item {
            background-color: #fff;
            border: 1px solid #e9ecef;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
        }

        .feature-item img {
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .feature-item h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-top: 0;
            margin-bottom: 15px;
          font-weight: bold !important;
        }

        .feature-item p {
            text-align: left;
            font-size: 1rem;
        }
        
        .feature-highlight {
            font-weight: bold;
            color: #d9534f;
            background-color: rgba(217, 83, 79, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
        }

        /*================================================
         * おすすめセクション
         *================================================*/
        .recommend-section {
            background-color: var(--bg-light-gray);
            padding: 30px 0 !important;
        }

        .recommend-section ul {
            list-style: none;
            padding: 0;
            max-width: 800px;
            margin: 0 auto;
        }

        .recommend-section li {
            font-size: 1.1rem;
            padding: 12px 0 12px 40px !important;
            position: relative;
            border-bottom: 1px dashed #ced4da;
          list-style: none !important;
        }

        .recommend-section li:last-child {
            border-bottom: none;
        }

        .recommend-section li::before {
            content: '✔';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            color: #28a745;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        /*================================================
         * CTA（行動喚起）セクション
         *================================================*/
        .cta-section {
            background-color: var(--primary-color);
            color: #fff;
            text-align: center;
            border-radius: 12px;
            padding: 60px 15px;
        }
        
        .cta-section .section-title,
        .cta-section .section-title::after {
            color: #fff !important;
            border-color: var(--accent-color);
        }

        .cta-section p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--secondary-color);
            padding: 15px 40px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 50px;
            font-size: 1.2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
        }

        /*================================================
         * レスポンシブ対応 (メディアクエリ)
         *================================================*/
        /* タブレット & スマートフォン */
        @media (max-width: 1024px) {
            .feature-grid {
                /* 2列に変更 */
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* タブレット */
        @media (max-width: 768px) {
            .carport-hero h1 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.5rem !important;
            }
            
            .feature-grid {
                /* 1列に変更 */
                grid-template-columns: 1fr;
            }
        }
        
        /* スマートフォン */
        @media (max-width: 480px) {
            .container {
                width: 95%;
            }
            .carport-section {
                padding: 50px 0;
            }
            .carport-hero h1 {
                font-size: 1.6rem;
            }
            .carport-hero .lead {
                font-size: 1rem;
            }
        }