﻿/* ------------------------------
 擬似フレーム　スタイル定義
------------------------------ */

#Menuheaderbox {
    background-color: #f3f3f3;
    padding-top: 32px;
}

.menuMain {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    padding: 32px 0;
    background-color: #f8f8f8;
    border-top: 1px solid #cfcfcf;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
    .menuMain {
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 767px) {
    .menuMain {
        flex-direction: column;
        align-items: center;
        padding: 32px 3vw;
    }
}
.menuMain > div {
    display: flex;
    gap: 16px;
}
@media screen and (max-width: 767px) {
    .menuMain > div {
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
}

.menuMain2 {
    background-color: #f8f8f8;
    padding-bottom: 32px;
}

.sideMenu, .guidance, .parsonalParts {
    font-size: 16px;
}

.parsonalArea {
    width: calc(100% - 255px);
    height: 100%;
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
}

.guidance {
    width: 500px;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 6px;
    border: 1px solid #cfcfcf;
    background-color: #fff;
    transition: height .3s;
    display: none;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
    .guidance {
        width: 600px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 767px) {
    .guidance {
        width: calc(100% - 6vw);
        margin: 0 3vw;
    }
}

.parsonalParts {
    /*height: calc(100% - 100px);*/
    min-height: 100px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 2px;
}

.guidanceboxWrapper {
    width: 500px;
    height: 200px;
    background-color: #fff;
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    transition: height .3s;
    display: none;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
    .guidanceboxWrapper {
        width: 600px;
        margin: 0px auto 0;
    }
}
@media screen and (max-width: 767px) {
    .guidanceboxWrapper {
        width: calc(100% - 6vw);
        margin: 0 3vw;
    }
}

.guidancebox {
    box-sizing: border-box;
}

/*業務メニューお知らせ*/
.menuHead {
    display: flex;
    justify-content: center;
    gap: 32px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
    .menuHead {
        flex-direction: column;
    }
}
@media screen and (max-width: 767px) {
    .menuHead {
        flex-direction: column;
    }
}

.guidancebox {
    height: 170px;
    padding: 16px;
    overflow-y: auto;
}

#guidanceTitle {
    word-spacing: 2px;
    font-weight: bold;
    font-size: 18px;
}

.ulGuidance {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    margin: 5px;
}

    .ulGuidance li {
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }

        .ulGuidance li div.titleLine {
            width: 100%;
            display: flex;
            flex-wrap: nowrap;
            line-height: 18px;
        }

        .ulGuidance li div.title {
            overflow: hidden;
            text-overflow: ellipsis;
            word-break: normal;
            white-space: nowrap;
            width: 100%;
            font-weight: bold;
        }

        .ulGuidance li div.otherLine {
            margin-left: 80px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            line-height: 18px;
        }

        .ulGuidance li div.naiyo {
            word-break: break-all;
            margin-right: 10px;
            width: 100%;
        }

/* ********************** */
/* 左ナビゲーションの設定 */
/* ********************** */
div.lblMenu1Title {
    margin: 5px;
    display: block;
    vertical-align: middle;
    width: calc(100% - 12px);
    background-color: rgb(255,0,102);
    font-size: 26px;
    color: white;
    /*height: 50px;*/
}

div.parentMenu1 > input[type=checkbox] {
    display: none;
}

div.parentMenu1 {
    /*display: block;
    vertical-align: middle;
    width: 100%;*/
    /*height: 50px;*/
}

div.parentMenu1 > input[type=checkbox] + label,
.childMenu1 label {
    display: block;
    width: 207px;
    padding: 10px 0;
    background-color: #ba256c;
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    -ms-user-select: none;
    user-select: none; /* ボタン認識の為ユーザー選択させない */
}
@media screen and (min-width: 768px) and (max-width: 879px) {
    div.parentMenu1 > input[type=checkbox] + label,
    .childMenu1 label {
        width: 168px;
    }
}
@media screen and (max-width: 767px) {
    div.parentMenu1 > input[type=checkbox] + label,
    .childMenu1 label {
        width: 100%;
    }
}

.childMenu1 label {
    background-color: rgb(22,58,90);
}

div.parentMenu1 > input[type=checkbox] + label:hover {
    background-color: #de7cab;
}

.childMenu1 label:hover {
    outline: 1px solid rgb(22,58,90);
    background-color: rgba(22,58,90,0.15);
    color: rgb(22,58,90);
}
/* 左ナビゲーション画像の共通設定 */
/*div.parentMenu1 > input[type=checkbox] + label:before,
.childMenu1 label:before {
    margin-top: -2px;
    width: 32px;
    min-width: 32px;
    height: 32px;
    min-height: 32px;
    content: " ";
    background-image: none;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    float: left;
    margin-right: 10px;
}*/
/* 左ナビゲーション画像：在庫管理 */
div.parentMenu1.Inventory > input[type=checkbox] + label:before {
    background-image: url(../img/oiltank.png);
}
/* 左ナビゲーション画像：受注管理 */
div.parentMenu1.Order > input[type=checkbox] + label:before {
    background-image: url(../img/order.png);
}
/* 左ナビゲーション画像：回送管理 */
div.parentMenu1.Forwarding > input[type=checkbox] + label:before {
    background-image: url(../img/foward.png);
}
/* 左ナビゲーション画像：回送管理 */
div.parentMenu1.Master > input[type=checkbox] + label:before {
    background-image: url(../img/master.png);
}
/* 左ナビゲーション画像：請求支払管理 */
div.parentMenu1.Billing > input[type=checkbox] + label:before {
    background-image: url(../img/pay.png);
}
/* 左ナビゲーション画像：タンク車所在管理 */
div.parentMenu1.Location > input[type=checkbox] + label:before {
    background-image: url(../img/tank.png);
}
/* 左ナビゲーション画像：実績・統計 */
div.parentMenu1.Report > input[type=checkbox] + label:before {
    background-image: url(../img/statistics.png);
}
/* 左ナビゲーション画像：実績・統計 */
div.parentMenu1.DataLinkage > input[type=checkbox] + label:before {
    background-image: url(../img/datalink.png);
}
/* 左ナビゲーション画像：ダウンロード */
div.parentMenu1.Download > input[type=checkbox] + label:before {
    background-image: url(../img/Download.png);
}
/* 左ナビゲーション：アコーディオン展開マーク */
div.parentMenu1.hasChild > input[type=checkbox] + label {
    padding-right: 11px;
}

    div.parentMenu1.hasChild > input[type=checkbox] + label:after {
        position: absolute;
        top: calc(50% - 12px);
        right: -5px;
        width: 32px;
        min-width: 32px;
        height: 32px;
        min-height: 32px;
        content: "▼";
        background-image: none;
        display: block;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 1;
    }

div.parentMenu1.hasChild > input[type=checkbox]:checked + label:after {
    content: "▲";
}
/* 左ナビゲーション：メニュー２への誘導マーク */
div.parentMenu1.menu2Link > input[type=checkbox] + label {
    padding-right: 11px;
}

    div.parentMenu1.menu2Link > input[type=checkbox] + label:after {
        position: absolute;
        top: calc(50% - 12px);
        right: -5px;
        width: 32px;
        min-width: 32px;
        height: 32px;
        min-height: 32px;
        content: "▶";
        background-image: none;
        display: block;
        background-repeat: no-repeat;
        background-size: contain;
    }

div.parentMenu1.menu2Link > input[type=checkbox]:checked + label {
    z-index: 999;
}

    div.parentMenu1.menu2Link > input[type=checkbox]:checked + label:after {
        content: "◀";
    }

div.parentMenu1.menu2Link {
    position: relative;
}

    div.parentMenu1.menu2Link > .childMenu1 {
        position: fixed;
        top: 38px;
        /*left:245px;*/
        left: 0;
        padding-left: 245px;
        z-index: 2;
        background-color: rgba(255,255,255,0.85);
        height: calc(100vh - 60px);
        width: calc(100vw - 245px);
        min-width: 250px;
    }

.menu2wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
    align-content: flex-start;
    /*justify-content:flex-start;*/
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    text-align: left;
}

    .menu2wrap > div {
        width: 250px;
        min-width: 250px;
        max-width: 250px;
        /*height:30px;*/
        margin-left: 10px;
        background-color: white;
    }

div.parentMenu1.menu2Link > .childMenu1 > div {
    /*display:flex;*/
}

div.parentMenu1.menu2Link .childMenu1 label::before {
    width: 0;
    min-width: 0;
}

div.parentMenu1.menu2Link .childMenu1 label {
    /*width: 200px;*/
    /*min-width: 200px;*/
    padding-top: 8px;
    padding-left: 5px;
    font-size: 18px;
    height: 40px;
}
/* 左ナビゲーション アコーディオン */
div.parentMenu1 > input[type=checkbox] + label + div {
    display: none;
}

div.parentMenu1 > input[type=checkbox]:checked + label + div {
    display: block;
}

/* **************************/
/* 左ナビゲーションの設定２ */
/* **************************/
div.lblMenu2Title {
    margin: 5px;
    display: block;
    vertical-align: middle;
    width: calc(100% - 12px);
    background-color: rgb(0,102,204);
    font-size: 26px;
    color: white;
    /*height: 50px;*/
}

div.parentMenu2 > input[type=checkbox] {
    display: none;
}

div.parentMenu2 {
    display: block;
    vertical-align: middle;
    width: 100%;
    /*height: 50px;*/
}

div.parentMenu2 > input[type=checkbox] + label,
.childMenu2 label {
    display: block;
    width: 207px;
    padding: 10px 0;
    background-color: #ba256c;
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    -ms-user-select: none;
    user-select: none; /* ボタン認識の為ユーザー選択させない */
}
@media screen and (min-width: 768px) and (max-width: 879px) {
    div.parentMenu2 > input[type=checkbox] + label,
    .childMenu2 label {
        width: 168px;
    }
}
@media screen and (max-width: 767px) {
    div.parentMenu2 > input[type=checkbox] + label,
    .childMenu2 label {
        width: 100%;
    }
}

.childMenu2 label {
    background-color: rgb(22,58,90);
}

div.parentMenu2 > input[type=checkbox] + label:hover {
    background-color: #de7cab;
}

.childMenu2 label:hover {
    outline: 1px solid rgb(22,58,90);
    background-color: rgba(22,58,90,0.15);
    color: rgb(22,58,90);
}
/* 左ナビゲーション画像の共通設定 */
/*div.parentMenu2 > input[type=checkbox] + label:before,
.childMenu2 label:before {
    margin-top: -2px;
    width: 32px;
    min-width: 32px;
    height: 32px;
    min-height: 32px;
    content: " ";
    background-image: none;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    float: left;
    margin-right: 10px;
}*/
/* 左ナビゲーション画像：在庫管理 */
div.parentMenu2.Inventory > input[type=checkbox] + label:before {
    background-image: url(../img/oiltank.png);
}
/* 左ナビゲーション画像：受注管理 */
div.parentMenu2.Order > input[type=checkbox] + label:before {
    background-image: url(../img/order.png);
}
/* 左ナビゲーション画像：回送管理 */
div.parentMenu2.Forwarding > input[type=checkbox] + label:before {
    background-image: url(../img/foward.png);
}
/* 左ナビゲーション画像：回送管理 */
div.parentMenu2.Master > input[type=checkbox] + label:before {
    background-image: url(../img/master.png);
}
/* 左ナビゲーション画像：請求支払管理 */
div.parentMenu2.Billing > input[type=checkbox] + label:before {
    background-image: url(../img/pay.png);
}
/* 左ナビゲーション画像：タンク車所在管理 */
div.parentMenu2.Location > input[type=checkbox] + label:before {
    background-image: url(../img/tank.png);
}
/* 左ナビゲーション画像：実績・統計 */
div.parentMenu2.Report > input[type=checkbox] + label:before {
    background-image: url(../img/statistics.png);
}
/* 左ナビゲーション画像：実績・統計 */
div.parentMenu2.DataLinkage > input[type=checkbox] + label:before {
    background-image: url(../img/datalink.png);
}
/* 左ナビゲーション画像：ダウンロード */
div.parentMenu2.Download > input[type=checkbox] + label:before {
    background-image: url(../img/Download.png);
}
/* 左ナビゲーション：アコーディオン展開マーク */
div.parentMenu2.hasChild > input[type=checkbox] + label {
    padding-right: 11px;
}

    div.parentMenu2.hasChild > input[type=checkbox] + label:after {
        position: absolute;
        top: calc(50% - 12px);
        right: -5px;
        width: 32px;
        min-width: 32px;
        height: 32px;
        min-height: 32px;
        content: "▼";
        background-image: none;
        display: block;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 1;
    }

div.parentMenu2.hasChild > input[type=checkbox]:checked + label:after {
    content: "▲";
}
/* 左ナビゲーション：メニュー２への誘導マーク */
div.parentMenu2.menu2Link > input[type=checkbox] + label {
    padding-right: 11px;
}

    div.parentMenu2.menu2Link > input[type=checkbox] + label:after {
        position: absolute;
        top: calc(50% - 12px);
        right: -5px;
        width: 32px;
        min-width: 32px;
        height: 32px;
        min-height: 32px;
        content: "▶";
        background-image: none;
        display: block;
        background-repeat: no-repeat;
        background-size: contain;
    }

div.parentMenu2.menu2Link > input[type=checkbox]:checked + label {
    z-index: 999;
}

    div.parentMenu2.menu2Link > input[type=checkbox]:checked + label:after {
        content: "◀";
    }

div.parentMenu2.menu2Link {
    position: relative;
}

    div.parentMenu2.menu2Link > .childMenu2 {
        position: fixed;
        top: 38px;
        /*left:245px;*/
        left: 0;
        padding-left: 245px;
        z-index: 2;
        background-color: rgba(255,255,255,0.85);
        height: calc(100vh - 60px);
        width: calc(100vw - 245px);
        min-width: 250px;
    }

.menu2wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
    align-content: flex-start;
    /*justify-content:flex-start;*/
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    text-align: left;
}

    .menu2wrap > div {
        width: 250px;
        min-width: 250px;
        max-width: 250px;
        /*height:30px;*/
        margin-left: 10px;
        background-color: white;
    }

