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

html, 
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: Gotham, Helvetica Neue, Helvetica, Arial," sans-serif";
}

header {
    padding: 32px;
}

body{
    margin-left: auto;
    margin-right: auto;
    background-color: #e6f4f8;
}

img{
    width: 100%;    /*親要素の幅に合わせる*/

    height: auto;
    vertical-align: middle;
}

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

.style_logo {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 197px;
}

.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;
}

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

h1{
    font-size: 40px;
    font-weight: 200px;
    margin-bottom: 50px;
}

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

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

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

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

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

.beige_box {
    background-color: #b9a88e;
    color: #fff;
    padding: 60px 30px;
    text-align: center;
}

.gray_box {
    background-color: #2d2d35;
    color: #fff;
    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;
    /*font-weight: 200px;モバイル用と同じなので削除でOK*/
    margin-bottom: 90px;
}
    

    
.col-md-half{
    width: 50%;

}

.col{
    float: left;
    padding: 0 7px 14px;
    }
    
    
.row::after {/*フロートの解除　コロン２個は擬似要素≠擬似クラス*/
  content: "";
  display: block;
  clear: both;
}
    
}





/*デスクトップビュー*/
@media (min-width: 1024px){
    
    body{
        max-width: 1200px;
        
    }
    
    .style_logo {
        float: left;
        
    }
    
    .style_nav {
        float: right;
    }
    
    .col-lg-qtr {
		width: 25%;
	}
    
}
