@charset "utf-8";
/*==================================================
	【よくある質問】ページ固有のスタイル
==================================================*/
#faq .box {
	border: 3px solid var(--color-primary);
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 50px;
}
#faq .box:last-of-type {
	margin-bottom: 0;
}
#faq .box .q {
	background: var(--color-primary);
	color: #fff;
	font-size: 30px;
	position: relative;
	padding: 24px 24px 24px 70px;
	font-weight: 500;
}
#faq .box .q::before, #faq .box .a::before {
	content: "Q";
	font-family: var(--font-sta);
	font-size: 78px;
	position: absolute;
	top: 11px;
	left: 10px;
	line-height: 1;
	color: rgba(255, 255, 255, 0.5);
}
#faq .box .a {
	padding: 32px 32px 32px 70px;
	position: relative;
	font-size: 20px;
	font-weight: 500;
}
#faq .box .a::before {
	content: "A";
	color: var(--color-secondary);
	top: 15px;
	left: 12px;
}
#faq .box .bg_gray {
	background: #f6f6f6;
	border-radius: 20px;
	padding: 20px;
	margin-bottom: 30px;
	font-size: 18px;
}
#faq .box .bg_gray dl.case dt {
	border-bottom: 1px solid var(--color-secondary);
	padding-bottom: 15px;
	margin-bottom: 15px;
}
#faq .box .bg_gray dl.example {
	display: flex;
}
#faq .box .bg_gray dl.example dt {
	width: 50px;
	text-align: center;
}
#faq .box .bg_gray dl.example dd {
	width: calc(100% - 50px);
}
@media print, screen and (min-width: 769px){ /* PCのみ */
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
}
@media only screen and (max-width: 768px) and (min-width: 641px){ /* タブレットのみ */
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#faq .box {
		margin-bottom: 30px;
		border-radius: 10px;
	}
	#faq .box .q {
		font-size: 22px;
		padding: 10px 10px 10px 50px;
	}
	#faq .box .q::before, #faq .box .a::before {
		font-size: 50px;
		top: 2px;
	}
	#faq .box .a {
		font-size: 110%;
		padding: 10px 10px 10px 50px;
	}
	#faq .box .bg_gray {
		font-size: 105%;
		padding: 10px;
		border-radius: 10px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#faq .box {
		margin-bottom: 20px;
	}
	#faq .box .q {
		font-size: 18px;
		line-height: 1.5;
		padding: 10px 10px 10px 40px;
	}
	#faq .box .q::before, #faq .box .a::before {
		font-size: 40px;
		top: 5px;
	}
	#faq .box .a {
		padding: 10px 10px 10px 40px;
	}
	#faq .box .bg_gray dl.case dt {
		padding-bottom: 10px;
		margin-bottom: 15px;
	}
	#faq .box .bg_gray dl.example {
		display: block;
	}
	#faq .box .bg_gray dl.example dt {
		text-align: left;
	}
	#faq .box .bg_gray dl.example dd {
		width: 100%;
	}
}