﻿/*=============================*/
/*      ログイン画面　         */
/*=============================*/
body {
    margin: 0 auto;
    cursor: default;
    background-color: #EEEEEE !important;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.form_login {
    margin: 0 auto;
    padding: 3.5em;
    height: 12em;
    width: 22em;
    border: 2px solid #f1f1f1;
    background: #f5f5f5;
    text-align: center;
}

.form-item .logintxt {
    width: 85%;
    background: white;
    border: 0;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    letter-spacing: 0.1em;
    height: 12px;
}

.button-panel .login {
    background: lightgrey;
    border: 0;
    color: grey;
    cursor: pointer;
    height: 50px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    transition: background 0.3s ease-in-out;
    width: 90%;
    border-radius: 10px;
    margin: 25px auto;
}

.image_login {
    text-align: center;
}

    .image_login img {
        width: 25em;
        margin: 200px auto 20px auto;
    }

/*=============================*/
/*      ローディング画面　     */
/*=============================*/
#loading {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: lightgray;
    opacity: 50%;
    transition: all 1s;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.sk-fading-circle {
    margin: 100px auto;
    width: 40px;
    height: 40px;
    position: relative;
}

    .sk-fading-circle .sk-circle {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }

        .sk-fading-circle .sk-circle:before {
            content: '';
            display: block;
            margin: 0 auto;
            width: 15%;
            height: 15%;
            background-color: #333;
            border-radius: 100%;
            -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
            animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
        }

    .sk-fading-circle .sk-circle2 {
        -webkit-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    .sk-fading-circle .sk-circle3 {
        -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(60deg);
    }

    .sk-fading-circle .sk-circle4 {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .sk-fading-circle .sk-circle5 {
        -webkit-transform: rotate(120deg);
        -ms-transform: rotate(120deg);
        transform: rotate(120deg);
    }

    .sk-fading-circle .sk-circle6 {
        -webkit-transform: rotate(150deg);
        -ms-transform: rotate(150deg);
        transform: rotate(150deg);
    }

    .sk-fading-circle .sk-circle7 {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .sk-fading-circle .sk-circle8 {
        -webkit-transform: rotate(210deg);
        -ms-transform: rotate(210deg);
        transform: rotate(210deg);
    }

    .sk-fading-circle .sk-circle9 {
        -webkit-transform: rotate(240deg);
        -ms-transform: rotate(240deg);
        transform: rotate(240deg);
    }

    .sk-fading-circle .sk-circle10 {
        -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        transform: rotate(270deg);
    }

    .sk-fading-circle .sk-circle11 {
        -webkit-transform: rotate(300deg);
        -ms-transform: rotate(300deg);
        transform: rotate(300deg);
    }

    .sk-fading-circle .sk-circle12 {
        -webkit-transform: rotate(330deg);
        -ms-transform: rotate(330deg);
        transform: rotate(330deg);
    }

    .sk-fading-circle .sk-circle2:before {
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s;
    }

    .sk-fading-circle .sk-circle3:before {
        -webkit-animation-delay: -1s;
        animation-delay: -1s;
    }

    .sk-fading-circle .sk-circle4:before {
        -webkit-animation-delay: -0.9s;
        animation-delay: -0.9s;
    }

    .sk-fading-circle .sk-circle5:before {
        -webkit-animation-delay: -0.8s;
        animation-delay: -0.8s;
    }

    .sk-fading-circle .sk-circle6:before {
        -webkit-animation-delay: -0.7s;
        animation-delay: -0.7s;
    }

    .sk-fading-circle .sk-circle7:before {
        -webkit-animation-delay: -0.6s;
        animation-delay: -0.6s;
    }

    .sk-fading-circle .sk-circle8:before {
        -webkit-animation-delay: -0.5s;
        animation-delay: -0.5s;
    }

    .sk-fading-circle .sk-circle9:before {
        -webkit-animation-delay: -0.4s;
        animation-delay: -0.4s;
    }

    .sk-fading-circle .sk-circle10:before {
        -webkit-animation-delay: -0.3s;
        animation-delay: -0.3s;
    }

    .sk-fading-circle .sk-circle11:before {
        -webkit-animation-delay: -0.2s;
        animation-delay: -0.2s;
    }

    .sk-fading-circle .sk-circle12:before {
        -webkit-animation-delay: -0.1s;
        animation-delay: -0.1s;
    }

@-webkit-keyframes sk-circleFadeDelay {
    0%, 39%, 100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}

@keyframes sk-circleFadeDelay {
    0%, 39%, 100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}
.loaded {
    opacity: 0;
    visibility: hidden;
}
/*=============================*/
/*      共通ヘッダー　         */
/*=============================*/
.index {
    margin: auto 60px auto 60px;
}

.header {
    margin: 15px 60px 15px 60px;
    overflow: auto;
    display: flex;
}

.image_header {
    text-align: left;
    width: 80%;
    display: table-cell;
}

    .image_header img {
        width: 25em;
    }

.login_info {
    text-align: right;
    vertical-align:bottom !important;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    letter-spacing: 0.15em;
    width: 90%;
    display: table-cell;
}
    .login_info a {
        text-decoration: none;
        text-align: center;
    }
    /*=============================*/
    /*      パンくずリスト         */
    /*=============================*/
.breadcrumb {
    padding: 0.7em;
    list-style: none;
    border: 1.5px solid #dedcdc;
    letter-spacing: 0.05em;
    font-size: 18px;
    position: relative;
    background-color: white !important;
}

        .breadcrumb li {
            display: inline-block;
            font-family: "メイリオ";
            font-size: 16px;
            font-weight: bold;
            list-style: none;
            color: grey;
        }
        .breadcrumb li a {
            text-decoration: none;
            text-align: center;
        }

/*=============================*/
/*      コンテンツ　　         */
/*=============================*/
.contents {
    margin: auto 60px auto 60px;
    display: flex;
    overflow: hidden;
}
#navi {
    width: 18%;
    overflow-x: hidden;
    overflow-y: hidden;
    border: 1.5px solid #f1f1f1;
    position: relative;
    box-sizing: content-box;
}
#main {
    width: 85%;
    box-sizing: content-box;
    position: relative;
    overflow: hidden;
}
/*=============================*/
/*      　メイン　　           */
/*=============================*/
.container {
    padding-right: 0px !important;
    width: 100% !important;
}
/* input type = number の矢印を非表示 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}
input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

input[type=date] {
    -moz-appearance: textfield;
}
    /*=============================*/
    /*      ナビゲーション         */
    /*=============================*/

#g-nav {
    height: 100%;
    position: relative;
    background-color: #fff;
}

