/** おすすめ記事 **/
.recommend {
    padding-top: 0;
    padding-bottom: 6rem;
}

.recommend .linkBtn {
    margin-top: 1rem;
}

ul.recommendList {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 2rem;
}

ul.recommendList li {
    border-radius: 0.6rem;
    height: 25rem;
    width: 100%;
    position: relative;
}

ul.recommendList li + li {
    margin-top: 2rem;
}

ul.recommendList + .btn_wrap{
    margin-top: 4rem;
}

.recommendList_thumb {
    border-radius: 0.6rem;
    overflow: hidden;
}

p.recommendList_date {
    position: absolute;
    color: #fff;
    font-size: 1.2rem;
    top: 0;
    left: 0;
    border-radius: 0.6rem 0 0 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.2rem 0.5rem;
}

p.recommendList_title {
    color: #fff;
    position: relative;
    margin-top: -1.7rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    border-radius: 0 0 0.6rem 0.6rem;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.2rem 1rem;
    height: 4.6rem;
}

section.recommend h2 + ul {
    margin-top: 2rem;
}


/* PC */
@media only screen and (min-width: 751px) {
    .recommend {
        padding-top: 0;
        padding-bottom: 12rem;
    }

    .recommend .linkBtn {
        margin-top: 2rem;
    }

    ul.recommendList {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 4rem;
    }

    ul.recommendList li {
        background: #ccc;
        border-radius: 0.6rem;
        height: 25rem;
        width: 32rem;
        position: relative;
    }

    .recommendList_thumb {
        border-radius: 0.6rem;
        overflow: hidden;
    }

    p.recommendList_date {
        position: absolute;
        color: #fff;
        font-size: 1.2rem;
        top: 0;
        left: 0;
        border-radius: 0.6rem 0 0 0;
        background: rgba(0, 0, 0, 0.8);
        padding: 0.2rem 0.5rem;
    }

    p.recommendList_title {
        color: #fff;
        position: relative;
        margin-top: -1.7rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        height: 5.2rem;
        overflow: hidden;
        border-radius: 0 0 0.6rem 0.6rem;
        background: rgba(0, 0, 0, 0.8);
        padding: 0.2rem 1rem;
    }

    ul.recommendList li + li {
        margin-left: 2rem;
        margin-top: 0;
    }

    ul.recommendList li:nth-child(n+4) {
        margin-top: 2rem;
    }

    ul.recommendList li:nth-child(3n + 1):not(:first-child) {
        margin-left: 0;
    }

    ul.recommendList + .btn_wrap{
        margin-top: 8.5rem;
    }

    section.recommend h2 + ul {
        margin-top: 4rem;
    }
}