<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*-----------------------------------------------
 * 入力テーブル
 *----------------------------------------------*/

/* 入力テーブル */
table.input {
    margin: 0 auto;
    width: 760px;
}

table.input thead th {
    background-color: #f3f3f0;
    border-top: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
    color: #000000;
    font-size: 15px;
    font-weight: bold;
    padding: 5px 10px;
    text-align: center;
}

table.input tbody th,
table.input tbody td {
    border-top: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
    padding: 14px 20px;
}

table.input tbody th {
    background-color: #f3f3f0;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
    white-space: normal;
}

table.input tbody th.required,
table.input tbody th.implied {
    background-position: top right;
    background-repeat: no-repeat;
    padding-right: 30px;
    vertical-align: top;
}

table.input tbody th.required {
    background-image: url('../img/_component/input_table/required.png');
}

table.input tbody th.implied {
    /*background-image: url('../img/_component/input_table/implied.png');*/
}

table.input tbody td {
    background-color: #ffffff;
    font-size: 15px;
}

table.input tbody td.guide {
    padding: 9px 10px;
}

.mail, .tipped {
    width: 90%;
}

/* 入力フォーム */
table.input input[type=text], table.input input[type=password], table.input input[type=file], table.input textarea {
    font-size: 15px;
    padding: 4px;
}

table.input select {
    font-size: 15px;
    padding: 0 4px;
    height: 30px;
}

@media screen and (max-width: 770px) {
    /*入力フォーム*/
    form {
        width: 90%;
        margin: auto;
    }

    .ub {
        margin-left: 35px;
    }

    table.input {
        width: 100%;
    }

    table.input td, th {
        display: block;
    }

    td.guide {
        width: 100%;
    }

    table.input tbody th, table.input tbody td {
        border-bottom: none;
    }

    table.input input[type=text], table.input input[type=password], table.input input[type=file], table.input textarea {
        width: 97%;
    }

    label {
        float: left;
        margin-bottom: 20px;
    }

}</pre></body></html>