/*----------
WHAT'S NEW
----------*/
.news-year{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.news-year .each{
    position: relative;
    display: block;
    width: 16%;
    margin-right: 0.8%;
    min-width: 160px;
    text-align: center;
    padding: 15px 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 20px;
}
.news-year .each:nth-child(6n){
    margin-right: 0;
}
.news-year .each.current,
.news-year .each:hover{
    background: #00b681;
    border: 1px solid #00b681;
    color: #fff;
}
.news-year .each:hover {
    border: 1px solid #00b681;
}
.news-year .each.current:after{
    content: "";
    position: absolute;
    left: calc(50% - 4px);
    bottom: -6px;
    width: 0;
    height: 0;
    border-top: 6px solid #00b681;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}
@media screen and (max-width: 768px){
.news-year .each{
    width: 30%;
    margin-right: 5%;
    min-width: 0;
}
.news-year .each:nth-child(3n){
    margin-right: 0;
}
}


.tab-category{
    margin-top: 5px;
    /* display: flex; */
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;

    display: none;

}
.tab-category .each{
    display: inline-block;
    width: calc(100% / 7 - 7px);
    padding: 4px 0;
    border: 1px solid #00b681;
    color: #00b681;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    transition: background-color .3s, color .3s;
}
.tab-category .each:hover,
.tab-category .each.is-current{
    background: #00b681;
    color: #fff;
}
.news-list .each{
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.news-list .each dl{
    display: flex;
    font-size: 14px;
}
.news-list .each dt{
    width: 110px;
    color: #505050;
    line-height: 1.5;
}
.news-list .each dd{
    width: calc(100% - 110px);
    line-height: 1.5;
}
.news-list .each dd a {
    text-decoration: underline;
}
.news-list .each dd .link-pdf{
}
.news-list .each .tabs{
    /* display: flex; */
    display: none;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.news-list .each .tabs .tab{
    display: inline-block;
    padding: 3px 8px 2px;
    border: 1px solid #00b681;
    color: #00b681;
    border-radius: 6px;
    line-height: 1;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

@media screen and (max-width: 768px){
.tab-category{
    gap: 12px;
}
.tab-category .each{
    width: calc(50% - 6px);
}
.news-list .each{
    padding: 20px 0;
}
.news-list .each dl{
    display: block;
}
.news-list .each dt{
    width: 100%;
}
.news-list .each dd{
    width: 100%;
    margin-top: 5px;
}

}
