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

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


body {
	width: 100%;
	min-width: 1000px;
	position: relative;
	line-height: 150%;
	color: #482704;
}
.alphaOver a:hover {
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
	-moz-opacity: .7;
	opacity: .7;
	zoom: 1
}
a {
	text-decoration: none;
	color: #482704;
}
a:hover {
	text-decoration: none;
}
header {
	width: 100%;
	margin: 0 auto;
	padding: 20px 0 0;
}
header h1,
header .logo{
	text-align: center;
	margin-bottom: 40px;
}

header .menu_btn{
	display: none;
}
header .menu ul{
	font-size: 0;
	text-align: center;
}
header .menu ul li{
	display: inline-block;
	vertical-align: top;
}
header .menu ul li::after,
header .menu ul li:first-child::before{
	display: inline-block;
	vertical-align: top;
	content: "";
	width: 6px;
	height: 25px;
	background: url(../img/deco_menu.png) no-repeat center center / 100% auto;
}
header .menu ul li a{
	display: inline-block;
	font-family: baskerville-urw, serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	line-height: 1.2em;
	text-align: center;
	letter-spacing: 2px;
	color: #482704;
	padding: 0 32px;
}
header .menu ul li a span{
	font-size: 12px;
	color: #ceac8f;
}

.container{
	width: 1000px;
	margin: auto;
	padding: 70px 0 15px;
	position: relative;
}

.pagetop {
	width: 1000px;
	margin: auto;
	font-size: 13px;
	line-height: 100%;
}



/* footer */
footer{
	padding: 40px 0 50px;
	background: #d6c7af;
	color: #5d461f;
}
footer .footerNav{
	width: 1000px;
	margin: 0 auto 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #fff;
}
footer .footerNav a{
	font-size: 12px;
	color: #5d461f;
	padding: 0 15px;
}
footer .footerInfo{
	width: 1000px;
	font-size: 12px;
	line-height: 2.1em;
	margin: auto;
	box-sizing: border-box;
	padding: 0 20px;
}
footer .footerInfo .indent{
	display: inline-block;
	padding-left: 4.5em;
	text-indent: -4.5em;
}
#copyright {
	width: 1000px;
	padding: 0;
	font-size: 12px;
	margin: auto;
	box-sizing: border-box;
	padding: 0 20px;
}
#copyright p a {
	color: #fff;
}

 @media screen and (max-width: 480px) {
	body {
		min-width: 320px;
		width: 100%;
		position: relative;
		min-height: 500px;
		color: #482704;
	}
	header {
		width: 100%;
		z-index: 1000;
		margin: auto;
		padding: 20px 0 30px;
		background: #fff;
	}
	header h1,
	header .logo{
		width: 100%;
		height: auto;
		margin: 0 auto;
		float: none;
		text-align: center;
		padding: 0;
	}
	header h1 a img,
	header .logo a img {
		width: 90px;
		height: auto;
		padding-top: 0px;
	}
	header .menu_btn{
		display: block;
		width: 34px;
		height: 18px;
		position: fixed;
		top: 30px;
		right: 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: 2px;
		background: #5f4605;
		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(-8px,12px);
	}
	.open header .menu_btn span.bottom{
		transform: rotate(45deg) translate(9px,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;
		width: 100%;
		padding: 0;
		border: none;
	}
	header .menu ul{
		display: table-cell;
    	vertical-align: middle;
		width: 100%;
		height: 100%;
		box-sizing: border-box;
		padding: 10px 0 60px;

	}
	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,
	header .menu ul li .active{
		display: block;
		width: 80%;
		margin: 0 auto;
		padding: 5% 0;
		font-size: 12px;
		line-height: 1.8em;
		color: #fff; 
		position: relative;
	}
	/* 開閉用ボタンがクリックされた時のスタイル */
	.open header .menu_bg {
		-webkit-transition: all .5s;
		transition: all .5s;
		visibility: visible;
		opacity: 1;
	}
	
	.container{
		width: 94%;
		margin: auto;
		padding: 30px 0 50px;
	}
	
	.pagetop {
		display: none;
	}
	
	
	
	/* footer */
	footer{
		padding: 20px 0 25px;
		background: #d6c7af;
		color: #5d461f;
	}
	footer .footerNav{
		width: 94%;
		margin: 0 auto 20px;
		padding-bottom: 15px;
		border-bottom: 1px solid #fff;
	}
	footer .footerNav a{
		font-size: 12px;
		color: #5d461f;
		padding: 0 15px;
	}
	footer .footerInfo{
		width: 94%;
		font-size: 12px;
		line-height: 2.1em;
		margin: auto;
		box-sizing: border-box;
		padding: 0;
	}
	footer .footerInfo .indent{
		display: inline-block;
		padding-left: 0;
		text-indent: 0;
	}
	footer .footerInfo .indentSP{
		display: inline-block;
		padding-left: 5.3em;
		text-indent: -5.3em;
	}
	#copyright {
		width: 94%;
		padding: 0;
		font-size: 12px;
		margin: auto;
		box-sizing: border-box;
		padding: 0;
	}
	#copyright p 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;
	}
}
