﻿body {
    width: 100%;
    height: 100%;
    min-width: 980px;
    background: #fafafa;
    font-size: .9em;
    position: relative;
    left: 0;
    overflow-x: hidden;
    padding: 160px 0 0 0;
}

/**
 * ヘッダ
 */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}
/**
 * ヘッダ　ロゴエリア
 */
header .logoArea {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-bottom: #000 solid 5px;
    height: 62px;
    position: relative;
    margin: 0;
    background: #ffffff;
}
    header .logoArea::after {
        content: "";
        display: block;
        clear: both;
    }
    header .logoArea .logo_l {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0; 
    }
    header .logoArea .logo_r {
        position: absolute;
        top: 0;
        left: auto;
        bottom: auto;
        right: 0;
    }

/**
 * ヘッダ　タイトルエリア
 */
header .titleArea {
    background: url(../img/ttl_bnr.jpg);
    margin: 0;
}
    header .titleArea::after {
        content: "";
        display: block;
        clear: both;
    }
    header .titleArea .title {
        float: left;
        line-height: 54px;
        margin: 0 0 0 40px;
        color: #ffffff;
        font-size: 1.7em;
    }
    header .titleArea .userInfo {
        float: right;
        margin: 0 20px 0 0;
    }
        header .titleArea .userInfo p {
            display: inline-block;
            line-height: 54px;
            margin: 0 0 0 10px;
            color: #ffffff;
        }
        header .titleArea .userInfo .description span {
            border: solid 1px #ffffff;
            border-radius: 15px;
            padding: 5px 10px;
        }
        header .titleArea .userInfo .logoutBtn {
            border: none;
            outline: none;
            padding: 0;
            -webkit-appearance: none;
                -moz-appearance: none;
                    appearance: none;
            cursor: pointer;
            margin: 0 0 0 10px;
            color: #ff681e;
            background: #ffffff;
            width: 120px;
            height: 30px;
            border-radius: 5px;
        }
        header .titleArea .userInfo .logoutBtn:hover {
                        background: #fcead9;
        }

/**
 * ヘッダ　メニューエリア
 */
header nav {
    font-size: .9em;
    position: relative;
    min-width: 1280px;
}
    header nav .navBackground {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 40px;
        background: #333333;
    }
    header nav .parent {
        margin: 0;
        padding: 0;
        height: 40px;
    }
        header nav .parent::after {
            content: "";
            display: block;
            clear: both;
        }
        header nav .parent .menu {
            float: left;
            border-right: 1px #777777 solid;
            list-style: none;
            width: 15%;
            cursor: pointer;
            position: relative;
        }
        header nav .parent .menu:hover {
            background: #595959;
        }
            header nav .parent .menu p {
                color: #ffffff;
                line-height: 40px;
                text-indent: 1.5em;
                margin: 0;
            }
            header nav .parent .menu .icon {
                position: absolute;
                top: 10px;
                right: 10px;
            }
    header nav .child ul {
        margin: 0;
        padding: 0;
        z-index: 2;
        position: absolute;
        width: 100%;
        display: none;
    }
    header nav .child ul li {
        border-top: 1px #777777 solid;
        list-style: none;
        line-height: 40px;
        height: 40px;
        background: #444444;
        color: #ffffff;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        text-indent: 1.5em;
        width: 100%;
    }
        header nav .child ul li:hover {
        background: #595959;
        }
        header nav .child ul li a {
            color: white;
            text-decoration: none;
            display: block;
            width: 100%;
            height: 100%;

        }

/**
* コンテンツ
*/
#contents {
  width: 95%;
  margin: 0 auto;
}

