@charset "utf-8";
/* CSS Document */
	*{
	font-family: 'Helvetica, Arial', sans-serif;
	box-sizing: border-box;
	}
#accordion{
	margin: 10px auto;
	width: 500px;
	}
#accordion li{
	list-style: none;
	width: 100%;
	margin-bottom: 10px;
	background:#ed4955;
	padding: 1px;
	border-radius: 10px;
}
#accordion li label{
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-justify:auto;
	font-size: 22px;
	font-weight: 500;
	font-stretch:condensed;
	cursor: pointer;
	color: #FFF;
}
#accordion li label span{
	transform:rotate(90deg);
	font-size:25px;
	color:#FFF;
	}
#accordion label +input[type="radio"]{
	display:none;
}
#accordion .content{
	padding:0 20px;
	line-height:22px;
	max-height:0;
	overflow:hidden;
	transition:max-height 0.3s;
	background-color:#FFF;
}
#accordion label +input[type="radio"]:checked + .content{
	max-height:2000px;
}