@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

body {
    font-family: Constantia, "Almendra SC", 'Kiwi Maru';
}

img {
    width: 100%;
    height: 100%;
    vertical-align: bottom;
    object-fit: cover;
}

#wrap {
    margin: 50px auto;
    width: 96%;
    text-align: center;
}

h1 {
    margin-bottom: 30px;
    line-height: 70px;
    border-bottom: solid 3px #8CC63F;
    text-align: left;
}

#contents>p {
    margin-bottom: 30px;
    line-height: 70px;
    font-size: 32px;
}

article>p {
    margin-right: 0.8%;
    width: 49.1%;
    height: 245px;
    overflow: hidden;
    float: left;
}

article>div {
    margin-bottom: 10px;
    width: 50.1%;
    background-color: #f2f3db;
    float: left;
}

article>div p:first-of-type {
    line-height: 60px;
    border-bottom: solid 1px #8CC63F;
    overflow: hidden;
}

article>div p:last-of-type {
    height: 185px;
}

/* 501px以上 */
@media screen and (min-width: 671px) {
    #wrap {
        max-width: 980px;
    }

    h1 {
        width: 100%;
    }

    article {
        width: 24.1%;
        float: left;
    }

    article:not(:last-of-type) {
        margin-right: 1.2%;
    }

    article>p {
        width: 100%;
        height: 220px;
    }

    article>p,
    article>div {
        float: none;
    }

    article>div {
        width: 100%;
    }

    article>div p:first-of-type {
        border: none;
    }

}