.toggle {
	display: none;
}
.Label {		/*タイトル*/
	width: 90%!important;
	padding: 0;
	display: block;
	color: #00A040;
	margin-left: 0;
	margin-bottom: 0;
	border: 2px solid #00A040;
	padding-top: 10px;
	padding-left: 10px;
	padding-bottom: 10px;
	border-radius: 12px;
	font-size: 1.5em;
	cursor: pointer;
}
.Label::before{		/*タイトル横の矢印*/
	content:"+";
	width: 24px;
	height: 24px;
	font-size: 2rem;
	position: absolute;
	top:calc( 50% -  2rem );
	right:1rem;
}

.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
	width: 100%;
	margin: auto;
	margin-bottom: 0.5rem;
}
.content {		/*本文*/
	width: 94%;
	height: 0;
	overflow: hidden;
	padding-top: 0;
	margin-top: 0;
	margin-left: auto;
	margin-right: auto;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	transition: all .3s;
	padding-top: 10px;
}
	.toggle:checked + .Label::before{		/*タイトル横の矢印*/
		content:"-";
		width: 24px;
		height: 24px;
		font-size: 2rem;
		position: absolute;
		top:calc( 50% -  2rem );
		right:0.5rem;
		}
	

.content .ken{
	color: #00913D;
	border-bottom: 2px solid #00913D;
	padding-bottom: 5px;
	font-size: 2rem;
	text-align: center;
	margin-bottom: 2rem;
	cursor:auto;
	margin-top: 1rem;
}

.content .tenpo {		
	display: block;
	background-color:#D2EFDE;
	padding: 0.8rem;
	font-size: 1.4em;
	color: #000000;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width: 768px) {
	.content .tenpo{		
		display: block;
		background-color:#D2EFDE;
		padding: 0.8rem;
		font-size: 0.67rem;
		color: #000000;
		margin-left: auto;
		margin-right: auto;
		}
	}


.content a.tenpo{		
	padding: 0;
	display: block;
	width: 100vw;
	margin-left: 0;
	margin-bottom: 0;
	background: none;
	background-color: #D2EFDE;
	padding: 0.5rem;
	margin-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {
.content a.tenpo{		
	padding-right: 30vw;
}

}


.content a.tenpo::before{		
    content: "";
    width: 104px;
    height: 33px;
    background-image: url('../img/icon-acces.png');
    background-position: center;
    background-size: contain;
	position: absolute;
	right: 10px;
}

@media screen and (max-width: 768px) {
	.content a.tenpo::before{		
		content: "";
		width: 66.56px;
		height: 21.12px;
		background-image: url('../img/icon-acces.png');
		background-position: center;
		background-size: contain;
		position: absolute;
		right: 10px;
	}
	
}
