@import url('https://fonts.googleapis.com/css2?family=Open Sans:wght@400;500;600&display=swap');

body{
	line-height: 1.5;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	background-color: #000000;
}
body.hidden-scrolling{
	overflow-y: hidden;
}
*{
	margin:0;
	box-sizing: border-box;
	
}
.container{
	width: 95vw;
	max-width: 1200px;
	margin:auto;
}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none!important;
}
a:visited{
	text-decoration: none!important;
}


/*header*/
.header{
	align-items: flex-start;
	background-color: #000033;
	display: flex;
	flex-direction: row;
	flex-shrink: 1;
	justify-content: flex-end;
white-space: nowrap;
	padding: 0 0px;
	width: 100vw;
}
.header-main{
	background-color: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	
	border-radius: 4px;
}

.header .logo img{
    width: 80px;
	margin:15px;
}
.header .nav-menu{
	padding: 0px;
	white-space: nowrap;
	
	}
.header .menu > .menu-item{
	display: inline-block;
	margin-left: 1.3vw;
	position: relative;
}
.header .menu > .menu-item > a{
	display: block;
	padding: 12px 0;
	font-size: clamp(10px, 1.5vw, 15px);
	color: rgba(255,255,255,0.77);
	text-transform: capitalize;
	font-weight: 600;
	transition: all 0.3s ease;
}
.header .menu > .menu-item > a .plus{
	display: inline-block;
	height: 12px;
	width: 12px;
	position: relative;
	margin-left:5px; 
	pointer-events: none;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after{
	content:'';
	position: absolute;
	box-sizing: border-box;
	left: 50%;
	top:50%;
	background-color: #D5D5D5;
	height: 2px;
	width: 100%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after{
   background-color: #ffffff;
}
.header .menu > .menu-item > a .plus:after{
   transform: translate(-50%,-50%) rotate(-90deg);	
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
	color: #ffffff;
}
.header .menu > .menu-item > .sub-menu{
	
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	width: 220px;
	position: absolute;
	left:0;
	top:100%;
	background-color:rgba(0,0,0,0.7);
	padding: 10px 0;
	border-top: 3px solid #ffffff;
	transform: translateY(10px);
	transition: all 0.3s ease;
	opacity:0;
	visibility: hidden;
	z-index: 998;
}
.header .menu > .menu-item > .sub-menu a{
	display: block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	color: rgba(225,225,225,0.7);
	transition: all 0.3s ease;
	text-transform: capitalize;
	z-index: 997;
}



footer {
 
 position: sticky !important;
  top: 100vh;
  width: 100%;

  margin-top: 100px;
height: 100px;
margin-bottom: 10px;

}

.icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  font-size: 20px;
  color: #E6E6E6;
  text-align: center;
  line-height: 35px;
  margin: 10px 10px 5px ;
	
}
.copyright{
	color:#B3B3B3;
	text-decoration: none;
	font-size: 12px;
	line-height: 20px;
	margin-bottom: 20px;
}
.copyright a{
	color:#B3B3B3;
	
}
.copyright a:visited{
	color:#B3B3B3;
	
}

.recycle{
	
	text-align:center;
}

@media(min-width: 992px){
.header .menu > .menu-item-has-children:hover > .sub-menu{
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
 }
 .header .menu > .menu-item-has-children:hover > a .plus:after{
    transform: translate(-50%,-50%) rotate(0deg);		
 }
}
.header .menu > .menu-item > .sub-menu > .menu-item{
	display: block;
}
.header .menu > .menu-item > .menu-item > a{
	display: block;
	padding: 10px 20px;
	font-size: 17px;
	font-weight: 600;
	color: #000000;
	transition: all 0.3s ease;
	text-transform: capitalize;
}

.header .open-nav-menu{
	height: 34px;
	width: 40px;
	margin-right: 15px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.header .open-nav-menu span{
	display: block;
	height: 3px;
	width: 24px;
	background-color: #FFFFFF;
    position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
	content: '';
	position: absolute;
	left:0;
	width: 100%;
	height: 100%;
	background-color: #FFFFFF;
	box-sizing: border-box;
}
.header .open-nav-menu span:before{
	top:-7px;

}
.header .open-nav-menu span:after{
	top:7px;
}
.header .close-nav-menu{
	height: 40px;
	width: 40px;
	background-color:none;
	fill:#fff;
	margin:0 0 15px 15px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
}
.header .close-nav-menu img{
	width: 16px;
	
}
.header .menu-overlay{
	position: fixed;
	z-index: 999;
	background-color: rgba(0,0,0,0.5);
	left:0;
	top:0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	opacity:0;
	transition: all 0.3s ease;
}

/*home section*/
.home-section{
	width: 100%;
	display: block;
	min-height: 100vh;
	background-position: center top;
	background-size: cover;
}

.burger-btn{
	display: none;
	
	
}



/* responsive */

@media(max-width: 991px){
	.menu li:hover{
		color: rgba(208,208,208,0.3);

		transition-duration: 0.2s;
	}
	.menu{
		margin-left: 30vw;
	}
	.header .menu-overlay.active{
	visibility: visible;
	opacity: 1;
}
	.header{
		z-index: 999;
	}
		.nav-menu{
display: none;
		position: fixed;
		top:0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: rgb(0, 0, 0,0.9);
		z-index: 998;
		
	}
	.menu-item{
		margin: 0 0 1vh;
	}
	.menu-item a{
		font-size: 20px !important;
	
		}
	.menu-item-has-children a{
		font-size: 20px !important;
		

		}
	.menu-item:last-of-type{
		margin-bottom: 0;
		
	}
	
	.header .menu > .menu-item{
		display: block;
	
	}
	.header .menu > .menu-item-has-children > a{
		display: flex;
		justify-content: space-between;
	
	}
	
	.header .menu > .menu-item > a{
		color: rgba(255,255,255,0.77);
		padding: 12px 15px;
		
	}
	.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
	color: #ffffff;
}
	.header .menu > .menu-item:first-child > a{
	   
	}
	.header .menu > .menu-item > a .plus:before, 
	.header .menu > .menu-item > a .plus:after{
		background-color: #ffffff;
	}
	.header .menu > .menu-item-has-children.active > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
	}
	.header .menu > .menu-item > .sub-menu{
		width: 100%;
		position: relative;
		opacity: 1;
		visibility: visible;
		border:none;
		background-color: transparent;
		box-shadow: none;
		transform: translateY(0px);
		padding: 0px;
		top:auto;
		max-height: 0;
		overflow: hidden;
	
	}

	
	.header .menu > .menu-item > .sub-menu > .menu-item > a{
		padding: 5px 45px;
		color: rgba(255,255,255,0.77);

		font-size: 17px!important;
	}
	.header .menu > .menu-item > .sub-menu > .menu-item > a:hover{
		padding: 5px 45px;
		color: #ffffff;
		font-size: 17px!important;
	}
	.header .close-nav-menu,
	.header .open-nav-menu{
		display: flex;
	}
	
		
	
	/* ハンバーガーボタン */
	.burger-btn{
		display: block;
		position:absolute;
		top: 30px;
		right: 5vw;	
		z-index: 999;
		
		
	}
	.burger-btn .bar{
		display:block;
		height: 3px;
		width: 30px;
		background-color: #fff;
		transition: .3s;

	} 
	.burger-btn{
		background-color: #000000;
		border: none;
		

	} 
	.burger-btn bar:hover{
		cursor: pointer;
	}
	
	
	.bar_top,
	.bar_mid{
		margin-bottom: 8px;
	}

	.burger-btn.cross .bar_top{
		transform: rotate(45deg) translate(8px,8px);
	}
	.burger-btn.cross .bar_mid{
		opacity: 0;
	}
	.burger-btn.cross .bar_bottom{
		transform: rotate(-45deg) translate(8px,-8px);
	}
	
	.footer{
	margin-top:500;
}
}

