@charset "utf-8";
.schedule_wrap{
    position: relative;
}

.schedule_wrap_week{
    width: 100%;
    border: 1px solid #C4C4C4;
    border-left: 0;
    border-right: 0;
    text-align: center;
}
.schedule_wrap_week th{
    font-weight: 500;
    font-size: 16px;
    line-height: 42px;
    vertical-align: middle;
    color: #929292;
}
.schedule_wrap_week td{
    padding-bottom: 24px;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    vertical-align: middle;    
    color: #929292;
}
.schedule_wrap_week td button{
    display: inline-block;
    width: 40px;
    height: 40px;
    border:0;
    border-radius: 99px;
    background-color: transparent;
}
.schedule_wrap_week td .now{
    background-color: #00D2C3;
    color: #fff;
}

.schedule_wrap_day{
    display: none;
}
.schedule_wrap_day.now{
    display: block;
}

.schedule_wrap_day h3{
    font-weight: 700;
    font-size: 22px;
    line-height: 53px;
    text-align: center;
    color: #091E3A;
}

.schedule_wrap_day_detail{
    overflow-y: auto;
    max-height: 340px;
}
.schedule_wrap_day_detail .no-schedule{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    color: #091E3A;    
}
.schedule_wrap_day_detail li{
    display: flex;
    margin-bottom: 5px;
    padding: 24px 20px 24px 30px;
    background-color: rgba(196, 196, 196, 0.1);
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    color: #091E3A;
    word-break: keep-all;
}
.schedule_wrap_day_detail li:hover{
    background: rgba(0, 210, 195, 0.2);
}
.schedule_wrap_day_detail li h4{
    flex-shrink: 0;
    width:200px;
    margin-right: 20px;
}

.schedule_wrap .lt_more{
    position: absolute;
    top: -76px;
    right: 0;
    width: 150px;
    line-height: 46px;
    border: 1px solid #C4C4C4;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    color: #929292;
}