@charset "utf-8";
/* CSS Document */
.section-top img{
  object-position: 0 50px;
}
.section-recruit,.section-overview,.section-frow,.section-FAQ{
  padding: 0 24px 90px;
}
@media(min-width:960px){
  .section-top img{
    object-position: top;
  }
  .section-recruit,.section-overview,.section-frow,.section-FAQ{
    margin-bottom: 30px;
  }
}
.section-recruit{
  margin-top: 60px;
}
@media(min-width:960px){
  .section-recruit p{
  max-width: 880px;
  margin: 0 auto;
  font-size: 2.0rem;
  line-height: 3.5rem;
  }
}
.section-overview_copy{
  margin-bottom: 30px;
}
.section-overview ul li{
  font-weight: 600;
}
.section-overview ul li,.section-frow ul li {
  list-style: none;
}
.section-overview ul li::before {
  content: ""; 
  width: 12px;
  height: 12px;
  margin-right: 10px;
  display: inline-block;
  background-color: #FFB238;
  border-radius: 50%;
}
@media(min-width:960px){
  .section-overview_copy,.section-overview ul{
    max-width: 880px;
    margin: 0 auto;
  }
  .section-overview_copy{
    margin-bottom: 30px;
    font-size: 2.0rem;  
    line-height: 3.5rem;
  }
  .section-overview ul li {
    font-size: 2.0rem;
    line-height: 40px;
    position: relative;
    padding: 0 10px 0 40px;
  }
  .section-overview ul li::before {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 10px;
    left: 10px;
  }
}
/*追加*/
.faq-item {
  margin: 20px auto 0px;
  border: 3px solid #86B81B;
  border-radius: 10px;
}
.faq-question__wrap {
  position: relative;
  background: #FFF;
  padding: 15px 0px 15px 55px;
  cursor: pointer;
  border-radius: 10px;
}
.minus-icon,.plus-icon {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background: #86B81B;
  right: 20px;
  top: 50%;
}
.minus-icon {
  transform: translateY(-50%);
}
.plus-icon {
  transform: translateY(-50%) rotate(90deg);
  transition: ease all 0.5s; /* 擬似要素のトランジションを追加 */
}
.plus-icon.active {
  transform: translateY(-50%);
}
.faq-question__title,.faq-answer__title {
  padding-left: 10px;
  position: relative;
  color: #2F2F2F;
  font-size: 1.8rem;
}
.faq-question__title {
  max-width: 210px;
}
.faq-question__title::before,.faq-answer__title::before{
  position: absolute;
  color: #fff;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  text-align: center;
  line-height: 35px;
  font-weight: 600;
}
.faq-question__title::before {
  content: "Q";
  background: #86B81B;
  }
.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: #fff;
  opacity: 0;
  padding: 15px 5px 15px 55px;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  transition: ease all 0.7s; /* 擬似要素のトランジションを追加 */
}
.faq-answer__wrap.active {
  opacity: 1;
  padding: 15px 5px 15px 55px;
  border-radius: 10px;
}
.faq-answer__title {
  padding-right: 10px;
}
.faq-answer__title::before {
  content: "A";
  background: #FFB238;
  }
.faq-answer__text {
  margin-top: 5px;
}
@media(min-width:960px) {
  .faq-item{
    max-width: 880px;
  }
  .faq-question__title{
    max-width: 700px;
  }
}