@media (max-width: 767px) {
    .tag {
        padding-top: 0;
        margin-bottom: 40px;
        color: #6E6E73;
    }
    .small-text {
        font-weight: 300;
        font-size: 0.8em;
    }
    .text {
        font-weight: 500;
        font-size: 0.8em;
    }
    .works {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0;
    }
    .works-box1 {
        width: 48%;
        margin-bottom: 4%;
        height: 160px;
    }
    .works-box1 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .works-box2 {
        width: 48%;
        margin-bottom: 4%;
        height: 160px;
    }
    .works-box2 img {
        width: 100%;
        height: 160px;
        object-fit: cover;
    }
    .works-box2:after {
        content: "";
        display: block;
        width: 48%;  /* .boxに指定したwidthと同じ幅を指定する */
        height: 0;
    }
    /* フェードイン */
    .fade-in {
        opacity: 0;
        transition-duration: 500ms;
        transition-property: opacity, transform;
    }
    .fade-in-up {
        transform: translate(0, 50px);
    }
    .scroll-in {
        opacity: 1;
        transform: translate(0, 0);
    }    
}