/* ==========================================================================
  基本構造
========================================================================== */

        .privacy-sidebar {
            padding: 60px 40px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .privacy-sidebar-content {
            width: 100%;
        }
        
        .privacy-sidebar-header {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .privacy-sidebar-title {
            font-size: 36px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .privacy-sidebar-intro {
            color: #666;
            line-height: 1.8;
        }
        
        .privacy-sidebar-section {
            margin-bottom: 40px;
            padding: 30px;
            background: #fafafa;
            border-radius: 12px;
        }
        
        .privacy-sidebar-section-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .privacy-sidebar-section-icon {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #78d900, #9feb2d);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            font-weight: bold;
            box-shadow: 0 2px 8px rgba(120, 217, 0, 0.3);
        }
        
        .privacy-sidebar-section-text {
            color: #666;
            line-height: 1.8;
        }
        
        @media (max-width: 768px) {
            .privacy-grid-container {
                grid-template-columns: 1fr;
            }
        }