.hamburger {
  display: block;
  width: 44px;
  height: 40px;
  position: fixed;
  top: 53px;
  right: 4%;
  z-index: 10001;
  padding: 8px 7px;
  border-radius: 3px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
.hamburger.move {
  top: 15px !important;
  transition: .3s;
}
.hamburger::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #cb163f;
  transform: rotate(120deg);
}
.hamburger::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #1bc13e;
  transform: rotate(-120deg);
}
.hamburger__icon {
  position: relative;
  margin-top: 12px;
}
.hamburger:after{
}
.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #f4870d;
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-property: background-color, -o-transform;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.hamburger__icon:before, .hamburger__icon:after {
  position: absolute;
  content: "";
}
.hamburger__icon:before {
  top: -9px;
}
.hamburger__icon:after {
  top: 9px;
}
.hamburger.active .hamburger__icon {
  background-color: transparent;
}
.hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
  background-color: #f29d1e;
}
.hamburger.active .hamburger__icon:before {
  -moz-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active .hamburger__icon:after {
  -moz-transform: translateY(-10px) rotate(-45deg);
  -ms-transform: translateY(-10px) rotate(-45deg);
  -webkit-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
}
.fat-nav {
  top: 0;
  left: 0;
  z-index: 9998;
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  background: #F8F8F8;
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.fat-nav__wrapper {
  width: 100%;
  height: 100%;
  display: table;
  table-layout: fixed;
  padding:30px 5% 40px;
  -webkit-box-sizing: border-box;
         -moz-box-sizing: border-box;
           -o-box-sizing: border-box;
          -ms-box-sizing: border-box;
              box-sizing: border-box;
  z-index: 9998;
}
.fat-nav-logo{
	width: 35%;
	margin: 0 auto;
}
.fat-nav.active {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.fat-list{
	width: 90%;
	margin: 30px auto 0;
}
.fat-list li a {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.fat-list li a img {
    width: 30%;
}
.fat-list li a {
  text-decoration: none;
}
/* 追加分 */
.head-gourmet{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	background: #eee;
	border-radius: 3px;
  padding: 10px 4px;
}
.head-gourmet li{
	width: 40%;
}
.head-gourmet li a{
	margin-top: 0 !important;
}
.head-gourmet li img{
	width: 90% !important;
	display: block !important;
	margin: 0 auto !important;

}
.head-gourmet .head-gourmet-mgt{
	width: 75%;
	margin-top: 18px;
}
/* 追記 */
.fat-nav__wrapper{
	height: 100% !important;
	transform: translate(0,0) !important;
}