/* 目次中央寄せ */
#ez-toc-container{
margin: 0 auto;
}

/*タイトルを太文字&amp;中央寄せ*/
div#ez-toc-container p.ez-toc-title {
text-align: center;
}

.btn{
    width:130px;
    height:40px;
    line-height:40px;
}
.btn a{
    display:block;
    width:100%;
    height:100%;
    text-decoration: none;
    background:#EB8686;
    text-align:center;
    border:5px solid #EB8686;
    color:#FFFFFF;
    font-size:16px;
    font-weight:bold;
    border-radius:35px;
    -webkit-border-radius:35px;
    -moz-border-radius:35px;
}
.btn a:hover{
    background:#EB8686;
    color:#FFFFFF;
    margin-left:0px;
    margin-top:0px;
    border:5px solid #EB8686;
    box-shadow:none;
}

.cp_actab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
	color: #ffffff;
}
.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;
	cursor: pointer;
	margin: 0 0 1px 0;
	background: #da3c41;
}
.cp_actab .cp_actab-content {
	overflow: hidden;
	max-height: 0;
	-webkit-transition: max-height 0.35s;
	transition: max-height 0.35s;
	color: #333333;
	background: #f1c6c6;
}
.cp_actab .cp_actab-content p {
	margin: 1em;
}
/* :checked */
.cp_actab input:checked ~ .cp_actab-content {
	max-height: 20em;
}
/* 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=checkbox] + label::after {
	content: '+';
}
.cp_actab input[type=checkbox]:checked + label::after {
	transform: rotate(315deg);
}

/* マーカー追加 yellow */
.marker-yellow{
background: linear-gradient(transparent 70%, #fef263 0%);
}