@charset "utf-8";


@media only screen and (min-width: 900px),print {


/*-------------------------------------
	header パターン1　PC
-------------------------------------*/
.header {
	width: 100%;
	z-index:999;
	position:sticky;
    left:0;
    top: 0;
	background: rgba(255,255,255,0.7);
}

header .head{width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	
  
}

header .head #logo{
	margin: 10px 0 10px;
    width: 33%;
    float: left;
}
header .head #logo figure{margin: 0;
    padding: 0;
}
    
header .head .right_box{
    float: right;
    margin: 40px 0 0;
} 
    
   

    .head .right_box .tel a{color: #6E5B4C;
    font-size: 30px;
    background: url("../image/common/tel.png") no-repeat left center;
    background-size: auto 25px;
    padding: 0 0 0 35px;
     font-family: "Noto Serif JP", serif;
    font-weight: 600;
    margin: 0 0 0;
   line-height: 30px;}    
    
    header .head:after{content:"";
    display: block;
    clear: both;}    
    
    .head .right_box .wp-block-image{width: 30px;
    margin-left: 20px;}
    
/*---------------------------*/

#spmenu{border-top: 1px solid #CBBFB5;}
    
    
header .menu ul{
	min-height: 55px;
	margin: 15px auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    max-width: 1100px;
	
}
header .menu ul li{
	flex: 0 0 auto;
	margin: 0 0 0 10px;
	list-style-type: none;

}
header .menu ul li:last-child{
	
}
header .menu ul li a{
	display: block;
	text-align: center;
	font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight:600;
  font-style: normal;
	color: #6E5B4C;
	font-size: 20px;
	padding: 0 0 0;
	margin: 0;
	line-height: 1.6;
	position: relative;
	text-decoration: none;

}
header .menu ul li a::after {
	  position: absolute;
	  bottom: 0px;
	  left: 0;
	  content: '';
	  width: 100%;
	  height: 2px;
	  background:#CD8298;
	  transform: scale(0,1);
	  transform-origin: center top;
	  transition: transform .3s;
}
header .menu ul li a:hover::after {
	transform: scale(1,1);
}





/* 以下、ドロップダウン */

header .menu ul li.menu-item-has-children {
    position: relative;
}

header .menu ul li.menu-item-has-children > ul {
	z-index:100;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top:0px;
	left: 0px;
    width: 100%;
	height: auto;
 
	background-color: #fff;
	box-shadow: 0px 0px 5px #bbbbbb;
}

header .menu ul li.menu-item-has-children:hover ul {
	visibility: visible;
	opacity: 1;
	top: 20px;
	width: 180px;
	left: 0;
	background-color: #fff;
	display: block;
	box-shadow: 0 0 2px #bbbbbb;
}

header .menu ul li.menu-item-has-children ul li{
	margin: 0;
	border-left: none;
}


header .menu ul li.menu-item-has-children ul li a{
	color: #000;
	background: #fff;
	font-size: 15px;
	line-height: 20px;
	padding: 10px 5px;
	box-sizing: border-box;
	text-align: left;
	border-bottom: 1px dotted #666;
	display: block;
	width: 100%;
	text-shadow: none;
}
	
	header .menu ul li.menu-item-has-children ul li a:hover{background: #6E5B4C;
	color: #fff;}	
	
	header .menu ul li.menu-item-has-children ul li:last-of-type a{border: none;}
	
header .menu ul li.menu-item-has-children ul li a::after {
	  content:none;
}	
    
    header .menu ul li.none{display: none;}    
	
#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,1);
	z-index: 9999;
position:sticky;
    top:0;
    left:0;
}

header .head{
	width: 96%;
	margin: 0 2%;
}

header .head #logo{
	width:40%;
	display: block;
	float: left;
}
    
    header .head #logo figure{margin: 8px auto 0 0px;
    display: inherit;}    
    
header .head #logo img{
	height: auto;
	
	max-height: 70px;
	object-fit: contain;
}
    

/*--- メニュー ---*/

header nav.menu ul li a:hover{
	background-image: url(../image/texture/texture_wd50.png);
	color:#FFFFFF;
}
#nav-drawer {
  position: relative;
  float: right;
    
  margin: 5px 0px 0px 20px;
  padding: 5px 3px 0px 3px;
  border: 1px solid #6E5B4C;
  border-radius: 5px;
}
#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: 35px;
  height: 25px;
	padding:8px 0;
  margin-left: 8px;
  vertical-align: middle;
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 2px;/*線の太さ*/
  width: 26px;/*長さ*/
  border-radius: 3px;
  background:#6E5B4C;
  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:#FEF3ED;/*背景色*/
  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);
}

header .menu ul li {border-bottom: 1px solid #fff;
	
}
header .menu ul li a {line-height: 50px;
	background-image:url("../image/common/list01.png");
	background-repeat: no-repeat;
	background-position: 15px center;
	background-size: auto 8px;
	display: block;
	color:#6E5B4C;
	font-size: 18px;
	padding: 0px 10px 0px 30px;
     font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
}

    header .menu ul li ul li{border-bottom: 1px dotted #ddd;}
header .menu ul li ul li a {
	line-height: 24px;
	
	display: block;
	color: #6E5B4C;
	padding: 13px 10px 13px 30px;
	background-image:url("../image/common/list01.png");
	background-repeat: no-repeat;
	background-position: 15px center;
	background-size: auto 10px;
	background-color: #fff;
	font-size: 17px;
}	
    header .menu ul li ul li:last-of-type{border: none;}





}
