@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Kosugi&family=NTR&display=swap');
/*
    font-family: 'Kosugi', sans-serif;
    font-family: 'NTR', sans-serif;
	font-family: 'NTR','Kosugi',YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
*/
#news{
	width:90%;
	max-width:720px;
	margin:10px auto;
	line-height:1.8;
}

#news dl{
	display:flex;
	flex-wrap:wrap;
	/* align-items:center; */
	text-align:left;
}


#news dt{
	width:25%;
	margin:0 3% 15px 0;
}

#news dt span{
	display:inline-block;
	border:1px solid #ccc;
	padding:0 10px;
	margin-right:15px;
	font-size:13px;
	width:85px;
	text-align:center;
}	

#news dd{
	width:72%;
	margin-bottom:15px;
}



@media only screen and (max-width: 760px) {  
	#news dt{
		width:100%;
		margin:0 auto 5px;
	}

	#news dt span{
		padding:0 15px;
	}	

	#news dd{
		width:100%;
		margin-bottom:15px;
		padding-bottom:15px;
		border-bottom:1px dotted #333;
	}

	#news dd p br{
		display:none;
	}


}





@media only screen and (max-width: 460px) {  

    #news dt span{
        font-size: 1.2rem;
    }
}






