/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    /*width: 96%;*/
    max-width: 900px;
    margin:0 auto;
}

ul.accordion-area {margin:0;padding:0;}
.xx2 {column-count:2;}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
	border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1.5rem;
    font-weight: normal;
    padding: 1% 1% 1% 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%;
}

/*人形レイアウト*/
ul.img_list /*{
			list-style: none;display: flex;flex-direction: row;
  flex-wrap: wrap; font-size:80%;text-align: center; margin:0;padding:0;}*/
{list-style: none;display: flex;flex-direction: row;flex-wrap: wrap;  
justify-content: space-between; /*均等に間隔をあける*/
align-content: flex-end; font-size:80%; text-align: center;
}


ul.img_list li {margin-right:0.5em;}



/*レリーフu

*/
/*
ul.img_list {
			list-style: none;display: flex;flex-direction: row;
  flex-wrap: wrap; font-size:80%;text-align: center; margin:0;padding:0;}
ul.img_list li {margin-right:0.1em;}

*/






