.qa {
	border: 2px solid #ccc;
	border-radius: 6px;
	padding: 18px;
	margin-bottom: 12px;
	background-color: #fff;
}

.qa label span {
	font-weight: normal;
	color: #228642;
}

/* チェックボックスを非表示 */
.qa-toggle {
	display: none;
}

.qa-question {
	display: block;
	font-weight: bold;
	cursor: pointer;
	position: relative;
	padding-right: 20px;
}

/* ＋アイコン */
.qa-question::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 0;
}

/* 開いたら − に変更 */
.qa-toggle:checked + .qa-question::after {
	content: "−";
}

.qa-answer {
	display: none;
	margin-top: 8px;
	line-height: 1.6;
}

/* 開閉制御 */
.qa-toggle:checked + .qa-question + .qa-answer {
	display: block;
}
