﻿body {
}

/*基礎設定（style一つに一つのclass）*/
.text-align-center {
    text-align:center;
}

.width100 {
    width:100%;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.font-weight-bold  {
    font-weight: bold;
}

.font-size-small {
    font-size: small;
}

.margin-right-40 {
    margin-right: 40px;
}

.display-none {
    display: none;
}

/*Text幅*/
/*年月入力幅*/
.text-width-ym {
    width: 70px
}

/*DIV中央表示*/
.text-align-center-div {
    margin-left: auto;
    margin-right: auto;
}

/*タイトル*/
.title {
    font-size: x-large;
}

/*文字色設定*/
/*赤文字設定*/
.text-color-red{
    color: red;
}
/*文字色緑*/
.text-color-green {
    color: forestgreen;
}

/*背景色青（基本背景色）*/
.base-honsya-background-color {
    background-color: lightskyblue;
}
.base-support-background-color {
    background-color: #FF9;
}
/*UDOM-211104 Add <s> 請求行の背景色変更対応*/
.base-line-background-color {
    background-color: #BF9;
}
/*UDOM-211104 Add <e>*/

/*メニュー以外のボタン設定*/
/*ボタン高さ（小）設定*/
input[type='submit'] {
    background-color: #DDD;
    border-color: #EEE;
}
.buttom-size-small1 {
    width: 80px;
    height: 26px;
    font-weight: bolder;
}
.buttom-size-small2 {
    width: 140px;
    height: 26px;
    font-weight: bolder;
}
.buttom-size-small3 {
    width: 180px;
    height: 26px;
    font-weight: bolder;
}

/*ボタン高さ（中）設定*/
.buttom-size-medium1 {
    width: 80px;
    height: 40px;
    font-weight: bolder;
}
.buttom-size-medium2 {
    width: 140px;
    height: 40px;
    font-weight: bolder;
}
.buttom-size-medium3 {
    width: 180px;
    height: 40px;
    font-weight: bolder;
}

/*ボタン高さヘッダ設定*/
.header-button {
    width: 100%;
    height: 25px;
}

/*---------------メニュー関連---------------*/
/*タイトル*/
.menu-title {
    font-size: large;
}

/*メニュー画面タイトル*/
.table-menu-title {
    width: 100%;
    height: 40px;
}

    .table-menu-title .menu-td1 {
        width: 22%;
        text-align: left;
        display: inline-block;
    }

    .table-menu-title .menu-td2 {
        width: 33%;
        text-align: center;
        display: inline-block;
    }

    .table-menu-title .menu-td3 {
        width: 42%;
        text-align: right;
        display: inline-block;
    }

/*メニュー中央タイトル用枠線*/
.title-border {
    border-style: solid;
    border-width: 2px;
    border-color: gainsboro;
    margin: 5px;
    padding: 2px;
    box-shadow: 4px 4px #808080;
}

/*メニューのボタン及びテーブル設定値*/
.nenu-button-table {

}
    .nenu-button-table td {
        padding-top: 5px;
        padding-bottom: 5px;
    }

/*メニューの各ボタン*/
.nenu-button1 {
    width: 160px;
    height: 40px;
    font-weight:bolder
}
.nenu-button2 {
    width: 100%;
    height: 60px;
    font-weight: bolder
}
.nenu-button3 {
    width: 170px;
    font-weight: bolder
}
.nenu-button4 {
    width: 140px;
    height: 40px;
    font-weight: bolder
}
/*---------------メニュー関連---------------*/

/*子画面ダイアログ表示時の親画面マスク*/
.not-input-filter {
    width: 100%;
    height: 115%;
    float: right;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: gray;
    opacity: 0.6;
    -moz-opacity: 0.6;
    filter: alpha(opacity=60);
}