.p-post__body{
    font-family: "Noto sans JP", serif;
}

.p-post__body p{
    font-size: 14px;
    letter-spacing: 0.07em;
    line-height: 28px;
}

.p-post__body h4,
.p-post__body h5{
    padding: 20px 0;
    font-weight: bold;
    line-height: 32px;
}

.p-post__body h4{
    font-size: 20px;
}
.p-post__body h5{
    font-size: 18px;
}


.l-news__list-item__inner {
    display: grid;
    grid-template-areas: "category date hdg";
    grid-template-columns: min-content min-content auto;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ccc;
}

.l-news__list ul:first-child{
    border-top: 1px solid #ccc;
}


.l-news__list-category {
    grid-area: category;
    width: max-content;
    padding: 10px 30px;
    background-color: #FC0375;
    color: #fff;
    border-radius: 45px;
    font-size: 14px;
    margin-right: 25px;
}

.l-news__list-item__date {
    grid-area: date;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #999;
    margin-right: 15px;
}

.l-news__list-item__hdg {
    grid-area: hdg;
    font-family: 'Noto Sans JP', sans-serif;
    width: 100%;
    font-size: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 20px;
    position: relative;
}

.l-news__list-item__hdg svg {
    width: fit-content;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
    .l-news__list-item__inner {
        grid-template-columns: min-content auto;
        grid-template-areas: "category date" "hdg hdg";
    }

    .l-news__list-item__hdg {
        padding-top: 10px;
        line-height: 1.5;
        -webkit-line-clamp: 2;
    }
}