@charset "UTF-8";
/* プライバシーポリシー専用スタイル */

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 1px 3px var(--shadow);
    border: 1px solid var(--border);
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.privacy-section.last-section {
    border-bottom: none;
    margin-bottom: 2rem;
}

.privacy-section h2 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    padding-left: 1rem;
    border-left: 4px solid var(--secondary);
}

.privacy-section h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.privacy-section p {
    line-height: 1.9;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.privacy-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    line-height: 1.9;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.privacy-section li strong {
    color: var(--primary);
    font-weight: 600;
}

.privacy-section a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.privacy-section a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

.notice {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border-left: 4px solid var(--secondary);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.contact-box {
    background: var(--bg-main);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

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

.contact-box strong {
    color: var(--primary);
}

.updated-date {
    text-align: right;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.back-to-home {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

.btn-back {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1rem 3rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-back:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* フッター */
.site-footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem;
    margin-top: 4rem;
    border-radius: 24px 24px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.footer-nav a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .privacy-content {
        padding: 2rem 1.5rem;
    }

    .privacy-section h2 {
        font-size: 1.3rem;
    }

    .privacy-section h3 {
        font-size: 1.1rem;
    }

    .privacy-section ul {
        margin-left: 1.5rem;
    }

    .btn-back {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}
