@charset "UTF-8";

/*お役立ちサイトのレイアウト*/
.edu-bnr_layout{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bnr-item{
    width: 49%;
    height: auto;
}

.bnr-item img{
    width: 100%;
    height: auto;
}

.bnr-item a::after{
    content: none;
}

@media screen and (max-width:768px){
    .edu-bnr_layout{
        flex-direction: column;
    }
    
    .bnr-item{
        width: 100%;
    }
}