/* アコーディオンのスタイルシート */
#accordion-container {

}

.accordion-header {
	margin-bottom: 20px;
	cursor: pointer;
}

.active-header,
.inactive-header {
	padding: 0.6em 0.8em;
}

.active-header {
	background: url(../../images/common/active-header.png) #2a3465;
	background-repeat: no-repeat;
	background-position: right 50%;
	color: #fff;
}

.active-header:hover {
	background: url(../../images/common/active-header.png) #2a3465;
	background-repeat: no-repeat;
	background-position: right 50%;
	color: #fff;
}

.inactive-header {
	background: url(../../images/common/inactive-header.png) #2a3465;
	background-repeat: no-repeat;
	background-position: right 50%;
	color: #fff;
}

.inactive-header:hover {
	background: url(../../images/common/inactive-header.png) #2a3465;
	background-repeat: no-repeat;
	background-position: right 50%;
	color: #fff;
}

.accordion-content {
	display: none;
	margin: 0 auto;
	width: 98%!important;
}