/**
* メッセージボックス
*/
.messageDialog {
    width: 100%;
    margin: 40px 0;
    border-radius: 10px;
    background: #ffffff;
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, .5);
            box-shadow: 0 3px 3px rgba(0, 0, 0, .5);
}
    .messageDialog .sectionInner {
        padding: 15px 15px 15px 15px;
    }
    .messageDialog h2 {
        height: 40px;
        line-height: 40px;
        margin: 0;
        color: #ff681e;
        background: #e8e8e8;
        border-radius: 10px 10px 0 0;
        font-size: 1.1em;
        text-indent: 1.2em;
        position: relative;
    }
    .messageDialog ul {
        margin: 0;
        padding: 0;
    }
        .messageDialog ul li {
              list-style-position: inside;
              padding-left: 1em;
              text-indent: -1.3em;
              line-height: 1.0;
        }
            .messageDialog ul li:not(:first-child) {
                margin: 10px 0 0;
            }

/**
 * フッタ
 */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    min-width: 980px;
    background: #000000;
    color: #ffffff;
    font-size: .7em;
}
    footer::after {
        content: "";
        display: block;
        clear: both;
    }
    footer .pageTop {
        position: fixed;
        right: 20px;
        bottom: 40px;
        background: transparent;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #ff681e;
        -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, .5);
                box-shadow: 0 6px 20px rgba(0, 0, 0, .5);
    }
        footer .pageTop a {
            display: block;
            width: 40px;
            height: 40px;
        }
            footer .pageTop a img {
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
                margin: auto;
            }
    footer p {
        line-height: .6;
    }
    footer .version {
        float: left;
        margin-left: 10px;
    }
    footer .copyrights {
        float: right;
        margin-right: 20px;
    }

/**
* ダイアログ
*/
#dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    min-width: 980px;
    z-index: 15;
    visibility: hidden
}
    #dialog .dialogContent {
        width: 100%;
        height: 100%;
        position: relative;
    }
        #dialog .dialogContent .dialogBox {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            width: 30%;
            height: 200px;
            margin: auto;
            -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);
                    box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);
            border-radius: 5px;
            background: #ffffff;
            text-align: center;
            display: none;
        }
            #dialog .dialogContent .dialogBox p {
                margin: 50px 0;
            }
            #dialog .dialogContent .dialogBox .answer {
                margin: 0;
            }
                #dialog .dialogContent .dialogBox .answer input {
                    border: none;
                    outline: none;
                    padding: 0;
                    -webkit-appearance: none;
                        -moz-appearance: none;
                            appearance: none;
                    cursor: pointer;
                    width: 40%;
                    padding: 10px 0;
                    border-radius: 5px;
                    color: white;
                }
                    #dialog .dialogContent .dialogBox .answer input:not(:first-child) {
                    margin: 0 0 0 20px;
                    }
                #dialog .dialogContent .dialogBox .answer .cancel {
                    background: #999999;
                    -webkit-box-shadow: 0 3px #908f90;
                            box-shadow: 0 3px #908f90;
                }
                #dialog .dialogContent .dialogBox .answer .agree {
                    background: #ff681e;
                    -webkit-box-shadow: 0 3px #cc5721;
                            box-shadow: 0 3px #cc5721;
                }

.verticalSplit {
    margin: 10px 0 15px 0;
}
    .verticalSplit::after {
        content: "";
        display: block;
        clear: both;
    }

/**
* ページ切替
*/
.paging ul {
    margin: 0;
    padding: 0;
}
    .paging ul::after {
        content: "";
        display: block;
        clear: both;
    }
    .paging ul li {
        float: left;
        list-style-type: none;
        text-align: center;
        width: 30px;
        height: 30px;
        line-height: 30px;
        background: #e5e5e5;
        color: #222222;
    }
        .paging ul li.possible  {
            cursor: pointer;
        }
        .paging ul li:not(:first-child) {
            margin: 0 0 0 5px;
        }
        .paging ul li.arrowRight {
            margin: 0 0 0 20px;
        }
        .paging ul li.arrowLeft {
            margin: 0 20px 0 0;
        }
    .paging ul .current {
        background: #ff681e;
        color: #ffffff;
    }

/**
* タブ
*/
.tab-wrap {
    display: flex;
    flex-wrap: wrap;
}
.tab-label {
    color: White;
    background: gray;
    margin: 10px 1px 10px 0px;
    padding: 10px 30px;
    order: -1;
}
    .tab-label:hover {
        background: #666666;
        cursor: pointer;
    }
