/* 追従要素の基本スタイル */
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000; /* 最前面に */
    opacity: 0;
    transition: opacity 1s ease-out; /* じわっと表示 */
}

/* 丸い輪 */
.cursor-circle {
    width: 40px;
    height: 40px;
    border: 1.5px solid #8C8221;
    border-radius: 50%;
}

/* 星（clip-pathで作成） */
.cursor-star {
    width: 15px;
    height: 15px;
    background-color: #8C8221;
    /* 5角星の形状 */
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* アクティブ時に表示 */
.is-active {
    opacity: 1;
}
