/* タワレコ風 - グラデーションと複雑な装飾を削除 */
.schedule-section {
    /* グラデーションを削除し、シンプルな白っぽい背景色に変更 */
    background: #FFFDE7; /* または #FFFDE7 などのごく薄いクリーム色 */
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* タワレコのキーカラーである赤と黄色（金）で上下を強調 */
    border-top: 8px solid var(--tawareco-red); /* 強調された赤 */
    border-bottom: 8px solid var(--tawareco-yellow); /* 濃い黄色（金） */
}

.schedule-title {
    font-size: 4em;
    font-family: 'Luckiest Guy', 'Arial Black', 'Impact', sans-serif;
    font-weight: 900;
    color: var(--tawareco-red); /* 赤 */
    letter-spacing: 4px; /* より強調 */
    text-transform: uppercase;
    /* タワレコ風のツートンカラーの影 */
    text-shadow: 
        4px 4px 0px var(--tawareco-yellow), /* 黄色/金 */
        8px 8px 0px var(--tawareco-black); /* 黒 */
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    letter-spacing: 0.15em;
}

.schedule-timeline {
    position: relative;
    margin: 0 auto;
    max-width: 800px;
}

/* タイムラインの縦線もシンプルに、グラデーションを削除 */
.schedule-timeline::before {
    content: "";
    position: absolute;
    left: 152px;
    top: 0;
    width: 8px; /* より太く */
    height: 100%;
    background: var(--tawareco-red); /* 単色（赤） */
    box-shadow: none; /* 影を削除 */
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    margin-bottom: 60px;
    /* アニメーションを削除 */
    animation: none;
}

/* アニメーションディレイを削除 */
.schedule-item:nth-child(1),
.schedule-item:nth-child(2),
.schedule-item:nth-child(3) { 
    animation-delay: 0s;
}

/* タイムラインの丸（ドット）もシンプルに、グラデーションとアニメーションを削除 */
.schedule-item::before {
    content: "";
    position: absolute;
    left: 140px; /* 縦線に合わせて調整 */
    top: 35px;
    width: 25px; /* 大きめに */
    height: 25px;
    background: var(--tawareco-yellow); /* 単色（黄色/金） */
    border: 4px solid var(--tawareco-red); /* 赤の縁取り */
    border-radius: 50%;
    z-index: 2;
    box-shadow: none; /* 影を削除 */
    animation: none; /* アニメーションを削除 */
}


.schedule-time {
    width: 120px;
    text-align: right;
    font-weight: 900;
    font-size: 1.5rem; /* より大きく */
    color: var(--tawareco-red); /* 赤 */
    margin-top: 25px;
    text-shadow: none;
    font-family: "Bruno Ace", sans-serif;
}

/* コンテンツボックスもシンプルに、グラデーションと複雑な影を削除 */
.schedule-content {
    background: #F8F8F8; /* 薄いグレーや白っぽい単色 */
    border-left: 8px solid var(--tawareco-yellow); /* 黄色（金）の太い線 */
    border-radius: 8px; /* 角をシンプルに */
    padding: 20px 25px;
    width: 65%;
    text-align: left;
    /* シンプルな影に変更 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-left: 120px;
    transition: none; /* ホバーアニメーションも削除 */
    border-top: none; /* 上部の線を削除 */
}

/* ホバーエフェクトもシンプルに */
.schedule-content:hover {
    transform: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); /* 影を少し強調 */
    border-left-color: var(--tawareco-red); /* ホバーで赤に変化 */
}

.schedule-content h3 {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: "Yusei Magic", sans-serif;
    color: var(--text-color);
    margin-bottom: 6px;
    text-shadow: none;
}

.schedule-content h3 span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--tawareco-yellow); /* 黄色（金） */
    margin-left: 15px;
}

.schedule-content p {
    font-size: 1rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
    .schedule-section {
        padding: 50px 15px;
    }

    .schedule-title {
        font-size: 3rem;
        margin-bottom: 30px;
    }

    .schedule-timeline::before {
        left: 76px;
        width: 6px;
    }

    .schedule-item::before {
        left: 66px;
        top: 30px;
        width: 20px;
        height: 20px;
        border-width: 3px;
    }

    .schedule-time {
        width: 80px;
        font-size: 1.1rem;
        margin-top: 38px;
    }

    .schedule-content {
        width: calc(100% - 70px);
        margin-left: 40px;
        padding: 15px;
        border-left-width: 6px;
    }

    .schedule-content h3 {
        font-size: 1.4rem;
    }

    .schedule-content h3 span {
        font-size: 0.95rem;
    }

    .schedule-content p {
        font-size: 0.9rem;
    }
}