/*/////////////custom//////////////////*/

img{width:100%;}
 
/*ロゴの大きさを調整*/
#logo img {
  max-width:50%;
}
 
nav{
 width: 100%;
 height: 70px;
 position: relative;
 /* background: #F6F6F6; */
 z-index: 999;
 display: block !important;
 -webkit-transition: .3s ease-in-out;
 -o-transition: .3s ease-in-out;
 transition: .3s ease-in-out;
}
 
.drawer{
 display: flex;
 flex-direction: row;
 align-items: center;
 justify-content: space-between;
 position: relative;
 height: 70px;
 padding: 0 1em;
}
 
/*ナビゲーション部分*/
 
.menu ul li a {
  display:block;
  padding: 2em;
  color:#111314;
  text-decoration:none;
  font-family: Marion;
}
 
 
.menu ul li a:hover{
  background-color: rgba(167, 141, 89, 0.5);
  color:#fff;
}
 
 
.menu{
  text-align:center;
  margin-top: 30%;
  opacity: 0;
  display: none; 
}
 
/*OPEN時の動き*/
.menu.open {
 opacity: 1;
 display: block;
}
 
/*トグルボタンのスタイルを指定*/
.Toggle {
    display: block;
    position: absolute;    /* bodyに対しての絶対位置指定 */
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 3;
  right:15px;
}
 
.Toggle span {
    display: block;
    position: absolute;
    width: 30px;
    border-bottom: solid 1px #111314;
    -webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
    -moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
    transition: .35s ease-in-out;			/*変化の速度を指定*/

 
}
 /*各ボーダー少しずつずらす*/
.Toggle span:nth-child(1) {
    top:15px;
}
 .Toggle span:nth-child(2) {
    top: 25px;
}
 .Toggle span:nth-child(3) {
    top: 35px;
}
.Toggle.active span:nth-child(1) {
    top: 18px;
/* 1番目のspanをマイナス45度に */
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
 
/*----------------------------------ここからPCモニターの記述-----------*/
@media screen and (min-width: 600px) {
 
/*ロゴの大きさを調整*/
#logo img{max-width:250px;}	
	
nav{
 display: flex;
 flex-wrap: inherit !important;
 z-index: 2;
}
 
.Toggle{
 display: none;
}
.menu{
/* width: 100%; */
font-size:0.9em;
background-color: transparent;
margin: 37px 4% 0 0;
-webkit-transform: translateX(0);
transform: translateX(0);
opacity: 1;
display: block;
}
.menu ul{
 height: 70px;
 display: flex;
 flex-wrap: wrap;
 justify-content: flex-end;
 align-items: center;
}
.menu ul li a{
 padding: 0 1em;
 border-bottom: none;
}

.menu ul li a{
  color: #111314;
  font-family: Marion;
  }

.menu ul li a:hover{
background-color:transparent;
color:#111314;
}

.drawer{
height: auto;
}
}