@charset 'utf-8';
*{margin: 0;padding: 0;box-sizing: border-box;}
body{line-height: 1;}
img{vertical-align: bottom;max-width: 100%;background-repeat: no-repeat;}

.container{
    border: 1px solid #f00;
    max-width: 500px;
    margin: 0 auto;
    
    font-family: "Meiryo", "メイリオ", sans-serif;

    /* test */
    
    /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
}


header{
    background-image: url(../img/header_herb.jpg);
    /* test */
    border: 1px solid #f00;
    
    
    width: 500px;
    height: 200px;

    color: #fff;
    margin-bottom: 20px;
}

h1{
    text-align: right;
    font-size: 24px;
    font-weight: bold;
    /* font-family: 'Futura', 'Futura-Medium', sans-serif; */
    font-family: 'League Spartan', sans-serif;
    padding: 10px;
}

header p{
    text-align: right;
    /* font-size: 19px; */
    padding-right: 18px;
    font-size: 0.8em;
}

nav{
    margin-bottom: 20px;
}
nav ul li{
    list-style: none;
    text-align: center;
    background-color: #090;
    font-size: 0.8em;
    font-weight: lighter;

    border: 1px solid #fff;
    padding: 5px;
}
nav ul li.link_home{
    background-color: #e3670f;
    border-top: 0;
}

nav li a{
    text-decoration: none;
    color: #fff;

}

nav li a:hover{
    background-color: #f60;
}

section{
    margin: 5px 10px 25px;
    /* overflow: hidden; */
}

h2{
    font-size: 1.2em;
    margin: 10px 10px;
    padding: 5px 8px;
    border-left: 15px solid #090;
}

section h3{
    background-color: #509507;
    color: #fff;
    padding: 5px 10px;
    font-size: 1em;
    font-weight: normal;
}

section p{
    line-height: 1.68;
    font-size: 0.7em;

    padding-top: 10px;
    padding-left: 5px;
}

section p img{
    float: left;
    padding-right: 10px;
    max-width: 100px;
}


footer{
    text-align: center;
    font-size: 0.8em;

    border-top: 1px solid #509507;
    margin: 20px auto 30px;
    padding-top: 15px;
}