/* ================================
  IRニュース ページ
================================ */

/* IRニュース
-------------------------------- */
.l-news {
    grid-area: main;
}

.l-news .l-sec-inner {
    padding: 0;
}

.l-news__dl__dt {
/*     width: 267px;
    min-width: 267px;  */
    margin-right: 10px; 
}

.l-news__dl {
    align-items: center;
}

.news_select_cate {
    position: relative;
    width: fit-content;
    transition: all .3s;
}

.news_select_cate:hover {
    opacity: 0.4;
}

.news_select_cate::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    background-color: #fff;
    transform: rotate(135deg);
    position: absolute;
    right: 13px;
    top: 13px;
}

.news_select_cate_btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    border: #005bac solid 1px;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0;
    padding: .3em 1.55em .3em .7em;
    transition: all 0.3s;
    cursor: pointer;
    color: #000;
}

.news_select_option {
    background-color: #fff;
    border: #005bac 1px solid;
    font-size: 16px;
    box-sizing: border-box;
    padding: 0;
}

.news_tab {
    margin: 38px auto 0;
}

.news_tab_ul {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5em;
}

.news_tab_ul+.news_tab_list {
    margin-top: 98px;
    border-top: 1px solid #999;
}

.news_tab_list_inr {
    display: none;
}

.news_tab_list_inr.active {
    display: none;
}

.news_tab_ul_li {
    display: inline-block;
    position: relative;
    text-align: center;
    margin-right: 3.8666%;
    width: 22.1%;
}

.news_tab_ul_li:last-child {
    margin-right: 0;
}

.news_tab_ul_li:last-child:after {
    display: none;
}

.news_tab_ul_li_a,
.news_tab_ul_li_a:link,
.news_tab_ul_li_a:visited {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.5;
    box-sizing: border-box;
    margin: 0;
    padding: .25em 0 .35em 0;
    transition: all 0.3s;
    position: relative;
    border-radius: 3px;
    color: #000;
    background: #fff;
    display: block;
    border: 1px solid #005bac;
}

.news_tab_ul_li_a:hover,
.news_tab_ul_li.active .news_tab_ul_li_a {
    color: #fff;
    background: #005bac;
}

.news_tab_ul_li_a:hover::before {
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}

.news_tab_ul_li_a.current::before {
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}


@media only screen and (max-width: 1199px) {
    .news_tab_ul {
        padding: 0;
        flex-wrap: wrap;
    }

    .news_tab_ul_li {
        margin-right: 4%;
        width: 48%;
    }

    .news_tab_ul_li:nth-child(even) {
        margin-right: 0;
    }

    .news_tab_ul_li:nth-child(n+3) {
        margin-top: 4%;
    }
}


@media (max-width: 999px) {

    .news_tab_ul_li_a,
    .news_tab_ul_li_a:link,
    .news_tab_ul_li_a:visited {
        font-size: 1.6rem;
    }
}


@media (max-width: 767px) {
    .l-news {
        padding: 10px 0 0;
    }

    .newsBl .news_dl {
        padding: .8em 10px 0.6em;
    }

    .newsBl .news_dl_dl_dd {
        margin-top: 13px;
    }

    .news_select_cate:hover {
        opacity: 1;
    }

    .news_select_cate::after {
        width: 4px;
        height: 4px;
        right: 8px;
        top: 16px;
    }

    .news_select_cate_btn {
        font-size: 11.5px;
        padding: .3em 1.4em .3em .6em;
    }

    .news_tab {
        margin: 17px auto 0;
    }

    .news_tab_ul {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0 22px;
    }

    .news_tab_ul_li {
        margin-right: 4%;
        width: 48%;
    }

    .news_tab_ul_li:nth-child(even) {
        margin-right: 0;
    }

    .news_tab_ul_li:nth-child(n + 3) {
        margin-top: 12.5px
    }

    .news_tab_ul+.news_tab_list {
        margin-top: 23px;
    }

    .news_tab_ul_li_a,
    .news_tab_ul_li_a:link,
    .news_tab_ul_li_a:visited {
        font-size: 12.5px;
        padding: .3em 0;
        border: 1px solid #005bac;
        background: #fff;
        color: #000;
        border-radius: 2.5px;
    }

    .news_tab_ul_li_a:hover {
        background: #fff;
        color: #000;
    }

    .news_tab_ul_li.active .news_tab_ul_li_a {
        color: #fff;
        background: #005bac;
    }

}