div.parentMenu2.menu2Link .childMenu2 label::before {
    width: 0;
    min-width: 0;
}

div.parentMenu2.menu2Link .childMenu2 label {
    /*width: 200px;*/
    /*min-width: 200px;*/
    padding-top: 8px;
    padding-left: 5px;
    font-size: 18px;
    height: 40px;
}
/* 左ナビゲーション アコーディオン */
div.parentMenu2 > input[type=checkbox] + label + div {
    display: none;
}

div.parentMenu2 > input[type=checkbox]:checked + label + div {
    display: block;
}

/* **************************/
/* 左ナビゲーションの設定３ */
/* **************************/
div.lblMenu3Title {
    margin: 5px;
    display: block;
    vertical-align: middle;
    width: calc(100% - 12px);
    background-color: rgb(0,176,80);
    font-size: 26px;
    color: white;
    /*height: 50px;*/
}

div.parentMenu3 > input[type=checkbox] {
    display: none;
}

div.parentMenu3 {
    display: block;
    vertical-align: middle;
    width: 100%;
    /*height: 50px;*/
}

    div.parentMenu3 > input[type=checkbox] + label,
    .childMenu3 label {
        margin: 5px;
        display: block;
        text-align: left;
        padding-left: 10px;
        padding-top: 12px;
        width: calc(100% - 12px);
        height: 50px;
        background-color: rgb(204,255,204);
        color: rgb(0,176,80);
        /*font-weight: bold;*/
        font-size: 22px;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        cursor: pointer;
        position: relative;
        -ms-user-select: none;
        user-select: none; /* ボタン認識の為ユーザー選択させない */
    }

.childMenu3 label {
    background-color: rgb(22,58,90);
}

div.parentMenu3 > input[type=checkbox] + label:hover {
    outline: 1px solid rgb(15,39,61);
    background-color: rgba(15,39,61,0.5);
    color: rgb(15,39,61);
}

