@charset "UTF-8";

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        .title-section {
            background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .title-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(26,35,126,0.9) 0%, rgba(26,35,126,0.7) 100%);
            z-index: 1;
        }

        .title-container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
        }

        .main-title {
            font-size: 48px;
            font-weight: bold;
            line-height: 1.4;
            margin-bottom: 30px;
            letter-spacing: 0.02em;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .divider {
            display: inline-block;
            width: 80px;
            height: 4px;
            background-color: #2ECC71;
            margin: 0 auto 30px;
            border-radius: 2px;
        }

        .sub-title {
            font-size: 22px;
            font-weight: 400;
            line-height: 1.6;
            opacity: 0.95;
            letter-spacing: 0.05em;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .title-section {
                padding: 60px 15px;
                min-height: 250px;
            }

            .main-title {
                font-size: 28px;
                line-height: 1.5;
                margin-bottom: 20px;
            }

            .sub-title {
                font-size: 16px;
                line-height: 1.7;
            }

            .divider {
                width: 60px;
                margin: 0 auto 20px;
            }
        }

        @media (max-width: 480px) {
            .main-title {
                font-size: 24px;
            }

            .sub-title {
                font-size: 14px;
            }
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.7;
            color: #000000;
            background-color: #ECF0F0;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* セクション共通スタイル */
        section {
            padding: 70px 0;
            background: white;
            margin-bottom: 2px;
            animation: fadeIn 0.8s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        h2 {
            font-size: 2.3rem;
            color: #1a237e;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #2ECC71;
        }

        /* 課題提示セクション */
        .problems {
            background: #E3F2FD;
            padding-top: 80px;
        }

        .problem-intro {
            font-size: 1.3rem;
            text-align: center;
            margin-bottom: 40px;
            color: #000000;
            font-weight: bold;
            line-height: 1.8;
        }

        .problem-list {
            list-style: none;
            max-width: 900px;
            margin: 0 auto;
        }

        .problem-list li {
            background: white;
            padding: 20px 20px 20px 50px;
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            font-size: 1.15rem;
            line-height: 1.8;
        }

        .problem-list li:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .problem-list li::before {
            content: '●';
            position: absolute;
            left: 20px;
            color: #E74C3C;
            font-size: 1.2rem;
        }

        /* 解決策セクション */
        .solution {
            background: #ECF0F0;
        }

        .solution-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .solution-title {
            font-size: 1.3rem;
            color: #1a237e;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .solution-text {
            font-size: 1.3rem;
            line-height: 1.8;
            color: #000000;
            font-weight: bold;
        }

        /* サービス内容セクション */
        .services {
            background: white;
        }

        .service-intro {
            text-align: center;
            margin-bottom: 50px;
            font-size: 1.3rem;
            color: #000000;
            font-weight: bold;
            line-height: 1.8;
        }

        .service-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .service-card {
            background: #E3F2FD;
            padding: 30px;
            border-radius: 12px;
            border-top: 4px solid #2ECC71;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .service-card h3 {
            color: #1a237e;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .service-card p {
            color: #000000;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        /* 約束セクション */
        .promises {
            background: #ECF0F0;
        }

        .promise-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .promise-item {
            background: white;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

        .promise-item:hover {
            transform: scale(1.03);
        }

        .promise-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: #2ECC71;
            color: white;
            border-radius: 50%;
            line-height: 50px;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .promise-item h3 {
            color: #1a237e;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .promise-item p {
            color: #000000;
            line-height: 1.7;
            font-size: 1.1rem;
        }

        /* 料金セクション */
        .pricing {
            background: white;
        }

        .pricing-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.3rem;
            line-height: 1.8;
            color: #000000;
            font-weight: bold;
        }

        .pricing-highlight {
            color: #FFD700;
            font-weight: bold;
            background: #1a237e;
            padding: 2px 8px;
            border-radius: 4px;
        }

        /* CTA セクション */
        .cta {
            background: #1a237e;
            color: white;
            text-align: center;
        }

        .cta h2 {
            color: white;
        }

        .cta h2::after {
            background: white;
        }

        .cta-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .cta-text {
            font-size: 1.3rem;
            margin-bottom: 30px;
            line-height: 1.8;
            font-weight: bold;
        }

        .cta-button {
            display: inline-block;
            background: #2ECC71;
            color: white;
            padding: 20px 60px;
            font-size: 1.4rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
            margin-bottom: 30px;
        }

        .cta-button:hover {
            background: #1a237e;
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(26, 35, 126, 0.4);
        }

        .contact-info {
            margin-top: 30px;
            font-size: 1.2rem;
        }

        .contact-info p {
            margin-bottom: 10px;
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            h2 {
                font-size: 1.9rem;
            }

            .problem-intro,
            .solution-text,
            .service-intro,
            .pricing-content {
                font-size: 1.2rem;
            }

            .service-cards,
            .promise-items {
                grid-template-columns: 1fr;
            }

            .cta-button {
                padding: 18px 50px;
                font-size: 1.2rem;
            }

            .cta-button {
                padding: 18px 50px;
                font-size: 1.2rem;
            }

            .problem-list li,
            .service-card p,
            .promise-item p {
                font-size: 1.05rem;
            }

            .problem-list li,
            .service-card p,
            .promise-item p {
                font-size: 1.05rem;
            }

            .cta-text,
            .contact-info {
                font-size: 1.15rem;
            }

            .service-card h3,
            .promise-item h3 {
                font-size: 1.3rem;
            }
        }