@charset "utf-8";

/**----------------**/
/**  btnView       **/
/**----------------**/

.btnView{
	display:block;
	width: 90%;
	margin: 10px auto 20px;
	background: #85B200;
	background:-moz-linear-gradient(50% 0% -90deg,rgb(163,217,0) 0%,rgb(133,178,0) 100%);
	background:-webkit-linear-gradient(-90deg,rgb(163,217,0) 0%,rgb(133,178,0) 100%);
	background:-ms-linear-gradient(-90deg,rgb(163,217,0) 0%,rgb(133,178,0) 100%);
	background:linear-gradient(-90deg,rgb(163,217,0) 0%,rgb(133,178,0) 100%);
	-moz-border-radius:20px;
	-webkit-border-radius:20px;
	border-radius:20px;
	-moz-box-shadow:0px 7px 0px rgb(105,140,0);
	-webkit-box-shadow:0px 7px 0px rgb(105,140,0);
	box-shadow:0px 7px 0px rgb(105,140,0);
}
.btnView:hover{
	position: relative;
	top: 3px;
	-moz-box-shadow:0 4px 0px rgb(105,140,0);
	-webkit-box-shadow:0px 4px 0px rgb(105,140,0);
	box-shadow:0px 4px 0px rgb(105,140,0);
}
.btnView a{
	display: block;
	padding-top:8px;
	padding-bottom:8px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	text-shadow: -1px -1px 0 rgba(0,0,0,.6);
	white-space: nowrap;
 }

/** このCSSは，ページ内のメニューボタンを定義する。　**/
/**----------------**/
/**  menu_button   **/
/**----------------**/
.menu_button {
	display:block;
	float:left;
	width: 40%;
	margin: 0px 3% 12px;
	background: #85B200;
	background:-moz-linear-gradient(50% 0% -90deg,rgb(163,217,0) 0%,rgb(133,178,0) 100%);
	background:-webkit-linear-gradient(-90deg,rgb(163,217,0) 0%,rgb(133,178,0) 100%);
	background:-ms-linear-gradient(-90deg,rgb(163,217,0) 0%,rgb(133,178,0) 100%);
	background:linear-gradient(-90deg,rgb(163,217,0) 0%,rgb(133,178,0) 100%);
	-moz-border-radius:20px;
	-webkit-border-radius:20px;
	border-radius:20px;
	-moz-box-shadow:0px 7px 0px rgb(105,140,0);
	-webkit-box-shadow:0px 7px 0px rgb(105,140,0);
	box-shadow:0px 7px 0px rgb(105,140,0);
}

.menu_button:hover {
	position: relative;
	top: 3px;
}
.menu_button a {
	display: block;
	padding-top: 5px;
	padding-bottom: 5px;
	font-weight: bold;
	color:#fff;
	text-align: center;
	text-shadow: -1px -1px 0 rgba(0,0,0,.6);
	text-decoration: none;
	white-space: nowrap;
 }

.active{
	background:rgb(105,140,0);
}
/* .content p{
	 clear:both;
 }*/

/* スマートフォン 縦(ポートレート) */
@media only screen and (min-width:481px){
.btnView{
	width:60%;
	}
	
.menu_button {
	width: 20%;
	margin-left:2%;
	}
}

/* スマートフォン 横(ランドスケープ) */
@media only screen and (min-width:769px){
.btnView{
	width:40%;
	}
	
.menu_button {
	width: 20%;
	margin-left:1%;
	}
}
