@charset "UTF-8";

@media only screen and (max-width:768px) {
    .wsform {
        width: 100%;
        padding: 5vw;
        box-sizing: border-box;
    }

    .wsform dt {
        font-weight: 800;
        padding: 5px 0;
    }

    .wsform dl {
        width: 100%;
    }
    
    .wsform dl + dl {
        margin-top: 5vw;
    }

    .wsform dt span {
        display: inline-block;
        margin-left: 10px;
        color:#fff;
        font-size: .525rem;
        background:#fb9d7e;
        padding: 3px;
        line-height: 1;
        padding: 3px 5px;
    }



    .wsform dd textarea,
    .wsform dd input[type="text"],
    .wsform dd input[type="email"],
    .wsform dd input[type="tel"],
    .wsform dd input[type="zip"] {
        padding: 10px;
        border:1px solid #ccc;
        box-sizing: border-box;
        width: 100%;
        line-height: 1.5;
    }

    .wsform .mwform-zip-field input[type="text"],
    .wsform .mwform-tel-field input[type="text"] {
        width: 20%;
    }
}

@media only screen and (min-width:769px) {
    .wsform {
        width: 80%;
        max-width: 700px;
        margin: 0;
    }

    .wsform dl {
        display: table;
        table-layout: fixed;
        border-collapse: collapse;
        width: 100%;
    }

    .wsform dt {
        font-weight: 800;
        display: table-cell;
        vertical-align: middle;
        text-align: left;
        width: 30%;
        padding: 10px 0;
    }

    .wsform dd {
        display: table-cell;
        vertical-align: middle;
        text-align: left;
        width: 70%;
        padding: 10px 0;
    }

    .wsform dd textarea,
    .wsform dd input[type="text"],
    .wsform dd input[type="tel"],
    .wsform dd input[type="email"] {
        border:1px solid #ccc;
        padding: 7px;
        box-sizing: border-box;;
    }

    .wsform dt span {
        color: #fff;
        background: #fb9d7e;
        display: inline-block;
        vertical-align: middle;
        font-size: 10px;
        line-height: 1;
        padding: 3px 5px;
        border-radius: 3px;
        margin-left: 10px;
    }
}