@charset "utf-8";

/*========= ナビゲーションのためのCSS ===============*/
.vk-mobile-nav-menu-btn{
  left: auto !important;
  right: 5px;
}
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
  top:-120%;
    left:0;
  width:100%;
    height: 100vh;/*ナビの高さ*/
  background: rgb(0 0 0 / 100%);
    /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
  list-style: none;
    text-align: center; 
}

#g-nav li a{
  color: #666;
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
#g-nav li a:hover{
  color: #efefef;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1{
  position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
  top:10px;
  right: 0px;
  cursor: pointer;
    width: 50px;
    height:50px;
}
  
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
  background-color: #666;
    width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}

.openbtn1 span:nth-of-type(2) {
  top:23px;
}

.openbtn1 span:nth-of-type(3) {
  top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
#header h1 .t-small{
  display: none;
}
#header h1{
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 99;
  max-width: 230px;
}

/*========= スクロール途中からヘッダーの高さが小さくなるためのCSS ===============*/
#header{
    /*はじめの高さを設定*/
  height: 30px;
   /*以下はレイアウトのためのCSS*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  background:#0a0a0a;
  color:#fff;
  text-align: center;
  padding: 20px;
  position: relative;
}
#header.HeightMin h1{
  max-width: 100%;
  top: 5px;
}
#header.HeightMin h1 .t-small{
  font-size: 1.1rem;
  padding-top: 8px;
}
#header.HeightMin h1 .t-small .title-en{
  font-size: 1.2rem;
  display: inline-block;
  margin-right: 8px;
}

/*HeightMinというクラス名がついたら高さを小さく、上部固定に*/
#header.HeightMin{
  position: fixed;
  z-index: 999;/*最前面へ*/
  animation: DownAnime 0.5s forwards;
  height: 30px;
}
#header.HeightMin h1 .t-small{
  display: block;

}
#header.HeightMin h1 img{
  display: none;
}

#header h1 img{
  width: 100%;
  height: auto;
}
.header_scrolled .gMenu>li:last-child{
  border: none;
}


@keyframes DownAnime{
  from {
    opacity: 0;
  transform: translateY(-170px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}
#header nav{
  position: absolute;
  right: 50px ;
}
#header nav ul{
  list-style: none;
  display: flex;
  justify-content: center;
}

#header nav ul li a{
  display: block;
  text-decoration: none;
  color: #666;
  padding:10px;
  transition:all 0.3s;
}

#header nav ul li.current a,
#header nav ul li a:hover{
  color:#fff; 
}
/*--------------------------*/
@media screen and (max-width: 1179px) {

}
@media screen and (max-width: 1023px) {

  #header nav {
    display: none;
  }

}
@media screen and (max-width: 767px) {

}
@media screen and (max-width: 460px) {

  #header h1{
    max-width: 140px;
  }

}  
/*--------------------------*/