/* #contents {
width: 70%;
min-width: 50px;
margin: 0 auto;
background-color: #ffffff;
display: box;
display: -webkit-box;
display: -moz-box;
display: -o-box;
display: -ms-box;
box-pack: justify;
-moz-box-pack: justify;
-webkit-box-pack: justify;
-o-box-pack: justify;
-ms-box-pack: justify;
}
.elements {
width: 10px;
height: 10px;
display: block;
}

.links{
text-decoration: underline;
color: blue;
cursor: pointer;
}


.arrow_down {
font-size: 20px;
position: relative;
width: 0.6em;
height: 1em;
background-color: #39a9d6;
}


.arrow_down::before {
position: absolute;
top: 0.8em;
left: -0.5em;
width: 0;
height: 0;
content: "";
border-top: 0.8em solid #39a9d6;
border-left: 0.8em solid transparent;
border-right: 0.8em solid transparent;
}

table.table-clickable tr[data-href]{
cursor: pointer;
background-color:#CCFFCC;
} */


/* リセットCSSの読み込み */
* {
    box-sizing: border-box;
    outline: 0;
    -webkit-appearance: none;
    border-radius: 0;
    color: #333;
}


body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form,
fieldset, input, textarea, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}

html {
    overflow-y: scroll;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}

ol, ul {
    list-style: none;
}

fieldset, img {
    border: 0;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption, th {
    text-align: left;
}

address, caption, cite, code, dfn, em, th, var {
    font-style: normal;
    font-weight: normal;
}

a, button {
    cursor: pointer !important;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

#app {
    border-top: 10px solid #0081cc;
}

.buttonArrow {
    position: relative;
}

.buttonArrow::after {
    content: '';
    background-image: url(../img/btn-arrow.png);
    color: #0081cc;
    position: absolute;
    width: 15px;
    height: 15px;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    background-size: cover;
}

.arrowRed::after {
    background-image: url(../img/arrowRed.png);
}

.arrowNavy::after {
    background-image: url(../img/arrowNavy.png);
}

.buttonPlus::after {
    background-image: url(../img/plus.png);
}

.arrowGray::after {
    background-image: url(../img/arrowGray.png);
}

.butttonCross::after {
    background-image: url('../img/cross.png');
    right: 6px;
}

.buttonCrossRed::after {
    background-image: url('../img/crossRed.png');

}


/* ----------------------
カラー
------------------------- */
.w {
    color: #fff;
}

/* ----------------------
フォント
------------------------- */

@font-face {
    font-family: 'SourceHanSansJP-Normal';
    font-style: normal;
    src: url('./fonts/SourceHanSansJP-Normal.woff2') format('woff');
    src: url('./fonts/SourceHanSansJP-Normal.woff') format('woff');
}

@font-face {
    font-family: 'SourceHanSansJP-Bold';
    font-style: normal;
    src: url('./fonts/SourceHanSansJP-Normal.woff2') format('woff');
    src: url('./fonts/SourceHanSansJP-Bold.woff') format('woff');
}

@font-face {
    font-family: 'SourceHanSansJP-Heavy';
    src: url('./fonts/SourceHanSansJP-Normal.woff2') format('woff');
    src: url('./fonts/SourceHanSansJP-Heavy.woff') format('woff');
}

html {
    font-family: source-han-sans-cjk-ja, sans-serif;;
    font-weight: 300;
}


/* .w100 {
font-weight: 100 !important;

font-style: normal;
} */

.w200 {
    font-weight: 200 !important;

    font-style: normal;
}

.w300 {
    font-weight: 300 !important;

    font-style: normal;
}

.w400 {
    font-weight: 400 !important;

    font-style: normal;
}

.w500 {
    font-weight: 500 !important;

    font-style: normal;
}

.w700 {
    font-weight: 700 !important;

    font-style: normal;
}

.w900 {
    font-weight: 900 !important;

    font-style: normal;
}


/* ----------------------
改行
------------------------- */
.br768on {
    display: none;
}

.br480on {
    display: none;
}

.br375on {
    display: none;
}

/* レスポンシブ時の切り替え用 */
.sp768on {
    display: none;
}

.sp480on {
    display: none;
}

.sp375on {
    display: none;
}

@media screen and (max-width: 768px) {
    .br768off {
        display: none;
    }

    .sp768off {
        display: none;
    }

    .br768on {
        display: block;
    }

    .sp768on {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .br480off {
        display: none;
    }

    .sp480off {
        display: none;
    }

    .br480on {
        display: block;
    }

    .sp480on {
        display: block;
    }
}

@media screen and (max-width: 375px) {
    .br375off {
        display: none;
    }

    .sp375off {
        display: none;
    }

    .br375on {
        display: block;
    }

    .sp375on {
        display: block;
    }
}

/* ----------------------
ホバー
------------------------- */
.opa:hover {
    opacity: 0.6;
}

.pointer{
    cursor: pointer;
}


/* ----------------------
テーブルスクロールバー
------------------------- */
table::-webkit-scrollbar {
    width: 14px;
    margin-left: 5px;
    position: absolute;
}

/*スクロールバーの軌道*/
table::-webkit-scrollbar-track {
    border-radius: 7px;
    background-color: #fff;
    margin-left: 7px;
}

/*スクロールバーの動く部分*/
table::-webkit-scrollbar-thumb {
    background-color: #c0c0c0;
    border-radius: 7px;
}


/* ----------------------
ボタン
------------------------- */
.Btn {
    border: 2px solid rgba(0, 129, 204, 0);
    background-color: #0081cc;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.Btn:hover {
    border: 2px solid rgba(0, 129, 204, 1);
    color: #0081cc;
    background-color: #fff;
}

/* ----------------------
ログイン
------------------------- */
.auth-main {
    height: 100vh;
    width: 100%;
    position: absolute;
    border-top: 10px solid #0080cc;
}

.auth-main .pageLogin {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 2.5rem;
}

.auth-main .pageLogin .logo {
    max-width: 235px;
    margin: 0 0 67px;
    height: 50px;
}

.auth-main .pageLogin .loginText {
    margin: 0 0 50px 0;
}

.auth-main .pageLogin .loginText p {
    font-size: 20px;
    font-weight: 700;
}

.auth-main .pageLogin .loginBox {
    max-width: 425px;
    width: 100%;
}

.auth-main .pageLogin .loginBox .inputBox {
    display: flex;
    align-items: center;
    margin: 0 0 20px 0;
}

.auth-main .pageLogin .loginBox .inputBox:nth-child(3) {
    margin: 0;
}

.auth-main .pageLogin .loginBox .inputBox label {
    margin: 0 5px 0 0;
    width: auto;
    max-width: 120px;
    flex: 1 0 auto;
    min-width: 120px;
    font-size: 16px;
    color: #575757;
    font-weight: 400;
}

.auth-main .pageLogin .loginBox .inputBox .inputField {
    width: auto;
    flex: 1 0 auto;
    max-width: 300px;
}

.auth-main .pageLogin .loginBox .inputBox .inputField input {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 16px;

}

.auth-main .pageLogin .loginBox .loginSubmit {
    text-align: center;
    margin: 50px 0 0 0;
}

.auth-main .pageLogin .loginBox .loginSubmit button {
    width: 220px;
    height: 50px;
    font-size: 16px;
    box-shadow: 0px 5px 0px #005a8e;
    border: 0;
    background-color: #0081cc;
    color: #fff;
}

.auth-main .pageLogin .loginBox .loginSubmit button:active {
    height: 55px;
    box-shadow: inherit;
}

/* ----------------------
ログアウト
------------------------- */
.modal-open {
    overflow: hidden;
    height: 100vh;
}

.logoutBox {
    position: relative;
    width: 100%;
}

.logoutBox .logoutBtn {
    position: absolute;
    right: 2.5rem;
    top: 0;
    max-width: 140px;
    width: 10vw;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 40px;
    height: 4vw;
    min-height: 30px;
    background-color: #0081cc;
    color: #fff;
    border-radius: 0 0 5px 5px;
    box-shadow: 0px 5px 0px #005a8e;
    z-index: 100;
    -webkit-transition: 0s ease-in-out;
    -moz-transition: 0s ease-in-out;
    -o-transition: 0s ease-in-out;
    transition: 0s ease-in-out;
}

.logoutBox .logoutBtn:active {
    box-shadow: inherit;
    max-height: 45px;
}

.logoutBox + .modal {
    height: 100vh;
    position: fixed;
    width: 100%;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    opacity: 0;
    z-index: 1;
}

.logoutBox + .modal#modal-logout {
    display: block !important;
}

.logoutBox + .modal.show {
    background-color: #00000052;
    z-index: 99;
    opacity: 1;
}

.logoutBox + .modal .modal-dialog {
    height: 100%;
    position: relative;
}

.logoutBox + .modal .modal-content {
    position: absolute;
    background-color: #fff;
    width: 94%;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    max-height: 300px;
    max-width: 500px;
    height: 100%;
    border-radius: 5px 5px 0 0;
}

.logoutBox + .modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0081cc;
    color: #fff;
    padding: 0.5rem;
    border-radius: 5px 5px 0 0;
    font-size: 18px;
}

