@charset "utf-8";

/*------------ キャッチ ------------*/
.strength_head {
    display: block;
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.769;
    text-align: center;
    margin-bottom: 54px;
}

.catch_box {
    max-width: 1000px;
    padding: 47px 50px 45px;
    background: #F5F5F5;
    border-radius: 15px;
    margin: 0 auto 114px;
}

.catch_box p {
    line-height: 2.058;
    text-align: center;
    margin-bottom: 0;
}

/*------------ bg_grey ------------*/
.strength_img {
    margin-bottom: 58px;
}

.strength_img img {
    margin: auto;
}

.strenght_list {
    counter-reset: num;
}

.strenght_box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 47px;
    counter-increment: num
}

/* .strenght_box:last-child {
    margin-bottom: 0;
} */

.strength_l {
    width: 240px;
    position: relative;
}

.strength_l h2 {
    font-family: 'Shippori Mincho', serif;
    font-size: 4.6rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 30px;
}

.strength_l h2::before {
    display: block;
    content: counter(num, decimal-leading-zero);
    font-size: 2.5rem;
    line-height: 1;
    padding: 0 0 0 4px;
}

.strength_r {
    width: calc(100% - 240px);
    padding: 0 0 0 39px;
    position: relative;
}

.strength_r::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% - 10px);
    background: #DDDDDD;
    top: 0;
    left: 0;
}


.strength_r h3 {
    margin: 0 0 21px;
}

.strength_r p {
    margin: 0;
}

@media screen and (max-width: 767px) {

    /*------------ キャッチ ------------*/
    .strength_head {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .catch_box {
        padding: 12px 15px 11px;
        margin: 0 auto 45px;
    }

    /*------------ bg_grey ------------*/
    .strength_img {
        margin-bottom: 40px;
    }

    .strenght_box {
        margin-bottom: 30px;
    }

    /* .strenght_box:last-child {
    margin-bottom: 0;
} */

    .strength_l {
        width: 100%;
    }

    .strength_l h2 {
        font-size: 2.6rem;
        margin: 0 0 10px;
    }

    .strength_l h2::before {
        font-size: 1.8rem;
        padding: 0 0 0 2px;
    }

    .strength_r {
        width: 100%;
        padding: 0 0 0 23px;
        margin-left: 13px;
    }

    /* .strength_r::before {
        position: absolute;
        content: "";
        width: 1px;
        height: calc(100% - 10px);
        background: #DDDDDD;
        top: 0;
        left: 0;
    } */

    .strength_r h3 {
        margin: 0 0 8px;
    }

}