/* --- Schedule Section Adventure 2027 Styles --- */

/* アウトラインテキストの共通設定 */
.stroke-text {
    -webkit-text-stroke: 1.5px #1e40af;
    color: transparent;
}

/* 背景巨大文字のカラー */
#schedule-bg-text {
    color: #f1f5f9;
}

/* ステップ数字のバウンド準備 */
.gsap-schedule-item .w-16 {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gsap-schedule-item:hover .w-16 {
    transform: scale(1.1) rotate(15deg);
}

/* モバイル時のタイムライン線の位置調整 */
@media (max-width: 767px) {
    #schedule-progress-line, 
    .absolute.left-8.md\:left-1\/2 {
        left: 32px !important;
    }
}


