/* CSS Document */

#reserve{
    width: 90%;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

#reserve .booking{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    margin-bottom: 5em;
}

#reserve .block{
    width: 47%;
    margin-bottom: 5em;
}

#reserve .block .ttl{
    border-left: 5px solid #92BB78;
    font-size: 23px;
    color: #8BB77F;
    text-align: left;
    padding-left: 5%;
    margin-bottom: 1.5em;
}

#reserve .block .btn{
    background: #8BB77F;
    font-size: 18px;
    text-align: center;
    margin: 0 auto 15px;
}

#reserve .block .btn a{
    color: #fff;
    padding: 20px 0;
    display: block;
    position: relative;
}

#reserve .block .btn a::after{
    content: "";
    width: 10px;
    height: 10px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    transform: rotate(45deg);
    margin-left: 20px;
}

#reserve .block .btn:nth-of-type(3){
    background: #fff;
    border: 1px solid #8BB77F;
}

#reserve .block .btn:nth-of-type(3) a{
    color: #8BB77F;
    padding: 10px 0;
}

#reserve .block .btn:nth-of-type(3) a::after{
    content: "";
    border-top: solid 2px #8BB77F;
    border-right: solid 2px #8BB77F;
}


@media only screen and (max-width: 789px) {  

#reserve .block{
    width: 100%;
}























}