.logoutBox + .modal button.close {
    border: 0;
    border-radius: 5px;
    width: 2rem;
    height: 2rem;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0);
}

.logoutBox + .modal button.close span {
    line-height: 0;
    display: inline-block;
    padding: 0 0 3px 0;
    color: #0081cc;
}

.logoutBox + .modal button.close:hover {
    background-color: #0081cc;
    border: 2px solid rgba(255, 255, 255, 1);
}

.logoutBox + .modal button.close:hover span {
    color: #fff;
}

.logoutBox + .modal .modal-body {
    padding: 0.5rem;
    height: 84%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logoutBox + .modal .modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10% 0 0 0;
    width: 100%;
}

.logoutBox + .modal .cancelBtn, .decisionBtn {
    max-width: 150px;
    width: 30vw;
    min-width: 80px;
    margin: 0 5px 0 0;
    font-size: 16px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.logoutBox + .modal .decisionBtn {
    margin: 0;
}

.dataTables_wrapper {
    z-index: 3;
}

.logoutBox .logoutBtn .logoutImg {
    width: 3vw;
    min-width: 10px;
    max-width: 15px;
    margin: 0 0 0 5px;
}

/* =============================================================================
ヘッダーログアウト-レスポンシブ
============================================================================= */
@media screen and (max-width: 768px) {
    /* font-size14px */
    .logoutBox .modal-body .logoutBox .logoutBtn, .cancelBtn, .decisionBtn {
        font-size: 14px;
    }

    .logoutBox .currentPageName p,
    .logoutBox .loginName p,
    .logoutBox .logoutBtn {
        font-size: 14px;
    }

    .logoutBox {
        background-color: #0081cc;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0% 5% 10px 5%;
    }

    .logoutBox .currentPageName {
        flex: auto;
        max-width: 20%;
    }

    .logoutBox .currentPageName p {
        color: #0081cc;
        background-color: #fff;
        border-radius: 5px;
        padding: 3px;
        text-align: center;
    }

    .logoutBox .loginName {
        flex: auto;
        max-width: 53vw;
        padding: 0 5px;
    }

    .logoutBox .loginName p {
        color: #fff;
        text-align: center;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .logoutBox .logoutBtn {
        right: inherit;
        position: inherit;
        box-shadow: inherit;
        height: auto;
        max-height: inherit;
        min-height: inherit;
        border-radius: 0;
        flex: auto;
        max-width: 25%;
        width: auto;
        min-width: 90px;
    }
}

@media screen and (max-width: 480px) {
    .logoutBox {
        padding: 0 3% 10px 3%;
    }

    .logoutBox .currentPageName p,
    .logoutBox .loginName p,
    .logoutBox .logoutBtn {
        font-size: 12px;
    }
}

/* ----------------------
メインコンテンツ
------------------------- */
.mainContents {
    display: flex;
}

/* ----------------------
サイドメニュー
------------------------- */
.sidemenu {
    width: auto;
    flex: 1 0 auto;
    min-width: 260px;
    max-width: 260px;
    z-index: 2;
    margin: 1rem 0;
}

.sidemenu .fixedBox{
    position: fixed;
    width: 100%;
    min-width: 260px;
    max-width: 260px;
}


.sidemenu .menuBox .loginUser {
    margin: 3% 0 10% 0;
    text-align: center;
}

.sidemenu .menuBox .logo {
    max-width: 172px;
    margin: 0 auto 9.7% auto;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.sidemenu .menuBox .logo:hover {
    opacity: 0.6;
}

.sidemenu .menuBox .nav li {
    max-width: 220px;
    margin: 0 auto 5% auto;
    height: 45px;
}

.sidemenu .menuBox .nav li a {
    display: inline-flex;
    width: 100%;
    height: 100%;
    background-color: #0081cc;
    box-shadow: 0px 5px 0px #005a8e;
    color: #fff;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    -webkit-transition: 0s ease-in-out;
    -moz-transition: 0s ease-in-out;
    -o-transition: 0s ease-in-out;
    transition: 0s ease-in-out;
}

.sidemenu .menuBox .nav li a:active {
    box-shadow: inherit;
    /* height: 55px; */
    transform: translateY(5px);
}

@media screen and (max-width: 768px) {
    .sidemenu {
        min-width: inherit;
        position: fixed;
        bottom: 0px;
        z-index: 3;
        width: 100%;
        max-width: inherit;
        padding: 0;
        background-color: #001623;
        margin: 0;
    }

    .sidemenu .menuBox {
        margin: 0;
    }

    .sidemenu .menuBox .loginUser {
        margin: 0;
    }

    .sidemenu .menuBox .logo {
        display: none;
    }

    .sidemenu .menuBox .nav {
        display: flex !important;
        overflow: auto;
    }

    .sidemenu .menuBox .nav li {
        height: 35px;
        max-width: inherit;
        width: auto;
        margin: 0;
        border-right: 1px solid #001623;
    }

    .sidemenu .menuBox .nav li:nth-child(n+5){
        border-top: 1px solid #001623;
    }

    .sidemenu .menuBox .nav li:last-child {
        border-right: 0;
    }

    .sidemenu .menuBox .nav li a {
        background-color: #002e48;
        box-shadow: inherit;
        border-radius: 0;
        white-space: nowrap;
        padding: 0 10px;
        min-width: 80px;
    }

    .sidemenu .menuBox .nav li a::after {
        display: none;
    }

    .sidemenu .menuBox + br {
        display: none;
    }

    .sidemenu div{
        height: auto !important;
    }

    .sidemenu .fixedBox{
        position: static;
        width: 100%;
        min-width: inherit;
        max-width: 100%;
    }
    .sidemenu .menuBox .nav li a:active{
        transform: translateY(0px);
    }
}

@media screen and (max-height:657px) and (min-height:500px){
    .sidemenu .fixedBox .positonBox{
        max-height: 635px;
        overflow: auto;
        padding-bottom: 70px;
    }

}
@media screen and (max-height:500px){
    .sidemenu .fixedBox{
        position: absolute;
    }


}
/* ----------------------
サイドバー用アイコン
------------------------- */
.sidebarIconZone {
    width: 84.6%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    max-height: 200px;
    overflow-y: auto;
    /* border-bottom: 5px solid #0081cc; */
    padding-bottom: 5px;
}

.sidebarIcon {
    background-image: url(../img/register.png);
    width: 50px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: center;
    box-sizing: border-box;
    border: 0;
    display: inline-block;
    background-color: inherit;
    margin: 0;
    border-radius: 3px;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    line-height: 1;
}

.sidebarIcon-5 {
    /* width: 40px; */
    width: 25%;
    margin-left: 0;
}

.sidebarIcon-5:first-child {
    margin-left: 0
}

.copyIcon {
    background-image: url('../img/print.png');
}

.inportIcon {
    background-image: url('../img/inport.png');
}
.importIcon {
    background-image: url('../img/import.png');
}

.addIcon {
    background-image: url('../img/add.png');

}

.pickkingIcon {
    background-image: url('../img/pickking.png');
}

.paperIcon {
    background-image: url('../img/paper.png');
}

.exportIcon {
    background-image: url('../img/export.png');
}

.sideBarDeleteIcon {
    background-image: url('../img/trash.png');
    background-size: 16px 20px;
}

.sidebarEditIcon {
    background-image: url('../img/edit.png');
}

.hozonIcon {
    background-image: url('../img/hozon.png');
}

.shippingIcon{
    background-image: url('../img/shipping.png');
}

.managementIcon{
    background-image: url('../img/management.png');
}

.favoriteIcon {
    background-image: url('../img/favorite.png');
}

.invoiceExportIcon{
    background-image: url('../img/invoiceExport.png');
}
/* 出荷エクスポート */
.shipmentExportIcon{
    background-image: url('../img/shipmentExport.png');
}

/* 出荷インポート */
.shipmentImportIcon{
    background-image: url('../img/shipmentImport.png');
}

.sidebarIcon:hover {
    background-color: rgb(225, 238, 246);
}

.tooltip {
    position: absolute;
    top: 105%;
    width: auto;
    white-space: nowrap;
    display: none;
    line-height: 1;
}

.sidebarIcon:nth-child(1) .tooltip,
.sidebarIcon:nth-child(2) .tooltip,
.sidebarIcon:nth-child(5) .tooltip,
.sidebarIcon:nth-child(6) .tooltip,
.sidebarIcon:nth-child(9) .tooltip,
.sidebarIcon:nth-child(10) .tooltip{
    left: 0;
}
.sidebarIcon:nth-child(3) .tooltip,
.sidebarIcon:nth-child(4) .tooltip,
.sidebarIcon:nth-child(7) .tooltip,
.sidebarIcon:nth-child(8) .tooltip,
.sidebarIcon:nth-child(11) .tooltip,
.sidebarIcon:nth-child(12) .tooltip{
    right: 0;
}

.tooltipText {
    font-size: 10px;
    padding: 5px 10px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    z-index: 1;
    line-height: 1;
}

/* .tooltip-br {
top: 52px;
text-align: center;
} */

.tooltipText::after {
    content: "";
    width: 0;
    position: absolute;
    bottom: 100%;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 7px solid rgba(0, 0, 0, 0.7);
}

.sidebarIcon:nth-child(1) .tooltip .tooltipText::after,
.sidebarIcon:nth-child(2) .tooltip .tooltipText::after,
.sidebarIcon:nth-child(5) .tooltip .tooltipText::after,
.sidebarIcon:nth-child(6) .tooltip .tooltipText::after,
.sidebarIcon:nth-child(9) .tooltip .tooltipText::after,
.sidebarIcon:nth-child(10) .tooltip .tooltipText::after{
    left: 20px;
}
.sidebarIcon:nth-child(3) .tooltip .tooltipText::after,
.sidebarIcon:nth-child(4) .tooltip .tooltipText::after,
.sidebarIcon:nth-child(7) .tooltip .tooltipText::after,
.sidebarIcon:nth-child(8) .tooltip .tooltipText::after,
.sidebarIcon:nth-child(11) .tooltip .tooltipText::after,
.sidebarIcon:nth-child(12) .tooltip .tooltipText::after{
    right: 20px;
}


/*
.tooltip-br .tooltipText::after {
content: "";
width: 0;
position: absolute;
top: -12px;
left: 38%;
bottom: inherit;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 12px solid rgba(0, 0, 0, 0.7);
border-top: 0px solid rgba(0, 0, 0, 0.7);
} */

.sidebarIcon:hover .tooltip {
    display: block;
}

.sidebarIcon:hover .tooltip .tooltipText {
    display: inline-block;
}

/* .tooltip-l1 {
left: 0;
}

.tooltip-l1 .tooltipText::after {
left: 12px;
}

.tooltip-l2 {
margin-left: -75px;
top: -52px;
}

.tooltip-l2 .tooltipText::after {
left: 63px;
} */

@media screen and (max-width: 768px){
    .sidebarIcon{
        background-size: 20px;
    }
}
/* ----------------------
サイドバーアラート
------------------------- */

.sidebarAlertWrap {
    text-align: center;
}

.sidebarAlert {
    display: inline-flex;
    width: 220px;
    margin: 0 auto;
    height: 45px;
    background-color: rgb(225, 240, 227);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    -webkit-transition: 0s ease-in-out;
    -moz-transition: 0s ease-in-out;
    -o-transition: 0s ease-in-out;
    transition: 0s ease-in-out;
    border: none;
    font-size: 12px;
}

.sidebarAlert span {
    color: #22ac38;
}

.sidebarAlertRed {
    background-color: #f1e2e3;
}

.sidebarAlertRed span {
    color: #e60012;
}

@media screen and (min-height:500px) and (max-height:749px){
    .sidebarAlertWrap {
        text-align: center;
        position: fixed !important;
        bottom: 0;
        z-index: 1;
        width: 260px !important;
        max-width: 100% !important;
        height: 45px !important;
    }

    .sidebarAlert {
        display: flex;
        width: 100%;
        background-color: rgba(225, 240, 227, 0.7)
    }
    .sidebarAlertRed {
        background-color:rgba(241, 226, 227, 0.5);
    }
}

/* ----------------------
編集ボタン
------------------------- */
.editIconParent {
    position: relative;
}


.editIcon {
    background-image: url(../img/edit.png);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    border: 0;
    background-color: inherit;
    background-size: contain;
    position: absolute;
    right: 0px;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
}

.deleteIcon {
    background: url('../img/trash.png') no-repeat;
    cursor: pointer;
    background-size: contain;
    width: 20px;
    height: 20px;
}

.trashBtn {
    background: url(../img/trash.png) no-repeat;
    cursor: pointer;
    background-size: contain;
    width: 20px;
    height: 20px;
    border: 0;
    background-position: center;
    padding: 0;
}

.registerIcon {
    background: url('../img/register.png') no-repeat;
    cursor: pointer;
}

.haveIconTable tbody tr td:nth-last-child(2) {
    position: relative;
}

.haveIconTable tbody tr td:last-child {
    position: relative;
}


/* ----------------------
メイン
------------------------- */
main {
    width: auto;
    flex: auto;
    z-index: 2;
    background-color: #e9e9e9;
    padding: 3.3rem 2.5rem;
    /* height: 100vh; */
    overflow-x: auto;
}

.dataTables_wrapper {
    overflow: auto;
    max-height: 500px;
}

#table_paginate, #table_length {
    display: none;
}


/* ----------------------
各ページのタイトル
------------------------- */
.pageTitle {
    font-size: 28px;
    border-left: 4px solid #0081cc;
    padding: 0 0 0 13px;
    line-height: 1;
    margin: 0 0 30px 0;
    letter-spacing: 0.12em;
    font-weight: 400;
}


@media screen and (max-width: 768px) {
    .pageTitle {
        font-size: 22px;
        margin: 0 0 20px 0;
    }
}

/* ----------------------
テーブルレイアウト
------------------------- */
.dataTableBox {
    max-height: 500px;
}

#table_wrapper #table {
    border: 0px solid #e0e0e0;
    width: 100% !important;
    min-width: 1000px;
}

table.dataTable thead .sorting {
    background-image: inherit !important;
}

#table_wrapper #table thead th {
    background-color: #fff;
    padding: 20px 0.5%;
    font-size: 12px;
    text-align: center;
    position: relative;
    font-weight: 700;
}

