@charset "UTF-8";
/* CSS Document */


/*==================================================
アコーディオンのためのcss
===================================*/

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

}

.accordion-area li{
    margin: 10px 0;
	background-color: #44CAED;
}

.accordion-area section {
  border: 3px solid #fff;
}

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

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #fff;
    
}
.title::before{
    top:48%;
    left: 35px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 35px;
    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%;
}



/*======== レイアウトのためのCSS ===============*/


h2{
    text-align: center;
    margin: 30px 0;
    font-size:1rem;
}
@media(max-width:670px){
.boxtable{
    width: 100%;
    margin: auto;
}
.title {
    font-size:16px;
    font-weight: normal;
    padding: 6% 3% 3% 50px;
}
.boxtable tr{
    font-size:  13px;
    }
}