.work-contents__list {
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    transition: 1s;
    transition-property: transform;
}

.work-contents__list:hover {
    transform: scale(1.05);
}

.work-contents__list__thumbnail {
    width: 100%;
}

.work-contents__list__company {
    margin: 20px auto 5px 20px;
    font-weight: bold;
    font-size: 14px;
    line-height: 21px;
}

.work-contents__list__title {
    margin-bottom: 5px;
    margin-left: 20px;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
}

.work-contents__list__tags {
    margin-left: 20px;
    padding-bottom: 14px;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #727171;
}

@media (max-width: 767px) {
    .work-contents__list__thumbnail {
        margin-bottom: 12px;
    }
    .work-contents__list__company {
        margin: 0 12px 5px 12px;
        font-size: 14px;
        line-height: 21px;
    }
    .work-contents__list__title {
        margin: 0 12px 12px 12px;
        font-size: 15px;
        line-height: 22px;
    }
    .work-contents__list__tags {
        margin: 0 12px;
        padding-bottom: 12px;
        font-size: 13px;
        line-height: 19px;
    }
}