table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
    background-image: inherit !important;
}

table.dataTable thead .sorting::before,
table.dataTable thead .sorting_asc::before,
table.dataTable thead .sorting_desc::before {
    z-index: 1;
    position: absolute;
    top: 8px;
    right: 5px;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid #0081cc;
    pointer-events: none;
}

table.dataTable thead .sorting::after,
table.dataTable thead .sorting_asc::after,
table.dataTable thead .sorting_desc::after {
    z-index: 1;
    position: absolute;
    bottom: 8px;
    right: 5px;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid #0081cc;
    pointer-events: none;
}

table.dataTable thead .sorting::before,
table.dataTable thead .sorting_asc::before {
    border-bottom: 6px solid #c7c7c7;
}

table.dataTable thead .sorting::after,
table.dataTable thead .sorting_desc::after {
    border-top: 6px solid #c7c7c7;
}


table.dataTable thead th, table.dataTable tbody td {
    font-size: 14px;
    border-top: 1px solid #eee;
    border-right: 1px solid #eee;
    line-height: 1;
    text-align: center;
}

table.dataTable thead th {
    border-top: 0;
}

table.dataTable thead th:last-child, table.dataTable tbody td:last-child {
    border-right: 0px solid;
}


table.dataTable tbody td {
    padding: 5px 0.5% !important;
    position: relative;
}



