@charset "UTF-8";
body{
    color: #444;
}
.title{
    display: grid;
    margin: auto 0;
    height: 150px;
    justify-items: center;
}
nav ul{
    padding: 0;
    text-align: center;
}
nav ul li{
    display: inline-block;
    width: 100px;
    padding: 10px 20px;
    border: 1px solid #92BD8C;
}
nav li:hover{
    background-color: #eaf5ea;
}
nav a{
    text-decoration: none;
}
section{
    background-color: #eaf5ea;
    background-image:url(./../images/bg/icon1.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    margin: 10px 50px;
    padding: 10px;
}
section.pickup{
    border: 5px double #92BD8C;
}
section h2{
    background-color: #92BD8C;
    padding-left: 10px;
}
section h3{
    color: #659260;
}
section p{
    margin-left: 20px;
}
.float-right{
    float: right;
}
.float-left{
    float: left;
}
.flow-root{
    display: flow-root;
}
footer{
    display: grid;
    margin: auto 0;
    height: 50px;
    justify-items: center;
    background-color: #92BD8C;
}
/* メディアクエリ：スマホサイズ（767px以下）の設定 */
@media (max-width: 767px){
    section{
        margin: 10px;
    }
    img{
        max-width: 100%;
        height: auto;
    }
    nav ul li{
    width: 50px;
    padding: 5px;
    }
    section p{
        margin-left: 5px;
    }
}