/* リード文 */

.lead {
    padding: 40px 0;
    background: #f2f2f2;
}

.lead p {
    text-align: center;
}

/* お知らせ */

.news .wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.news .content-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
}

.news .content-block ul {
    width: 100%;
    border-top: 2px solid #B1000E;
    border-bottom: 2px solid #B1000E;
    list-style: none;
    padding: 0;
}
.news .content-block ul li {
    box-sizing: border-box;
    padding: 20px;
    width: 100%;
    min-height: 94px;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #c02;
}

.news .content-block ul li:last-child {
    border-bottom: none;
}

.news .content-block ul li .category {
    width: 135px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #333;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.6px;
}

.news .content-block ul li .date {
    width: 130px;
    flex-shrink: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.7px;
}

.news .content-block ul li a {
    padding-right: 20px;
    display: block;
    width: 100%;
    position: relative;
    color: #3E3E3E;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.7px;
}

.news .content-block ul li a:hover {
    color: #b1000e;
    text-decoration: underline;
}

.news .content-block ul li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 13px;
    height: 21px;
    margin-left: 8px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="21" viewBox="0 0 13 21" fill="none"><path d="M2.33398 2L10.2253 10.3616L2.33398 18.7232" stroke="%23CC0022" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center / contain;
    transition: all 0.3s ease;
}

.news .content-block ul li .text-box a h3 {
    margin-bottom: .5rem;
    font-size: 1.4rem;
    line-height: 1.3;
}
.news .content-block ul li .text-box a p {
    font-size: 1rem;
    line-height: 1.3;
}

.news .cta-block {
    margin-top: 60px;
    text-align: center;
}

.news .cta-block a {
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .news .content-block ul li {
        padding: 20px 0;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-areas: "category date" "link link";
        align-items: center;
        gap: 20px;
    }

    .news .content-block ul li .category {
        grid-area: category;
    }

    .news .content-block ul li .date-box {
        grid-area: date;
        padding: 10px 0;
        text-align: left;
        width: 100%;
    }

    .news .content-block ul li .date-box .date {
        font-size: .8rem;
    }

    .news .content-block ul li a {
        grid-area: link;
    }

    .news .content-block ul li a::after {
        width: 9px;
    }
}