/* LESS Document */
/*+++++++++++++++++++++++++++++++++++++++++++
	faqItem
+++++++++++++++++++++++++++++++++++++++++++ */
.faqItem {
  max-width: 900px;
  margin: 0 auto 0;
  padding: 0 0 20px;
}
.faqItem h3 {
  min-height: 82px;
  margin: 0;
  padding: 28px 60px 28px 80px;
  border-radius: 6px;
  border: none;
  font-size: 2rem;
  font-weight: 500;
  background: rgba(76, 156, 25, 0.1);
  cursor: pointer;
  position: relative;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .faqItem h3 {
    min-height: 0;
    padding: 20px 40px 20px 60px;
    font-size: 4vw;
  }
}
.faqItem h3::before {
  content: 'Q';
  width: 38px;
  height: 38px;
  border-radius: 38px;
  padding: 2px;
  text-align: center;
  font-size: 2rem;
  background: #98B735;
  color: #FFF;
  position: absolute;
  top: 24px;
  left: 24px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .faqItem h3::before {
    left: 12px;
  }
}
.faqItem h3::after {
  content: '\2b';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 32px;
  right: 32px;
}
@media screen and (max-width: 767px) {
  .faqItem h3::after {
    top: 50%;
    right: 8px;
    transform: translate(0, -50%);
  }
}
.faqItem h3:hover {
  color: #98B735;
}
.faqItem h3.open::after {
  content: '\f068';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.faqItem .faq_a {
  display: none;
  margin: 15px 0 0;
  padding: 0 60px 40px 80px;
  background: #FFF url(/wp/wp-content/themes/pio/common/img/txt_a.svg) no-repeat 20px 20px / 34px auto;
  font-weight: 400;
  line-height: 1.8;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faqItem .faq_a {
    padding: 0 0 20px 60px;
  }
}
.faqItem .faq_a::before {
  content: 'A';
  width: 38px;
  height: 38px;
  border-radius: 38px;
  padding: 0 2px 2px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  background: #FF4400;
  color: #FFF;
  position: absolute;
  top: 0px;
  left: 24px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .faqItem .faq_a::before {
    left: 12px;
  }
}
