@charset "utf-8";
/* CSS Document */

@media screen and (max-width: 1400px) {
/* 1024pxまでの幅の場合に適応される */

.color_01 .a {
	font-family: "Abril Fatface", serif;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-image: -webkit-gradient(
		linear,
		left top,
		right top,
		color-stop(0, #C9A254),
		color-stop(0.5, #F9F79A),
		color-stop(1, #C9A254)
	);
	background-image: -o-linear-gradient(right, #C9A254 0%, #F9F79A 50%, #C9A254 100%);
	background-image: -moz-linear-gradient(right, #C9A254 0%, #F9F79A 50%, #C9A254 100%);
	background-image: -webkit-linear-gradient(right, #C9A254 0%, #F9F79A 50%, #C9A254 100%);
	background-image: -ms-linear-gradient(right, #C9A254 0%, #F9F79A 50%, #C9A254 100%);
	background-image: linear-gradient(to right, #C9A254 0%, #F9F79A 50%, #C9A254 100%);
}

}