﻿/* 共通変数 */
:root {
    /* 色について */
    --titlebkcolor: #1F5FA9; /* 紺色：主にページタイトルや明細のタイトル、明細の文字色などで使用 */
    --lightshadow: #CCCCCC; /* 明るいグレー：明細の目盛線の色などで使用 */
    --darkshadow: #999999; /* 少し濃いグレー：入力ボックスの影の色として使用 */
    --alternatingcolor: #EEEEEE; /* うっすらグレー：偶数行の背景色として使用 */
    /* フォントサイズ */
    --pagetitle_font: 20px; /* ページタイトル */
    --cond_title_font: 15px; /* 条件部分のタイトルや検索ボタン */
    --cond_input_font: 14px; /* 条件部分のタイトルや検索ボタン以外の項目 */
    --detaile_title_font: 13px; /* 明細のタイトル */
    --detaile_value_font: 13px; /* 明細の内容 */
    /* 高さ */
    --my_foot_div_height: 60px; /* フッターの高さ（各ページで注意書きの量に応じて高くする） */
    /* 幅 */
    --cond_input_maxwidth: 300px; /* 条件入力ボックスの最大幅 */
}

html {
    font-size: 16px;
    font-family: "ＭＳ　ゴシック",sans-serif;
    width: 100%;
    height: 100%;
}
body {
    width: 100%;
    height: 100%;
}
/* 要素内の余白 */
.padding-l {
    padding-left: 5px !important;
}

.padding-l1 {
    padding-left: 1rem !important;
}

.padding-r {
    padding-right: 5px !important;
}

.padding-r1 {
    padding-right: 1rem !important;
}

.padding-r2 {
    padding-right: 2rem !important;
}

.padding-r3 {
    padding-right: 3rem !important;
}

.padding-r4 {
    padding-right: 4rem !important;
}

.padding-r5 {
    padding-right: 5rem !important;
}

/* 要素の位置調整 */
.margin-l1 {
    margin-left: 1rem !important;
}

.margin-l2 {
    margin-left: 2rem !important;
}

.margin-t2 {
    margin-top: 2rem !important;
}

/* テキスト-中央寄せ項目 */
.text-center {
    text-align: center;
}

/* テキスト-数値項目（右寄せ） */
.text-number {
    text-align: right;
    padding-right: 5px !important;
}

/* テキスト２段表示（上寄せ） */
.text-2step-top {
    vertical-align: top;
}