.childMenu3 label:hover {
    outline: 1px solid rgb(22,58,90);
    background-color: rgba(22,58,90,0.15);
    color: rgb(22,58,90);
}
/* 左ナビゲーション画像の共通設定 */
div.parentMenu3 > input[type=checkbox] + label:before,
.childMenu3 label:before {
    margin-top: -2px;
    width: 32px;
    min-width: 32px;
    height: 32px;
    min-height: 32px;
    content: " ";
    background-image: none;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    float: left;
    margin-right: 10px;
}
/* 左ナビゲーション画像：在庫管理 */
div.parentMenu3.Inventory > input[type=checkbox] + label:before {
    background-image: url(../img/oiltank.png);
}
/* 左ナビゲーション画像：受注管理 */
div.parentMenu3.Order > input[type=checkbox] + label:before {
    background-image: url(../img/order.png);
}
/* 左ナビゲーション画像：回送管理 */
div.parentMenu3.Forwarding > input[type=checkbox] + label:before {
    background-image: url(../img/foward.png);
}
/* 左ナビゲーション画像：回送管理 */
div.parentMenu3.Master > input[type=checkbox] + label:before {
    background-image: url(../img/master.png);
}
/* 左ナビゲーション画像：請求支払管理 */
div.parentMenu3.Billing > input[type=checkbox] + label:before {
    background-image: url(../img/pay.png);
}
/* 左ナビゲーション画像：タンク車所在管理 */
div.parentMenu3.Location > input[type=checkbox] + label:before {
    background-image: url(../img/tank.png);
}
/* 左ナビゲーション画像：実績・統計 */
div.parentMenu3.Report > input[type=checkbox] + label:before {
    background-image: url(../img/statistics.png);
}
/* 左ナビゲーション画像：実績・統計 */
div.parentMenu3.DataLinkage > input[type=checkbox] + label:before {
    background-image: url(../img/datalink.png);
}
/* 左ナビゲーション画像：ダウンロード */
div.parentMenu3.Download > input[type=checkbox] + label:before {
    background-image: url(../img/Download.png);
}
/* 左ナビゲーション：アコーディオン展開マーク */
div.parentMenu3.hasChild > input[type=checkbox] + label {
    padding-right: 11px;
}

    div.parentMenu3.hasChild > input[type=checkbox] + label:after {
        position: absolute;
        top: calc(50% - 12px);
        right: -5px;
        width: 32px;
        min-width: 32px;
        height: 32px;
        min-height: 32px;
        content: "▼";
        background-image: none;
        display: block;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 1;
    }

div.parentMenu3.hasChild > input[type=checkbox]:checked + label:after {
    content: "▲";
}
/* 左ナビゲーション：メニュー２への誘導マーク */
div.parentMenu3.menu2Link > input[type=checkbox] + label {
    padding-right: 11px;
}

    div.parentMenu3.menu2Link > input[type=checkbox] + label:after {
        position: absolute;
        top: calc(50% - 12px);
        right: -5px;
        width: 32px;
        min-width: 32px;
        height: 32px;
        min-height: 32px;
        content: "▶";
        background-image: none;
        display: block;
        background-repeat: no-repeat;
        background-size: contain;
    }

div.parentMenu3.menu2Link > input[type=checkbox]:checked + label {
    z-index: 999;
}

    div.parentMenu3.menu2Link > input[type=checkbox]:checked + label:after {
        content: "◀";
    }

div.parentMenu3.menu2Link {
    position: relative;
}

    div.parentMenu3.menu2Link > .childMenu3 {
        position: fixed;
        top: 38px;
        /*left:245px;*/
        left: 0;
        padding-left: 245px;
        z-index: 2;
        background-color: rgba(255,255,255,0.85);
        height: calc(100vh - 60px);
        width: calc(100vw - 245px);
        min-width: 250px;
    }

.menu2wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
    align-content: flex-start;
    /*justify-content:flex-start;*/
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    text-align: left;
}

    .menu2wrap > div {
        width: 250px;
        min-width: 250px;
        max-width: 250px;
        /*height:30px;*/
        margin-left: 10px;
        background-color: white;
    }

div.parentMenu3.menu2Link .childMenu3 label::before {
    width: 0;
    min-width: 0;
}

div.parentMenu3.menu2Link .childMenu3 label {
    /*width: 200px;*/
    /*min-width: 200px;*/
    padding-top: 8px;
    padding-left: 5px;
    font-size: 18px;
    height: 40px;
}
/* 左ナビゲーション アコーディオン */
div.parentMenu3 > input[type=checkbox] + label + div {
    display: none;
}

div.parentMenu3 > input[type=checkbox]:checked + label + div {
    display: block;
}

/* **************************/
/* 左ナビゲーションの設定４ */
/* **************************/




.childMenu4 label {
    background-color: rgb(22,58,90);
}



.childMenu4 label:hover {
    outline: 1px solid rgb(22,58,90);
    background-color: rgba(22,58,90,0.15);
    color: rgb(22,58,90);
}

/* 左ナビゲーション画像：在庫管理 */
div.parentMenu4.Inventory > input[type=checkbox] + label:before {
    background-image: url(../img/oiltank.png);
}
/* 左ナビゲーション画像：受注管理 */
div.parentMenu4.Order > input[type=checkbox] + label:before {
    background-image: url(../img/order.png);
}
/* 左ナビゲーション画像：回送管理 */
div.parentMenu4.Forwarding > input[type=checkbox] + label:before {
    background-image: url(../img/foward.png);
}
/* 左ナビゲーション画像：回送管理 */
div.parentMenu4.Master > input[type=checkbox] + label:before {
    background-image: url(../img/master.png);
}
/* 左ナビゲーション画像：請求支払管理 */
div.parentMenu4.Billing > input[type=checkbox] + label:before {
    background-image: url(../img/pay.png);
}
/* 左ナビゲーション画像：タンク車所在管理 */
div.parentMenu4.Location > input[type=checkbox] + label:before {
    background-image: url(../img/tank.png);
}
/* 左ナビゲーション画像：実績・統計 */
div.parentMenu4.Report > input[type=checkbox] + label:before {
    background-image: url(../img/statistics.png);
}
/* 左ナビゲーション画像：実績・統計 */
div.parentMenu4.DataLinkage > input[type=checkbox] + label:before {
    background-image: url(../img/datalink.png);
}

/* 左ナビゲーション：アコーディオン展開マーク */
div.parentMenu4.hasChild > input[type=checkbox] + label {
    padding-right: 11px;
}

    div.parentMenu4.hasChild > input[type=checkbox] + label:after {
        position: absolute;
        top: calc(50% - 12px);
        right: -5px;
        width: 32px;
        min-width: 32px;
        height: 32px;
        min-height: 32px;
        content: "▼";
        background-image: none;
        display: block;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 1;
    }

div.parentMenu4.hasChild > input[type=checkbox]:checked + label:after {
    content: "▲";
}
/* 左ナビゲーション：メニュー２への誘導マーク */
div.parentMenu4.menu2Link > input[type=checkbox] + label {
    padding-right: 11px;
}

    div.parentMenu4.menu2Link > input[type=checkbox] + label:after {
        position: absolute;
        top: calc(50% - 12px);
        right: -5px;
        width: 32px;
        min-width: 32px;
        height: 32px;
        min-height: 32px;
        content: "▶";
        background-image: none;
        display: block;
        background-repeat: no-repeat;
        background-size: contain;
    }

div.parentMenu4.menu2Link > input[type=checkbox]:checked + label {
    z-index: 999;
}

    div.parentMenu4.menu2Link > input[type=checkbox]:checked + label:after {
        content: "◀";
    }

div.parentMenu4.menu2Link {
    position: relative;
}

    div.parentMenu4.menu2Link > .childMenu4 {
        position: fixed;
        top: 38px;
        /*left:245px;*/
        left: 0;
        padding-left: 245px;
        z-index: 2;
        background-color: rgba(255,255,255,0.85);
        height: calc(100vh - 60px);
        width: calc(100vw - 245px);
        min-width: 250px;
    }

.menu2wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
    align-content: flex-start;
    /*justify-content:flex-start;*/
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    text-align: left;
}

    .menu2wrap > div {
        width: 250px;
        min-width: 250px;
        max-width: 250px;
        /*height:30px;*/
        margin-left: 10px;
        background-color: white;
    }

div.parentMenu4.menu2Link > .childMenu4 > div {
    /*display:flex;*/
}

div.parentMenu4.menu2Link .childMenu4 label::before {
    width: 0;
    min-width: 0;
}

div.parentMenu4.menu2Link .childMenu4 label {
    /*width: 200px;*/
    /*min-width: 200px;*/
    padding-top: 8px;
    padding-left: 5px;
    font-size: 18px;
    height: 40px;
}
/* 左ナビゲーション アコーディオン */
div.parentMenu4 > input[type=checkbox] + label + div {
    display: none;
}

div.parentMenu4 > input[type=checkbox]:checked + label + div {
    display: block;
}

