/*
* draggable scroll
*/
.dragabble-scroll-container {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.dragabble-scroll-content {
    position: relative;
    width: fit-content;
}

.scroll-hint-indicator {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 80px;
    height: 60px;
    border-radius: 10px;
    background: url('../img/swipe.svg') no-repeat center center;
    background-color: #555;
    z-index: 10;
    opacity: 0.7;
    pointer-events: none; /* インジケータがクリックを妨げないようにする */
}

.scroll-hint-indicator.fade-out {
    opacity: 0;
    transition: opacity 0.5s;
}
