@charset "utf-8";


.list {
    color: #00baff;
    margin-right: 20px;
    display: inline-block;
}
.list::before {
    content: "・";
    font-weight: bold;
    font-size: 25px;
    vertical-align: sub;
}

.BGGray {
    background: #e1e1e1;
    margin-bottom: 10px;
    padding: 10px;
}

.center {
    text-align: center;
}

.mb10 {
    margin-bottom: 10px;
}

.topic-img {
    min-width: 40%;
    border: 2px solid #cecece;
    border-radius: 3px;
    height: 250px;
}

@media ( min-width: 768px ) {
    .flex {
        display: flex;
    }
    .w75 {
        min-width: 75%;
        max-width: 75%;
    }
    .pc-img {
        margin: 0 5px;
    }
    .sp-img {
        display: none;
    }
}

@media ( max-width: 767px ) {
    .topic-img {
        width: auto;
        height: fit-content;
        text-align: center;
        margin-bottom: 10px;
    }
    .pc-img {
        display: none;
    }
    .sp-img {
        width: 55%;
        margin: auto;
    }
}

/* ========================================
 * .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 .area_2clm {
    background-color: #fff;
}
@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;
        padding-right: 24px;
    }
    .topic .topicInner h2+p {
        margin-top: 16px;
    }
    .topic .topicInner .area_2clm {
        -webkit-box-pack: justify;
        justify-content: space-between;
        padding: 16px;
        margin-top: 16px;
        flex-wrap: nowrap;
    }
}
@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 .area_2clm {
        padding: 16px;
        margin-top: 16px;
    }
}