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

html,
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}

body{
	background-image: url(../img/hero.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}
header{
	padding: 32px;
}

.style-logo {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 5%;
	display: block;
}

.style-nav ul {
	list-style-type: none;
}

.style-nav ul li a {
	text-decoration: none;
	color: #FFFFFF;
	text-align: center;
	display: block;
	padding: 8px;
}


/*タブレット用*/
@media (min-width: 768px){
	
	.style-nav ul li {
		display: inline-block;
	}
	
	.style-nav ul {text-align: center;}
}




/*デスクトップ用*/
@media (min-width: 1024px){
	
	.style-logo {
		
		float: left;
	}
	
	.style-nav {
		
		float:right;
		padding-top: 30px;
	}
}