.tab-content {
    width: 100%;
    display: none;
}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
    background: black;
}
.tab-switch:checked+.tab-label+.tab-content {
     display: block;
}
/* ラジオボタン非表示 */
.tab-switch {
    display: none;
}

/**
* 月切替
*/
.monthChange ul {
    margin: 0;
    padding: 0;
}
    .monthChange ul::after {
        content: "";
        display: block;
        clear: both;
    }
    .monthChange ul li {
        float: left;
        list-style-type: none;
        text-align: center;
        width: 30px;
        height: 30px;
        line-height: 30px;
        background: #e5e5e5;
        color: #222222;
    }
        .monthChange ul li.cell {
        width: 90px;
        }
        .monthChange ul li.possible  {
            cursor: pointer;
        }
        .monthChange ul li:not(:first-child) {
            margin: 0 0 0 5px;
        }
        .monthChange ul li.arrowRight {
            margin: 0 0 0 20px;
        }
        .monthChange ul li.arrowLeft {
            margin: 0 20px 0 0;
        }
    .monthChange ul .current {
        background: #ff681e;
        color: #ffffff;
    }

/**
* デートピッカー
*/
#ui-datepicker-div {
    border: none;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .5);
            box-shadow: 0 0 20px rgba(0, 0, 0, .5);
    background: white;
    width: 240px;
}
    #ui-datepicker-div .ui-widget-header {
        background: #ffffff;
        border: none;
        margin: 10px 0;
    }
    #ui-datepicker-div th {
        color: #999999;
        width: 26px;
        height: 26px;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
    }
    #ui-datepicker-div table {
        vertical-align: middle;
    }
    #ui-datepicker-div td {
        text-align: center;
        width: 26px;
        height: 26px;
    }
        #ui-datepicker-div td a {
            text-align: center;
            width: 26px;
            height: 26px;
            line-height: 26px;
            border-radius: 50%;
        }
    #ui-datepicker-div .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
        border: none;
        background: #ffffff;
    }
    #ui-datepicker-div .ui-state-active {
        background: #ff681e;
        color: #ffffff;
    }
    #ui-datepicker-div .ui-icon-circle-triangle-e {
        background: url(../img/date_arrow_r.png) no-repeat center center;
    }
    #ui-datepicker-div .ui-icon-circle-triangle-w {
        background: url(../img/date_arrow_l.png) no-repeat center center;
    }

.rc-handle-container {
    position: relative;
}
.rc-handle {
    position: absolute;
    width: 7px;
    cursor: ew-resize;
    margin-left: -3px;
    z-index: 2;
}

table.rc-table-resizing {
    cursor: ew-resize;
}
    table.rc-table-resizing thead,
    table.rc-table-resizing thead > th,
    table.rc-table-resizing thead > th > a {
        cursor: ew-resize;
    }

/**
* エラーダイアログ
*/
.errorDialog {
    width: 100%;
    margin: 10px 0;
    border-radius: 10px;
    background: #ffffff;
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, .5);
            box-shadow: 0 3px 3px rgba(0, 0, 0, .5);
}
    .errorDialog .sectionInner {
        padding: 15px 15px 15px 15px;
    }
    .errorDialog h2 {
        height: 40px;
        line-height: 40px;
        margin: 0;
        color: #ff681e;
        background: #e8e8e8;
        border-radius: 10px 10px 0 0;
        font-size: 1.1em;
        text-indent: 1.2em;
        background: #9c191d;
        color: #ffffff;
    }
    .errorDialog .sectionInner {
        color: #d61519;
    }
        .errorDialog .sectionInner ul {
            margin: 0;
            padding: 0;
        }
            .errorDialog .sectionInner ul li {
                list-style-position: inside;
                padding-left: 1em;
                text-indent: -1.3em;
                line-height: 1.0;
            }
                .errorDialog .sectionInner ul li:not(:first-child) {
                    margin: 10px 0 0;
                }

