@charset "utf-8";
main{
    background: #F5F3F1;
}
.news_main_wrap{
    padding: 110px 0;
    max-width: 1650px;
    margin: 0 auto;
}
.label_wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    border-bottom: 1px solid #212121;
    max-width: 1620px;
    margin: 0 auto;
    width: calc(100% - 30px);
}
.label_wrap > button{
    width: 32%;
    display: block;
    text-align: center;
    max-width: 354px;
    background: #887676;
    color: #000;
    padding: 20px 0;
    margin: 0 1% 0 0;
    font-size: 15px;
}
.tab_btn {
  border: 0;
}
/*
.tab_btn.active ~ .label_wrap button:nth-of-type(1),
.tab_btn.active ~ .label_wrap button:nth-of-type(2),
.tab_btn.active ~ .label_wrap button:nth-of-type(3){
    background: #3D2525;
    color: #fff;
}
*/
.tab_btn.active{
    background: #3D2525;
    color: #fff;
}
.news_content_wrap{
    opacity: 0;
    visibility: hidden;
    transition: .2s all;
    height: 0;
}
#news_check_01.active ~ .news_main_inner .news_content_wrap:nth-of-type(1),
#news_check_02.active ~ .news_main_inner .news_content_wrap:nth-of-type(2),
#news_check_03.active ~ .news_main_inner .news_content_wrap:nth-of-type(3){
    opacity: 1;
    visibility: visible;
    transition: .2s all;
    height: auto;
}
.news_main_inner{
    padding: 0 15px;
    overflow: hidden;
}
.news_main_list{
    width: 100%;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}
.news_main_list li{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    padding: 40px 0;
    border-bottom: 1px solid #C1C1C1;
}
.news_main_list li a{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}
.news_main_list li::before{
    content:"";
    width: 11px;
    height: 11px;
    border-top: 2px solid #707070;
    border-right: 2px solid #707070;
    transform: rotate(45deg) translate(-50% , 0);
    position: absolute;
    top: 50%;
    right: 15px;
}
.news_main_list li .news_thumb{
    width: 40%;
}
.news_main_list li .news_info{
    width: 60%;
    padding: 5px 30px 0 10px;
}
.news_tag_wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}
.news_tag_wrap > p{
    margin: 0 10px 0 0;
    padding: 5px 20px;
    color: #fff;
}
.news_tag_wrap > p.days{
    padding: 0;
    color: #000;
}
.news_title{
    margin: 10px 0 0;
}
.pagination{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
    align-items: center;
    padding: 20px 0;
}
.pagination p,
.pagination a{
    margin: 0 10px;
    padding: 0;
    line-height: 200%;
}
.pagination a{
    display: block;
    width: 20px;
    height: 20px;
    position: relative;
}
.pagination a.next::before,
.pagination a.prev::before{
    content:"";
    width: 11px;
    height: 11px;
    border-top: 2px solid #707070;
    border-right: 2px solid #707070;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -60%) rotate(45deg);
}
.pagination a.prev::before{
    transform: translate(-50%, -50%) rotate(-135deg);
}
.pagination a.deactive{
    pointer-events: none;
    cursor: pointer;
}
.pagination a.deactive.next::before,
.pagination a.deactive.prev::before{
    border-top: 2px solid #CECECE;
    border-right: 2px solid #CECECE;
}
.pagination a.active.next::before,
.pagination a.active.prev::before{
    border-top: 2px solid #707070;
    border-right: 2px solid #707070;
}


div.news_main_inner > button {
background: #3D2525;
  border: none;
  color: #fff;
  padding: 20px 40px;
  text-align: center;
  margin: 2em auto 0;
  cursor: pointer;
  font-size: 20px;
  display: inline-block;
}


/* detail */
.nes_detail_wrap{
    padding: 0 15px 100px;
    width: 100%;
    margin: 120px auto 0;
    max-width: 1650px;
}
.news_detail_title{
    font-size: 35px;
    font-weight: 500;
}
.news_detail_inner{
    padding: 0;
    margin: 100px auto 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.nes_detail_wrap .news_tag_wrap > p{
    font-size: 20px;
}
@media(min-width: 600px){
}

/* 768px for table*/
@media (min-width: 768px) {
    .news_main_list li .news_thumb{
        width: 211px;
    }
    .news_main_list li .news_info{
        width: calc(100% - 211px);
    }
}

/* 992px for pc*/
@media (min-width: 1000px) {
    .label_wrap > button{
        margin: 0 9px 0 0;
        font-size: 30px;
    }
    .news_content_wrap{
        width: calc(98% + 30px);
        margin: 0 auto;
    }
    .news_tag_wrap{
        font-size: 20px;
    }
    .news_title{
        font-size: 25px;
    }
}

@media (min-width: 1620px) {
}