@charset "UTF-8";
/* CSS Document */



#mobile_menu {
	display: none;
}

@media only screen and (min-width: 641px) and (max-width: 919px) {
	
#pc_nav {
	display:none;
}

	#mobile_menu {
	display:block;
}
	
.top_logo {
		display: block;
	}
	
	.top_form {
		display: none;
	}
	
.top_logo_sp {
	display: block;
	width:92px;
	position: fixed;
	top: 3px;
	left: 3%;
	z-index: 9999;
}

.mobile_menu_bg {
	width: 100%;
	height: 60px;
	position: fixed;
	top: 0;
	background: #fff;
	box-shadow: 1px 1px 15px 1px rgba(0,0,0,0.2);
	z-index: 9999;
}


/* OUTER NAV */
nav {
	display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    background: none;
    text-align: center;
}
nav ul {
	width: 100%;
	margin: 0 auto;
    text-align: center;
}

nav ul li {
	width: 100%;
    display: inline-block;
    padding: 1em 3em;
    border-bottom: 2px solid #fff;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    -webkit-transition: all .2s linear 0s;
    -moz-transition: all .2s linear 0s;
    -o-transition: all .2s linear 0s;
    transition-property: all .2s linear 0s;
}
	

nav ul li a:hover {
    color: #34B484;
}
/* OPEN / CLOSE BTNS */
.menu-btn {
	width: 70px;
	height: 60px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    display: inline;
    font-size: 32px;
}
.menu-btn a {
    display: inline-block;
    text-decoration: none;
    /* safari hack */
}

/* OVERLAY */
.overlay {
    position: fixed;
    top: 0;
    z-index: 98;
    display: none;
    overflow: auto;
    width: 100%;
    height: 100%;
    background: rgba(121,106,86,0.9);
	z-index: 999;
}
.overlay .menu {
    margin: 10% auto;
    width: 80%;
}
.overlay .menu ul {
    margin: 0;
    padding: 0;
    width: 100%;
}
.overlay .menu ul li {
    padding: 20px 0;
    width:100%;
	margin: 0 auto;
    list-style: none;
    text-align: left;
    text-transform: uppercase;
	border-bottom: 1px solid #fff;
	margin-bottom: 20px;
	padding-bottom: 30px;
}
.overlay .menu ul li p {
    text-transform: capitalize;
    font-weight: bold;
    font-size: 16px;
	color: #fff;
}
	
.overlay .menu ul li p span {
    float: right;
}

/* Toggle Button */
#nav-toggle {
    display: block;
    position: absolute;
    right:16px;
    top: 18px;
    width: 21px;
    height: 30px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 1.5px;
    width: 100%;
    background: #8E6830;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
	
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 9px;
}
#nav-toggle span:nth-child(3) {
    top: 18px;
}

#nav-toggle {
        display: block;
		padding: 0 5px 0 0;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 9px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 9px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(556px);
        -webkit-transform: translateY(556px);
        transform: translateY(556px);
    }
	
}

/* RESPONSIVE */
@media screen and (max-width: 640px) {
	#pc_nav {
	display:none;
}
	
	#mobile_menu {
	display:block;
}

	
.top_logo {
	display: block;
	left: 5%;
	}
	
.top_logo img {
	width: 50%;
	}
	
	
.top_form_sp {
	display: block;
	width: 38%;
	min-width: 100px;
	height: 55px;
	background-color: #796A56;
	position: fixed;
	top: 0;
	right: 65px;
	box-shadow: none;
	z-index: 9999;
}

.top_form_sp p {
	font-size: 12px;
	line-height: 22px;
	text-align: center;
	color: #fff;
	font-weight: bold;
	padding-top: 17px;
	letter-spacing: -0.5px;
}

.top_logo_sp {
	display: block;
	width:92px;
	position: fixed;
	top: 11px;
	left: 3%;
	z-index: 9999;
}

.mobile_menu_bg {
	width: 100%;
	height: 55px;
	position: fixed;
	top: 0;
	z-index: 9999;
	background: #fff;
	box-shadow: 1px 1px 15px 1px rgba(0,0,0,0.2);
	
}


/* OUTER NAV */
nav {
	display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    background: none;
    text-align: center;
}
nav ul {
    text-align: center;
}

nav ul li {
    display: inline-block;
    padding: 1em 3em;
    border-bottom: 2px solid #fff;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    -webkit-transition: all .2s linear 0s;
    -moz-transition: all .2s linear 0s;
    -o-transition: all .2s linear 0s;
    transition-property: all .2s linear 0s;
}
nav ul li a:hover {
    color: #34B484;
}
/* OPEN / CLOSE BTNS */
.menu-btn {
	width: 50px;
	height: 55px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    display: inline;
    font-size: 32px;
}
.menu-btn a {
    display: inline-block;
    text-decoration: none;
    /* safari hack */
}

/* OVERLAY */
.overlay {
    position: fixed;
    top: 0;
    z-index: 98;
    display: none;
    overflow: auto;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
	z-index: 9999;
}
.overlay .menu {
    margin: 0;
    width:75%;
	height:100%;
	background: #C3A570;
}
.overlay .menu ul {
    margin: 0;
    padding: 0;
    
}
.overlay .menu ul li {
    padding: 20px;
    list-style: none;
    text-transform: uppercase;
	border-bottom: none;
	text-align: left;
}
.overlay .menu ul li p {
    text-transform: capitalize;
    font-weight: bold;
    font-size: 14px;
	color: #fff;
	letter-spacing:5px;
}
	
.overlay .menu ul li p span {
    float: none;
	padding-right:10px;
	font-weight: normal;
}

/* Toggle Button */
#nav-toggle {
    display: block;
    position: absolute;
    right:20px;
    top: 16px;
    width: 21px;
    height: 19px;
    cursor: pointer;
    z-index: 9999;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 1.5px;
    width: 100%;
    background: #8E6830;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 9px;
}
#nav-toggle span:nth-child(3) {
    top: 18px;
}

#nav-toggle {
        display: block;
		padding: 0 5px 0 0;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 9px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
		background-color:#fff;
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 9px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
		background-color:#fff;
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(556px);
        -webkit-transform: translateY(556px);
        transform: translateY(556px);
    }
}




