h4 {
	font-size: calc(1.125rem + ((1vw - 3.2px) * 0.5263));
	color: var(--light-red);
	border-left: 0.3em solid var(--light-red);
	padding-left: 0.5em;
	margin-top: 3vw;
}

.faq_wrap {
	margin-top: 1.5vw;
	transition: all 0.5s ease-out;
}

.faq_wrap:nth-of-type(even) {
	background-color: #F2F2f2;
}

.faq_wrap:hover {
	background-color: #E2F2FE;
}

.question {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	overflow: hidden;
	cursor: pointer;
	padding: 0.75em 1em;
}

.question p {
	position: relative;
	margin-left: 2.3em;
}

.question p:before {
	position: absolute;
	top: -0.5em;
	left: -1.4em;
	display: inline-block;
	content: 'Q.';
	width: 1em;
	height: 1em;
	color: var(--blue-color);
	font-size: 175%;
	font-weight: bold;
	margin-right: 0.2em;
}

.question span {
	display: inline-block;
	content: '';
	width: 40px;
	height: 40px;
	background: url(../img/faq/arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	transition: all 0.75s ease;
	transform: scale(0.65);
}

.question.opened span {
	transform: scale(0.65) rotate(180deg);
}

.anser {
	padding: 0em 1em;
	margin-bottom: 0;
	line-height: 0;
	opacity: 0;
	visibility: hidden;
	transition:
	line-height .4s ease-out,
	opacity .15s linear .15s,
	visibility .3s linear .3s;
}	

.anser.active {
	line-height: 1.5;
	opacity: 1;
	visibility: visible;
	opacity: 1;
	padding: 0em 1em 1.25em;
	margin-bottom: 0.5em;
}

.anser.active p {
	padding-top: 0.5em;
	border-top: 1px dotted silver;
}

.anser p:before {
	display: none;
	visibility: hidden;
	opacity: 0;
	content: '';
	width: 0em;
	height: 0em;
	transition:
	opacity .15s linear .15s,
	visibility .3s linear .3s;
}

.anser.active p:before {
	display: inline-block;
	visibility: visible;
	opacity: 1;
	content: 'A.';
	width: 1em;
	height: 1em;
	color: var(--red-color);
	font-size: 175%;
	font-weight: bold;
	margin-right: 0.2em;
}


.pb-l {
	padding-bottom: 6vw;
}

@media handheld, only screen and (min-width: 1200px) {


}

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

	h4 {
		margin-top: 6vw;
	}

	.question {
		padding: 0.75em 0.25em 0.75em 1em;
	}

	.question p {
		width: 22em;
	}

	.question span {
		width: 45px;
		height: 45px;
	}

}