/*new_manabi.css*/

.mlist {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}

.mlist::after{
    content:"";
    display: block;
    width:31%;
}

.mlist .mlist_item {
    width: 31%;
    margin-bottom: 55px;
}

.mlist_item_img {
    display: block;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 15px;
    width: 100%;
    position: relative;
}

.mlist_item_img::before {
    content: "";
    display: block;
    padding-top: 66.66%;
}

.mlist_item_img img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.mlist_item_img:hover img {
  transform: scale(1.1);
}

.mlist .mlist_item .mlist_item_tit {
    display: block;
    text-decoration: none;
    color: #212121;
    font-size: 112.5%;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    transition: transform .3s ease;
}

.mlist .mlist_item .mlist_item_tit:hover {
    color: #3E508D;
    text-decoration: underline;
}

.mlist_prof {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 8px;
}

.mlist_prof_img {
    min-width: 60px;
    width: 60px;
}

.mlist_prof_img img {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.mlist_prof .mlist_prof_img {
    margin-right: 15px;
}

.mlist_prof li {
    font-size: 81.25%;
    font-weight: 500;
}

.mlist_tags {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.mlist_tags li {
    margin-right: 5px;
    margin-bottom: 5px;
}

.mlist_tags li span {
    display: inline-block;
    font-size: 68.75%;
    color: #3E508D;
    text-align: center;
    padding: 2px 6px;
    border: 1px solid #3E508D;
    text-decoration: none;
    border-radius: 5px;
}


@media screen and (max-width: 767px) {
    .mlist {
        display: block;
        margin-top: 35px;
    }
    .mlist .mlist_item {
        width: 100%;
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
    .mlist_item_img {
        width: 35%;
        border-radius: 5px;
        margin-bottom: 5px;
        margin-right: 3%;
    }
    .mlist_cont {
        width: 62%;
    }
    .mlist_tags {
        width: 100%;
    }
    .mlist .mlist_item .mlist_item_tit {
        font-size: 100%;
    }
    .mlist_prof li {
        font-size: 75%;
        width: calc(100% - 30px);
    }
    .mlist_prof .mlist_prof_img {
        width: 40px;
        min-width: 40px;
        margin-right: 0;
    }
    .mlist_prof_img img {
        width: 36px;
        height: 36px;
    }
    .mlist_tags li span {
        font-size: 75%;
    }
    
}






