@charset "utf-8";

.gallery .inner {
    padding: 66px 0 160px;
    display: flex;
    flex-direction: column;
    gap: 65px;
    align-items: center;
}

.gallery .inner .list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.gallery .inner .list .item {
    aspect-ratio: 377/385;
    width: 100%;
    height: 100%;
    background-color: #150E06;
}

.gallery .inner .list .item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery .list .item.is-hidden {
    display: none;
}

.gallery .loadmore {
    display: flex;
    justify-content: center;
    font-size: clamp(1.375rem, 1.223rem + 0.65vw, 2rem);
    color: #150e06;
    border-radius: 50px;
    border: 3px solid #150e06;
    padding: 20px 40px;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .gallery .inner .list {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery .loadmore {
        padding: 14px 28px;
    }
}