@charset "utf-8"; /* 文字化けしないために書く */
.title {
    text-align: center;
}
.title h3{
    font-size: 3.5rem;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 10px;
}
.title span {
    color: #5CB200;
}
.title p{
    font-size: 1.5rem;
}
.links {
    display: flex;
}
.links a{
    display: block;
    margin-right: 30px;
}
.articles{
    width: 100%;
}
.article {
    display: block;
    position: relative;
    width: 100%;
    height: 20vw;
    border: 0.5px solid #c8c8c8;
    margin-top: 30px;
}
.text {
    position: absolute;
    width: 50%;
    height: 250px;
    top: 10px;
    right: 0;
}
/* hover処理はjs */
.text h3, .text p{
    margin-top: 10px;
    margin-left: 2vw;
    margin-right: 2vw;
    padding-top: 0;
    margin-bottom:  0;
}

.article img{
    position: absolute;
    width: 50%;
    height: 20vw;
    object-fit: cover;/* 画像を領域サイズに合わせて切り取り */
    top: 0;
    left: 0;
}
.article a{
    position: absolute;
    display: block;
    height: 180px;
    width: 100%;
    top: 0;
    left: 0;
}