table.dataTable .odd {
    background-color: #f7f7f7;
}

table.listTable tbody tr:hover {
    background-color: #dbe6ee !important;
}

@media screen and (max-width: 768px) {
    table.dataTable thead th, table.dataTable tbody td {
        font-size: 12px;
    }
    table.dataTable thead th:nth-child(3) {
        min-width: 250px;
    }
}

/* dataTables_scrollHead用 */

.dataTables_scrollHead {
    border-bottom: 1px solid #eeeeee !important;
}

.dataTables_scrollHead thead th {
    background-color: #fff;
    padding: 20px 0.5% !important;
    font-size: 12px;
    text-align: center;
    position: relative;
    font-weight: 700;
}

.dataTables_scrollBody {
    border: 0 !important;
}

.dataTables_scrollBody thead {
    display: none;
}


.dataTables_scrollBody #table {
    border: 0 !important;
}

@media screen and (max-width: 768px) {
    .dataTables_scrollHead {
        overflow: inherit !important;
    }

    .dataTables_scrollBody {
        overflow: inherit !important;
    }
}

/*----------------------------------------------

ページタイトルcss

--------------------------------------------*/

.title {
    font-size: 28px;
    padding: 0 0 0 18px;
    box-sizing: border-box;
    border-left: 5px solid rgb(0, 129, 204);
    line-height: 1;
    margin-bottom: 30px;
}


