/*---------------------------------
特定商取引法に基づく表記ページ
---------------------------------*/

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

/* --- 各ブロック --- */

.tokushoho_block:not(:last-child) {
    margin-bottom: 40px;
}

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

.tokushoho_heading {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 8px;
}

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

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

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

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

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

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

.tokushoho_list li::before {
    content: "・";
}

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

@media (min-width: 768px) {

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

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

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

}