@charset "UTF-8";
/*==============
  news_detail
===============*/
#news h2{
    margin-bottom: 32px;
}
#news_detail .flex{
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    margin-bottom: 16px;
}
#news_detail .day{
    font-family: var(--en);
    font-size: 1.8rem;
    margin-right: 1.88vw;
    margin-bottom: 12px;
}
#news_detail .category i{
    font-family: var(--en);
    font-size: 1.6rem;
    background: var(--color1);
    padding: 6px 10px;
    min-width: 84px;
    text-align: center;
    color: #fff;
    display: table;
    transition: 0.4s all;
}
#news_detail .news-body {
    line-height: 1.5;
    padding-bottom: 40px;
    margin: 32px 0;
    border-bottom: 1px solid var(--color2);
    font-size: 1.4rem;
}
@media screen and (max-width: 768px){
    #news_detail .news-body {
        margin-bottom: 32px;
        padding-bottom: 32px;
    }
}