/* detailHead */
#news #detailHead{
	padding: 25px 0;
	border-top: 1px solid var(--main-color);
	border-bottom: 1px solid #CCCCCC;
}
#news #detailHead div{
	display: flex;
	align-items: center;
}
#news #detailHead .date{
	font-size: 14px;
	color: var(--main-color);
	margin-right: 1em;
}
#news #detailHead .icon-info{
	width: 8.5em;
	height: 20px;
	display: block;
	font-size: 9px;
	line-height: 20px;
	border-radius: 10px;
	text-align: center;
	background-color: var(--bg-color);
	color: var(--text-color);
}
#news #detailBody{
	padding: 20px 0;
	border-bottom: 1px solid #CCCCCC;
}
#news #detailFoot{
	padding: 20px 0;
	text-align: center;
}
#news #detailHead .bookTtl{
	margin-top: 30px;
	font-size: 24px;
}
#news .btnMore{
	margin: 20px auto 20px;
	text-align: center;
}
#news .btnMore a{
	position: relative;
	margin: auto;
	display: inline-block;
	width: 100%;
	max-width: 300px;
	height: 50px;
	border-radius: 25px;
	background-color: var(--main-color);
	color: #FFFFFF;
	text-align: center;
	line-height: 50px;
	font-weight: bold;
	cursor: pointer;
}
#news .btnMore a::after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 10px;
	height: 10px;
	border-top: 2px solid #FFFFFF;
	border-right: 2px solid #FFFFFF;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
@media screen and (max-width:1000px) {
	/* detailHead */
	#news #detailHead{
		padding: 20px 0;
	}
	#news #detailHead .bookTtl{
		font-size: 18px;
	}
}