@charset "UTF-8";
/* CSS Document */
.wrapper {
    height: 100%;
    overflow-x: hidden;
    position: relative;
}
.overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    transition: opacity .5s;
}
.overlay.open {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    opacity: 1;
}
.menu-trigger {
    display: inline-block;
    width: 36px;
    height: 28px;
    vertical-align: middle;
    cursor: pointer;
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 100;
    transform: translateX(0);
    transition: transform .5s;
}
@media screen and (min-width:601px) {
	.menu-trigger {
		position: absolute;
}
}
.menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #000;
    transition: all .5s;
}
.menu-trigger.active span {
    background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
    top: 0;
}
.menu-trigger.active span:nth-of-type(1) {
    transform: translateY(12px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
    top: 12px;
}
.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
    bottom: 0;
}
.menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-12px) rotate(45deg);
}
.menu-trigger img {
    width: 28px;
}
.menu-trigger .i_navi_open {
    display: block;
}
.menu-trigger .i_navi_close {
    display: none;
}
.menu-trigger.active .i_navi_open {
    display: none;
}
.menu-trigger.active .i_navi_close {
    display: block;
}
nav {
    width: 250px;
    height: 100%;
    padding: 100px 20px 10px;
    background-color: rgba(255,255,255,0.90);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    transform: translate(250px);
    transition: all .5s;
}
@media screen and (min-width:601px) {
	nav {
		position: absolute;
}
}
nav.open {
    transform: translateZ(0);
}
nav li a {
    color: #452F0F;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    display: block;
    position: relative;
}

.sub-menu {
    max-height: 0;
    opacity: 0;
    transition: all .5s ease-in-out 0s;
    position: relative;
    z-index: -10;
}
.open + .sub-menu {
    max-height: 1000px;
    z-index: 9999;
    opacity: 1;
}
.sub-menu li,.drop-menu {
    text-indent: 1em;
}
.sub-menu li .sub-menu li{
    text-indent: 2em;
}
.menu-item-has-children > a:after{
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 15px;
}
.menu-item-has-children > a.open:after{
    content: "\f106";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 15px;
}

.nav{
	overflow: auto;
 -webkit-overflow-scrolling: touch;
}
.wrap_drop_menu{
	text-align: center;
	border: 1px solid #d6bd92;
	margin: 0px auto 35px;
}
.wrap_drop_menu02{
	text-align: center;
	border: 1px solid #d6bd92;
	margin: 0px auto 15px;
}
.hav_drop{
	padding: 10px 0px;
	cursor: pointer;
	display: block;
	position: relative;
}
.drop-menu li a{
	padding: 15px 0px;
	display: block;
	color: #452F0F;
	border-top: 1px dotted #dbceba;
	background-color: #f2f0ed
}