/**
 * ギャラリースライダー
 */

 .tok-gallery {
    width: 100%;
    position: relative;
}

/* エディタ内プレビュー */
.tok-gallery-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 4px;
}

.editor-styles-wrapper .tok-gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

/* フロントエンド：Swiperスタイル */
.tok-gallery-swiper {
    width: 100%;
    overflow: hidden;
}

/* Swiper用のスライド幅指定 */
.tok-gallery-swiper .swiper-slide {
    width: 70%; /* PC: 画面の70%幅（1.5枚表示相当） */
}

.tok-gallery-item {
    width: auto;
}

.tok-gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* ナビゲーションボタン */
.tok-gallery .swiper-button-prev,
.tok-gallery .swiper-button-next {
    color: #333;
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.tok-gallery .swiper-button-prev:after,
.tok-gallery .swiper-button-next:after {
    font-size: 20px;
}

/* SP */
@media (max-width: 768px) {
    .tok-gallery-swiper .swiper-slide {
        width: 83.33%; /* SP: 1.2枚表示相当（100/1.2） */
    }
    
    .tok-gallery-item img {
        height: 300px;
    }
}