/* Clearfix */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}

/* Basic Styles */
body {
	background-color: #ece8e5;
}
nav {
	height: 50px;
	width: 100%;
	background: #333;
	font-size: 13pt;
	font-family: 'PT Sans', Arial, sans-serif;
	font-weight: bold;
	position: relative;
	border-bottom: 2px solid #333;
}
nav ul {
	padding: 0;
	max-width: 1200px;
	height: 50px;
	margin: 0 auto;
}
nav li {
	display: inline;
	float: left;
	width: 16.65%;
	margin: 0 auto;
}
nav a {
	color: #fff;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	line-height: 50px;
}
nav li a {
	width: 100%;
	border-right: 1px solid #fff;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
nav li:last-child a {
	border-right: 0;
}
nav a:hover, nav a:active {
	color: #fff;
	background-color: #666666;
}
nav a#pull {
	display: none;
}
/*================================================
 *  タブレット向けデザイン
 ================================================*/
/* スクロールバーを考慮して20px大きいサイズで切り替え */
@media screen and (max-width : 1024px ){
	nav { 
  		height: auto;
		font-size: 14px;
  	}
  	nav ul {
  		width: 100%;
  		display: block;
  		height: auto;
  	}
  	nav li {
  		width: 16.65%;
		margin: 0 auto;
  		float: left;
  		position: relative;
  	}
  	nav li a {
		width: 100%;
		border-right: 1px solid #576979;
	}
  	nav a {
	  	text-align: center;
	  	width: 100%;
  	}
}

/*Styles for screen 767px and lower*/
@media screen and (max-width : 768px ){
	nav { 
  		height: auto;
		border-bottom:none;
		font-size: 14px;
  	}
  	nav ul {
  		width: 100%;
  		display: block;
  		height: auto;
  	}
  	nav li {
  		width: 50%;
  		float: left;
  		position: relative;
  	}
  	nav li a {
		border-bottom: 1px solid #576979;
		border-right: 1px solid #576979;
	}
  	nav a {
	  	width: 100%;
	  	text-indent: 20px;
  	}

}


/*Styles for screen 515px and lower*/
@media only screen and (max-width : 425px ){
	nav {
		border-bottom: 0;
	}
	nav ul {
		display: none;
		height: auto;
	}
	nav a#pull {
		display: block;
		background-color: #283744;
		width: 100%;
		position: relative;
		height: 30px;
	}
	nav a {
	    line-height: 30px;
		font-size: 12px;
		
	}
}

/*Smartphone*/
@media only screen and (max-width : 375px) {
}
@media only screen and (max-width : 320px) {
	nav li {
		display: block;
		float: none;
		width: 100%;
	}
	nav li a {
