@charset "utf-8";
.faq-list{
	overflow: hidden;
	width: 100%;
	position: relative;
	z-index: 1;
	margin-bottom: 20px;
}

.faq-list-item {
	position: relative;
	box-sizing: border-box;
	float: left;
	width: 25%;
	margin-bottom: 30px;
	padding: 0 10px ;
	text-align: center;
}

.faq-list-item-img {
	max-width: 100%;
}

.faq-list-item-name {
	font-size: 15px;
	padding-top: 12px;
}

.faq-list-item-a {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.faq-list__question{
	margin-top: 10px;
	background: #fff no-repeat 30px center / 40px;
	font-size: 18px;
	line-height: 30px;
	font-weight: bold;
	color: #da261d;
	padding: 30px 75px 30px 90px;
	position: relative;
	cursor: pointer;
}
.faq-list__question::before,
.faq-list__question::after{
	content: "";
	display: block;
	background: #da261d;
	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 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;
	}
}
