@charset "UTF-8";
#searchBox {
	padding: 50px 25px;
	margin-bottom: 80px;
	background: #F4F2EF;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 5%;
}

.searchSelectWrap {
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 20px;
}

.searchSelect {
	width: 300px;
	position: relative;
}

.searchSelect select {
	width: 100%;
	height: 5.5rem;
	padding: 10px 50px 10px 25px;
	display: block;
	background: #FFFFFF;
	border: none;
	appearance: none;
	cursor: pointer;
	font-size: 1.5rem;
	font-family: var(--font-family-sub);
	color: #444444;
}

.searchSelect::before {
	width: 5.5rem;
	top: 0;
	right: 0;
	bottom: 0;
	content: "";
	position: absolute;
	background: #E6E3DF;
	pointer-events: none;
}

.searchSelect::after {
	content: "";
	width: 13px;
	height: 7px;
	background: url(../../img/common/icon_pulldown.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 21px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.searchBoxTit {
	font-size: clamp(1.3rem,1.4vw,2rem);
	font-weight: 600;
	font-family: var(--font-family-main);
	color: #444444;
	text-align: left;
}

#faqSection {
	padding-bottom: 150px;
}

.faq {
	padding-bottom: 60px;
}

.question {
	margin-bottom: 10px;
	border: 1px solid #ebebeb;
}

.question .queTit {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 30px 10% 30px 3%;
	background: url(../../img/common/icon1.svg) right 3% center / 30px no-repeat #FFF;
	font-size: 1.8rem;
	transition: all 0.3s ease-in-out 0s;
}

.question .queTit:hover {
	box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
}

.question .queTit::before {
	content: "Q";
	font-size: 2rem;
	font-family: var(--font-family-en);
	display: inline-block;
}

/* 詳細 */
/* ----------------------------------- */

#faqSingle {
	padding: 100px;
	background: #FFF;
}

.questionSingle .queTit {
	padding-bottom: 20px;
	margin-bottom: 20px;
	font-size: 2rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 20px;
	border-bottom: 1px solid #E6E1CC;
	color: #554b28;
}

.questionSingle .queTit::before {
	content: "Q";
	font-size: 2rem;
	font-family: var(--font-family-en);
	display: inline-block;
}

.answerSingle {
	display: flex;
	gap: 20px;
	font-size: 1.8rem;
	font-weight: 400;
	font-family: var(--font-family-sub);
}

.answerSingle::before {
	content: "A";
	font-size: 2rem;
	font-family: var(--font-family-en);
	display: inline-block;
	color: #d43232;
	flex: 0 0 1em;
}

#sortTxt {
	padding-bottom: 20px;
	font-size: 1.6rem;
}






/* -------------------------------------------------- */
/* TAB */
/* -------------------------------------------------- */
@media screen and (max-width: 1024px) {

	.searchSelectWrap {
		width: 100%;
		overflow: hidden;
		display: flex;
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.searchSelect {
		width: 100%;
	}

	#searchBox {
		padding: 30px 4%;
		margin-bottom: 60px;
		background: #F4F2EF;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: flex-start;
		flex-direction: column;
		gap: 20px 5%;
	}

}


/* -------------------------------------------------- */
/* SP */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {
	#faqSection {
		padding-bottom: 100px;
	}

	.question .queTit {
		background: url(../../img/common/icon1.svg) right 3% center / 20px no-repeat #FFF;
		font-size: 1.5rem;
	}

	#faqSingle {
		padding: 30px 4%;
	}

	.questionSingle .queTit {
		font-size: 1.8rem;
	}

	.answerSingle {
		font-size: 1.6rem;
	}
}