@charset "UTF-8";
/*　ヘッダー画像
-------------------------------------------------------------------------------- */
#h2Img {
  background: url("../img/headerimg.jpg") center center / cover no-repeat;
}

/*　コンテンツページ
-------------------------------------------------------------------------------- */
/* フォームリード部分 */
.scontentsArea .formLead {
  margin: 30px auto;
  text-align: center;
}
.scontentsArea .formLead {
  text-align: center;
  margin-bottom: 20px;
}

.scontentsArea .formLead .qa-link {
  display: inline-block;
  background-color: #E7F2FF; 
  border: 1px solid #B7B2B2;     
  padding: 30px 100px 30px 60px; 
  font-size: 24px;
  text-align: center;
  position: relative;

}

.scontentsArea .formLead .qa-link a {
  text-decoration: none;
  color: #333;
  display: inline-block;
  position: relative;
}

.scontentsArea .formLead .qa-link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -45px;
  transform: translateY(-50%);
  width: 39px;
  height: 39px;
  background: url("../../shared/img/arrowL.png") no-repeat center center;
  background-size: contain;
  transition: background-image 0.3s ease;
}

.scontentsArea .formLead .qa-link:hover {
  background-color: #fff;
  border-color: #e60462;
}

.scontentsArea .formLead .qa-link:hover a {
  color: #e60462;
}

.scontentsArea .formLead .qa-link:hover a::after {
  background-image: url("../../shared/img/arrowL_hover.png");
}

/*--レスポンシブ対応--*/
@media screen and (max-width: 767px) {

  .scontentsArea .formLead .qa-link {
  padding: 20px 100px 20px 60px; 
  font-size: 16px;
 
}


}


/*　よくあるお問合せ
-------------------------------------------------------------------------------- */
.faq {
  width: 90%;
  margin: 0px auto 0px auto;
  padding: 0 0 80px 0px;
}


.faq-item {
  margin-top: 30px;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #f9f9f9;
  border-left: 4px solid #eda3c2;
  border-radius: 4px;
}

.faq-question {
  font-weight: bold;

	margin-top: 0px;
  margin-bottom: 20px;
  color: #333;
}

.faq-answer p {
  margin: 0;
  line-height: 1.7;
  color: #444;
}
.faq a
{
    color: #e60462;
}



/*--レスポンシブ対応--*/
@media screen and (max-width: 767px) {
.faq {
  width: 100%;

}


}