/* ========================================
   Privacy Policy Page (プライバシーポリシー)
======================================== */
.privacy-section {
    padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 40px);
}

.privacy-container {
    max-width: 928px;
    margin: 0 auto;
}

.privacy-content {
}

.privacy-intro {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
    margin: 0 0 clamp(30px, 4vw, 50px);
}

.privacy-section-block {
    margin-bottom: clamp(30px, 4vw, 40px);
}

.privacy-section-block:last-child {
    margin-bottom: 0;
}

.privacy-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #000000;
    margin: 0 0 clamp(10px, 1.5vw, 15px);
}

.privacy-section-block p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #30403E;
    margin: 0 0 10px;
}

.privacy-section-block p:last-child {
    margin-bottom: 0;
}

.privacy-list {
    list-style: none;
    margin: 10px 0;
    padding: 0;
}

.privacy-list li {
    position: relative;
    padding-left: 1em;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #30403E;
    margin-bottom: 4px;
}

.privacy-list li::before {
    content: '・';
    position: absolute;
    left: 0;
}

.privacy-contact {
    margin-top: 15px;
    background: none;
}

.privacy-contact p {
    margin: 0 0 5px;
}

.privacy-contact p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .privacy-section {
        padding-bottom: 80px;
    }
}

