@charset "euc-jp";
/* CSS Document */

input, label {
	cursor: pointer;
}
.toggle {
	display: none;
}
.Label {
	padding: .5em 2em .5em 1em;
	font-size: 1.8rem;
	display: block;
	background: #F0F0FF;
}
.Label::before{
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #444;
	border-right: 2px solid #444;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.Label strong {
	font-size: 120%;
}
.contentbox strong {
	font-size: 135%;
}
.Label,
.contentbox {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.contentbox {
	height: 0;
	margin-bottom:10px;
	padding: 0 1em;
	overflow: hidden;
}
.contentbox p {
	margin: 0;
}
.toggle:checked + .Label + .contentbox {
	height: auto;
	padding: 20px ;
	transition: all .3s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}

@media screen and (max-width:979px){
}
@media screen and (max-width:699px){
.Label {
	font-size: 1.6rem;
}
}