@charset "UTF-8";

/*
ブレイクポイント
SP 〜519px
tab 520px ~ 959px (min-width:520px)
pc 960px~ (min-width:960px)
*/

/*======================
contact
======================*/
.contact {
    margin: var(--section-gutter) 0;
    padding: 0 var(--contents-side-gutter);
    text-align: left;
}

table.formTable {
    width: 100%;
}

table.formTable th,
table.formTable td {
    width: auto;
    display: block;
    font-weight: normal;
}

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

form input[type="text"],
form textarea {
    width: 100%;
    padding: 5px;
    display: block;
}

form input[type="submit"],
form input[type="reset"],
form input[type="button"] {
    display: block;
    width: 60%;
    max-width: 400px;
    height: 40px;
    margin: 20px auto;
    background: var(--accent-color);
    color: #fff;
    border: none;
}



/* ===============ここからmin-width:520px=============== */
@media screen and (min-width:520px) {

    table.formTable th,
    table.formTable td {
        display: table-cell;
    }

    table.formTable {
        width: 100%;
    }

    table.formTable th {
        width: 30%;
    }

    table.formTable td {
        width: 70%;
    }
}

/* ===============ここまでmin-width:520px=============== */

/* ===============ここからmin-width:960px=============== */
@media screen and (min-width:960px) {

    /*======================
    contact
    ======================*/
    .title_box {
        margin-bottom: var(--section-gutter-pc);
    }

    .contact {
        margin-bottom: var(--section-gutter-pc);
        width: 80%;
        margin: 0 0 0 auto;
        padding: 0 10% 0 0;
    }
}

/* ===============ここまでmin-width:960px=============== */