@charset "utf-8";
/* CSS Document */

.faqMenu_items {
}
.faqMenu_items .faqMenu_item {
	border: 1px solid var(--main-color);
	border-radius: 3px;
}
.faqMenu_items .faqMenu_link {
	color: var(--main-color);
}
.faqMenu_items .faqMenu_link:after {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f107";
}
.faqMenu_items .faqMenu_name {
}

.faq_box {
}
.faq_box:last-child {
	margin-bottom: 0;
}
.faq_box .faq_box_title {
	color: var(--tertiary-color);
}
.faq_box .faq_items {
}
.faq_box .faq_item {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 16px;
}
.faq_box .faq_item:last-child {
	margin-bottom: 0;
}
.faq_box .faq_question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}
.faq_box .faq_question:after {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f107";
	transition: transform 400ms;
}
.accordion_header.open::after {
	transform: rotate(180deg);
}
.faq_box .faq_question_text {
	display: flex;
	font-weight: bold;
}
.faq_box .faq_question_text:before {
	display: flex;
	align-items: center;
	justify-content: center;
	content: 'Q';
	color: #fff;
	font-weight: normal;
	background: var(--tertiary-color);
	border-radius: 100px;
}
.faq_box .faq_answer {
	display: none;
	border-top: 1px solid var(--tertiary-color_02);
}
.faq_box .faq_answer_text {
	display: flex;
}
.faq_box .faq_answer_text:before {
	content: 'A';
	color: var(--main-color);
	font-weight: bold;
}


/* --------------------------------------------------
PC
-------------------------------------------------- */
@media screen and (min-width: 768px) {

	.faqMenu_items {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-bottom: 20px;
	}
	.faqMenu_items .faqMenu_item {
		width: calc(100% / 4 - 1%);
		margin-bottom: 1%;
	}
	.faqMenu_items .faqMenu_link {
		display: flex;
		align-items: center;
		justify-content: space-between;
		font-size: 14px;
		text-align: center;
		padding: 10px;
	}
	.faqMenu_items .faqMenu_name {
	}

	.faq_box {
		padding: 30px 0;
	}
	.faq_box .faq_box_title {
		font-size: 22px;
		margin-bottom: 15px;
	}
	.faq_box .faq_items {
	}
	.faq_box .faq_item {
		margin-bottom: 20px;
	}
	.faq_box .accordion_one {
	}
	.faq_box .faq_question {
		padding: 20px 24px;
	}
	.faq_box .faq_question:after {
	}
	.faq_box .faq_question_text {
		font-size: 16px;
		align-items: center;
	}
	.faq_box .faq_question_text:before {
		width: 48px;
		height: 48px;
		margin-right: 10px;
	}
	.faq_box .faq_answer {
		margin: 0 20px;
		padding: 16px 36px 16px 24px;
	}
	.faq_box .faq_answer_text {
		font-size: 16px;
		line-height: 1.6;
	}
	.faq_box .faq_answer_text:before {
		font-size: 36px;
		margin: -15px 20px 0 0;
	}
}


/* --------------------------------------------------
スマホ
-------------------------------------------------- */
@media all and (max-width: 767px) {
	.faqMenu_items {
		display: flex;
		overflow-x: scroll;
		padding: 0 5vw 3.5vw 5vw;
	}
	.faqMenu_items .faqMenu_item {
		flex-shrink: 0;
		display: flex;
		justify-content: center;
		text-align: center;
		width: 32.5%;
		align-items: center;
		margin-right: 2vw;
	}
	.faqMenu_items .faqMenu_link {
		display: flex;
		flex-direction: column;
		font-size: 3vw;
		line-height: 1.3;
		padding: 3.5vw 2vw 1.5vw;
	}
	.faqMenu_items .faqMenu_link:after {
		font-size: 4vw;
		line-height: 1;
		margin-top: 1vw;
	}
	.faqMenu_items .faqMenu_name {
	}

	.faq_box {
		width: var(--sp_main-width);
		margin: 0 auto;
		padding: 3.5vw 0;
	}
	.faq_box .faq_box_title {
		font-size: 4.5vw;
		margin-bottom: 2.5vw;
	}
	.faq_box .faq_items {
	}
	.faq_box .faq_item {
		margin-bottom: 3.5vw;
	}
	.faq_box .accordion_one {
	}
	.faq_box .faq_question {
		padding: 2.25vw;
	}
	.faq_box .faq_question:after {
	}
	.faq_box .faq_question_text {
		font-size: 3.5vw;
		align-items: center;
	}
	.faq_box .faq_question_text:before {
		min-width: 8vw;
		min-height: 8vw;
		margin-right: 2vw;
	}
	.faq_box .faq_answer {
		margin: 1vw 2.5vw 0;
		padding: 5vw 3vw;
	}
	.faq_box .faq_answer_text {
		font-size: 3.5vw;
		line-height: 1.6;
	}
	.faq_box .faq_answer_text:before {
		font-size: 7vw;
		margin: -2vw 3.5vw 0 0;
	}
}
