﻿@charset "UTF-8";

*{
	/* width指定にpaddingとborderの幅を含める */
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
}
/* html&body */
html{
	height:100%;
	margin:0;
	padding:0;
	font-size:62.5%;
}
body{
	width:100%;
	margin:0;
	padding:0;
	font-family:"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
	line-height:1.5;
	letter-spacing:0.1rem;
}
/* wrapper */
#wrapper{
	width: 663px;
	font-size: 1.5rem;
	margin: 0 auto;
	padding: 0 6px;
}
header{
	margin-top:10px;
}
header h1{
	margin:0;
	padding:0;
	float: left;
}
header h1 img{
	width: 170px;
	height:auto;
}
h2{
	color: #0065E7;
	font-size: 1.4em;
	border: 1px solid #0065E7;
	margin: 10px 0 20px;
	padding: 5px 20px;
	line-height: 1.4em;
	font-weight: normal;
	text-align:center;
	clear:both;
}
h3{
	color: #0065E7;
	font-size: 1.2em;
	border-bottom: 1px dotted #0065E7;
	margin: 0 0 10px;
	padding: 5px 10px;
	line-height: 1.4em;
	font-weight: normal;
	clear:both;
}
h4{
	color: #ffffff;
	font-size: 1.1em;
	background:#0065E7;
	margin: 0 0 20px;
	padding: 2px 10px;
	line-height: 1.4em;
	font-weight: normal;
	clear:both;
}
h5{
	color: #0065E7;
	font-size: 1.0em;
	margin: 0 0 20px;
	padding: 2px 10px;
	line-height: 1.4em;
	font-weight: bold;
	clear:both;
}
.btn{
	font-size:1.1em;
	font-weight: bold;
	text-align: center;
	display: block;
	margin: 0 auto;
	letter-spacing: 0.2em;
}
.btn a{
	padding:0.2em 1.5em;
	text-decoration: none;
	display: block;
	color: #ffffff;
	text-shadow:2px 2px 1px #D27D00;
	background: rgb(245,160,3); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(245,160,3,1) 0%, rgba(230,124,0,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(245,160,3,1)), color-stop(100%,rgba(230,124,0,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(245,160,3,1) 0%,rgba(230,124,0,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(245,160,3,1) 0%,rgba(230,124,0,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(245,160,3,1) 0%,rgba(230,124,0,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(245,160,3,1) 0%,rgba(230,124,0,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5a003', endColorstr='#e67c00',GradientType=0 ); /* IE6-9 */
	border: 1px solid #d27d00;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-box-shadow:inset 0px 0px 2px rgba(255,241,163,10);
	-webkit-box-shadow:inset 0px 0px 2px rgba(255,241,163,10);
	box-shadow:inset 0px 0px 2px rgba(255,241,163,10);
	transition:all .2s;
}
.btn a:hover{
	color: #ffffff;
	text-shadow: 0px 0px 5px #FFECC3, 0px 0px 10px #FFECC3;
	background: rgb(230,124,0); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(230,124,0,1) 0%, rgba(245,160,3,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(230,124,0,1)), color-stop(100%,rgba(245,160,3,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(230,124,0,1) 0%,rgba(245,160,3,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(230,124,0,1) 0%,rgba(245,160,3,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(230,124,0,1) 0%,rgba(245,160,3,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(230,124,0,1) 0%,rgba(245,160,3,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e67c00', endColorstr='#f5a003',GradientType=0 ); /* IE6-9 */
}
.btn_print{
	float: right;
}
.btn_print_bottom{
	width:140px;
	margin:0 auto 40px;
}
@media print{
	.btn_print,.btn_print_bottom{
		display:none;
	}
}
#print_info{
	margin-bottom: 20px;
}
#google_map iframe {
	width: 100%;
}
#img_map{
	text-align:center;
}
#img_map img{
	padding: 1px;
	border: 1px solid #cacaca;
	max-width:100%;
	height:auto;
}
#print_info img{
	max-width:100%;
	height:auto;
}
@media screen and (max-width: 640px) {
	#wrapper{
		width:auto;
	}
}