/*
NAKAMAGUMI
nav.css
TOP専用（途中までナビを見せない仕組み）

@charset "utf-8";

/*----------------------------------------------
 NAVI
------------------------------------------------*/
/* PC ------------- */

.header_wrap{
/*display: none;/*最初は隠す*/
}
.header{
position: fixed; 
width: 100vw;
height:78px;
top:0;
left:0;
right: 0;	
margin:0 auto;
padding: 10px 30px 5px 12px;
font-size: 15px;
background-color: rgba(255,255,255,0.98); /*#ffffff*/
color: #333333;
border-bottom:1px solid #fff;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 300;
border-bottom:1px solid #D9D9D9;
}
.header.fixed{
position: fixed;
top: 0;
}

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

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

.nav-item{ /* ナビの左側に余白 */
margin-left: 10px;
}
@media screen and (max-width:900px){
.nav-item{ /* ナビの左側に余白 */
margin-left: 5px !important;
}
}

.nav-item-logo{
display: none;/*PCは非表示*/
}
	
/****** NAV CURRENT ↓ ****/
.nav-list li.nav-item a.active {
font-weight: 400;
}
/*********** ↑ ***********/


.burger-btn{
display: none;
}


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


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

@media screen and (max-width:1020px){
.header{
 padding: 0.9% 4% -0.1% -0.5%;
}

/* BURGERボタン */
.burger-btn{
 display: block;
 width: 40px;
 height: 42px;
 position: relative;
 z-index: 3;

/* codepenの挙動用 */
background-color:transparent;
border:none;
}
.bar{
 width: 35px;
 height: 2.4px;
 display: block;
 position: absolute;
 left: 50%;
 transform: translateX(-50%);
 background-color: #333333;
}
.bar_top{
 top: 10px;
}
.bar_mid{
 top: 50%;
 transform: translate(-50%,-50%);
}
.bar_bottom{
 bottom: 10px;
}

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

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

/* MOBILE-Navi APPEAR------------- */
.nav-wrapper{
 display: none;
 width: 100vw;
 height: 90vh;
 position: fixed;
 top: 0;
 left: 0;
 z-index: 2; /*キービジュアルと.btn_triggerとの重なりの前後関係を調整*/
}
.header-nav{
 width: 100%;
 height: 100%;
 background-color:#ffffff;
 opacity:0.93;
 z-index: 100;
 }
.header-nav a{
  color: #333333 !important;
 }
.header-nav a:active{
  color: #00A0C0 !important;
 }
.header-nav a:hover {
  color: #00A0C0 !important;
 }
.header-nav .nav-list{
  display: block;
  position: absolute;
  top: 52%;
  left: 49%;
  transform: translate(-50%,-60%);
  text-align: center;	
 }
.header-nav .nav-item{
display: block;
width:100%;
margin:0 auto 15px;
padding:10px 20px 20px;
font-family: 'Noto Serif JP', serif !important;
font-size: 19px;
font-weight: 400;
text-align: center;
line-height: 40%;
border-bottom: #BDAC7B 1px dotted;
} 
.header-nav .nav-item-logo{
display: block;
margin:0px auto;
padding:20px 0px 30px;
}
.header-nav .nav-item-logo img{
width: 76%;
}
}


@media screen and (max-width:600px){
.header-nav .nav-list{
  display: block;
  position: absolute;
  top: 52%;
  left: 40%;
  transform: translate(-35%,-60%);
  text-align: center;	
 }
	.header-nav .nav-item{
display: block;
width:100%;
margin:0 auto 10px;
padding:15px 10px 20px;
font-family: 'Noto Serif JP', serif !important;
font-size: 19px;
font-weight: 400;
text-align: center;
line-height: 40%;
border-bottom: #BDAC7B 1px dotted;
} 
.header-nav .nav-item-logo{
	display: block;
	margin:0px auto;
	padding:20px 0px 30px;
	}
.header-nav .nav-item-logo img{
width: 94% !important;
}
}  
  






