.accordion_container {
	max-width: 100%;
	margin: 0 auto;
}
.accordion_title {
	background-color: #c0c0c0;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	padding: 14px 2%;
	text-align: left;
	position: relative;
	z-index: +1;
	cursor: pointer;
	transition-duration: 0.2s;
}
.accordion_title:hover {
	opacity: 0.8;
}
.icon_wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 5%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	box-sizing: border-box;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transform-origin: center center;
	transition-duration: 0.2s;
}
.icon {
	display: block;
	width: 18px;
	height: 18px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transform-origin: center center;
	transition-duration: 0.2s;
	position: relative;
}
.accordion_title.open 
.icon_wrap {
	-webkit-transform: rotate(-360deg);
	transform: rotate(-360deg);
}
.icon:before, .icon:after {
	display: flex;
	content: '';
	background-color: #fff;
	border-radius: 10px;
	width: 18px;
	height: 4px;
	position: absolute;
	top: 7px;
	left: 0;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	transform-origin: center center;
}
.icon:before {
	width: 4px;
	height: 18px;
	top: 0;
	left: 7px;
}
.accordion_title.open 
.icon_wrap .icon:before {
	content: none;
}
.accordion_title.open 
.icon_wrap .icon:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.accordion_inner {
	display: none;
	padding: 20px 20px;
	border-left: 2px solid #c0c0c0;
	border-right: 2px solid #c0c0c0;
	border-bottom: 2px solid #c0c0c0;
	box-sizing: border-box;
}
.ac_inner_wraper {
	height: 100px;
}
p.txt_a_ac {
	margin: 0;
}

@media screen and (max-width: 1024px) { 
	.accordion_title {
		font-size: 18px;
	}
	.icon_wrap {
		width: 30px;
		height: 30px;
		margin-top: -15px;
	}
}
.closeArea {
	width: 160px;
	margin: 0 auto;
}
.closeArea .close_box a.close_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	border: solid 1px #696969;
	padding: 15px 15px 15px 20px;
	font-size: 18px;
	font-weight: bold;
	position: relative;
	text-decoration: none;
	line-height: 1.3;
	color: #696969;
	cursor: pointer;
	transition-duration: 0.2s;
}
.closeArea .close_box a.close_btn:hover {
	background: #696969;
	color: #fff;
}
@media screen and (max-width: 767px) {
	.accordion_title {
		font-size: 16px;
		text-align: left;
		padding: 15px 60px 15px 15px;
	}
}