@charset "UTF-8";

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

        body {
            font-family: 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
            line-height: 1.6;
            color: #000000;
            background-color: #ECF0F0;
        }

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



        /* Hero Section */
        .hero {
            background: #1a237e;
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 40px;
            line-height: 1.8;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            background-color: #2ECC71;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s;
        }

        .cta-button:hover {
            background-color: #1a237e;
        }

        /* Points Section */
        .points-section {
            padding: 60px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            color: #1a237e;
            margin-bottom: 50px;
        }

        .points-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .point-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            border-left: 5px solid #2ECC71;
        }

        .point-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #1a237e;
        }

        .point-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: #1a237e;
            margin-bottom: 15px;
        }

        /* Story Section */
        .story-section {
            padding: 60px 0;
            background: #ECF0F0;
        }

        .story-intro {
            text-align: center;
            margin-bottom: 40px;
        }

        .story-title {
            font-size: 1.8rem;
            color: #1a237e;
            margin-bottom: 20px;
        }

        .story-content {
            background: white;
            padding: 40px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* Accordion */
        .accordion {
            margin: 30px 0;
        }

        .accordion-header {
            background-color: #1a237e;
            color: white;
            padding: 15px;
            cursor: pointer;
            border-radius: 5px;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .accordion-content {
            display: none;
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin-bottom: 20px;
        }

        .accordion-content.active {
            display: block;
        }

        .problem-item {
            padding: 20px;
            border-bottom: 1px solid #eee;
        }

        .problem-item:last-child {
            border-bottom: none;
        }

        .problem-icon {
            font-size: 2rem;
            color: #E74C3C;
            margin-bottom: 10px;
        }

        .problem-title {
            font-weight: bold;
            color: #1a237e;
            margin-bottom: 10px;
        }

        /* Solution Section */
        .solution-section {
            padding: 60px 0;
            background: white;
        }

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

        .step-card {
            background: #E3F2FD;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            position: relative;
        }

        .step-number {
            background-color: #2ECC71;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin: 0 auto 20px;
        }

        .step-icon {
            font-size: 2.5rem;
            color: #1a237e;
            margin-bottom: 15px;
        }

        .step-title {
            font-weight: bold;
            color: #1a237e;
            margin-bottom: 10px;
        }

        /* Results Section */
        .results-section {
            padding: 60px 0;
            background: #ECF0F0;
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .result-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .result-icon {
            font-size: 3rem;
            color: #2ECC71;
            margin-bottom: 15px;
        }

        .result-number {
            font-size: 2rem;
            font-weight: bold;
            color: #1a237e;
            margin-bottom: 10px;
        }

        .result-label {
            color: #666;
            font-weight: bold;
        }

        .testimonial {
            background: white;
            padding: 30px;
            border-radius: 10px;
            margin-top: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 5px solid #2ECC71;
        }

        .testimonial-text {
            font-style: italic;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* Navigator Section */
        .navigator-section {
            padding: 60px 0;
            background: white;
            text-align: center;
        }

        .navigator-card {
            background: #E3F2FD;
            padding: 40px;
            border-radius: 10px;
            max-width: 600px;
            margin: 0 auto;
        }

        .navigator-avatar {
            width: 120px;
            height: 120px;
            background-color: #1a237e;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
        }

        .navigator-name {
            font-size: 1.3rem;
            font-weight: bold;
            color: #1a237e;
            margin-bottom: 10px;
        }

        .navigator-title {
            color: #666;
            margin-bottom: 20px;
        }

        .navigator-message {
            line-height: 1.8;
            color: #333;
        }

        /* Footer CTA */
        .footer-cta {
            background: #1a237e;
            color: white;
            padding: 60px 0;
            text-align: center;
        }

        .footer-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .contact-info {
            margin-top: 30px;
        }

        .phone-large {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .points-grid,
            .solution-steps,
            .results-grid {
                grid-template-columns: 1fr;
            }
        }