@charset "UTF-8";

/*
SP ～519px
tab 520px～959px
pc 960px～
*/

.pageview {
    background-image: url(../../img/news_main_image.jpg);
}

/* news_list */

.news_list a {
    transition: 0.5s;
    display: flex;
    gap: var(--gutter-16px);
}

.news_list a:hover {
    opacity: 0.5;
}

.news_list li {
    display: flex;
    justify-content: start;
    padding-top: var(--gutter-24px);
    padding-bottom: var(--gutter-24px);
    border-bottom: 1px solid rgba(189, 182, 174, 80%);
}

.news_list li:first-of-type {
    padding-top: 0;
}

@media screen and (min-width:729px) {

    .news_list li {
        padding: var(--gutter-40px) 0;
    }
}