.pageHeader .newsList {
    display: block;
    width: 100%;
    margin-top: 24px;
}

.pageHeader .newsLink {
    width: 100%;
    display: flex;
    justify-content: start;
    column-gap: 24px;
    padding: 16px;
    border-bottom: 1px dotted var(--black);
}

.pageHeader .newsLink .newsDate {
    width: 125px;
    line-height: 1.5;
}

.pageHeader .newsLink .newsText {
    flex: 1 0;
    line-height: 1.5;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .pageHeader .newsLink {
        flex-direction: column;
    }

    .pageHeader .newsLink .newsText {
        margin-top: 8px;
    }
}