.hamburger {
  display: none;
}

.fat-nav {
  display: none;
}

@media screen and (max-width: 1250px) {
.hamburger {
  display: block;
  width: 56px;
  height: 55px;
  position: fixed;
  top: 12px;
  right: 10px;
  z-index: 18000;
  -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;
  background-color: #a4c9ef;
  padding-left: 17.5px;
    padding-top: 14px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}


.hamburger__icon {
  position: relative;
  margin-top: 13px;
  margin-bottom: 11px;
}
.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
  display: block;
  width: 23px;
  height: 1px;
  background-color: #1a1b1d;
  -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;
}

.menu_hamburger {
  display: block;
 	color: #000;
  -moz-transition-property:color, -moz-transform;
  -o-transition-property:color, -o-transform;
  -webkit-transition-property: color, -webkit-transform;
  transition-property: 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: -8px;
        }
.hamburger__icon:after {
  top: 8px;
}

.hamburger__icon_color,.hamburger__icon_color:before,.hamburger__icon_color:after {
	background-color: #1a1b1d;
}

.hamburger.active .hamburger__icon {
  background-color: transparent;
}
.hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
  background-color: #1a1b1d;
}
.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(-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: #f0eee4;
  -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 {
  	width: 100%;
  	height: 100vh;
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	background-color: #1a1b1d;
}

.fat-nav.active {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.full-menu {
    width: 95%;
    flex-direction: column;
    align-items: flex-start;
}

.menu-area {
	display: flex;
 	flex-direction: column;
 	justify-content: center;
	width: 60%;
	margin-right: auto;
	margin-left: auto;
	padding-left: 0;
}

.menu-area ul {
  	width: 100%;
	margin: 0;
	padding: 0;
  	border-top: 1px solid #a4c9ef;
}


.menu-area li {
	font-size: 1.2em;
	line-height: 1.8em;
  	list-style-type: none;
  	padding: 15px 5px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	position: relative;
	border-bottom: 1px solid #a4c9ef;
}

.menu-area li .en {
	width: 50%;
	text-align: left;
	position: relative;
}

.menu-area li .ja {
	width: 50%;
	text-align: right;
    font-size: 0.7em;
}

.menu-area li a {
  display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.menu-area li, .menu-area li a {
 color: #a4c9ef;
}

.menu-area li a {
  text-decoration: none;
}

.menu-area li a:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.menu_nolink {
	pointer-events: none;
	color: rgba(245, 165, 161, 0.85) !important;
}
}


@media screen and (min-width: 768px) {
.menu-area {
    width: 80%;
}
}

@media screen and (max-width: 640px) {
.hamburger {
  top: 4px;
  right: 0;
}

.fat-nav__wrapper {
    align-items: flex-start;
}

.menu-area {
    width: 90%;
	margin-top: 120px;
}

.menu-area li {
    font-size: 0.95em;
	line-height: 1.0em;
	padding-top: 18px;
		padding-bottom: 18px;
}
}



