.bslg-news-tab-list {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    color: #082448;
    font-family: "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
}

.bslg-news-tabs {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin: 0 0 34px 0;
    border-left: 1px solid #b7b7e1;
}

.bslg-news-tab {
    min-width: 150px;
    height: 40px;
    padding: 0 18px;
    border: 0;
    border-right: 1px solid #b7b7e1;
    border-bottom: 1px solid #b7b7e1;
    background: linear-gradient(#ffffff, #f1f1f1);
    color: #17146f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    position: relative;
}

.bslg-news-tab::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bslg-news-tab-color, #8f8f8f);
}

.bslg-news-tab.is-active {
    background: #ffffff;
    border-bottom: 1px solid #ffffff;
}

.bslg-news-list {
    width: 100%;
}

.bslg-news-row {
    display: grid;
    grid-template-columns: 150px 100px 1fr;
    column-gap: 18px;
    align-items: center;
    min-height: 70px;
    border-bottom: 1px solid #bfc0ef;
}

.bslg-news-category-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bslg-news-category {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 138px;
    min-height: 27px;
    padding: 4px 8px;
    border-radius: 4px;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    box-sizing: border-box;
}

.bslg-news-date {
    color: #082448;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.bslg-news-title {
    color: #082448;
    font-size: 14px;
    line-height: 1.8;
}

.bslg-news-title a {
    color: #082448;
    text-decoration: none;
}

.bslg-news-title a:hover {
    text-decoration: underline;
}

.bslg-news-new-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 20px;
    margin-left: 10px;
    padding: 0 8px;
    border-radius: 10px;
    background: #e60012;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    vertical-align: middle;
}

.bslg-news-empty {
    padding: 30px 0;
    color: #777777;
    text-align: center;
    border-top: 1px solid #bfc0ef;
    border-bottom: 1px solid #bfc0ef;
}

.bslg-news-row.is-hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .bslg-news-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 22px;
    }

    .bslg-news-tab {
        min-width: 0;
        width: 100%;
    }

    .bslg-news-row {
        grid-template-columns: 1fr;
        row-gap: 8px;
        padding: 16px 0;
    }

    .bslg-news-category-wrap {
        justify-content: flex-start;
    }

    .bslg-news-category {
        width: auto;
        min-width: 138px;
    }

    .bslg-news-date {
        font-size: 13px;
    }

    .bslg-news-title {
        font-size: 14px;
    }
}
