@charset "UTF-8";


/* google fonts */
.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}    

.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}


/*基本*/
* {
	margin: 0;
	padding: 0;
    box-sizing: border-box;
    text-decoration: none;
	list-style: none;
    font-family: "Zen Maru Gothic", sans-serif;
}


/*モバイルビュー575px*/
body{
    margin: 0 auto;
    background-color: #333C4A;   
}

header{
    color: #F8FCEB;
    margin-bottom: 120px;
}

h1{

    font-size: 30px;
    font-weight: 200px;
    margin: 20px auto;
    text-align: center;
}

nav ul li{
    width: 100%;
}

a{
    display: block;
    padding: 16px;
    text-align: center;
    color: #F6F7D3;
    font-weight: bold;
    transition: 0.5s;

}

a:hover{
     background-color: rgb(73, 86, 100, 0.7);
}

footer{
    height: 300px;
    background: url("images/background.png") no-repeat center 10px;
    background-size: 575px;
}


/*タブレットビュー768px*/
@media (min-width: 768px){
    
    body{
        max-width: 778px;
    }
    
    header{
        margin-bottom: 120px;
    }
    
    nav ul li {
        display: inline-block;
        align-items: center;
    }
    
    a{
        margin: 20px;
    }
    
    
    h1{
        font-size: 40px;
        margin-bottom: 40px;
    }
    
    .col-md-half {
        float: left;
        width: 50%;
    }
    
    
    .row::after {
        content: "";
        display: block;
        clear: both;
    }
    
}



/*デスクトップビュー1024x*/
@media (min-width: 1024px){
    
    body{
        margin: 0;
        max-width: 1200px;
        background: url("images/background.png") no-repeat  fixed;
        background-position: 140%;
        background-size: 60%;
        background-color: #333C4A;
    }
    
    h1{
        margin-left: 100px;
        font-weight: 200px;
        text-align: left;
    }

    
    .col-lg-qtr {
        width: 33%;
	}
    
    
    footer{
     background: url("#");
    }

    
}