#g-nav-list ul {
    position: relative;
    background-color: #fff;
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: auto;
}

#g-nav-list li {
    display: block;
    color: grey;
    margin: 16px;
    padding: 5px;
    font-size: 16px;
    font-family: "メイリオ";
    font-weight: bold;
    list-style: disc;
    text-align: left;
    background-color: #fff;
    border-bottom: 1px solid #f1f1f1;
}

    #g-nav-list li a {
        text-decoration: none;
        text-align: center;
        color:grey;
    }

#g-nav li a:visited {
    color: grey;
}

#g-nav li a:hover {
    color: #87CEFA;
}

#company_info {
    margin: 20px;
    height: 100%;
    overflow-x: hidden;
    position: relative;
    text-align: left;
    font-size: 15px;
    color: grey;
}

    #company_info a {
        margin-top: 0.8em;
        text-decoration: none;
    }
    a:link {
        color:grey;
    }
    #company_info .label {
        text-align: left;
        letter-spacing: 0.1em;
    }
.image_certi {
    text-align: left;
}

    .image_certi img {
        vertical-align: top;
        width: 5em;
        overflow-x: hidden;
        position: relative;
    }
.vsb {
    display: none !important;
}
/*=============================*/
/*      ホーム画面　　         */
/*=============================*/
.info-area {
    overflow: auto;
    display: grid;
    grid-template-columns: 50% 50%;
    height:200px;
}
.unprocess {
    grid-row: 1;
    grid-column: 1;
    overflow: hidden;
}
.orderdata {
    grid-row: 1;
    grid-column: 2;
    overflow: hidden;
}
.monthly {
    grid-row: 2;
    grid-column: 1;
    overflow: hidden;
}
.contact {
    grid-row: 2;
    grid-column: 2;
    overflow: hidden;
}
.info-left {
    display: table;
    border: 1px solid #f1f1f1;
    width: 90%;
}
.info-right {
    display: table;
    border: 1px solid #f1f1f1;
    width: 90%;
    margin-left: auto;
}
.info-count {
    display: table-cell;
    width: 130px;
    padding-top: 25px;
    border: none;
    height: 150px !important;
    background-color:white;
}
.tb-contact {
    font-size: 15px;
    border-collapse: separate;
    border-spacing: 12px;
}
    .tb-contact td {
        text-align:left;
    }
