@charset "UTF-8";

.banner-area {
    max-width: 800px;
    margin: 200px auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.banner-area img.banner {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 50px;
}

.banner-area .btn {
    width: 385px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00b900;
    color: white;
    font-weight: bold;
    font-size: 22px;
    font-weight: bold;
}


@media screen and (max-width: 767px){

.banner-area {
    margin: 90px 25px auto;
}
.banner-area img.banner {
    margin-bottom: 20px;
    height: auto;
    max-width: 100%;
    flex-shrink: 1;
}
.banner-area .btn {
    width: 48%;
    height: 50px;
    font-size: 13px;
}

}