/* よくあるご質問 */
.faq-hero {
	width: 100%;
	margin: 54px auto 0;
}

.faq-hero img {
	width: 100%;
	height: auto;
}

.faq-content {
	width: 70%;
	margin: 0 auto;
	padding: 96px 0;
	color: #1A1311;
	font-family: 'Noto Sans JP', sans-serif;
}

.faq-content .faq-section h2 {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	margin: 36px auto;
}

.faq-content .faq-section .question-row {
	background-color: #fff;
	padding: 16px 24px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}

.faq-content .faq-section .question-row:not(:first-of-type) {
	margin-top: 8px;
}

.faq-content .faq-section .question-row .angle {
	position: absolute;
	width: 16px;
	height: 16px;
	right: 24px;
	transition: transform .5s;
}

.faq-content .faq-section .question-row .angle.open {
	transform: rotate(180deg);
}

.faq-content .faq-section .answer-row {
	background-color: #fff;
	padding: 0 24px 16px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}

.faq-content .faq-section .answer-row .border {
	content: '';
	display: block;
	width: 100%;
	border-top: solid 1px #EAEAEA;
	margin-bottom: 16px;
}

.faq-content .faq-section .question-row .question {
	font-size: 18px;
	margin-left: 32px;
	letter-spacing: 2px;
}

.faq-content .faq-section .answer-row .answer {
	font-size: 16px;
	margin-left: 32px;
	letter-spacing: 2px;
	line-height: 1.5;
	width: 80%;
}

.faq-content .faq-section .question-row .icon-q {
	background: url('../images-recruit/icon-question.png') no-repeat;
	background-size: cover;
}

.faq-content .faq-section .answer-row .icon-a {
	background: url('../images-recruit/icon-answer.png') no-repeat;
	background-size: cover;
	color: #fff;
}

.faq-content .faq-section .question-row .icon-q,
.faq-content .faq-section .answer-row .icon-a {
	width: 55px;
	height: 55px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	font-weight: bold;
}

@media screen and (max-width: 767px) {

	.faq-content {
		width: 90%;
	}

	.faq-content .faq-section h2 {
		font-size: 20px;
	}

	.faq-content .faq-section .question-row {
		padding: 16px 20px;
	}


	.faq-content .faq-section .question-row .angle {
		width: 10px;
		height: 10px;
		right: 20px;
	}

	.faq-content .faq-section .answer-row {
		padding: 0 20px 16px;
		align-items: flex-start;
	}

	.faq-content .faq-section .question-row .question {
		font-size: 15px;
		width: 60%;
		margin-left: 20px;
	}

	.faq-content .faq-section .answer-row .answer {
		font-size: 15px;
		width: 75%;
		margin-left: 20px;
	}

	.faq-content .faq-section .question-row .icon-q,
	.faq-content .faq-section .answer-row .icon-a {
		width: 38px;
		height: 38px;
		font-size: 13px;
	}

}