
.bundle-slide {
    display: none;
}

.bundle-slideshow {
    position: relative;
    width: 100%; /* 必要に応じて固定幅を指定 */
    max-width: 800px; /* スライドショーの最大幅を指定 */
    overflow: hidden; /* 画像がはみ出さないようにする */
}

.bundle-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像をコンテナに収める */
}


.bundle-slide.active {
    display: block;
}

.slide-number {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 0.75rem;
    background-color: rgb(255, 70, 85, 0.6);
    padding: 4px 8px;
    border-radius: 9999px;
    user-select: none;
}

.prev-slide,
.next-slide {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s ease;
    border-radius: 50%;
    background-color: rgba(255, 70, 85, 0.6);
    user-select: none;
}

.next-slide {
    right: 10px;
}

.prev-slide {
    left: 10px;
}

.prev-slide:hover,
.next-slide:hover {
    background-color: rgba(255, 70, 85, 0.9);
}

.slide-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.slide-dot {
    cursor: pointer;
    height: 8px;
    width: 8px;
    margin: 0 2px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.slide-dot.active,
.slide-dot:hover {
    background-color: rgba(255, 70, 85, 0.8);
}

.fade {
    animation-name: fade;
    animation-duration: 0.5s;
}

@keyframes fade {
    from {
        opacity: 0.7
    }

    to {
        opacity: 1
    }
}