@charset "utf-8";
/* side nav logo */
.navlogo{
	width: 100%;
}
.navlogo a{
	width: 24%;
	font-size: 0;
	display: flex;
  justify-content: flex-start;
  align-items: center;
	padding-left: 6.4%;
}
.navlogo a svg{
	width: 100%;
	box-sizing: border-box;
	display: block;
	height: auto;
}
.navlogo a svg .cls-2{
	fill: #11100F;
}



#menu-bar{
	width: 48px;
  height: 48px;
  position: fixed;
	text-align: center;
	font-size: 9px;
  background-color: #fff;
	box-sizing: border-box;
	z-index: 100;
}

@media screen and (max-width:767px){
	/* nav position sp */
	#menu-bar{
		right:6.4%;
		top:10px;
	}
	/* nav in head_logo sp */
	.navlogo a{
		height: 68px;		
	}

}
@media screen and (min-width:768px){
	/* nav position tab-pc */
	#menu-bar{
		right:6.4%;
		top:20px;
	}
	/* nav in head_logo tab-pc */
	.navlogo a{
		height: 88px;
	}
}
#menu-button{
	width: 100%;
	height: 100%;
	text-align: center;
	box-sizing: border-box;
  line-height: 1;
  display: flex;
	justify-content: center;
  align-items: center;
	cursor: pointer;
	position: relative;
	transition: all .4s;
}

/* #icon animation ------------------------------ */
#menu-bar.active span:nth-of-type(1){
  -webkit-transform: translateY(13px) rotate(-45deg);
  transform: translateY(13px) rotate(-45deg);
}
#menu-bar.active span:nth-of-type(2){
  opacity: 0;
}
#menu-bar.active span:nth-of-type(3){
  -webkit-transform: translateY(-13px) rotate(45deg);
  transform: translateY(-13px) rotate(45deg);
}
/* ハンバーガーアイコン */
#menu-bar span:nth-of-type(1),#menu-bar span:nth-of-type(3){
	position: absolute;
	height: 1px;
	box-sizing: border-box;
	transition: all .4s;
	width: 40px;
	background:#1e1e1e;
	border-radius: 25%;
	cursor: pointer;
	font-size: 0;
}
#menu-bar span:nth-of-type(1){
	top: 10px;
	right: 4px;
}
#menu-bar span:nth-of-type(2){
	top: 0;
}
#menu-bar span:nth-of-type(3){
	bottom: 10px;
	right: 4px;
}



#nav_side{
  width: 69%;
  height: 100vh;
  position: fixed;
  z-index: 90;
  top: 0;
  right: -100%;
  background-color: #fff;
  border-left: solid 1px #ddd;
  transition: all 0.5s ease-out;
	box-sizing: border-box;
}
@media screen and (min-width:768px){
	#nav_side{
  	width: 48%;
	}
}



#nav_side.nav-menu-open {
  right: 0;
}

/* base link action -------------------- */
#sub_cnt nav ul{
	border-top:solid 1px #E4E4E4; 
}
#sub_cnt nav ul li{
	border-bottom:solid 1px #E4E4E4; 
}



#sub_cnt nav ul li a{
	width: 100%;
	height: 44px;
	line-height: 44px;
	padding-left: 6.4%;
	box-sizing: border-box;
	display: block;
	position: relative;
	font-size: 14px !important;
	color: #1e1e1e;
}
#sub_cnt nav ul li a::after{
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 6.4%;
	width: 3px;
	height: 3px;
	margin: -2px 0 0 0;
	border-top: solid 1px #1e1e1e;
	border-right: solid 1px #1e1e1e;
   	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);	
	}
#sub_cnt nav ul li a:hover{
	background:#1e1e1e;
	color:#FFF;
	border-bottom:solid 2px #1e1e1e;
	transition: all .4s;
}
#sub_cnt nav ul li a:hover::after{
	border-top: solid 2px #FFF;
	border-right: solid 2px #FFF;
}

#overlay{
  position: fixed;
  top:0;
  z-index: 80;
  width: 100vw;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  background: rgba(0,0,0,0.6);
  transition: all 0.5s ease-out;
}
#overlay.overlay-on{
  visibility: visible;
  opacity: 1;
}



/* side bunner */
.bunner_side{
	margin-top: 6.4%;
}
.bunner_side ul{
	font-size: 0;
	line-height: 0;
	box-sizing: border-box;
	padding: 0 6.4%;
}
.bunner_side ul li{}
.bunner_side ul li:nth-child(1){
	box-sizing: border-box;
	border: solid 1px #efefef;
}
.bunner_side ul li img{
	max-width: 100%;
}


