/*
body {
    font-family: sans-serif;
    margin: 0;
    padding: 20px;
    text-align: center;
}
*/

#works-container {
    display: flex; /* または grid */
    flex-wrap: wrap;
    gap: 20px; /* 画像間の間隔 */
    justify-content: center;
}

.work-item {
    cursor: pointer;
    overflow: hidden;
    width: 100%; /* 画像の幅 */
    height: 100%; /* 画像の高さ */
    /*border-radius: 8px;*/
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像をボックスに収める */
    transition: transform 0.3s ease;
}

.work-item img:hover {
   /* transform: scale(1.05); /* ホバー時の拡大アニメーション */
}