/* メインコンテンツ */
.main-container {
    max-width: 800px;
    margin: 8rem auto 2rem;
    padding: 0 2rem;
}

.content {
    background-color: var(--bg-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
    font-weight: 700;
}

h2 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    border-left: 4px solid var(--primary-color);
    font-weight: 600;
}

h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* 情報ボックス */
.info-box {
    background-color: rgba(79, 70, 229, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.info-box p {
    margin-bottom: 0.5rem;
}

/* 更新日 */
.update-info {
    text-align: right;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* お問い合わせセクション */
.contact-section {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-section h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

/* products/static/products/css/privacy.css */

/* より洗練されたスタイル */
:root {
    --primary-color: #4285F4;
    --primary-dark: #3367D6;
    --text-primary: #2c3e50;
    --text-secondary: #555;
    --background: #f8f9fa;
    --surface: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
}

/* アニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content {
    animation: fadeIn 0.6s ease-out;
}

/* ナビゲーションバーのアニメーション */
.nav-links a {
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* セクションのホバー効果 */
h2 {
    transition: all 0.3s ease;
}

h2:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* ボタンスタイル */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* カード効果 */
.info-box {
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* スクロールトップボタン */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

/* 印刷用スタイル */
@media print {
    .header, .footer, .scroll-top {
        display: none;
    }
    
    .content {
        box-shadow: none;
        padding: 0;
    }
    
    body {
        background: white;
    }
}
