@charset "utf-8";
.faq-list{
	width: 100%;
	position: relative;
	z-index: 1;
}
.faq-list__question{
	margin-top: 10px;
	background: #fff url(../img/ico_question.png) no-repeat 30px center / 40px;
	font-size: 18px;
	line-height: 30px;
	font-weight: bold;
	color: #1f5ab2;
	padding: 30px 75px 30px 90px;
	position: relative;
	cursor: pointer;
}
.faq-list__question::before,
.faq-list__question::after{
	content: "";
	display: block;
	background: #1f5ab2;
	top: 0;
	bottom: 0;
	width: 20px;
	height: 1px;
	right: 45px;
	position: absolute;
	margin: auto;
	transition: all 0.25s ease;
}
.faq-list__question::after{
	transform: rotate(90deg);
}
.faq-list__question--open::before{
	transform: rotate(45deg);
}
.faq-list__question--open::after{
	transform: rotate(-45deg);
}

.faq-list__answer{
	display: none;
	overflow: hidden;
	background: #fff url(../img/ico_answer.png) no-repeat 30px 0px / 40px;
	font-size: 14px;
	line-height: 29px;
	padding: 0 75px 35px 90px;
	position: relative;
	cursor: pointer;
}
.faq-list__image{
	margin: 1em 0;
}
.faq-list__image img{
	height: auto;
	max-width: 100%;
}
.faq-list__url{
	margin: 1em 0;
}
@media screen and (max-width: 767px) {
	/* ---------------------------------------------------------------- SP ---- */
	.faq-list{
		width: 100%;
	}
	.faq-list__question{
		margin-top: 5px;
		background: #fff url(../img/ico_question.png) no-repeat 15px center / 20px;
		font-size: 13px;
		line-height: 20px;
		padding: 15px 30px 15px 45px;
	}
	.faq-list__question::before,
	.faq-list__question::after{
		width: 10px;
		height: 1px;
		right: 15px;
	}

	.faq-list__answer{
		/*margin-top: 5px;*/
		background: #fff url(../img/ico_answer.png) no-repeat 15px top / 20px;
		font-size: 13px;
		line-height: 20px;
		padding: 0 30px 15px 45px;
	}
}