.hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 998;
  -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_LINE_COLOR: #000;
  --HAMBURGER_LINE_PS: 5px;
}

.hamburger__icon {
  position: relative;
}
.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
  display: block;
  width: 30px;
  height: 1px;
  background-color: transparent;
  -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 .hamburger__icon:before{
	width: 100% !important;
	background: var(--HAMBURGER_LINE_COLOR);
}
.hamburger .hamburger__icon:after {
	width: 100% !important;
	background: var(--HAMBURGER_LINE_COLOR);
}
.hamburger__icon:before, .hamburger__icon:after {
  position: absolute;
  content: "";
}
.hamburger__icon:before {
  top: calc(0px - var(--HAMBURGER_LINE_PS));
}
.hamburger__icon:after {
  top: var(--HAMBURGER_LINE_PS);
}
.hamburger.active .hamburger__icon {
  background-color: transparent;
}
.hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
  background-color: var(--HAMBURGER_LINE_COLOR);
}
.hamburger.active .hamburger__icon:before {
  transform: translateY(var(--HAMBURGER_LINE_PS)) rotate(45deg);
  background-color: var(--HAMBURGER_LINE_COLOR);
}
.hamburger.active .hamburger__icon:after {
  transform: translateY(calc(0px - var(--HAMBURGER_LINE_PS))) rotate(-45deg);
  background-color: var(--HAMBURGER_LINE_COLOR);
}
.fat-nav {
  top: 0;
  right: 0;
  z-index: 9999;
  position: fixed;
  display: none;
  background: var(--YELLOW01);  
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(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 {
	margin: 0 auto;
 height: 100%;
 max-width: 1100px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
.fat-nav.active {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.fat-nav ul li a {
	display: block;
  border-top: 1px dashed var(--BLACK);
  text-align: center;
  padding: 10px;
  font-size: clamp(14px, 1.5vw, 16px);
}
.fat-nav ul li:last-child a{
  border-bottom: 1px dashed var(--BLACK);
}
@media screen and (min-width: 768px){
	.hamburger {
	  width: 80px;
	  height: 80px;
	  padding: 10px 10px;
	  background: #FFF500;
	  right: 0;
	}
	.fat-nav {
	  width: 50%;
	}
	.fat-nav__wrapper {
	  padding: 30px;
  }
}
@media screen and (max-width: 767px){
	.hamburger {
	  width: 54px;
   height: 44px;
   right: 3%;
	}
	.fat-nav {
		width: 100%;
	  height: auto;
	}
	.fat-nav__wrapper {
	  padding: 45px 30px;
   transform: translateY(0) !important;
  }
	a.hamburger.active {
    background: #FFF500;
	}
}