/*----------------------------------------------

発送ステータス用カラー

--------------------------------------------*/
.c-green {
    color: #25a550;
    font-weight: 500;
}

.c-red {
    color: #b32326;
    font-weight: 500;
}


/*----------------------------------------------

inputスタイル調整,widthは適宜調整

--------------------------------------------*/


.searchBox {
    background-color: #d7d7d7;
    padding: 30px 40px;
    display: flex;
    margin: 0 0 30px 0;
}

.searchBox .searchProduct {
    max-width: 400px;
    height: 38px;
    flex: 1 0 auto;
    margin: 0px 35px 0 0;
}

.searchBox .searchLocation {
    /* flex: auto;
    display: flex; */
    /* height: 40px; */
    align-items: center;
    position: relative;
    max-width: 245px;
}

.searchBox .searchLocation::before {
    z-index: 1;
    position: absolute;
    top: 30px;
    right: 10px;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid #0081cc;
    pointer-events: none;
}

.searchBox .searchLocation::after {
    z-index: 1;
    position: absolute;
    top: 42px;
    right: 10px;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #0081cc;
    pointer-events: none;
}

.searchBox .searchLocation p {
    margin: 0 15px 0 3px;
}

input {
    height: 40px;
    box-sizing: border-box;
    color: #8e8e8e ;
    cursor: text;
}

input {
    border: 1px solid #0081cc;
    background-color: #f5fbff;
    border-radius: 5px;
    padding: 5px;
    /* color: #8e8e8e; */
    color: #333 !important;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    background-color: #fff;
    cursor: pointer;
}

input[type="checkbox"]:checked {
    background: url('../img/checked.png') no-repeat center center;
    background-size: 105% 105%;
}

input[type="date"] {
    position: relative;
    cursor: pointer;
    font-weight: 200;
}

input[type="date"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type="date"]::-webkit-clear-button {
    -webkit-appearance: none;
}

input[type=date]::-webkit-calendar-picker-indicator {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* input::placeholder,
input:-ms-input-placeholder,
input::-ms-input-placeholder {
color: rgb(207, 207, 207) !important;
font-weight: 300;
opacity: .3
} */
input::placeholder{
    color: #8e8e8e !important;
    font-weight: 300;
    opacity: .3
}

input::-webkit-input-placeholder{
    color: #8e8e8e !important;
    font-weight: 300;
    opacity: .3
}
input:-ms-input-placeholder {
    color: #8e8e8e !important;
    font-weight: 300;
    opacity: .3
}
textarea::placeholder{
    color: #8e8e8e !important;
    font-weight: 300;
    opacity: .3;
}
textarea::-webkit-input-placeholder{
    color: #8e8e8e !important;
    font-weight: 300;
    opacity: .3;
}
textarea:-ms-input-placeholder {
    color: #8e8e8e !important;
    font-weight: 300;
    opacity: .3;
}

select {
    font-weight: 300;
}

.tr-checked {
    background-color: rgb(218, 231, 238) !important;
}


.searchBox input#product {
    width: 100%;
    height: 100%;
    /* background-color: #fff;
    border: 0;
    border-radius: 5px;
    color: #8e8e8e; */
    /* font-size: 16px; */
    /* padding: 10px; */
    /* line-height: 1; */
    /* font-weight: 400; */
}

.searchBox select.sc-location {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border: 0;
    border-radius: 5px;
    color: #8e8e8e;
    font-size: 16px;
    padding: 10px;
    line-height: 1;
    font-weight: 400;
}

.searchBox select.sc-location {
    max-width: 130px;
    cursor: pointer;
    margin: 0 3px 0 3px;
}

select::-ms-expand {
    display: none;
}

.none {
    display: none;
}

/* ページャー  */
.dataTables_paginate {
    margin: 30px auto 0 auto;
    text-align: center !important;
    float: none !important;
}

.dataTables_wrapper .dataTables_paginate#table_paginate .paginate_button.current {
    border: 2px solid #333 !important;
    background-color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    background: none;
    box-sizing: border-box;
}

.dataTables_wrapper .dataTables_paginate#table_paginate .paginate_button:hover {
    border: 2px solid #fff !important;
    background-color: #333 !important;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    background: none;
    box-sizing: border-box;
}

.LocationSelectBoxWrapper {
    flex: auto;
    display: flex;
}

.searchBox .searchLocation.searchLocationNone::before {
    display: none;
}

.searchBox .searchLocation.searchLocationNone::after {
    display: none;
}

/* ============================== レスポンシブ ================================ */
@media screen and (max-width: 768px) {

}

.dts_label {
    display: none !important;
}

.text-danger {
    color: #dc3545!important;
}




/* 共通要素用クラス */

/* margin */
.m0{
    margin: 0;
}

.mt1{
    margin-top: 1%;
}
.mt2{
    margin-top: 2%;
}
.mt3{
    margin-top: 3%;
}
.mt5{
    margin-top: 5%;
}
.mt10{
    margin-top: 10%;
}

