.privacy-policy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-policy-content {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    padding: 40px 0;
}

.privacy-policy-content p {
    font-size: 1rem;
    line-height: 1.8571428em;
    margin-top: 20px;
    margin-bottom: 15px;
    text-align: justify;
    text-justify: inter-ideograph;
}

.privacy-policy-content h2 {
    font-size: 1.8rem;
    color: #0099B0;
    border-bottom: 2px solid #0099B0;
    padding-bottom: 5px;
    line-height: 1.5em;
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: bold;
}

.privacy-policy-content h3 {
    font-size: 1.2rem;
    line-height: 1.5em;
    margin-top: 32px;
    color: #0099B0;
    position: relative;
    padding-left: 50px;
    font-weight: bold;
}

.privacy-policy-content h3::after {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 45px;
    height: 2px;
    background-color: #0099B0;
    left: 0;
}

.privacy-policy-date {
    margin-top: 40px;
    margin-bottom: 30px;
    font-weight: bold;
    text-align: right;
}

.privacy-contact-info {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #0099B0;
}

.privacy-contact-info p {
    margin-top: 10px;
    margin-bottom: 10px;
}

.privacy-contact-info p:first-child {
    margin-top: 0;
}

.privacy-contact-info strong {
    color: #0099B0;
    font-weight: bold;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .privacy-policy-container {
        padding: 0 15px;
    }

    .privacy-policy-content {
        padding: 30px 0;
    }

    .privacy-policy-content h2 {
        font-size: 1.5rem;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .privacy-policy-content h3 {
        font-size: 1.1rem;
        margin-top: 30px;
    }

    .privacy-policy-content p {
        font-size: 0.95rem;
        margin-top: 15px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .privacy-policy-content {
        padding: 20px 0;
    }

    .privacy-policy-content h2 {
        font-size: 1.3rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .privacy-policy-content h3 {
        font-size: 1rem;
        margin-top: 25px;
    }

    .privacy-policy-content p {
        font-size: 0.9rem;
        margin-top: 12px;
        margin-bottom: 10px;
    }
}

