@charset "UTF-8";
#news .news-list {
    margin-bottom: 100px;
}
#news .news-list p {
    position: relative;
    padding: 25px 0;
    border-bottom: solid 1px #bababa;
}
#news .news-list p::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #333;
    transition: width 0.8s ease;
}
#news .news-list a:hover p::after {
    width: 100%;
}
#news .news-list p:nth-child(1) {
    border-top: solid 1px #bababa;
}
#news .news-list p:last-of-type {
    border-bottom: none;
}
#news .news-list p span {
    margin: 0 10px;
    background-color: #f5f5f5;
    border: solid 1px #333;
    border-radius: 5px;
    padding: 3px 8px;
    display: inline-block;
    transition: 0.6s;
}
#news .news-list a:hover span {
    background-color: #2E466C;
    color: #fff;
}
#news .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}
#news .pagination li {
    margin: 0 10px;
}

/*---------------------------------------スマートフォン-----------------------------
----------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {

    #news .news-list {
        margin-bottom: 60px;
    }
    #news .news-list p {
        padding: 20px 0;
        font-size: 0.875rem;
    }
    #news .pagination {
        margin-bottom: 50px;
    }


    
}