.mb1{
    margin-bottom: 1%;
}
.mb2{
    margin-bottom: 2%;
}
.mb3{
    margin-bottom: 3%;
}
.mb5{
    margin-bottom: 5%;
}
.mb10{
    margin-bottom: 10%;
}

.mr1{
    margin-right: 1%;
}
.mr2{
    margin-right: 2%;
}
.mr3{
    margin-right: 3%;
}
.mr5{
    margin-right: 5%;
}
.mr10{
    margin-right: 10%;
}

.ml1{
    margin-left: 1%;
}
.ml2{
    margin-left: 2%;
}
.ml3{
    margin-left: 3%;
}
.ml5{
    margin-left: 5%;
}
.ml10{
    margin-left: 10%;
}
.ml1p{
    margin-left: 1px;
}
.ml2p{
    margin-left: 2px;
}
.ml3p{
    margin-left: 3px;
}
.ml5p{
    margin-left: 5px;
}
.ml10p{
    margin-left: 10px;
}

.m1{
    margin: 1%;
}
.m2{
    margin: 2%;
}
.m3{
    margin: 3%;
}
.m5{
    margin: 5%;
}
.m1p{
    margin: 1px !important;
}
.m2p{
    margin: 2px !important;
}
.m3p{
    margin: 3px !important;
}
.m4p{
    margin: 4px !important;
}
.m5p{
    margin: 5px !important;
}

.mt1p{
    margin-top: 1px !important;
}
.mt2p{
    margin-top: 2px !important;
}
.mt3p{
    margin-top: 3px !important;
}
.mt4_5p{
    margin-top: 4.5px !important;
}
.mt5p{
    margin-top: 5px !important;
}
.mt10p{
    margin-top: 10px !important;
}

.mb1p{
    margin-bottom: 1px !important;
}
.mb2p{
    margin-bottom: 2px !important;
}
.mb3p{
    margin-bottom: 3px !important;
}
.mb4_5p{
    margin-bottom: 4.5px !important;
}
.mb5p{
    margin-bottom: 5px !important;
}
.mb10p{
    margin-bottom: 10px !important;
}

.mr1p{
    margin-right: 1px !important;
}
.mr2p{
    margin-right: 2px !important;
}
.mr3p{
    margin-right: 3px !important;
}
.mr4_5p{
    margin-right: 4.5px !important;
}
.mr5p{
    margin-right: 5px !important;
}
.mr10p{
    margin-right: 10px !important;
}

.ml1p{
    margin-left: 1px !important;
}
.ml2p{
    margin-left: 2px !important;
}
.ml3p{
    margin-left: 3px !important;
}
.ml4p{
    margin-left: 4px !important;
}
.ml4_5p{
    margin-left: 4.5px !important;
}
.ml5p{
    margin-left: 5px !important;
}
.ml10p{
    margin-left: 10px !important;
}

.mlr10p{
    margin:0 10px !important;
}

/* padding */
.pt0{
    padding-top: 0% !important;
}
.pt1{
    padding-top: 1%;
}
.pt2{
    padding-top: 2%;
}
.pt3{
    padding-top: 3%;
}
.pt4_5{
    padding-top: 4.5%;
}
.pt5{
    padding-top: 5%;
}
.pt10{
    padding-top: 10%;
}

.pb0{
    padding-bottom: 0% !important;
}
.pb1{
    padding-bottom: 1%;
}
.pb2{
    padding-bottom: 2%;
}
.pb3{
    padding-bottom: 3%;
}
.pb4_5{
    padding-bottom: 4.5%;
}
.pb5{
    padding-bottom: 5%;
}
.pb10{
    padding-bottom: 10%;
}

.pr0{
    padding-right: 0% !important;
}
.pr1{
    padding-right: 1%;
}
.pr2{
    padding-right: 2%;
}
.pr3{
    padding-right: 3%;
}
.pr4_5{
    padding-right: 4.5%;
}
.pr5{
    padding-right: 5%;
}
.pr10{
    padding-right: 10%;
}

.pl0{
    padding-left: 0% !important;
}
.pl1{
    padding-left: 1%;
}
.pl2{
    padding-left: 2%;
}
.pl3{
    padding-left: 3%;
}
.pl4{
    padding-left: 4%;
}
.pl4_5{
    padding-left: 4.5%;
}
.pl5{
    padding-left: 5%;
}
.pl10{
    padding-left: 10%;
}

.p0{
    padding: 0% !important;
}
.p1{
    padding: 1%;
}
.p2{
    padding: 2%;
}
.p3{
    padding: 3%;
}
.p4{
    padding: 4%;
}
.p5{
    padding: 5%;
}

.p1p{
    padding: 1px !important;
}
.p2p{
    padding: 2px !important;
}
.p3p{
    padding: 3px !important;
}
.p4p{
    padding: 4px !important;
}
.p5p{
    padding: 5px !important;
}

.pt1p{
    padding-top: 1px !important;
}
.pt2p{
    padding-top: 2px !important;
}
.pt3p{
    padding-top: 3px !important;
}
.pt4_5p{
    padding-top: 4.5px !important;
}
.pt5p{
    padding-top: 5px !important;
}
.pt10p{
    padding-top: 10px !important;
}

.pb1p{
    padding-bottom: 1px !important;
}
.pb2p{
    padding-bottom: 2px !important;
}
.pb3p{
    padding-bottom: 3px !important;
}
.pb4_5p{
    padding-bottom: 4.5px !important;
}
.pb5p{
    padding-bottom: 5px !important;
}
.pb10p{
    padding-bottom: 10px !important;
}

.pr1p{
    padding-right: 1px !important;
}
.pr2p{
    padding-right: 2px !important;
}
.pr3p{
    padding-right: 3px !important;
}
.pr4_5p{
    padding-right: 4.5px !important;
}
.pr5p{
    padding-right: 5px !important;
}
.pr10p{
    padding-right: 10px !important;
}

.pl1p{
    padding-left: 1px !important;
}
.pl2p{
    padding-left: 2px !important;
}
.pl3p{
    padding-left: 3px !important;
}
.pl4p{
    padding-left: 4px !important;
}
.pl4_5p{
    padding-left: 4.5px !important;
}
.pl5p{
    padding-left: 5px !important;
}
.pl10p{
    padding-left: 10px !important;
}

.plr10p{
    padding:0 10px !important;
}

