@charset "utf-8";
/* CSS Document */

#news_txt {
    display: flex;
    flex-flow: column;
    margin-top: 10px;
    max-width: 1200px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
}

#news_txt > * {
    display: flex;
    align-items: start;
    flex-flow: row;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0;
    border-bottom: solid 1px #d8d8d8;
    position: relative;
}

#news_txt > * > span:first-child {
    width: 5.5em;
    min-width: 5.5em;
    color: #008bd5;
    font-size: 1.4rem;
}

#news_txt > * > span:nth-child(2) {
    width: 140px;
    min-width: 140px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #008bd5;
    color: #ffffff;
    border-radius: 20px;
    font-size: 1.2rem;
    text-align: center;
}

#news_txt > * > span:last-child {
    width: 100%;
    padding-right: 60px;
}

#news_txt > * > span:last-child::after {
    content: "";
    display: block;
    background-color: #008bd5;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

#news_txt > div > span:last-child::after {
    background-color: #d8d8d8;
}

#news_txt > * > span:last-child::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: #ffffff;
	-webkit-mask: url(/images/skjyaji01.svg) 0% / 100% no-repeat;
	mask: url(/images/skjyaji01.svg) 0% / 100% no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    z-index: 1;
}

#news_no_article {
    max-width: 1200px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}


/***********************************************************/
@media only screen and (min-width:768px) {

#news_txt {
    margin-top: 55px;
}

#news_txt > * {
    flex-flow: row;
    padding: 30px 0;
    gap: 20px;
}

#news_txt > * > span:last-child {
    position: relative;
}

#news_txt > * > span:nth-child(2) {
    font-size: 1.4rem;
    width: 150px;
    min-width: 150px;
}



}




/***********************************************************/
@media only screen and (min-width:1200px) {





}

