.faq {
	overflow : hidden;
	width : 1000px;
	margin : 0 auto 0 auto;
}

.qindex {
	position : relative;
	overflow : hidden;
	margin-bottom : 10px;
	padding : 20px 0 20px 15px;
	background : #d7e1f5;
	text-align : left;
	border-radius : 12px;
	cursor : pointer;
}

.qindex:after {
	content : "";
	display : inline-block;
	position : absolute;
	top : 47%;
	right : 25px;
	width : 14px;
	height : 14px;
	border-right : 4px solid #0546af;
	border-bottom : 4px solid #0546af;
	transform : translateY(-50%) rotate(45deg);
	transition : .3s;
}

.qindex.open:after {
	transform : rotate(225deg);
}

.qindex h3 {
	font-size : 110%;
	font-weight : 700;
}

.qindex h3 span {
	margin-right : 15px;
	padding : 4px 12px 6px 12px;
	color : #ffffff;
	background : #0546af;
	font-weight : 700;
	border-radius : 8px;
}

.detail {
	display : none;
	margin-bottom : 20px;
	padding : 24px 30px 25px 30px;
	background : #eeeeee;
	line-height : 1.6em;
	border-radius : 12px;
}