<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";


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

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

.trigger{
	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, #fff8d9 0%, #ff748b 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 0 15px 0;
	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;
}

</pre></body></html>