/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error
{
    display: block;
    font-weight: bold;
    color: #ff0000;
    text-align: left;
}

.field-validation-valid
{
    display: none;
}

.input-validation-error
{
    border: 1px solid #ff0000;
    background-color: #ffeeee;
}

.validation-summary-errors
{
    font-weight: bold;
    color: #ff0000;
    text-align: left;
}
.validation-summary-errors ul li
{
    list-style: none;
}

.validation-summary-valid
{
    display: none;
}

*
{
    font-family: 'メイリオ' ,Meiryo;
    font-size: 1em;
    box-sizing: border-box;
}

html, body
{
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
input[type="text"], input[type="password"], select, textarea, input[type="checkbox"]
{
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="checkbox"]:focus, select:focus, textarea:focus
{
    background: #FFFF85;
}

.button
{
    padding-left: 4px;
    padding-right: 4px;
    border: 1px solid #15aeec;
    background-color: #49c0f0;
    background-image: -webkit-linear-gradient(top, #49c0f0, #2cafe3);
    background-image: linear-gradient(to bottom, #49c0f0, #2cafe3);
    border-radius: 4px;
    color: #fff;
    line-height: 30px;
    -webkit-transition: none;
    transition: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
}
.button:hover
{
    border: 1px solid #1090c3;
    background-color: #1ab0ec;
    background-image: -webkit-linear-gradient(top, #1ab0ec, #1a92c2);
    background-image: linear-gradient(to bottom, #1ab0ec, #1a92c2);
}
.button:active
{
    background: #1a92c2;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .2);
    color: #1679a1;
    text-shadow: 0 1px 1px rgba(255, 255, 255, .5);
}
.button:disabled
{
    opacity: 0.5;
}
.button.large
{
    font-size: 14pt;
    font-weight: bold;
}
.table-data-title
{
    background-image: -ms-linear-gradient(top , #F8F8FF 0%, #CBFDC1 100%);
    background-image: -moz-linear-gradient(top , #F8F8FF 0%, #CBFDC1 100%);
    background-image: -webkit-linear-gradient(top , #F8F8FF 0%, #CBFDC1 100%);
    padding: 10px 0px 10px 0px;
    margin: 0px;
    border-radius: 10px; /*    display:inline-block;*/
    border: 2px green solid; /* 枠線の装飾 */
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: x-large; /* 文字サイズ */
}
input.nihongo
{
    ime-mode: active;
}
input.hankaku-eisuu
{
    ime-mode: disabled;
}
textarea.nihongo
{
    ime-mode: active;
}
.telField
{
    ime-mode: disabled;
}
.zipField
{
    ime-mode: disabled;
}
.unitField
{
    ime-mode: disabled;
}
.numberField
{
    ime-mode: disabled;
}
.timeField
{
    ime-mode: disabled;
}
.data-edit
{
    table-layout: fixed;
    width: 100%;
    border-spacing: 0px;
    border-collapse: collapse;
}

.data-edit > tbody > tr > th
{
    border: 2px solid #000;
    text-align: right;
    background-color: #FFFF99;
    padding: 4px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    vertical-align: top;
}
.data-edit > tbody > tr > td
{
    border: 2px solid #000;
    text-align: left;
    padding: 4px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    vertical-align: top;
}
.data-edit > tbody > tr > td > input[type="text"]
{
    padding: 4px;
    width: 100%;
    box-sizing: border-box;
    font-size: inherit;
}
.data-edit > tbody > tr > td > select
{
    padding: 4px;
    width: 100%;
    box-sizing: border-box;
    font-size: inherit;
}
