.noscroll {
    overflow: hidden;
}

.triger_wrap {
    display: block;
    height: 24px;
    position: fixed;
    right: 30px;
    top: 30px;
    width: 60px;
    z-index: 999;
    cursor: pointer;
}
.menu-trigger,
.menu-trigger span {
	display: block;
	transition: all .4s;
	box-sizing: border-box;
    z-index: 99999;
}
.menu-trigger {
	position: relative;
	width: 100%;
	height: 100%;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #141414;
	border-radius: 2px;
	z-index: 99999;
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 11px;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}
.mobilenav {
	font-family: inherit;
	top: 0;
	left: 0;
	z-index: 999;
	display: none;
	position: fixed;
	width: 100%;
	height: 100vh;
	background-color: rgba(255, 255, 255, 1);
}
.mobilenav ul {
	letter-spacing: -0.4em;
	text-align: center;
	display: -webkit-flex;
	-webkit-flex-direction: column;
	-webkit-justify-content: center;
	display: flex;
	flex-direction: column;
	width: 500px;
	justify-content: center;
	margin: 0 auto;
}

.mobilenav ul li:first-child {
    border-top: 1px solid #ddd;
}
.mobilenav ul li {
	list-style-type: none;
}
.mobilenav ul li a {
	display: flex;
	padding: 35px 0;
	border-bottom: 1px solid rgba(255,255,255,0.2);
	font-size: 1.8rem;
	justify-content: space-between;
	align-items: center;
	color: #141414;
	letter-spacing: 1px;
	font-weight: 700;
	text-align: left;
	border-bottom: 1px solid #ddd;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.mobilenav ul li a:hover {
	background-image: linear-gradient(45deg,rgba(230, 151, 185, 1) 0%, rgba(64, 168, 215, 1) 25%, rgba(137, 186, 41, 1) 50%, rgba(241, 193, 31, 1) 75%, rgba(230, 151, 185, 1) 100%);
    background-size: 400% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-name: gradationTextAnimation;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes gradationTextAnimation{
    0%{
        background-position: 0 0;
    }
    50%{
        background-position: 100% 0;
    }
    100%{
        background-position: 0 0;
    }
}


}
.mobilenav_text {
    font-size: 8.5px;
    font-weight: bold;
    position: absolute;
    right: -3px;
    top: 27px;
    z-index: 9999;
    color: #FF5A06;
}

.mobilenav ul li a span {
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: #ccc;
    font-family: "Kiwi Maru", serif;
}

.movmobb1 .active span:nth-of-type(1) {
	-webkit-transform: translateY(12px) rotate(-45deg);
	transform: translateY(12px) rotate(-45deg);
}
.movmobb1 .active span:nth-of-type(2) {
	opacity: 0;
}
.movmobb1 .active span:nth-of-type(3) {
	-webkit-transform: translateY(-8px) rotate(45deg);
	transform: translateY(-8px) rotate(45deg);
}


.movmobb2 .active span:nth-of-type(1) {
	-webkit-transform: translateY(12px) rotate(-315deg);
	transform: translateY(12px) rotate(-315deg);
}
.movmobb2 .active span:nth-of-type(2) {
	opacity: 0;
}
.movmobb2 .active span:nth-of-type(3) {
	-webkit-transform: translateY(-9px) rotate(315deg);
	transform: translateY(-9px) rotate(315deg);
}


.movmobb3 .active {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}
.movmobb3 .active span:nth-of-type(1) {
	-webkit-transform: translateY(11px) rotate(-45deg);
	transform: translateY(11px) rotate(-45deg);
}
.movmobb3 .active span:nth-of-type(2) {
	-webkit-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
}
.movmobb3 .active span:nth-of-type(3) {
	opacity: 0;
}


.movmobb4  span:nth-of-type(3),
.movmobb4 .active span:nth-of-type(3) {
	transition: none;
}
.movmobb4 .active {
	-webkit-transform: rotateX(720deg);
	transform: rotateX(720deg);
}
.movmobb4 .active span:nth-of-type(1) {
	-webkit-transform: translateY(11px) rotate(-45deg);
	transform: translateY(11px) rotate(-45deg);
}
.movmobb4 .active span:nth-of-type(2) {
	-webkit-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
}
.movmobb4 .active span:nth-of-type(3) {
	opacity: 0;
}


