        .page-header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #0a2940 100%);
            color: white;
            padding: 120px 20px 60px;
            text-align: center;
            margin-top: 80px;
        }
        
        .page-header h1 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .page-header p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* ===========================
           セクション共通
           =========================== */
        .section {
            padding: 80px 20px;
        }
        
        .section-alt {
            background: var(--bg-light);
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .section-title {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .section-lead {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .program-note {
            text-align: center;
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }
        
        /* ===========================
           事業概要
           =========================== */
        .overview-box {
            background: white;
            border-radius: 12px;
            padding: 50px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin-bottom: 40px;
        }
        
        .overview-title {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 30px;
            text-align: center;
        }
        
        .overview-text {
            font-size: 1.1rem;
            line-height: 2;
            color: var(--text-secondary);
            text-align: center;
        }
        
        /* ===========================
           特徴カード
           =========================== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .feature-card {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--secondary-teal), #007d6f);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .feature-title {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }
        
        .feature-description {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--text-secondary);
        }
        
        /* ===========================
           プログラム内容
           =========================== */
        .program-list {
            display: grid;
            gap: 30px;
        }
        
        .program-item {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border-left: 4px solid var(--secondary-teal);
        }
        
        .program-header {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .program-number {
            width: 50px;
            height: 50px;
            background: var(--secondary-teal);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 15px;
        }
        
        .program-title {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-blue);
        }
        
        .program-subtitle {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 20px;
        }
        
        .program-content {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--text-secondary);
        }
        
        .program-details {
            list-style: none;
            margin-top: 20px;
        }
        
        .program-details li {
            padding-left: 25px;
            position: relative;
            margin-bottom: 10px;
        }
        
        .program-details li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-teal);
            font-weight: 700;
        }
        
        /* ===========================
           統計
           =========================== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        
        .stat-card {
            background: white;
            padding: 40px 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
        
        .stat-number {
            font-family: var(--font-heading);
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary-teal);
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1rem;
            color: var(--text-secondary);
        }
        
        /* ===========================
           CTA
           =========================== */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #0a2940 100%);
            color: white;
            text-align: center;
            padding: 80px 20px;
        }
        
        .cta-title {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-text {
            font-size: 1.1rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .cta-button {
            display: inline-block;
            background: var(--secondary-teal);
            color: white;
            padding: 18px 50px;
            border-radius: 6px;
            text-decoration: none;
            font-family: var(--font-heading);
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0, 168, 150, 0.3);
        }
        
        .cta-button:hover {
            background: #009688;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 168, 150, 0.4);
        }
        
        /* ===========================
           フッター
           =========================== */
        .footer {
            background: var(--primary-blue);
            color: white;
            padding: 60px 20px 30px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: var(--secondary-teal);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
        }
        
        /* ===========================
           レスポンシブ
           =========================== */
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .page-header p {
                font-size: 0.95rem;
            }
            
            .section {
                padding: 50px 18px;
            }
            
            .section-title {
                font-size: 1.8rem;
                margin-bottom: 35px;
            }
            
            .overview-box,
            .program-item {
                padding: 25px 18px;
            }
            
            .overview-text {
                font-size: 0.95rem;
                line-height: 1.7;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .feature-item {
                padding: 20px;
            }
            
            .feature-title {
                font-size: 1.1rem;
                margin-bottom: 10px;
            }
            
            .feature-description {
                font-size: 0.95rem;
            }
            
            .program-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            
            .program-number {
                margin-top: 0;
            }
            
            .program-title {
                font-size: 1.3rem;
            }
            
            .program-tag {
                font-size: 0.8rem;
                padding: 4px 10px;
            }
            
            .program-description,
            .program-detail {
                font-size: 0.95rem;
            }
            
            .stat-number {
                font-size: 2.2rem;
            }
            
            .stat-label {
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 480px) {
            .page-header h1 {
                font-size: 1.6rem;
            }
            
            .page-header p {
                font-size: 0.9rem;
            }
            
            .section {
                padding: 40px 15px;
            }
            
            .section-title {
                font-size: 1.6rem;
                margin-bottom: 30px;
            }
            
            .overview-box,
            .program-item {
                padding: 20px 15px;
            }
            
            .overview-text {
                font-size: 0.9rem;
                line-height: 1.6;
            }
            
            .features-grid {
                gap: 12px;
            }
            
            .feature-item {
                padding: 18px 15px;
            }
            
            .feature-title {
                font-size: 1.05rem;
                margin-bottom: 8px;
            }
            
            .feature-description {
                font-size: 0.9rem;
            }
            
            .program-header {
                gap: 6px;
            }
            
            .program-number {
                margin-top: 0;
            }
            
            .program-title {
                font-size: 1.2rem;
            }
            
            .program-tag {
                font-size: 0.75rem;
                padding: 3px 8px;
            }
            
            .program-description,
            .program-detail {
                font-size: 0.9rem;
                line-height: 1.6;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .stat-label {
                font-size: 0.85rem;
            }
        }
