/*マウスストーカー*/
#mouse-stalker {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1px;
    height: 1px;
    z-index: 9999;
    pointer-events: none;

}

.mouse-stalker-item {
    flex-shrink: 0;
}

.mouse-stalker-item-circle {
    width: 4vw;
    height: 4vw;
    border-radius: 50%;
    background-color: #fe0059;
    opacity: 0.3;
    transition: all 800ms;
}