  @charset "Shift_JIS";

/* ------------------------------------------------------------------------------

	[ファイル名]	accordion.css

	[概要]	燃料費調整の仕組みアコーディオン対応

	[目次]


------------------------------------------------------------------------------ */
/* accordion style  ### start ### */

.accordion-title {
	display: inline-block;
	color: #FFF !important;
	text-decoration: none !important;
	font-weight: bold;
	padding: 10px 50px 9px 15px;
	min-width: 220px;
	position: relative;
	border: none;
	background: #29aa3f;
	outline: none;
	width: 100%;
	cursor: pointer;
	box-sizing: border-box;
	margin-bottom: 10px;
}
.accordion-title:hover,
.accordion-title:focus {
	opacity: 0.7;
}
.accordion-title::before {
content: "";
position: absolute;
top: 50%;
right: 25px;
width: 15px;
height: 2px;
/*縦線に*/
transform: rotate(90deg);
background: #fff;
transition: all .3s ease-in-out;
}

.accordion-title::after {
content: "";
position: absolute;
top: 50%;
right: 25px;
/*横線*/
width: 15px;
height: 2px;
background: #fff;
transition: all .2s ease-in-out;
}

.accordion-title.open::before {
transform: rotate(180deg);
}

.accordion-title.open::after {
opacity: 0;
}

.accordion-content {
width: 100%;
margin: 0 auto;
overflow: hidden;
box-sizing: border-box;
}

.wid1 {
	padding: 10px 20px;
}