/* **************************/
/* 左ナビゲーションの設定５ */
/* **************************/
div.lblMenu5Title {
    margin: 5px;
    display: inline-block;
    vertical-align: middle;
    /*width: calc(50% - 12px);*/
    width: 640px;
    background-color: rgb(0,102,204);
    font-size: 26px;
    color: white;
    /*height: 50px;*/
}

div.parentMenu5 > input[type=checkbox] {
    display: none;
}

div.parentMenu5 {
    display: block;
    vertical-align: middle;
    width: 100%;
    /*height: 50px;*/
}

    div.parentMenu5 > input[type=checkbox] + label,
    .childMenu5 label {
        margin: 5px;
        display: block;
        text-align: left;
        padding-left: 10px;
        padding-top: 12px;
        width: calc(100% - 12px);
        height: 50px;
        background-color: rgb(208,206,206);
        color: rgb(59,56,56);
        /*font-weight: bold;*/
        font-size: 22px;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        cursor: pointer;
        position: relative;
        -ms-user-select: none;
        user-select: none; /* ボタン認識の為ユーザー選択させない */
    }

.childMenu5 label {
    background-color: rgb(22,58,90);
}

div.parentMenu5 > input[type=checkbox] + label:hover {
    outline: 1px solid rgb(15,39,61);
    background-color: rgba(15,39,61,0.5);
    color: rgb(15,39,61);
}

.childMenu5 label:hover {
    outline: 1px solid rgb(22,58,90);
    background-color: rgba(22,58,90,0.15);
    color: rgb(22,58,90);
}
/* 左ナビゲーション画像の共通設定 */
div.parentMenu5 > input[type=checkbox] + label:before,
.childMenu5 label:before {
    margin-top: -2px;
    width: 32px;
    min-width: 32px;
    height: 32px;
    min-height: 32px;
    content: " ";
    background-image: none;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    float: left;
    margin-right: 10px;
}
/* 左ナビゲーション画像：在庫管理 */
div.parentMenu5.Inventory > input[type=checkbox] + label:before {
    background-image: url(../img/oiltank.png);
}
/* 左ナビゲーション画像：受注管理 */
div.parentMenu5.Order > input[type=checkbox] + label:before {
    background-image: url(../img/order.png);
}
/* 左ナビゲーション画像：回送管理 */
div.parentMenu5.Forwarding > input[type=checkbox] + label:before {
    background-image: url(../img/foward.png);
}
/* 左ナビゲーション画像：回送管理 */
div.parentMenu5.Master > input[type=checkbox] + label:before {
    background-image: url(../img/master.png);
}
/* 左ナビゲーション画像：請求支払管理 */
div.parentMenu5.Billing > input[type=checkbox] + label:before {
    background-image: url(../img/pay.png);
}
/* 左ナビゲーション画像：タンク車所在管理 */
div.parentMenu5.Location > input[type=checkbox] + label:before {
    background-image: url(../img/tank.png);
}
/* 左ナビゲーション画像：実績・統計 */
div.parentMenu5.Report > input[type=checkbox] + label:before {
    background-image: url(../img/statistics.png);
}
/* 左ナビゲーション画像：実績・統計 */
div.parentMenu5.DataLinkage > input[type=checkbox] + label:before {
    background-image: url(../img/datalink.png);
}
/* 左ナビゲーション画像：ダウンロード */
div.parentMenu5.Download > input[type=checkbox] + label:before {
    background-image: url(../img/Download.png);
}
/* 左ナビゲーション：アコーディオン展開マーク */
div.parentMenu5.hasChild > input[type=checkbox] + label {
    padding-right: 11px;
}

    div.parentMenu5.hasChild > input[type=checkbox] + label:after {
        position: absolute;
        top: calc(50% - 12px);
        right: -5px;
        width: 32px;
        min-width: 32px;
        height: 32px;
        min-height: 32px;
        content: "▼";
        background-image: none;
        display: block;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 1;
    }

div.parentMenu5.hasChild > input[type=checkbox]:checked + label:after {
    content: "▲";
}
/* 左ナビゲーション：メニュー２への誘導マーク */
div.parentMenu5.menu2Link > input[type=checkbox] + label {
    padding-right: 11px;
}

    div.parentMenu5.menu2Link > input[type=checkbox] + label:after {
        position: absolute;
        top: calc(50% - 12px);
        right: -5px;
        width: 32px;
        min-width: 32px;
        height: 32px;
        min-height: 32px;
        content: "▶";
        background-image: none;
        display: block;
        background-repeat: no-repeat;
        background-size: contain;
    }

div.parentMenu5.menu2Link > input[type=checkbox]:checked + label {
    z-index: 999;
}

    div.parentMenu5.menu2Link > input[type=checkbox]:checked + label:after {
        content: "◀";
    }

div.parentMenu5.menu2Link {
    position: relative;
}

    div.parentMenu5.menu2Link > .childMenu5 {
        position: fixed;
        top: 38px;
        /*left:245px;*/
        left: 0;
        padding-left: 245px;
        z-index: 2;
        background-color: rgba(255,255,255,0.85);
        height: calc(100vh - 60px);
        width: calc(100vw - 245px);
        min-width: 250px;
    }

.menu2wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
    align-content: flex-start;
    /*justify-content:flex-start;*/
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    text-align: left;
}

    .menu2wrap > div {
        width: 250px;
        min-width: 250px;
        max-width: 250px;
        /*height:30px;*/
        margin-left: 10px;
        background-color: white;
    }

div.parentMenu5.menu2Link > .childMenu5 > div {
    /*display:flex;*/
}

div.parentMenu5.menu2Link .childMenu5 label::before {
    width: 0;
    min-width: 0;
}

div.parentMenu5.menu2Link .childMenu5 label {
    /*width: 200px;*/
    /*min-width: 200px;*/
    padding-top: 8px;
    padding-left: 5px;
    font-size: 18px;
    height: 40px;
}
/* 左ナビゲーション アコーディオン */
div.parentMenu5 > input[type=checkbox] + label + div {
    display: none;
}

div.parentMenu5 > input[type=checkbox]:checked + label + div {
    display: block;
}

/* **************************/
/* 左ナビゲーションの設定６ */
/* **************************/
div.lblMenu6Title {
    margin: 5px;
    display: inline-block;
    vertical-align: middle;
    /*width: calc(50% - 12px);*/
    width: 640px;
    background-color: rgb(0,102,204);
    font-size: 26px;
    color: white;
    /*height: 50px;*/
}

div.parentMenu6 > input[type=checkbox] {
    display: none;
}

div.parentMenu6 {
    display: block;
    vertical-align: middle;
    width: 100%;
    /*height: 50px;*/
}

    div.parentMenu6 > input[type=checkbox] + label,
    .childMenu6 label {
        margin: 5px;
        display: block;
        text-align: left;
        padding-left: 10px;
        padding-top: 12px;
        width: calc(100% - 12px);
        height: 50px;
        background-color: rgb(208,206,206);
        color: rgb(59,56,56);
        /*font-weight: bold;*/
        font-size: 22px;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        cursor: pointer;
        position: relative;
        -ms-user-select: none;
        user-select: none; /* ボタン認識の為ユーザー選択させない */
    }

.childMenu6 label {
    background-color: rgb(22,58,90);
}

div.parentMenu6 > input[type=checkbox] + label:hover {
    outline: 1px solid rgb(15,39,61);
    background-color: rgba(15,39,61,0.5);
    color: rgb(15,39,61);
}

.childMenu6 label:hover {
    outline: 1px solid rgb(22,58,90);
    background-color: rgba(22,58,90,0.15);
    color: rgb(22,58,90);
}
/* 左ナビゲーション画像の共通設定 */
div.parentMenu6 > input[type=checkbox] + label:before,
.childMenu6 label:before {
    margin-top: -2px;
    width: 32px;
    min-width: 32px;
    height: 32px;
    min-height: 32px;
    content: " ";
    background-image: none;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    float: left;
    margin-right: 10px;
}
/* 左ナビゲーション画像：受注管理 */
div.parentMenu6.Order > input[type=checkbox] + label:before {
    background-image: url(../img/order.png);
}

    div.parentMenu6.hasChild > input[type=checkbox] + label:after {
        position: absolute;
        top: calc(50% - 12px);
        right: -5px;
        width: 32px;
        min-width: 32px;
        height: 32px;
        min-height: 32px;
        content: "▼";
        background-image: none;
        display: block;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 1;
    }

