.hamburger {
  display: block;
  width: 30px;
  height: 60px;
  position: fixed;
  top: 25px;
  right: 15px;
  z-index: 18000;
  -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;
}


.hamburger__icon {
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
}
.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--color-bulegreen);
  -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;
}

.menu_hamburger {
  display: block;
 	color: var(--color-bulegreen);
  -moz-transition-property:color, -moz-transform;
  -o-transition-property:color, -o-transform;
  -webkit-transition-property: color, -webkit-transform;
  transition-property: 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: -10px;
        }
.hamburger__icon:after {
  top: 10px;
}

.hamburger__icon_color,.hamburger__icon_color:before,.hamburger__icon_color:after {
	background-color: var(--color-bulegreen);
}

.hamburger.active .hamburger__icon {
  background-color: transparent;
}
.hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
  background-color: var(--color-bulegreen);
}
.hamburger.active .hamburger__icon:before {
  -moz-transform: translateY(10px) rotate(45deg);
  -ms-transform: translateY(10px) rotate(45deg);
  -webkit-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}
.hamburger.active .hamburger__icon:after {
  -moz-transform: translateY(-10px) rotate(-45deg);
  -ms-transform: translateY(-10px) rotate(-45deg);
  -webkit-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
}

.fat-nav {
  top: 0;
  left: 0;
  z-index: 9999;
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
    background-color: #fff;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -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: 100vh;
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	background-color: #fff8f0;
}

.fat-nav.active {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.full_wrapper {
  	width: 100%;
  	height: 100vh;
  	display: flex;
  	justify-content: center;
  	align-items: center;
}

.full-menu {
	display: flex;
  	align-items: center;
	width: 100%;
	margin: 0;
}

.logo_name {
	width: 47%;
	height: 100vh;
	margin: 0;
	background:url(../images/common/menu_bg.jpg) no-repeat center center;
	background-size:cover;
}

.menu-area {
	display: flex;
	flex-wrap: wrap;
 	justify-content: center;
	width: 60%;
	margin: auto;
}

.menu-area .logo {
	margin: 0 auto 40px 0;
	width: 35%;
}

.menu-area .logo img {
	width: 100%;
	max-width: 300px;
	margin: 0;
}

.menu-area ul {
  	width: 50%;
	display: flex;
	flex-direction: column;
    margin: 0;
    padding: 0;
    list-style-type: none;
}


.menu-area li {
	font-size: 1.3em;
    line-height: 2em;
	text-align: left;
	margin: 0;
	padding: 1em;
    display: flex;
	align-items: flex-end;
	border-top: 2px dashed #ebd6be;
	position: relative;
}

.menu-area li i {
    width: 30px;
    text-align: center;
    margin-right: 0.8em !important;
    position: relative; /* 位置指定を有効に */
    top: -0.4em; /* 上に移動 - この値を調整する */
    flex-shrink: 0; /* サイズを固定 */
}

.menu-area li a {
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.menu-area li:last-child {
	border-bottom: 2px dashed #ebd6be;
}

.menu-area li i {
	width: 30px;
	text-align: center;
	margin-right: 0.8em !important;
}

.menu-area li a {
	color: #666 !important;
}

.menu-area li:hover {
	color: #aaa !important;
	text-decoration: none;
}

.menu-area li .i_01 {
    color: #EF6BA0;
}

.menu-area li .i_02 {
    color: #F2A824;
}

.menu-area li .i_03 {
    color: #00C9D8;
}

.menu-area li .i_04 {
    color: #41BC88;
}

.menu-area li .i_05 {
    color: #8E63CE;
}

.menu-area li .i_06 {
    color: #ff3b61;
}



@media screen and (max-width: 1024px) {
.menu-area {
    width: 90%;
}
}



@media screen and (max-width: 820px) {
.logo_name {
	display: none;
}

.menu-area {
    width: 60%;
}

.menu-area .logo {
	text-align: center;
    width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.menu-area ul {
    width: 100%;
}
}




@media screen and (max-width: 640px) {
.hamburger {
    display: block;
    width: 50px;
    height: 48px;
    position: fixed;
    top: 7px;
    right: 0;
    z-index: 18000;
    -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;
    padding-left: 10px;
    padding-top: 10px;
}

.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
  display: block;
  width: 30px;
}


.menu-area {
	width:100%;
}

.menu-area .logo {
    width: 60%;
}

.menu-area li {
	font-size: 1.1em;
    line-height: 2em;
    text-align: left;
    margin: 0;
    padding: 0.7em 1.5em;
}
}

