.news-list .title {
	color: #000000;
	font-size: 12px;
	text-align: center;
	font-weight: normal;
}

.news-list .newsline {
	background: #fff;
	border-radius: 3px;
	padding: 8px 20px;
	width: 320px;
	display: block;
	margin: 0 auto 10px;
	font-size: 12px;
	position: relative;
}

.news-list .newsline .arrow {
	position: absolute;
	right: 18px;
	top: 12px;
	width: 14px;
	height: 14px;
	display: block;
	content: " ";
	background: url(../images/ico/arrow-news-right.svg) no-repeat center center;
	transition: all 0.1s ease-out;
}

.news-list .newsline .news-title {
	padding: 0 20px 0 0;
	overflow: hidden;
	font-weight: 100;
	transition: all 0.1s ease-out;
}

.news-list .newsline .news-title .ellipsis-text {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
}

.news-list .newsline .news-text {
	padding: 0;
	margin: 0;
	border-top: 0px solid #E0E0E0;
	overflow: hidden;
	max-height: 0;
	transition: all 0.1s ease-out;
}

.news-list .newsline.open .arrow {
	transform: rotate(90deg);
}

.news-list .newsline:hover .news-title,
.news-list .newsline.open .news-title {
	padding: 0 20px 0 0;
	overflow: visible;
	font-weight: 700;
}

.news-list .newsline:hover .news-title .ellipsis-text,
.news-list .newsline.open .news-title .ellipsis-text {
	overflow: visible;
	text-overflow: clip;
	white-space: normal;
}

.news-list .newsline:hover .news-text,
.news-list .newsline.open .news-text {
	transition: all 0.2s ease-in;
	margin: 6px 0 0;
	padding: 6px 0 0;
	border-top: 1px solid #E0E0E0;
	max-height: 1240px;
}

.newsTitle {
	display: block;
	font-size: 15px;
	font-weight: bold;
	width: 126px;
	text-align: center;
	color: gray;
	font-style: italic;
	margin: 0 auto 0px;
}

.newsPre {
	text-align: left;
	float: left;
	padding: 10px 5px 5px 0px;
	margin: 0px 5px 0px 5px;
	display: block;
	word-break: break-all;
	white-space: pre;
	white-space: pre-wrap;
	white-space: pre-line;
	white-space: -pre-wrap;
	white-space: -o-pre-wrap;
	white-space: -moz-pre-wrap;
	white-space: -hp-pre-wrap;
	word-wrap: break-word;
	font-family: 'メイリオ', Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
		Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}