.movmobb5  span:nth-of-type(1) {
	-webkit-animation: menu-bar01 .75s forwards;
	animation: menu-bar01 .75s forwards;
}
@-webkit-keyframes menu-bar01 {
	0% {
		-webkit-transform: translateY(12px) rotate(45deg);
	}
	50% {
		-webkit-transform: translateY(12px) rotate(0);
	}
	100% {
		-webkit-transform: translateY(0) rotate(0);
	}
}
@keyframes menu-bar01 {
	0% {
		transform: translateY(12px) rotate(45deg);
	}
	50% {
		transform: translateY(12px) rotate(0);
	}
	100% {
		transform: translateY(0) rotate(0);
	}
}
.movmobb5  span:nth-of-type(2) {
	transition: all .25s .25s;
	opacity: 1;
}
.movmobb5  span:nth-of-type(3) {
	-webkit-animation: menu-bar02 .75s forwards;
	animation: menu-bar02 .75s forwards;
}
@-webkit-keyframes menu-bar02 {
	0% {
		-webkit-transform: translateY(-12px) rotate(-45deg);
	}
	50% {
		-webkit-transform: translateY(-12px) rotate(0);
	}
	100% {
		-webkit-transform: translateY(0) rotate(0);
	}
}
@keyframes menu-bar02 {
	0% {
		transform: translateY(-12px) rotate(-45deg);
	}
	50% {
		transform: translateY(-12px) rotate(0);
	}
	100% {
		transform: translateY(0) rotate(0);
	}
}
.movmobb5 .active span:nth-of-type(1) {
	-webkit-animation: active-menu-bar01 .75s forwards;
	animation: active-menu-bar01 .75s forwards;
}
@-webkit-keyframes active-menu-bar01 {
	0% {
		-webkit-transform: translateY(0) rotate(0);
	}
	50% {
		-webkit-transform: translateY(12px) rotate(0);
	}
	100% {
		-webkit-transform: translateY(12px) rotate(45deg);
	}
}
@keyframes active-menu-bar01 {
	0% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(12px) rotate(0);
	}
	100% {
		transform: translateY(12px) rotate(45deg);
	}
}
.movmobb5 .active span:nth-of-type(2) {
	opacity: 0;
}
.movmobb5 .active span:nth-of-type(3) {
	-webkit-animation: active-menu-bar03 .75s forwards;
	animation: active-menu-bar03 .75s forwards;
}
@-webkit-keyframes active-menu-bar03 {
	0% {
		-webkit-transform: translateY(0) rotate(0);
	}
	50% {
		-webkit-transform: translateY(-10px) rotate(0);
	}
	100% {
		-webkit-transform: translateY(-10px) rotate(-45deg);
	}
}
@keyframes active-menu-bar03 {
	0% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(-10px) rotate(0);
	}
	100% {
		transform: translateY(-10px) rotate(-45deg);
	}
}


.movmobb6 .active span:nth-of-type(1) {
	-webkit-transform: translateY(8px) rotate(-45deg);
	transform: translateY(8px) rotate(-45deg);
}
.movmobb6 .active span:nth-of-type(2) {
	left: 200%;
	opacity: 0;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-animation: active-menu-bar02 .8s forwards;
	animation: active-menu-bar02 .8s forwards;
}
@-webkit-keyframes active-menu-bar02 {
	100% {
		height: 0;
	}
}
@keyframes active-menu-bar02 {
	100% {
		height: 0;
	}
}
.movmobb6 .active span:nth-of-type(3) {
	-webkit-transform: translateY(-13px) rotate(45deg);
	transform: translateY(-13px) rotate(45deg);
}


@media screen and (max-width: 480px) {
	
.mobilenav ul {
    width: 84%;
}

.mobilenav ul li a {
    font-size: 1.5rem;
    padding: 25px 0;
}

.mobilenav ul li a span {
    font-size: 1.4rem;
}

.triger_wrap {
    display: block;
    height: 24px;
    position: fixed;
    right: 4%;
    top: 25px;
    width: 60px;
    z-index: 999;
    cursor: pointer;
}
}