@charset "utf-8";
.accordion .toggle {
	display: none;
}
.accordion .Label {
	margin-top: .5em;
	padding: .3em 1em .3em 2.5em;
    display: inline-block;
    background: #ebe8e8;
	border-radius: 5px 5px 0 0;
	font-size: 80%;
}
.accordion .Label.click {
	background: #deeff5;	
}
.accordion .Label:hover {
	cursor: pointer;
	background: #deeff5;	
}
.accordion .Label::before{
	content:"";
	width: 10px;
	height: 10px;
	border-top: 4px solid #f9a3b7;
	border-right: 4px solid #f9a3b7;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 6px );
	left: 1em;
	transform: rotate(135deg);
}
.accordion .Label,
.accordion .content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.accordion .content {
	font-size: 90%;
	background: #deeff5;
	height: 0;
	border-radius: 0 5px 5px 5px;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}
.accordion .toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding:20px ;
	transition: all .3s;
}
.accordion .toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}