/* 通知メッセージ */
.notice {
    width: 94%;
    margin: 0 auto;
    border-radius: 10px;
    background: #ffffff;
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, .5);
            box-shadow: 0 3px 3px rgba(0, 0, 0, .5);
}
    .notice h2 {
        height: 60px;
        line-height: 60px;
        margin: 0;
        color: #ff681e;
        background: #e8e8e8;
        border-radius: 10px 10px 0 0;
        font-size: 1.1em;
        text-align: center;
        position: relative;
    }


/**
* 入力項目
*/
.dummy {
    width: 100%;
    height: 36px;
    line-height: 36px;
    white-space: nowrap;
}
/* セレクトエリア */
.selectParts {
    width: 100%;
    height: 36px;
    line-height: 36px;
    white-space: nowrap;
}
    .selectParts .description {
        display: inline-block;
        width: 40%;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        margin: 0;
        padding: 0 0 0 6px;
        border-top: 1px #ffffff solid;
        border-bottom: 1px #ffffff solid;
        background: #d0d0d0;
    }
    .selectParts .require {
        color: #ff0000;
    }
    .selectParts .containSelect {
        display: inline-block;
        margin: 0;
        padding: 0;
        overflow: hidden;
        vertical-align: middle;
        height: 30px;
        background: url(../img/select_arrow.png) #f0f0f0 no-repeat right 0px;
        width: 55%;
        position: relative;
    }
    .selectParts .readonly {
        background-color: #ffb28c;
        background: url(../img/select_arrow.png) #ffb28c no-repeat right 0px;
    }
    .selectParts select {
        display: inline-block;
        width: 100%;
        height: 30px;
        line-height: 30px;
        padding: 0 0 0 6px;
        position: absolute;
        top: 0;
        left: 0;
    }
/* 参照エリア */
.referParts {
    width: 100%;
    height: 36px;
    line-height: 36px;
    white-space: nowrap;
}
    .referParts .description {
        display: inline-block;
        width: 40%;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        margin: 0;
        padding: 0 0 0 6px;
        border-top: 1px #ffffff solid;
        border-bottom: 1px #ffffff solid;
        background: #d0d0d0;
    }
    .referParts .require {
        color: #ff0000;
    }
    .referParts .referArea {
        display: inline-block;
        width: 60%;
    }
        .referParts .referArea .referInput {
            padding: 0 .5em;
            line-height: 2em;
            height: 30px;
            width: 65%;
            background: #f0f0f0;
            border-bottom: solid 1px #bcbcbc;
        }
        .referParts .referArea .readonly {
            background: #ffb28c;
        }
            .referParts .referArea .referInput:focus {
                border-color: #ff681e;
            }
        .referParts .referArea .referBtn {
            background: #555555;
            color: #ffffff;
            height: 30px;
            padding: 0 .5em;
            margin: 0 0 0 5px;
            cursor: pointer;
            width: 20%;
        }
            .referParts .referArea .referBtn:hover {
                background: #666666;
            }
            .referParts .referArea .referBtn:disabled {
                background: #d3d3d3;
                color: #696969;
            }
        .referParts .referArea .searchBtn {
            background: #356191;
            color: #ffffff;
            height: 30px;
            padding: 0 .5em;
            margin: 0 0 0 5px;
            cursor: pointer;
            width: 20%;
        }
            .referParts .referArea .searchBtn:hover {
                background: #5177A1;
            }
            .referParts .referArea .searchBtn:disabled {
                background: #d3d3d3;
                color: #696969;
            }

