﻿/*---------------------------------------------*/
/* 共通スタイルシート　　                      */
/*---------------------------------------------*/
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: YuGothic, "メイリオ", Meiryo, sans-serif;
    font-size: 14px;
    text-align: center;
    background-color: #fff;
    color: #666;
}
input, textarea{
    color: #666;
}
input.imeoff, textarea.imeoff {
    ime-mode: disabled;
}
input.imeon, textarea.imeon {
    ime-mode: active;
}
input[type=radio], input[type=checkbox] {
    display: inline-block;
    margin: 0 2px;
    padding: 0;
    vertical-align: middle;
    position: relative;
    top: -1px;
}
    input[type=text]:focus, textarea:focus {
        background-color: #ffffe0;
    }
input[type=button] {
    cursor: pointer;
}
input[type=date] {
    padding: 3px 5px;
    font-family: YuGothic, "メイリオ", Meiryo, sans-serif;
}
textarea {
    font-family: YuGothic, "メイリオ", Meiryo, sans-serif;
}
a {
    color: steelblue;
    text-decoration: underline;
    cursor: pointer;
}
    a:valid {
        color: darkblue;
    }
    a:hover {
        background-color: darkblue;
        color: #fff;
    }
    a.disabled {
        pointer-events: none;
        color: gray;
        text-decoration: none;
    }
        a.disabled:hover {
            background-color: white;
            color: gray;
        }
table {
        table-layout: fixed;
        border-collapse: collapse;
        vertical-align: middle;
    }
/* UI Dialog */
.ui-dialog-titlebar {
    color: #fff;
    background-color: #1a6;
}

/* Loading */
.load {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    background: url('../css/images/loading.gif') center center no-repeat;
    opacity: 0.7;
    cursor: wait;
    z-index: 100000;
}

#loading {
    display: table;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    opacity: 0.7;
    cursor: wait;
}

    #loading .loadingMsg {
        display: table-cell;
        text-align: center;
        vertical-align: middle;
        padding-top: 140px;
        background: url('../css/images/loading.gif') center center no-repeat;
    }

/* 情報ダイアログ*/
.infomsg{
    margin: 10px 0;
    text-align: left;
}
/* 共通 */
.numeric {
    ime-mode: disabled;
}
.num {
    ime-mode: disabled;
    text-align: right;
}
.err {
    margin: 0;
    padding: 2px 5px;
    background-color: #ffd5da;
    color: orangered;
}
.red {
    color: red;
}
.left {
    float: left;
}
.right {
    float: right;
    text-align: right;
}
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}
/*検索ボタン*/
.sbtn {
    margin: 0 2px;
    padding: 0px;
    width: 20px;
    height: 20px;
    position: relative;
    top: 4px;
    background: url("../css/images/search.png") no-repeat center center;
    cursor: pointer;
    border: 1px solid #666;
}
/*選択用メモ*/
.memo {
    margin: 0;
    padding: 0;
    cursor: pointer;
}
/* マスターページ */
#container {
    position: relative;
    width: 100%;
    height: auto !important;
    height: 100%;
    min-height: 100%;
}
#header {
    width: 100%;
    color: #fff;
    background-color: forestgreen;
    text-align: left;
    font-size: 14px;
    padding-left: 2px;
}
#footer {
    position: absolute;
    bottom: 0;
    left: 0;
    margin-top: 20px;
    width: 100%;
    height: 25px;
    font-size: 12px;
    background-color: forestgreen;
    color: #fff;
}
    #footer p {
        margin: 0;
        padding: 5px 20px 0 0;
        text-align: right;
    }
#contentswrap {
    margin: 0 auto;
    margin-top: 6px;
    padding-bottom: 40px;
    width: 90%;
    min-width: 500px;
    overflow: hidden;
}
#contents {
    width: auto;
    height: auto;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ccc;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
    #contents .nav {
        margin: 10px;
        padding: 0;
        list-style: none;
        text-align: left;
    }
    #contents .nav li {
        display: inline-block;
        text-align: center;
        margin: 0;
        padding: 0 2px;
    }
    #contents .nav li:not(:first-child):before {
        content: "｜ ";
        font-weight: bold;
    }
.contentstop {
    margin: 0;
    padding: 8px 10px;
    line-height: 14px;
    background-color: #efe;
    color: #666;
    border-radius: 5px;
}
    .contentstop .company {
        float: left;
        text-align: left;
    }
    .contentstop .workflow {
        float: right;
        text-align: right;
    }

.topbar {
    margin: 0;
    padding: 0 10px;
    height: 28px;
    line-height: 30px;
    font-size: 14px;
    border-bottom: 2px solid #808080;
}
.topbar div {
    float: left;
}
    .topbar a {
        color: #fff;
    }
        .topbar a:valid {
            color: #fff;
        }
        .topbar a:hover {
            background-color: #fff;
            color: darkgreen;
        }
.menutitle {
    font-size: 23px;
    font-weight: bold;
    text-align: left;
    line-height: 32px;
}
.topmenu {
    float: right;
    line-height: 28px;
}
#LogOut {
    float: right;
    margin: 0;
    padding: 0 20px;
    height: 100%;
}

