 /* AIプログラミング教室 - カスタムスタイル */


        :root {
            --primary-green: #2d7a4d;
            /* 落ち着いた知的な緑 */
            --light-green: #e9f5ee;
            --accent-color: #f1c40f;
            /* 視認性の高いアクセント */
        }

        body {
            font-family: 'Noto Sans JP', sans-serif;
            color: #333;
        }

        .bg-primary-green {
            background-color: var(--primary-green) !important;
        }

        .text-primary-green {
            color: var(--primary-green) !important;
        }

        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?auto=format&fit=crop&q=80&w=1470') center/cover;
            color: white;
            padding: 100px 0;
        }

        .btn-success-custom {
            background-color: var(--primary-green);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            border: none;
            transition: 0.3s;
        }

        .btn-success-custom:hover {
            background-color: #235e3b;
            color: white;
            transform: translateY(-2px);
        }

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

        .feature-card {
            border: none;
            border-top: 5px solid var(--primary-green);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

/* ヘッダーのサイト名（会社名） */
       .site-title {
            display: block;
            font-size: 1.5rem;
            font-weight: 700;
       }

/* ヘッダーのサイトの説明文 */
      .site-subtitle {
            display: block;
            font-size: 0.9rem;
            margin-top: 2px;
      }

/* プライバシーポリシーのタイトル */
      h2.privacy-policy-title {
            margin-top: 0;
            line-height: 1.2;
            font-weight: bold;
            padding: 0.5rem 1rem;
            border-left: 8px solid #8B8B8B;
            background: transparent;
      }

/* 利用規約のタイトル */
      h2.terms-title {
            margin-top: 0;
            line-height: 1.2;
            font-weight: bold;
            padding: 0.5rem 1rem;
            border-left: 8px solid #6287B6;
            background: transparent;
      }
 