@charset "UTF-8";

/* news
---------------------------------------------------*/
#news .news-list {
    border-top: 1px solid #E6E6E6;
}
#news .news-list li {
    border-bottom: 1px solid #E6E6E6;
}
#news .news-list .news {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    padding: 26px 18px;
}
#news .news .figure {
    width: 120px;
    border-radius: 2px;
}
#news .news .title-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    width: calc(100% - 150px);
}
#news .news .title-wrap .modify {
    width: 90px;
    font-size: 14px;
}
#news .news .title-wrap .category .tag {
    display: inline-block;
    text-align: center;
    color: var(--white-color);
    font-size: 12px;
    letter-spacing: 0.12em;
    background-color: #A8B3B9;
    border-radius: 3px;
    padding: 0.5em 0.5em;
}
#news .news .title-wrap .title {
    width: 100%;
    line-height: 1.75em;
    font-size: 14px;
    margin-top: 10px;
}

/* 1000 */
@media screen and (max-width: 1000px) {
    #news .news-list .news {
        display: block;
        padding: 5.6vw 3.7333vw;
    }
    #news .news .figure {
        width: 100%;
        border-radius: 0.5333vw;
        margin-bottom: 2.6666vw;
    }
    #news .news .title-wrap {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%;
    }
    #news .news .title-wrap .modify {
        width: 34%;
        font-size: 3.7333vw;
    }
    #news .news .title-wrap .category {
        width: 66%;
    }
    #news .news .title-wrap .category .tag {
        font-size: 3.2vw;
        border-radius: 0.8vw;
    }
    #news .news .title-wrap .title {
        width: 100%;
        font-size: 3.4666vw;
        margin-top: 1.6vw;
    }
}


