       :root {
            --forest-dark: #1a3a2e;
            --forest-main: #2d5a3d;
            --forest-light: #4a7c59;
            --earth: #8b7355;
            --sand: #d4b896;
            --cream: #faf7f2;
            --orange: #e67e22;
            --line-green: #06C755;
        }


#main {
  box-sizing: border-box;
  margin: 0;
  padding: 0; 
}

        body {
            font-family: 'Noto Sans JP', sans-serif;
            color: var(--forest-dark);
            line-height: 1.7;
            background: var(--cream);
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest-main) 50%, var(--forest-light) 100%);
            padding: 80px 20px 100px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 20px;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .hero h1 {
            font-size: clamp(1.5rem, 5vw, 3.2rem);
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.3;
            letter-spacing: 0.02em;
        }

        .hero h1 span {
            color: var(--sand);
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            margin-bottom: 50px;
            opacity: 0.95;
            font-weight: 400;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--line-green);
            color: white;
            text-decoration: none;
            padding: 20px 30px;
            margin-right: 30px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(6, 199, 85, 0.3);
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(6, 199, 85, 0.4);
        }

        .line-icon {
            width: 28px;
            height: 28px;
        }

        /* Value Props Section */
        .value-props {
            background: white;
            padding: 80px 20px;
            position: relative;
            margin-top: -40px;
            border-radius: 30px 30px 0 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            display: inline-block;
            color: var(--orange);
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.1em;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .section-title {
            font-size: clamp(1rem, 4vw, 2.5rem);
            font-weight: 900;
            color: var(--forest-dark);
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
        }

        .props-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .prop-card {
            background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
            padding: 40px 30px;
            border-radius: 16px;
            border: 2px solid #e9ecef;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .prop-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--forest-main), var(--orange));
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .prop-card:hover {
            border-color: var(--forest-light);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .prop-card:hover::before {
            transform: scaleY(1);
        }

        .prop-icon {
            color: #fff;
            font-weight: 800;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--forest-main), var(--forest-light));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 25px;
        }

        .prop-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--forest-dark);
            margin-bottom: 15px;
        }

        .prop-card p {
            color: #555;
            line-height: 1.8;
        }

        /* Benefits Detail Section */
        .benefits-detail {
            background: var(--cream);
            padding: 80px 20px;
        }

        .benefits-list {
            display: grid;
            gap: 25px;
        }

        .benefit-row {
            background: white;
            border-radius: 16px;
            padding: 35px;
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 30px;
            align-items: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .benefit-row:hover {
            border-color: var(--forest-light);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transform: translateX(5px);
        }

        .benefit-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--orange), #d35400);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            color: white;
            flex-shrink: 0;
            font-family: 'Outfit', sans-serif;
        }

        .benefit-content h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--forest-dark);
            margin-bottom: 12px;
        }

        .benefit-content p {
            color: #555;
            line-height: 1.9;
            font-size: 1.05rem;
        }

        .benefit-tag {
            display: inline-block;
            background: #fff3e0;
            color: var(--orange);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 10px;
        }

        /* Social Proof Section */
        .social-proof {
            background: var(--forest-dark);
            color: white;
            padding: 100px 1%;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 900;
            color: var(--sand);
            font-family: 'Outfit', sans-serif;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Visual Timeline */
        .timeline {
            background: white;
            padding: 80px 20px;
        }

        .timeline-steps {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
        }

        .timeline-steps::before {
            content: '';
            position: absolute;
            left: 40px;
            top: 60px;
            bottom: 60px;
            width: 3px;
            background: linear-gradient(180deg, var(--forest-main), var(--orange));
        }

        .timeline-step {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: white;
            border: 4px solid var(--forest-main);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--forest-main);
            flex-shrink: 0;
            position: relative;
            z-index: 2;
            font-family: 'Outfit', sans-serif;
        }

        .step-content {
            flex: 1;
            padding-top: 15px;
        }

        .step-content h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--forest-dark);
            margin-bottom: 10px;
        }

        .step-content p {
            color: #666;
            line-height: 1.8;
        }

        /* Final CTA */
        .final-cta {
            background: linear-gradient(135deg, var(--forest-main) 0%, var(--forest-light) 100%);
            padding: 100px 20px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .final-cta-content {
            position: relative;
            z-index: 2;
        }

        .final-cta h2 {
            font-size: clamp(1rem, 5vw, 3rem);
            font-weight: 900;
            margin-bottom: 20px;
        }

        .final-cta-subtitle {
            font-size: 1.3rem;
            margin-bottom: 50px;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .qr-display {
            display: inline-block;
            background: white;
            padding: 20px;
            border-radius: 16px;
            margin-top: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        .qr-placeholder {
            width: 200px;
            height: 200px;
            background: #f5f5f5;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 0.9rem;
        }

        /* Footer */
        .footer {
 
            color: rgba(255,255,255,0.6);
            padding: 30px 20px;
            text-align: center;
            font-size: 0.9rem;
        }

        /* Sticky CTA */
        .sticky-cta {
            text-align: center;
            padding: 80px 20px;
        }

        .cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--line-green);
            color: white;
            text-decoration: none;
            padding: 18px 45px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(6, 199, 85, 0.3);
        }

        .cta-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(6, 199, 85, 0.4);
        }

        .cta-mini-text {
            display: block;
            margin-top: 15px;
            color: #666;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                padding: 60px 20px 80px;
            }

            .value-props {
                padding: 60px 20px;
            }

            .benefits-detail {
                padding: 60px 20px;
            }

            .timeline {
                padding: 60px 20px;
            }

            .final-cta {
                padding: 70px 20px;
            }

            .props-grid {
                grid-template-columns: 1fr;
            }

            .benefit-row {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 20px;
            }

            .benefit-number {
                margin: 0 auto;
            }

            .timeline-steps::before {
                display: none;
            }

            .timeline-step {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .sticky-cta {
                padding: 30px 20px;
            }

            .cta-secondary {
                padding: 16px 35px;
                font-size: 1.05rem;
            }
        }