.header__logo img{
  height: 40px;
}

.headerNav ul {
  display: none;
}

    .headerNav>ul>li>span{
      opacity: 0.3;
    }

@media screen and (max-width: 1199px){
  #g_navi {
 padding-top: 54px;
}

  .fixedHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 54px;
    z-index: 10100;
    background: #004583;
  }

  .headerButton svg{
    height: 40px;
  }
  .headerButton .cls-1 {
    fill: #333;
    fill-rule: evenodd;
  }
}


  #g_navi ul a{
    color: inherit;
    text-decoration: none;
  }

    #g_navi ul {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Economica', sans-serif;
    line-height: 1;
  }

@media screen and (min-width: 1200px){

  #g_navi ul a[target="_blank"]::after{
    content: ""; 
    background: url(../../images/main/common/icon_new_window.svg) center/12px no-repeat;
    width: 16px;
    height: 16px;
    display: inline-block;
  }


  .fixedHeader {
    justify-content: center
  }

  #header {
    padding-top: 50px;
  }

  .headerButton {
    display: none;
  }

  #g_navi {
    display: flex;
    height: 50px;
    align-items: center;
    padding: 5px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: #004583;
    z-index: 1000;
    justify-content: center;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .3));
  }

  .header__logo {
    margin: 0 20px;
  }


  #g_navi ul {
    display: flex;
    color: #fff;
  }

  #g_navi ul li{
    margin: 0 20px;
  }

  #g_navi ul li>span{
    opacity: 0.2;
  }




    #g_navi ul a:hover,
    #g_navi ul a.crt{
       color: #ebff00;
    }

}



/*
   open (ã‚¹ãƒžãƒ›ã®ã¿)
------------------------------------------ */
@media screen and (max-width: 1199px){
  .headerNav.is-open {
    position: fixed;
    top: 54px;
    right: 0;
    left: 0;
    z-index: 100000;
    background: #f1f1f1;
    margin: 0;
  }

  .headerNav.is-open>ul {
    display: block;
  }

    .headerNav.is-open>ul a{
    display: block;
  }

  .headerNav.is-open>ul>li span{
    padding: 16px 0;
    text-align: center;
    display: block;
  }

    .navOverlay {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: rgba(0, 0, 0, 0.8);
      z-index: 99;
    }
}



.menu_trigger, .menu_trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.menu_trigger {
  position: relative;
  width: 35px;
  height: 30px;
}

.menu_trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #ffffff;
  border-radius: 4px;
}

.menu_trigger span:nth-of-type(1) {
  top: 0;
}

.menu_trigger span:nth-of-type(2) {
  top: calc(50% - 2px);
}

.menu_trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu_trigger span:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 4px;
  background-color: #ffffff;
  border-radius: 4px;
  transition: all .4s;
}

.menu_trigger.active span:nth-of-type(1) {
  transform: translateY(20px) scale(0);
}

.menu_trigger.active span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu_trigger.active span:nth-of-type(2)::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.menu_trigger.active span:nth-of-type(3) {
  transform: translateY(-20px) scale(0);
}

