<style>
@media screen and (min-width: 559px){
.br-sp {display: none; }
}
.cp_actab {
	position: relative;
	overflow: hidden;
	width: 87%;
	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: #fc4d3d;
}
.cp_actab .cp_actab-content {
	overflow: auto;
	overflow-wrap: break-word;
        word-break: break-all;
	max-height: 0;
	-webkit-transition: max-height 0.35s;
	transition: max-height 0.35s;
	color: #333333;
	background: #f8f7f7;
}
.cp_actab .cp_actab-content p {
	margin: 1em;
}
/* :checked */
.cp_actab input:checked ~ .cp_actab-content {
	max-height: 100em;
}
/* 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);
}

.no-margin {
    border: 0;             /* デフォルトのボーダーを削除 */
    height: 1px;           /* 線の高さを指定 */
    background-color: #000; /* 線の色を指定 */
    margin: 0;             /* 上下左右の余白をなくす */
    width: 87%;
}

/* 閉じるボタン */
.icon-button {
    background: none;       /* 背景を無くす */
    border: none;           /* ボーダーを無くす */
    padding: 0;             /* 余白を無くす */
    margin: 0;              /* マージンを無くす */
    cursor: pointer;        /* ポインタを表示する */
}

.icon-button i {
    font-size: 24px;        /* アイコンのサイズを調整 */
    color: #000;            /* アイコンの色を設定 */
}
</style>