﻿body {
    padding: 2px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333333;
    font-size: 14px;
}

.contentsArea {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    min-width: 1024px;
}

table td th {
}

h1 {
    color: #004998;
    text-shadow: 1px 1px 1px #000;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6em;
}

.linkDiv {
    border-style: solid;
    border-width: 1px;
    border-color: silver;
    padding: 20px;
    margin-bottom: 10px;
}

.aMenu {
    color: #004998;
    font-weight: bold;
    text-decoration: none;
}

    .aMenu:hover {
        color: #007A68;
        font-weight: bold;
        text-shadow: 4px 4px 4px rgba(0, 0, 0, .8);
    }

select {
    border-radius: 10px;
    border-width: 1px;
    border-color: silver;
    border-style: solid;
    height: 40px;
    padding-left: 12px;
    padding-right: 12px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
input[type="button"],
input[type="submit"] {
    border: 1px solid #007A68;
    background-color: #004998;
    background-image: -webkit-linear-gradient(top, #004998, #007A68);
    background-image: linear-gradient(to bottom, #004998, #007A68);
    border-radius: 4px;
    color: #fff;
    line-height: 40px;
    -webkit-transition: none;
    transition: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
    min-width: 110px;
    cursor: pointer;
}
    input[type="button"]:hover,
    input[type="submit"]:hover {
        border: 1px solid #007A68;
        background-color: #004998;
        background-image: -webkit-linear-gradient(top, #00E0BE, #004998);
        background-image: linear-gradient(to bottom, #00E0BE, #004998);
    }
    input[type="button"]:active,
    input[type="submit"]:active {
        background: #00473C;
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, .2);
        color: #1679a1;
        text-shadow: 0 1px 1px rgba(255, 255, 255, .5);
    }

    input[type="button"]:disabled,
    input[type="submit"]:disabled {
        color: silver;
        background-color: gray;
        background-image: -webkit-linear-gradient(top, gray, gray);
        background-image: linear-gradient(to bottom, gray, gray);
    }
        input[type="button"]:disabled:active,
        input[type="submit"]:disabled:active {
            color: silver;
            background-color: gray;
            background-image: -webkit-linear-gradient(top, gray, gray);
            background-image: linear-gradient(to bottom, gray, gray);
        }
input[type="text"],
input[type="password"],
input[type="number"]{
    border-radius: 10px;
    border-width: 1px;
    border-color: silver;
    border-style: solid;
    height: 40px;
    padding-left: 12px;
    padding-right: 12px;
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
    input[type="text"]:read-only {
        background-color: #ccc;
    }
input[type="datetime-local"],
input[type="date"],
input[type="month"] {
    border-radius: 10px;
    border-width: 1px;
    border-color: silver;
    border-style: solid;
    height: 40px;
    padding-left: 12px;
    padding-right: 12px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
textarea {
    font-family: inherit;
    resize: vertical;
    border-radius: 10px;
    border-width: 1px;
    border-color: silver;
    border-style: solid;
    padding: 12px 12px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/*
.BasicButton {
    border: 1px solid #007A68;
    background-color: #004998;
    background-image: -webkit-linear-gradient(top, #004998, #007A68);
    background-image: linear-gradient(to bottom, #004998, #007A68);
    border-radius: 4px;
    color: #fff;
    line-height: 40px;
    -webkit-transition: none;
    transition: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
    min-width: 110px;
    cursor: pointer;
}


    .BasicButton:hover {
        border: 1px solid #007A68;
        background-color: #004998;
        background-image: -webkit-linear-gradient(top, #00E0BE, #004998);
        background-image: linear-gradient(to bottom, #00E0BE, #004998);
    }

    .BasicButton:active {
        background: #00473C;
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, .2);
        color: #1679a1;
        text-shadow: 0 1px 1px rgba(255, 255, 255, .5);
    }*/
/*    .BasicButton:disabled {
        color: silver;
        background-color: gray;
        background-image: -webkit-linear-gradient(top, gray, gray);
        background-image: linear-gradient(to bottom, gray, gray);
    }*/
/*        .BasicButton:disabled:active {
            color: silver;
            background-color: gray;
            background-image: -webkit-linear-gradient(top, gray, gray);
            background-image: linear-gradient(to bottom, gray, gray);
        }*/
hr {
    border-color: #004998;
}

tr {
    height: 40px;
}

.inputText {
    height: 30px;
    border-radius: 6px;
    border-style: solid;
    border-width: 1px;
    border-color: #BBBBBB;
    font-size: 1em;
    padding-left: 6px;
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.inputText_Date {
    height: 30px;
    border-radius: 6px;
    border-style: solid;
    border-width: 1px;
    border-color: #BBBBBB;
    font-size: 1em;
    padding-left: 6px;
    width: 36%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.inputTextArea {
    border-radius: 6px;
    border-style: solid;
    border-width: 1px;
    border-color: #BBBBBB;
    font-size: 1em;
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


.SlimButton {
    border: 1px solid #007A68;
    background-color: #004998;
    background-image: -webkit-linear-gradient(top, #004998, #007A68);
    background-image: linear-gradient(to bottom, #004998, #007A68);
    border-radius: 4px;
    color: #fff;
    line-height: 30px;
    -webkit-transition: none;
    transition: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
    min-width: 110px;
    cursor: pointer;
}

    .SlimButton:hover {
        border: 1px solid #007A68;
        background-color: #004998;
        background-image: -webkit-linear-gradient(top, #00E0BE, #004998);
        background-image: linear-gradient(to bottom, #00E0BE, #004998);
    }

    .SlimButton:active {
        background: #00473C;
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, .2);
        color: #1679a1;
        text-shadow: 0 1px 1px rgba(255, 255, 255, .5);
    }


.SlimButton_Red {
    border: 1px solid #CC0000;
    background-color: #FF0000;
    background-image: -webkit-linear-gradient(top, #FF0000, #FF3232);
    background-image: linear-gradient(to bottom, #FF0000, #FF3232);
    border-radius: 4px;
    color: #fff;
    line-height: 30px;
    -webkit-transition: none;
    transition: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
    min-width: 110px;
    cursor: pointer;
}

    .SlimButton_Red:hover {
        border: 1px solid #CC0000;
        background-color: #CC0000;
        background-image: -webkit-linear-gradient(top, #990000, #FF0000);
        background-image: linear-gradient(to bottom, #990000, #FF0000);
    }

    .SlimButton_Red:active {
        background: #C2111D;
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, .2);
        color: #222222;
        text-shadow: 0 1px 1px rgba(255, 255, 255, .5);
    }

.ViewTable {
    margin: 0px;
    padding: 0px;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    table-layout: fixed;
}

    .ViewTable th {
        border-style: solid;
        border-width: 1px;
        border-color: silver;
        font-weight: bold;
        padding: 10px;
        line-height: 150%;
        background-color: #004998;
        color: white;
        word-wrap: break-word;
    }

    .ViewTable td {
        border-style: solid;
        border-width: 1px;
        border-color: silver;
        padding: 6px;
        line-height: 150%;
        word-wrap: break-word;
    }


.ViewTable_FreeStyle {
    margin: 0px;
    padding: 0px;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
}

    .ViewTable_FreeStyle th {
        border-style: solid;
        border-width: 1px;
        border-color: silver;
        font-weight: bold;
        padding: 10px;
        line-height: 150%;
        background-color: skyblue;
        word-wrap: break-word;
    }

    .ViewTable_FreeStyle td {
        border-style: solid;
        border-width: 1px;
        border-color: silver;
        padding: 6px;
        line-height: 150%;
        word-wrap: break-word;
    }

.txtCenter {
    text-align: center;
}

.txtRight {
    text-align: right;
}

/*20180625追記*/
.OrderColorDelete {
    background-color: #B2B2B2;
}

.OrderColorUrgent {
    background-color: #FFFF66;
}

.OrderColorSecond {
    background-color: #FF6666;
}

.OrderColorSites {
    background-color: #66FF66;
}

.OrderColorRereading {
    background-color: #66FFFF;
}

.OrderColorOther {
    background-color: #6666FF;
}


.ViewTable_small {
    margin: 0px;
    padding: 0px;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    table-layout: fixed;
}

    .ViewTable_small th {
        border-style: solid;
        border-width: 1px;
        border-color: silver;
        font-weight: bold;
        padding: 6px;
        line-height: 150%;
        background-color: #004998;
        color: white;
        word-wrap: break-word;
    }

    .ViewTable_small td {
        border-style: solid;
        border-width: 1px;
        border-color: silver;
        padding: 6px;
        line-height: 100%;
        word-wrap: break-word;
    }

    .ViewTable_small tr {
        height: 1em;
    }




.BasicButton_HeightSlim {
    border: 1px solid #007A68;
    background-color: #004998;
    background-image: -webkit-linear-gradient(top, #004998, #007A68);
    background-image: linear-gradient(to bottom, #004998, #007A68);
    border-radius: 4px;
    color: #fff;
    line-height: 20px;
    -webkit-transition: none;
    transition: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
    width: 100%;
    max-width: 100px;
    cursor: pointer;
}


    .BasicButton_HeightSlim:hover {
        border: 1px solid #007A68;
        background-color: #004998;
        background-image: -webkit-linear-gradient(top, #00E0BE, #004998);
        background-image: linear-gradient(to bottom, #00E0BE, #004998);
    }

    .BasicButton_HeightSlim:active {
        background: #00473C;
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, .2);
        color: #1679a1;
        text-shadow: 0 1px 1px rgba(255, 255, 255, .5);
    }

    .BasicButton_HeightSlim:disabled {
        color: silver;
        background-color: gray;
        background-image: -webkit-linear-gradient(top, gray, gray);
        background-image: linear-gradient(to bottom, gray, gray);
    }

.BasicButton:disabled:active {
    color: silver;
    background-color: gray;
    background-image: -webkit-linear-gradient(top, gray, gray);
    background-image: linear-gradient(to bottom, gray, gray);
}


.inputDDL {
    width: 100%;
    box-sizing: border-box;
    height: 2.3em;
    border-radius: 6px;
    border-style: solid;
    border-width: 1px;
    border-color: Silver;
}

.OperationButton_Go {
    border: 1px solid #007A68;
    background-color: #004998;
    background-image: -webkit-linear-gradient(top, #004998, #007A68);
    background-image: linear-gradient(to bottom, #004998, #007A68);
    border-radius: 4px;
    color: #fff;
    line-height: 30px;
    -webkit-transition: none;
    transition: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
    cursor: pointer;
    width: 100%;
    max-width: 80px;
}


    .OperationButton_Go:hover {
        border: 1px solid #007A68;
        background-color: #004998;
        background-image: -webkit-linear-gradient(top, #00E0BE, #004998);
        background-image: linear-gradient(to bottom, #00E0BE, #004998);
    }

    .OperationButton_Go:active {
        background: #00473C;
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, .2);
        color: #1679a1;
        text-shadow: 0 1px 1px rgba(255, 255, 255, .5);
    }

    .OperationButton_Go:disabled {
        color: silver;
        background-color: gray;
        background-image: -webkit-linear-gradient(top, gray, gray);
        background-image: linear-gradient(to bottom, gray, gray);
    }

        .OperationButton_Go:disabled:active {
            color: silver;
            background-color: gray;
            background-image: -webkit-linear-gradient(top, gray, gray);
            background-image: linear-gradient(to bottom, gray, gray);
        }



.OperationButton_Ng {
    border: 1px solid #a17a68;
    background-color: #ffc15d;
    background-image: -webkit-linear-gradient(top,#ffdb7a, #ffc15d);
    background-image: linear-gradient(to bottom,#ffdb7a, #ffc15d);
    border-radius: 4px;
    color: #000;
    line-height: 30px;
    -webkit-transition: none;
    transition: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
    width: 100%;
    max-width: 80px;
    cursor: pointer;
}


    .OperationButton_Ng:hover {
        border: 1px solid #B29284;
        background-color: #FFD38E;
        background-image: -webkit-linear-gradient(top, #FFF2D6, #FFE4BC);
        background-image: linear-gradient(to bottom, #FFF2D6, #FFE4BC);
    }

    .OperationButton_Ng:active {
        background: #6B4A00;
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, .2);
        color: #333333;
        text-shadow: 0 1px 1px rgba(255, 255, 255, .5);
    }

    .OperationButton_Ng:disabled {
        color: silver;
        background-color: gray;
        background-image: -webkit-linear-gradient(top, gray, gray);
        background-image: linear-gradient(to bottom, gray, gray);
    }

        .OperationButton_Ng:disabled:active {
            color: silver;
            background-color: gray;
            background-image: -webkit-linear-gradient(top, gray, gray);
            background-image: linear-gradient(to bottom, gray, gray);
        }


.SvrMessageArea{
    width:80%;
    margin:0 auto;
    //border-style:solid;
    //border-color:red;
    //border-width:1px;
    padding:4px;
}