@charset "utf-8";

/* CSS Document */

.accList>li {
	background-color: #ffffff;
	border: solid 3px #C5B9A2;
	border-radius: 10px;
	margin: 0 0 20px;
	overflow: hidden;
}

.accList .accBtn {
	cursor: pointer;
	font-size: 18px;
	background-image: url(../img/iconQuest.png);
	background-position: 28px 20px;
	background-repeat: no-repeat;
	padding: 20px 60px 20px 90px;
	position: relative;
}

.accList .accBtn:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 26px;
	margin: auto;
	background-image: url(../img/iconAcc.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 22px;
	height: 22px;
}

.accList .accBtn.on:after {
	content: "\0020";
	background-position: 0 -22px;
}

.accList .contents {
	display: none;
	border-top: solid 1px #C5B9A2;
	padding: 20px 60px 20px 90px;
	background-image: url(../img/iconAnswer.png);
	background-position: 28px 20px;
	background-repeat: no-repeat;
	font-size: 14px;
}

@media only screen and (max-width: 768px) {

.accList>li {
	margin: 0 0 10px;
	border-width: 2px;
	border-radius: 6px;
}

.accList .accBtn {
	font-size: 12px;
	padding: 10px 30px 10px 48px;
	background-position: 15px 12px;
	background-size: 20px auto;
}


.accList .accBtn:after {
	right: 10px;
	background-size: 15px auto;
	width: 15px;
	height: 15px;
}


.accList .accBtn.on:after {
	background-position: 0 -15px;
}
.accList .contents {
	padding: 10px 30px 10px 48px;
	background-position: 11px 12px;
	background-size: 26px auto;
	font-size: 11px;
}

}