/* company-news-list section -- */
.company-news-list.section{
    gap: 40px;
    margin-bottom: 60px;
}
.company-news-list.section a:hover{
    text-decoration: none;
}
.company-news-wrapper{
    display: grid;
    gap: 20px;
    grid-template-rows: max-content max-content;
    grid-template-columns: 1fr 1fr;
}
.company-news-item-wrapper{
}
.company-news-item{
    position: relative;
    width: 100%;
    display: flex;
    gap: 15px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
}
.company-news-item > div{
    width: 41vw;
    margin: 0 auto;
}
.company-news-image{
    position: relative;
    overflow: hidden;
}
.company-news-image > img{
    width: 100%;            /* 幅をコンテナに合わせる */
    aspect-ratio: 3 / 2;
    object-fit: cover;          /* 埋めるように拡大 or 切り取り */
    object-position: center;    /* 中央に揃える */
    position: relative;
}
.company-news-title{
    font-size: 19px;
    color: #3eb134;
    font-weight: 600;
    word-break: break-all;
}
.company-name{
    font-size: 14px;
    color: #000000;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 10px 0;
}
.company-news-item-wrapper{
    word-break: break-all;
}
.pager{
    margin-top: 20px;
}
@media (min-width: 769px) {
    .company-news-wrapper{
        display: grid;
        gap: 30px;
        grid-template-rows: repeat(auto, 1fr);
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .company-news-item-wrapper{
        width: calc((90vw - 90px) / 4);
    }
    .company-news-item > div{
        width: calc((90vw - 90px) / 4);
    }

    .company-news-wrapper.not-max-columns-count{
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 10px;
    }
}
@media (min-width: 1200px) {
    .company-news-item-wrapper{
        width: calc((1093px - 90px) / 4);
    }
    .company-news-item > div{
        width: calc((1093px - 90px) / 4);
    }
}
/* -- company-news-list section */

.footer{
    margin-top: 90px;
}
@media (min-width: 769px){
    .footer{
        margin-top: 150px;
    }
}

.no-company-news-wrapper{
    position: relative;
    width: 90%;
    max-width: 1093px;
    margin: 0 auto;
    text-align: center;
    color: #999999;
}