@charset "utf-8";
/*//////////////////////////////////////////　ボタン　//////////////////////////////////////////*/

/* 共通項目 */
.btn {
	display: block;
	background-repeat: no-repeat;
}
.btn-inline {
	display: inline-block;
	background-repeat: no-repeat;
}
.btn:hover {
	filter: alpha(opacity=60);
	-moz-opacity:0.6;
	opacity:0.6;
	transition: opacity .15s ease-in-out;
	-moz-transition: opacity .15s ease-in-out;
	-webkit-transition: opacity .15s ease-in-out;
	background-color: white;/* 適用する要素の背景色を指定すること！firefox バグフックス */
}
.btn-inline:hover {
	filter: alpha(opacity=60);
	-moz-opacity:0.6;
	opacity:0.6;
	transition: opacity .15s ease-in-out;
	-moz-transition: opacity .15s ease-in-out;
	-webkit-transition: opacity .15s ease-in-out;
	background-color: white;/* 適用する要素の背景色を指定すること！firefox バグフックス */
}

