.shedule-item{
    justify-content: space-between;
    margin-bottom: calc(var(--vertical-indent) / 2);
    border: 1px solid var(--color-grey);
}

.shedule-item .datetime, .shedule-item .description{
    padding: 40px 20px; 
}

.shedule-item .datetime{
    order: 1;
    width: 20%;
    line-height: normal;
    border-right: 1px solid var(--color-grey);
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.shedule-item .datetime .btn-default{
    font-size: 80%;
}

.shedule-wrap{
    font-family: 'Noto';
    flex-direction: column;
    align-items: center;
}

.day{
    padding-right: 10px;
    font-size: 300%;
    font-weight: 600;
}

.month-wrap{
    justify-content: center;
}

.weekday{
    font-weight: 200; 
}

.time{
    margin-bottom: 20px;
    font-size: 150%;
}

.shedule-item .description{
    order: 2;
    width: 50%;
    line-height: normal;
}

.shedule-item .info-item{
    margin-right: 10px;
    display: block;
    font-size: 80%;
    padding: 5px 10px;
    border: 1px solid var(--color-dark-grey);
    color: var(--color-dark-grey);
}

.shedule-item .description .title{
    margin: 20px 0;
}

.shedule-item .description .title a{
    color: var(--color-black);
    text-decoration: none;
}

.shedule-item .description .title a:hover{
    color: var(--color-orange);
}

.shedule-item .description .paramet{
    font-size: 80%;
    line-height: normal;
}

.shedule-item .description .paramet .title{
    color: var(--color-dark-grey);
}

.shedule-item .preview-image{
    order: 3;
    width: 30%;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

.preview-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: 0;
}

@media screen and (max-width: 1400px) {

}

@media screen and (max-width: 1280px) {
   
}

@media screen and (max-width: 992px) {
    .shedule-item{
        flex-direction: column;
        margin-bottom: calc(var(--vertical-indent) / 2);
    }

    .shedule-item .datetime, .shedule-item .description{
        padding: 20px; 
    }

    .shedule-item .datetime{
        order: 3;
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
    }

    .shedule-wrap{
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .shedule-wrap .time{
        margin: 0;
        margin-left: 20px;
    }

    .shedule-item .description{
        order: 1;
        width: 100%;
    }

    .shedule-item .preview-image{
        order: 2;
        width: 100%;
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    
}

@media screen and (max-width: 576px) {
    .shedule-item .datetime{
        flex-direction: column;
    }

    .btn-default{
        margin-top: 20px;
        width: 100%;
    }
}

