 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.8;
            color: #333;
            background: #f8f9fa;
        }
        
        /* ヘッダー */
        header {
            background: #1a1a2e;
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(45deg, #4A90E2, #7B68EE);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-block;
        }
        
        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: #4A90E2;
        }
        
        .nav-active {
            color: #4A90E2 !important;
            border-bottom: 2px solid #4A90E2;
            padding-bottom: 2px;
        }
        
        /* ページヘッダー */
        .page-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 6rem 2rem 3rem;
            text-align: center;
            margin-top: 60px;
        }
        
        .page-header h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            animation: fadeIn 0.8s ease-out;
        }
        
        .breadcrumb {
            font-size: 0.9rem;
            opacity: 0.8;
            animation: fadeIn 0.8s ease-out 0.2s both;
        }
        
        .breadcrumb a {
            color: white;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* メインコンテンツ */
        main {
            max-width: 900px;
            margin: 3rem auto;
            padding: 0 2rem;
        }
        
        .privacy-content {
            background: white;
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .privacy-content h2 {
            font-size: 1.8rem;
            color: #1a1a2e;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e0e0e0;
        }
        
        .privacy-content h2:first-child {
            margin-top: 0;
        }
        
        .privacy-content h3 {
            font-size: 1.3rem;
            color: #4A90E2;
            margin: 2rem 0 1rem;
        }
        
        .privacy-content p {
            margin-bottom: 1rem;
        }
        
        .privacy-content ul {
            margin: 1rem 0 1rem 2rem;
        }
        
        .privacy-content li {
            margin-bottom: 0.5rem;
        }
        
        .last-updated {
            text-align: right;
            color: #666;
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #e0e0e0;
        }
        
        /* フッター */
        footer {
            background: #1a1a2e;
            color: white;
            text-align: center;
            padding: 2rem;
            margin-top: 4rem;
        }
        
        /* レスポンシブ */
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .privacy-content {
                padding: 2rem 1.5rem;
            }
            
            .privacy-content h2 {
                font-size: 1.5rem;
            }
        }