@charset "UTF-8";
.news_card_article a{
    display: flex;
    justify-content: space-between;
    text-decoration: none;
}
.news_card_article a figure{
    min-width: 335px;
    margin-right: 20px;
}
.newscard_right_wrapper{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}
.newscard_right_wrapper div{
    width: 100%;
}
.newscard_right_wrapper .newscard_right_time{
    font-size: 12px;
    text-align: justify;
}
.newscard_right_wrapper .news_card_title{
    text-align: justify;
    margin-top: 20px;
}
.news_card_news{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    padding: 5px 3px;
    text-align: center;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 5px;
}
.news_card_news span{
	-webkit-animation:blink 1.5s ease-in-out infinite alternate;
    -moz-animation:blink 1.5s ease-in-out infinite alternate;
    animation:blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@media screen and (max-width: 600px) {
    .news_card_article a{
        flex-wrap: wrap;
        position: relative;
    }
    .newscard_right_wrapper{
        position: static;
    }
    .news_card_article a figure{
        min-width: 100%;
        margin-top: 32px;
        margin-right: 0;
    }
    .newscard_right_wrapper .newscard_right_time{
        margin-top: 20px;
    }
}