@charset "utf-8";

/* 全体の余白をクリア */
*{
    margin: 0;
    padding: 0;
}
body{
    font-family: "游ゴシック";
}

#newslists{
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.news-list{
    list-style: none outside;
    margin: 0;
    padding: 0;
}
.news-list .item a{
    display: flex;
    flex-wrap: nowrap;
    text-decoration: none;
    color: black;
    padding: 20px 20px;
}
.news-list li{
    border-top: 1px solid lightgray;
}
.news-list li:last-child{
    border-bottom: 1px solid lightgray;
}
.news-list .item a:hover{
    color: darkgray;
}
@media screen and (min-width:768px){
    #newslists{
        width: 750px;
    }
}
@media screen and (max-width:767px){
    #newslists{
        width: 95%;
    }
}