@charset "utf-8";
/* CSS Document */

/* =====================================================================
     ヘッダー 
====================================================================== */


/* =====================================================================
     メイン 
====================================================================== */
div.main_image {
	position: relative;
}

ul.btn_area {
	width: 250px;
	margin: 15px auto 0 auto;
}

ul.btn_area li {
	width: 100%;
	height: 40px;
	line-height: 45px;
	text-indent: 20px;
	
	text-align: left;
	font-size: 16px;
	font-weight: bold;

	border-top: solid 1px #FFF;
	border-left: solid 1px #FFF;
	border-right: solid 1px #999;
	border-bottom: solid 1px #999;
	
	background: #FFF;/*IE8以下の保険*/
	background-image: -webkit-gradient(linear, left top, left bottom,color-stop(0, rgb(204, 204, 204)),color-stop(1, rgb(255, 255, 255)));
	background-image: -moz-linear-gradient(-90deg,rgb(204, 204, 204) 0%,rgb(255, 255, 255) 100%);
	background-image: linear-gradient(-90deg,rgb(204, 204, 204) 0%,rgb(255, 255, 255) 100%);

	/*↓角丸の設定*/	
	border-radius: 5px;/*css3*/
	-webkit-border-radius: 5px; /*ChromeSafari用保険*/
	-moz-border-radius: 5px; /*Firefox用保険*/
}

ul.btn_area li a {
	display: block;
	color: #666;
	text-shadow: 1px 1px 0px rgb(255, 255, 255);

}

ul.btn_area li a img {
	vertical-align: text-bottom;
	float: right;
	margin-top: 10px;
}