@media screen and (max-width:768px) {
	
/*------------------------------------------------------------
header
------------------------------------------------------------*/

header {
	overflow:inherit;
	padding: 10px;
	height: 70px;
}
header .logo {
	padding-top: 10px;
}
.hamburger {
	display: block !important;
}
.hamburger:after {
    content: 'MENU';
    font-size: 94%;
    top: 36px;
    position: absolute;
	  color: #9AD9DA;
}
/*	ココマデ*/
	

.hamburger {
  display: block;
  width: 50px;
  height: 40px;
  position: fixed;
  top: 5px;
  right: 20px;
  z-index: 10000;
  padding: 10px;
  -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;
  color: #000;
}
}
@media screen and (max-width:480px) {
.hamburger {
  display: block;
  width: 50px;
  height: 40px;
  position: fixed;
  top: 10px;
  right: 12px;
  z-index: 10000;
  padding: 10px;
  -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;
  color: #000;
  }
}
.hamburger__icon {
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
}
.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
  display: block;
  width: 40px;
  height: 4px;
  background-color: #9AD9DA;
  -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: -10px;
}
.hamburger__icon:after {
  top: 10px;
}
.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 {
  top: -8px;
  -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 {
  top: 8px;
  -moz-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  -webkit-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

.fat-nav {
  top: 0;
  left: 0;
  z-index: 9999;
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(154, 217, 218, 0.9);
  -moz-transform: scale(1.4);
  -ms-transform: scale(1.4);
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  -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% !important;
  display: table;
  table-layout: fixed;
}
.fat-nav.active {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.fat-nav ul {
	    display: inherit;
    margin: 0 30%;
    padding: 30px 0 0 0;
}
.fat-nav li,.fat-nav #sp-brand-list li{
  list-style-type: none;
/*  text-align: center;*/
  padding: 5px;
}
.fat-nav li, .fat-nav li a {
  color: #fff;
  font-size: 17px;
/*  font-weight: bold;*/
  line-height: 2em;
}
.fat-nav li a {
  text-decoration: none;
}

.fat-nav ul#sp-brand-list{
		padding: 0;
    display: inherit;
    border-left: 1px dashed #fff;
    margin:0 0 0 8%;
}
.fat-nav #sp-brand-list li{
	text-align:left;
}


@media screen and (max-width:480px) {
}