@charset "utf-8";
/* CSS Document */

/*メリット*/
h1{
	width:90%;
	max-width:1200px;
	margin:auto auto 50px auto;
}
/*.intro{
	width:90%;
	max-width:1200px;
	margin:auto;
	margin-bottom:70px;
	font-size:20px;
}*/
.faq-content-back{
	background-color:#FFFEF4;
	/*padding:100px 0 100px 0;*/
	padding:32px 0 32px 0;
}



.basic{
	width:90%;
	max-width:960px;
	margin:auto;
	margin-bottom:50px;
}

/*よくある質問*/
.faq-box{
	width:100%;
	/*max-width:760px;*/
	margin:auto;
	/*font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";*/
	color:#417E13;
	
	max-width:960px;
}
.faq-item {
  margin-top: 20px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  /*border: 1px solid #878787;*/
}

.faq-question__wrap {
  position: relative;
  /*background: #0C89B7;*/
  background:#fff;
  padding: 5px 40px 5px 55px;
  cursor: pointer;
  width:100%;
  margin:0;
  box-sizing: border-box;
  border: 1px solid #417E13;
	
  /*border-radius: 10px;*/
}

.minus-icon {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background: #417E13;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.plus-icon {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background: #417E13;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: ease all 0.5s; /* 擬似要素のトランジションを追加 */
}

.plus-icon.active {
  transform: translateY(-50%);
}

.faq-question__title {
  font-weight: bold;
  color: #417E13;
  font-size: 18px;
  position: relative;
  margin:10px;
}
.faq-question__title::before {
    position: absolute;
    color: #417E13;
    content: "Q";
    top: 50%;
    left: -35px;
    transform: translateY(-50%);
  }

.faq-answer__wrap {
  background: #fff;
  padding: 10px 5px 10px 55px;
  transition: ease all 0.5s; /* 擬似要素のトランジションを追加 */
  height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.faq-answer__wrap.active {
  height: auto;
  padding: 10px 5px 10px 55px;
}
.faq-answer__wrap {
  /*background: #ECECEC;*/
  background: #fff;
  opacity: 0;
  padding: 10px 5px 10px 55px;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  transition: ease all 0.7s; /* 擬似要素のトランジションを追加 */
}

.faq-answer__wrap.active {
  opacity: 1;
  padding: 10px 5px 10px 55px;
}

.faq-answer__title {
  position: relative;
  /*font-weight: bold;*/
  color: #323232;
  font-size: 16px;
	
  line-height: 2;
}

.faq-answer__title::before {
    position: absolute;
    color: #000;
    content: "A";
    top: 50%;
    left: -35px;
    transform: translateY(-50%);
	
	/*font-weight: bold;*/
  }

.faq-answer__text {
  margin-top: 5px;
}
@media(max-width:768px){
.faq-question__wrap {
  padding: 5px 40px 5px 40px;
}	
}
@media(max-width:520px){
.faq-item {
  margin-top: 10px;
}
.faq-question__title {
  font-size: 16px;
  margin:7px;
}
.faq-answer__title {
  font-size: 15px;
}

}