/*//二つ目のラベル///*/
.Label {		/*タイトル*/
	display: block;
	margin-bottom: 0;
	z-index: 10000;
	color: white;
	font-size: 1.1rem;
	line-height: 1;
	font-weight: 600;
	text-indent: 1em;
	cursor: pointer;
}

@media screen and (min-width: 750px) {
.Label {		/*タイトル*/
	padding: 0;
	display: block;
	width: 77.34%;
	margin-bottom: 0;
	z-index: 10000;
	color: white;
	font-size: 1.2rem;
	line-height: 3;
	font-weight: 600;
	cursor: pointer;
}
}


.Label span{
  font-size: 1.4rem;
  

}


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

@media screen and (min-width: 750px) {
.Label::before{		/*タイトル横の矢印*/
	position: absolute;
    width: 40px;
    height: 16px;
	top: 34px;
	right:30px;
}
}

.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%;
	font-size: 1rem;
	border-radius: 1rem;
	margin-bottom: 1rem;
}

@media screen and (min-width: 750px) {
.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%;
	font-size: 1.2rem;
	border-radius: 1rem;
	margin-bottom: 1rem;
}


}
	.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	transition: all .3s;
	padding: 2%;
	padding-left: 10px;
	width: 94%;
	margin-top: 10px;

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

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

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


