@charset "UTF-8";

/*-----------------------------------------------------*/
/* PC用のCSS ！始まり！ */
/*-----------------------------------------------------*/
@media only screen and (min-width: 1000px) {





.container{
    width: 800px;
    margin: 0 auto;
}

.header{
    width: 100%;
    height: 200px;
    background-image: url(../img/header.png);
    background-size: cover;
}

.header h1{
    color: aliceblue;
    padding-top: 65px;
    padding-left: 75px;
    font-family: 'Noto Sans JP', sans-serif;
}

.header p{
    color: aliceblue; 
    padding-left: 75px; 
    font-size: 14px;
    font-family: 'Noto Sans JP', sans-serif;
}

.navi{
    width: 100%;
    margin: 0 auto;
    margin-top: 25px;
}

.navi ul{
    display: flex;
    justify-content: center;
    font-size: 14px;
}

.navi li{
    list-style: none;
}

.menuitem{
    margin-right: 10px;
}

.main{
    width: 100%;
    margin-top: 40px;
    display: flex
}

.contents{
    width: 70%;
}

.contents h2{
    padding-left: 15px;
}

.contents img{
    width: 100%;
    margin-top: 20px;
}

.contents p{
    margin-top: 20px;
    margin-left: 10px;
    font-size: 11px;
    font-weight: 540;
    line-height: 1.8;
}

.menu{
    width: 30%;
}

.menu h2{
    margin-left: 10px;
}

.menu ul{
    margin-top: 25px;
    margin-left: 50px;
    font-size: 14px;
    line-height: 1.7;
}

.footer{
    width: 100%;
    height: 70px;
    background-color: rgba(35, 120, 28, 0.802);
    margin-top: 20px;
}

.footer p{
    padding: 40px 0 0 60px;
    color: aliceblue;
    font-size: 13px;
    font-weight: 530;
}





}
/*-----------------------------------------------------*/
/* PC用のCSS ！終わり！ */
/*-----------------------------------------------------*/





/*-----------------------------------------------------*/
/* タブレット用のCSS ！始まり！ */
/*-----------------------------------------------------*/
@media only screen and (min-width:480px) and (max-width:999px) {

 



    body{
      min-width: 480px;
      max-width: 999px;
    }
    
    
    
    
    
    }
/*-----------------------------------------------------*/
/* タブレット用のCSS ！終わり！ */
/*-----------------------------------------------------*/





/*-----------------------------------------------------*/
/* スマホ用のCSS ！始まり！ */
/*-----------------------------------------------------*/
@media only screen and (max-width: 479px) {





    body{
      max-width: 479px;
    }





    .container{
        width: 100%;
    }
    
    .header{
        width: 100%;
        height: 120px;
        background-image: url(../img/header.png);
        background-size: cover;
    }
    
    .header h1{
        color: aliceblue;
        padding-top: 35px;
        padding-left: 50px;
        font-size: 20px;
        font-family: 'Noto Sans JP', sans-serif;
    }
    
    .header p{
        color: aliceblue; 
        padding-left: 50px; 
        font-size: 9px;
        font-family: 'Noto Sans JP', sans-serif;
    }
    
    .navi{
        width: 100%;
        margin: 0 auto;
        margin-top: 25px;
    }
    
    .navi ul{
        display: flex;
        justify-content: center;
        font-size: 10px;
    }
    
    .navi li{
        list-style: none;
    }
    
    .menuitem{
        margin-right: 6px;
    }
    
    .main{
        width: 100%;
        margin-top: 40px;
        display: flex
    }
    
    .contents{
        width: 70%;
    }
    
    .contents h2{
        padding-left: 15px;
        font-size: 18px;
    }
    
    .contents img{
        width: 100%;
        margin-top: 20px;
    }
    
    .contents p{
        margin-top: 20px;
        margin-left: 10px;
        font-size: 11px;
        font-weight: 540;
        line-height: 1.8;
    }
    
    .menu{
        width: 30%;
    }
    
    .menu h2{
        margin-left: 10px;
        font-size: 18px;
    }
    
    .menu ul{
        margin-top: 25px;
        margin-left: 30px;
        font-size: 10px;
        line-height: 1.7;
    }
    
    .footer{
        width: 100%;
        height: 70px;
        background-color: rgba(35, 120, 28, 0.802);
        margin-top: 20px;
    }
    
    .footer p{
        padding: 40px 0 0 30px;
        color: aliceblue;
        font-size: 10px;
        font-weight: 530;
    }
    
    
    
    
    
    }
    /*-----------------------------------------------------*/
    /* スマホ用のCSS ！終わり！ */
    /*-----------------------------------------------------*/