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

/* エリア-------------*/
.news-content{
	padding: 60px 0;
}

.news-area{
	margin-top: 30px;
}
/* /エリア-------------*/



.news-list{
	background-color: #fff;
}

.news-list li{
	display: flex;
	justify-content: space-between;
	border-bottom: 1px dotted #9A9A9A;
	padding: 15px;
}
.news-list li:first-child{
	border-top: 1px dotted #9A9A9A;
}

.news-time{
	width: 100px;
	font-weight: bold;
	color: #9A9A9A;
}

.news-txt{
	width: calc(100% - 130px);
}

.news-txt a{
	text-decoration: underline;
}









/* タブレット用（1024px以下）-------------*/
@media screen and (max-width: 1024px) {

}
/* /タブレット用（1024px以下）-------------*/









/* スマホ用（600px以下） -------------*/
@media screen and (max-width: 600px) {
.news-list li{
	display: flex;
	flex-direction: column;
}

.news-time{
	width: 100%;
}

.news-txt{
	width: 100%;
}
}
/* /スマホ用（600px以下） -------------*/