#home_menue {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-top: 60px;
}
.grp {
    margin-top: 10px;
    margin-bottom: 10px;
}

.home_titel {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
}

.home_detail {
    width: 210px;
    height: 225px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #ffffff;
    padding: 20px 10px 10px;
    text-align: center;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    line-height: 2em;
    font-size: 16px;
}

.home_detail img {
    width:50px;
    margin:0 auto 20px;
}
#info {
    height:230px;
    overflow-y: auto;
    background: #fff;
    padding: 10px;
}

/**************************************
         以下スマホ向け
**************************************/
@media screen and (max-width:480px){

    #home_menue {
        margin-top: 0;
    }
    .home_detail {
        height: auto;
        padding-bottom: 30px;
    }
    .home_container {
        padding-bottom: 30px;
    }
}
