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

	base.css
 
------------------------------------------------------------------*/

html{
	overflow: auto;
}
body {
	width: 100%;
	min-width: 1000px;
	position: relative;
	line-height: 150%;
	font-family: 'Noto Sans Japanese',   sans-serif;
	font-weight: 400;
	color: #786956;
	overflow: hidden;
}
.alphaOver a:hover {
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
	-moz-opacity: .7;
	opacity: .7;
	zoom: 1
}
a, a:link {
	text-decoration: none;
	color: #786956;
	transition: all 0.5s;
}
a:hover {
	text-decoration: none;
}
header {
	width: 100%;
	margin: 0 auto;
	padding: 25px 0 20px;
	position: relative;
}
header h1,
header .logo{
	margin-bottom: 25px;
}

header .menu_btn{
	display: none;
}
header .menu ul{
	font-size: 0;
	text-align: center;
}
header .menu ul li{
	display: inline-block;
	vertical-align: middle;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 100%;
}
header .menu ul li::after{
	display: inline-block;
	content: "|";
}
header .menu ul li.nobrdr::after{
	display: none;
}
header .menu ul li a{
	padding: 5px 15px;
	font-size: 14px;
	letter-spacing: 1px;
}
header .menu ul li.sp{
	display: none;
}

.main{
	padding-bottom: 50px;
}

#pagetop {
	width: 1000px;
	margin: 15px auto;
	text-align: right;
}

/* footer */
footer {
	padding-top: 25px;
	padding-bottom: 35px;
	color: #fff;
	background: #5e8439;
}
footer .footer_menu{
	margin-bottom: 30px;
}
footer .footer_menu a{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	letter-spacing: 1px;
	text-indent: 1px;
	padding: 0 10px;
	color: #fff;
}
footer .footerInner {
	font-size: 0;
	text-align: center;
	margin-bottom: 30px;
}
footer .footerInner > span{
	display: inline-block;
	width: 500px;
	font-size: 12px;
	text-align: left;
}
#copyright {
	width: 100%;
	padding: 0;
	font-size: 12px;
	line-height: 26px;
	margin: auto;
}
#copyright a {
	color: #fff;
}

 @media screen and (max-width: 480px) {
	body {
		min-width: 320px;
		width: 100%;
		position: relative;
		min-height: 500px;
	}
	header {
		width: 100%;
		height: auto;
		z-index: 1000;
		margin: auto;
		left: 0;
		padding: 5px 0;
		right: 0;
		position: fixed;
		background: #fff;
		box-shadow:0px 0px 10px 0px rgba(0,0,0,0.2);
	}
	header h1,
	header .logo{
		float: none;
		margin-bottom: 0;
	}
	header h1 img,
	header .logo img{
		width: auto;
		height: 50px;
	}
	header .menu_btn{
		display: block;
		width: 34px;
		height: 25px;
		position: fixed;
		top: 17px;
		left: 5%;
		z-index: 99;
	}
	.open header .menu_btn{
		display: block;
		line-height: 30px;
		text-align: center;
		z-index: 999;
	}
	header .menu_btn span{
		display: block;
		width: 34px;
		height: 4px;
		background: #786956;
		border-radius: 5px;
		transition: all 0.3s;
    	transform: rotate(0deg);
	}
	header .menu_btn span.middle{
		transform: translateY(6px);
	}
	header .menu_btn span.bottom{
		transform: translateY(12px);
	}
	.open header .menu_btn span{
		background: #fff;
	}
	.open header .menu_btn span.middle{
		background: rgba(255, 255, 255, 0);
	}
	.open header .menu_btn span.top{
		transform: rotate(-45deg) translate(-11px,14px);
	}
	.open header .menu_btn span.bottom{
		transform: rotate(45deg) translate(8px,5px);
	}
	header .menu_bg{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.8);
		-webkit-transition: all .5s;
		transition: all .5s;
		visibility: hidden;
		opacity: 0;
		z-index: 99;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	header .menu {
		display: table;
		padding-bottom: 50px;
	}
	header .menu ul{
		display: table-cell;
    	vertical-align: middle;
		width: 100%;
		height: 100%;
		box-sizing: border-box;
		padding: 5% 0 7%;

	}
	header .menu ul li{
		width: 100%;
		margin: 0 auto;
		text-align: center;
	}
	header .menu ul li::after,
	header .menu ul li:first-child::before{
		display: none;
	}
	header .menu ul li a{
		display: block;
		width: 100%;
		height: 100%;
		padding: 20px 0;
		font-size: 14px;
		color: #fff;
	}
	/* 開閉用ボタンがクリックされた時のスタイル */
	.open header .menu_bg {
		-webkit-transition: all .5s;
		transition: all .5s;
		visibility: visible;
		opacity: 1;
	}
	
	
	.main{
		padding-top: 90px !important;
	}
	
	#pagetop{
		display: none;
	}
		
	
	/* footer */
	footer {
		padding-top: 20px;
		padding-bottom: 20px;
		color: #fff;
		background: #5e8439;
	}
	footer .footer_menu{
		margin-bottom: 30px;
	}
	footer .footer_menu a{
		font-family: Arial, Helvetica, sans-serif;
		font-size: 13px;
		letter-spacing: 1px;
		text-indent: 1px;
		padding: 0 10px;
		color: #fff;
	}
	footer .footerInner {
		font-size: 0;
		text-align: center;
		margin-bottom: 10px;
	}
	footer .footerInner > span{
		display: inline-block;
		width: auto;
		font-size: 12px;
		line-height: 20px;
		text-align: left;
	}
	footer .footerInner > span .footerIndent{
		display: inline-block;
		padding-left: 3.5em;
		text-indent: -3.5em;
	}
	#copyright {
		width: 100%;
		padding: 0;
		font-size: 12px;
		line-height: 24px;
		margin: auto;
	}
	#copyright a {
		color: #fff;
	}
}
@media screen and (min-width: 481px) {
	.sp {
		display: none !important;
	}
	.pc {
		display: block !important;
	}
}
@media screen and (max-width: 480px) {
	.sp {
		display: block !important;
	}
	.pc {
		display: none !important;
	}
}
