.works_listContainer {
    margin-top: 60px;
}

.works_list {
    margin-bottom: 120px;
    padding-top: 100px;
    margin-top: -100px;
}

.works_titleWrap {
    justify-content: space-between;
    background-color: #EEF5F5;
    padding: 10px 30px;
    gap: 20px;
    align-items: center;
}

.works_title {
    font-size: clamp(1rem, 0.929rem + 0.36vw, 1.25rem);
    font-weight: bold;
    color: #4e4e4e;
    text-transform: capitalize;
}

.works_title br {
    display: none;
}

.works_container {
    gap: 54px;
    margin-top: 40px;
    align-items: center;

}

.works_mockImage {
    width: 100%;
    max-width: 454px;
    height: auto;
    box-shadow: 2px 2px 10px 0px rgba(78, 78, 78, 0.2);
}


.works_itemWrap {
    display: grid;
    grid-template-columns: .25fr .75fr;
    gap: 15px;
    margin-bottom: 30px;
}

.works_itemContainer {
    width: 60%;
}

.works_item {
    background: linear-gradient(30deg, #96C5CB, #96C5CB, #a9d0ea);
    color: #fff;
    font-weight: 500;
    border-radius: 5px;
    height: fit-content;
    padding: 3px 10px;
    text-align: center;
}

.works_iconWrap {
    gap: 10px;
}

.works_itemText_second {
    margin-top: 50px;
}

@media screen and (max-width:1220px) {
    .works_container {
        flex-direction: column;
    }

    .works_mockImage {
        margin: 0 auto;
    }

    .works_itemContainer {
        width: 90%;
    }
}


@media screen and (max-width:635px) {
    .works_title br {
        display: block;
    }

    .works_itemWrap {
        grid-template-columns: 1fr;
    }

    .works_iconWrap {
        flex-direction: column;
        gap: 5px;
    }

    .works_itemContainer {
        width: 100%;
    }


    .works_item {
        display: inline-block;
        width: 150px;
        padding: 3px 9px;
    }
}


@media screen and (max-width:400px) {
    .works_titleWrap {
        padding: 10px 15px;
    }
}

/* ********************************************
クリックすると画像が拡大表示される Luminous
******************************************** */

.lum-lightbox {
    z-index: 2;
}


.lum-lightbox-inner img {
    margin: 0 auto;
}

/* 矢印を消す */
.lum-gallery-button {
    display: none;
}

/* クローズボタンの位置 */
.lum-close-button {
    top: 20px;
    right: 20px;
}


.works_mockImage {
    position: relative;
    display: block;
    transition: .5s ease-in-out;
}



.works_mockImage::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    background-color: #4e4e4e;
    opacity: .4;
    width: 50px;
    height: 50px;

}

.works_mockImage::after {
    content: "";
    position: absolute;
    display: block;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background-image: url(/image/works/icon/zoom_icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
}


/* SPの拡大画像サイズ調整 */
@media screen and (max-width:460px) {
    .lum-lightbox-inner img {
        max-width: 160vw !important;
        max-height: 85vh !important;
    }
}