@charset "utf-8";
.faq_box {
	background: #FFF;
	border-radius: 5px;
	padding: 16px 14px 16px 16px;
}
.faq_box + .faq_box {
	margin: 10px 0 0;
}
.faq_item {
	cursor: pointer;
	position: relative;
}
.faq_open_icon_wrap {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translatey(-50%);
	width: 16px;
	height: 16px;
	background: #F39600;
	border-radius: 50%;
}
.faq_open_icon {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}
.faq_open_icon::before,
.faq_open_icon::after {
	position: absolute;
	content: "";
	display: block;
	transition: all 0.4s;
	background: #FFF;
	left: 50%;
	top: 50%;
	z-index: 1;
	width: 8px;
	height: 1px;
	transform: translate(-50%, -50%);
}
.faq_open_icon::before {
	transform: translate(-50%, -50%) rotate(90deg);
}
.faq_open_icon.open::before {
	transform: translate(-50%, -50%) rotate(0deg);
}
.faq_q,
.faq_a {
	font-size: 20px;
	line-height: 1.2;
}
.faq_q {
	color: #F39600;
}
.faq_a {
	color: #E91A10;
}
.faq_item_ttl {
	font-size: 16px;
	display: flex;
	gap: 0 6px;
	padding: 0 26px 0 0;
}
.faq_item_inner {
	display: none;
	border-top: 1px solid #F39600;
	padding: 12px 0 0;
	margin: 16px 0 0;
}
.faq_item_wrap {
	display: flex;
	gap: 0 6px;
}
.faq_answer_txt_01 {
	font-size: 16px;
	font-weight: 700;
}
.faq_answer_txt_02 {
	line-height: 2;
	margin: 5px 0 0;
}
@media only screen and (min-width: 768px) {
	.faq_box {
		padding: 18px 30px;
	}
	.faq_open_icon_wrap {
		width: 25px;
		height: 25px;
	}
	.faq_open_icon::before,
	.faq_open_icon::after {
		width: 11px;
	}
	.faq_q,
	.faq_a {
		font-size: clamp(20px, 2.81vw, 36px);
	}
	.faq_item_ttl {
		font-size: clamp(16px, 1.87vw, 24px);
		align-items: center;
		gap: 0 10px;
	}
	.faq_item_inner {
		padding: 20px 0 0;
	}
	.faq_item_wrap {
		gap: 0 10px;
	}
	.faq_answer_txt_01 {
		font-size: clamp(16px, 1.87vw, 24px);
	}
}
@media only screen and (min-width: 1280px) {
	.faq_box {
		padding: 18px 40px;
	}
	.faq_open_icon_wrap {
		width: 33px;
		height: 33px;
	}
	.faq_open_icon::before,
	.faq_open_icon::after {
		width: 16px;
		height: 1.6px;
	}
	.faq_q,
	.faq_a {
		font-size: 36px;
	}
	.faq_item_ttl {
		font-size: 24px;
		gap: 0 17px;
	}
	.faq_item_inner {
		padding: 27px 0 12px;
		margin: 18px 0 0;
	}
	.faq_item_wrap {
		gap: 0 17px;
	}
	.faq_answer_txt_01 {
		font-size: 24px;
	}
	.faq_answer_txt_02 {
		margin: 7px 0 0;
	}
}