.news-page {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 var(--padding-xl);
    box-sizing: border-box;
}

.news-page .main-content {
    align-self: stretch;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.news {
    align-self: stretch;
    color: var(--text-label);
    display: flex;
    flex-direction: column;
    gap: var(--gap-5xl);
    justify-content: flex-start;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.page-title {
    font-size: 32px;
    margin: 0;
    padding-bottom: 20px;
    width: 100%;
}

.news-block {
    width: 100%;
}

.news-title-frame {
    display: flex;
    align-items: center;
    width: 100%;
}

.news-title {
    flex: 1 0 0;
    flex: 1;
    flex-grow: 1;
    color: var(--Text-Main, #333);
    font-family: "Noto Sans JP";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.75rem;
    margin-bottom: 0.75rem;
}

.news-date {
    margin-left: auto;
    color: var(--Text-Sub, #666);
    font-family: "Noto Sans JP";
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75rem;
}

.news-content {
    align-self: stretch;
    color: var(--Text-Sub, #666);
    font-family: "Noto Sans JP";
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7rem;
    margin-top: 0.75rem;
    width: 100%;
}

.news-content a {
    color: #0f766e;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 0.18em;
    word-break: break-word;
}

.news-content a:hover {
    color: #115e59;
}

.news-empty {
    padding: 2rem 0;
    color: var(--Text-Sub, #666);
    font-size: 1rem;
    line-height: 1.8;
}

hr {
    background-color: #EEEEEE;
    width: 100%;
    border-top: none;
}

@media screen and (max-width: 768px) {
    .news-title-frame {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-date {
        margin-left: 0;
    }
}
