@charset "UTF-8";

/*--------------------------------------------------------------------
faq.html
faq.css
--------------------------------------------------------------------*/
#faq h4 {
	display: flex;
	align-items: center;
}
#faq h4 em:before {
	display: block;
	content: "Q、";
	font-weight: bold;
}
#faq .answer {
	display: block;
	min-height: 100px;
}
#faq .answer > span {
	display: block;
	width: 46px;
	height: 48px;
	margin-right: 20px;
	background: url("../img/a.png") no-repeat left top / cover;
	overflow: hidden;
	line-height: 0;
	text-indent: -99999px;
	font-size: 0;
	float: left;
}

@media (max-width: 480px) {
	#faq .answer {
		padding-left: 0;
		background: none;
		overflow: hidden;
	}
	#faq .answer > span {
		width: 26px;
		height: 28px;
	}
}