@charset "utf-8";

.works .flex{
  display: flex;
  flex-wrap: wrap;
}
.works .box {
    width: 330px;
    float: left;
    margin-bottom: 20px;
    background-color: #efefef;
}

.works .box:nth-child(2n) {
    margin-left: 20px;
}


.works .box .photo {
    width: 100%;
    height: 250px;
    margin: 0;
}

.works .box .photo .img {
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
}

.works .box p {
    font-weight: bold;
    padding: 10px;
}

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

    .works .box {
        width: 100%;
        float: none;
        margin-bottom: 30px;
        background-color: #efefef;
    }

    .works .box:nth-child(2n) {
        margin-left: 0;
    }

    .works .box:last-child,
    .works .box:nth-last-child(2) {
        margin-bottom: 30px;
    }

    .works .box .photo {
        width: 100%;
        height: 60vw;
        margin: 0;
    }

    .works .box .photo .img {
        display: block;
        background-repeat: no-repeat;
        background-position: center;
        width: 100%;
        height: 100%;
        -webkit-background-size: cover;
        background-size: cover;
    }

    .works .box p {
        font-size: 14px;
    }

}
