@charset "utf-8";
/* ===================================================================
CSS
 file name  :  common.css
=================================================================== */
/* web font */
body, button, input, select, textarea {
	font-family: 'Noto Serif JP',"游明朝",YuMincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝E",serif;
	font-weight: 300;
	letter-spacing: 0.1em;
	line-height: 2;
}
html{
    font-size: 62.5%;
}
body{
    font-size:1.6rem;
	color: #FFF;
	position: relative;
}
@media screen and (max-width: 768px) {
	body{
		font-size:1.2rem;
	}
}
img{
	max-width: 100%;
	height: auto;
	width: auto;
}
a{
	color: #806D3B;
	text-decoration: underline;
}
a:hover{
	color: #AF9F75;
}
@media print, screen and (min-width: 769px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
		color: #FFF;
	}
	.pc_none{
		display:none;
	}
}
@media screen and (max-width: 768px) {
	a[href*="tel:"] {
		text-decoration: none;
		color: #FFF;
	}
	.sp_none{
		display:none;
	}
}
.bg_black{
	background: #000;
}
/* =====================================
ヘッダー
======================================== */
.header{
	position: relative;
	width: 100%;
	z-index: 10000;
}
.header_wrap{
	width:100%;
	height: 100px;
	margin:0 auto;
	border-top:3px solid #806D3B;
	background: url("../images/bg_header.jpg") no-repeat center center;
	background-size: cover;
}
.header_wrap .h_logo{
	position: absolute;
	top: 27px;
	left: 50px;
}
.header_wrap .h_logo a{
	display: block;
	width: 180px;
	height: 52px;
	background: url("../images/h_logo.png") no-repeat;
	background-size: contain;
	text-indent: -9999px;
}
/* Toggle Button */
.nav-toggle {
	position: fixed;
	right: 50px;
	top: 37px;
	width: 50px;
	height: 30px;
	cursor: pointer;
	z-index: 10200;
}
.nav-toggle div {
	position: relative;
}
.nav-toggle span {
	display: block;
	position: absolute;
	left: 0;
	height: 2px;
	width: 50px;
	background: #FFF;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}
.nav-toggle span:nth-child(1) {
	top: 0;
}
.nav-toggle span:nth-child(2) {
	top: 14px;
}
.nav-toggle span:nth-child(3) {
	top: 28px;
}
/* #nav-toggle 切り替えアニメーション */
.nav-toggle.active span {
	background: #FFF;
}
.nav-toggle.active span:nth-child(1) {
	top: 20px;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}
.nav-toggle.active span:nth-child(2) {
	width: 0;
	left: 50%;
}
.nav-toggle.active span:nth-child(3) {
	top: 20px;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}
/* .global_nav スライドアニメーション */
.open .global_nav {
	-moz-transform: translateX(-100vw);
	-webkit-transform: translateX(-100vw);
	transform: translateX(-100vw);
}
/* 開いてないときは画面外に配置 */
.global_nav{
	position: fixed;
	top: 0;
	right: -100vw;
	width: 40%;
	height: 100%;
	overflow: scroll;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	z-index: 10100;
	background: #222222;
	padding-top: 130px;
}
.global_nav ul li a{
	display: block;
	color: #FFF;
	text-decoration: none;
	font-size: 1.6rem;
	padding: 1em 4em;
	cursor: pointer;
}
.global_nav ul li a:hover{
	color: #806D3B;
}
@media screen and (max-width: 768px) {
	.header_wrap{
		border-top:2px solid #806D3B;
		height: 50px;
	}
	.header_wrap .h_logo{
		top: 13px;
		left: 20px;
	}
	.header_wrap .h_logo a{
		width: 90px;
		height: 27px;
	}
	/* Toggle Button */
	.nav-toggle {
		right: 20px;
		top: 16px;
		width: 30px;
		height: 23px;
	}
	.nav-toggle span {
		height: 1px;
		width: 30px;
	}
	.nav-toggle span:nth-child(1) {
		top: 0;
	}
	.nav-toggle span:nth-child(2) {
		top: 10px;
	}
	.nav-toggle span:nth-child(3) {
		top: 20px;
	}
	/* #nav-toggle 切り替えアニメーション */
	.nav-toggle.active span:nth-child(1) {
		top: 10px;
	}
	.nav-toggle.active span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.nav-toggle.active span:nth-child(3) {
		top: 10px;
	}
	/* .global_nav スライドアニメーション */
	.open .global_nav {
		-moz-transform: translateX(-100vw);
		-webkit-transform: translateX(-100vw);
		transform: translateX(-100vw);
	}
	/* 開いてないときは画面外に配置 */
	.global_nav{
		width: 100%;
		padding-top: 80px;
	}
	.global_nav ul li a{
		font-size: 1.2em;
		text-align: center;
	}
}
/* =====================================
コンテンツ
======================================== */
.contents_wrap{
	max-width: 880px;
	margin: auto;
	padding: 150px 50px 0 50px;
}
h2.subtitle{
	font-size: 3.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.2em;
}
h2.subtitle span{
	color: #806D3B;
	margin-left: 0.5em;
}
h2.subtitle::before,
h2.subtitle::after {
	background-color: #CCCCCC;
	content: "";
	height: 1px;
	width: 50px;
}
h2.subtitle::before {
	margin-right: 1em;
}
h2.subtitle::after {
	margin-left: 1em;
}
@media screen and (max-width: 768px) {
	.contents_wrap{
		padding: 70px 20px 0 20px;
	}
	h2.subtitle{
		font-size: 1.6rem;
	}
	h2.subtitle::before,
	h2.subtitle::after {
		width: 25px;
	}
}
/* =====================================
フッター
======================================== */
.footer{
	background: #000;
	padding: 130px 50px;
}
.footer .copy{
	color: #FFF;
	text-align: center;
	font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
	.footer{
		padding: 70px 20px;
	}
	.footer .copy{
		font-size: 1.0rem;
	}
}