.hamburger {
  display: block;
  width: 37px;
  height: 30px;
  right: 5%;
  position: fixed;
  top: 44px;
  z-index: 99999;
  -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: #fff;
}
.hamburger.small{
	top:8px;
	position: fixed;
}
.hamburger__icon {
  position: relative;
  margin-top: 12px;
}
.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #8abdc7;
  -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;
}
@media screen and (min-width:768px) { 
	.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after{right:0%;}
}
@media screen and (max-width:767px) { 
	.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after{right:0%;}
}
.hamburger .hamburger__icon:before{
	width: 36px;
}
.hamburger .hamburger__icon:after {
	width: 24px;
}

@media screen and (min-width:1021px) { 
	.hamburger{right:4.5%;}
}
@media screen and (min-width:768px) and (max-width:1020px) {
	.hamburger{right:2%;}
}
@media screen and (max-width:767px) { 
	.hamburger{right:2%;top:2%;}
	.hamburger.small{top:22px;}
	.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
  width: 27px;
  }
  .hamburger .hamburger__icon:before{
	width: 31px;
}
.hamburger .hamburger__icon:after {
	width: 21px;
}
}
.hamburger.active .hamburger__icon{
	width: 36px !important;
}
.hamburger.active .hamburger__icon:before{
	width: 36px !important;
}
.hamburger.active .hamburger__icon:after {
	width: 36px !important;
}
.hamburger__icon:before, .hamburger__icon:after {
  position: absolute;
  content: "";
}
.hamburger__icon:before {
  top: -9px;
}
.hamburger__icon:after {
  top: 9px;
}
.hamburger.active .hamburger__icon {
  background-color: transparent !important;
}
.hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
   background-color: #B2C1C4 !important;
}
.hamburger.active .hamburger__icon:before {
  -moz-transform: translateY(9px) rotate(45deg);
  -ms-transform: translateY(9px) rotate(45deg);
  -webkit-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active .hamburger__icon:after {
  -moz-transform: translateY(-9px) rotate(-45deg);
  -ms-transform: translateY(-9px) rotate(-45deg);
  -webkit-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
}

.fat-nav {
  top: 0;
  left: 0;
  z-index: 9999;
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  -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%;
  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 {
  vertical-align: middle;
  margin: 0;
  padding: 0;
  font-family: "Sawarabi Mincho";
	width: 90%;
	margin: 0 auto;
}
.fat-nav li {
  list-style-type: none;
  padding: 10px;
  font-size: 1em;
  margin-top: 10px;
  border-bottom: 1px dashed #888;
}
.fat-nav__wrapper {
  background: #fff;
	width: 100%;
	height: 100%;
	max-width: 800px;
	margin: 0 auto;
	display: table;
	table-layout: fixed;
	padding: 40px 5% 10px!important;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
.nav_title{
	width: 90%;
	margin: 30px auto;
}
.nav_photo{
	width: 90%;
	margin: 30px auto;
	display: flex;
	justify-content: space-between;
}
.nav_photo img{
	width: 48%;
}
.nav_flex{
	display: flex;
}
.fatnav_icon {
	width: 8%;
	margin-left: 6px;
}