div.parentMenu6.hasChild > input[type=checkbox]:checked + label:after {
    content: "▲";
}
/* 左ナビゲーション：メニュー２への誘導マーク */
div.parentMenu6.menu2Link > input[type=checkbox] + label {
    padding-right: 11px;
}

    div.parentMenu6.menu2Link > input[type=checkbox] + label:after {
        position: absolute;
        top: calc(50% - 12px);
        right: -5px;
        width: 32px;
        min-width: 32px;
        height: 32px;
        min-height: 32px;
        content: "▶";
        background-image: none;
        display: block;
        background-repeat: no-repeat;
        background-size: contain;
    }

div.parentMenu6.menu2Link > input[type=checkbox]:checked + label {
    z-index: 999;
}

    div.parentMenu6.menu2Link > input[type=checkbox]:checked + label:after {
        content: "◀";
    }

div.parentMenu6.menu2Link {
    position: relative;
}

    div.parentMenu6.menu2Link > .childMenu6 {
        position: fixed;
        top: 38px;
        /*left:245px;*/
        left: 0;
        padding-left: 245px;
        z-index: 2;
        background-color: rgba(255,255,255,0.85);
        height: calc(100vh - 60px);
        width: calc(100vw - 245px);
        min-width: 250px;
    }

.menu2wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
    align-content: flex-start;
    /*justify-content:flex-start;*/
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    text-align: left;
}

    .menu2wrap > div {
        width: 250px;
        min-width: 250px;
        max-width: 250px;
        /*height:30px;*/
        margin-left: 10px;
        background-color: white;
    }

div.parentMenu6.menu2Link > .childMenu6 > div {
    /*display:flex;*/
}

div.parentMenu6.menu2Link .childMenu6 label::before {
    width: 0;
    min-width: 0;
}

div.parentMenu6.menu2Link .childMenu6 label {
    /*width: 200px;*/
    /*min-width: 200px;*/
    padding-top: 8px;
    padding-left: 5px;
    font-size: 18px;
    height: 40px;
}
/* 左ナビゲーション アコーディオン */
div.parentMenu6 > input[type=checkbox] + label + div {
    display: none;
}

div.parentMenu6 > input[type=checkbox]:checked + label + div {
    display: block;
}

/* ********************** */
/* 左ナビゲーションの設定 */
/* ********************** */
div.parentMenu > input[type=checkbox] {
    display: none;
}

div.parentMenu {
    display: block;
    vertical-align: middle;
    width: 100%;
    /*height: 50px;*/
}

    div.parentMenu > input[type=checkbox] + label,
    .childMenu label {
        margin: 5px;
        display: block;
        text-align: left;
        padding-left: 10px;
        padding-top: 12px;
        width: calc(100% - 12px);
        height: 50px;
        background-color: rgb(15,39,61);
        color: rgb(255,255,255);
        /*font-weight: bold;*/
        font-size: 22px;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        cursor: pointer;
        position: relative;
        -ms-user-select: none;
        user-select: none; /* ボタン認識の為ユーザー選択させない */
    }

.childMenu label {
    background-color: rgb(22,58,90);
}

div.parentMenu > input[type=checkbox] + label:hover {
    outline: 1px solid rgb(15,39,61);
    background-color: rgba(15,39,61,0.5);
    color: rgb(15,39,61);
}

.childMenu label:hover {
    outline: 1px solid rgb(22,58,90);
    background-color: rgba(22,58,90,0.15);
    color: rgb(22,58,90);
}
/* 左ナビゲーション画像の共通設定 */
div.parentMenu > input[type=checkbox] + label:before,
.childMenu label:before {
    margin-top: -2px;
    width: 32px;
    min-width: 32px;
    height: 32px;
    min-height: 32px;
    content: " ";
    background-image: none;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    float: left;
    margin-right: 10px;
}
/* 左ナビゲーション画像：在庫管理 */
div.parentMenu.Inventory > input[type=checkbox] + label:before {
    background-image: url(../img/oiltank.png);
}
/* 左ナビゲーション画像：受注管理 */
div.parentMenu.Order > input[type=checkbox] + label:before {
    background-image: url(../img/order.png);
}
/* 左ナビゲーション画像：回送管理 */
div.parentMenu.Forwarding > input[type=checkbox] + label:before {
    background-image: url(../img/foward.png);
}
/* 左ナビゲーション画像：回送管理 */
div.parentMenu.Master > input[type=checkbox] + label:before {
    background-image: url(../img/master.png);
}
/* 左ナビゲーション画像：請求支払管理 */
div.parentMenu.Billing > input[type=checkbox] + label:before {
    background-image: url(../img/pay.png);
}
/* 左ナビゲーション画像：タンク車所在管理 */
div.parentMenu.Location > input[type=checkbox] + label:before {
    background-image: url(../img/tank.png);
}
/* 左ナビゲーション画像：実績・統計 */
div.parentMenu.Report > input[type=checkbox] + label:before {
    background-image: url(../img/statistics.png);
}
/* 左ナビゲーション画像：実績・統計 */
div.parentMenu.DataLinkage > input[type=checkbox] + label:before {
    background-image: url(../img/datalink.png);
}
/* 左ナビゲーション画像：ダウンロード */
div.parentMenu.Download > input[type=checkbox] + label:before {
    background-image: url(../img/Download.png);
}
/* 左ナビゲーション：アコーディオン展開マーク */
div.parentMenu.hasChild > input[type=checkbox] + label {
    padding-right: 11px;
}

    div.parentMenu.hasChild > input[type=checkbox] + label:after {
        position: absolute;
        top: calc(50% - 12px);
        right: -5px;
        width: 32px;
        min-width: 32px;
        height: 32px;
        min-height: 32px;
        content: "▼";
        background-image: none;
        display: block;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 1;
    }

div.parentMenu.hasChild > input[type=checkbox]:checked + label:after {
    content: "▲";
}
/* 左ナビゲーション：メニュー２への誘導マーク */
div.parentMenu.menu2Link > input[type=checkbox] + label {
    padding-right: 11px;
}

    div.parentMenu.menu2Link > input[type=checkbox] + label:after {
        position: absolute;
        top: calc(50% - 12px);
        right: -5px;
        width: 32px;
        min-width: 32px;
        height: 32px;
        min-height: 32px;
        content: "▶";
        background-image: none;
        display: block;
        background-repeat: no-repeat;
        background-size: contain;
    }

div.parentMenu.menu2Link > input[type=checkbox]:checked + label {
    z-index: 999;
}

    div.parentMenu.menu2Link > input[type=checkbox]:checked + label:after {
        content: "◀";
    }

div.parentMenu.menu2Link {
    position: relative;
}

    div.parentMenu.menu2Link > .childMenu {
        position: fixed;
        top: 38px;
        /*left:245px;*/
        left: 0;
        padding-left: 245px;
        z-index: 2;
        background-color: rgba(255,255,255,0.85);
        height: calc(100vh - 60px);
        width: calc(100vw - 245px);
        min-width: 250px;
    }

.menu2wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
    align-content: flex-start;
    /*justify-content:flex-start;*/
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    text-align: left;
}

    .menu2wrap > div {
        width: 250px;
        min-width: 250px;
        max-width: 250px;
        /*height:30px;*/
        margin-left: 10px;
        background-color: white;
    }

div.parentMenu.menu2Link > .childMenu > div {
    /*display:flex;*/
}

div.parentMenu.menu2Link .childMenu label::before {
    width: 0;
    min-width: 0;
}

div.parentMenu.menu2Link .childMenu label {
    /*width: 200px;*/
    /*min-width: 200px;*/
    padding-top: 8px;
    padding-left: 5px;
    font-size: 18px;
    height: 40px;
}
/* 左ナビゲーション アコーディオン */
div.parentMenu > input[type=checkbox] + label + div {
    display: none;
}

div.parentMenu > input[type=checkbox]:checked + label + div {
    display: block;
}
/* ********************** */
/* ガイダンスの設定       */
/* ********************** */
#guidanceList {
    height: 170px;
    padding: 16px;
    overflow-y: auto;
    box-sizing: border-box;
}

#guidanceList .ttl {
    padding-left: 5px;
    font-weight: bold;
}

#guidanceOpenCloseWrapper,
#guidanceBoxOpenCloseWrapper {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0;
}

