.top_news_important_information
{
    border: solid #BA0500 4px;
    background-color: white;
    margin-bottom: 2rem;
}

.top_news_important_information dl
{
    display: flex;
    min-height: max-content;
    align-items: center;
}

.top_news_important_information dt
{
    width:30%;
    padding: 1.5rem;
    font-size: 1.5rem;
    min-width: max-content;
    color: #BA0500;
    font-weight: 700;
}

.top_news_important_information dd
{
    width:70%;
    padding: 0.25rem 0;
}

.top_news_important_information--message
{
    width:100%;
    display: block;
    padding: 0.125rem;
    
}

.top_news_important_information--message a
{
    display: flex;
}

.top_news_important_information--message a span
{
    color:#4472C4;
    width:6rem;
    flex-shrink: 0;
}

.top_news_important_information--message a span:nth-child(2)
{
    max-width: 100%;
    flex-grow: 1;
}

@media screen and (max-width: 767px) 
{
    .top_news_important_information dl
    {
        flex-direction: column;
    }

    .top_news_important_information dt
    {
        font-size: 1.2rem;
        padding: 1.2rem;

    }
    
    .top_news_important_information dd
    {
        width:100%;
        padding:0 0.5rem;
    }

    .top_news_important_information--message a
    {
        font-size:90%;
    }
}