.faq-section{
	padding: 150px 0 0;
}
.faq-section.forEngineer{
	padding-bottom: 150px;
}
.accordion_wrapper{
  margin-top: 90px;
}
.accordion{
  margin: 0 auto;
	border-top: solid 2px #555;
	position: relative;
}
.accordion:last-of-type{
	border-bottom: solid 2px #555;
}
.accordion::before{
	content: url("../img/faq/svg_01.svg");
	display: inline-block;
	width: 23px;
	height: 28px;
	position: absolute;
	top: 37px;
	left: 0;
}
.accordion_header{
	font-size: 1.8rem;
	font-weight: bold;
  cursor: pointer;
  position: relative;
	text-align: left;
  padding: 35px 80px 35px 45px;
	letter-spacing: 2px;
}
.accordion_header::before{
  position: absolute;
  content: '';
  top: 50%;
  right: 0;
  width: 35px;
  height: 2px;
  background-color: #171D61;
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
}
.accordion_header::after{
  position: absolute;
  content: '';
  top: 50%;
  right: 0;
  width: 35px;
  height: 2px;
  background-color: #171D61;
  transition: all .3s ease-in-out;
}
.accordion_header.open::before {
  transform: rotate(180deg);
}
.accordion_header.open::after {
  opacity:0;
}
.accordion_content{
	display: none;
	text-align: left;
  padding: 0 80px 30px 45px;
	position: relative;
	letter-spacing: 2px;
}
.accordion_content::before{
	content: url("../img/faq/svg_02.svg");
	display: inline-block;
	width: 25px;
	height: 25px;
	position: absolute;
	top: 0;
	left: 0;
}



@media screen and (max-width:767px){
	
	
	
	#faq .pageHeader .inner{
		padding: 0 0 150px;
	}
	
	.faq-section{
		padding: 70px 0 0;
	}
	.faq-section.forEngineer {
    padding-bottom: 70px;
	}
	.accordion_wrapper{
		margin-top: 50px;
	}
	.accordion{
		border-top: solid 1px #555;
	}
	.accordion:last-of-type {
    border-bottom: solid 1px #555;
	}
	.accordion::before {
    content: url(../img/faq/svg_01_sp.svg);
    width: 19px;
    height: 23px;
    top: 21px;
	}
	.accordion_header {
    font-size: 1.5rem;
    padding: 20px 40px 20px 30px;
    letter-spacing: 2px;
	}
	.accordion_header::before{
		width: 25px;
		right: 0;
	}
	.accordion_header::after{
		width: 25px;
		right: 0;
	}
	.accordion_content{
		padding: 0 0px 30px 30px;
	}
	.accordion_content::before {
    content: url(../img/faq/svg_02_sp.svg);
    display: inline-block;
    width: 19px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
	}

	
}