.index_topnews {
    -js-display: flex;
    display:flex;
    display:-webkit-box;
    display:-ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align:center;
    -ms-flex-align:center;
    -webkit-align-items:center;
    align-items:center;
    border: 1px #ddd solid;
    border-radius: 5px;
    margin: 0 0 20px;
    overflow: hidden;
}

.index_topnews__head{
    display: block;
    width: 70px;
    line-height: 38px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    background: #1f478e;
    font-weight: 600;
    font-family: "游ゴシック", YuGothic, 'Noto Sans Japanese', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo,   Verdana, sans-serif;
}

.index_topnews__display {
    width: calc( 100% - 70px );
    padding: 0 12px;
    overflow: hidden;
}

.index_newstopic {
    -js-display: flex;
    display:flex;
    display:-webkit-box;
    display:-ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align:center;
    -ms-flex-align:center;
    -webkit-align-items:center;
    align-items:center;
    gap: 5px;
    font-size: 14px;
    color: #121212;
    line-height: 1.5;
    font-family: "游ゴシック", YuGothic, 'Noto Sans Japanese', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo,   Verdana, sans-serif;
}

.index_newstopic:hover .index_newstopic__anchor{
    text-decoration: underline;
}

.index_newstopic__date {
    white-space: nowrap;
}

.index_newstopic__anchor{
    color: #1f478e;
}

.index_newstopic__anchor span{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

@media only screen and (max-width: 960px){
    .index_newstopic {
        font-size: 12px;
    }
}

.index_news_list_block{
    position: relative;
}
.index_news_list.height-overflow{
    position: relative;
    max-height: 300px;
    overflow: hidden;
}
.index_news_list.height-overflow:after{
    content: "";
    display: block;
    height: 150px;
    background:linear-gradient( 180deg,transparent, #fff );
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.index_news_more_btn{
    display: block;
    width: 150px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.5;
    color: #E5827A;
    font-weight: 600;
    background: none;
    outline: none;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-family: "游ゴシック", YuGothic, 'Noto Sans Japanese', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo,   Verdana, sans-serif;
}
.index_news_more_btn .text-open{
    display: block;
}
.index_news_more_btn .text-close{
    display: none;
}
.index_news_more_btn:hover{
    opacity: .7;
}
.index_news_more_btn.active{
    margin: 20px auto 0;
}
.index_news_more_btn.active .text-open{
    display: none;
}
.index_news_more_btn.active .text-close{
    display: block;
}
@media only screen and (max-width: 960px){
    .index_news_more_btn{
        font-size: 14px;
        width: 120px;
    }
}
.js-index-news {
    visibility: hidden;
}

.js-index-news.slick-initialized {
    visibility: visible;
}