@charset "utf-8";


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

.acordion{
	/*background:#fff;*/
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	border-radius:5px;
}

.trigger{
    border: 2px #fff000 solid;
    border-radius: 3px;
	padding:10px 10px 10px 15px;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #ffce45), color-stop(0.00, #ffce45));
	background: -webkit-linear-gradient(top, #000000 0%, #000000 100%);
	background: linear-gradient(top, #ffffff 0%, #ffd047 100%);
	border-radius:5px;
	font-size:88%;
}

.trigger.active{
	border-radius:5px 5px 0 0;
	/*border-bottom:1px solid #cfcfcf;*/
}

.acordion_tree{
	padding:15px;
	font-size:75%;
}

.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;
}

