/*
Koubou JIN
nav.css


/*----------------------------------------------
  NAVI
------------------------------------------------*/
/* PC ------------- */
.header{
position: fixed;
top:0;
width: 100%;
background-color: #ffffff;
color: #262626;
height:74px;
padding: 0 60px;
border-bottom:1px solid #fff;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 300;
}
.header.fixed{
position: fixed;
top: 0;
}

.nav-list{
/* navの横並び */
display: flex;
}

.nav-list li{
 list-style:none;
 padding:2px 0 0 20px;
 color: #262626; 
}

.nav-item{
/* メニューの右側に余白 */
margin-left: 15px;
}

/****** NAV CURRENT ↓ ****/
.nav-list li.nav-item a.active {
 font-weight: 600;
}
/*********** ↑ ***********/


.burger-btn{
display: none;
}

.nav-list{
font-family: 'Prompt', sans-serif;
}


/* LINK COLOR  */
.header a { 
  text-decoration: none; 
  color: #262626; 
}
.header a : link{ 
  text-decoration: none; 
  color: #262626;
}
.header a:visited { 
  color:#262626; 
}
.header a:hover { 
color:#fcc800
}

 
/* MOBILE  Humberger-NAVI ------------- */

@media screen and (max-width:1080px){
.header{
  padding: 0.5% 5% 0 2%;
}
.burger-btn{
  display: block;
  width: 40px;
  height: 42px;
  position: relative;
  z-index: 3;
  
/* codepenの挙動用 */
background-color:transparent;
border:none;
}
.bar{
  width: 32px;
  height: 2.5px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #262626;
}
.bar_top{
  top: 10px;
}
.bar_mid{
  top: 50%;
  transform: translate(-50%,-50%);
}
.bar_bottom{
  bottom: 10px;
}

/* humberger-menu CLOSE ------------- */	
.burger-btn.close .bar_top{
  transform: translate(-50%,11px) rotate(45deg);
  transition: transform .3s;
  background-color:#fff;
}
.burger-btn.close .bar_mid{
  opacity: 0;
  transition: opacity .3s;
  background-color:#fff;

}
.burger-btn.close .bar_bottom{
  transform: translate(-50%,-8px) rotate(-45deg);
  transition: transform .3s;
  background-color:#fff; 
}

/* Humberger-Navi APPEAR------------- */
.nav-wrapper{
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;/*キービジュアルと.btn_triggerとの重なりの前後関係を調整*/
 }
 .header-nav{
    width: 100%;
    height: 100%;
    background-color:#161616;
	opacity:0.99;
    z-index: 100;
  }
.header-nav a{
    color:#ffffff !important;
  }
.header-nav a:active{
    color:#fcc800 !important;
  }
.header-nav a:hover {
    color:#fcc800 !important;
  }
.header-nav .nav-list{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-55%);
    text-align: center;
  }
.header-nav .nav-item{
    margin-right: 0;
    margin-bottom: 40px;
	font-size: 28px;
	font-weight: 600;
	text-align: center;
	line-height: 80%;
  }
}  






