.faq {
  margin-bottom: 97px;
}
.faq-container__item {
  margin-bottom: 92px;
}
@media screen and (max-width: 480px) {
  .faq-container__item {
    margin-bottom: 60px;
  }
}
.faq-container__item:last-child {
  margin-bottom: 0px;
}
.faq .article {
  background: #F5F9FF;
  border-bottom: 1px dashed #629ADD;
	-webkit-transition: padding .4s;
	-o-transition: padding .4s;
	transition: padding .4s;
	position: relative;
	overflow: hidden;
}
.faq .article.on {
  padding-bottom: 25px;
}

@media screen and (max-width: 680px) {
  .faq .article {
    padding-bottom: 21px;
  }
}
.faq .article .title {
	position: relative;
	padding: 28px 80px 25px 80px;
	font-size: 2.2rem;
  font-weight: 400;
	line-height: 1.5;
  letter-spacing: 0.075em;
  color: #26346E;
	cursor: pointer;
  transition: color .2s, padding .4s;
}
.faq .article.on .title {
  padding-bottom: 0;
}

@media screen and (max-width: 680px) {
  .faq .article .title {
    padding: 18px 60px 0px 50px;
    font-size: 1.8rem;
  }
}
.faq .article .title:hover {
  color: rgba(8,80,183,.7);
}

.faq .icon-q {
  position: absolute;
  top: 32px;
  left: 40px;
  font-size: 2.8rem;
  font-family: 'STIX Two Text', serif;
  font-weight: 500;
  line-height: 1;
  color: #0850B7;
}
@media screen and (max-width: 680px) {
  .faq .icon-q {
    left: 20px;
    top: 20px;
    font-size: 2.2rem;
  }
}

.faq .article .title::before,
.faq .article .title::after {
	display: block;
	content: '';
	background: #0850B7;
	position: absolute;
	top: 44px;
  right: 40px;
	width: 18px;
	height: 4px;
	transition: transform .4s;
	z-index: 10;
	cursor: pointer;
}
@media screen and (max-width: 680px) {
  .faq .article .title::before,
  .faq .article .title::after {
    top: 37px;
    right: 25px;
  }
}
.faq .article .title::before {
	transform: rotate(90deg);
}
.faq .article.on .title::before {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
.faq .article .text {
	position: relative;
	height: 0;
	overflow: hidden;
	-webkit-transition:.4s;
	-o-transition:.4s;
	transition: .4s;
}
.faq .article .text_inner {
	padding: 17px 40px 0px;
}
@media screen and (max-width: 680px) {
  .faq .article .text_inner {
    padding: 17px 21px 0px;
  }
}