.faq__question {
	position: relative;
	background-color: #3863ad;
	box-shadow: 0 0 10px rgba(0,0,0,0.05);
	border-radius: 30px;
	padding: 0 30px;
	padding-left: 15px;
	margin-top: 20px;
}

@media(max-width: 767px) {
	.faq__question {
		border-radius: 15px;
		padding: 0;
		margin-top: 17px;
	}
}

.faq__question:first-child {
	margin-top: 0;
}

.faq__question:after {
	content: '';
	position: absolute;
	z-index: 3;
	right: 30px;
	top: 25px;
	width: 40px;
	height: calc(100% - 50px);
	border-left: 1px solid #a3bdec;
}

@media(max-width: 767px) {
	.faq__question:after {
		width: 30px;
		height: calc(100% - 40px);
		top: 20px;
		right: 0;
	}
}

.faq__title {
	position: relative;
	z-index: 100;
	cursor: pointer;
	padding: 25px 0;
}

@media(max-width: 767px) {
	.faq__title {
		padding: 20px 0;
	}
}

.faq__title:after {
	display: block;
	content: url(../img/faq_arrow.svg);
	position: absolute;
	width: 25px;
	right: 0;
	top: 50%;
    transform: translateY(-50%);
	transition: .2s;
}

@media(max-width: 767px) {
	.faq__title:after {
		content: url(../img/faq_arrow2.svg);
		width: 16px;
		right: 7px;
	}
}

.faq__title_active.faq__title:after {
	top: 40%;
	transform: rotate(180deg) translateY(-50%);
	transition: .2s;
}

.faq__title_active.faq__title {
	padding-bottom: 0;
}

.faq__question h6 {
	width: 10%;
	flex: 1 1;
	line-height: 1.6;
	text-align: left;
	margin-top: 0;
	padding-right: 55px;
}

.faq__question h6, .faq__answer-text {
	padding-left: 20px;
}

@media(max-width: 767px) {
	.faq__question h6 {
		padding-right: 42px;
	}
	.faq__question h6, .faq__answer-text {
		padding-left: 12px;
	}
}

@media(max-width: 600px) {
	.faq__question h6 {
		font-size: 15px;
	}
}

.faq__answer {
    display: none;
	border-top: 1px solid #a3bdec;
	padding-bottom: 30px;
	padding-right: 55px;
}

@media(max-width: 767px) {
	.faq__answer {
		padding-bottom: 20px;
		padding-right: 42px;
	}
}

@media(max-width: 600px) {
	.faq__answer-text p, section ul li {
		font-size: 12px;
	}
}

#question1 .faq__answer {
    display: flex;
}

.faq__answer-text {
	width: 10%;
	flex: 1 1;
}

.faq__letter {
	width: 57px;
	padding-left: 15px;
}

@media(max-width: 767px) {
	.faq__letter {
		width: 38px;
		padding-left: 12px;
	}
}

.faq__title h6, .faq__answer-text {
	border-left: 1px solid #a3bdec;
}

.faq__title_active.faq__title .faq__letter_question {
	padding-bottom: 23px;
}

.faq__title_active.faq__title h6 {
	padding-bottom: 17px;
}

.faq__letter_answer, .faq__answer-text {
	padding-top: 23px;
}

.faq-pt2 {
	padding-top: 33px;
}

@media(max-width: 767px) {
	.faq__title_active.faq__title .faq__letter_question,
	.faq__title_active.faq__title h6 {
		padding-bottom: 14px;
	}
	.faq__letter_answer, .faq__answer-text {
		padding-top: 17px;
	}
}

.faq__letter p {
	font-family: 'NimbussanTConBold';
    font-size: 55px;
	line-height: 0.9;
    color: #a3bdec;
}

@media (max-width: 767px){
	.faq__letter p {
		font-size: 38px;
	}
}


