@charset "utf-8";
/* CSS Document */

.l-faq__container {
	max-width: 900px;
	margin: 0 auto;
}
.l-faq__container .faq-item {
	background-color: #ffffff;
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 12px;
	font-weight: 500;
	cursor: pointer;
}
.l-faq__container .faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.l-faq__container .faq-question u {
	text-decoration: none;
}
.l-faq__container .faq-text {
	display: flex;
	gn-items: flex-start;
	font-size: 16px;
}
.l-faq__container .faq-text span {
	color: #007bff;
	margin-right: 10px;
	font-weight: 600;
}
.l-faq__container .faq-answer {
	margin-top: 12px;
	display: none;
	font-size: 16px;
	color: #333;
	text-align: left;
}
.l-faq__container .faq-answer span {
	margin-right: 10px;
	font-weight: 600;
}
.l-faq__container .faq-answer u {
	text-decoration: none;
}
.l-faq__container .faq-answer a {
	color: #007bff;
}
.l-faq__container .faq-item.active .faq-answer {
	display: block;
}
.l-faq__container .faq-icon::before {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	background: url("../../images/common/icon_toggle-plus.svg") no-repeat, center;
}
.l-faq__container .faq-item.active .faq-icon::before {
	background: url("../../images/common/icon_toggle-minus.svg") no-repeat, center;
}
.l-faq__container .view-all {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 40px;
	padding: 20px 25px;
	color: #000;
	font-size: 22px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 8px;
	box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
	background-color: #fff;
	background-image: url("../../images/common/icon_arrow.svg");
	background-repeat: no-repeat;
	background-size: 8px;
	background-position: right 20px center;
}
.l-faq__container .view-all u {
	text-decoration: none;
}
.l-faq__container .view-all img.icon {
	height: 24px;
	width: auto;
	margin-right: 6px;
}
@media (max-width: 640px) {
	.container {
		margin: 24px auto;
	}
	.l-faq__container .faq-item {
		border-radius: 8px;
		padding: 10px;
	}
	.l-faq__container .faq-text {
		font-size: clamp(0.875rem, 0.765rem + 0.49vw, 1rem) /*360-14/768-16*/ ;
	}
	.l-faq__container .faq-text span,
	.l-faq__container .faq-answer span {
		margin-right: 5px;
	}
	.l-faq__container .faq-icon {
		font-size: 20px;
	}
	.l-faq__container .faq-answer {
		margin-top: 12px;
		font-size: clamp(0.875rem, 0.765rem + 0.49vw, 1rem) /*360-14/768-16*/ ;
	}
	.l-faq__container .faq-icon::before {
		width: 10px;
		height: 10px;
	}
	.l-faq__container .view-all {
		margin-top: 20px;
		padding: 10px 15px;
		font-size: clamp(1rem, 0.669rem + 1.47vw, 1.375rem) /*360-16/768-22*/ ;
		background-size: 6px;
		background-position: right 15px center;
	}
	.l-faq__container .view-all img.icon {
		height: 18px;
		margin-right: 4px;
	}
}