/*---------------------------------
プライバシーポリシーページ
---------------------------------*/

/* ==============================
   本文
   ============================== */

/* --- リード文 --- */

.privacy_lead {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* --- 各セクション --- */

.privacy_block {
    margin-bottom: 40px;
}

/* --- 見出し --- */

.privacy_heading {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 10px;
}

/* --- 本文 --- */

.privacy_text {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.7;
}

/* --- リスト --- */

.privacy_list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.privacy_list li {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.7;
    padding-left: 1.2em;
    text-indent: -1.2em;
}

/* --- 会社情報 --- */

.privacy_address {
    margin-top: 40px;
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.7;
}

.privacy_address a {
    color: var(--text-color);
    text-decoration: none;
}

/* ==============================
   PC
   ============================== */

@media (min-width: 768px) {

    /* --- セクション --- */

    .section_content--privacy {
        padding: 0 20px;
    }

    .section_content--privacy .content_box {
        max-width: 800px;
        margin: 0 auto;
    }

}