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

/**
 * Design Shack Respnsive Menu
 */


* {
	padding: 0;
	margin: 0;
	
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

nav {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;	
}

nav ul {
	list-style: none;
	overflow: hidden;
}

nav li a {
	background: #291700;
	border-right: 1px solid #593d18;
	color: #ecc270;
	display: block;
	float: left;
	font: 400 14px/1.4 'verdana','ヒラギノ丸ゴ ProN W4','Hiragino Maru Gothic ProN','メイリオ','Meiryo','ＭＳ Ｐゴシック','MS PGothic',Sans-Serif;
	padding: 10px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	width: 16.5%;
	
	/*TRANSISTIONS*/
	-webkit-transition: background 0.5s ease;
	   -moz-transition: background 0.5s ease;
	     -o-transition: background 0.5s ease;
	    -ms-transition: background 0.5s ease;
	        transition: background 0.5s ease;
}

/*HOVER*/
nav li a:hover {
	background: #3a2100;
	color: #ecc270;
	text-decoration:none;
}

/*SMALL*/
nav small {
	font: 100 10px/1 Helvetica, Verdana, Arial, sans-serif;
	text-transform: none;
	color: #8a6115;
}

/*BORDER FIX*/
nav li:first-child a {
	border-left: 1px solid #593d18;
}


/* MEDIA QUERIES*/
@media only screen and (max-width : 960px),
only screen and (max-device-width : 960px){
	nav li a {
		font: 400 12px/1.4 'verdana','ヒラギノ丸ゴ ProN W4','Hiragino Maru Gothic ProN','メイリオ','Meiryo','ＭＳ Ｐゴシック','MS PGothic',Sans-Serif;
	}
	
	nav small {
		font: 100 12px/1 'verdana','ヒラギノ丸ゴ ProN W4','Hiragino Maru Gothic ProN','メイリオ','Meiryo','ＭＳ Ｐゴシック','MS PGothic',Sans-Serif;
	}
}

@media only screen and (max-width : 767px),
only screen and (max-device-width : 767px){
	nav li a {
		width: 33%;
		border-bottom: 1px solid #593d18;
		font: 400 12px/1.4 'verdana','ヒラギノ丸ゴ ProN W4','Hiragino Maru Gothic ProN','メイリオ','Meiryo','ＭＳ Ｐゴシック','MS PGothic',Sans-Serif;
	}
	
	nav li:first-child a {
		border-left: none;
	}

	nav li:nth-child(3) a, nav li:nth-child(6) a {
		border-right: none;
	}
	
}

@media only screen and (max-width : 481px),
only screen and (max-device-width : 481px){
	nav li a {
		width: 50%;
		border-bottom: 1px solid #593d18;
		font: 400 12px/1.4 'verdana','ヒラギノ丸ゴ ProN W4','Hiragino Maru Gothic ProN','メイリオ','Meiryo','ＭＳ Ｐゴシック','MS PGothic',Sans-Serif;
		padding-top: 12px;
		padding-bottom: 12px;
	}
	
	nav li:nth-child(even) a {
		border-right: none;
	}
	
	nav li:nth-child(3) a {
		border-right: 1px solid #593d18;
	}
	
	nav li:first-child a {
		border-left: none;
	}

}

@media only screen and (max-width : 320px),
only screen and (max-device-width : 320px){
	nav li a {
		font: 400 11px/1.4 'verdana','ヒラギノ丸ゴ ProN W4','Hiragino Maru Gothic ProN','メイリオ','Meiryo','ＭＳ Ｐゴシック','MS PGothic',Sans-Serif;
	}
}