@charset "utf-8";


/*=========================================
アコーディオン
=========================================*/

.acordion{
	background:#00a2ff;
	box-shadow: 0 0 10px rgba(0,0,0,0);
	border-radius:0px;
}

.trigger{
	padding:0px 0px 0px 0px;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #00a2ff), color-stop(0.00, #00a2ff));
	background: -webkit-linear-gradient(top, #00a2ff 0%, #00a2ff 100%);
	background: linear-gradient(top, #00a2ff 0%, #00a2ff 100%);
	border-radius:5px;
	font-size:88%;
}

.trigger.active{
	border-radius:0px 0px 0 0;
	border-bottom:1px solid #00a2ff;
}

.acordion_tree{
	padding:0px;
	font-size:100%;
}

.open-close {
	float:right;
	text-indent:-9999px;
	display:block;
	margin-top:3px;
	height:11px;
	width:20px;
	background:url(../images/open.png) no-repeat;
	-webkit-background-size:20px 11px;
}

.trigger.active .open-close{
	background:url(../images/close.png) no-repeat;
	-webkit-background-size:20px 11px;
}

