/* CSS Document */




/*============================================================================

	header

============================================================================*/
header {
	position:relative;
	width:100%;
	height:140px;
	z-index:999;
}
header .inner{
	position:relative;
	width: 90%;
	max-width:1280px;
	margin:auto;
	font-family: 'Noto Serif JP', serif;
}

/*------------------------------ キャッチ ------------------------------*/
header p {
	position: relative;
	top: 15px;
	font-size: 12px;
}
/*------------------------------ ロゴ ------------------------------*/
header h1{
	position:relative;
	top:35px;
}

/*------------------------------ 電話番号 ------------------------------*/
#header_info {
	position: absolute;
	top: 20px;
	right: 0;
	display: flex;
}
#header_info dl {
	position:relative;
	display: flex;
}
#header_info dl dt {
	position:absolute;
	top: 11px;
	left: -175px;
	padding: 5px 15px;
	background: #e9e9e9;
	font-size: 11px;
}
#header_info dl dt::after {
	position: absolute;
	content: "";
	right: -8px;
	top: 6px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 9px 0 9px 18px;
	border-color: transparent transparent transparent #e9e9e9;	
}
#header_info dl dd {
	position: relative;
	top: -4px;
	font-family: 'Oswald', sans-serif;
	font-size: 18px;
	letter-spacing: 2px;
	transition: 0.3s ease-out;
}
#header_info dl dd em {
	position: relative;
	top: 2px;
	font-size: 28px;
	color: #144d14;
	letter-spacing: 2.5px;
	transition: 0.3s ease-out;
}
#header_info dl dd a:hover {
	color: #777;
}
#header_info dl dd a:hover em {
	color: #73ab73;
}

/*------------------------------ お問い合わせ＊btn ------------------------------*/
#header_info p.header_btn {
	position: relative;
	top: 10px;
	margin-left: 25px;
}
#header_info p.header_btn a {
	padding: 12px 30px;
	background: #50412b;
	box-sizing: border-box;
	border: 1px solid #50412b;
	color: #FFF;
	font-family: 'Noto Serif JP', serif;
	font-size: 14px;
	letter-spacing: 2px;
}
#header_info p.header_btn a i {
	padding-right: 8px;
}
#header_info p.header_btn a:hover {
	background: #FFF;
	color: #50412b;
}





/*============================================================================

	nav

============================================================================*/
nav {
	position: absolute;
	top: 90px;
	right: 0;
}
nav li {
	position:relative;
	display: inline-block;
	padding: 0 20px 0 25px;
	text-align: center;
	border-left: 1px solid #ccc;
	font-family: 'Noto Serif JP', serif;
}
nav li a span{
	position:relative;
	display: block;
	font-size: 15px;
}
nav li:last-of-type {
	border-right: 1px solid #ccc;
}

/*------------------------------ ホバーのボーダー ------------------------------*/
nav li a span::before{
    position: absolute;
	left: 0;
	right:0;
	bottom: -10px;
	width:100%;
	height:2px;
	margin:auto;
	background-color: #2e6b2e;
	transition: 0.15s  ease-out;
	transform: scaleX(0);
	content: "";
	z-index: 1;
}
nav li a:hover span::before{
	transform: scaleX(1);
}




/*=======================　　ここからレスポンシブ＊Middle　その１　　========================*/
@media screen and (max-width:1180px) {
	
	/*------------------------------ キャッチ ------------------------------*/
	header p {
		font-size: 10px;
	}
	
	/*------------------------------ 電話番号 ------------------------------*/
	#header_info dl dt {
		top: 13px;
		left: -155px;
		padding: 5px 10px;
		font-size: 10px;
	}
	#header_info dl dd {
		top: 0px;
		font-size: 16px;
	}
	#header_info dl dd em {
		top: 2px;
		font-size: 26px;
	}

	/*------------------------------ お問い合わせ＊btn ------------------------------*/
	#header_info p.header_btn {
		top: 10px;
		margin-left: 20px;
	}
	#header_info p.header_btn a {
		padding: 12px 20px;
	}
	#header_info p.header_btn a i {
		padding-right: 5px;
	}
	
}



