/* ページネーション全体のカスタマイズ */
.splide__pagination__page {
    background: #ccc; /* 通常時の色 */
    opacity: 1;       /* 透明度の調整（必要であれば） */
}

/* 現在表示されているスライドのドット（アクティブ状態） */
.splide__pagination__page.is-active {
    background: #ffd040; /* アクティブ時の色 */
    transform: scale(1.2); /* 大きさを変えるなどのアレンジも可能 */
}