/* ガイダンス表示非表示が左ナビボタンに貫通しないよう調整 */
@media all and (max-width: 710px) {
    #guidanceOpenClose {
        left: 260px;
    }
}

#guidanceOpenCloseButton,
#guidanceBoxOpenCloseButton {
    display: block;
    width: 100%;
    height: 30px;
    background-color: #cfcfcf;
    position: relative;
    transition: background-color .3s;
}
#guidanceOpenCloseButton::before,
#guidanceBoxOpenCloseButton::before {
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    border-top: 3px solid #333;
    border-right: 3px solid #333;
    border-bottom: 3px solid transparent;
    border-left: 3px solid transparent;
    position: absolute;
    top: calc(50% + 4px);
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: all .3s;
}

#guidanceOpenCloseButton:hover,
#guidanceBoxOpenCloseButton:hover {
    background-color: #e1eeff;
    cursor: pointer;
}

#guidanceOpenCloseButton:hover::before,
#guidanceBoxOpenCloseButton:hover::before {
    border-top-color: #0d6efd;
    border-right-color: #0d6efd;
}

#guidanceOpenCloseButton.closeBtn::before,
#guidanceBoxOpenCloseButton.closeBtn::before {
    top: calc(50% - 4px);
    transform: translate(-50%, -50%) rotate(135deg);
}

.guidanceTable {
    margin-top: 16px;
}

.guidanceTable td {
    padding: 5px;
    padding-top: 2px;
    padding-bottom: 2px;
    vertical-align: top;
}

.guidanceTable td .naiyo {
    margin-top: 8px;
    line-height: 1.6;
}
.guidanceTable td .attachFile1 {
    display: block;
    margin-top: 8px;
}

.guidanceTable tr:last-child td {
    padding-bottom: 10px;
}

.guidanceTable a:hover {
    color: rgb(252, 136, 48)
}

div.showGuidance a[id^="Menu_"] {
    height: calc(50% - 50px);
}

.guidanceType div {
    width: 20px;
    height: 20px;
    background-size: 18px 18px;
    background-repeat: no-repeat;
}

    .guidanceType div.E {
        background-image: url('../img/guidanceIconE.png');
    }

    .guidanceType div.W {
        content: " ";
        background-image: url('../img/guidanceIconW.png');
    }

    .guidanceType div.I {
        content: " ";
        background-image: url('../img/guidanceIconI.png');
    }

            /* ************************** */
            /* ペインリストの共通デザイン */
            /* ************************** */
            /* 大枠はフレックスとする*/
            #paneList {
    width: 100%;
    min-width: 1095px;
    max-width: 1095px;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    margin-bottom: 5px;
}

    #paneList * {
        box-sizing: border-box;
    }

.menuPaneItem {
    margin-top: 5px;
    margin-right: 5px;
    padding: 5px;
    overflow: hidden;
    border: 1px solid lightgray;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: rgba(225, 225, 225, 1)
}

    .menuPaneItem:hover {
        border-color: darkgray;
    }
    /* ３列幅を使うペイン設定 */
    .menuPaneItem.paneWidth3 {
        width: 1068px;
        min-width: 1068px;
        max-width: 1068px;
    }
    /* ２列幅を使うペイン設定 */
    .menuPaneItem.paneWidth2 {
        width: calc(1063px / 2);
        min-width: calc(1063px / 2);
        max-width: calc(1063px / 2);
    }
    /* １列幅を使うペイン設定 */
    .menuPaneItem.paneWidth1 {
        width: calc(1058px / 3);
        min-width: calc(1058px / 3);
        max-width: calc(1058px / 3);
    }
/* ペインタイトルエリア */
.paneTitle {
    width: 100%;
    display: flex;
}

    .paneTitle > div {
        display: inline-block;
        vertical-align: top;
    }

.paneTitleLeft,
.paneTitleMiddle {
    flex: 1;
    font-size: 16pt;
    font-weight: bold;
    height: 32px;
    margin-top: 5px;
    box-sizing: border-box;
}

/* 再描画ボタンアイコン */
.paneRefreshImg {
    width: 100%;
    height: 100%;
    background-size: 32px 32px;
    background-repeat: no-repeat;
    background-image: url('../img/menuPaneRefresh.png');
    position: absolute;
}

.paneTitleRefresh {
    width: 32px;
    height: 32px;
    border: 1px solid lightgray;
    border-radius: 5px;
    user-select: none;
    overflow: hidden;
    position: relative;
}

    .paneTitleRefresh:hover {
        border: 1px solid darkgray;
        cursor: pointer;
    }

        .paneTitleRefresh:hover .paneRefreshImg {
            animation: 3s linear infinite rotationIcon;
        }

