@charset "utf-8";

/*------------------------------------------------------------------------------------------------------------
# アコーディオン
------------------------------------------------------------------------------------------------------------*/
.accordion_ul{
	margin: 20px 0 50px 0;
	padding: 0;
}
.accordion_ul li{
	list-style-type: none;
}

section h3,
dt {
	background-color: #f9f8e6;
	border-bottom: solid 1px #cce198;
	margin-bottom: 1px;
	padding: 15px 40px 15px 15px;
	font-size: 14px;
	cursor: pointer;
	position: relative;
}

section h3:before,
dt:before {
	display: block;
	content: "";
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 50%;
	right: 15px;
	width: 10px;
	height: 10px;
	margin-top: -8px;
	background: #027637;
}

section h3:after,
dt:after {
	display: block;
	content: "";
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 50%;
	right: 15px;
	width: 10px;
	height: 10px;
	margin-top: -13px;
	background: #f9f8e6;
}

section h3.active:before,
dt.active:before {
	margin-top: -2px;
}

section h3.active:after,
dt.active:after {
	margin-top: 3px;
}

section li,
dd {
	/*background-color: #F2F2F2;*/
	border-bottom: solid 1px #D6D6D6;
	padding: 15px;
}
/*アコーディオンメニュー用に上書き*/
section li a:link {
	color: #333;
	outline: none;
	text-decoration: underline;
}
section li a:hover {
	text-decoration: none;
}

/*section li a {
	position: relative;
	display: block;
}

section li a:before{
	display: block;
	content: "";
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 50%;
	right: 17px;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	background: #f9f8e6;
}

section li a:after{
	display: block;
	content: "";
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 50%;
	right: 22px;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	background: #F2F2F2;
}
*/
