/*アコーディオン全体*/
.submenu .accordion-area{
    list-style: none;
    /* width: 96%;
    max-width: 900px; */
    /* margin:0 auto; */
    padding-top: 20px;
    /* padding-left: 20px; */
    font-weight: normal;
	padding-inline-start: 0px;
}

.accordion-area li{
	/* margin: 10px 0; */
	position: relative;
	line-height: 1.5;
	margin-bottom: 24px;
	color: #4078cc;
	left: -7px;
}

.submenu .accordion-area li::after {
	width: 0px;
}


/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
	font-size: 1.4rem;
    font-weight: normal;
	padding-left: 25px;
	transition: all .5s ease;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 1px;
    background-color: #4078cc;
}
.title::before{
    top:48%;
    left: 0px;
    transform: rotate(0deg);
}
.title::after{
    top:48%;
    left: 0px;
    transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/
.close {
	float: none;
	color: #4078cc;
	opacity: 1;
	line-height: 1.5;
}
.close:hover {
    color: #4078cc;
}

.title.close::before{
	/* transform: rotate(45deg); */
}

.title.close::after{
	/* transform: rotate(-45deg); */
	transform: none;
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
	margin-left: 20px;
}

.submenu .accordion-area .box li {
	padding-left: 10px;
}
.submenu .accordion-area .box li::after {
	width: 15px;
	left: -1em;
}