/* テキストボックス（コンボボックス含む）のサイズ設定 */
.textbox {
    display: block;
    width: 100%;        /* ←親要素のサイズに合わせます */
    height: 1.2rem;
    background-color: white;
    color: black;
    border: 1px solid grey;
    border-radius: 2px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
    .textbox:focus {
        border-color: #66afe9;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
    }
    .textbox::-moz-placeholder {
        color: #999;
        opacity: 1;
    }
    .textbox:-ms-input-placeholder {
        color: #999;
    }
    .textbox::-webkit-input-placeholder {
        color: #999;
    }
    .textbox::-ms-expand {
        background-color: transparent;
        border: 0;
    }
    .textbox[disabled],
    .textbox[readonly],
    fieldset[disabled] .textbox {
        background-color: #eee;
        opacity: 1;
    }
    .textbox[disabled],
    fieldset[disabled] .textbox {
        cursor: not-allowed;
    }
textarea.textbox {
    height: auto;
}

/* セル内に下線を引く（下線サイズは引数） */
.td_underline {
    position: relative;
}
    .td_underline::after {
        content: '';
        position: absolute;
        width: var(--width);
        display: block;
        height: 0.2px;
        background-color: lightsteelblue;
        bottom: 2px;
    }

/* コンボボックスの中にテキストを埋め込む */
.incombo {
    border: none !important;
    margin-top: 1px;
    margin-left: 1px;
    content: '';
    position: absolute;
    max-width: var(--width);
    max-height: 1rem !important;
    background-color: white !important;
}

/* 参照系ボタン */
.refBtn {
    display: inline-block;
    line-height: 1.3;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: lightgray;
    border: 1px solid darkgrey;
    border-radius: 4px;
}
    .refBtn:hover:not([disabled]) {
        background-color: darkgrey;
    }
    .refBtn[disabled] {
        color: whitesmoke;
    }

/* 背景色に光沢をつける */
.bg-gloss {
    background-image: -webkit-linear-gradient(rgba(255,255,255,.3) 0%,transparent 50%,transparent 50%,rgba(0,0,0,.1) 100%);
    background-image: linear-gradient(rgba(255,255,255,.3) 0%,transparent 50%,transparent 50%,rgba(0,0,0,.1) 100%);
    box-shadow: 0 2px 2px 0 rgba(255,255,255,.1) inset,0 2px 10px 0 rgba(255,255,255,.2) inset,0 -2px 2px 0 rgba(0,0,0,.1) inset;
    border: 1px solid rgba(0,0,0,.2) !important;
}

.bg-gloss2 {
    background-image: -webkit-linear-gradient(transparent 0%,rgba(255,255,255,.3) 50%,transparent 50%,rgba(0,0,0,.1) 100%);
    background-image: linear-gradient(transparent 0%,rgba(255,255,255,.3) 50%,transparent 50%,rgba(0,0,0,.1) 100%);
    box-shadow: 0 2px 2px 0 rgba(255,255,255,.2) inset,0 2px 10px 0 rgba(255,255,255,.5) inset,0 -2px 2px 0 rgba(0,0,0,.1) inset;
    border: 1px solid rgba(0,0,0,.2) !important;
}

/* テーブル（基本は枠なし） */
table, th, td {
    border: none;
}

/* 入力項目をラベルのように見せる */
.displayEditor {
    display: block;
    width: 100%;
    height: 1.2rem;
    background-color: inherit;
    color: black;
    border: none;
}
    .displayEditor:focus {
        border: none;
        outline: 0;
    }

/* header Style */
.header_topmost_div {
    height: 0.4rem;
    width: 100%;
    position: fixed;
    background-color: white;
}
.header_pic_div {
    width: 100%;
    height: 2.5rem;
    position: fixed;
    top: 0.4rem;
    background-color: white;
}
.header_pic_table {
    width: 100%;
    height: 2.5rem;
    top: 0.4rem;
}
.header_space_div {
    width: 100%;
    height: 0.1rem;
    position: fixed;
    top: 2.9rem;
    background-color: white;
}
.header_title_div {
    width: 100%;
    height: 1.88rem;
    background-color: #F0F0F0;
    padding-top: 0.2rem;
    position: fixed;
    top: 3rem;
}
.head_span_div span {
    color: #808080;
    height: 1.25rem;
    line-height: 1.25rem;
    font-size: 10px;
    font-weight: 700;
}
/**/
.floatLeft{
    float:left;
}
.allCenter {
    display: flex;
    align-items: center;
    justify-content:center;
}
.logo_gif_img {
    width: 199px;
    height: 25px;
}
.my_foot_div {
    position: fixed !important;
    bottom: 2.5rem;
    width: 100%;
    border-top: 1px solid #1F5FA9;
    background-color:white;
}
.foot_div {
    width: 100%;
    height: 2.5rem;
    background-color: #1F5FA9;
    line-height: 2.5rem;
    font-size: 14px;
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 0px;
}
.fullDiv{
    width:100%;
    height:100%;
}
.first_parent_div {
    width: 100%;
    height: calc(100% - 7.4rem);
}
.header_two_btn {
    cursor: pointer;
}
.menu_ret_btn:hover {
    position: relative;
    top: -1px;
    box-shadow: 0 3px 0 #4b92de;
}
.login_out_btn:hover {
    position: relative;
    top: -1px;
    box-shadow: 0 3px 0 #7C7C7C;
}
.theLeftBlock {
    border-left: 10px solid #1F5FA9;
}
.space_div_10px{
    width:100%;
    height:10px;
}
.space_div_5px{
    width:100%;
    height:5px;
}
.page_titile_div {
    width: 100%;
    height: 36px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 20px;
    padding-left: 10px;
    color: #1F5FA9;
    font-weight:900;
}
.content_container_div{
    width:1280px;
    height:100%;
}
.floatRight{
    float:right;
}
.border_right_line {
    border-right: 1px #9B9B9B solid;
    font-size: 12px;
}
.shun_text {
    width:80%;
    height:100%;
    background-color: #E4E4E4;    
}
.xiwang_dt_text {
    width: 80%;
    height: 100%;
    text-decoration: underline;
}
.hinban_text {
    width: 80%;
    height: 100%;
    text-decoration: underline;
}
.dandang_text {
    width: 80%;
    height: 100%;
    text-decoration: underline;
}
.tools_div{
    height:36px;
    width:100%;
}
.common_tools_a {
    cursor: pointer;
    color: #0073a8;
}
.common_tools_a:hover {
    color: #67b5b7;
}

.show_selected {
    background-color: #eaf1fb;
    text-decoration: none;
}


.table_data_div {
    width: 100%;
    height: 79%;
    overflow-x: auto;
    overflow-y: auto;
    margin: auto;
}

.table_data {
    width: 100%;
    table-layout: fixed;
}

.pre_line_div {
    white-space: pre-line;
}

.heade_tr {
    height: 50px;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
}

.heade_tr th {
    border-right: 1px;
    border-right-color: #cccccc;
    border-right-style: solid;
    background: #1F5FA9;
    font-size: 13px;
    font-weight: normal;
    color: #FFFFFF;
    text-align: center;
}

.tbody_tr {
    height: 50px;
    text-align: left;
}

.tbody_tr td {
    border: 1px solid #cccccc;
    font-size: 13px;
    color: #1F5FA9;
    padding-left: 5px;
    padding-right: 5px;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
}
.tbody_tr td div{
    width:99%;
    height:18px;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
}
.table_double_line_div{
    width:99%;
    height:18px;
}
.tbody_tr_date{
    height: 50px;
    text-align: left;
}
.tbody_tr_date > td{
    border: 1px solid #cccccc;
    font-size: 13px;
    padding-left: 5px;
    padding-right: 5px;
}
.shenglue{
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
}
.white_tr td {
    background-color: white;
}

.grey_tr td {
    background-color: #eeeeee;
}

.white_backcolor{
    background-color: white;
}
.grey_backcolor{
    background-color: #eeeeee;
}
/*滚动条样式*/
.table_data_div::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.table_data_div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
    background: rgba(0,0,0,0.1);
}

