@charset "UTF-8";

.inner {
    max-width: 1040px;
}


.news_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.cat_list {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.news_body {
    margin-bottom: 160px;
}

.news_list {
    margin-bottom: 30px;
}

.cat_list li a {
    text-decoration: underline;
}

.cat_list li a:hover {
    text-decoration: none;
}

.cat_list .all a {
    color: #B1B1B1;
    text-decoration: none;
}

.news_list li {
    max-width: unset;
}

.news_head_cnt.-archive {
    border: solid 1px #000;
    position: relative;
}

.news_head_cnt.-archive select {
    padding: 2px 50px 2px 10px;
}

.news_head_cnt.-archive:hover {
    cursor: pointer;
}

.news_head_cnt.-archive::after {
    content: '';
    width: 12px;
    height: 7px;
    background: url(/img/cmn/icon-arrow_archive.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    right: 15px;
    transform: translateY(50%);
    bottom: 50%;
}




/* single */

.news_single_head .date {
    color: #B1B1B1;
    margin-bottom: 20px;
}

.news_single_head .title {
    font-size: 25px;
    margin-bottom: 40px;
}

.news_single_body {
    padding: 45px 0;
    border-top: solid 1px #B1B1B1;
    border-bottom: solid 1px #B1B1B1;
    margin-bottom: 50px;
}

.wp-pagenavi {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.wp-pagenavi .page {
    font-size: 25px;
    position: relative;
}

.wp-pagenavi .page::after {
    content: '';
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    bottom: 10px;
    transform: translateX(50%);
    right: 50%;
}

.wp-pagenavi .page:hover::after {
    content: none;
}

.wp-pagenavi .current {
    font-size: 25px;
    color: #B1B1B1;
}

.wp-pagenavi .pages {
    display: none;
}

.news_single_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.nav_title {
    font-family: 'cormorant', serif;
    font-size: 26px;
}

.news_single_nav_prev a,
.news_single_nav_next a {
    display: flex;
    gap: 10px;
    align-items: center;
    transition-duration: 0.5s;
}

.news_single_nav_prev a:hover,
.news_single_nav_next a:hover {
    opacity: 0.7;
}


@media screen and (max-width:767px) {
    
    .news_body {
        margin-bottom: 50px;
    }

    .news_list {
        margin-bottom: 15px;
    }
}