@charset "utf-8";
/*==================================================
	【サブ】ページ固有のスタイル
==================================================*/
#faq .bg_gray::after {
	content: "FAQ";
}
#faq .faq_list dl+dl {
	margin-top: 40px;
}
#faq .faq_list dt {
	position: relative;
	margin-bottom: 10px;
	padding: 10px 0 10px 80px;
	font-size: 120%;
	font-weight: 500;
}
#faq .faq_list dt::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 60px;
	height: 60px;
	padding-bottom: 0.2em;
	box-sizing: border-box;
	background: var(--color-primary);
	border-radius: 50%;
	color: #fff;
	font-size: 30px;
	line-height: 1;
	content: "Q";
	/* 縦方向中央揃え */
	display: flex;
	align-items: center;
	justify-content: center;
}
#faq .faq_list dd {
	overflow: hidden;
	position: relative;
	padding: 30px 30px 30px 80px;
	background: #fff;
	border-radius: 25px;
}
#faq .faq_list dd::after {
	position: absolute;
	left: 30px;
	top: 30px;
	color: #f9f4a7;
	font-size: 50px;
	font-weight: bold;
	line-height: 0.8em;
	content: "A";
}
/**/
#faq .voice dl+dl {
	margin-top: 40px;
}
#faq .voice dt {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	border: 5px solid #f9f4a7;
	/* 縦方向中央揃え */
	display: flex;
	align-items: center;
	justify-content: center;
}
#faq .voice dt img {
	width: 42%;
}
#faq .voice dd {
	position: relative;
	padding: 25px 35px;
	background: #f7f7f7;
	border-radius: 25px;
}
#faq .voice dd::before {
	position: absolute;
	top: 50%;
	left: -35px;
	display: block;
	width: 35px;
	height: 30px;
	background: #f7f7f7;
	clip-path: polygon(100% 100%, 0 50%, 100% 0);
	transform: translateY(-50%);
	content: "";
}
@media print, screen and (min-width: 769px){ /* PCのみ */
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
	#faq .voice dl {
		/* フレックス */
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	#faq .voice dt {
	}
	#faq .voice dd {
		width: calc(100% - 200px);
	}
}
@media only screen and (max-width: 768px) and (min-width: 641px){ /* タブレットのみ */
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
}
@media only screen and (max-width: 640px){ /* スマホ */
	#faq .faq_list dt {
		padding: 5px 0 5px 50px;
		line-height: 1.5;
	}
	#faq .faq_list dt::before {
		width: 40px;
		height: 40px;
		font-size: 22px;
	}
	#faq .faq_list dd {
		padding: 20px 20px 20px 50px;
	}
	#faq .faq_list dd::after {
		left: 20px;
		top: 20px;
		font-size: 30px;
	}
	#faq .voice dl+dl {
		margin-top: 30px;
	}
	#faq .voice dt {
		width: 120px;
		height: 120px;
		margin: 0 auto 20px;
	}
	#faq .voice dd {
		padding: 20px;
	}
	#faq .voice dd::before {
		top: -15px;
		left: 50%;
		width: 26px;
		height: 15px;
		clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
		transform: translateX(-50%);
	}
}