@charset "utf-8";
* {
	padding: 0;
	margin: 0;
}
html, body {
	height: 100%;
}
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 24px;
	color: #555;
	-webkit-text-size-adjust: 100%;
}
h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	line-height: 30px;
	color: #856433;
	text-align: center;
	margin-bottom: 30px;
}
#header {
	width: 100%;
	height: 80px;
	background-color: #FFF;
	position: fixed;
	z-index: 10000;
}
	#header_inner {
		width: 480px;
		height: 80px;
		margin: 0 auto;
		position: relative;
	}
		#logo_header {
			display: block;
			width: 280px;
			height: 80px;
			background-image: url(../img/logo.png);
			background-position: left top;
			background-size: 280px 80px;
			position: absolute;
			left: 0;
			top: 0;
		}
		#button_menu {
			display: block;
			width: 90px;
			height: 80px;
			background-image: url(../img/button_menu.png);
			background-size: 90px 80px;
			position: absolute;
			right: 0;
			top: 0;
		}
#page {
	box-sizing: border-box;
	min-height: 100%;
	padding-top: 80px;
	padding-bottom: 64px;
	position: relative;
}
#copy {
	width: 100%;
	padding: 20px 0;
	background-color: #856433;
	color: #FFF;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 0;
}
#filter {
	display: none;
	width: 100%;
	height: 100%;
	background-color: #000;
	position: fixed;
	left: 0;
	top: 0;
	opacity: 0;
	transition: opacity 0.3s ease 0s;
	z-index: 20000;
}
#menu {
	display: block;
	width: 240px;
	height: 100%;
	background-color: #FFF;
	transition: right 0.3s ease 0s;
	position: fixed;
	right: -240px;
	top: 0;
	z-index: 30000;
}
	#menu ul li {
		list-style: none;
		height: 60px;
		border-bottom: solid 1px #CCC;
	}
		#menu ul li a {
			display: block;
			font-size: 20px;
			line-height: 60px;
			padding: 0 20px;
			text-decoration: none;
			color: #555;
		}
	
.heading_gold {
	font-size: 20px;
	font-weight: bold;
	line-height: 24px;
	text-align: center;
	margin-bottom: 30px;
	color: #856433;
}
.heading_green {
	font-size: 20px;
	font-weight: bold;
	line-height: 24px;
	text-align: center;
	margin-bottom: 30px;
	color: #00B22D;
}
.heading_pink {
	font-size: 20px;
	font-weight: bold;
	line-height: 24px;
	text-align: center;
	margin-bottom:30px;
	color: #FF33A1;
}

.bg_green {
	background-color: #F2FFF3;
}
.bg_pink {
	background-color: #FFF7FB;
}
.content {
	width: 420px;
	padding: 30px;
	margin: 0 auto;
}
.button_tel {
	display: block;
	width: 420px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	background-color: #2ACB35;
	color: #FFF;
	text-decoration: none;
	font-size: 30px;
	border-radius: 30px;
	background-image: url(../img/icon_tel.png);
	background-repeat: no-repeat;
	background-size: 31px 31px;
	background-position: 50px 15px;
}
.clear {
	clear: both;
	height: 0;
	line-height: 0;
	visibility: hidden;
}