@charset "utf-8";

#g_navi,
.fixedHeader__inner {
  height: 50px;
}
  
@media screen and (min-width: 900px){
  #g_navi,
  .fixedHeader__inner {
    height: 100px;
  }
}

.fixedHeader {
  position: fixed;
  right: 0;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #01467f;
  border-bottom: 4px solid #cedeeb;
}

.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;
    background: #01457f;
    text-align: center;
    display: none;
  }
}

@media screen and (min-width: 900px){
  .globalNavi {
    display: block;
    max-width: 100%;
  }

  .globalNavi>ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .globalNavi>ul>li{
    margin: 0 0 0 .5em;
  }
  .globalNavi>ul>li:nth-last-child(2){
    width: 70%;
    text-align:right
  }
}

.globalNavi>ul>li a{
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  padding: .5em;
  display: inline-block;
  letter-spacing: .05em;
  position: relative;
}


.gh_lino9 a,
.gh_lino10 a {
  height: 38px;
}

.gh_lino9 a  {
  width: 120px;
  background: url(../../images/header/btn_ani_120.png) center / 104px auto no-repeat;
}

.gh_lino10 a {
  width: 100px;
  background: url(../../images/header/sideANIME.svg)   center / 84px  auto no-repeat;
}

.gh_lino9 a>span,
.gh_lino10 a>span {
  display: none;
}

.globalNavi>ul>li a[target="_blank"] {
  margin-right: 1em;
}

.globalNavi>ul>li a[target="_blank"]::before,
.globalNavi>ul>li a[target="_blank"]::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 8px;
  border: 1px solid #fff;
  margin: auto;
}

.globalNavi>ul>li a[target="_blank"]::before {
  top: 5px;
  bottom: 0;
  right: -8px;
}

.globalNavi>ul>li a[target="_blank"]::after {
  top: 0;
  bottom: 0;
  right: -13px;
}




.drawerButton {
  width: 50px;
  height: 50px;
}

@media screen and (min-width: 900px){
  .drawerButton {
    display: none;
  }
}

.drawerIcon>span,
.drawerIcon {
  display: inline-block;
  transition: .4s;
}

.drawerIcon{
  position: relative;
  width: 35px;
  height: 25px;
}

.drawerIcon>span{
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  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;
}

.drawerIcon>span:nth-child(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: .4s;
}

.drawerButton.is-open .drawerIcon>span:nth-child(1) {
  transform: translateY(20px) scale(0);
}

.drawerButton.is-open .drawerIcon>span:nth-child(2) {
  transform: rotate(-45deg);
}

.drawerButton.is-open .drawerIcon>span:nth-child(2)::after {
  transform: rotate(90deg);
}

.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;
  }
}