   /* 和風テーマカラーパレット */
        :root {
            --primary-color: #2b6cb0; /* 紺碧 */
            --secondary-color: #e53e3e; /* 赤 */
            --accent-color: #38a169; /* 緑 */
            --light-bg: #f7fafc; /* 薄いグレー */
            --dark-text: #2d3748; /* 濃いグレー */
            --light-text: #4a5568; /* 中間グレー */
            --white: #ffffff;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --rounded: 8px;
        }

        /* ベーススタイル */
        * {
            margin: 0;
           
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;
            background-color: var(--light-bg);
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ヘッダー画像 */
        .header-image {
            width: 100%;
            height: 200px;
            background-color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 2rem;
           
            background-size: cover;
            background-position: center;
        }

        /* メインコンテナ */
        .container {
            max-width: 100%;
            padding: 0 1rem;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .container {
                max-width: 750px;
                padding: 0;
            }
        }

        /* セクション共通スタイル */
        .section {
            padding: 1rem 0;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            text-align: center;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--light-text);
            margin-bottom: 2rem;
            text-align: center;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ボタンスタイル */
        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--white);
            font-weight: 600;
            padding: 0.8rem 1.5rem;
            border-radius: var(--rounded);
            text-decoration: none;
            border: none;
            font-size: 1rem;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
            margin: 0.5rem 0;
        }

        .btn:hover {
            background-color: #2c5282;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .btn-accent {
            background-color: var(--accent-color);
        }

        .btn-accent:hover {
            background-color: #2f855a;
        }

        /* プロフィールスタイル */
        .profile-card {
            background-color: var(--white);
            border-radius: var(--rounded);
            padding: 1.5rem;
            margin: 2rem auto;
            max-width: 600px;
            box-shadow: var(--shadow);
            text-align: center;
        }

        .profile-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 1rem;
            border: 0px solid var(--primary-color);
        }

        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .profile-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .profile-title {
            font-size: 1rem;
            color: var(--light-text);
            margin-bottom: 1.5rem;
        }

        /* 統計情報 */
        .stats {
            display: flex;
            justify-content: space-around;
            margin: 1.5rem 0;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            padding: 0.5rem;
            min-width: 100px;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 0.3rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--light-text);
        }

        /* 問題点リスト */
        .issues-list {
            margin: 2rem 0;
        }

        .issue-card {
            background-color: var(--white);
            border-radius: var(--rounded);
            padding: 1.5rem;
            margin-bottom: 1rem;
            box-shadow: var(--shadow);
            border-left: 0px solid var(--primary-color);
        }

        .issue-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
        }

        .issue-title i {
            margin-right: 0.5rem;
            color: var(--accent-color);
        }

        .issue-desc {
            color: var(--light-text);
            font-size: 0.95rem;
        }

        /* 特長セクション */
        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            margin: 2rem 0;
        }

        @media (min-width: 768px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .feature-card {
            background-color: var(--white);
            border-radius: var(--rounded);
            padding: 1.5rem;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .feature-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
        }

        .feature-title i {
            margin-right: 0.5rem;
            color: var(--accent-color);
        }

        .feature-desc {
            color: var(--light-text);
            font-size: 0.95rem;
        }

        /* フッター画像 */
        .footer-image {
            width: 100%;
            height: 200px;
            background-color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            font-weight: bold;
            margin-top: 2rem;
            background-image: linear-gradient(rgba(43, 108, 176, 0.8), rgba(43, 108, 176, 0.8)), 
                            url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
        }

        /* フッター */
        .footer {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 2rem 1rem;
            text-align: center;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .footer-link {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-link:hover {
            opacity: 1;
            text-decoration: underline;
        }

        .footer-copyright {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* 固定CTAバナー */
        .cta-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--accent-color);
            color: var(--white);
            padding: 1rem;
            text-align: center;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 100;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .cta-banner.show {
            transform: translateY(0);
        }

        .cta-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 500px;
            margin: 0 auto;
        }

        .cta-text {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        /* ユーティリティクラス */
        .text-center {
            text-align: center;
        }

        .mt-1 { margin-top: 0.5rem; }
        .mt-2 { margin-top: 1rem; }
        .mt-3 { margin-top: 1.5rem; }
        .mt-4 { margin-top: 2rem; }

        .mb-1 { margin-bottom: 0.5rem; }
        .mb-2 { margin-bottom: 1rem; }
        .mb-3 { margin-bottom: 1.5rem; }
        .mb-4 { margin-bottom: 2rem; }

        /* アニメーション */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }

        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }