@charset "UTF-8";

.toggle {
	display: none;
}
.Label {
	display: block;
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	-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:30px;
	padding:0 20px;
	overflow: hidden;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding:20px ;
	transition: all .3s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}





/*PCのみ*/
@media (min-width: 768px) {

.flow-box {
    background: url(/assets/images/flow/arrow-flow.svg) no-repeat bottom left 10% / 25px ;
    padding-left: 25%;
}


}

@media (max-width: 768px) {

.Label::before{
	top:calc( 50% - -25px );
}

}



