@charset "utf-8";
/* CSS Document */

/*ヘッダーナビゲーション*/

header{
	width: 100%;
	padding: 7rem 0 0;
	position: absolute;
}

#gnav{
	width: 70%;
	margin: 0 auto;
}

#gnav a{
	display: block;
	height: 40px;
	padding-top: 1.8rem;
	color: #333;
	text-decoration: none;
	font-size: 1.2rem;
	letter-spacing:2px;
	text-shadow: 0 0 20px #fff;
}

#gnav a:hover{
	background: url(../img/MIZU.png) no-repeat;
	background-position: center,center;
	background-size: contain;
	mix-blend-mode: normal;
}



/*サイドドロワーメニューバー*/


#btn_open{
	display: none;
}

#btn_menu{
	display: block;
	width: 96px;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10000;
	background: rgb(17,92,119); 
	background: linear-gradient(135deg,  rgba(17,92,119,1) 0%,rgba(53,135,168,1) 100%); 
}

#btn_menu span{
	width: 26px;
	height: 4px;
	display: block;
	position: fixed;
	background-color: #fff;
	border-radius: 5px;
	transition: all 0.2s linear;
}

#btn_menu span:nth-of-type(1){
	top: 48.5%;
	right: 35px;
	transform: rotate(0);
}

#btn_menu span:nth-of-type(2){
	top: 50%;
	right: 35px;
	transform: scale(1);
}

#btn_menu span:nth-of-type(3){
	top: 51.5%;
	right: 35px;
	transform: rotate(0);
}

#btn_open:checked + label span:nth-of-type(1){
	top: 50%;
	right: 35px;
	transform: rotate(-45deg);
	background: #fff;
}

#btn_open:checked + label span:nth-of-type(2){
	transform: scale(0);
}

#btn_open:checked + label span:nth-of-type(3){
	top: 50%;
	right: 35px;
	transform: rotate(45deg);
	background: #fff;
	}




#side_gnav{
	width: 60%;
	height: 100%;
	padding: 90px 0 0 20%;
	background: rgb(17,92,119,.7); 
	background: linear-gradient(135deg,  rgba(17,92,119,.7) 0%,rgba(53,135,168,.7) 100%); 
	overflow: hidden;
	position: fixed;
	z-index: 100;
	top: 0;
	right: -100%;
	text-align: left;
	transition: .5s .1s;
}

.side_logo{
	width: 40px;
	position: absolute;
	top: 90px;
	left: 10%;
}
.side_sns{
	width: 30px;
	position: absolute;
	bottom: 90px;
	left: 10%;
}


#side_gnav ul{
	padding-left: 0;
	flex-direction: column;}

#side_gnav li{
	margin-bottom: 10px;
	line-height: 1.5;
}

#side_gnav nav a{
	color: #fff;
	text-decoration: none;
	font-size: 1.2rem;
	letter-spacing: 2px;
	display: inline-block;
	height: 25px;
	padding-top: 1rem;
}
#side_gnav nav a:hover{
	background: url(../img/MIZU.png) no-repeat;
	background-position: left , top;
	background-size: contain;
	mix-blend-mode: hard-light;
}


.side_text{
	width: 70%;
	max-width: 250px;
	margin: 10% 2rem 0 0;
}

.side_text p{
	color: #fff;
	text-align: left;
	font-size: 1rem;
	letter-spacing: 2px;
	line-height: 3.5rem;
	font-family: "Sawarabi Mincho";
}


#btn_open:checked ~ #side_gnav{
	right: 0;
}

#btn_menu{
	cursor: pointer;
}









/*フッター*/

footer{
	width: calc(100% - 96px);
	margin-right: 96px;
	background-color: #D0DDE3;
	padding: 7rem 7rem;
	margin-top: 10rem;
}

#footer_gnav{
	width: 70%;
	margin: 0 auto;
}

#footer_gnav a{
	display: block;
	height: 40px;
	padding-top: 1.8rem;
	color: #333;
	text-decoration: none;
	font-size: 1.2rem;
	letter-spacing:2px;
	transition: .2s;
	text-shadow: 0 0 8px #777;
}

#footer_gnav a:hover{
	background: url(../img/MIZU.png) no-repeat;
	background-position: center,center;
	background-size: contain;
	mix-blend-mode: hard-light;
}


.copy{
	margin-top: 7rem;
}

.copy p{
	text-align: center;
}

.copy small{
	font-size: 1rem;
	color: #333;
	text-decoration: none;
	letter-spacing:2px;
	text-shadow: 0 0 8px #777;
}







@media screen and (max-width:1000px){
	
	#gnav li{
		display: inline-block;
		width: 30%;
		text-align: center;
	}
	
	
	
	
	
	
	#side_gnav{
		width: 100%;
		height: 100%;
		padding: 90px 0 0 20%;
		background: rgb(17,92,119,.7); 
		background: linear-gradient(135deg,  rgba(17,92,119,.7) 0%,rgba(53,135,168,.7) 100%); 
		overflow: hidden;
		position: fixed;
		z-index: 100;
		top: 0;
		right: -100%;
		text-align: left;
		transition: .5s .1s;
	}

	#btn_menu{
		display: block;
		width: 26px;
		height: 26px;
		position: fixed;
		top: 5%;
		right: 5%;
		z-index: 10000;
		background: none; 
	}

	#btn_menu span{
		width: 26px;
		height: 4px;
		display: block;
		position: fixed;
		background-color: #333;
		border-radius: 0;
		transition: all 0.2s linear;
	}
	
	#btn_menu span:nth-of-type(1){
		top: 5%;
		right: 5%;
		transform: rotate(0);
	}

	#btn_menu span:nth-of-type(2){
		top: 6.5%;
		right: 5%;
		transform: scale(1);
	}

	#btn_menu span:nth-of-type(3){
		top: 8%;
		right: 5%;
		transform: rotate(0);
	}

	#btn_open:checked + label span:nth-of-type(1){
		top: 6.5%;
		right: 5%;
		transform: rotate(-45deg);
		background: #333;
	}

	#btn_open:checked + label span:nth-of-type(2){
		transform: scale(0);
	}

	#btn_open:checked + label span:nth-of-type(3){
		top: 6.5%;
		right: 5%;
		transform: rotate(45deg);
		background: #333;
	}

	#side_gnav .nav{
		padding-left: 5rem;
	}
	
	
	
	footer{
		width: 100%;
		margin-right: 0;
	}
	
	#footer_gnav{
		width: 100%;
	}
	
	#footer_gnav li{
		display: inline-block;
		width: 30%;
		text-align: center;
	}
	
	
	
}/*1000px*/





@media screen and (max-width:480px){

	#gnav li{
		width: 50%;
	}
	
	#footer_gnav li{
		width: 50%;
	}


}/*480px*/
