/* ファイルアップロードエリア */
.fileuploadParts {
    width: 100%;
    height: 36px;
    line-height: 36px;
    white-space: nowrap;
}
    .fileuploadParts .description {
        display: inline-block;
        width: 40%;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        margin: 0;
        padding: 0 0 0 6px;
        border-top: 1px #ffffff solid;
        border-bottom: 1px #ffffff solid;
        background: #d0d0d0;
    }
    .fileuploadParts .fileArea {
        display: inline-block;
        width: 60%;
    }
        .fileuploadParts .fileArea .filepath {
            padding: 0 .5em;
            line-height: 2em;
            height: 30px;
            width: 65%;
            background: #ffb28c;
            border-bottom: solid 1px #bcbcbc;
        }
        .fileuploadParts .fileArea .fileBtn {
            -moz-appearance: none;
            -webkit-appearance: none;
            appearance: none;
            display: inline-block;
            font-size: inherit;
            text-align:center;
            vertical-align: middle;
            background: #a2cef9;
            color: #0967c4;
            height: 30px;
            padding: 0 .5em;
            margin: 0 0 0 5px;
            cursor: pointer;
            width: 20%;
        }
            .fileuploadParts .fileArea .fileBtn input{
                display: none;
            }
            .fileuploadParts .fileArea .fileBtn:hover {
                background: #5ca8f2;
            }

/* 入力フィールド */
.textParts {
    width: 100%;
    height: 36px;
    line-height: 36px;
    white-space: nowrap;
}
    .textParts .description {
        display: inline-block;
        width: 40%;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        margin: 0;
        padding: 0 0 0 6px;
        border-top: 1px #ffffff solid;
        border-bottom: 1px #ffffff solid;
        background: #d0d0d0;
    }
    .textParts .require {
        color: #ff0000;
    }
    .textParts .readonly {
        background-color: #ffb28c;
    }
    .textParts input {
        width: 55%;
        height: 30px;
        padding: 0 .5em;
        line-height: 2em;
        background: #f0f0f0;
        border-bottom: solid 1px #bcbcbc;
    }
        .textParts input:focus {
            border-color: #ff681e;
        }
    .textParts .attention {
        text-indent: .5em;
        font-size: .8em;
        color: #ff0000;
        margin: 5px 0 25px 0;
    }
/* テキストエリア */
.textareaParts {
    width: 100%;
    line-height: 100px;
    white-space: nowrap;
}
    .textareaParts .description {
        display: inline-block;
        width: 40%;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        margin: 0;
        padding: 0 0 0 6px;
        border-top: 1px #ffffff solid;
        border-bottom: 1px #ffffff solid;
        background: #d0d0d0;
    }
    .textareaParts .require {
        color: #ff0000;
    }
    .textareaParts .readonly {
        background-color: #ffb28c;
    }
    .textareaParts textarea {
        border: 1px solid #dddddd;
        width: 56%;
        height: 94px;
        padding:.5em;
        background: #f0f0f0;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
    }
        .textareaParts textarea:focus {
            border-bottom-color: #ff681e;
        }

/* チェックボックス */
.checkParts {
    height: 36px;
    line-height: 36px;
    white-space: nowrap;
}
    .checkParts .description {
        display: inline-block;
        width: 40%;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        margin: 0;
        padding: 0 0 0 6px;
        border-top: 1px #ffffff solid;
        border-bottom: 1px #ffffff solid;
        background: #d0d0d0;
    }
    .checkParts .require {
        color: #ff0000;
    }
    .checkParts .readonly {
        background-color: #ffb28c;
    }
    .checkParts label {
        display: inline-block;
        position: relative;
        padding: 2px 0 0 25px;
        cursor: pointer;
    }
        .checkParts label input {
            opacity: 0;
        }
            .checkParts label input:checked + .btn {
                background-image: url("../../img/check_checked.png");
            }
            .checkParts label input[disabled=disabled] + .btn {
                background-image: url("../../img/check_invalid.png");
            }
        .checkParts label .btn {
            display: inline-block;
            position: absolute;
            left: 0;
            top: 10px;
            display: block;
            background: url("../img/check_valid.png") no-repeat 0 0;
            width: 18px;
            height: 18px;
        }
        .checkParts label:not(:first-child) {
            margin: 0 0 0 5px;
        }