/* width */
.w20{
    width: 20%;
}
.w30{
    width: 30%;
}
.w35{
    width: 35%;
}
.w40{
    width: 40%;
}
.w45{
    width: 45%;
}
.w50{
    width: 50%;
}
.w7{
    width: 70%;
}
.w80{
    width: 80%;
}
.w90{
    width: 90%;
}
.w100{
    width: 100%;
}
.w80in{
    width: 80% !important;
}
.w90in{
    width: 90% !important;
}
.w100in{
    width: 100% !important;
}

.w20p{
    width: 20px;
}
.w30p{
    width: 30px !important;
}
.w35p{
    width: 35px;
}
.w40p{
    width: 40px;
}
.w40pz{
    width: 40px !important;
}
.w45p{
    width: 45px;
}
.w45pz{
    width: 45px !important;
}
.w50p{
    width: 50px;
}
.w55p{
    width: 55px;
}
.w60p{
    width: 60px;
}
.w100p{
    width: 100px;
}
.w100pz{
    width: 100px !important;
}
.w150p{
    width: 150px;
}
.w180p{
    width: 180px;
    min-width: 180px;
}
.w200p{
    width: 200px;
}
.w250p{
    width: 250px;
}


/* min-width */
.mw50p{
    min-width: 50px;
}



/* height */
.h20p{
    height: 20px;
}
.h28pz{
    height: 28px !important;
}
.h30p{
    height: 30px !important;
}
.h32p{
    height: 32px !important;
}
.h40p{
    height: 40px;
}
.h40pz{
    height: 40px !important;
}
.h40pz:active{
    height: 45px !important;
    box-shadow: inherit !important;
}
.h50p{
    height: 50px;
}

/* font */
.f16{
    font-size: 16px !important;
}
.f14{
    font-size: 14px !important;
}
.f12{
    font-size: 12px !important;
}

/* line-height */
.lh1_5{
    line-height:1.5 !important;
}


/* color */
.shiro{
    color: #fff !important;
}
.kuro{
    color: 000;
}

.hblue:hover{
    color: #0081cc !important;
}

/* background-color */
.bgshiro{
    background-color:#fff !important;
}
.bgkuro{
    background-color:#000;
}
.bgao{
    background-color:#0081cc;
}
.bgtext{
    background-color:#f5fbff;
}
.bgword{
    background-color:#e9e9e9;
}


/* display */
.dF{
    display: flex;
}
.dB{
    display: block;
}
.dIf{
    display: inline-flex;
}
.dIb{
    display: inline-block;
}
.dFz{
    display: flex !important;
}
.dBz{
    display: block !important;
}
.dIfz{
    display: inline-flex !important;
}
.dIbz{
    display: inline-block !important;
}


/* flex */
.fCol{
    flex-direction:column;
}
.fRow{
    flex-direction:row;
}
.jc{
    justify-content: center !important;
}
.jsb{
    justify-content: space-between;
}
.je{
    justify-content: flex-end;
}
.aic{
    align-items: center;
}
.aie{
    align-items: flex-end;
}
.ais{
    align-items: flex-start;
}
.fw{
    flex-wrap: wrap;
}


@media screen and (max-width:768px){
    .tab_fCol{
        flex-direction:column !important;
    }
    .tab_fRow{
        flex-direction:row !important;
    }
    .tab_jc{
        justify-content: center !important;
    }
    .tab_jsb{
        justify-content: space-between !important;
    }
    .tab_je{
        justify-content: flex-end !important;
    }
    .tab_aic{
        align-items: center !important;
    }
    .tab_aie{
        align-items: flex-end !important;
    }
    .tab_ais{
        align-items: flex-start !important;
    }
}

@media screen and (max-width:480px){
    .sp_fCol{
        flex-direction:column !important;
    }
    .sp_fRow{
        flex-direction:row !important;
    }
    .sp_jc{
        justify-content: center !important;
    }
    .sp_jsb{
        justify-content: space-between !important;
    }
    .sp_je{
        justify-content: flex-end !important;
    }
    .sp_aic{
        align-items: center !important;
    }
    .sp_aie{
        align-items: flex-end !important;
    }
    .sp_ais{
        align-items: flex-start !important;
    }
}

/* text-align */
.tc{
    text-align: center;
}
.tl{
    text-align: left;
}
.tr{
    text-align: right;
}

.tcz{
    text-align: center !important;
}
.tlz{
    text-align: left !important;
}
.trz{
    text-align: right !important;
}

/* border-radius */
.bR5{
    border-radius: 5px;
}

/* border */
.bb1{
    border-bottom: 1px solid #0081cc;
}
.bb2{
    border-bottom: 2px solid #0081cc;
}

/* border-color */
.brc1{
    border: 1px solid #0081cc !important;
}

/* カーソル */
.pointer{
    cursor: pointer;
}

/* button */
.clickBtn{
    box-shadow: 0px 5px 0px rgb(0, 30, 51);
}

/* position */
.posiR{
    position: relative;
}
.posiA{
    position: absolute;
}


.backBtn3{
    width: 180px !important;
    height: 55px !important;
    background-color: #0081cc !important;
    position: relative;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    background-color: rgb(162,162,162);
    box-shadow: 0px 5px 0px rgb(84,84,84);
    border: none;
    margin-right: 20px;
}
.backBtn3::after{
    content: '';
    background-image: url(../img/btn-arrow.png);
    color: #0081cc;
    position: absolute;
    width: 12px;
    height: 12px;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    background-size: cover;
}









.zin{
    z-index: 99999999999;
}



.clickBtn:active{
    box-shadow: inherit;
}


/* 謎のclear:bothを削除 */
.after0:after{
    display: none;
}

/* 出荷指示出荷No.などの見た目修正 */
.itemFlex {
    display: flex;
    flex: auto;
    flex-wrap: wrap;
    width: auto;
}
.itemFlex label {
    margin: 0 !important;
    width: 100% !important;
}
.itemFlex label input,
.itemFlex label span{
    margin: 0;
}

.itemFlex:last-child label input:last-child{
    margin-left:10px;
}


/* 戻るボタンの見た目 */
.flexBackBox{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 30px 0;
    height: 33px;
}
.flexBackBox h1{
    margin: 0;
}


