@charset "UTF-8";
/* CSS Document */

header{
    width: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

header .btn-gnavi{
    display: none;
}

header .hdr-content-area{
    width: 95%;
    max-width: 1400px;
    margin: 10px auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .hdr-content-area .hdr-logo{
    width: 30%;
    max-width: 330px;
    padding: 16px 20px;
    text-align: center;
    border-radius: 10px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
}
header .hdr-content-area .hdr-logo .logo-coi-next {
    width: 47px;
    margin-right: 9%;
}
header .hdr-content-area .hdr-logo .logo {
    width: 212px;
}
header .hdr-content-area .hdr-logo a{
    margin: 0 auto;
    display: block;
    transition: all 0.1s ease 0s;
}
header .hdr-content-area .hdr-logo a:hover {
    opacity: 0.6;
}



#global-navi  {
    width: 47%;
    margin: 0;
    padding: 0;
    position: relative;
    right: 0;
}

@media screen and (min-width: 951px) and (max-width: 1350px) {
#global-navi  {
    width: 64%;
}
}
@media screen and (min-width: 769px) and (max-width: 950px) {
#global-navi  {
    width: 65%;
    font-size: 80%;
}
}

#global-navi .global-navi-sp {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

#global-navi ul.menu {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

#global-navi ul.menu li{
    width: auto;
    font-family: "M PLUS 1", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: 110%;
    list-style: none;
}
#global-navi ul.menu li a{
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease 0s;
}
#global-navi ul.menu li a:hover{
    text-decoration: underline;
}




@media screen and (max-width: 768px){

header{
    height: 65px;
    position: fixed;
}
header.active {
     box-shadow: 0 0 8px rgba(0,0,0,0.2);   
}
    
header .hdr-content-area{
    width: 95%;
    overflow: visible;
}
    
header .hdr-content-area .hdr-logo{
    width: 45%;
    max-width: 100%;
    padding: 9px;
    box-shadow: 0px 0px 6px #00000030;
    margin: 0;
}


    

#global-navi .global-navi-sp {
    display: flex;
    flex-wrap: wrap;
}

#global-navi .global-navi-sp ul.menu{
    width: 100%;
    padding-top: 70px;
    display: block;
    order: 1;
}


/**レスポンシブにした時のナビの見せ方**/
    

header #global-navi{
    display: block;
    position: fixed;
    width: 100%;
    top: 0;
    right: -100%;
    background-color: #0E90D0;
    opacity: 1;
    height: 100%;
    z-index: 100;
}

header #global-navi ul.menu li{
    width: 100%;
    border-bottom: 1px solid #8CD2F5;
    text-align: center;
    margin-left: 0;
}

header #global-navi ul.menu li a{
    width: 100%;
    display: block;
    color: #ffffff;
    padding: 15px;
}
header #global-navi ul.menu li a:hover{
    color: #fff;
    text-decoration: none;
}


  header .btn-gnavi{
    display: block;
    position: fixed;
    top: 10px;
    right: 3.3%;
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 100%;
    background-color: #72BE6E;
    z-index: 200;
    cursor: pointer;
    transition: all 400ms;
    -webkit-transition:all 400ms;
}

  header .btn-gnavi span {
      position: absolute;
      width: 30px;
      height: 3px;
      background-color: #fff;
      border-radius: 10px;
      transition: all 400ms;
      -webkit-transition: all 400ms;
  }

  header .btn-gnavi span:nth-child(1){
    top: 16px;
  }

  header .btn-gnavi span:nth-child(2){
    top: 24px;
  }

  header .btn-gnavi span:nth-child(3){
    top: 32px;
  }

  header .btn-gnavi.hb-open{
    transform: rotate(180deg);
    -webkit-transform:rotate(180deg);
  }

  header .btn-gnavi.hb-open span{
    background: #fff;
  }

  header .btn-gnavi.hb-open span:nth-child(1){
    width: 22px;
    transform: translate(-5px,15px) rotate(45deg);
    -webkit-transform: translate(-5px,15px) rotate(45deg);
  }

  header .btn-gnavi.hb-open span:nth-child(2){
  }

  header .btn-gnavi.hb-open span:nth-child(3){
    width: 22px;
    transform: translate(-5px,-15px) rotate(-45deg);
    -webkit-transform: translate(-5px,-15px) rotate(-45deg);
  }
}