@charset "utf-8";

/*全体レイアウト*/
.box_listNews .list_news .li_news {
    width: 100%;
    padding-top: 1em;
    padding-bottom: 1em;
    border-bottom: dotted rgb(24, 24, 24) 1px;
}
@media only screen and (min-width : 769px) {
    .box_listNews .list_news .li_news {
        padding-top: 0.25em;
        padding-bottom: 0.25em;
    }
}

.box_listNews .list_news .li_news:nth-last-child() {
    border-bottom: none;
}

.box_listNews .list_news .li_news a {
    display: block;
    width: 100%;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
}

.box_listNews .box_news {
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.box_listNews .box_news .txt {
    line-height: 1.2em;
    font-size: var(--fs_l);
    position: relative;
    transition: transform 0.2s ease;
    will-change: transform;
}

.box_listNews .list_news .li_news a:hover .txt {
    transform: translateY(2px);
}

.box_listNews .box_news .txt--main {
    width: 80%;
}

.box_listNews .box_news .txt--time {
    width: 20%;
}

.box_listNews .box_news .txt--time i {
    margin-right: 0.25em;
}

@media only screen and (min-width : 769px) {}