/* ========================================
   PRIVACY-POLICY.CSS - privacy-policy.html専用スタイル
   プライバシーポリシーページ
   ======================================== */

/* Privacy Policy Content */
.privacy-policy-content {
    padding: 80px 0;
    background: #fff;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 48px;
}

.policy-section h2 {
    font-size: 28px;
    color: #101828;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #E5E7EB;
}

.policy-section h3 {
    font-size: 20px;
    color: #101828;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.policy-section h4 {
    font-size: 16px;
    color: #101828;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.policy-section p {
    font-size: 15px;
    color: #4A5565;
    line-height: 1.8;
    margin-bottom: 16px;
}

.policy-section ul,
.policy-section ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.policy-section li {
    font-size: 15px;
    color: #4A5565;
    line-height: 1.8;
    margin-bottom: 8px;
}

.policy-section strong {
    color: #101828;
    font-weight: 600;
}

.policy-section a {
    color: #9810FA;
    text-decoration: underline;
}

.policy-section a:hover {
    color: #155DFC;
}

/* Language Label */
.language-label {
    display: inline-block;
    background: linear-gradient(135deg, #9810FA 0%, #155DFC 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Policy List */
.policy-list {
    background: #F9FAFB;
    border-left: 4px solid #9810FA;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.policy-list h4 {
    font-size: 16px;
    color: #101828;
    margin-bottom: 12px;
    font-weight: 600;
}

.policy-list ul {
    list-style: none;
    padding: 0;
}

.policy-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    font-size: 14px;
    color: #4A5565;
    line-height: 1.6;
}

.policy-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #9810FA;
    font-size: 18px;
}

/* Policy Sections Divider */
.policy-section:not(:last-child) {
    position: relative;
}

.policy-section:not(:last-child)::after {
    content: '';
    display: block;
    height: 1px;
    background: #E5E7EB;
    margin-top: 48px;
}

/* Contact Information Box */
.contact-box {
    background: linear-gradient(135deg, rgba(152, 16, 250, 0.05) 0%, rgba(21, 93, 252, 0.05) 100%);
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 24px;
    margin-top: 32px;
}

.contact-box h3 {
    font-size: 18px;
    color: #101828;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-box p {
    font-size: 15px;
    color: #4A5565;
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-box a {
    color: #9810FA;
    font-weight: 600;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* Last Updated */
.last-updated {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #E5E7EB;
    font-size: 14px;
    color: #6B7280;
    font-style: italic;
}

/* Table of Contents (Optional) */
.table-of-contents {
    background: #F9FAFB;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 48px;
}

.table-of-contents h3 {
    font-size: 18px;
    color: #101828;
    margin-bottom: 16px;
    font-weight: 600;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 12px;
}

.table-of-contents a {
    color: #9810FA;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-of-contents a:hover {
    text-decoration: underline;
}

.table-of-contents a::before {
    content: "→";
    color: #9810FA;
}

/* Important Notice Box */
.important-notice {
    background: #FEF3C7;
    border-left: 4px solid #F59E0B;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.important-notice h4 {
    font-size: 16px;
    color: #92400E;
    margin-bottom: 12px;
    font-weight: 600;
}

.important-notice p {
    font-size: 14px;
    color: #92400E;
    line-height: 1.6;
}

/* Responsive Styles - privacy-policy.html */
@media (max-width: 768px) {
    .policy-section h2 {
        font-size: 24px;
    }
    
    .policy-section h3 {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .privacy-policy-content {
        padding: 60px 0;
    }
    
    .policy-section {
        margin-bottom: 40px;
    }
    
    .policy-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .policy-section h3 {
        font-size: 16px;
        margin-top: 24px;
        margin-bottom: 12px;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 14px;
    }
}