@keyframes rotationIcon {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* ペイン内ドロップダウンレイアウト(IDにddlMonthTransOfficeとつけたもののみ) */
.paneContent > .flexCondition {
    display: flex;
}

.flexCondition > div {
    flex: 1;
}

.paneContent select.officeDdl,
.paneContent select.stationDdl,
.paneContent select.yearMonthDdl {
    height: 28px;
    font-size: 12pt;
    padding: 2px;
}
/* 列車○×票の共通 */
.trainStatList {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

    .trainStatList > div {
        align-content: center;
        justify-content: center;
    }

    .trainStatList .trainItem .trainNo {
        border: 2px solid rgb(50,106,168);
        height: 32px;
        margin: 5px;
        border-radius: 10px;
        width: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Meiryo UI";
        font-weight: bold;
        font-size: 14pt;
        cursor: default;
        -webkit-user-select: none;
        user-select: none;
    }

    .trainStatList .trainNo,
    .trainStatList .trainStatus {
        height: 30px;
        margin: 5px;
        width: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: default;
        position: relative;
    }

        .trainStatList .trainStatus .stC:after {
            /* まる */
            display: block;
            content: "";
            border: solid 2px rgb(0,112,192);
            border-radius: 50%;
            width: 25px;
            height: 25px;
        }

        .trainStatList .trainStatus .st-:after {
            /* 棒 */
            content: '―';
            font-weight: bolder;
        }
/* 表示データなしエリア */
.paneContent .nodataArea {
    color: red;
    font-weight: bold;
    margin: 5px;
    font-size: 20px;
}
/* マイナス */
.paneContent span.minus:before {
    content: "\025B3";
    color: red;
    font-weight: bolder;
}
/* ******************** */
/* 締状況ペイン個別 */
/* ******************** */
.cycleBillingStatusWrapper {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.cycleBillingStatusDeptBranch {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

    .cycleBillingStatusDeptBranch .deptList {
        display: flex;
        flex-wrap: wrap;
        box-sizing: border-box;
    }

.cycleBillingStatusWrapper .underArrow {
    display: block;
    text-align: center;
}

    .cycleBillingStatusWrapper .underArrow:after {
        content: "";
        display: inline-block;
        width: 32px;
        height: 32px;
        background-repeat: no-repeat;
        background-size: contain;
        background-image: url('../img/underArrow.png');
    }

.cycleBillingStatusWrapper .branchItemItem > span,
.cycleBillingStatusWrapper .deptItem > span,
.cycleBillingStatusWrapper .bottomItem > span {
    display: flex;
    height: 35px;
    border: 1px solid rgb(65,113,156);
    border-radius: 10px;
    background-color: rgb(91,155,213);
    color: rgb(255,255,255);
    /*padding-top: 0.5em;*/
    margin-right: 5px;
    margin-bottom: 2px;
    align-items: center;
    justify-content: center;
    letter-spacing: 2px;
    overflow: hidden;
    text-overflow: initial;
}

.cycleBillingStatusWrapper .bottomItem > span {
    border: none;
}

    .cycleBillingStatusWrapper .bottomItem > span > span {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgb(65,113,156);
        border-radius: 10px;
    }

.cycleBillingStatusWrapper .deptItem {
    text-align: center;
    box-sizing: border-box;
}

.cycleBillingStatusWrapper .branchItemItem,
.cycleBillingStatusWrapper .bottomItem {
    text-align: center;
    box-sizing: border-box;
}

.deptItem > span {
    width: 145px;
}
/* 〆完了時表示 */
.cycleBillingStatusWrapper span[data-isclosed="True"] {
    background-color: gray;
    position: relative;
}

    .cycleBillingStatusWrapper span[data-isclosed="True"]:before {
        content: "〆";
        color: red;
        position: absolute;
        left: 5px;
        font-weight: bold;
    }
/* ******************** */
/* 月間輸送量ペイン個別 */
/* ******************** */
/* 切り口選択エリア */
#P002_contentPane .divDdlArea {
    display: flex;
    align-items: center;
}

    #P002_contentPane .divDdlArea .officeDdl {
        margin-left: 5px;
        margin-right: 5px;
    }

#P002_contentPane .measureText {
    margin-left: auto;
    margin-right: 10px;
}
/* 表とグラフを横並び */
.monthTransLeft, .monthTransRight {
    display: inline-block;
    vertical-align: top;
}

.monthTransTable table {
    table-layout: fixed;
    border-collapse: collapse;
    margin-top: 5px;
}
    /* セルの余白折り返し */
    .monthTransTable table td,
    .monthTransTable table th {
        white-space: nowrap; /* セルオーバーで折り返さない */
        padding: 2px;
        border: 1px solid darkgray;
    }

    .monthTransTable table tr {
        height: 30px;
    }
/* 左グラフの縦位置調整 */
.monthTransRight {
    /*margin-top:-15px;*/
}

.monthTransTable table th {
    background-color: rgb(255,255,102);
}

.monthTransTable table td {
    background-color: white;
}

.monthTransTable th.erase {
    border-top: none;
    border-left: none;
    background-color: transparent;
}
/* */
.monthTransTable.view003 table {
    width: 100%;
}

.monthTransTable table th.trainClass {
    width: 50px;
    min-width: 50px;
    max-width: 50px;
    white-space: normal;
    word-break: break-all;
}

/* 油種セル幅 */
.monthTransTable table th.oilType {
    width: 120px;
    min-width: 120px;
}
/* 白黒油種セル幅 */
.monthTransTable table th.bigOilCode {
    width: 50px;
    min-width: 50px;
    white-space: normal;
    word-break: break-all;
}
/* 支店セル幅 */
.monthTransTable table th.orgCode {
    width: 80px;
    min-width: 80px;
}
/* 荷主セル幅 */
.monthTransTable table th.shpCode {
    width: 120px;
    min-width: 120px;
}
/* 着基地セル幅 */
.monthTransTable table th.cnsCode {
    width: 80px;
    min-width: 80px;
}
/* 数値(kl表示部)セル幅 */
.monthTransTable table th.yesterday,
.monthTransTable table th.today,
.monthTransTable table th.todayTrans,
.monthTransTable table th.volumeChange,
.monthTransTable table th.lyVolumeChange {
    width: 125px;
    min-width: 125px;
    max-width: 125px;
}
/* 数値(率表示部)セル幅 */
.monthTransTable table th.volumeRatio,
.monthTransTable table th.lyVolumeRatio {
    width: 95px;
    min-width: 95px;
    max-width: 95px;
}
/* 列見出し（油種名）*/
.monthTransTable .oilNameData {
    text-align: left;
}
/* 列データ */
.monthTransTable td {
    text-align: right;
}

    .monthTransTable td.center {
        text-align: center;
    }
    /* 列データ(文字の均等割付（両端そろえ）荷主と着基地 */
    .monthTransTable td.shpCode:not(.summary) span,
    .monthTransTable td.cnsCode:not(.summary) span,
    .monthTransTable td.orgCode:not(.summary) span,
    .monthTransTable.view005 td.oilCode span {
        text-align: justify;
        text-align-last: justify;
        text-justify: inter-ideograph;
        display: block;
        word-break: break-all
    }

.monthTransTable.view005 td.oilCode.summary span,
.monthTransTable.view005 td.oilCode.midSummary span {
    font-weight: bold;
}

.monthTransTable table td.trainClass {
    white-space: normal;
    word-break: break-all;
}
/* 合計行のセル */
.monthTransTable td.summary {
    background-color: palegoldenrod;
}
/* 中計行のセル */
.monthTransTable td.midSummary {
    background-color: khaki;
}
/* 総計行のセル */
.monthTransTable td[data-ttlsum="1"] {
    background-color: palegoldenrod;
}
/* 行Hover時 */
.monthTransTable tr:hover td:not([rowspan]),
.monthTransTable tr:hover td[rowspan="1"] {
    background-color: darkorange;
    color: white;
}

#P002_contentPane .btnDownload {
    margin-left: 10px;
    height: 28px;
    padding-top: 0px;
    box-sizing: border-box;
    width: 140px;
}
/* ******************************** */
/* 貨車連結順序表取込状況ペイン個別 */
/* ******************************** */
.paneLinkListImportItems {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

    .paneLinkListImportItems > div {
        align-content: center;
        justify-content: center;
    }

    .paneLinkListImportItems .linkListTrainNo {
        border: 2px solid rgb(50,106,168);
        height: 32px;
        margin: 5px;
        border-radius: 10px;
        width: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Meiryo UI";
        font-weight: bold;
        font-size: 14pt;
        cursor: default;
        -webkit-user-select: none;
        user-select: none;
    }

    .paneLinkListImportItems .linkListImported {
        height: 30px;
        margin: 5px;
        width: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: default;
        position: relative;
    }

        .paneLinkListImportItems .linkListImported .Imported {
            /* まる */
            display: block;
            content: "";
            border: solid 2px rgb(0,112,192);
            border-radius: 50%;
            width: 25px;
            height: 25px;
        }

        .paneLinkListImportItems .linkListImported .notProceed:after {
            /* 棒 */
            content: '―';
            font-weight: bolder;
        }

/* ******************************** */
/* 営業所別列車牽引実績ペイン個別 */
/* ******************************** */
#P009_contentPane .btnDownload {
    margin-left: 10px;
    height: 28px;
    padding-top: 0px;
    box-sizing: border-box;
    width: 140px;
}

/* ************************** */
/* 帳票ダウンロードエリア     */
/* ************************** */
#reportDLAreaPane {
    width: 100%;
    min-width: 1095px;
    max-width: 1095px;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    margin-bottom: 5px;
}

    #reportDLAreaPane .ddlClass {
        margin-left: 5px;
        margin-right: 5px;
        height: 28px;
        font-size: 12pt;
        padding: 2px;
    }

    #reportDLAreaPane #reportSelectArea {
        margin-top: 3px;
    }

        #reportDLAreaPane #reportSelectArea .btnDownload {
            position: relative;
            top: 3px;
            margin-left: 5px;
            height: 28px;
            box-sizing: border-box;
            width: 140px;
        }

/*
 *  Chromeの場合はposition-topは0pxでいい
 */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    #reportDLAreaPane #reportSelectArea .btnDownload {
        top: 0px;
    }
}


#reportDLAreaPane #reportSelectArea {
    width: 100%;
    display: inline-block;
}

#reportDLAreaPane #reportConditionArea {
    margin-top: 5px;
}

    #reportDLAreaPane #reportConditionArea .termInputArea,
    #reportDLAreaPane #reportConditionArea .officeSelectArea {
        display: inline-block;
        margin-left: 5px;
    }

    #reportDLAreaPane #reportConditionArea .calendarIconArea {
        top: -7px;
    }

/* Chromeの場合 */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    #reportDLAreaPane #reportConditionArea .calendarIconArea {
        top: -10px;
    }
}

#reportDLAreaPane #reportConditionArea input[type=text].calendarIcon {
    width: 145px;
}

/* Chromeの場合 */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    #reportDLAreaPane #reportConditionArea input[type=text].calendarIcon {
        height: 31px;
    }
}

/* ------------------------------
業務メニュー
------------------------------ */
.menuFrame {
    max-width: 880px;
    width: 100%;
    margin: 32px auto 0;
    background-color: #fff;
    border: 1px solid #aaa;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    padding: 16px;
}
.menuFrame:first-of-type {
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .menuFrame {
        width: calc(100% - 6vw);
        margin: 32px 3vw 0;
    }
    .menuFrame:first-of-type {
        margin: 0 3vw;
    }
}
.menuFrame > label {
    font-size: 24px;
    font-weight: bold;
}

.sideMenu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    column-gap: 16px;
    background-color: #f3f3f3;
    border-radius: 6px;
    margin-top: 16px;
    padding: 8px 16px 16px;
}
@media screen and (max-width: 767px) {
    .sideMenu {
        display: block;
    }
}

div.lblMenu4Title {
    grid-column: 1 / 4;
    font-size: 20px;
    font-weight: bold;
}

div.parentMenu4 > input[type=checkbox] {
    display: none;
}

