@charset "UTF-8";
/*=======================================================
共通
=======================================================*/
/*=======================================================
FAQ
=======================================================*/
.bl-faq {
	padding: 48px 0 80px;
}
.bl-faq-item:not(:last-of-type){
    margin-bottom: 40px;
}
.bl-q {
	width: 1024px;
	min-height: 54px;
	background: #818776;
	color: #fff;
	font-size: 20px;
	line-height: 1.5;
	font-weight: bold;
	display: flex;
	align-items: center;
	padding: 7px 40px 10px 80px;
	position: relative;
	cursor: pointer;
}
.bl-q::before,
.bl-q::after {
	position: absolute;
}
.bl-q::before {
	content: "Q";
	font-family: "noto-serif-jp", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	color: #818776;
	background-color: #FFFFFF;
	font-size: 28px;
	line-height: 1.2em;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	padding-left: 9px;
	top: 50%;
	transform: translateY(-50%);
	left: 24px;
}
.bl-q::after {
	content: '▼';
	width: 30px;
	height: 30px;
	padding: 0px 0.5px 0 1px;
	color: #818776;
	background-color: #FFFFFF;
	font-size: 17px;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 50%;
	transform: translateY(-50%);
	right: 19px;
}
.bl-q.open::after {
	content: '▲';
}
.bl-a {
	display: none;
	margin-top: 24px;
}
@media screen and (max-width: 750px) {
	.bl-faq {
	    padding: 56px 0 96px;
    }
	.bl-q {
		width: 690px;
		min-height: 70px;
		font-size: 30px;
		padding: 7px 60px 10px 80px;
	}
	.bl-q::before {
		width: 48px;
		height: 48px;
		font-size: 34px;
		padding-left: 10px;
		left: 16px;
	}
	.bl-q::after {
		width: 40px;
		height: 40px;
		padding: 0px 0.5px 0 2px;
		font-size: 22px;
		right: 22px;
	}
}
