.global-menu-wrap * {
    margin: 0px;
    padding: 0px;
}

.global-menu-trigger-wrap {
    position: fixed;
    z-index: 99;
    top: 38px;
    right: 100px;
}

@media screen and (max-width: 999px) {
    .global-menu-trigger-wrap {
        top: 18px;
        right: 26px;
    }
}

.global-menu-trigger, .global-menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    transition: all .3s;
}

.global-menu-trigger {
    position: relative;
    width: 30px;
    height: 30px;
}

.global-menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #c7d3ca;
    border-radius: 4px;
}

.global-menu-trigger span:nth-of-type(1) {
  top: 6px;
}

.global-menu-trigger span:nth-of-type(2) {
  bottom: 6px;
}

.global-menu-trigger.active span:nth-of-type(1) {
    transform: translateY(7px) rotate(-45deg); 
}

.global-menu-trigger.active span:nth-of-type(2) {
    transform: translateY(-6px) rotate(45deg); 
}

.global-menu {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  z-index: 90;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
}

.global-menu .global-menu-header {
  background-color: #fff;
  min-height: 160px;
  display: flex;
  justify-content: center;
}

.global-menu .global-menu-header-image {
  margin-top: 20px;
}

.global-menu .global-menu-header-image img {
  width: 100px;
}

.global-menu .global-menu-content {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
}

.global-menu-left {
  position: relative;
  background-color: #002832;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.global-menu-left {
  display: block;
}

.global-menu-right {
  position: relative;
  height: 100%;
  width: 100%;
  overflow-y: auto;
}


#global-menu-image {
    background-image: url("/images/sp_menu_02.jpg?20210605");
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
}


#global-menu-image.large {
    background-image: url("/images/sp_menu_01.jpg?20210605");
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
}