@charset "utf-8";


@media only screen and (min-width: 900px),print {


/*-------------------------------------
	header パターン1　PC
-------------------------------------*/
	
.sticky {
	position:sticky;
	top:0; left:0;
	z-index:9999;
	background: rgba(255,255,255,0.8);
	padding: 15px 0;}	
	
.header {
	width: 100%;
	background: rgba(255,255,255,0.8);
	box-sizing: border-box;
	position: relative;
}

header #head{
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	
}

header #head #logo{
	width: 29.8%;
	margin: 5px 0 0;
	float: left;}
	
	header #head #logo h1{color: #333;
	font-size: 14px;}	
	
header #head #logo img{
bottom: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: 300px;
	
}
header #head .headtel{
	width: 60%;
	position: relative;
	float: right;}
	
	
header #head .headtel ul{display: flex;
	float: right;}	
	


header #head .headtel ul.icon li img{width: 50px;}
	
	header #head .headtel ul.icon li a{display: block;
	padding:10px 20px;}	

	header #head .headtel ul.icon li.mail a{background-color:#FFA600;}	
header #head .headtel ul.icon li.line a{background-color: #4DAE30;}	
	
header #head .headtel ul li.tel a{font-family:Arial, Helvetica, "sans-serif";
  font-optical-sizing: auto;
  font-weight:bold;
  font-style: normal;
font-size:2.5em;}

header #head .headtel ul li.tel a{color:#846320;
text-decoration: none;
background: url("../image/common/tel.png") no-repeat left center;
background-size: auto 0.8em;
padding-left:1.25em;}	
	
/*---------------------------*/


	
ul.menu{
	width: 100%;
	max-width: 1200px;
	
	margin: 0px auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content:space-around;
	
}
ul.menu li{
	flex: 0 0 auto;
	margin: 0 0 0 10px;
	list-style-type: none;
}
ul.menu li:last-child{
	
}
ul.menu li a{
	display: block;
	text-align: center;
font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
	color:#704F0D;
	font-size: 19px;
	padding: 0 0 10px;
	margin: 0;
	line-height: 1.6;
	position: relative;
	text-decoration: none;
	min-height: 30px;

}
	ul.menu li a:hover{opacity: 0.7;}
	
#nav-drawer input,
#nav-drawer label,
#nav-drawer p{
display: none;
}

}





/*-------------------------------------
	header パターン1　SP
-------------------------------------*/

@media screen and (max-width:899px){


.header{
	width: 100%;
background: rgba(255,255,255,0.8);
	z-index: 99999;
	position:sticky;
	top:0; left:0;
	min-height: 60px!important;
}

header #head{
	width: 96%;
	margin: 0 2%;
}
	header #head #logo h1{font-size: 14px;
	color: #fff;
	display: none;}
header #head #logo{
	width: calc(100% - 110px);
	display: block;
	float: left;
	margin-right: 10px;
}
header #head #logo img{
	height: auto;
	margin: 8px 0 0 0px;
	/*	margin: 8px calc(17% - 40px);*/
	display: inherit;
	max-height: 40px;
	/*width: 90%;*/
	object-fit: contain;
}


/*--- メニュー ---*/

nav#menu ul li a:hover{
	color:#FFFFFF;
}
#nav-drawer {
  position: relative;
  float:right;
  margin: 5px 0px 0px 5px;
  padding: 5px 3px 0px 3px;
  /*border: 1px solid #fff;*/
  border-radius: 0px;
	/*background: #94BE07;*/
}
#nav-drawer p {
	font-size: 10px;
	font-weight: bold;
	color: #fff;
	margin:-2px 0 0 0;
	text-align: center;
}
/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}
/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 20px;
	padding:7px 0;
  margin-left: 4px;
  vertical-align: middle;
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 2px;/*線の太さ*/
  width: 26px;/*長さ*/
  border-radius: 0px;
  background:#F98500;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -17px;
}
/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}
/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  width:85%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 350px;/*最大幅（調整してください）*/
  height: 100%;
  background: #fff;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
}
/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}
#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

ul.menu li {border-bottom: 1px solid #ccc;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 800;
	
}
ul.menu li a {line-height: 50px;
	background-image:url("../image/common/list01.png");
	background-repeat: no-repeat;
	background-position: 15px center;
	background-size: auto 10px;
	display: block;
	color:#6B4B00;
	font-size: 18px;
	padding: 0px 10px 0px 30px;
}


    #sp_btm {
        width: 100%;
        position: fixed;
        bottom: 0;
        background-color: #fff;
        min-height: 50px;
		z-index: 1000;
	padding: 5px;}

	#sp_btm ul{display: flex;
	align-content: center;}
	#sp_btm ul li{width: 49%;
	margin: 0;}
	#sp_btm ul li.tel a{background: #F98500;
	color: #fff;}
	
}
