@charset "utf-8";

/* common,kidsの共通設定以外を記載 */

/* グリッドスタイル */
.img_still {
    display: flex; /* フレックスボックスを使用して画像を横並びに */
    flex-wrap: wrap;
    justify-content: space-around; /* 画像間のスペースを均等に */
    gap: 20px;
    padding: 0 20px;
}


/* gallery-still- pc */
@media screen and (min-width: 769px) {
    .img_still {
        gap: 70px;
        padding: 0 150px;
        margin-top: 170px;
    }

}/* pc 769px */