/*ベース*/
.toggle {
	display: none;
}
.Label {		/*タイトル*/
    padding: 20px 15px 20px 60px;
	display: block;
	color: #231815;
    background-image: url(images/Q.svg);
    background-repeat: no-repeat;
    background-position: 1.5% center;
    background-size: 40px auto;
    box-sizing: border-box;
    margin-bottom: 5px;
}

.Label:last-child{
    margin-bottom: 0px;
}

.white_back{
    background-color: #FFF;
}

.blue_back{
	background-color: #eaf6fd;
}

.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 12px;
	height: 12px;
	border-top: 4px solid #00a9ba;
	border-right: 4px solid #00a9ba;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}

.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding:20px ;
	transition: all .3s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/スマホ_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/

@media screen and (max-width: 540px) {
	.Label {		/*タイトル*/
		padding: 10px 40px;
		display: block;
		color: #231815;
		background-image: url(images/Q.svg);
		background-repeat: no-repeat;
		background-position: 1.5% center;
		background-size: 30px auto;
		box-sizing: border-box;
		margin-bottom: 5px;
		line-height: 1.4em;
	}

	.Label,
	.content {
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		transform: translateZ(0);
		transition: all 0.5s !important;
	}

	.content {		/*本文*/
		line-height: 1.6em;
	}

	.toggle:checked + .Label + .content {	/*開閉時*/
		padding:2px 20px ;
		transition: all .8s!important;
	}
}
