@charset "utf-8";
/* CSS Document */
@media screen and (min-width:769px) {
header {
	padding: 10px;
	height: 120px;
	margin: 0 auto 100px;
}
.header-logo-menu {
	position: static;
}
.logo-area {
	font-size: 0.75em;
	text-align: center;
	margin: auto;
	z-index: auto;
}
#nav-drawer {
	}
#nav-content {
	width: 90%;
	min-width: 769px; /*最大幅（お好みで調整を）*/
	max-width: 950px;
	margin: 0 auto ;
	position: absolute;
	top: 70px;
	left: 50%;
	transition: .3s ease-in-out;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
#nav-content ul {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
}
#nav-content ul li {
	width: 15%;
	display: inline-block;
	border: 1px solid #0C0C0C;
	padding: 0.6em 0.2em;
	font-size: 1rem;
	text-align: center;
}
#nav-content ul li a{
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color:#0C0C0C;
}
#nav-content ul li a:hover{
	opacity:0.5;
}
.nav-unshown {
	display: none;
}
#nav-open {
	display: none;
}
}
@media screen and (max-width:768px) {
header {
	padding: 15px;
/*	background: #ccc;*/
	margin: 0 auto 50px;
}
.header-logo-menu {
	position: relative;
}
#nav-drawer {
	position: relative;
	order: 2;
}
/*チェックボックス等は非表示に*/
.nav-unshown {
	display: none;
}
/*アイコンのスペース*/
#nav-open {
	display: inline-block;
	width: 30px;
	height: 22px;
	vertical-align: middle;
}
/*ハンバーガーの形をCSSで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
	position: absolute;
	height: 3px; /*線の太さ*/
	width: 25px; /*長さ*/
	border-radius: 3px;
	background: #555;
	display: block;
	content: '';
	cursor: pointer;
}
#nav-open span:before {
	bottom: -8px;
}
#nav-open span:after {
	bottom: -16px;
}
/*閉じる用の薄黒箇所*/
#nav-close {
	display: none;
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: .3s ease-in-out;
}
/*メニューの中身*/
#nav-content {
	overflow: auto;
	position: fixed;
	top: 50px;
	right: 0;
	z-index: 9999;
	width: 70%;
	max-width: 330px; /*最大幅（お好みで調整を）*/
	height: 100%;
	background: rgba(255,255,255,0.9);
	transition: .3s ease-in-out;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);/*左メニュー時 -105%*/
}
#nav-content ul {
	width: 100%;
	margin: 70px 0;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
}
#nav-content ul li {
	width: 60%;
	margin: 10px auto;
	padding: 0.6em;
	border: 1px solid #0C0C0C;
	font-size: 1rem;
	text-align: center;
	background: white;
}
#nav-content ul li a{
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color:#0C0C0C;	
}

	
/*チェックがついたら表示させる*/
#nav-input:checked ~ #nav-close {
	display: block;
	opacity: .5;
}
#nav-input:checked ~ #nav-content {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
}
.header-logo-menu {
	display: flex;
	display: -moz-flex;
	display: -o-flex;
	display: -webkit-flex;
	display: -ms-flex;
	flex-direction: row;
	-moz-flex-direction: row;
	-o-flex-direction: row;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
}
/*ロゴやサイトタイトルをセンタリング*/
.logo-area {
	text-align: center;
	margin: -5px auto;
	font-size: 0.8em;
}
}