
.c-btn-flex a[data-v-02fdc3e1] {
    padding: 0 20px;
}

/* ============================================
   基本セクション - 元のスライダー
   ============================================ */
.sample-images-section[data-v-4be24723] {
    margin-top: 16px;
    width: 100%;
}
.sample-images-slider-container[data-v-4be24723] {
    position: relative;
    width: 100%;
}
.sample-images-slider[data-v-4be24723] {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.swiper-sample-images[data-v-4be24723] {
    width: 100%;
    position: relative;
}

/* スライド要素 */
.swiper-sample-images .swiper-slide[data-v-4be24723] {
    width: calc((100% - 16px) / 3) !important;
    margin-right: 8px !important;
    padding: 0 !important;
}
@media (min-width: 768px) {
.swiper-sample-images .swiper-slide[data-v-4be24723] {
        width: calc((100% - 20px) / 3) !important;
        margin-right: 10px !important;
}
}

/* 画像ラッパー */
.sample-image-wrapper[data-v-4be24723] {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 141.4%; /* A4比率 (297/210 ≈ 1.414) */
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
}
.sample-image[data-v-4be24723] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.sample-image.clickable[data-v-4be24723] {
    cursor: pointer;
    transition: opacity 0.2s ease;
}
.sample-image.clickable[data-v-4be24723]:hover {
    opacity: 0.8;
}

/* ============================================
   元のスライダー - ナビゲーションボタン
   ============================================ */
.sample-swiper-prev[data-v-4be24723],
.sample-swiper-next[data-v-4be24723] {
    display: none;
}
@media (min-width: 768px) {
.sample-swiper-prev[data-v-4be24723],
    .sample-swiper-next[data-v-4be24723] {
        display: block;
        cursor: pointer;
        height: 30px;
        width: 30px;
        position: absolute;
        top: 50%;
        margin-top: -15px;
        z-index: 10;
        background-color: #00b3d6;
        border-radius: 50%;
        border: none;
}
.sample-swiper-prev[data-v-4be24723]::after,
    .sample-swiper-next[data-v-4be24723]::after {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        position: absolute;
        top: 50%;
}
.sample-swiper-prev[data-v-4be24723]::after {
        transform: translateY(-50%) rotate(-135deg);
        right: 9px;
}
.sample-swiper-next[data-v-4be24723]::after {
        transform: translateY(-50%) rotate(45deg);
        left: 9px;
}
.sample-swiper-prev.swiper-button-disabled[data-v-4be24723],
    .sample-swiper-next.swiper-button-disabled[data-v-4be24723] {
        display: none;
}
.sample-swiper-prev[data-v-4be24723] {
        left: -7px;
}
.sample-swiper-next[data-v-4be24723] {
        right: -7px;
}
}

/* ============================================
   プレビューモーダル - 基本構造
   ============================================ */
.preview-modal[data-v-4be24723] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preview-content[data-v-4be24723] {
    position: relative;
    width: 90%;
    height: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
@media (max-width: 767px) {
.preview-content[data-v-4be24723] {
        padding: 10px 0;
}
}
.preview-close[data-v-4be24723] {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    transition: background-color 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
.preview-close[data-v-4be24723]:hover {
    background-color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
.preview-close[data-v-4be24723] {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 20px;
        line-height: 1.6;
}
}

/* ============================================
   プレビューモーダル - メイン画像セクション
   ============================================ */
.preview-main-section[data-v-4be24723] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 0;
}
.preview-navigation[data-v-4be24723] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: 1;
    min-height: 0;
}
.preview-image-container[data-v-4be24723] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 100%;
    overflow: hidden;
    min-height: 0;
}
.preview-image[data-v-4be24723] {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 4px;
}
@media (max-width: 767px) {
.preview-image[data-v-4be24723] {
        max-height: 50vh;
}
}
.preview-counter[data-v-4be24723] {
    color: white;
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
    margin-top: 10px;
}
@media (max-width: 767px) {
.preview-counter[data-v-4be24723] {
        font-size: 14px;
        padding: 6px 12px;
}
}

/* ============================================
   プレビューモーダル - サムネイルセクション
   ============================================ */
.preview-thumbnails-container[data-v-4be24723] {
    position: relative;
    width: 100%;
    padding: 0 40px;
    margin-top: 20px;
}
@media (max-width: 767px) {
.preview-thumbnails-container[data-v-4be24723] {
        padding: 0 30px;
}
}
.preview-thumbnails-slider[data-v-4be24723] {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.swiper-preview-thumbnails[data-v-4be24723] {
    width: 100%;
    position: relative;
}

/* サムネイルスライド */
.swiper-preview-thumbnails .swiper-slide[data-v-4be24723] {
    width: auto !important;
    margin-right: 8px !important;
    padding: 0 !important;
}
@media (min-width: 768px) {
.swiper-preview-thumbnails .swiper-slide[data-v-4be24723] {
        /* PC時: 6枚ぴったり表示 (間隔10px × 5 = 50px) */
        width: calc((100% - 50px) / 6) !important;
        margin-right: 10px !important;
}
}

/* サムネイル画像ラッパー */
.preview-thumbnail-wrapper[data-v-4be24723] {
    position: relative;
    width: 80px;
    height: 113px; /* 80 * 1.414 (A4比率) */
    overflow: hidden;
    background-color: #333;
    border-radius: 4px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color 0.2s ease, opacity 0.2s ease;
}
@media (min-width: 768px) {
.preview-thumbnail-wrapper[data-v-4be24723] {
        width: 100px;
        height: 141px; /* 100 * 1.414 */
}
}
.preview-thumbnail-wrapper[data-v-4be24723]:hover {
    opacity: 0.8;
}
.preview-thumbnail-wrapper.is-active[data-v-4be24723] {
    border-color: #00b3d6;
}
.preview-thumbnail-image[data-v-4be24723] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================
   プレビューモーダル - サムネイルナビゲーション
   ============================================ */
.preview-thumb-prev[data-v-4be24723],
.preview-thumb-next[data-v-4be24723] {
    display: none;
}
@media (min-width: 768px) {
.preview-thumb-prev[data-v-4be24723],
    .preview-thumb-next[data-v-4be24723] {
        display: block;
        cursor: pointer;
        height: 30px;
        width: 30px;
        position: absolute;
        top: 50%;
        margin-top: -15px;
        z-index: 10;
        background-color: #00b3d6;
        border-radius: 50%;
        border: none;
}
.preview-thumb-prev[data-v-4be24723]::after,
    .preview-thumb-next[data-v-4be24723]::after {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        position: absolute;
        top: 50%;
}
.preview-thumb-prev[data-v-4be24723]::after {
        transform: translateY(-50%) rotate(-135deg);
        right: 9px;
}
.preview-thumb-next[data-v-4be24723]::after {
        transform: translateY(-50%) rotate(45deg);
        left: 18px;
}
.preview-thumb-prev.swiper-button-disabled[data-v-4be24723],
    .preview-thumb-next.swiper-button-disabled[data-v-4be24723] {
        display: none;
}
.preview-thumb-prev[data-v-4be24723] {
        left: -7px;
}
.preview-thumb-next[data-v-4be24723] {
        right: -7px;
}
}
