#contents {
    padding-top: 5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.contents-item {
    position: relative;
    width: 160px;
    height: 160px;
}
.contents-item .imageWrapper {
    display: block;
    position: relative;
    overflow: hidden;
    background-color: #e1eaea;
    width: 160px;
    height: 160px;
}
.contents-item img {
    width: 160px;
    height: 160px;
    object-fit: cover;
}

.imageWrapper {
    border-radius: 30px;
}

/* タブレット用
------------------------------- */
@media screen and (max-width: 1100px) {
}

/* スマホ用
------------------------------- */
@media screen and (max-width: 600px) {
}