@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";
}

header {
	background-color: #FFFFFF;
	padding: 10px ;
}

body {
	margin-left: auto;
	margin-right: auto;
}

.col {
	width: 100%;
	background-color: #919191;
}

img {
	width: auto;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	padding: 5px;
}

.adrres {
	background-color: #FFFFFF;
	padding: 20px 20px 20px 20px;
	color: #000000;
	text-align: center;
}

h1 {
	font-size: 45px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 30px;
}

h2 {
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 23px;
}

h3 {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 120px;
}

h4 {
	font-size: 16px;
	font-weight: 200;
	margin-bottom: 20px;
}

h5 {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 10px;
}

p {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 15px;
}

.style-logo {
	margin-left: auto;
	margin-right: auto;
	display: block;
	width: 500px;
}

.style-nav ul {
	list-style-type: none;
	font-size: 20px;
}

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




.row:before, .row:after {
	content: "";
	display: table;
}

.row:after {
	clear: both;
}

/*Tablet View*/

@media (min-width: 768px){
	
	body {
		max-width: 778px;
	}
	
	.style-nav ul li {
		display: inline-block;
	}
	
	.style-nav ul {
		text-align: center;
		font-size: 25px;
	}
	
	h1 {
		font-size: 40px;
		margin-bottom: 90px;
	}
	
	h2 {
		margin-bottom: 16px;
	}
	
	.col-md-one-half {
		width: 50%;
	}
	
	.col {
		float: left;
		padding: 0px 7px 14px;
	}
}

/*Desktop View*/

@media (min-width: 1000px){
	
	body {
		max-width: 1024px;
	}
	
	.style-logo {
		float: left;
	}
	
	.style-nav {
		float: right;
	}
	
	.style-nav ul {
		font-size: 17px;
		padding-top: 5px;
	}
	
	.col-lg-one-fourth {
		width: 25%;
	}
}

