@charset "utf-8";

/* ===================================================
	FAQ CSS
====================================================== */
/* ---------------------------------------------------
	sec_lead
------------------------------------------------------ */
.sec_lead {
	padding: 145px 0 175px;
	text-align: center;
}
.sec_lead .cap {
	margin: 0 0 100px;
	font-size: 24px;
	color: var(--color-point);
}
.sec_lead p:not(.cap) {
	letter-spacing: 0.2em;
}

@media screen and (min-width: 601px) {
	.sec_lead p:not(.cap) {
		line-height: 2.2em;
	}
}
@media screen and (max-width: 600px) {
	.sec_lead {
		padding: 60px 0;
		text-align: left;
	}
	.sec_lead .cap {
		margin: 0 0 20px;
		font-size: 20px;
		line-height: 1.6;
		text-align: center;
	}
}

/* ---------------------------------------------------
	sec_faq
------------------------------------------------------ */
.sec_faq {
	padding: 0 0 100px;
}
.sec_faq h3 {
	margin: 0 0 30px;
	font-size: 24px;
}
.sec_faq .faq_list > div {
	margin: 0 0 25px;
}
.sec_faq .acc_tit,
.sec_faq .acc_con {
	display: flex;
	align-items: flex-start;
}
.sec_faq .acc_tit::before,
.sec_faq .acc_con::before {
	box-sizing: border-box;
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	margin: 0 20px 0 0;
	line-height: 1;
	letter-spacing: 0;
	border-radius: 50%;
}
.sec_faq .acc_tit > span,
.sec_faq .acc_con > div {
	align-self: center;
	min-width: 0;
}
.sec_faq .acc_tit {
	position: relative;
	z-index: 0;
	padding: 10px 30px 10px 0;
	border-bottom: 1px solid rgba(var(--color-border02-rgb), 0.3);
}
.sec_faq .acc_tit::before {
	color: #fff;
	content: "Q";
	background: var(--color-bg02);
}
.sec_faq .acc_tit::after {
	position: absolute;
	top: 50%;
	right: 10px;
	width: 12px;
	height: 12px;
	content: "";
	background: url(../../faq/img/arrow.svg) no-repeat center center;
	background-size: 100% auto;
	transition: transform 0.5s;
	transform: translateY(-50%);
}
.sec_faq .acc_tit.active::after {
	transform: rotate(180deg) translateY(50%);
}
.sec_faq .acc_con {
	padding: 25px 0 20px;
}
.sec_faq .acc_con::before {
	content: "A";
	background: #fff;
	border: 1px solid rgba(var(--color-border02-rgb), 0.3);
}
.sec_faq .acc_con p + p,
.sec_faq .acc_con p + ul,
.sec_faq .acc_con p + dl,
.sec_faq .acc_con dl + p,
.sec_faq .acc_con dl + ul {
	margin: 15px 0 0;
}
.sec_faq .acc_con th {
	font-weight: normal;
	text-align: left;
}

@media screen and (max-width: 600px) {
	.sec_faq {
		padding-bottom: 60px;
	}
	.sec_faq h3 {
		margin-bottom: 20px;
		font-size: 20px;
		line-height: 1.6;
	}
	.sec_faq .faq_list > div {
		margin-bottom: 15px;
	}
	.sec_faq .acc_tit::before,
	.sec_faq .acc_con::before {
		width: 24px;
		height: 24px;
		margin-right: 10px;
		font-size: 14px;
	}
	.sec_faq .acc_con {
		padding: 15px 0 10px;
	}
	.sec_faq .acc_con .table_pc > tbody > tr,
	.sec_faq .acc_con .table_pc > tbody > tr > th {
		display: block;
		width: 100%;
	}
}
