/** ----------------------------------------------------------
 * Q & A ブロック 基本設定
---------------------------------------------------------- **/

.entry-contents .qa-acfblock {
	margin: 0;
	padding: 16px 0;
}

.qa-acfblock + .qa-acfblock { margin-top: 16px; }

/* 質問関連 */

.quest-tit,
.ans-txt::before {
	font-weight: 700;
	font-size: 1.125em;
}

.quest-tit::before { content: 'Q：'; }

summary.quest-tit {
	display: block;
	list-style: none;
	cursor: pointer;
}

summary.quest-tit::-webkit-details-marker { display:none; }

details.qa-acfblock summary::after {
	content: '';
	display: inline-block;
	margin-left: 0.5em;
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent;
	border-width: 8px 4px;
	border-top-color: #ccc;
	translate: 0 4px;
}

details.qa-acfblock[open] summary::after {
	border-top-color:transparent;
	border-bottom-color:#ccc;
	translate: 0 -4px;
}

/* 回答関連 */

.ans-txt {
	margin: 0.5em 0 0;
	padding-left: 1.75em;
	position: relative;
}

.ans-txt::before {
	content: 'A：';
	display: block;
	padding: 0 0.1em;
	position: absolute;
	top: 0;
	left: 0;
}
.entry-contents .ans-txt p { margin-bottom: 0.3em }