.notice {
    margin-top: 20px;
}
#home-num {
    height: 80px;
    font-size: 50px;
    text-align: center;
}
#home-link {
    text-align:center;
    font-size:18px;
}
#info-title {
    font-size: 15px;
    font-weight:bold;
}
.noticeDl {
    text-decoration: underline;
    text-align:center;
}
/*=============================*/
/*          検索エリア         */
/*=============================*/
.search-area {
    box-sizing: content-box;
    height: 15%;
}
    .form {
        height: 100%;
    }
        /*=============================*/
        /*     検索フォーム(BAR)       */
        /*=============================*/
.search-area .search-bar {
    border: 1px solid #f1f1f1;
    display: table;
    width: 100%;
    background-color: #C0C0C0;
    position: relative;
}
        .search-area .search-bar .searchbar-left {
            letter-spacing: 0.1em;
            display: table-cell;
            vertical-align: middle;
            width: 400px;
            padding-left: 2em;
            font-family: "メイリオ";
            font-size: 15px;
            font-weight: bold;
            color: grey;
        }
        .search-area .search-bar .searchbar-right {
            text-align: right;
            vertical-align: middle;
            display: table-cell;
            letter-spacing: 0.25em;
            margin: 0.1em;
            padding-right: 8px;
            border-radius: 7px;
            border: 2px solid transparent;
        }
        .search-area .search-bar a {
            text-decoration: none;
            color: grey;
        }
        .search-area .search-bar .searchbar-right button {
            text-align: center;
            vertical-align: middle;
            width: 90px;
            font-family: "メイリオ";
            font-size: 15px;
            font-weight: bold;
            color: grey;
            cursor: pointer;
        }
            .search-area .search-bar .searchbar-right button:hover {
                background-color: darkgray;
            }
            .container .search-area .search-bar .far {
                font-size: 25px;
                vertical-align: middle;
                color: grey;
                cursor: pointer;
            }

/*=============================*/
/*     検索フォーム(FORM)      */
/*=============================*/
.container .search-area .search-form {
    background-color:white;
    border: 1.5px solid #f1f1f1;
    padding: 0.2em 1em 0.2em 1em;
    max-height: 210px;
    min-height: 120px;
    overflow: auto;
}
    .container .search-area .search-form .search-table {
        border-collapse: separate;
        box-sizing: content-box;
        border-spacing: 12px 5px;
        table-layout: fixed;
        width: 1400px;
    }
        .container .search-area .search-form .search-table td {
            height: 30px !important;
        }
        .container .search-area .search-form .search-table tr {
            margin-bottom: 5px !important;
            width: 100% !important;
            height: 20% !important;
        }

