@charset "UTF-8";

/* ヘッダー・フッター非表示 */
header, footer {
    display: none !important;
}

.u-margin__top--60 {
    margin: 0 !important;
}

/* ギャラリー全体のレイアウト */
.insta_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin: 5rem auto 10rem auto;
    padding: 0;
    list-style: none;
}

/* 各アイテム（画像・動画共通） */
.gallery-item, .gallery-item02 {
    width: 33.3%; /* スマホでも3列に固定 */
    box-sizing: border-box;
    padding: 0 5px 5px 0; /* 余白をここで制御 */
}

/* 画像自体の設定 */
.insta_list img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1; /* 正方形に保つ（最近のブラウザ推奨） */
    object-fit: cover;
    display: block;
    max-height: 400px;
}

/* --- レスポンシブ設定 --- */

@media screen and (max-width: 1024px) {
    .insta_list img { max-height: 300px; }
}

@media screen and (max-width: 820px) {
    .insta_list img { max-height: 210px; }
}

@media screen and (max-width: 480px) {
    .insta_list { margin: 3rem auto 7rem auto; }
    .insta_list img { max-height: 120px; }
}

@media screen and (max-width: 375px) {
    .insta_list img { max-height: 100px; }
}

@media screen and (max-width: 300px) {
    .insta_list img { max-height: 70px; }
}