@charset "utf-8";

/**Q&Aコーナー*/
.qa {
	width: 895px;
	height: auto;
	margin-left: 3em;
	margin-right: 3em;
}

/**タイトル*/
 .qa h1 {
 	margin-top: 2em;
 	font-size: 24px
 }

/**アコーディオン*/
.accordion .inner {
	display: none;
}

/* 質問 */
.accordion p.question{
	display: flex;
	align-items: center;
	background: #f6f6f6;
	margin: 4px 0;
	height: 42px;
	position: relative;
	font-weight:bold;
	padding: 10px;
	}

.accordion p.question:after {
	content: "";
	margin-right: 13px;
	margin-top: 3px;
	transition: all 0.2s ease-in-out;
	display: block;
	float: right;
	width: 8px;
	height: 8px;
	border-top: solid 2px #000000;
	border-right: solid 2px #000000;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	position: absolute;
	top: 55%;
	right: 22px;
	margin-top: -10px
}

.accordion p.question:before {
	content: "";
	margin-right: 9px;
	display: block;
	width: 36px;
	height: 27px;
	background: #ccc;
	position: absolute;
	right: 12px;
	top: 30%;
}

.accordion p.question.open:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin-top: -4px;
}

/* 回答 */
.accordion .inner li.answer{
	padding: 1em;
	background: #fff;
}