@charset "utf-8";
/*==============================================
 CSS LANG - JP（日本語）
 イメージなどのCSSにて指定によるものの多言語対応
 ベタで貼ったイメージなどの切り替えなど
===============================================*/

div.openTbl{
	width: 73px;
	height: 20px;
	/*background: url("/img/site/btn_open_close.png") no-repeat left top;*/
	cursor: pointer;
	margin:0 5px;
	font-size: 13px;
	line-height: 1;
	text-align: center;
	background-color: #0073c5;
	color: #FFF;
	font-weight: normal;
	padding-top: 2px;
	border-radius: 3px;
}
div.openTbl:hover{
	background-color: #005C9E;
}

div.openTbl.close{
	/*background: url("/img/site/btn_open_close.png") no-repeat left bottom;*/
	opacity: 1;
	text-shadow: none;
}
div.openTbl.close:hover{
	color: #FFF;
}
div.openTbl:before{
	content: "開く";
}
div.openTbl:after{
	font-family: 'Material Icons';
	content: "\e148";
	font-size: 14px;
	vertical-align: -3px;
	display: inline-block;
	margin-left: 3px;
}
div.openTbl.close:before{
	content: "閉じる";
}
div.openTbl.close:after{
	content: "\e15d";
}
