.lesson_box h4{
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    background: #333;
    color: #fff;
}

.school_list{
    margin-bottom: 20px;
}
.school_list li{
    margin-bottom: 20px;
}
.school_list li img:hover{
    transform: translateY(-2px);
    box-shadow: 0px 2px 1px rgba(0,0,0,.2);
}
.school_list li img{
    width: 100%;
    border-radius: 10px;
    transition: .25s;
    vertical-align: bottom;
}
.school_list li p{
    margin-top: 5px;
    font-size: 0.8rem;
}

@media screen and (min-width: 1024px){
    .school_list{display: flex;flex-wrap: wrap;}
    .school_list li{width: calc((100% - 20px)/2);}
    .school_list li:nth-of-type(2n){margin-left: 20px;}
    
    .size_all{width: 100%!important;}
}

@media screen and (max-width: 1023px){
    
}