/* =============================================
   PRIVACY POLICY PAGE - privacy.css
   ============================================= */

/* ===== Hero 2行対応 ===== */
.pp-content + .about-cta,
.pp-content {
    position: relative;
}

/* ===== メインタイトル ===== */
.pp-main-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.pp-subtitle {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 40px;
}

.pp-intro {
    font-size: 0.9375rem;
    color: #555;
    line-height: 2;
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid #f0f0f0;
}

/* ===== 各セクションブロック ===== */
.pp-block {
    margin-bottom: 48px;
}

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

.pp-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ff6600;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.pp-heading-num {
    font-family: 'Jost', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    font-style: italic;
    color: #ff6600;
}

.pp-text {
    font-size: 0.9375rem;
    color: #555;
    line-height: 2;
    margin-bottom: 16px;
}

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

.pp-note {
    font-size: 0.85rem;
    color: #ff6600;
    font-weight: 700;
    margin-top: 12px;
}

/* ===== リスト ===== */
.pp-list {
    list-style: none;
    padding: 0;
    margin-top: 12px;
}

.pp-list li {
    font-size: 0.9375rem;
    color: #555;
    line-height: 2;
    padding-left: 20px;
    position: relative;
}

.pp-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #ff6600;
    font-weight: 700;
}

/* ===== お問い合わせテーブル ===== */
.pp-contact-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
}

.pp-contact-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.pp-contact-table tr:last-child {
    border-bottom: none;
}

.pp-contact-table th {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    padding: 16px 20px;
    width: 140px;
    vertical-align: top;
    white-space: nowrap;
}

.pp-contact-table td {
    font-size: 0.9rem;
    color: #555;
    padding: 16px 20px;
    line-height: 1.8;
}

.pp-contact-table td a {
    color: #ff6600;
    text-decoration: none;
    transition: opacity 0.3s;
}

.pp-contact-table td a:hover {
    opacity: 0.6;
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
    .pp-main-title {
        font-size: 1.375rem;
    }

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

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

    .pp-heading {
        font-size: 1rem;
    }

    .pp-contact-table th {
        display: block;
        width: 100%;
        padding: 12px 16px 2px;
    }

    .pp-contact-table td {
        display: block;
        padding: 2px 16px 12px;
    }
}
