@charset "utf-8";


/* ========================================
 * .topic
 * ======================================== */
.topic .topicInner {
    background-color: #dce6f2;
    border-radius: 16px;
    position: relative;
}
.topic .topicInner::before {
    content: "";
    background: url( /assets/img/common/topic_img.png );
    position: absolute;
}
.topic .topicInner h2 {
    line-height: 1.3;
    border-bottom: 2px solid #215968;
}
.topic .topicInner h3 {
    display: inline-block;
    border-bottom: 1px solid #000;
    margin-bottom: 8px;
}
@media screen and ( min-width: 768px ) {
    .topic .topicInner {
        margin: 0 0 0 32px;
        padding: 32px;
    }
    .topic .topicInner::before {
        width: 200px;
        height: 70px;
        top: 24px;
        left: -26px;
    }
    .topic .topicInner h2 {
        font-size: calc( 30 / 16 * 1rem );
        text-align: center;
        padding-bottom: 24px;
    }
    .topic .topicInner h2+p {
        margin-top: 16px;
    }
    .topic .topicInner .topicTxt {
        background: #fff;
        padding: 22px 16px;
    }
    .topic .topicInner .topicImg {
        padding: 4px;
        width: 40% !important;
        background: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
@media not all and ( min-width: 768px ) {
    .topic .topicInner {
        margin: 0 0 0 13px;
        padding: 16px;
    }
    .topic .topicInner::before {
        background-size: 100px 35px;
        width: 100px;
        height: 35px;
        top: 16px;
        left: -13px;
    }
    .topic .topicInner h2 {
        padding: 0 0 8px 72px;
    }
    .topic .topicInner h2+p {
        margin-top: 8px;
    }
    .topic .topicInner .topicContent {
        padding: 8px;
        background-color: #fff;
    }
    .topic .topicInner .topicImg {
        margin-top: 12px;
        text-align: center;
    }
}

/* ========================================
 * 横並び、画像サイズ設定
 * ======================================== */
@media screen and ( min-width: 768px ) {
    .pc-flex {
        display: flex;
    }
    .cleanup {
        width: fit-content;
        max-width: 75%;
    }
    .image1 {
        width: 25%;
        margin: 0 auto;
    }
    .image2 {
        width: 90%;
    }
    .list {
        list-style: disc;
        margin-left: 40px;
    }
    .mt--pc-32 {
        margin-top: 32px;
    }
    .mr--pc-12 {
        margin-right: 12px;
    }
    .pc-none {
        display: none;
    }
}
@media not all and ( min-width: 768px ) {
    .image1 {
        width: 70%;
        max-width: 350px;
        margin: 10px auto;
    }
    .image2 {
        width: 90%;
        max-width: 300px;
    }
    .list {
        list-style: disc;
        margin-left: 20px;
    }
    .mt--sp-16 {
        margin-top: 16px;
    }
    .sp-none {
        display: none;
    }
}
.list > li {
    margin: 4px 0;
}
.mb12 {
    margin-bottom: 12px;
}