/* ============================================================
   QUALIA PRIVACY POLICY PAGE CSS
   ============================================================ */

/* === CONTENT WRAPPER === */
.pp-content {
    padding: 80px 0 120px;
}

.pp-content__inner {
    max-width: 800px;
    margin: 0 auto;
}

.pp-content__intro {
    font-size: 1.5rem;
    line-height: 2.2;
    color: var(--text-sub);
    margin-bottom: 56px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

/* === SECTION === */
.pp-section {
    margin-bottom: 48px;
}

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

.pp-section__heading {
    font-family: var(--font-ja);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary-dark);
    letter-spacing: 0.06em;
    margin-bottom: 20px;
    padding-left: 16px;
    position: relative;
}

.pp-section__heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 3px;
    height: calc(100% - 8px);
    background: var(--gold-gradient);
    border-radius: 2px;
}

.pp-section__text {
    font-size: 1.4rem;
    line-height: 2.2;
    color: var(--text-sub);
    margin-bottom: 12px;
}

.pp-section__text:last-child {
    margin-bottom: 0;
}

/* === SUB SECTION === */
.pp-subsection {
    margin-top: 24px;
    margin-bottom: 24px;
    padding-left: 8px;
}

.pp-subsection:last-child {
    margin-bottom: 0;
}

.pp-subsection__heading {
    font-family: var(--font-ja);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}

/* === LIST === */
.pp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pp-list li {
    font-size: 1.4rem;
    line-height: 2;
    color: var(--text-sub);
    padding-left: 20px;
    position: relative;
}

.pp-list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-light);
}

/* === TABLE (共同利用) === */
.pp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.4rem;
    margin-top: 16px;
}

.pp-table th,
.pp-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
    line-height: 1.8;
}

.pp-table th {
    font-family: var(--font-ja);
    font-weight: 500;
    color: var(--primary-dark);
    white-space: nowrap;
    width: 200px;
    background: rgba(184, 157, 106, 0.04);
    letter-spacing: 0.02em;
}

.pp-table td {
    color: var(--text-sub);
}

/* === CONTACT === */
.pp-section--contact {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.pp-contact {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: var(--shadow-card);
}

.pp-contact__name {
    font-family: var(--font-ja);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}

.pp-contact__detail {
    font-size: 1.4rem;
    line-height: 2;
    color: var(--text-sub);
}

.pp-contact__detail a {
    color: var(--primary);
    transition: opacity var(--transition);
}

.pp-contact__detail a:hover {
    opacity: 0.7;
}

/* ============================================================
   RESPONSIVE - PRIVACY POLICY
   ============================================================ */
@media (max-width: 768px) {
    .pp-content {
        padding: 60px 0 80px;
    }

    .pp-content__intro {
        margin-bottom: 40px;
        padding-bottom: 32px;
    }

    .pp-section {
        margin-bottom: 36px;
    }

    .pp-section__heading {
        font-size: 1.6rem;
    }

    .pp-table th {
        width: auto;
        display: block;
        padding-bottom: 4px;
        border-bottom: none;
    }

    .pp-table td {
        display: block;
        padding-top: 4px;
    }

    .pp-table tr {
        display: block;
        border-bottom: 1px solid var(--border);
        padding: 8px 0;
    }

    .pp-contact {
        padding: 24px 20px;
    }

    .pp-section--contact {
        margin-top: 40px;
        padding-top: 32px;
    }
}