/* CSS Document */
body{
  background-color: #FEFFE2;
}

.section-top{
  padding-top: 50px;
  height: 130px;
}

.section-top h1{
  font-size: 24px;
  font-weight: bold;
  color: #2BA464;
  margin-bottom: 10px;
}

.section-qa-wrapper{
  background-color: rgba(255,255,255, 0.75); 
  padding: 40px 20px 20px;
  margin: 0 20px;
}

.section-qa,.section-maintainance,.section-attention{
  padding: 0 20px;
  margin-bottom: 70px;
  text-align: center;
}

.section-qa h2{
  text-align: left;
  margin-bottom: -20px;
}

.section-qa h3{
  text-align: left;
  margin-bottom: 10px;
}

.section-qa p{
  text-align: left;
}

@media(min-width: 1160px){
  .pcLayout-status{
    max-width: 768px;
    margin: 0 auto;
  }
  
  .section-qa h2{
    font-size: 20px;
    line-height: 30px;
  }
  
}

.accordion-area{
    list-style: none;
    max-width: 900px;
    margin:0 auto 50px;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
  border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
  transform: rotate(45deg);
}

.title.close::after{
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #f3f3f3;
    margin:0 3% 3% 3%;
    padding: 3%;
  line-height: 160%;
}
