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

html,
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"; 
}

header {
	padding: 32px;
}

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

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

footer {
	padding: 20px 30px;
	background-color: #bdecf1;
}

.style-logo {
	margin-left: auto;
	margin-right: auto;
	padding: 0px 0px 5px 0px;
	display: block;
	width: 200px;
}

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

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

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

.row:after {
	clear:both;
}

.hero {
	background-image: url("../image/topimage01.png");
	background-size: cover;
	padding: 20px 20px 50px 20px;
	color: #ffffff;
	text-align: center;
}

h1 {
	font-size: 32px;
	font-weight: 200;
	margin-bottom: 20px;
}

h2 {
	font-size: 24px;
	font-weight: 200;
	margin-bottom: 20px;
}

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

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

p {
	font-size: 16px;
	font-weight: 200;
	margin-bottom: 30px;	
}

a {
	color: #ffffff;
}

.button {
	border: 2px #dddddd solid;
	padding: 8px 20px;
	border-radius: 30px;
	color: #ffffff;
	text-decoration: none;
}

.beige-box {
	background-color: #b9a88e;
	color: #ffffff;
	padding: 60px 30px;
	text-align: center;
}

.gray-box {
	background-color: #2d2d35;
	color: #ffffff;
	padding: 60px 30px;
	text-align: center;
}

.footer-text {
	font-size: 11px;
	margin-bottom: 20px;
}

.col {
	width: 100%;
}



/*　タブレット用　*/
@media (min-width: 768px){
	
	body{
		max-width: 778px;
	}
	
	.style-nav ul li {
		display: inline-block;
	}
	
	.style-nav ul {text-align: center;}
	
	h1 {
	font-size: 30px;
	margin-bottom: 90px;
}
	
	h2 {
	margin-bottom: 16px;
}
	
	
	
	.col-md-half {
		width: 50%;
	}
	
	.col {
		float: left;
		padding: 0px 7px 14px;
	}
	
}

/*　デスクトップ用　*/
@media (min-width: 1024px){
	
	body{
		max-width: 1200px;
	}
	
	.style-logo {
		float: left;
	}
	
	.style-nav {
		float: right;
	}
	
	.col-lg-qtr {
		width: 25%;
	}
	
}