.search-form .search_label {
    font-family: "メイリオ";
    font-size: 15px;
    vertical-align: middle;
    font-weight: bold;
    display:inherit;
    color: grey;
    padding-left: 15px;
}
.search-form .search-txt {
    /* ↓2022/06/01 kawaji change 
    border: 1px solid #f1f1f1;
    */
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 4px;
    /* ↑2022/06/01 kawaji change */
    height: 2em;
    text-align: left;
    font-size: 1.0em;
    overflow: hidden;
}
.search-form .search-division {
    border: 1px solid #f1f1f1;
    height: 1.7em;
    width: 80px;
    text-align: right;
    font-size: 1.0em;
    overflow: hidden;
}
.search-table tbody {
    display: block;
    width: 100%;
    overflow: hidden;
}
    .search-table tbody tr {
        display: block;
    }
#col-1 {
    width: 160px;
    background-color: #EEEEEE;
}
#col-2 {
    width: 180px;
    overflow: hidden;
}
#col-3 {
    width: 300px;
}
#col-4 {
    width: 160px;
}
#col-5 {
    width: 140px;
    background-color: #EEEEEE;
}
#col-6 {
    width: 350px;
}
#col-7 {
    width: 400px;
}
#col-8 {
    width: 140px;
}
#exp-item {
    font-size:12px;
}

    input:focus {
        background-color:pink;
    }

.search-list {
    width: 140px;
    height: 100%;
    font-size: 15px;
    font-family: "メイリオ";
    /* ↓2022/06/01 kawaji change 
    border: 1px solid #f1f1f1;
    */
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 4px;
    /* ↑2022/06/01 kawaji change */
}
    .search-list:focus {
        background-color: pink;
        border: 1px solid black;
    }
input[type=date] {
    width:80%;
    text-align:center !important;
}
/*=============================*/
/*     一覧フォーム(BAR)       */
/*=============================*/
.result-bar {
    border: 1px solid #f1f1f1;
    display: table;
    width: 100%;
    height: 15%;
    margin: 0.5em auto auto auto;
    background-color: #C0C0C0;
}

        .result-bar .resultbar-left {
            letter-spacing: 0.1em;
            display: table-cell;
            vertical-align: middle;
            width: 400px;
            padding-left: 2em;
            font-family: "メイリオ";
            font-size: 15px;
            font-weight: bold;
            color: grey;
        }

        .result-bar .resultbar-right {
            text-align: right;
            vertical-align: middle;
            display: table-cell;
            letter-spacing: 0.2em;
            margin: 0.1em;
            margin-right: 1em;
            padding-right: 8px;
            border-radius: 7px;
            border: 2px solid transparent;
        }

            .result-bar .resultbar-right button {
                text-align: center;
                vertical-align: middle;
                width: 160px;
                font-family: "メイリオ";
                font-size: 15px;
                font-weight: bold;
                color: grey;
                cursor: pointer;
                margin-left: 5px;
            }
                .result-bar .resultbar-right button:hover {
                    background-color: darkgray;
                }
/*=============================*/
/*        一覧フォーム         */
/*=============================*/
.result-form {
    margin: 4px 0 auto 0;
    width: 100%;
    height: 50%;
}

/*=============================*/
/*          GridView           */
/*=============================*/
.grid {
    height: 100%;
    width: 100%;
    border: 1px solid #e0e0e0;
    font-family: Cambria;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
}

    .grid .wj-colheaders .wj-cell {
        text-align: center !important;
        font-weight: bold;
        font-size: 15px;
        font-family: 'Open Sans', sans-serif;
    }

    .grid .wj-rowheaders .wj-cell {
        vertical-align: middle;
    }
.wj-cell-check {
    cursor:auto;
}

.wj-cells .wj-cell.wj-state-selected {
    background: lightblue !important;
    color: black !important;
}
.wj-cells .wj-cell.wj-state-multi-selected {
    background: lightblue !important;
    color: black !important;
}
.wj-state-disabled input[type=checkbox] {

}
.editcell {
    background-color: navajowhite !important;
}
    .editcell:focus-within {
        background-color: pink !important;
    }

