ul.example {
	text-align: left;
	max-width: 680px;
	margin-right: auto;
	margin-left: auto;
}

ul.example li {
	color: #329637;
	font-size: 120%;
	padding: 15px;
	border-bottom: 1px dotted;
	position: relative;
	padding-left: 5rem;
}

ul.example li:before {
	content: '';
	display: block;
	width: 30px;
	height: 25px;
	background-image: url('../img/common/ico_check.png');
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	left: 1rem;
}

figure {
margin: 0 0 4em;
}

.question {
	padding: 2.5rem 7rem 2.5rem 3rem;
	border-bottom: 2px solid #f2f2f2;
	cursor: pointer;
	position: relative;
	text-indent: -2.8em;
}

.question p {
	position: relative;
	padding-left: 3em;
	text-indent: -2.8em;
}

.question:hover {
	color: #4f9344;
	transition: .3s;
	background: #fafaf2;
}

.question p:before {
	content: 'Q';
	font-weight: bold;
	font-size: 180%;
	margin-right: 1.5rem;
	vertical-align: sub;
	color: #4f9344;
	line-height: 0;
}

.question:after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 45%;
	right: 30px;
	width: 10px;
	height: 10px;
	border-right: 3px solid #dddddd;
	border-bottom: 3px solid #dddddd;
	transform: translateY(-50%) rotate(45deg);
	transition: .3s;
}

.ac-parent.open:after {
	transform: rotate(225deg);
}

.answer {
	display: none;
	padding: 2.5rem 2rem 2.5rem 3rem;
	border-bottom: 2px solid #f2f2f2;
}

.answer p {
	position: relative;
	padding-left: 3em;
	text-indent: -2.8em;
}

.answer p:before {
	content: 'A';
	font-weight: bold;
	font-size: 180%;
	margin-right: 1.5rem;
	vertical-align: sub;
	color: #EB5353;
	line-height: 0;
}

@media screen and (max-width: 600px) {
	.question {
		padding: 2rem 4rem 2rem 1rem;
	}

	.question:after {
		right: 17px;
		width: 7px;
		height: 7px;
		border-right: 2px solid #dddddd;
		border-bottom: 2px solid #dddddd;
	}

	.answer {
		padding: 2rem 1rem;
	}

}