@CHARSET "UTF-8";

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

.gradient1 {

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

.gradient2 {

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

