body {
    font-family: "Avenir", "Helvetica Neue", Helvetica, Arial, "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", メイリオ, Meiryo, sans-serif;
    color: #242424;
}

#Flame {
    display: flex;
    flex-direction: column;
}

#mein-Contents {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 1em;
    margin: 20px auto 0;
    padding: 0;
}

#sideMenu {
    float: left;
    width: 18%;
    padding-bottom: 20px;
}

#Main.news-page {
    float: right;
    width: 52%;
    min-width: 0;
    padding-bottom: 50px;
}

.news-page a {
    text-decoration: none;
}

.breadcrumb {
    margin: 0 0 18px;
    font-size: 14px;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb li:not(:last-child)::after {
    margin-left: 6px;
    color: #777;
    content: ">";
}

.breadcrumb a {
    color: #1769aa;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.news-page-heading {
    margin-bottom: 34px;
}

.news-page-heading h1 {
    margin: 0;
    padding: 16px 20px;
    border-left: 6px solid #c8161d;
    border-bottom: 2px solid #c8161d;
    background: #f7f7f7;
    color: #222;
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.35;
}

.news-page-heading p {
    margin: 18px 4px 0;
    color: #3f3f3f;
    font-size: 16px;
    line-height: 1.9;
}

.news-section,
.business-info {
    margin-top: 34px;
}

.section-heading {
    margin-bottom: 18px;
}

.section-heading h2,
.business-info h2 {
    margin: 0;
    padding: 10px 14px;
    border-left: 5px solid #2589d0;
    background: #eef7fd;
    color: #1f2b34;
    font-size: clamp(21px, 2.4vw, 27px);
    line-height: 1.45;
}

.section-heading p {
    margin: 12px 2px 0;
    color: #555;
    line-height: 1.8;
}

.news-list {
    display: grid;
    gap: 14px;
}

.news-card {
    position: relative;
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 9px 12px;
    padding: 18px 42px 18px 18px;
    border: 1px solid #dedede;
    border-radius: 8px;
    background: #fff;
    color: #252525;
    box-shadow: 0 2px 7px rgb(0 0 0 / 5%);
}

a.news-card::after {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #c8161d;
    border-right: 2px solid #c8161d;
    transform: translateY(-50%) rotate(45deg);
    content: "";
}

a.news-card:hover,
a.news-card:focus-visible {
    border-color: #c8161d;
    background: #fffafa;
}

.news-card time {
    color: #555;
    font-size: 14px;
    white-space: nowrap;
}

.news-category {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 70px;
    padding: 4px 9px;
    border-radius: 999px;
    background: #c8161d;
    color: #fff;
    font-size: 12px;
    line-height: 1.3;
}

.news-card strong {
    min-width: 0;
    font-size: 16px;
    line-height: 1.65;
}

.news-link-text,
.news-card-static p {
    grid-column: 3;
    margin: 0;
    color: #1769aa;
    font-size: 14px;
    line-height: 1.6;
}

.news-card-static {
    padding-right: 18px;
    background: #fafafa;
}

.news-card-static .news-category {
    background: #555;
}

.news-card-static p {
    color: #555;
}

.business-info {
    padding: 22px;
    border: 1px solid #d8e8f3;
    border-radius: 8px;
    background: #f8fcff;
}

.business-info h2 {
    margin: -22px -22px 18px;
    border-radius: 8px 8px 0 0;
}

.business-info p {
    margin: 0;
    line-height: 1.9;
}

.business-info p + p {
    margin-top: 8px;
}

.news-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.news-actions a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    padding: 11px 14px;
    border: 1px solid #c8161d;
    border-radius: 6px;
    background: #fff;
    color: #a90000;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.news-actions a:hover,
.news-actions a:focus-visible {
    background: #c8161d;
    color: #fff;
}

@media (650px < width < 1020px) {
    #Main.news-page {
        width: 80%;
    }
}

@media (width <= 650px) {
    #mein-Contents {
        margin-top: 12px;
    }

    #Main.news-page {
        width: 90%;
        padding-bottom: 35px;
    }

    .news-page-heading h1 {
        padding: 13px 14px;
    }

    .news-page-heading p {
        font-size: 15px;
    }

    .news-card {
        grid-template-columns: 1fr auto;
        gap: 8px 10px;
        padding: 16px 38px 16px 14px;
    }

    .news-card time {
        grid-column: 1;
    }

    .news-category {
        grid-column: 2;
    }

    .news-card strong,
    .news-link-text,
    .news-card-static p {
        grid-column: 1 / -1;
    }

    .news-actions {
        grid-template-columns: 1fr;
    }
}

@media (width <= 380px) {
    #Main.news-page {
        width: 92%;
    }

    .news-card {
        grid-template-columns: 1fr;
        padding-right: 34px;
    }

    .news-card time,
    .news-category,
    .news-card strong,
    .news-link-text,
    .news-card-static p {
        grid-column: 1;
    }

    .news-category {
        justify-self: start;
    }
}
