/* ─────────────────────────────
   カラー
───────────────────────────── */
.col_blue02 { color: #0b3ba2; }

/* ─────────────────────────────
   大リード見出し（h1.large）
───────────────────────────── */
.message .large {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 40px !important;
}

/* ─────────────────────────────
   引用テキスト（p.comment）
───────────────────────────── */
.comment {
    font-size: 1.8rem;
    line-height: 2;
    font-weight: 500;
    background: #fff8e9;
    padding: 3%;
}

/* ─────────────────────────────
   ●リスト（list_maru）
   用途：チェックマーク（✓）ではなく●で列挙
───────────────────────────── */
.list_maru {
    list-style: none;
    padding: 4%;
    width: 100%;
    background: #fff8e9;
}
.list_maru li {
    font-weight: 700;
    font-style: italic;
    margin-bottom: 10px;
    padding-left: 1.5em;
    text-indent: -1.5em;
    line-height: 1.6;
}
.list_maru li::before {
    content: '●';
    color: #000;
    font-style: normal;
    margin-right: 0.3em;
}
.list_maru li:last-of-type {
    margin-bottom: 0;
}

/* ─────────────────────────────
   SP対応
───────────────────────────── */
@media screen and (max-width: 599px) {
    .message .large {
        font-size: 2.2rem;
    }
    .list_maru {
        padding: 7%;
    }
    .list_maru li {
        margin-bottom: 20px;
        line-height: 1.4;
    }
}
