.scroll-indicator {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.0);
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 1000;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    max-width: 200px;
    width: 200px;
    max-height: 80vh;
    overflow-y: auto;
}

.scroll-indicator .indicator-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.scroll-indicator .current-section {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 1.0);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.scroll-indicator .other-section {
    font-size: 14px;
    color: rgb(73, 97, 206);
    padding: 4px 12px;
    transition: all 0.3s ease;
}

/* スクロールバーのスタイル */
.scroll-indicator::-webkit-scrollbar {
    width: 6px;
}

.scroll-indicator::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.scroll-indicator::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.scroll-indicator::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* @media screen and (max-width: 1368px){
    .scroll-indicator {
        display: none!important;
    }
} */