/* アコーディオン */
.acd-box {
	display: flex;
	flex-wrap: wrap;
}
.acd-check{
	display: none;
}
.acd-label,
.acd-content,
.acd-content_serach-content{
	transition: .2s;
}
.acd-content,
.acd-content_serach-content{
	height: auto;
	opacity: 0;
	transition: .2s;
	visibility: hidden;
}
.acd-label_search{
	margin-bottom: 1px;
	position: relative;
	cursor: pointer;
	color: #000;
	border-right: none;
	padding-bottom: 0.25em;
	padding: 25px 0;
	font-size: 26px;
	width: 100%;
}
.acd-label_search:before,
.acd-label_search:after{
	z-index: 1;
	content: "";
	position: absolute;
	top: 25%;
	width: 2px;
	height: 0.8em;
	background-color: #000;
	transition: all 0.3s;
	font-size: 30px;
	left: 330px;
}
.acd-label_search:after{
	transform: rotate(90deg);
}
.acd-check:checked + .acd-label_search:before{
	transform: rotate(90deg) !important;
}

.acd-content{
	display: block;
	height: 0;
	opacity: 0;
	padding: 0;
	margin-top: 0;
	transition: 0.3s;
	visibility: hidden;
}
.acd-content_serach-content {
	display: block;
	height: 0;
	opacity: 0;
	visibility: hidden;
	transition: 0.5s; /* 閉じるときのアニメーション */
}
.acd-check:checked + .acd-label + .acd-content{
	height: auto;
	opacity: 1;
	margin-top: 15px;
	visibility: visible;
	align-items: center;
	transition: 0.5s; /* 開くときのアニメーション */
}
.acd-check:checked + .acd-label_search + .acd-content_serach-content{
	height: auto;
	opacity: 1;
	visibility: visible;
	align-items: center;
	transition: all 0.5s;
	width: 100%;
}

@media screen and (max-width: 769px ) {
	.acd-label_search{
		padding: 20px 10px!important;
		font-size: 16px;
		font-weight: bold;
	}
	.acd-label_search:before,
	.acd-label_search:after{
		left: 50%;
	}
}