.table_data_div::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0);
    border-radius: 0;
    background: rgba(0,0,0,0);
}
.my_content_div{
    width:100%;
    /*height:calc(100% - 121px);*/
    height:100%;
}

.mask_container_div{
    position:absolute;
    height:100vh;
    width:100vw;
    z-index:99;
    top: 0px;
    display:none;
}
._mask_back_div{
    position:absolute;
    height:100%;
    width:100%;
    background-color: rgba(10,10,10,0.43) ;
    z-index:199;
}
.height_half_div{
    width:100%;
    height:50%;
}

.common_move_img{
    cursor:pointer;
}
.common_move_img:hover {
    position: relative;
    top: 2px;
}
header div{
    z-index:9;
}
.min_width{
    min-width:1280px;
}
.common_width{
    width:1280px;
}
.common_height{
    height:645px;
}
.shuiping_juzhong{
    display: flex;
    justify-content: center;
}

/*--------------------------------------------------------------*/
/* ----- 共通クラス --------------------------------------------*/
/*--------------------------------------------------------------*/
.text-red-bold {
    font-weight: 600;
    color: red !important;
}

/********** ヘッダー **********/
/* ページタイトル */
.p_dv_pagetitle {
    width: 100%;
    height: 36px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-left: 10px solid var(--titlebkcolor);
    padding-left: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: var(--pagetitle_font);
    font-weight: 900;
    color: var(--titlebkcolor);
}

/* 合計領域 */
.p_dv_totalbase {
    width: fit-content; /* 子要素の幅に合わせる */
    height: 36px;
    background-color: white;
    margin-bottom: 5px;
}
/* 合計項目（件数、金額） */
.p_tb_total {
    table-layout: fixed;
    height: 100%;
    font-size: var(--cond_title_font);
}
    .p_tb_total td {
        text-align: center;
    }

