@charset "utf-8";
/* boxSoon */
.secTimetable {
    text-align: center;
    width: 120rem;
    margin: 8rem auto 0;
}
.secTimetable .timeBox + .timeBox {
    margin-top: 10rem;
}
.secTimetable .dayBox{
    text-align: left;
    margin-bottom: 5rem;
}
.secTimetable .noteBox{
    display: flex;
    justify-content: center;
    text-align: center;
}
.secTimetable .note{
    font-size: var(--pcFontSize18);
    font-weight: bold;
    color: #fff;
    margin: 5rem 0;
}
.secTimetable .btnBox a{
    width: 46rem;
    height: 10rem;
    border-radius: 5rem;
    color: #041640;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--pcFontSize22);
    font-weight: bold;
    margin: 0 auto;
    text-decoration: none;
}
.secTimetable .btnBox a span{
    position: relative;
    display: block;
    padding-left: 3rem;
}
.secTimetable .btnBox a span::before{
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2rem;
    height: 2rem;
    background: url(../img/index/iconBtn.png) center top / cover no-repeat;
}
@media only screen and (max-width:767px){
    .secTimetable {
        width: 100%;
        margin: 0 auto;
    }
    .secTimetable .timeBox + .timeBox {
        margin-top: 7rem;
    }
    .secTimetable .dayBox {
        width: 92%;
        margin: 0 auto 2rem;
    }
    .secTimetable .dayBox img {
        width: 15rem;
    }
    .secTimetable .noteBox{
        text-align: left;
    }
    .secTimetable .note{
        font-size: var(--spFontSize11);
        margin: 2rem 0;
    }
    .secTimetable .btnBox a{
        width: 30rem;
        height: 6rem;
        border-radius: 3rem;
        font-size: var(--spFontSize14);
    }
    .secTimetable .btnBox a span{
        padding-left: 2.1rem;
    }
    .secTimetable .btnBox a span::before{
        width: 1.4rem;
        height: 1.4rem;
    }
    .secTimetable .scrollItem{
        margin-top: 20px;
        padding: 0 4%;
        position: relative;
        width: 100%;
        height: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .secTimetable .scrollItem .img{
        width: 550px;
    }
    .scrollItem::-webkit-scrollbar{
        display: none;
    }
    .scrollItem::before{
        content: "";
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        background: url(../img/common/iconScroll.png) center center / 13.5rem 12rem no-repeat;
        transition: all 0.2s ease-out 0.2s;
        animation: scrollItemAnimation 1s linear infinite;
        z-index: 10;
        pointer-events: none;
    }
    .scrollItem.scrolled::before{
        opacity: 0;
    }
    @keyframes scrollItemAnimation {
        0%   { transform:translateX(0); }
        25%   { transform:translateX(10px) }
        50% { transform:translateX(0); }
        75% { transform:translateX(-10px); }
        100% { transform:translateX(0); }
    }
}