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

.rogo{
	position: absolute;
	top: 0;
	left: 0;
	padding: 10px 0 15px 30px;
	width: 157px;
}
.rogo img{
	width: 92%;
	height: auto;
}
.fix_menu{
	position: fixed;
	min-width: 100%;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	padding: 30px 0;
    background-color: #fff;
    opacity: 0.9;
	z-index: 999;
}
#navwrap{
	position: absolute;
	top: 0;
	right: 0;
	padding: 15px 30px 15px 0;
}
.header_menu{
	display: flex;
    padding: 8px;
}
ul,li{
	list-style: none;
	margin: 0;
}
.header_menu li a{
	cursor: pointer;
	padding: 0 10px;
	text-decoration: none;
	color: #333;
}
#switch{
	display: none;
}
.main p{
	padding: 500px 0;
	text-align: center;
}


@media only screen and (max-width: 766px) {
    
.fix_menu{
	max-width: 100%;
}
#switch ~ label {
		padding: 12px 12px;
		width: 60px;
		height: 60px;
		background: #fff;
		position: fixed;
		box-sizing: border-box;
		top: 0;
		right: 0;
		z-index: 999;
		cursor: pointer;
	}
#switch ~ label span{
		display: block;
		width:22px;
		height:2px;
		top: 50%;
		left: 0;
		right: 0;
		margin:auto;
		background: #333;
		position: absolute;
		-webkit-transition: 0.2s transform;
		transition: 0.2s transform;
	}
#switch ~ label span:before,
#switch ~ label span:after{
		content: "";
		display: block;
		background: #333;
		position: absolute;
		width:22px;
		height:2px;
		left: 0;
		right: 0;
		margin: auto;
	}
#switch ~ label span:before{
		top: -9px;
	}
#switch ~ label span:after{
		top: 9px;
	}
#navwrap{
		padding-top: 0;
		position: fixed;
		top: -100%;
		left: 0;
		width: calc(100% - 60px);
		height: 100%;
		background: #fff;
		transition: all 0.4s;
		padding: 60px;
		box-sizing: border-box;
	}
#switch:checked ~ #navwrap { 
		display: block; 
		top: 0;
	}
.header_menu{
		display: flex;
		flex-direction: column;
	}
.header_menu li{
		margin: 0 auto 30px;
	}
.header_menu li a{
		color: #333;
	}
.scroll-prevent {
		position: fixed;
		z-index: -1;
		width: 100%;
		height: 100%;
	}
}