.backBtn {
    border: 2px solid #0081cc;
    text-decoration: none;
    display: inline-flex;
    width: 100px;
    position: relative;
    border-radius: 5px;
    background-color: #0081cc;
    color: #fff;
    padding: 0 5px;
    box-shadow: 0px 5px 0px #005a8e;
    transition: 0s ease-in-out !important;
    align-items: center;
    justify-content: flex-end;
}


.backBtn:active{
    box-shadow: inherit;
    height: 33px;
}

.backBtn:before {
    content: '←';
    position: absolute;
    left: 10px;
}

.backBtn2 {
    border: 2px solid #0081cc !important;
    background-color: #0081cc !important;
    box-shadow: 0px 5px 0px #005a8e !important;
    transition: 0s ease-in-out !important;
}
.BtnActive:active {
    box-shadow: inherit !important;
    height: 60px !important;
}
.BtnActive2:active {
    box-shadow: inherit !important;
    /* height: 33px !important; */
}

.deleteBtn{
    transition: 0s ease-in-out !important;
}




.addTo{
    min-width: 30px;
}


#add-ship{
    height: 30px;
}


/* [selectボックスのデフォルトの矢印削除] */
/* // chrome用 */
.NOselect{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
/* // IE用(IE10~IE11) */
.NOselect::-ms-expand {
    display: none;
}

.NOarrow::-webkit-outer-spin-button,
.NOarrow::-webkit-inner-spin-button,
.NOarrow {
    -webkit-appearance: none;
    /* margin: 0; */
    -moz-appearance: textfield;
}




/* 出荷指示商品部分 */
#item_list_table .item-row .c1 {
    width: 20% !important;
    min-width: 0;
}

table.dataTable tbody .c3 input,
table.dataTable tbody .c1 input {
    width: 80%;
}


/* 商品追加ボタン */
.setBtnWrap.buttonPlus.buttonArrow{
    margin: 0;
}
.setBtnWrap.buttonPlus.buttonArrow:hover,
.setBtnWrap.buttonPlus.buttonArrow
input.setBtn.hblue.btn.btn-info.shiro:hover{
    cursor: pointer;
}
.setBtnWrap.buttonPlus.buttonArrow
input.setBtn.hblue.btn.btn-info.shiro{
    border-radius: 0 0 5px 5px;
    width: 100%;
    border: 1px solid #0081cc;
    height: 50px;
}

.saveBtnBox{
    margin: 30px auto 0 auto;
    max-width: 100%;
    width: 100%;
}
.saveBtnBox .saveBtn{
    border: 1px solid #003b5d;
    background-color: #003b5d;
    color: #fff;
    text-decoration: none;
    width: 100%;
    margin: auto 0 auto auto;
    height: 70px;
    border-radius: 5px;
}
.saveBtnBox .saveBtn:hover{
    background-color: #fff;
    color: #003b5d;
}


/* 良品不良品 */
.changeBtn {
    text-decoration: none;
    border-bottom: 1px solid;
    padding: 0 15px 0 0;
    position: relative;
    width: 75px;
    display: inline-block;
    text-align: left;
}
.changeBtn:after{
    content:'→';
    position: absolute;
    right:0;
}

.changeBtn:hover{
    color:#0081cc;
}
@media screen and (max-width:480px){

    .changeBox .changeBtnBox{
        position: absolute;
        right: 0;
        bottom: 0;
    }
}


button.btn-outline-secondary.confirmBtn.buttonArrow.arrowNavy.w700,
button.btn-outline-success.deleteBtn.buttonArrow.arrowRed.w700,
.BtnActive{
    transition: 0s ease-in-out !important;
}

button.btn-outline-secondary.confirmBtn.buttonArrow.arrowNavy.w700:active,
button.btn-outline-success.deleteBtn.buttonArrow.arrowRed.w700:active{
    box-shadow: inherit;
    height: 60px;
}

.col-12.mt-5.mb-3.d-flex.px-3.justify-content-between.btnFlex{
    display: flex;
    width: 381px;
    margin: 50px auto 0 auto;
    height: 60px;
}


/* ラジオボタンにチェックついた時の見た目 */
input[type=radio]:checked{
    position: relative;
}
input[type=radio]:checked::after {
    position: absolute;
    content: '';
    width: 12px;
    height: 8px;
    top: -5px;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border-left: 3px solid #0081cc;
    border-bottom: 3px solid #0081cc;
    transform: rotate(-50deg);
}





/* 出荷先インポート見た目 */
.add_toBox {
    border: solid 1px #0081cc;/* ラベルのボーダーを指定する */
    border-radius: 5px 0 0 5px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.add_toBox:hover{
    background-color: #fff;
}
.add_toBox:hover span{
    color: #0081cc !important;
}
.add_toBox > input{
    display:none; /* アップロードボタンのスタイルを無効にする */
}
#fake_text_box{
    border-radius: 0 5px 5px 0;
    border-right: 1px solid #0081cc;
    border-top: 1px solid #0081cc;
    border-bottom: 1px solid #0081cc;
}


/* モーダル検索ボタンレイアウト */
.modalTr button{
    border-radius: 5px;
    width: 100px;
    background-color: #0081cc;
    border: 1px solid #0081cc;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.modalTr button:hover{
    color: #0081cc;
    background-color: #fff;
}



.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td{
    white-space: pre-wrap;
    word-break: break-all;
}

.pageShippingList th,
.pageShippingList td,
.pageStock th,
.pageStock td,
.pageProductDelete th,
.pageProductDelete td{
    white-space: pre-wrap;
    word-break: break-all;
}

.overauto{
    overflow: auto;
    white-space: nowrap;
}
.textwrap{
    white-space: pre-wrap;
    word-break: break-all;
}
.mx100{
    max-width: 100% !important;
}

.btnwidth{
    width: 180px !important;
    height: 55px !important;
}

.fCol .text-danger{
    height: 0 !important;
}

.disabled {
    background-color: #b5b5b5 !important;
    color: #757575 !important;
    cursor: auto !important;
}

input.f16.w200p.h40p.mr2.pl0.pr0.Btn.shiro.pointer.disabled:hover {
    background-color: #b5b5b5;
    border: 0;
    color: #757575 !important;
    cursor: auto !important;
}


/* 余白 */
.space{
    display: inline-block;
    margin:0 5px;
}

#table_filter {
    display: none;
}
