#g_navi,
.fixedHeader__inner {
  height: 50px;
}
  
@media screen and (min-width: 900px){
  #g_navi,
  .fixedHeader__inner {
    height: 80px;
  }
}

.fixedHeader {
  position: fixed;
  right: 0;
  top: 0;
  left: 0;
  z-index: 1000;
  /* background: #000; */
  /* border-bottom: 4px solid #333333; */
}

.fixedHeader__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-width: 1210px;
  padding: 0 5px;
}

.headerLogo {
  cursor: pointer;
}

.headerLogo img{
  height: 35px;
}

@media screen and (min-width: 900px){
  .headerLogo img{
    height: auto;
  }
}

@media screen and (max-width: 899px){
  .globalNavi {
    position: absolute;
    top: 50px;
    right: 0;
    left: 0;
    text-align: center;
    display: none;
    /* background: #000; */
  }
}

@media screen and (min-width: 900px){
  .globalNavi {
    display: block;
  }

  .globalNavi>ul{
    display: flex;
    margin: 0;
  }

  .globalNavi>ul>li{
    margin: 0 0 0 1em;
  }
}

.globalNavi>ul>li a{
  color: inherit;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  padding: .5em;
  display: block;
  letter-spacing: .05em;
}

.drawerButton {
  width: 50px;
  height: 50px;
}

@media screen and (min-width: 900px){
  .drawerButton {
    display: none;
  }
}

.drawerIcon>span,
.drawerIcon {
  display: inline-block;
}

.drawerIcon{
  position: relative;
  width: 35px;
  height: 25px;
}

.drawerIcon>span{
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  transition: .4s;
  /* background-color: #fff; */
}

.drawerIcon>span:nth-child(1) {
  top: 0;
}

.drawerIcon>span:nth-child(2) {
  top: calc(50% - 1px);
}

.drawerIcon>span:nth-child(3) {
  bottom: 0;
}

.drawerButton.is-open .drawerIcon>span:nth-child(1) {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}

.drawerButton.is-open .drawerIcon>span:nth-child(2) {
  transform: rotate(-45deg);
}

.drawerButton.is-open .drawerIcon>span:nth-child(3) {
  transform: translateY(-20px) scale(0);
}

@media screen and (max-width: 899px){
  .navOverlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99;
  }
}