/* 条件指定領域 */
.p_dv_conditionbase {
    width: fit-content; /* 子要素の幅に合わせる */
    padding: 3px 5px 3px 5px;
    margin-bottom: 3px;
    background-color: #F3F3F3;
}
/* 条件項目（タイトル＋入力ボックスなど） */
.p_tb_condition {
    table-layout: fixed;
    font-size: var(--cond_input_font);
}
    .p_tb_condition td {
        padding: 2px; /* 項目タイトルや入力ボックスを少し内側へ配置 */
    }
    /* 項目タイトル */
    .p_tb_condition .coltitle {
        padding-top: 2px; /* 文字を気持ち下へ下げて中央に寄せる display: flexは使わない */
        text-align: center;
        font-size: var(--cond_title_font) !important;
        background-color: #ABABAB;
        color: white;
        margin-bottom: 0; /* この要素の下限の余白はいらない */
    }
    /* 項目ラベル */
    .p_tb_condition .collabel {
        padding-top: 2px; /* 文字を気持ち下へ下げて中央に寄せる display: flexは使わない */
        text-align: center;
        font-size: var(--cond_title_font) !important;
        margin-bottom: 0; /* この要素の下限の余白はいらない */
    }
    /* 検索値入力ボックス */
    .p_tb_condition .textbox {
        width: 100%;
        height: 1.4rem;
        max-width: var(--cond_input_maxwidth); /* 基本外枠に合わせるが最大幅は必要 */
        border-top: 1px solid var(--darkshadow);
        border-bottom: 1px solid var(--lightshadow);
        border-left: 1px solid var(--darkshadow);
        border-right: 1px solid var(--lightshadow);
    }
        .p_tb_condition .textbox:focus {
            border-color: #66afe9;
            outline: 0;
            -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
            box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
        }
    /* DatePickerの親要素 */
    .p_tb_condition .dv_datepicker {
        position: relative;
    }
    /* 検索ボタンとの境界線 */
    .p_tb_condition .separator {
        border-right: 1px solid var(--lightshadow);
    }
    .p_tb_condition button {
        width: 80px; /* 検索ボタンなどはサイズ固定 */
        margin-left: 5px;
        background-color: #8E8E8E;
        font-size: var(--cond_title_font) !important;
        color: white;
        border: none;
    }

/* 並び順指定 */
.p_dv_orderby {
    width: 100%;
    font-size: 12px;
    text-align: right;
}
    .p_dv_orderby ul {
        display: flex;
        list-style: none;
        justify-content: flex-end;
        padding: 0;
        height: 25px; /* ラジオボタンの◎の大きさと連動します */
        margin-bottom: 0; /* この要素の下限の余白はいらない */
    }
    .p_dv_orderby li {
        display: flex;
        list-style: none;
        padding-left: 5px; /* 隣の要素とのスペース */
        padding-right: 5px; /* 隣の要素とのスペース */
        line-height: 24px;
        border-right: 1px solid var(--darkshadow);
    }
    .p_dv_orderby .coltitle { /* [表示順]タイトル */
        height: 22px;
        padding-left: 3px;
        padding-right: 3px;
        background-color: #E4E4E4;
    }
    .p_dv_orderby .orderbytext { /* [表示順]テキスト */
        height: 22px;
        padding-left: 3px;
        padding-right: 3px;
        text-decoration: underline; /* 選択されていないときは下線を表示する */
    }
        .p_dv_orderby .orderbytext > a {
            cursor: pointer;
            color: #0073a8;
        }
    .p_dv_orderby .show_selected { /* 選択されている並び順テキスト */
        background-color: #eaf1fb;
        text-decoration: none !important; /* 下線を消す */
    }

/********** 明細 **********/
.p_dv_mybody {
    width: 1280px;
    height: calc(100% - var(--my_foot_div_height)); /* フッター（my_foot_div）を差し引いた分をこの画面の高さとする */
}

/* データ表示枠内でスクロールが行われるようにする */
.p_dv_datagrid {
    width: 100%;
    height: calc(100% - var(--height)); /* 警告文を表示する枠の高さを動的に減らせるようにしておく */
    overflow-x: auto;
    overflow-y: auto;
    margin: auto;
}
    .p_dv_datagrid::-webkit-scrollbar {
        width: 12px;
        height: 4px;
    }
    .p_dv_datagrid::-webkit-scrollbar-thumb {
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
        background: rgba(0,0,0,0.1);
    }
    .p_dv_datagrid::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0);
        border-radius: 0;
        background: rgba(0,0,0,0);
    }

