/* NEWS一覧 */
.breadcrumb-item:nth-of-type(n+4),
.breadcrumb-arrow:nth-of-type(n+3) {
    display: none;
}
.news-list-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.news-items{
    background-color: #fff;
    border-radius: 8px;
}
.news-item a{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E8E5DF;
    background: url(../img/list-arrow.svg) center right no-repeat;
}
.news-item-type{
    text-align: center;
    padding: 3px 12px 4px;
    border-radius: 12px;
    border: 1px solid #707070;
}
.news-item-title{
    font-size: 16px;
}
/* ソート */
.news-type-sort{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.news-type-sort-item{
    height: 60px;
    flex-shrink: 0;
}
.c-article-text--link-btn{
    width: 100%;
    height: 100%;
    padding: 0 20px;
    margin-top: 0;
}
.news-list-year-sort{
    position: relative;
}
.news-list-year-sort-active{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    background-color: #fff;
    box-shadow: 0px 0px 8px #0000000D;
    border-radius: 22px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all .3s ease;
}
.news-list-year-sort-active:hover{
    color: #fff;
    background-color: #9A9A9A;
    text-decoration: none;
}
.icon-sort{
    margin-right: 12px;
}
.news-list-year-sort-select{
    position: absolute;
    top: 54px;
    right: 0;
    width: 236px;
    padding: 20px 16px;
    background-color: #fff;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 8px;
}
.news-list-year-sort-item{
    width: 100%;
    height: 55px;
}
.news-list-year-sort-link{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 12px;
    font-size: 16px;
    background-color: #fff;
    transition: all .3s ease;
}
.news-list-year-sort-link:hover{
    background-color: #F4F4F4;
    text-decoration: none;
}
/* --------------------------------------------------------------------
	PCクラス
-------------------------------------------------------------------- */
@media screen and (min-width: 769px) {
    /* NEWS一覧 */
    .news-list{
        margin-bottom: 86px;
    }
    .news-items{
        padding: 32px 32px 48px;
        margin: 24px auto 31px;
    }
    .news-item{
        width: 100%;
        height: 57px;
        margin: auto 12px;
    }
    .news-item a{
        width: 100%;
        height: 100%;
        transition: var(--transition-opacity);
        background-size: 24px;
        padding-right: 30px;
    }
    .news-item a:hover{
        text-decoration: none;
        opacity: .75;
    }
    .news-item-date{
        flex-shrink: 0;
    }
    .news-item-type{
        min-width: 136px;
        font-size: 12px;
        margin: auto 32px auto 20px;
    }
    /* ソート */
    .news-type-sort-wrap{
        margin-top: 36px;
    }
    .news-type-sort {
        margin-bottom: 68px;
    }
    .news-list-year-sort-active{
        width: 158px;
    }
}
/* --------------------------------------------------------------------
	スマートフォンクラス
-------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    /* NEWS一覧 */
    .news-list{
        margin-bottom: 11px;
        padding: 0 24px;
    }
    .news-items{
        padding: 24px;
        margin: 16px auto 32px;
    }
    .news-item+.news-item{
        margin-top: 20px;
    }
    .news-item a{
        flex-wrap: wrap;
        background-size: 20px;
        padding-right: 30px;
    }
    .news-item-date{
        margin-right: 16px;
    }
    .news-item-type{
        min-width: 124px;
        font-size: 11px;
    }
    .news-item-title{
        width: 100%;
        margin: 18px auto 17px;
    }
    /* ソート */
    .news-type-sort-wrap{
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        margin: 24px 0 38px;
        padding: 0 15px;
    }
    .news-type-sort-item{
        flex-shrink: 0;
        height: 30px;
    }
    .news-type-sort {
        flex-wrap: nowrap;
    }
    .news-list-year-sort-active{
        width: 120px;
    }
}