@charset "utf-8";


@media only screen and (min-width: 1025px),print {


/*-------------------------------------
	header パターン1　PC
-------------------------------------*/
.header {
	width: 100%;
	z-index:999;
	position:fixed;
	background:#fff;
}

header #head{
	max-width: 1100px;
	margin: 0 auto;
	width: 100%;
}

header #head #logo{
	width: 22%;
	margin: 20px 0 20px;
	float: left;
}
header #head #logo img{
bottom: 0;
	max-height: 50px;
}


/*---------------------------*/

header .menu ul{
	width: 72%;
	float: right;
}
header .menu ul{
	min-height: 50px;
	margin: 30px auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content:flex-end;
	
}
header .menu ul li{
	flex: 0 0 auto;
	margin: 0 0 0 30px;
	list-style-type: none;
	text-align: center;
	color: #333;
	font-weight:bold;
	font-size: 18px;
	line-height: 1.4;
}

header .menu ul li a{
	display: block;
	color: #333;
	padding: 0 0 10px;
	margin: 0;
	position: relative;
	text-decoration: none;
}
header .menu ul li a::after {
	  position: absolute;
	  bottom: 0px;
	  left: 0;
	  content: '';
	  width: 100%;
	  height: 3px;
	  background:#E8D7AA;
	  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.sub-menu {
	z-index:100;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top:0px;
	left: 0px;
    width: 100%;
	height: auto;
   /* -webkit-transition: all .2s ease;
    transition: all .2s ease;*/
	background-color: #fff;
	box-shadow: 0px 0px 5px #bbbbbb;
}

header .menu ul li.menu-item-has-children:hover ul.sub-menu {
	visibility: visible;
	opacity: 1;
	top: 43px;
	width: 180px;
	left: 0;
	background-color: #fff;
	display: block;
	box-shadow: 0 0 2px #bbbbbb;
}

header .menu ul li.menu-item-has-children ul.sub-menu li{
	margin: 0;
	border-left: none;
}


header .menu ul li.menu-item-has-children ul.sub-menu 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: #002B51;
	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;
}	
	
#nav-drawer input,
#nav-drawer label,
#nav-drawer p{
display: none;
}

}





/*-------------------------------------
	header パターン1　SP
-------------------------------------*/

@media screen and (max-width:1024px){


.header{
	width: 100%;
	background: rgba(255,255,255,0.9);
	z-index: 999;
	position: fixed;
	height:70px;
}

header #head{
	width: 96%;
	margin: 0 2%;
}

header #head #logo{
	width: calc(100% - 130px);
	display: block;
	float: left;
}
header #head #logo img{
	height: auto;
	margin: 10px 0 0 0px;
	display: inherit;
	max-height: 50px;
	object-fit: contain;
}

/*--- メニュー ---*/


#nav-drawer {
  position: relative;
  float: left;
  margin: 20px 0px 0px 80px;
 
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}
/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 25px;
  height: 36px;
  vertical-align: middle;
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 2px;/*線の太さ*/
  width: 35px;/*長さ*/
  background: #000;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -10px;
}
#nav-open span:after {
  bottom: -20px;
}
/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 999;
  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(255,255,255,0.15);
}

	
	header .menu .logo{width: 70%;
	margin: 15px auto 10px auto;}	
	
header .menu ul li {border-bottom: 1px solid #E8D7AA;
	
}
header .menu ul li a {line-height: 50px;
	background-image:url("../image/common/link01.png");
	background-repeat: no-repeat;
	background-position: 15px center;
	background-size: auto 10px;
	display: block;
	color:#886E4A;
	font-size: 18px;
	font-weight: bold;
	padding: 0px 10px 0px 30px;
}
header .menu ul li span {
	font-size: 14px;
	margin-left: 15px;
}


header .menu ul li ul li a {
	line-height: 24px;
	border-bottom: 1px solid #DDDDDD;
	display: block;
	color:#886E4A;
	padding: 13px 10px 13px 30px;
	background-image:url("../image/common/link01.png");
	background-repeat: no-repeat;
	background-position: 15px center;
	background-size: auto 10px;
	background-color: #ddd;
	font-size: 17px;
}	

	
	header .menu ul li.line a,
	header .menu ul li.insta a{background-image:url("../image/common/link02.png");
		background-repeat: no-repeat;
	background-position: 15px center;
	background-size: auto 10px;
	color: #fff;}
	
	header .menu ul li.line{background-color: #06C655;}
	
	header .menu ul li.insta{
background: linear-gradient(274deg, rgba(217,0,80,1) 0%, rgba(195,0,146,1) 100%);}
	

	
.guide_menu{
	position: fixed;
	z-index: 100;
	bottom: 0;
	left:1%;
	display: block;
	width: 98%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
}
.guide_menu figure{margin: 0 auto!important;}
.guide_menu figure img{
	max-width: 400px;
	width: 100%;
	height: auto;
	max-height: 100px!important;
	margin: 0 auto;
	display: block;
}




}