/*=======================　　ここからレスポンシブ＊Middle　その２　　========================*/
@media screen and (max-width:1010px) {
		
	/*------------------------------ キャッチ ------------------------------*/
	header p {
		top: 20px;
	}
	
	/*------------------------------ 電話番号 ------------------------------*/
	#header_info dl dt {
		display: none;
	}
	
	/*------------------------------ nav ------------------------------*/
	nav li {
		padding: 0 15px 0 20px;
	}
	nav li a span {
		font-size: 13px;
	}

}



/*=======================　　ここからレスポンシブ＊Middle　その３　　========================*/
@media screen and (max-width:880px) {
	
	header {
		height: 100px;
	}
	header .inner {
		width: 99%;	
	}

	/*------------------------------ ロゴ ------------------------------*/
	header h1{
		position:relative;
		top:30px;
	}
	header h1 img {
		width: 220px;
	}
	
	/*------------------------------ キャッチ ------------------------------*/
	header p.catch {
		display: none;
	}
	
	/*------------------------------ 電話メール ------------------------------*/	
	#header_info {
		top: 10px;
		
	}
	
	/*------------------------------ 電話番号 ------------------------------*/
	#header_info dl dt {
		display: none;
	}
	
	/*------------------------------ nav ------------------------------*/
	nav {
		top: 60px;
	}
	nav li {
		padding: 0 20px 0 0;
		border-left: none;
	}
	nav li a span {
		font-size: 12px;
	}
	nav li:last-of-type {
		border-right: none;
	}

}



/*=======================　　ここからレスポンシブ＊SP　　========================*/
@media screen and (max-width:640px) {

	
	

	/*------------------------------ header総合 ------------------------------*/
	header {
		display:none;
	}

	/*------------------------------ nav ------------------------------*/
	nav{
		display:none;
	}
	.sp_navi {
		position:fixed;
		top:0;
		left:0;
		width:100%;
		height:62px;
		z-index: 9998;
	}
	.sp_navi h1{
		position: absolute;
		display: table !important;
		padding-left:5%;
		height: 100%;
	}
	.sp_navi h1 img{
		display:block;
		width: 170px !important;
	}
	.sp_navi h1 a{
		display: table-cell;
		vertical-align:middle;
	}
	.sp_navi dl{
	}
	.sp_navi dl dt {
		height: 62px;
		cursor:pointer;
		background-color: rgba(255,255,255,1.85);
	}
	.sp_navi dl dd {
		display:none;
		background-color: rgba(238,236,224,1.85);
	}
	.sp_navi ul{
		padding:4% 2% 4% 8%;
	}
	.sp_navi ul li {
		display: table;
		width: 50% ;
		float: left;
	}
	.sp_navi ul li i{
		margin-right: 4%;
		color: #ba9275;
		font-size: 11px;
		vertical-align: middle;
		position: relative;
		top: -1px;
		left: -6px;
	}
	.sp_navi ul li a {
		display:table-cell;
		vertical-align:middle;
		width:100%;
		height: 45px;
		color:#333;
		font-size: 13px;
	}

	/*ボタンの動き*/
	.sp_navi dt a {
		display: block;
		width: 42px;
		height:42px;
		position: absolute;
		top:9px;
		right: 10px;
		z-index: 9999999;
	}
	.sp_navi dt a span {
		display: block;
		background: #666;
		width: 24px;
		height: 2px;
		position: absolute;
		left: 9px;
		transition: all 0.4s;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
	}
	.sp_navi dt a span:first-child {
		top: 12px;
	}
	.sp_navi dt a span:nth-child(2) {
		margin-top: -1px;
		top: 50%;
	}
	.sp_navi dt a span:last-child {
		bottom: 12px;
	}
	.sp_navi dt a.active span:first-child {
		-webkit-transform: translateY(8px) rotate(45deg);
		-moz-transform: translateY(8px) rotate(45deg);
		-ms-transform: translateY(8px) rotate(45deg);
		transform: translateY(8px) rotate(45deg);
	}
	.sp_navi dt a.active span:nth-child(2) {
		opacity: 0;
	}
	.sp_navi dt a.active span:last-child {
		-webkit-transform: translateY(-8px) rotate(-45deg);
		-moz-transform: translateY(-8px) rotate(-45deg);
		-ms-transform: translateY(-8px) rotate(-45deg);
		transform: translateY(-8px) rotate(-45deg);
	}


}






