@charset "utf-8";
/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    margin:0 auto;
}

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

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


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

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

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

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

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #f3f3f3;
	margin:0;
    padding: 0 0;
	font-size:1rem;
	text-align:left;
	font-size:14px;
}

.box-bg{
	background:url("../images/bg-light-yellow.svg")no-repeat center right;
	background-color: #f3f3f3;
}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){
/*アコーディオンタイトル*/
.acco-title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:0.8rem;
    font-weight: normal;
    padding: 1% 3% 1% 50px!important;
    transition: all .5s ease;
	clear: both;
	margin-bottom: 0px!important;
}
	
/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #f3f3f3;
	margin:0;
    padding: 0 0;
	font-size:12px!important;
	text-align:left;
	font-size:14px;
}
	
}