@charset "UTF-8";

#formWrap {
    width: 700px;
    margin: 0 auto;
    color: #555;
    line-height: 120%;
    font-size: 90%;
}

table.formTable {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}

table.formTable td,
table.formTable th {
    border: 1px solid #F5F5F5;
    padding: 10px;
}

table.formTable th {
    width: 30%;
    font-weight: normal;
    /*background: #F5F5F5;*/
    text-align: left;
}

input[type="text"],
textarea {
    border: 1px solid #F5F5F5;
}

@media screen and (max-width:821px) {
    #formWrap {
        width: 95%;
        margin: 0 auto;
    }

    table.formTable th,
    table.formTable td {
        width: auto;
        display: block;
    }

    table.formTable th {
        margin-top: 5px;
        border-bottom: 0;
    }

    form input[type="text"],
    form textarea {
        width: 80%;
        padding: 5px;
        font-size: 110%;
        display: block;
    }

    form input[type="submit"],
    form input[type="reset"],
    form input[type="button"] {
        display: block;
        width: 100%;
        height: 40px;
    }
}

input[type=email],
input[type=tel],
input[type=text],
select,
textarea {
    font-family: "游ゴシック Medium", Yu Gothic Medium, "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 1.6rem;
    border-radius: 5px;
    background: #F5F5F5;
    border: 1px solid #F5F5F5;
    width: 100%;
    padding: 1rem;
    transition: all .3s;
    -webkit-transition: all .3s;
}