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

/*リセットCSS*/
html,
html *{
    padding:0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, "sans-serif";

}
/*レイアウト設定*/

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

.col{
    width:100%;
}

.row:before, .row:after{
    content:"";
    display: table;
}
/*フロート解除*/
.row:after{
    clear:both;
}


/*ヘッダー*/
header{
    padding:32px;
}

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

.style-nav ul{
    list-style: 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("images/hero.jpg");
    background-size: cover;
    padding:20px 20px 50px 20px;
    color:#fff;
    text-align: center;
}
h1{
    font-size:40px;
    font-weight:200;
    margin-bottom:50px;
}
h2{
    font-size:24px;
    font-weight:200;
    margin-bottom:20px;
}
h3{
    font-size:16px;
    font-weight:200;
    margin-bottom:100px;
}
h4{
    font-size:14px;
    font-weight:200;
    margin-bottom:20px;
}
p{
    font-size:16px;
    font-weight:200;
    margin-bottom:30px;
}
.button{
    border:2px solid #fff;
    padding:8px 20px;
    border-radius: 30px;
    color:#fff;
    text-decoration: none;
}
.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;
}
img{
    width:100%;
    max-width:100%;
    vertical-align: middle;
}

/*フッター*/
footer{
    padding:20px 30px;
    background-color: #bdecf1;
}

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





/*Tablet View*/
@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;
    }
    .col-md-half{
        width:50%;
    }
    .col{
        float:left;
        padding:0 7px 14px;
    }
}
/*Deskyop View*/
@media (min-width: 1024px){
    body{
        max-width:1000px;
    }
    .style-logo{
        float: left;
    }
    .style-nav{
        float: right;
    }
    .col-lg-qtr{
        width:25%;
    }
}
