section .container{
    min-height: 100vh;
}
.newsList{
    display: flex;
    width: 70%;
    margin: auto;
    margin-top: 50px;
}
.newsList .title{
    width: 10%;
    writing-mode: vertical-rl;
    color: #fff;
}
.newsList .title h2{
    font-size: 3rem;
}
.newsList .title h3{
    font-size: 1.4rem;
}
.newsList .List{
    width: 90%;
    color: #fff;
}
.news-item{
    width: 90%;
    height: 100px;
    margin: auto;
    border-bottom: 1px solid #fff;
    transition: background-color 0.4s;
}
.news-item:hover{
    background-color: rgba(255, 255, 255, 0.2);
}
.news-item a{
    display: block;
    width: 100%;
    height: 100%;
}
.news-item .newsInfo{
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 0.9rem;
}
.news-item .newsInfo .category{
    display: flex;
    width: 100px;
    height: 25px;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
}
.news-item .newsInfo .create_at{
    padding-left: 10px;
}
.news-item .newsTitle{
    display: flex;
    height: calc(100% - 35px);
    padding-left: 10px;
    padding-right: 10px;
    align-items: center;
    font-size: 1.4rem;
}
@media screen and (max-width:1025px){
    section .container{
        min-height: 70vh;
    }
    .newsList{
        width: 90%;
        margin-top: 30px;
    }
    .newsList .title{
        width: auto;
    }
    .newsList .title h2{
        font-size: 2.5rem;
    }
    .newsList .List .news-item{
        width: 95%;
    }
    @media screen and (max-width:480px){
        .newsList{
            flex-direction: column;
        }
        .newsList .title{
            writing-mode: horizontal-tb;
            margin-bottom: 30px;
        }
        .newsList .title h3{
            font-size: 1.2rem;
        }
        .newsList .title h2{
            font-size: 2.3rem;
        }
        .newsList .List{
            width: 100%;
        }
        .newsList .List .news-item{
            width: 100%;
        }
        .news-item .newsInfo,
        .news-item .newsTitle{
            padding-left: 1px;
            padding-right: 1px;
        }
        .news-item .newsInfo .category p{
            font-size: 0.9rem;
        }
        .news-item .newsTitle h2{
            font-size: 1.1rem;
        }
    }
}
/*レスポンシブ対応済み　スマホ、タブレット*/