@charset "utf-8";
/* CSS Document */
body {
	background-color: #f4f5f7;
}
#header {
	background-color: #000;
	color: #FFF;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	font-size: 25px;
	margin-bottom: 3px;
	vertical-align: bottom;
	border-radius: 10px;
	line-height: 2em;
	-webkit-box-shadow: 3px 3px 3px #939393;
	box-shadow: 3px 3px 3px #939393;
}
table{	 
	width:100%;
}
#footer {
	background-color: #000;
	color: #FFF;
	margin-right: auto;
	margin-left: auto;
	height: 45px;
	text-align: center;
	line-height: 3em;
	border-radius: 10px;
	font-size: 15px;
}
.cp_actab {
	position: relative;
	overflow: hidden;
	margin-bottom: 1px;
	color: #000000;
	margin-right: auto;
	margin-left: auto;
}
.cp_actab input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.cp_actab label {
	font-weight: bold;
	line-height: 3;
	position: relative;
	display: block;
	padding: 0 0 0 1em;
	margin: 0 0 1px 0;
	cursor: pointer;
	background-color: rgba(1,84,160,1);
	border-radius: 10px;
	color: #FFF;
	-webkit-box-shadow: 3px 3px 3px #888888;
	box-shadow: 3px 3px 3px #888888;
}
.cp_actab .cp_actab-content {
	overflow: hidden;
	max-height: 0;
	-webkit-transition: max-height 0.35s;
	transition: max-height 0.35s;
	background: #a9bce2;
}
.cp_actab .cp_actab-content p {
	margin: 1em;
}
/* :checked */
.cp_actab input:checked ~ .cp_actab-content {
	max-height: 50em;
	-webkit-box-shadow: 10px ｐｘ 0px #444D5E;
	box-shadow: 10px ｐｘ 0px #444D5E;
}
/* Icon */
.cp_actab label::after {
	line-height: 3;
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 3em;
	height: 3em;
	-webkit-transition: all 0.35s;
	transition: all 0.35s;
	text-align: center;
}
.cp_actab input[type=radio] + label::before {
	content: '▽';
}
.cp_actab input[type=radio]:checked + label::before {
	content: '△';
}