/* ラジオボタン */
.radioParts {
    height: 36px;
    line-height: 36px;
}
    .radioParts .description {
        display: inline-block;
        width: 40%;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        margin: 0;
        padding: 0 0 0 6px;
        border-top: 1px #ffffff solid;
        border-bottom: 1px #ffffff solid;
        background: #d0d0d0;
    }
    .radioParts .require {
        color: #ff0000;
    }
    .radioParts .readonly {
        background-color: #ffb28c;
    }
    .radioParts label {
        display: inline-block;
        position: relative;
        padding: 2px 0 0 25px;
        cursor: pointer;
    }
        .radioParts label input {
            opacity: 0;
        }
            .radioParts label input:checked + .btn {
                background-image: url("../../img/radio_checked.png");
            }
            .searchForm .radioParts label input[disabled=disabled] + .btn {
                background-image: url("../../img/radio_invalid.png");

            }
        .radioParts label .btn {
            display: inline-block;
            position: absolute;
            left: 0;
            top: 10px;
            display: block;
            background: url("../img/radio_valid.png") no-repeat 0 0;
            width: 20px;
            height: 20px;
        }
        .radioParts label:not(:first-child) {
            margin: 0 0 0 5px;
        }
/* 日付 */
.dateParts {
    width: 100%;
    height: 36px;
    line-height: 36px;
    white-space: nowrap;
}
    .dateParts::after {
        content: "";
        display: block;
        clear: both;
    }
    .dateParts .Day {
        display: inline-block;
        width: 100%;
    }
    .dateParts .startDate {
        display: inline-block;
        width: 50%;
    }
    .dateParts .endDate {
        display: inline-block;
    }
    .dateParts .description {
        display: inline-block;
        width: 40%;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        margin: 0;
        padding: 0 0 0 6px;
        border-top: 1px #ffffff solid;
        border-bottom: 1px #ffffff solid;
        background: #d0d0d0;
    }
    .dateParts .require {
        color: #ff0000;
    }
    .dateParts .readonly {
        background-color: #ffb28c;
    }
    .dateParts input {
        display: inline-block;
        height: 30px;
        line-height: 30px;
        background: #f0f0f0;
        width: 100px;
        border-bottom: solid 1px #bcbcbc;
        text-indent: 0.5em;
        margin: 0;
        padding: 0;
    }
        .dateParts input:focus {
            border-color: #ff681e;
        }

/* アンカーフィールド */
.AnchorParts {
    width: 100%;
    height: 36px;
    line-height: 36px;
    white-space: nowrap;
}
    .AnchorParts .description {
        display: inline-block;
        width: 40%;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        margin: 0;
        padding: 0 0 0 6px;
        border-top: 1px #ffffff solid;
        border-bottom: 1px #ffffff solid;
        background: #d0d0d0;
    }
    .AnchorParts .require {
        color: #ff0000;
    }
    .AnchorParts a {
        width: 55%;
        height: 30px;
        padding: 0 .5em;
        line-height: 2em;
        text-decoration:underline;
    }
        .AnchorParts a:hover {
            color:#ff0000;
            cursor: pointer;
        }

/* スタイル設定 */
input, select, textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    border: 0;
    margin: 0;
    padding: 0;
    background: none transparent;
    vertical-align: middle;
    font-size: inherit;
    color: inherit;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
}
    input:focus, select:focus, textarea:focus {
        outline: 0;
    }

/* 路線追跡ボタン */
.clsTrackingBtn {
    background: #555555;
    color: #ffffff;
    height: 30px;
    padding: 0 .5em;
    margin: 0 0 0 5px;
    cursor: pointer;
    width: 20%;
}
    .clsTrackingBtn:disabled {
        background: #d3d3d3;
        color: #696969;
    }

/**
* ローディング
*/
#loading {
    position: fixed;
    left: 50%;
    top: 50%;
}
#loader-bg {
    opacity: 0.6;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: #FFF;
    z-index: 1;
}
/**
* 表示・入力項目
*/
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.center {
	text-align: center;
}
.number, .numeric, .integer, .positive, .positive-integer {
	text-align: right;
}

/**
* 色反転文字
*/
.must {
    background: #ec3b3b;
    color: #ffffff;
    font-size: 0.7rem;
}
.option {
    background: #439e39;
    color: #ffffff;
    font-size: 0.7rem;
}