@charset "utf-8";
/* CSS Document */
/* ------------------------------
    menu
------------------------------ */
#menu_wrap {
  position: relative;
  z-index: 1000;
    height: auto;
    background: none;
}
#menu_wrap .box_menu01{
    position: fixed;
    max-width: 768px;
    width: 101%;
    height: 70px;
    top: 0;
    margin-bottom: 0;
    z-index: 800;
    background-color: #fdf8f4;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}
#menu_wrap .box_menu01 .inner{
    display: flex;
    align-items: center;
    height: 70px;
}
#menu_wrap .box_menu01 .ti_site .txt{
  display: block;
  margin-bottom: 18px;
  font-size: 1.1rem;
  color: #252525;
}
#menu_wrap .box_menu01 .ti_site img{
  width: 247px;
}

#menu_wrap .box_menu02{
  background-color: #fdf8f4;
	    position: fixed;
    width: 300px;
    height: 100vh;
    top: 0;
    right: -100%;
    padding-bottom: 20%;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 500;
    transition: right 0.4s, transform 0.4s, opacity 0.4s;
    transform: translate(0);
    opacity: 0;
}
#menu_wrap .box_menu02 .box_gnav .list_gnav{
  background-color: #fff;
}
#menu_wrap .box_menu02 .gnav02 .list_gnav{
  border-top: 4px solid #00516d;
}
#menu_wrap .box_menu02 .gnav02 .list_gnav li{
  width: 100%;
}
#menu_wrap .box_menu02 .box_gnav .list_gnav li a{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: 100%;
}



  #menu_wrap .box_menu01 .ti_site{
    width: 54.5%;
  }
  #menu_wrap .box_menu01 .ti_site img{
    width: 100%;
  }
  #menu_wrap .btn_menu{
	  position: relative;
	  width: 60px;
    height: 58px;
    margin-left: 2%;
    background: #cd3f23;
	  border-radius: 0px 0px 0px 10px;
  }
  #menu_wrap .btn_menu span{
    position: absolute;
    display: block;
    width: 30px;
    height: 3px;
    left: 16px;
    background-color: #fff;
    transition: all 0.4s;
  }
  #menu_wrap .btn_menu span:nth-child(1){
    top: 16px;
  }
  #menu_wrap .btn_menu span:nth-child(2){
    top: 27px;
  }
  #menu_wrap .btn_menu span:nth-child(3){
    bottom: 17px;
  }
  #menu_wrap .btn_menu.active span:nth-of-type(1) {
      -webkit-transform: translateY(9px) rotate(145deg);
      transform: translateY(11px) rotate(45deg);
  }
  #menu_wrap .btn_menu.active span:nth-of-type(2) {
      left: 50%;
      opacity: 0;
      -webkit-animation: active-menu-bar02 .8s forwards;
      animation: active-menu-bar02 .8s forwards;
  }
  @-webkit-keyframes active-menu-bar02 {
      100% {
    height: 0;
      }
  }
  @keyframes active-menu-bar02 {
      100% {
    height: 0;
      }
  }
  #menu_wrap .btn_menu.active span:nth-of-type(3) {
      -webkit-transform: translateY(-7px) rotate(-45deg);
      transform: translateY(-11px) rotate(-45deg);
  }
  body.fixed{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
  }
  .overlay{
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgb(0, 0, 0);
    opacity: 0.302;
    z-index: 100;
  }
  #menu_wrap .box_menu02{

  }
  #menu_wrap .box_menu02.active{
	  right: 0;
    opacity: 1;
  }
  #menu_wrap .box_menu02 .inner{
    display: block;
    margin: 0;
    padding-top: 70px;
  }
  #menu_wrap .box_menu02 .btn_contact{
    display: block;
    width: auto;
    height: 50px;
    margin: 0 4.5% 4.5%;
    line-height: 48px;
    font-size: 1.6rem;
    color: #ff7752;
    background-color: #fff;
    border: 2px solid #ff7752;
    border-radius: 10px;
  }
  
  #menu_wrap .box_menu02 .box_gnav .ti_nav{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
  }

  #menu_wrap .box_menu02 .box_gnav .list_gnav li a{
    position: relative;
    justify-content: flex-start;
    padding-left: 6%;
  }
#menu_wrap .box_menu02 a{
	display: flex;
    padding: 1rem 2rem;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
}
  #menu_wrap .box_menu02 .menu--home a{
	 background-color: #c1140c;
	padding: 1.5rem 2rem;
    color: #fff;
    font-size: 16px;
}

  #menu_wrap .box_menu02 .menu--recipe a{
	 background-color: #f29106;
	padding: 1.5rem 2rem;
    color: #fff;
    font-size: 16px;
}

#menu_wrap .box_menu02 .menulist a{
	border-bottom: 2px solid #e8d9cd;
    font-size: 15px;
}
#menu_wrap .box_menu02 .menulist a i{
	color: #c1140c;
}
@media screen and (min-width: 767px){
	#menu_wrap .box_menu02 .menu--home a {font-size: 22px;}
	#menu_wrap .box_menu02 .menu--recipe a{font-size: 22px;}
	#menu_wrap .box_menu02{width: 500px;}
}