
.tag {
    padding-top: 50px;
    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;
}
.works-box1 {
    width: 32%;
    margin-bottom: 2%;
    height: 300px;
}
.works-box1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.works-box2 {
    width: 32%;
    margin-bottom: 2%;
    height: 300px;
}
.works-box2 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.works-box2:after {
    content: "";
    display: block;
    width: 32%;  /* .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);
}
