.hamburger {
	display: block;
	width: 50px;
	height: 50px;
	position: fixed;
	top: 35px;
	right: 0vw;
	z-index: 10001;
	padding: 14px 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;
	border-radius: 5px;
}
.hamburger__icon {
	position: relative;
	margin-top: 7px;
	margin-bottom: 7px;
}
.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
	display: block;
	width: 25px;
	height: 3px;
	background-color: #666;
	-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: -9px;
}
.hamburger__icon:after {
	top: 9px;
}
.hamburger.active .hamburger__icon {
	background-color: transparent;
}
/*
.hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
  background-color: #666;
}
*/
.hamburger.active .hamburger__icon:before {
	top: -7px;
}
.hamburger.active .hamburger__icon:after {
	top: 7px;
}
.hamburger.active .hamburger__icon:before {
	-moz-transform: translateY(7px) rotate(45deg);
	-ms-transform: translateY(7px) rotate(45deg);
	-webkit-transform: translateY(7px) rotate(45deg);
	transform: translateY(7px) rotate(45deg);
}
.hamburger.active .hamburger__icon:after {
	-moz-transform: translateY(-7px) rotate(-45deg);
	-ms-transform: translateY(-7px) rotate(-45deg);
	-webkit-transform: translateY(-7px) rotate(-45deg);
	transform: translateY(-7px) rotate(-45deg);
}

.fat-nav {
	top: 0;
	left: 0;
	z-index: 9999;
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 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%;
/*	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 {
	width: 96%;
	height: calc(100% - 180px);
	overflow: auto;
	margin: 0 auto;
	padding-top: 105px;
}
.fat-nav li {
	padding: 5px;
	border-bottom: 1px solid #b3aa99;
}
.fat-nav li a {
	position: relative;
	display: block;
}
.fat-nav li a::after {
	position: absolute;
	top: calc(50% - 3px);
	right: 8px;
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1px solid #a7884e;
    border-top: 1px solid #a7884e;
    display: block;
    transform: rotate(45deg);
	text-align: right;
}
.fat-nav .tel {
	position: fixed;
	width: 100%;
	height: 70px;
	bottom: 0px;
	left: 0;
	background-color: rgba(0,0,0,0.7);
}
.fat-nav .tel a {
	display: block;
	width: 96%;
	color: #ffffff;
	margin: 0 auto;
	box-sizing: border-box;
	border: 2px solid #ffffff;
	border-radius: 5px;
}
.fat-nav .tel .btn {
	width: 82%;
	line-height: 1.2;
	float: left;
	margin-top: 8px;
}
.fat-nav .tel .btn .body {
	width: 80%;
	max-width: 12rem;
	margin: 0.2rem auto;
	background-image: url(../../images/icon_tel.png);
	background-size: 22px 41px;
	background-repeat: no-repeat;
	background-position: left center;
}
.fat-nav .tel .btn .body p:nth-of-type(1){
	text-indent: 2.2rem;
}
.fat-nav .tel .btn .body p:nth-of-type(2){
	font-size: 1.2rem;
	text-indent: 2rem;
}
.fat-nav .tel .move_top {
	width: 16%;
	line-height: 1;
	float: left;
	text-align: center;
	margin-top: 8px;
}
.fat-nav .tel .move_top a {
	padding: 0.5rem 0;
}
.fat-nav .tel .move_top span {
	display: block;
	font-size: 1rem;
}
.no-scroll {
	position: fixed;
	width: 100%;
	top: 0px;
}
