section.news_banner {
    position: absolute;
    max-width: 450px;
    width: 39.0625%;
    right: 10.9375vw;
    background: var(--white);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

section.news_banner .container {
    padding: 30px;
}

@media screen and (min-width: 1280px) {
    section.news_banner {
        right: 140px;
    }
}

section.news_banner .news_box .news_item {
    margin-top: 15px;
}

section.news_banner .news_box .news_item a {
    width: fit-content;
}

section.news_banner .news_box .date_txt {
    white-space: nowrap;
}

section.news_banner .news_box .news_item .tag {
    background: transparent;
    padding: 5px 10px;
    border: 1px solid #707070;
    border-radius: 20px;
    margin-left: 10px;
    margin-right: 15px;
}

section.news_banner .news_box .news_ttl:hover {
    text-decoration: underline;
}

section.news_banner .news_box .news_item a:hover {
    opacity: 1 !important;
}
section.news_banner .common_link {
    margin-left: auto;
    margin-top: 15px;
}

/* ================================================================================ */
/* responsive */
/* ================================================================================ */
@media screen and (max-width: 1024px) {
    section.news_banner {
        bottom: 0 !important;
        right: 0;
        max-width: unset;
        width: 100%;
        box-shadow: unset;
        background: rgba(255, 255, 255, 0.5);
    }

    section.news_banner .container {
        padding: 30px 0;
        width: 80%;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
    }

    section.news_banner .container h2 {
        width: 100%;
    }

    section.news_banner .news_box {
        width: 75%;
    }

    section.news_banner .common_link {
        margin-top: auto;
    }
}

@media screen and (max-width: 480px) {
    section.news_banner .container {
        width: 90%;
        padding: 20px 0;
    }

    section.news_banner .news_box {
        width: 100%;
    }

    section.news_banner .common_link {
        margin-top: 20px;
    }

    section.news_banner .news_box .news_item a {
        flex-wrap: wrap;
    }

    section.news_banner .news_box .news_ttl {
        width: 100%;
        margin-top: 8px;
        padding-bottom: 2px;
    }
}