/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 80%;
    max-width: 700px;
    margin:0 auto;
}

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

.accordion-area section {
	border-bottom: 2px solid #9297c8;
}

/*アコーディオンタイトル*/
.title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-style: normal;
  text-align: left;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.03em;
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 5% 3% 5% 3%;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;

}
.title::before{
    top:48%;
    right: 15px;
    transform: rotate(0deg);

}
.title::after{
    top:48%;
    right: 15px;
    transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/

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

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

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

.box p {
  font-family: 'Shippori Mincho', serif;
  font-style: normal;
  text-align: left;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.03em;
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    transition: all .5s ease;
}

/** -------- スマホ -------- **/

@media screen and (max-width: 560px) {

  .accordion-area{
    width: 100%;
  }
  #qa .title{
    padding: 5% 10% 5% 3%;
  }



}