/* データ表示テーブル（スクロールしてもヘッダータイトルはスクロールされないようにします　※微調整はjs側で行っています） */
.p_tb_detail {
    table-layout: fixed;
}
    .p_tb_detail > thead > tr { /* タイトル行 */
        height: 30px;
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
        .p_tb_detail > thead > tr > th {
            padding-top: 3px;
            padding-bottom: 3px;
            border-right: 1px;
            border-right-color: var(--lightshadow);
            border-right-style: solid;
            background: var(--titlebkcolor);
            font-size: var(--detaile_title_font);
            font-weight: normal;
            color: white;
            text-align: center;
        }
    .p_tb_detail > tbody > tr { /* 明細行 */
        height: 30px;
    }
        .p_tb_detail > tbody > tr:nth-child(2n) {
            background-color: var(--alternatingcolor);
        }
        .p_tb_detail > tbody > tr > td {
            padding: 5px;
            border: 1px solid var(--lightshadow);
            font-size: var(--detaile_value_font);
            color: var(--titlebkcolor);
            overflow: hidden;
        }
    .p_tb_detail .norecord { /* 該当データなし */
        border: 1px solid var(--lightshadow);
        height: 30px !important;
        text-align: center;
    }
    .p_tb_detail > tbody > .norecord > td {
        color: var(--titlebkcolor) !important;
    }

/* my_foot_divの高さを指定（全ての画面が修正できたらmy_foot_divに直接設定します） */
.my_foot_div_height {
    height: var(--my_foot_div_height) !important;
}

/********** フッター **********/
.p_dv_myfooter {
    width: 1280px;
    height: 100%;
}

.p_tb_footer {
    table-layout: fixed;
    width: 100%;
    height: 100%;
}
    /* ビックリマーク、注意書き、ページ移動ボタンはフッターの上部に配置する（それ以外のボタンなどは中央寄せ） */
    .p_tb_footer .warningimg, .warningtext, .pagebutton {
        padding-top: 10px;
        vertical-align: top;
    }
    /* 注意書き */
    .p_tb_footer .warningtext > p {
        font-size: 12px;
        color: #757575;
        margin-bottom: 0; /* この要素の下限の余白はいらない */
    }

/* フッターのボタンはマウスを置いたときに若干動くようにする */
    .p_tb_footer .common_foot_btn {
        cursor: pointer;
    }
        .p_tb_footer .common_foot_btn:hover {
            position: relative;
            top: 2px;
        }

/* ページ移動ボタンは右寄せ */
    .p_tb_footer .pagebutton > ul {
        display: flex;
        list-style: none;
        justify-content: flex-end;
        align-items: flex-end;
    }
    .p_tb_footer .pagebutton > ul > li:nth-child(1) {
        padding-right: 5px;
    }

/********** カート遷移表示 **********/
.p_cart_step {
    width: 1080px;
    height: 32px;
    margin: 0 auto 20px auto;
    clear: both;
    position: relative;
    border: 2px solid #D7D7D7;
    padding: 0;
}
    .p_cart_step > li {
        list-style-type: none;
        height: 28px;
        float: left;
        text-indent: -9999px;
        margin: 0;
        padding: 0;
    }
.p_cart_step1 { /* ショッピングカート */
    width: 269px;
    position: absolute;
    top: 0px;
    background: url(Img/cart/common/step1.png) no-repeat;
}
.p_cart_step2 { /* 注文情報の入力 */
    left: 257px;
    width: 280px;
    position: absolute;
    top: 0px;
    background: url(Img/cart/common/step2.png) no-repeat;
}
.p_cart_step3 { /* 注文情報の確認 */
    left: 525px;
    width: 280px;
    position: absolute;
    top: 0px;
    background: url(Img/cart/common/step3.png) no-repeat;
}
.p_cart_step4 { /* 注文完了 */
    left: 793px;
    width: 283px;
    position: absolute;
    top: 0px;
    background: url(Img/cart/common/step4.png) no-repeat;
}
