@CHARSET "UTF-8";

/* custom CSS */
/* カスタム設定を有効にするには、ID名・class名のアンダーバー[ _ ]を外してください。 */
/* .gradient1_ → .gradient1、.gradient2_ → .gradient2 */

.gradient1 {

	background: #50ba3e; /* for non-css3 browsers */
 
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4cac26', endColorstr='#54c551'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#4cac26), to(#54c551)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #4cac26,  #54c551); /* for firefox 3.6+ */
}

.gradient2 {

	background: #7ad965; /* for non-css3 browsers */
 
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6dd46b', endColorstr='#82dd52'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#6dd46b), to(#82dd52)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #6dd46b,  #82dd52); /* for firefox 3.6+ */
}

