@charset "UTF-8";
:root {
    --news-border-color: #1e1e1e;
    --service-blue: #004ea2;
}
.font-prompt {
    font-family: "Prompt", sans-serif !important;
}


.news-list li {
    padding:37px 0 40px 0;
    border-top:solid 1px var(--news-border-color);
}
.news-list li:last-child {
    border-bottom:solid 1px var(--news-border-color);
}
.news-list li a {
    display: block;
}

.news-list article header {
    margin-bottom: 15px;
}
.news-list .news-meta {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 2rem;
    letter-spacing: 0px;
    margin-bottom: 30px;
}
.news-list .news-meta time {
    font-size: 1.8rem;
    line-height: 1em;
    letter-spacing: 0.02em;
}
.news-list .news-meta span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 105px;
    height: 20px;
    border: solid 1px var(--news-border-color);
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.04em;
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    padding-top: 2px;
}

.news-list h4 {
    font-size: 2rem;
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

.news-list .news-txt {
    width: 81.4%;
    word-break: break-all;/*safari*/
    word-break: auto-phrase;
    letter-spacing: 0.05em;
    line-height: 2.1;
    margin-bottom: 15px;
}
.news-list .news-2column {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}
.news-list .news-2column figure {
    width: 100%;
    height: 100%;
    max-width: 380px;
    max-height: 253px;
    aspect-ratio: 3 / 2;
    margin-bottom: 0;
}
.news-list .news-2column figure img {
    aspect-ratio: 921 / 601;
    height: 100%;
    object-fit: cover;
}

.business-btn a { /*建材事業でももう一度使用*/
    display: block;
    width: 240px;
    min-height: 40px;
    color: var(--service-blue);
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    line-height: 40px;
    text-align: center;
    border: 2px solid var(--service-blue);
    padding-bottom: 2px;
}
.business-btn a span::after {
    content: '';
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
    background: url(../../../assets/common/images/icon-circle-arrow-outline-primary.svg) no-repeat;
    background-size: contain;
    background-position: center;
    margin-left: 10px;
    position: relative;
    top: 3px;
}

@media screen and (max-width: 1198.98px) {
    .news-list li {
        padding: 3.085vw 0 3.337vw 0;
    }
    .news-list article header {
        margin-bottom: 15px;
        margin-bottom: 1.9vw;
    }
    .news-list .news-meta {
        gap: 1.667vw;
        margin-bottom: 2.5vw;
    }
    .news-list .news-meta time {
        font-size: clamp(16px, 1.5vw, 20px);
    }
    .news-list .news-txt {
        margin-bottom: 1.9vw;
    }
    .news-list .news-2column {
        gap: 2.2vw;
        margin-bottom: 3.333vw;
    }
}
@media screen and (max-width: 599.98px) {
    .news-list li {
        padding: 5.025vw 0 5.67vw 0;
    }
    .news-list .news-meta {
        gap: 2.84vw;
        margin-bottom: 4.25vw;
    }
    .news-list .news-meta time {
        font-size: 14px;
    }
    .news-list h4 {
        font-size: 18px;
        /* margin-bottom: 4.25vw; */
    }
    .news-list .news-txt {
        width: calc(100% - 1rem);
    }
    .news-list .news-2column {
        flex-direction: column;
        margin-bottom: 5.67vw;
    }
    .news-list .news-2column figure {
        max-width: unset;
        max-height: unset;
    }
}