@charset "utf-8";
/* CSS Document */
.hamburger {
  background: #209CFF; /* background color */
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  position: fixed;
  top: 11px;
  right: 6px;
  z-index: 10000;
  padding: 12px;
  -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;
}

.hamburger__icon {
  position: relative;
  margin-top: 11px;
  margin-bottom: 0;
}

.hamburger__icon,
.hamburger__icon:before,
.hamburger__icon:after {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 50%;
  background-color: #fff !important;
  transition: background-color 0.4s, transform 0.4s;
}

.hamburger__icon:before,
.hamburger__icon:after {
  position: absolute;
  content: "";
}

.hamburger__icon:before {
  top: -7px;
}

.hamburger__icon:after {
  top: 7px;
}

.hamburger.active .hamburger__icon {
  background-color: transparent;
}

.hamburger.active .hamburger__icon:before,
.hamburger.active .hamburger__icon:after {
  background-color: #fff;
}

.hamburger.active .hamburger__icon:before {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger__icon:after {
  transform: translateY(-7px) rotate(-45deg);
}

.hamburger.active .hamburger__icon {
  width: 0;
}

.fat-nav {
  top: 0;
  left: 0;
  z-index: 9999;
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  background: #209CFF; /* background color */
  transition: transform 0.4s;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.fat-nav__wrapper {
  width: 100%;
  height: 100%;
}

#sp-global-nav {
  text-align: center;
  padding: 60px 0 0;
}

#sp-global-nav .menu_fat {
  width: 100%;
  clear: both;
}


#sp-global-nav .menu_fat>li{
	display:block
}
#sp-global-nav .menu_fat>li a{
	font-size:18px;
	width:100%;
	color:#fff;
	line-height:56px;
	display:block;
	text-align:left;
	background-size:16px;
	padding-left:36px;
	font-family:"游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
	background-image: url(../img/top/icon_fatnav.png);
	background-repeat: no-repeat;
	background-position: 12px 50%;
	text-decoration:none;
}
#sp-global-nav .menu_fat>li a:hover{
	text-decoration:none;
}
#sp-global-nav .menu_fat>li a#contact{
	background-color: #3AD37B; /* background color FEATURE */
}