@charset "UTF-8";

/*アコーディオン全体*/
.a-area{
    list-style: none;
    width: 100%;
    margin:0 auto;
}
.a-area li{
	margin:0;
	padding:0;
}
/*.a-area section {
	border: 1px solid #ccc;
}*/

/*アコーディオンタイトル*/
.a-title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    padding: 18px 65px 18px 30px;
    transition: all .3s ease;
	color:var(--main-color);
	font-size:20px;
	font-weight:500;
	background:#fff;
	border-radius:10px;
	margin-bottom:20px;
	transition: all 0.3s ease-out;
}
/*アイコンの＋と×*/
.a-title::before,
.a-title::after{
    position: absolute;
    content:'';
    width: 18px;
    height: 1px;
    background-color:var(--main-color);
	/*color:var(--main-color);*/
}
.a-title::before{
    top:48%;
    right: 30px;
    transform: rotate(0deg); 
	transition: all 0.3s ease-out;
}
.a-title::after{    
    top:48%;
    right: 30px;
    transform: rotate(90deg);
	transition: all 0.3s ease-out;
}

/*　closeというクラスがついたら形状変化　*/
.a-title.close {
	background:var(--main-color);
	color:#fff;
	transition: all 0.3s ease-out;
}
.a-title.close::before{
	background:#fff;
	transform: rotate(0deg);
	transition: all 0.3s ease-out;
}
.a-title.close::after{
	background:#fff;
	transform: rotate(0deg);
	transition: all 0.3s ease-out;
}












/*アコーディオンで現れるエリア*/
.a-box {
    display: none;/*はじめは非表示*/
	margin:0 0 50px 0;
    padding: 0 30px;
}
.a-box h5 {
	color:rgba(0, 109, 82, 1.0);
	margin-bottom:10px;
}
.a-box p {
	line-height:150%!important;
	margin-bottom:10px;
}
