@charset "utf-8";
/* CSS Document */
/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
  background-color: #F6E9E6;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
	border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title__accordion {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1.4rem;
    font-weight: normal;
    padding: 5px 3% 5px 50px;
/*  margin-left: 10px;*/
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.title__accordion::before,
.title__accordion::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.title__accordion::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title__accordion::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title__accordion.close::before{
	transform: rotate(45deg);
}

.title__accordion.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background-color: #F6E9E6;
	margin:0 3% 3% 3%;
    padding: 3% 0;
}
@media(min-width:769px) {
  .accordion-area {
/*    margin-top: 520px;*/
    width: 100%;
    max-width: none;
    padding-bottom: 40px;
/*     position: relative;*/
    z-index: 9999;
  }
  .title__accordion {
    margin-left:186px;
    width: 100%;
      z-index: 9999;
  }
  .box {
     margin-left: 163px;
    padding-left: 0;
    position: relative;
    z-index: 9999;
      }
}