.editdate {
    background-color: navajowhite !important;
}
    .editdate:focus {
        background-color: pink !important;
    }

    .editdate :not(.wj-state-selected) :not(.wj-state-multi-selected) {
        background-color: pink !important;
    }
/*=============================*/
/*       ホーム画面Grid        */
/*=============================*/
.homegrid {
    height: 100%;
    width: 100%;
}
    .homegrid .wj-colheaders .wj-cell {
        text-align: center !important;
        font-size: 15px;
        font-family: 'Open Sans', sans-serif;
        background-color: lightgrey;
    }
    .homegrid .wj-cell {
        font-size: 15px;
        font-family: 'Open Sans', sans-serif;
    }
    .homegrid.wj-flexgrid .wj-cell {
        padding: 8px;
    }
    /*=============================*/
    /*      　 納期回答Grid        */
    /*=============================*/
    .availableToPromiseGrid {
    height: 100%;
    width: 100%;
    border: 1px solid #e0e0e0;
    font-family: Cambria;
    overflow: auto;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
} .availableToPromiseGrid .wj-colheaders .wj-cell {
        text-align: center !important;
        font-weight: bold;
        font-size: 14px;
        font-family: 'Open Sans', sans-serif;
    } .availableToPromiseGrid .wj-rowheaders .wj-cell {
        vertical-align: middle;
    }
    /*=============================*/
    /*     分納ポップアップ        */
    /*=============================*/
#partialPromisePopup {
    position: absolute;
    padding: 0 !important;
    width: 30%;
    height: 78%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    z-index: 99999;
    animation-name: show;
    animation-duration: 0.5s;
} .modal-content {
    text-align: center;
    margin: 0;
    padding: 0;
}
.modal-header {
    text-align: center;
    font-weight: bold;
    background-color: lightgrey;
    font-size: 18px;
} .modal-footer {
    margin:50px auto auto auto;
    display: inline-block;
} .info-table {
    table-layout: fixed;
    margin:30px auto 30px auto;
}
.down-area {
    width: 100%;
    height: 250px;
    overflow-y: scroll;
}
.answer-table {
    width: 80%;
    table-layout: fixed;
    margin: 30px auto auto auto;
}
.modal-btn {
    font-family: "メイリオ";
    font-size: 13px;
    font-weight: bold;
    width: 100px;
}
#mcol-1 {
    font-family: "メイリオ";
    font-size: 15px;
    font-weight: bold;
    width: 120px;
    text-align: left;
    vertical-align: central;
    padding: 5px;
} #mcol-2 {
    width: 180px;
    text-align: left;
    margin: 5px;
    border:none;
}
#mcol-lable {
    text-align: center;
    font-family: "メイリオ";
    font-size: 15px;
    font-weight: bold;
}
.answer-header .answer-body {
    width: 70%;
    height:50px;
    overflow: scroll;
}
.cts-left {
    width: 50%;
    float: left;
    text-align: center;
    font-family: "メイリオ";
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}
.cts-right {
    width: 50%;
    float: right;
    text-align: center;
    font-family: "メイリオ";
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}
.popCol {
    width: 80%;
}
    .popCol.wj-input-group:focus {
        background-color: pink;
    }
.wj-control .wj-input-group .wj-form-control:focus {
    background-color: pink;
}
/*=============================*/
/*       注文書検索Grid        */
/*=============================*/
.wj-flexgrid {
    max-height: 500px !important;
    width: 100%;
    border: 1px solid #e0e0e0;
    font-family: Cambria;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

.orderSheetgrid .wj-colheaders .wj-cell {
    text-align: center !important;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}
    .orderSheetgrid .wj-rowheaders .wj-cell {
        vertical-align: middle;
    }
.cell-date {
    font-size: 14px;
}
.wj-cell.red-value {
    color: red;
}