div.parentMenu4 {
    max-width: 260px;
    width: 100%;
    margin: 8px 0;
}
@media screen and (max-width: 767px) {
    div.parentMenu4 {
        max-width: inherit;
    }
}

div.parentMenu4 > input[type=checkbox] + label,
.childMenu4 label {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    padding: 0 8px;
    background-color: #fff;
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    -ms-user-select: none;
    user-select: none; /* ボタン認識の為ユーザー選択させない */
}
@media screen and (min-width: 768px) and (max-width: 880px) {
    div.parentMenu4 > input[type=checkbox] + label,
    .childMenu4 label {
        height: 60px;
    }
}

div.parentMenu4 > input[type=checkbox] + label:hover {
    background-color: #e7f6ff;
    border: 1px solid #0d6efd;
    color: #0d6efd;
}

/* ナビゲーション画像の共通設定 */
div.parentMenu4 > input[type=checkbox] + label::before,
.childMenu4 label::before {
    display: inline-block;
    content: "";
    width: 24px;
    height: 24px;
    margin-right: 8px;
    background-repeat: no-repeat;
    background-position: left center;
}
/* ナビゲーション画像：リスト*/
div.parentMenu4.Inventory > input[type=checkbox] + label::before,
div.parentMenu4.Levies > input[type=checkbox] + label::before,
div.parentMenu4.Prt0007 > input[type=checkbox] + label::before,
div.parentMenu4.ClosingBranch > input[type=checkbox] + label::before,
div.parentMenu4.BudgetList > input[type=checkbox] + label::before {
    background-image: url(../img/google_font_icon_list.svg);
}
div.parentMenu4.Inventory > input[type=checkbox] + label:hover::before,
div.parentMenu4.Levies > input[type=checkbox] + label:hover::before,
div.parentMenu4.Prt0007 > input[type=checkbox] + label:hover::before,
div.parentMenu4.ClosingBranch > input[type=checkbox] + label:hover::before,
div.parentMenu4.BudgetList > input[type=checkbox] + label:hover::before {
    background-image: url(../img/google_font_icon_list_blue.svg);
}
/* ナビゲーション画像：ダウンロード */
div.parentMenu4.Download > input[type=checkbox] + label::before {
    background-image: url(../img/google_font_icon_download.svg);
}
div.parentMenu4.Download > input[type=checkbox] + label:hover::before {
    background-image: url(../img/google_font_icon_download_blue.svg);
}
/* ナビゲーション画像：出力 */
div.parentMenu4.ForwordDetailReport > input[type=checkbox] + label::before,
div.parentMenu4.ReportOutput > input[type=checkbox] + label::before,
div.parentMenu4.BillingLedgerReport > input[type=checkbox] + label::before,
div.parentMenu4.PaymentLedgerReport > input[type=checkbox] + label::before,
div.parentMenu4.OperatinNumReport > input[type=checkbox] + label::before,
div.parentMenu4.TsptQuantityReport > input[type=checkbox] + label::before,
div.parentMenu4.OperatIncomeReport > input[type=checkbox] + label::before {
    background-image: url(../img/google_font_icon_output.svg);
}
div.parentMenu4.ForwordDetailReport > input[type=checkbox] + label:hover::before,
div.parentMenu4.ReportOutput > input[type=checkbox] + label:hover::before,
div.parentMenu4.BillingLedgerReport > input[type=checkbox] + label:hover::before,
div.parentMenu4.PaymentLedgerReport > input[type=checkbox] + label:hover::before,
div.parentMenu4.OperatinNumReport > input[type=checkbox] + label:hover::before,
div.parentMenu4.TsptQuantityReport > input[type=checkbox] + label:hover::before,
div.parentMenu4.OperatIncomeReport > input[type=checkbox] + label:hover::before {
    background-image: url(../img/google_font_icon_output_blue.svg);
}
/* ナビゲーション画像：検索 */
div.parentMenu4.Order > input[type=checkbox] + label::before,
input[type=checkbox]#contents1_repLeftNav6_chkTopItem6_3 + label::before,
input[type=checkbox]#contents1_repLeftNav15_chkTopItem15_0 + label::before {
    background-image: url(../img/google_font_icon_search.svg);
}
div.parentMenu4.Order > input[type=checkbox] + label:hover::before,
input[type=checkbox]#contents1_repLeftNav6_chkTopItem6_3 + label:hover::before,
input[type=checkbox]#contents1_repLeftNav15_chkTopItem15_0 + label:hover::before {
    background-image: url(../img/google_font_icon_search_blue.svg);
}
/* ナビゲーション画像：編集 */
input[type=checkbox]#contents1_repLeftNav6_chkTopItem6_4 + label::before,
input[type=checkbox]#contents1_repLeftNav6_chkTopItem6_5 + label::before,
input[type=checkbox]#contents1_repLeftNav15_chkTopItem15_1 + label::before,
input[type=checkbox]#contents1_repLeftNav15_chkTopItem15_2 + label::before {
    background-image: url(../img/google_font_icon_registration.svg);
}
input[type=checkbox]#contents1_repLeftNav6_chkTopItem6_4 + label:hover::before,
input[type=checkbox]#contents1_repLeftNav6_chkTopItem6_5 + label:hover::before,
input[type=checkbox]#contents1_repLeftNav15_chkTopItem15_1 + label:hover::before,
input[type=checkbox]#contents1_repLeftNav15_chkTopItem15_2 + label:hover::before {
    background-image: url(../img/google_font_icon_registration_blue.svg);
}

/* ナビゲーションボタン（黒）*/
div.parentMenu4.Ressnf > input[type=checkbox] + label,
div.parentMenu4.ContainerManage > input[type=checkbox] + label,
div.parentMenu4.IncomeManage > input[type=checkbox] + label,
div.parentMenu4.Payee > input[type=checkbox] + label,
input[type=checkbox]#contents1_repLeftNav6_chkTopItem6_0 + label,
input[type=checkbox]#contents1_repLeftNav6_chkTopItem6_1 + label,
div.parentMenu4.PrtOther > input[type=checkbox] + label {
    background-color: #333;
    color: #fff;
}
div.parentMenu4.Ressnf > input[type=checkbox] + label:hover,
div.parentMenu4.ContainerManage > input[type=checkbox] + label:hover,
div.parentMenu4.IncomeManage > input[type=checkbox] + label:hover,
div.parentMenu4.Payee > input[type=checkbox] + label:hover,
input[type=checkbox]#contents1_repLeftNav6_chkTopItem6_0 + label:hover,
input[type=checkbox]#contents1_repLeftNav6_chkTopItem6_1 + label:hover,
div.parentMenu4.PrtOther > input[type=checkbox] + label:hover {
    background-color: #666;
    border-color: #cfcfcf;
}

/* ナビゲーションボタン（黒）：リスト*/
div.parentMenu4.Ressnf > input[type=checkbox] + label::before,
div.parentMenu4.ContainerManage > input[type=checkbox] + label::before,
div.parentMenu4.IncomeManage > input[type=checkbox] + label::before,
div.parentMenu4.Payee > input[type=checkbox] + label::before {
    background-image: url(../img/google_font_icon_list_white.svg);
}

/* ナビゲーションボタン（黒）：編集 */
input[type=checkbox]#contents1_repLeftNav6_chkTopItem6_0 + label::before {
    background-image: url(../img/google_font_icon_registration_white.svg);
}

/* ナビゲーションボタン（黒）：検索 */
input[type=checkbox]#contents1_repLeftNav6_chkTopItem6_1 + label::before {
    background-image: url(../img/google_font_icon_search_white.svg);
}

/* ナビゲーションボタン（黒）：出力 */
div.parentMenu4.PrtOther > input[type=checkbox] + label::before {
    background-image: url(../img/google_font_icon_output_white.svg);
}

.menuMain1 {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding-bottom: 32px;
    background-color: #f8f8f8;
}

@media screen and (max-width: 767px) {
    .menuMain1 {
        flex-direction: column;
        align-items: center;
        padding: 32px 3vw;
    }
}

.menuMain1 > div {
    display: flex;
    gap: 16px;
}

@media screen and (max-width: 767px) {
    .menuMain1 > div {
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
}

#divLeftNav18 > .parentMenu1 > label {
    background-color: #9d55a7;
}

#divLeftNav18 > .parentMenu1 > label:hover {
    background-color: #bba0bf;
}
