/*ヘッダーのスタイル*/

header{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 10vh;
	z-index: 4;
	font-size: 1.7vh;
}

.rogo{
	display: inline-block;
	max-height: 10vh;
	max-width: 27%;
	float: left;
}

#nav{
	position: absolute;
	right: 4%;
	list-style: none;
	line-height: 1.5;
}

#nav li{
	text-align: center;
	background-color: orange;
	margin-right: 5px;
	margin-bottom: 5px;
	max-width: 20vh;
}

#nav li:hover{
	background-color: aqua;
	cursor: pointer;
}

#nav li a{
	text-decoration: none;
	color: white;
	padding: 10px;
}

