@charset "UTF-8";
/* CSS Document */
/* ------------------------------------
	Navigation
------------------------------------ */
#LinkProduct, #LinkIntro, #LinkStory, #LinkChart, #LinkCast {
    padding-top: 100px;
    margin-top: -100px;
}
#global-nav {
z-index: 999;
    margin-bottom: 80px;
    font-family: "Noto Serif JP", serif;
}
#navWrap {
width: 100%;
max-height: 80px;
position: absolute;
z-index: 999;
font-weight: 700;
	padding: 1.5em 0 0;
	 backdrop-filter: blur(12px);
}
.nav-menu{
		border: 2px solid #c48f3e;
	width: 90%;
	max-width: 1152px;
  list-style: none;
  margin: 0 auto;
color: #c48f3e;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(12px, 1.25vw, 18px);
    line-height: 1em;
font-weight: 700;
    padding: 1em;
	border-radius: 100px;
	background-image: linear-gradient(90deg, #0e160c, #283820, #0e160c);
}
.nav-menu li {
    margin:0 0.5em;
	border-right: 1px solid #c48f3e;
	padding-right: 1em;
    letter-spacing: 0.1em;
}
.nav-menu li:last-child {
	border-right:none;
}
.nav-menu a, .nav-menu a:hover{
  color: #c48f3e;
}

.toggle-btn {
  background: transparent;
  border: none;
  padding: 0;
  position: fixed;
  top: 1em;
  right: 1em;
  display: none;
  z-index: 999;
}


@media (min-width: 769px){
      .nav-menu{
    display: flex;
          align-items: center;
          justify-content: center;
  }
}

@media (max-width: 768px){
.toggle-btn{
    position: fixed;
    z-index: 10000; /* ← 最重要 */
  }
    button {
        width: 100%;
        background: #fff;
    }
#global-nav {
/*position: static;    もしくは削除 */
    margin-bottom: 0;
	backdrop-filter:none;
}
#global-nav li {
        border-bottom: 1px dotted #c48f3e;
    }
#navWrap {
    position: fixed;   /* ← absolute をやめる */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
	backdrop-filter: blur(0);
}
	.nav-menu li {
		border-right: none;
	}
.nav-menu{
display: none;
    background: rgba(0,0,0,0.9);
  list-style: none;
  margin: 0;
  padding: 2.5em;
    line-height: 2.5em;
  width: 100%;
    max-width: 100%;
    height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
    text-align: center;
    border: none;
	border-radius: 0;
}

#global-menu.open{
  display: block;
}
.toggle-btn {
top: 2.5px;
right: 2.5px;	
/*top: 0px;
right: 0px;*/
/*    background: rgba(0,0,0,0.9);*/
  padding: 0 ;
/*  position: fixed;*/
    height: 30px;
    width: 30px;
  display: none;
    margin: 0;
/*    border: 1px solid rgba(255,255,255,0.8);*/
}
.toggle-btn:hover{
  cursor: pointer;
}
.toggle-btn span{
  display: inline-block;
  background: #c48f3e;
  height: 3px;
  width: 20px;
    top: -3px;
  position: relative;
    
}
.toggle-btn span:before{
  content: "";
  display: inline-block;
  background: #c48f3e;
  height: 3px;
  width: 20px;
  position: absolute;
  top: 8px;
  left: 0;
}
.toggle-btn span:after{
  content: "";
  display: inline-block;
  background: #c48f3e;
  height: 3px;
  width: 20px;
  position: absolute;
  top: -8px;
  left: 0;
}
#open-btn.active span{
  background: transparent;

}
#open-btn.active span:before{
  transform: rotate(45deg);
  top: 0;
  background: #c48f3e;
}
#open-btn.active span:after{
  transform: rotate(-45deg);
  top: 0;
  background: #c48f3e;
}
.nav-menu a, .nav-menu a:hover{
  color: #c48f3e;
}
  .nav-menu{
    display: none;
  }
  .toggle-btn {
    display: block;
  }

}