@charset "UTF-8";



.icon {
  width: 33px;
}

.top_logo img {
  width: 50px;
}

.top_icon img {
  width: 33px;
}


.top_header {  
  transition: .5s;
  z-index: 300;
  opacity: 0;
}

.top_header.is-show {
  opacity: 1;
}

.top_header_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  padding: 8px 4%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}



.top_header a {
  color: #000;
  font-size: 14px;
}


/*右 ナビゲーション */
.right_logo img {
  width: 132px;
}

.right_header {
  position: absolute;
  width: 132px;
  top: 0;
  right: 0;
  text-align: center;
  z-index: 100;
}

.right_header li {
  font-size: 16px;
}

.right_header_item {
  padding: 16px 0;
}

@media (max-width:1024px) {
  .right_header,
  .top_header {
    display: none;
  }

}


/* =======================
.menu-trigger
======================= */
.menu-trigger {
    display: none; 
    -webkit-appearance: none; 
    appearance: none; 
    border: none;
    background: transparent; 
  }
  .menu-trigger,
  .menu-trigger span {
      display: inline-block; 
      transition: all .4s;
      box-sizing: border-box;
  }
  
/* =======================
.global-nav
======================= */


  .global-nav {
    display: none;
  }
  .global-nav li a {
    color:#000;
    text-decoration: none;
    font-size: 14px;
  }

  @media (max-width:1024px) {
    /*----- タブレット ハンバーガーメニュー ----- */
    .sp_header {
      position: fixed;
      width: 100vw;
      height: 60px;
      z-index: 3;
    }

    .menu-trigger {
      width: 56px;
      height: 60px;
      position: fixed;
      top: 10px;
      right: 8px;
      z-index: 2;
      outline: none;
    }
    
    .menu-trigger span {
      position: absolute;
      left: 50%;
      width: 32px;
      height: 2px;
      background-color: #fff;
      transform: translate(-50%, -50%);
    }
    
    .menu-trigger span:nth-of-type(1) {
      top: 15px;
    }
    .menu-trigger span:nth-of-type(2) {
      top: 49%;
    }
    .menu-trigger span:nth-of-type(3) {
      bottom: 13px;
    }
   
    .menu-trigger.active span:nth-of-type(1) {
      top: 49%;
      transform: translate(-50%, -50%) rotate(-45deg);
    }
    .menu-trigger.active span:nth-of-type(2) {
      opacity: 0; /*透過の指定で消してる*/
    }
    .menu-trigger.active span:nth-of-type(3) {
      bottom: 49%;
      transform: translate(-50%, -50%) rotate(45deg);
    }
  
    /*----- ナビゲーション ----- */
    .global-nav {
      display: none;
      width: 100vw;
      height: 100vh;
      background: rgba(0,0,0,0.9);
      position: fixed;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      z-index: -1;
      overflow-y: scroll;
    }
  
    .global-nav.active {
      display: block;
      z-index: 100;
    }

    .global-nav_logo img {
      width: 50px;
      margin-top: 16px;
    }

    .humberger_menue {
      text-align: center;
    }

    .humberger_menue li a {
      color: #fff;
      font-size: 1.8rem;
    }

    .humberger_menue li {
      margin-bottom: 36px;
    }

    .humberger_menue li:last-child {
      margin-bottom: 48px;
    }

    .humberger_icon li {
      text-align: center;
      margin-bottom: 48px;
    }

    .humberger_icon {
      display: flex;
      justify-content: center;
      gap: 48px;
      
    }

    .humberger_icon img {
      width: 42px;
    }

    



}/* max-width:600px END*/


@media (max-width:600px) {
  /*----- スマホ ハンバーガーメニュー ----- */



}

