/*//二つ目のラベル///*/
.Label {		/*タイトル*/
	padding: 0;
	display: block;
	width: 77.34%;
	margin-left: 11.33%;
	margin-bottom: 0;
	z-index: 10000;
}


.Label::before{		/*タイトル横の矢印*/
    content: "";
    display: inline-block;
    width: 8vw;
    height: 8vw;
    background-image: url('../img/acc-ico.png');
    background-position: center;
    background-size: contain;
	position: absolute;
	right: 10px;
	top:20px;
}

@media screen and (min-width: 750px) {
.Label::before{		/*タイトル横の矢印*/
	position: absolute;
    width: 60px;
    height: 60px;
	top:calc( 50% - 24px );
	right:15px;
}
}

.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
	width: 100%;
	margin: auto;
	z-index: 1;
}
.content {		/*本文*/
	height: 0;
	padding:0 0;
	overflow: hidden;
	padding-top: 0;
	margin-top: 0;
	margin-left: auto;
	margin-right: auto;
	background-color: white;
	border-radius: 5px;
 	z-index: 1;
	width: 100%;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	transition: all .3s;
	padding: 3%;
	width: 94%;
	margin-top: 10px;

}
.toggle:checked + .Label::before {
    content: "";
    display: inline-block;
    width: 8vw;
    height: 8vw;
    background-image: url('../img/acc-ico-on.png');
    background-position: center;
    background-size: contain;
	position: absolute;
	right: 10px;
	top:20px;
}

@media screen and (min-width: 750px) {
	.toggle:checked + .Label::before{		/*タイトル横の矢印*/
	position: absolute;
    width: 60px;
    height: 60px;
	top:calc( 50% - 24px );
	right:15px;
	}
	}

/*ベース*/
.toggle {
	display: none;
}


