.cafe-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 12px;
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 10px;
}

.cafe-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

/* ====================== ここを修正 ====================== */

/* 1024px より広い画面 → 4列（PC表示） */
@media (min-width: 1025px) {
    .cafe-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 1024px 以下 → 2列（タブレット・モバイル表示） */
@media (max-width: 1024px) {
    .cafe-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}