.hamburger {
  width: 56px;
  height: 56px;
  position: fixed;
  top: 32px;
  right: 32px;
  z-index: 10000;
  padding:18px 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec008c 0%, #5e2590 100%);
    cursor: pointer;
    transition: all .3s;
    box-shadow:0 4px 14px rgba(236, 0, 140, .22);
    
}
a.hamburger{color: #fff;}
.hamburger.active {
  background: none !important; /* グラデーション背景を消去 */
  box-shadow: none !important;  /* 外側のシャドウを消去 */
}
.hamburger__icon {
    position: relative;
    margin-top: 8px;
    margin-bottom: 0px;
	background-color: transparent;
}

.hamburger__icon, .hamburger__icon:before {
    width: 26px;
    height: 2px;
    -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;
    transition-duration: .4s
}
.hamburger__icon:before {background-color: #fff;left: 0px;}
.hamburger__icon:after {
    width: 20px;
    height: 2px;
	left: 0px;
    background-color: #fff;
    -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;
    transition-duration: .4s
}
.hamburger__icon:after, .hamburger__icon:before {
    position: absolute;
    content: ""
}
.h_f1{fletter-spacing: 0.08em;margin-top: 12px;white-space: nowrap;font-size: 11px;color: #fff;}
.hamburger__icon:before {top: -5px}
.hamburger__icon:after {top: 5px}
.hamburger.active .hamburger__icon {background-color: transparent}

.hamburger.active .hamburger__icon:after, .hamburger.active .hamburger__icon:before {background-color: #fff;}
.hamburger.active .hamburger__icon:before {
	 width: 28px;
  -moz-transform: translateY(5px) rotate(45deg);
  -ms-transform: translateY(5px) rotate(45deg);
  -webkit-transform: translateY(5px) rotate(45deg);
  transform: translateY(5px) rotate(45deg);
     background-color: #fff;
}
.hamburger.active .hamburger__icon:after {
	 width: 28px;
  -moz-transform: translateY(-6px) rotate(-45deg);
  -ms-transform: translateY(-5px) rotate(-45deg);
  -webkit-transform: translateY(-5px) rotate(-45deg);
  transform: translateY(-5px) rotate(-45deg);
    background-color: #fff;
}

.fat-nav {
  z-index: 9999;
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d672bd 0%, #5e2590 70%, #3D2054 100%);
  -moz-transform: scale(1.0);
  -ms-transform: scale(1.0);
  -webkit-transform: scale(1.0);
  transform: scale(1.0);
  -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;
}

@media only screen and (max-width: 900px) {
    .hamburger {width: 40px;height: 40px;top: 20px;right: 24px;padding:14px 10px;}
    .hamburger__icon {margin-top: 4px;}
    .hamburger__icon, .hamburger__icon:before {width: 20px;height: 1px;}
    .hamburger__icon:after {width: 14px;height: 1px;}
    .hamburger.active .hamburger__icon:before {width: 20px;background-color: #fff;transform: translateY(5px) rotate(45deg);}
    .hamburger.active .hamburger__icon:after {width: 20px;background-color: #fff;transform: translateY(-5px) rotate(-45deg);}

}