@charset "UTF-8";
/* CSS Document */

/*=======
Q&A
=======*/

/**/
.bl_qa_wrap {
	counter-reset: number 0;
}
.bl_qa {
	margin-bottom: 1em;
}
.bl_qa .q {
	padding: 1em 2.5em 1.25em 4.25em;
	background-color:#feeef5;
	border-bottom: solid #fff 1px;
	font-weight: bold;
	line-height: 1.25;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	position: relative;
}
.bl_qa .q::before {
	content:"Q" counter(number) ".";
	padding-right: 0.5em;
	counter-increment: number 1;
	color: var(--theme-color);
	font-size: 1.4em;
	width: 3em;
	margin-left: -2.25em;
}
.bl_qa .q .arrow {
	position: absolute;
	background-color: var(--theme-color);
	right:0.75em;top:1.2em;
	width: 24px;
	height: 24px;
	border-radius: 12px;
	/**/
}
.bl_qa .q .arrow::after {
	display: inline-block;
	content: "";
	width: 6px;
	height: 6px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	margin: auto;
	position: absolute;
	top:25%;left:0;right:0;
	transform: rotate(135deg);
	z-index: 10;
	transition:transform 0.5s,top 0.5s;
}
.bl_qa .a {
	background-color:#fbf3f7;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	/**/
	overflow: hidden;
	height: 0;
	padding: 0 1em;
	transition: all 0.1s;
}
/*アコーディオンopen*/
.bl_qa.opened .q {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.bl_qa.opened .q .arrow::after {
	top:40%;left:0;right:0;
	transform: rotate(-45deg);
}
.bl_qa.opened .a {
	height: auto;
	padding: 1em 1em;
}