@charset "UTF-8";

.tab_open{
  text-align: right;
  height: 54px;
  margin: 10px 0 25px;
}

#cpactab_all{
  border: 1px solid #2D287F;
  padding: 15px 20px;
  cursor: pointer;
  color: rgb(45, 40, 127);
}


.cp_actab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 auto 20px;
	color: rgb(45, 40, 127);
}
.cp_actab input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.cp_actab label {
	font-size: 1.6rem;
	position: relative;
	display: block;
	padding: 15px 0;
	cursor: pointer;
	margin: 0;
	background-color: rgba(45, 40, 127, 0.1);
	text-align: center;
}
.cp_actab .cp_actab-content {
	overflow: hidden;
	max-height: 0;
	-webkit-transition: max-height 0.35s;
	transition: max-height 0.35s;
	color: #333333;
}
.cp_actab .cp_actab-content p {
	margin: 1em;
}
/* :checked */
.cp_actab input:checked ~ .cp_actab-content {
	max-height: 20em;
}
/* Icon */
.cp_actab label::after {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 6em;
	padding: 20px 1em 20px 0;
	-webkit-transition: all 0.35s;
	transition: all 0.35s;
	text-align: right;
	font-size: 1.4rem;
}
.cp_actab input[type=checkbox] + label::after {
	content: 'A ▼';
}
.cp_actab input[type=checkbox]:checked + label::after {
	content: 'A ▲';
}

@media screen and (max-width: 768px) {
  
	.tab_open{
    text-align: right;
    height: 54px;
    margin: 25px 0;
  }
 
	.cp_actab label::after {
		padding: 15px 1em 20px 0;
	}
	
}