/* CSS Document */
.newslist-wrap {
    width: 1024px;
    margin: 74px auto 101px;
}
.newslist-wrap .newslist-header {
    display: flex;
    align-items: center;
}
.newslist-wrap .newslist-body {
    margin-top: 39px;
    border-top: 1px solid #ccc;
}

.newslist-wrap .newslist-body .news-raw {
    border-bottom: 1px solid #ccc;
    padding: 9px 0 14px;
}
.newslist-wrap .news-raw .cat-data {
    display: flex;
    font-size: 1.4rem;
    line-height: 1.4em;
}
.newslist-wrap .news-raw .date {
    width: 130px;
    flex-basis: 130px;
}
.newslist-wrap .news-raw .cat {
    margin-left: 16px;
}
.newslist-wrap .news-raw .news-title {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.4em;
    margin: 7px 0 0 146px;
}
.news-backnum-list {
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0 244px;
}
.news-backnum-list li {
    width: 330px;
    flex-basis: 330px;
    height: 60px;
    margin-right: 17px;
    margin-bottom: 15px;
    font-size: 1.8rem;
    text-align: center;
}
.news-backnum-list li:nth-of-type(3n){
    margin-right: 0;
}
.news-backnum-list li a {
    display: block;
    width: 100%;
    height: 100%;
    color: var(--base-font);
    background-color: #e9e9e9;
    padding: 21px 10px;
}
.news-backnum-list li a:hover {
    opacity: 0.8;
}
.news-backnum-list li a:active {
    opacity: 0.9;
}
/* Mobile adjust */
@media screen and (max-width:1064px) {
    .newslist-wrap
    {
        width: 96%;
    }
    .news-backnum-list li {
        width: 32%;
        flex-basis: 32%;
        margin-right: 2%;
    }
}
/* max-width 1064px */

@media screen and (max-width:520px) {
    .newslist-wrap {
        margin: 25px auto 37px;
    }
    .newslist-wrap .newslist-body {
        margin-top: 19px;
    }
    .newslist-wrap .news-raw .cat-data {
        font-size: 1.3rem;
    }
    .newslist-wrap .news-raw .news-title {
        font-size: 1.4rem;
        margin: 7px 0 0 0;
    }
    .news-backnum-list {
        margin: 20px 0 90px;
    }
    .news-backnum-list li {
        width: 48%;
        flex-basis: 48%;
        margin-right: 4%;
        height: 40px;
        font-size: 1.6rem;
    }
    .news-backnum-list li a {
        padding: 11px 10px;
    }
    .news-backnum-list li:nth-of-type(3n){
        margin-right: 4%;
    }
    .news-backnum-list li:nth-of-type(2n){
        margin-right: 0;
    }
}
/* max-width 520px */

