﻿@charset "utf-8";

/* ==================================================
    全体設定
================================================== */

html, body {
    position: relative;
    font-size: 1em;
    font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    line-height: 1.5em;
    height: 100%;
}

body {
    overflow-y: scroll;
    background-image: url(../../common/img/backimg.png);
    background-position: top center;
    min-width: 1050px;
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
}

h1, h2 , h3, h4, h5 {
    padding: 0;
    margin: 0;
}

ul, ol{
    padding: 0;
    margin: 0;
}

input[type="text"],
input[type="password"],
input[type="tel"] {
    height: 35px;
    line-height: 35px;
    vertical-align:middle;
    border-radius: 0;
    border: 1px solid #ccc;
    background: #f2f2f2;
    padding: 0 0 0 10px;
    margin: 10px 0;
}

select.form-control {
    height: 35px;
    line-height: 35px;
    vertical-align: middle; 
    border-radius: 0;
    border: 1px solid #ccc;
    background: #f2f2f2;
    padding: 0 0 0 10px;
    margin: 10px 0;
}

input[type="text"].error,
input[type="password"].error,
input[type="tel"].error {
    background: #ffe3ef;
}

input[type="text"].login {
    background-image: url(../../common/img/icons/input_bg_icon_user.png);
    background-color: #f2f2f2;
    background-position: 345px center;
    background-repeat: no-repeat;
}

input[type="text"].login::-ms-clear
{
    display:none;
}

input[type="text"].login.error {
    background-image: url(../../common/img/icons/input_bg_icon_user.png);
    background-color: #ffe3ef;
    background-position: 345px center;
    background-repeat: no-repeat;
}

input[type="password"].password {
    background-image: url(../../common/img/icons/input_bg_icon_password.png);
    background-color: #f2f2f2;
    background-position: 345px center;
    background-repeat: no-repeat;
}

input[type="password"].password::-ms-reveal
{
    display:none;
}

input[type="password"].password.error {
    background-image: url(../../common/img/icons/input_bg_icon_password.png);
    background-color: #ffe3ef;
    background-position: 345px center;
    background-repeat: no-repeat;
}

.order_history_area input[type="checkbox"] {
    display: none;
}

.order_history_area input[type="checkbox"] + label {
    display: block;
    width: 15px;
    height: 15px;
    background-image: url(../../common/img/bg_checkbox_off.png);
    background-size: 15px 15px;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 0 auto;
}

.order_history_area input[type="checkbox"]:checked + label {
    background-image: url(../../common/img/bg_checkbox_on.png);
}

.btn_area {
    text-align: center;
    margin-top: 15px;
}

.btn_area button.bold_custom {
    width: 184px;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 6px;

}

.btn_area button.bold_custom_break {
    font-size: 16px;
    font-weight: bold;
    padding: 12px 6px;

}

/*-- ピンク色ボタン ----------*/
.btn-pinky,
.btn-pinky:focus {
    color: #fff;
    background-color: #ed1e79;
    border-color: #ed1e79;
}

.btn-pinky:hover {
    color: #fff;
    background-color: #e5126f;
    border-color: #ed1e79;
}

.btn-pinky:active {
    color: #fff;
    background-color: #af0e55;
    border-color: #ed1e79;
}

/*-- 灰色ボタン ----------*/
.btn-gray,
.btn-gray:focus {
    color: #fff;
    background-color: #595757;
    border-color: #595757;
}

.btn-gray:hover {
    color: #fff;
    background-color: #484848;
    border-color: #444;
}

.btn-gray:active {
    color: #fff;
    background-color: #333;
    border-color: #333;
}

/*-- 黒いボタン ----------*/
.btn-black,
.btn-black:focus {
    color: #fff;
    background-color: #333;
    border-color: #333;
}

.btn-black:hover {
    color: #fff;
    background-color: #222;
    border-color: #222;
}

.btn-black:active {
    color: #fff;
    background-color: #000;
    border-color: #000;
}


ul.bxslider li a {
    display: block;
}

ul.bxslider li a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    text-decoration: none;
}


/*----- 画像上の三角マーク -----*/

.triangle.lefttop {
    width: 0;
    height: 0;
    line-height: 0;
    border-top: 15px solid #ccc;
    border-right: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid  #ccc;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 999;
}

.triangle.lefttop span.glyphicon {
    color: #fff;
    font-size: 12px;
    line-height: 0;
    margin-left: -12px;
    top: -5px;
}

.triangle.righttop {
    width: 0;
    height: 0;
    line-height: 0;
    border-top: 15px solid #ccc;
    border-right: 15px solid #ccc;
    border-bottom: 15px solid transparent;
    border-left: 15px solid transparent;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999;
}

.triangle.righttop span {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    margin-top: -4px;
    margin-left: 2px;
}

/*----- 画像中央配置 -----*/

.image_centering {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

/*----- 枠外はみ出し禁止 -----*/

.word_break_all 
{
    word-break: break-all;
}

/* ==================================================
    タイトル
================================================== */

html,body{
    height:100%;
}

#container{
    width: 100%;
    position: relative;
    height:auto !important;
    height: 100%;
    min-height: 100%;
}


/* ==================================================
    ヘッダー部分
================================================== */

#header {
    width: 100%;
    background: #fff;
}

#header .logo_header_zaiko {
    width: 1024px;
    height: 125px;
    background-position: 10px center;
    background-repeat: no-repeat;
    margin: 0 auto;
    position: relative;
}

#header .header_left_button {
    position: absolute;
    right: 0;
    top: 0;
}

#header .header_left_button div {
    position:absolute;
    right:0;
}

#header .header_left_button .language-select {
    width:200px;
    display:inline-block;
}

#header .header_left_button button {
    width: 70px;
    height: 30px;
    color: #fff;
    font-size: 10px;
    line-height: 30px;
    letter-spacing: -0.2px;
    text-align: center;
    white-space: nowrap;
    border: none;
    border-radius: 0 0 40px 40px;
    background-color: #000;
    background-position: center 25px;
    background-repeat: no-repeat;
    padding-bottom: 70px;
    position: relative;
    behavior: url(/common/js/PIE.js);
}

    #menuSearch   {background-image: url(../img/icons/h_btn_icon_search.png);}
    #menuCart     {background-image: url(../img/icons/h_btn_icon_cart.png);}
    #menuHistory  {background-image: url(../img/icons/h_btn_icon_history.png);}
    #menuDownload {background-image: url(../img/icons/h_btn_icon_download.png);}
    #menuChgshop  {background-image: url(../img/icons/h_btn_icon_chgshop.png);}
    #menuPassword {background-image: url(../img/icons/h_btn_icon_password.png);}
    #menuHelp     {background-image: url(../img/icons/h_btn_icon_help.png);}
    #menuLogout   {background-image: url(../img/icons/h_btn_icon_logout.png);}
    #menuManagement {background-image: url(../img/icons/h_btn_icon_management.png);}
    #menuFuturesOrder {background-image: url(../img/icons/h_btn_icon_sakimono.png);}

    background-image: url(../img/brand_list_arrow_left.png);

    #header .header_left_button button:hover {
        background-color: #595757;
    }

    #header .header_left_button button:active,
    #header .header_left_button button.active {
        background-color: #808080;
    }

#header .header_left_button button span.cart_badge {
    display: block;
    height: 20px;
    font-size: 11px;
    line-height: 20px;
    border: 1px solid #fff;
    background-color: #ed1e79;
    padding: 0 5px;
    position: absolute;
    bottom: -8px;
    right: -5px;
    width: 80px;
}

#header .black_line {
    width: 100%;
    background: #000;
}

#header .header_news {
    width: 1024px;
    color: #fff;
    padding: 0 15px;
    margin: 0 auto;
    white-space: nowrap;
    position: relative;
}

#header .header_news h4 {
    width: 890px;
    height: 50px;
    font-size: 14px;
    font-weight: bold;
    line-height: 50px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#header .header_news button {
    position: absolute;
    top: 8px;
    right: 15px;
}

#header .body_news {
    width: 1024px;
    color: #fff;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
}

#header .body_news h4 {
    width: 890px;
    font-size: 14px;
    font-weight: bold;
    line-height: 30px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#header .body_news div {
    font-size: 14px;
    padding-bottom: 10px;
}

#header div#news_main {
    display: none;
    padding-bottom:15px;
}

#header div#news_main .news_wrap {
    height: 100%;
    color: #ffffff;
    position: relative;
    margin: 0px auto;
    padding: 0px 17px;
    overflow-y: auto;
    width: 1024px;
}

#header div#news_main .body_news {
    padding: 0;
    width  : 990px;
}

.error_message_div {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
}

.error_message_div .left {
    width: 100%;
    text-align: center;
}

.error_message_div .center {
    width: 100%;
    text-align: center;
}

.error_message_div .message .warning {
    color: #ED1E79;
    font-size: 14px;
    font-weight: bold;
}

.error_message_area {
    width: 1024px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    border: 2px;
}

.error_message_area_100 {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    border: 2px;
}

.error_message_area .left {
    width: 100%;
    text-align: left;
}

.error_message_area .center {
    width: 100%;
    text-align: center;
}

.error_message_area .message .warning {
    color: #ED1E79;
    font-size: 14px;
    font-weight: bold;
}

.error_message_area_100 .message .warning {
    color: #ED1E79;
    font-size: 14px;
    font-weight: bold;
}

.error_message_area_over {
    width: 700px;
    color: #595757;
    padding: 18px;
    margin: 20px auto;
    
}

.error_message_area_over .message {
    font-size: 18px;
    text-align: left;    
    font-weight: bold;

}

.error_message_area_over .detail {
    border: 1px solid #b3b3b3;
    background: #fff;
    
}

.error_message_area_over .detail .line {
    color: #ED1E79;
    font-size: 14px;
    font-weight: bold;    
    text-align: left;    
    margin: 10px 10px;
}

/* ==================================================
    フローティング部分
================================================== */

  #floating_menu {
    position: fixed;
    top: 50%;
    right: 30px;
    width: 190px;
    height: ;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.8);
    border: 2px solid #554336;
    background-color: #DDCEC0;
    background-image: url(../../common/img/bg_sakimono.png);
    background-position: top center;
    z-index: 10;
  }
  #floating_menu .draggable_bar {
    height: 20px;
    background-color: #846346;
    cursor: move;
  }
  #floating_menu .fmenu_header,
  #floating_menu .fmenu_body,
  #floating_menu .fmenu_footer {
    padding: 5px 10px;
  }
  #floating_menu .fmenu_header {
    text-align: center;
  }
  #floating_menu .fmenu_body {
    padding: 10px;
    text-align: center;
  }
  #floating_menu .fmenu_footer {
    border-top: 1px dotted #ccc;
    background-color: #f7f3ec;
    font-size: 14px;
  }
  #floating_menu dl {
    margin-bottom: 0;
  }
  #floating_menu .sakimono_btn {
    border-color: #664A45;
    background-color: #775751;
    color: #fff;
  }
  #floating_menu .close_btn {
    position: absolute;
    top: -10px;
    left: -15px;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    border: 2px solid #554336;
    background-color: #CD4B4B;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
  }


/* ==================================================
    コンテンツ部分
================================================== */

#article{
    width: 100%;
    padding-bottom: 100px;
    margin: 0 auto;
}

.dashboard {
    width: 500px;
    background-color: #fff;
    margin: 65px auto 20px;
    box-shadow: 3px 3px 3px 0 rgba(0,0,0,0.3);
    behavior: url(/common/js/PIE.js);
}

.dashboard h2 {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    background: #595757;
    padding: 20px 0;
}

.dashboard .inner {
    width: 100%;
    padding: 50px 50px 35px;
}

.dashboard .inner .message_area h3 {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 35px;
}

.dashboard .inner .message_area p {
    color: #808080;
    font-size: 16px;
    text-align: center;
}

.dashboard .inner .input_area table th {
    padding: 4px 0;
    padding-right: 15px; 
}

.dashboard .inner .input_area table td {
    padding: 4px 0; 
}

.dashboard .inner .input_area table td input {
    width: 250px;
    margin: 0;
}

.dashboard.full {
    width: 100%;
    box-shadow: none;
    margin: 0;
}

.dashboard.full.nobg {
    background: none;
}

.dashboard.full .inner 
{
    width: 1024px;
    padding: 30px 20px;
    margin: 0 auto;
}

.dashboard.full .inner_wide 
{
    width: 1030px;
    padding: 30px 20px;
    margin: 0 auto;
}

.dashboard h3 {
    color: #595757;
    font-size: 18px;
    font-weight: bold;
}

.dashboard .zaiko_mark_description
{
    width: 1030px; 
    margin: 0 auto; 
    padding: 10px 5px 5px 5px; 
}

.dashboard .zaiko_mark_description td
{
    padding-right: 20px;
}


/* ==================================================
    フッター部分
================================================== */

#footer{
    width: 100%;
    height: 100px;
    text-align: center;
    border-top: 1px solid #e6e6e6;
    background: #fff;
    box-shadow: 0px -1px 3px 0 rgba(0,0,0,0.3);
    padding: 20px 0;
    position: absolute;
    bottom: 0;
    behavior: url(/common/js/PIE.js);
}

#footer .logo_footer_fo {
    width: 210px;
    height: 30px;
    background-image: url(../../common/img/logo_footer_fo.png);
    background-position:  center center;
    background-repeat: no-repeat;
    margin: 0 auto;
}

#footer span.copyright {
    font-size: 11px;
}


/* ==================================================
    1.1 ログイン・認証
================================================== */

.dashboard.login {
    width: 500px;
    background-color: #fff;
    background-position: center 30px;
    background-repeat: no-repeat;
    box-shadow: 3px 3px 3px 0 rgba(0,0,0,0.3);
    margin: 65px auto;
    behavior: url(/common/js/PIE.js);
}

.dashboard.login .inner {
    padding: 0px 60px 30px;
}

.dashboard.login .comment_area {
    color: #808080;
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
}

/* ==================================================
    1.1.1 パスワード変更
================================================== */


/* ==================================================
    1.2 商品検索
================================================== */

.search_bxslider_area
{
    height: 285px;
}

.search_bxslider_area h3 {
    color: #595757;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
}

/* スライダーで全画像が一度表示されてしまう現象の回避 ========== */
.search_bxslider_area .bxslider a
{
    display: none;
}

.search_bxslider_area .bx-viewport .bxslider a
{
    display: block !important;
}
/* ========== スライダーで全画像が一度表示されてしまう現象の回避 */

.search_bxslider_area .bx-wrapper {
    max-width: 990px!important;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background: none;
}

.search_bxslider_area .bx-viewport{
    height: 202px!important;
}

.search_bxslider_area .bx-wrapper .bx-pager.bx-default-pager a {
    background-color: #ccc;
}

.search_bxslider_area .bx-wrapper .bx-pager.bx-default-pager a:hover,
.search_bxslider_area .bx-wrapper .bx-pager.bx-default-pager a.active,
.search_bxslider_area .bx-wrapper .bx-pager.bx-default-pager a:focus {
    background-color: #ed1e79;
}

.search_bxslider_area .bx-wrapper .bx-controls-direction a {
    width: 32px;
    height: 64px;
    margin-top: -32px;
}

.search_bxslider_area .bx-wrapper .bx-prev {
    left: 50%;
    margin-left: -540px;
    background-image: url(../img/search_arrow_left.png);
    background-position: center center;
    background-repeat: no-repeat;
}

.search_bxslider_area .bx-wrapper .bx-next {
    right: 50%;
    margin-right: -540px;
    background-image: url(../img/search_arrow_right.png);
    background-position: center center;
    background-repeat: no-repeat;
}

.search_bxslider_area .bx-wrapper .bx-prev:hover,
.search_bxslider_area .bx-wrapper .bx-next:hover {
    background-position: center center;    
}

.search_bxslider_area ul.bxslider li img {
    width: 240px!important;
    height: 240px!important;
    -webkit-box-shadow: 0 0 5px #ccc;
    box-shadow: 3px 3px 2px #ccc;
    border: 5px solid #fff;
    background: #fff;
}

.search_bxslider_area div.bxslider span.code_price {
    display: block;
    color: #595757;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-top: 5px;
}

ul.ranking_list {
    list-style: none;
    text-align: left;
}

ul.ranking_list li {
    display: inline-block;
    width: 144px;
    position: relative;
    margin-left: 60px;
}

ul.ranking_list li:first-child {
    margin-left: 0;
}

ul.ranking_list li a {
    display: block;
    text-decoration: none;
    text-align:center;
}

ul.ranking_list li a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

/*
ul.ranking_list li a img {
    width: 180px;
    height: 180px;
}
*/

ul.ranking_list li a span.code_price {
    color: #595757;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
}

.section_header {
    width: 990px;
    margin: 0 auto 15px;
    position: relative;
}

.section_header a.list_link {
    display: block;
    color: #ed1e79;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    right: 0;
    top: 0;
}

.section_header a.list_link span.glyphicon {
    margin-left: 5px;
}

.black_brand_list {
    background: #000;
    padding: 12px 0;
    height: 75px;
}

.black_brand_list .bx-wrapper {
    max-width: 940px!important;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background: none;
    margin-bottom: 0;
}

/* スライダーで全画像が一度表示されてしまう現象の回避 ========== */
.black_brand_list .bxslider a
{
    display: none;
}

.black_brand_list .bx-viewport .bxslider a
{
    display: block !important;
}
/* ========== スライダーで全画像が一度表示されてしまう現象の回避 */

.black_brand_list .bx-viewport {
    /* height:34px!important; */
    height: 50px !important;
}

.black_brand_list ul.bxslider li 
{
	background-color: #FFF !important;
	width: 80px !important;
	height: 50px !important;
	margin-right: 43px !important;
}

/* ブランド画像の中央表示対応 */
.black_brand_list .bx-viewport .bxslider a
{
     /* position: relative !important; */
     height: 100%;
     width: 82px;
}
.black_brand_list ul.bxslider li 
{
	display: -webkit-box; /* safari, Chrome */
	display: -moz-box;    /* Firefox */
	display: -o-box;      /* Opera */
	display: -ms-box;     /* IE */
	display: box;         /* ベンダープレフィックスなし */
}
.black_brand_list ul.bxslider li
{
  -webkit-box-align: center; /* safari, Chrome */
  -moz-box-align: center;    /* Firefox */
  -o-box-align: center;      /* Opera */
  -ms-box-align: center;     /* IE */
  box-align: center;         /* ベンダープレフィックスなし */
}
.black_brand_list ul.bxslider li img 
{
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}

.black_brand_list ul.bxslider li img {
    /*width: 75px!important;*/
    width: 74px!important;
}

.black_brand_list .bx-wrapper .bx-controls-direction a {
    width: 10px;
    height: 16px;
    margin-top: -8px;
}

.black_brand_list .bx-wrapper .bx-prev {
    left: 50%;
    margin-left: -500px;
    background-image: url(../img/brand_list_arrow_left.png);
    background-position: center center;
    background-repeat: no-repeat;
}

.black_brand_list .bx-wrapper .bx-next {
    right: 50%;
    margin-right: -500px;
    background-image: url(../img/brand_list_arrow_right.png);
    background-position: center center;
    background-repeat: no-repeat;
}

.black_brand_list .bx-wrapper .bx-prev:hover,
.black_brand_list .bx-wrapper .bx-next:hover {
    background-position: center center;    
}

.search_form_area {
    width: 1024px;
    padding: 20px 20px 30px;
    margin: 0 auto;
}

.search_form_area table th,
.search_form_area table td {
    color: #595757;
    vertical-align: middle!important;
    white-space: nowrap;
    border-top: none!important;
    padding: 0px 8px!important;
}

.search_form_area table th {
    font-size: 14px;
    font-weight: bold;
    height:45px;
}

.search_form_area table td select {
    width: 350px;
    margin: 4px 0;
}

.search_form_area table td input[type="text"] {
    display: inline;
    width: 143px;
    margin: 4px 0;
}

.search_form_area table td .price {
    text-align: right;
    padding-right: 4px;
}

/*----- ランキング画像 -----*/
.search_ranking_image {
    width: 144px;
    height: 144px;
}

.search_ranking_image-w {
    width: 180px;
    height: auto;
}

.search_ranking_image-h {
    width: auto;
    height: 180px;
}

/*----- おすすめ画像 -----*/
.search_featured_image {
    width: 144px;
    height: 144px;
}

.search_featured_image-w {
    width: 240px;
    height: auto;
}

.search_featured_image-h {
    width: auto;
    height: 240px;
}

/*----- カートに登録後のメッセージ -----*/
#cart_add_text {
    background-color: #ccc;
}

#cart_add_text div.cart_add_div1 {
    width: 1024px;
    padding: 7px 20px;
    margin: 0 auto;
    position: relative;
}

#cart_add_text div.cart_add_div2 {
    width: 1024px;
}

#cart_add_text div.cart_add_div3 {
    display: inline-block;
    text-align: center;
    width: 995px;
}


/* ==================================================
    1.3 商品一覧(検索結果)
================================================== */

ul.result_list {
    list-style: none;
    letter-spacing: -0.4em;
    margin-left: 12px;
}

ul.result_list_wide {
    list-style: none;
    letter-spacing: -0.4em;
    display:table;
    border-collapse: separate;  /* セルの間隔を空ける */
    border-spacing: 2px 1px;  /* 左右 上下で記述 */
}

ul.result_list li {
    display: inline-block;
    letter-spacing: normal;
    vertical-align: top;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px #ccc;
    box-shadow: 3px 3px 2px #ccc;
    margin: 0 5px 5px;
    behavior: url(/common/js/PIE.js);
}

ul.result_list_wide li {
    width: 510px;
    display:table-cell;
    letter-spacing: normal;
    vertical-align: top;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px #ccc;
    box-shadow: 3px 3px 2px #ccc;
    margin: 0 5px 5px;
    padding:5px;
    behavior: url(/common/js/PIE.js);
}

ul.result_list li .itemArea {
    width: 240px;
    height: 470px;
    padding: 5px;
    position: relative;
}

ul.result_list li .itemArea_wide {
   /* height: 420px;*/
    padding: 5px;
}

ul.result_list li .itemArea table {
    margin: 0;
}

ul.result_list li .itemArea table td {
    position: relative;
}

ul.result_list li .itemArea table td span.colorPattern {
    margin-left: -8px;
}

ul.result_list li .itemArea table td span:first-child {
    margin-left: -3px;
}

ul.result_list li span.codeNo {
    display: block;
    font-size: 20px;
    font-weight: bold;
    text-align: right;
    margin-top: 5px;
    margin-bottom: 3px;
}

ul.result_list li .itemArea table.table th,
ul.result_list li .itemArea table.table td {
    font-size: 12px;
    padding: 3px 8px;
}

ul.result_list li .itemArea table.table th {
    color: #b3b3b3;
    font-weight: normal;
    padding-right: 0;
}

ul.result_list li .itemArea table.itemDetail {
    width: 230px;
}

ul.result_list li .itemArea table.itemDetail th {
    width: 110px;
}

ul.result_list li .itemArea table.itemDetail td {
    width: 120px;
    cursor: default;
}

.table
{
    width:100%;
    max-width:100%;
    margin-bottom:0px;
}

ul.result_list li .itemArea table.itemDetail_wide {
    width: 55px;
    background-color: #ff0000;
    border:1px solid #e6e6e6;
    margin-bottom:0px !important;
}

tr.border_bottom td {
  border-bottom:1px solid #e6e6e6;
}

ul.result_list li .itemArea table.itemDetail_wide td {
    width: 50px;
    border-color:#ccc;
    cursor: default;    
    font-size: 12px;    
}

.itemDetail_wide > tbody > tr > td , .itemDetail_wide > tbody > tr > th , .itemDetail_wide > tfoot > tr > td {
    border-bottom:1px solid #ddd;
    font-size:12px;
    padding:5px 5px 5px 5px;
}

.th_white_back {
    color:#b3b3b3; 
    border-color:#fff;
}

.th_gray_back {
    color:#fff; 
    background-color:#999;
}

.width60 
{
    width:60px;
    vertical-align:middle !important;
}

.bold
{
    font-weight:bold;
    font-size:14px;
}

ul.result_list li .itemArea table.itemDetail th {
    width: 70px;
}

.pager_area {
    width: 1024px;
    height: 60px;
    margin: 0 auto;
    position: relative;
}

.pager_area button.prev,
.pager_area button.next {
    width: 60px;
    height: 60px;
    color: #fff;
    font-size: 19px;
    font-weight: normal;
    border-radius: 80px;
    margin-top: -25px;
    position: absolute;
    top: 50%;
}

.pager_area button.prev {left: 20px;}
.pager_area button.next {right: 20px;}


.pager_area ul {
    list-style: none;
    text-align: center;
    padding-top: 20px;
}

.pager_area ul li {
    display: inline-block;
    min-width: 30px;
    height: 30px;
    color: #333;
    font-size: 12px;
    line-height: 30px;
    margin: 0 3px;
}

.pager_area ul li a {
    display: block;
    color: #333;
    background: #e6e6e6;
    text-decoration: none;
}

.pager_area ul li a:hover {
    background: #ccc;
}

.pager_area ul li a:active {
    color: #fff;
    background: #595757;
}

.pager_area ul li.active a {
    color: #fff;
    background: #595757;
}

.keyword_list {
    background: #fff;
}

.keyword_list .inner {
    width: 1024px;
    padding: 7px 20px;
    margin: 0 auto;
    position: relative;
}

.keyword_list .result_count {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    line-height: 36px;
    background-image: url(../../common/img/backimg.png);
    padding: 0 10px;
    margin-right: 15px;
}

.keyword_list .result_count span {
    font-size: 20px;
}

.keyword_list .display_count {
    font-size: 14px;
    font-weight: normal;
    margin-top: 8px;
    right: 160px;
    position: absolute;
}

.keyword_list .display_count span {
    font-size: 18px;
    font-weight: bold;
}

.keyword_list .keyword_tag {
    margin-right: 25px;
}

.keyword_list .keyword_tag span.glyphicon {
    cursor: pointer;
    color: #999;
    margin-right: 5px;
}

.keyword_list button.search_accordion_button {
    width: 134px;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -17px;
}

.white_line {
    background: #fff;
    border-top: 1px dashed #ccc;
}

.white_line .select_list {
    width: 1024px;
    text-align: center;
    letter-spacing: -0.4em;
    padding: 8px 0;
    margin: 0 auto;
}

.white_line .select_list .form-group {
    display: inline-block;
    height: 102px;
    text-align: center;
    vertical-align: middle;
    letter-spacing: normal;
    border-right: 1px solid #808080;
    margin: 2px 0;
}

.white_line .select_list .form-group:nth-child(1) {
    width: 30%;
    position:relative
}

.white_line .select_list .form-group:nth-child(2) {
    width: 40%;
}

.white_line .select_list .form-group:nth-child(3) {
    width: 30%;
}

.white_line .select_list .form-group .centering {
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin: auto;
    height: 30px;
    width: 100%;
}

.white_line .select_list .form-group .sort-condition {
    margin: 2px 0;
}

.white_line .select_list .form-group:first-child {
    border-left: 1px solid #808080;
}

.white_line .select_list label {
    display: inline-block;
    font-size: 14px;
    font-weight: normal;
}

.count_selecter {
    position: absolute;
    right: 160px;
    top: 50%;
    margin-top: -15px;
}

.count_selecter .displaycount {
    display: inline-block;
    font-weight: bold;
    font-size: 18px;
    width: auto;
    height: 30px;
    display: inline-block;
    border: none;
    background: none;
    margin: 0;
}

/*----- 商品画像 -----*/
.result_list_image {
    width: 180px;
    height: 180px;
}

.result_list_image-w {
    width: 230px;
    height: auto;
}

.result_list_image-h {
    width: auto;
    height: 230px;
}


/* ==================================================
    1.4 商品詳細・注文入力
================================================== */

.product_detail_area {
    width: 1024px;
    min-height: 265px;
    background: #fff;
    box-shadow: 3px 3px 3px 0 rgba(0,0,0,0.3);
    padding: 5px;
    margin: 20px auto;
    position: relative;
    behavior: url(/common/js/PIE.js);
}

.product_detail_area .bxslider {
    display: inline-block;
    width: 460px;
    position: relative;
    vertical-align: top;
}

.product_detail_area .bx-wrapper {
    box-shadow: none;
    border: none;
    margin: 0;
}

.product_detail_area .bg_img {
    width: 255px;
}

.product_detail_area .bx-pager {
    width: 200px;
    letter-spacing: -0.4em;
    position: absolute;
    top: 0;
    left: 265px;
}

.product_detail_area .bx-controls {
    display: none;
}

.product_detail_area .bx-pager a {
    display: inline-block;
    margin: 0 5px 5px 0;
}

.product_detail_area .bxslider .bx-pager a div {
    border: 2px solid #e6e6e6;
}

.product_detail_area .bxslider .bx-pager a.active div {
    border: 2px solid #ed1e79;
}

.product_detail_area .slider_right_table {
    width: 540px;
    display: inline-block;
    vertical-align: top;
}

.product_detail_area .slider_right_table h2 {
    font-size: 12px;
    font-weight: normal;
    line-height: 35px;
}

.product_detail_area .slider_right_table span.codeNo {
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    vertical-align: middle;
    margin-right: 20px;
}

.product_detail_area .slider_right_table table.table th,
.product_detail_area .slider_right_table table.table td {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.3;
    padding: 2px 6px;
}

.product_detail_area .slider_right_table table.table th {
    width: 100px;
    color: #b3b3b3;
    white-space: nowrap;
}

.product_detail_area .slider_right_table table.table td {
}

.product_detail_image {
    width: 255px;
    height: 255px;
}

.product_wide {
    width: 180px;
    height: 180px;
}

.order_input {
    width: 1024px;
    background: #fff;
    box-shadow: 3px 3px 3px 0 rgba(0,0,0,0.3);
    padding: 0;
    margin: 20px auto;
    position: relative;
    behavior: url(/common/js/PIE.js);
}

.order_input .table-wrap {
    width: 1024px;
    overflow-x: auto;
}

.order_input table {
    width: 100%;
    table-layout : fixed;
    border: 1px solid #e6e6e6;
}

.order_input table span{
    display: block;
}

.order_input table.part02 th,
.order_input table.part02 td {
    height: 40px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #afafaf;
    padding: 2px 0;
}

.order_input table.part02 th.pointer,
.order_input table.part02 td.pointer {
    cursor: pointer;
}

.order_input table.part02 th.table-row-header {
    width: 183px
}

.order_input table.part02 th.table-row-body {
    width: 105px
}

.order_input table.part02 th {
    color: #fff;
    font-weight: normal;
    white-space: nowrap;
    background: #999;
}

.order_input table.part02 td {
    height: 40px;
    word-break: break-all;
    padding: 2px 0;
}

.order_input table.part02 td.panel {
    width: 105px;
}

.order_input table.part02 td.panel input[type="text"],
.order_input table.part02 td.panel input[type="tel"] {
    display: inline;
    width: 53px;
    height: 26px;
    line-height: 26px;
    text-align: right;
    padding-right: 4px;
    margin: 0;
    ime-mode: disabled;
}

.order_input table.part02 td.panel span.juchusu {
    display: inline;
    width: 53px;
    text-align: right;
    padding-right: 4px;
    margin: 0;
}
.order_input table.part02 td.panel span.zaikosu {
    display: inline-block;
    width: 40px;
    margin: 0;
}

.order_input table.part02 th span.size,
.order_input table.part02 th span.age {
    line-height: 1.2;
}

.order_input .panel input[disabled] {
    background-color: #999;
}

.order_input .changed {
    background-color:#ffff99;
}

.order_input .disabled {
    background-color:#ddd;
}

.order_input .error {
    background: #ffe3ef;
}

.order_input .selected {
    background: #c6ecf4;
}

.order_input table.part02 .gedai {
    text-align: center;
    margin: 0;
    color: blue;
}

.product_detail_foot_area {
    width: 1024px;
    margin: 20px auto;
    position: relative;
    font-size: 14px;
    height: 42px;
}

.product_detail_foot_area table.backcolor td {
    padding-left: 10px;
    padding-right: 30px;
}

.product_detail_foot_area table.backcolor td:nth-child(1) {
    width: 60px;
    background-color: #c6ecf4;
    border: 1px solid;
    border-color: Gray;
}

.product_detail_foot_area table.backcolor td:nth-child(3) {
    width: 60px;
    background-color: #ffe3ef;
    border: 1px solid;
    border-color: Gray;
}

.product_detail_foot_area table.backcolor td:nth-child(5) {
    width: 60px;
    background-color: #ddd;
    border: 1px solid;
    border-color: Gray;
}

.product_detail_foot_area table.zaiko_mark td {
    padding-right: 20px;
}

.product_detail_foot_area div {
    margin: 4px 0px;
}
.product_detail_foot_area .left {
    float: left;
}

.product_detail_foot_area .right {
    float: right;
}

.product_detail_foot_area .right span {
    font-weight: 700;
}

.product_detail_foot_area .checkbox_title {
    margin-left: 6px;
}

.product_detail_foot_area .input_title {
    margin-right: 10px;
}

.product_detail_foot_area input[type="text"] {
    display: inline;
    width: 53px;
    height: 26px;
    line-height: 26px;
    text-align: right;
    padding-right: 4px;
    margin: 0;
}

#multiinput 
{
    border-color: Black;
    background-color: White;
}

/*----- 商品画像 -----*/
.product_detail_b_image {
  width: 255px;
  height: 255px;
  display: table-cell;
  vertical-align: middle;
}

.product_detail_b_image-w {
  width: 255px;
  height: auto;
}

.product_detail_b_image-h {
  width: auto;
  height: 255px;
}

.product_detail_s_image {
  width: 55px;
  height: 55px;
  display: table-cell;
  vertical-align: middle;
}

.product_detail_s_image-w {
  width: 55px;
  height: auto;
}

.product_detail_s_image-h {
  width: auto;
  height: 55px;
}


/* ==================================================
    1.5 カート(変更・削除)
================================================== */

.cart_list_area {
    width: 1024px;
    margin: 20px auto;
}

.cart_list_area ul.cart_list {
    list-style: none;
}

.cart_list_area ul.cart_list li {
    width: 100%;
    letter-spacing: -0.4em;
    background: #fff;
    box-shadow: 3px 3px 3px 0 rgba(0,0,0,0.3);
    padding: 8px;
    padding-right: 0;
    margin-bottom: 5px;
    position: relative;
}

.cart_list_area ul.cart_list li .left_button,
.cart_list_area ul.cart_list li .item_photo,
.cart_list_area ul.cart_list li .item_spec,
.cart_list_area ul.cart_list li .item_num_orders {
    display: inline-block;
    font-size: 14px;
    line-height: 1.1;
    vertical-align: top;
    letter-spacing: normal;
    margin-left: 7px;
}

.cart_list_area ul.cart_list li .left_button {
    width: 55px;
    margin-left: 0;
}

.cart_list_area ul.cart_list li .left_button button {
    width: 55px;
    height: 55px;
    font-weight: bold;
}

.cart_list_area ul.cart_list li .left_button button:first-child {
    margin-bottom: 8px;
}

.cart_list_area ul.cart_list li .item_photo {
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
}

.cart_list_area ul.cart_list li .item_photo img {
    max-width: 120px;
    max-height: 120px;
}

.cart_list_area ul.cart_list li .item_spec {
    width: 260px;
}

.cart_list_area ul.cart_list li .item_spec table {
    width: 100%;
}

.cart_list_area ul.cart_list li .item_spec table th,
.cart_list_area ul.cart_list li .item_spec table td {
    border-top: 1px solid #e6e6e6;
    padding: 2px 4px;
}

.cart_list_area ul.cart_list li .item_spec table tr:first-child th,
.cart_list_area ul.cart_list li .item_spec table tr:first-child td {
    border-top: none;
}

.cart_list_area ul.cart_list li .item_spec table th {
    width: 90px;
    color: #b3b3b3;
    font-size: 12px;
    font-weight: normal;
}

.cart_list_area ul.cart_list li .item_spec table td {
    font-size: 14px;
}

.cart_list_area ul.cart_list li .item_num_orders {
    width: 556px;
}

.cart_list_area ul.cart_list li .item_num_orders table.color_size_tbl {
    table-layout: fixed !important;
}

.cart_list_area ul.cart_list li .item_num_orders table {
    width: 100%;
    border: 1px solid #e6e6e6;
    margin-bottom: 5px;
}

.cart_list_area ul.cart_list li .item_num_orders table th,
.cart_list_area ul.cart_list li .item_num_orders table td {
    font-weight: normal;
    text-align: center;
    border-bottom: 1px solid #e6e6e6;
}

.cart_list_area ul.cart_list li .item_num_orders table thead th {
    color: #fff;
    font-size: 12px;
    background: #999;
    padding: 5px;
}

.cart_list_area ul.cart_list li .item_num_orders table thead th:first-child {
    width: 90px;
}

.cart_list_area ul.cart_list li .item_num_orders table td {
    padding: 3px;
}

.cart_list_area ul.cart_list li .item_num_orders table thead th span {
    display: block;
    min-height: 18px;
}

.cart_list_area .total_price, .cart_list_area .no_item {
    width: 530px;
    color: #595757;
    font-size: 18px;
    font-weight: bold;
    border: 1px solid #b3b3b3;
    background: #fff;
    padding: 18px;
    margin: 20px auto;
}

.cart_list_area .total_price span, .cart_list_area .no_item span {
    display: inline-block;
    margin-left: 25px;
}

.cart_list_area .total_price span:first-child, .cart_list_area .no_item span:first-child {
    margin-left: 0;
}

.cart_list_area td.error {
    background: #ffe3ef;
}

.cart_list_area .total_price table {
    width: 380px;
    margin: 0 auto;
}

.cart_list_area .total_price table th,
.cart_list_area .total_price table td {
    height: 35px;
    font-size: 18px;
}

.cart_list_area .total_price table td {
    text-align: right;
}

.cart_list_area .total_price table td select {
    font-size: 18px;
    width: 210px;
    margin-left: auto;
}

.cart_list_area .total_price .attention_text {
    font-size: 12px;
    font-weight: normal;
    border-top: 1px solid #e6e6e6;
    padding-top: 15px;
    margin-top: 10px;
}

.cart_list_area .total_price .attention_text ul {
    margin-left: 20px;
}

/* ==================================================
    1.6 注文確認
================================================== */

.order_confirm_area {
}

.order_confirm_area .order_confirm_header {
    color: #fff;
    text-align: center;
    background: #595757;
    padding: 17px 0;
}

.order_confirm_area .order_confirm_header .order_confirm_header_layout {
    width: 1024px;
    margin: 0 auto;
}

.order_confirm_area .order_confirm_header h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.order_confirm_area .order_confirm_header p {
    font-size: 14px;
    font-weight: normal;
    margin: 0;
    width: 75%;
    margin: 0 auto;
    text-align: left;
}

.order_confirm_area .order_confirm {
    width: 1024px;
    background: #fff;
    margin: 20px auto;
}

.order_confirm_area .order_confirm table {
    width: 100%;
    border: 1px solid #e6e6e6;
    line-height: 1.1;
    table-layout: fixed;
}

.order_confirm_area .order_confirm table th,
.order_confirm_area .order_confirm table td {
    border: 1px solid #e6e6e6;
    padding: 5px;
    vertical-align: top;
}

.order_confirm_area .order_confirm table th {
    color: #fff;
    font-size: 12px;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    background: #999;
    padding: 10px;
}

.order_confirm_area .order_confirm table td {
    font-size: 14px;
}

.order_confirm_area .order_confirm table span {
    display: block;
    min-height: 18px;
}

.order_confirm_area .order_confirm table tr.order_confirm_items th {
    vertical-align: middle;
}

.order_confirm_area .order_confirm table tr.order_confirm_items th.price {
    width: 80px;
    white-space: normal;
}

.order_confirm_area .order_confirm table td.right {
    text-align: right;
    font-size: 14px;
}

.order_confirm_area .order_confirm table table.color_size_tbl {
    table-layout: fixed !important;
}

.order_confirm_area .order_confirm table table.color_size_tbl thead th:first-child,
.order_confirm_area .order_confirm table table.color_size_tbl tbody td:first-child 
{
    border-right: 1px solid #e6e6e6;
}

.order_confirm_area .order_confirm table table.color_size_tbl thead th 
{
    color: #0098da;
    font-size: 12px;
    background: none;
    padding: 5px 0px 0px 0px;
    white-space: normal;
}

.order_confirm_area .order_confirm table table,
.order_confirm_area .order_confirm table table th,
.order_confirm_area .order_confirm table table td {
    border: none;
}

.order_confirm_area .order_confirm table table td {
    width: 50px;
    text-align: center;
    vertical-align: middle;
}

.order_confirm_area .total_price {
    width: 530px;
    color: #595757;
    font-size: 18px;
    font-weight: bold;
    border: 1px solid #b3b3b3;
    background: #fff;
    padding: 18px;
    margin: 20px auto;
}

.order_confirm_area .total_price table {
    width: 380px;
    margin: 0 auto;
}

.order_confirm_area .total_price table th,
.order_confirm_area .total_price table td {
    height: 35px;
    font-size: 18px;
}

.order_confirm_area .total_price table td {
    text-align: right;
}

.order_confirm_area .total_price table td select {
    font-size: 18px;
    width: 210px;
    margin-left: auto;
}

.order_confirm_area .total_price .attention_text {
    font-size: 12px;
    font-weight: normal;
    border-top: 1px solid #e6e6e6;
    padding-top: 15px;
    margin-top: 10px;
}

.order_confirm_area .total_price .attention_text ul {
    margin-left: 20px;
}

.order_confirm_area .order_confirm table table td.error {
    background: #ffe3ef;
}


/* ==================================================
    1.9 POPダウンロード
================================================== */

.pop_download_area {
    width: 990px;
    letter-spacing: -0.4em;
    white-space: nowrap;
    margin: 20px auto;
}

.pop_download_area .left_navi,
.pop_download_area .right_contents {
    display: inline-block;
    letter-spacing: normal;
    vertical-align: top;
}

.pop_download_area .left_navi {
    width: 230px;
    height: 840px;
    background: #fff;
    margin-right: 20px;
}

.pop_download_area .left_navi h2 {
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    line-height: 40px;
    background: #999;
    padding: 0 10px;
}

.pop_download_area .left_navi .inner {
    padding: 5px 8px 12px;
}

.pop_download_area .left_navi .inner .box_srcollbar {
    overflow:auto;
    width:220px;
    height:800px;
}

.pop_download_area .left_navi ul {
    color: #333;
    font-size: 12px;
    list-style: none;
}

.pop_download_area .left_navi ul li {
    margin-top: 10px;
}

.pop_download_area .left_navi ul li h5 {
    cursor: pointer;
    display: block;
    font-size: 12px;
    padding: 9px 8px;
    position: relative;
}

.pop_download_area .left_navi ul li ul {
    display: none;
}

.pop_download_area .left_navi ul li h5.active {
    background: #DEDEDE;
}

.pop_download_area .left_navi ul li .child:before {
    content: "├";
}


.pop_download_area .left_navi ul li:first-child h5:before  {
    content: "";
}

.pop_download_area .left_navi ul li:first-child h5:before  {
    content: "";
}

.pop_download_area .left_navi ul li:nth-child(n+2) .child:before {
    content: "├";
}

.pop_download_area .left_navi ul li:last-child .child:before {
    content: "└";
}

.pop_download_area .left_navi ul li ul li:first-child .child:before  {
    content: "├";
    margin-left: 0;
}

.pop_download_area .left_navi ul li ul li h5  {
    margin-left: 10px;
}

.pop_download_area .left_navi ul li h5 span.glyphicon {
    display: none;
    color: #999;
    font-size: 14px;
    line-height: 31px;
    background: none;
    border: none;
    position: absolute;
    top: 0;
    right: 8px;
}

.pop_download_area .left_navi ul li h5.active span.glyphicon {
    display: block;
}

.pop_download_area .right_contents {
    width: 740px;
}

.pop_download_area .right_contents .white_header {
    width: 100%;
    background: #fff;
    padding: 15px;
    margin-bottom: 15px;
}

.pop_download_area .right_contents .white_header input[type="checkbox"] {
    display: none;
}

.pop_download_area .right_contents .white_header input[type="checkbox"] + label {
    display: block;
    width: 15px;
    height: 21px;
    font-size: 14px;
    font-weight: bold;
    background-image: url(../../common/img/bg_checkbox_off.png);
    background-size: 15px 15px;
    background-position: center center;
    background-repeat: no-repeat;
    padding-left: 35px;
    margin: 0;
}

.pop_download_area .right_contents .white_header input[type="checkbox"]:checked + label {
    background-image: url(../../common/img/bg_checkbox_on.png);
}

.pop_download_area .right_contents .contents_list ul {
    letter-spacing: -0.4em;
    white-space: normal;
    margin-right: -15px;
}

.pop_download_area .right_contents .contents_list ul li {
    display: inline-block;
    letter-spacing: normal;
    vertical-align: top;
    margin: 0 10px 5px 0;
    position: relative;
}

.pop_download_area .right_contents .contents_list ul li .contents_select {
    width: 240px;
    height: 270px;
    background: #fff;
    box-shadow: 3px 3px 3px 0 rgba(0,0,0,0.3);
    padding: 5px 5px 0;
    position: relative;
    cursor: pointer;
    behavior: url(/common/js/PIE.js);
}

.pop_download_area .right_contents .contents_list ul li .contents_select input[type="checkbox"] {
    display: none;
}

.pop_download_area .right_contents .contents_list ul li .contents_select.active {
    background: #ED1E79;
}

.pop_download_area .right_contents .contents_list ul li .contents_select .badge_new {
    display: none;
    width: 0;
    height: 0;
    line-height: 0;
    border-top: 28px solid #ED1E79;
    border-right: 28px solid transparent;
    border-bottom: 28px solid transparent;
    border-left: 28px solid  #ED1E79;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9999;
}

.pop_download_area .right_contents .contents_list ul li .contents_select.new .badge_new {
    display: block;
}

.pop_download_area .right_contents .contents_list ul li .contents_select .badge_new span {
    display: block;
    color: #fff;
    font-size: 9px;
    font-weight: bold;
    line-height: 0;
    letter-spacing: -0.3px;
    margin-top: -10px;
    margin-left: -23px;
}

.pop_download_area .right_contents .contents_list ul li .contents_select .dummy_checkbox {
    display: inline-block;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    background-image: url(../../common/img/bg_checkbox_off.png);
    background-position: center center;
    background-size: 15px 15px;
    background-repeat: no-repeat;
}

.pop_download_area .right_contents .contents_list ul li .contents_select.active .dummy_checkbox {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url(../../common/img/bg_checkbox_on.png);
    background-position: center center;
    background-size: 15px 15px;
    background-repeat: no-repeat;
}

.pop_download_area .right_contents .contents_list ul li .contents_select h3 {
    display: inline-block;
    font-size: 12px;
    font-weight: normal;
    margin-top: 10px;
}

.pop_download_area .right_contents .contents_list ul li .contents_select.active h3 {
    color: #fff;
}

.pop_download_area .right_contents .contents_list ul li .contents_date {
    color: #999;
    font-size: 12px;
    text-align: right;
}

.pop_download_area .right_contents .contents_list ul li button.download {
    font-size: 12px;
    font-weight: normal;
    line-height: 23px;
    padding: 0 5px 0 6px;
    border-radius: 0;
    text-align: center;
    position: absolute;
    right: 5px;
    top: 240px;
    z-index: 9999;
}

.pop_download_area .contents_table {
    width: 100%;
    background: #fff;
}


.pop_download_area .contents_table table {
    width: 100%;
    border: 1px solid #e6e6e6;
}

.pop_download_area .contents_table table th,
.pop_download_area .contents_table table td {
    border: 1px solid #e6e6e6;
    vertical-align: middle;
    line-height: 1;
    padding: 5px;
}

.pop_download_area .contents_table table th {
    color: #fff;
    font-size: 12px;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    background: #999;
    padding: 10px;
}

.pop_download_area .contents_table table td {
    height: 100px;
    font-size: 14px;
    padding: 10px;
    position: relative;
}

.pop_download_area .contents_table table input[type="checkbox"] {
    display: none;
}

.pop_download_area .contents_table table input[type="checkbox"] + label {
    display: block;
    width: 15px;
    height: 15px;
    background-image: url(../../common/img/bg_checkbox_off.png);
    background-size: 15px 15px;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 0 auto;
}

.pop_download_area .contents_table table input[type="checkbox"]:checked + label {
    background-image: url(../../common/img/bg_checkbox_on.png);
}

.pop_download_area .contents_table table td.thumb_area {
    border-right: none;
    text-align: center;
}

.pop_download_area .contents_table table td.thumb_area img {
    max-width: 80px;
    max-height: 80px;
}

.pop_download_area .contents_table table td.pop_area {
    width: 300px;
    border-left: none;
    white-space: normal;
    word-break: break-all;
}

.pop_download_area .contents_table table td.pop_area .pop_title {
    font-size: 14px;
}

.pop_download_area .contents_table table td .badge_new {
    display: none;
    float: right;
}

.pop_download_area .contents_table table td .badge_new span {
    display: block;
    width: 36px;
    height: 36px;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 36px;
    background: #ED1E79;
    border-radius: 80px;
}

.pop_download_area .contents_table table tr.new td .badge_new {
    display: block;
}

.pop_download_area .contents_table table td button.download {
    height: 48px;
    color: #ED1E79;
    font-size: 14px;
    font-weight: normal;
    text-align: left;
    border: none;
    background: none;
    padding: 2px 6px 0 35px;
    position: relative;
}

.pop_download_area .contents_table table td button.download span.glyphicon {
    display: inline-block;
    font-size: 20px;
    font-weight: normal;
    position: absolute;
    top: 14px;
    left: 10px;
}

.pop_download_area .opener 
{
    border-style: solid;
    border-color:Black;
    border-width:1px;
    display:inline-block;
    width:14px;
    height:14px;
    text-align:center;
    text-decoration:none;
}


/* ==================================================
    1.10.1 注文履歴(CSVダウンロード)
================================================== */

.calendar_search {
    background: #fff;
}

.calendar_search .inner {
    width: 1024px;
    padding: 8px 20px;
    margin: 0 auto;
    position: relative;
}

.calendar_search .inner h3 {
    display: inline-block;
    color: #595757;
    font-size: 14px;
    font-weight: bold;
    margin-right: 10px;
}

.calendar_search .inner input[type="text"] {
    display: inline-block;
    width: 126px;
    margin: 0;
}

.calendar_search .inner button.search_button {
    width: 94px;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -17px;
}

.order_history_area .order_history {
    width: 1024px;
    background: #fff;
    margin: 20px auto 10px;
}

.order_history_area .order_history table {
    width: 100%;
    border: 1px solid #e6e6e6;
}

.order_history_area .order_history table th,
.order_history_area .order_history table td {
    border: 1px solid #e6e6e6;
    vertical-align: middle;
    line-height: 1;
    padding: 5px;
}

.order_history_area .order_history table th {
    color: #fff;
    font-size: 12px;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    background: #999;
    padding: 10px;
}

.order_history_area .order_history table td {
    font-size: 14px;
    padding: 10px 8px;
}

.order_history_area #ui-datepicker-div {
    box-shadow: 3px 3px 3px 0 rgba(0,0,0,0.3);
}

.order_history_area .inner .btn_area button 
{
   font-size: 12px;
}

.order_history_area .order_history table .col_order_amount {
    text-align: right;
}

.order_history_area .order_history table .col_shortage_situation {
    text-align: center;
}

.order_cancel 
{
    text-decoration: line-through;
}

/* ==================================================
    1.10.2 注文履歴詳細
================================================== */

.order_history_detail_area {
    width: 1024px;
    margin: 20px auto;
}

.order_history_detail_area .order_history {
    background: #fff;
}

.order_history_detail_area .order_history table {
    width: 100%;
    border: 1px solid #e6e6e6;
}

.order_history_detail_area .order_history table th,
.order_history_detail_area .order_history table td {
    border: 1px solid #e6e6e6;
    vertical-align: middle;
    line-height: 1;
    padding: 5px;
}

.order_history_detail_area .order_history table th {
    color: #fff;
    font-size: 12px;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    background: #999;
    padding: 13px 10px;
}

.order_history_detail_area .order_history table td {
    font-size: 14px;
    padding: 15px 8px;
}

.order_history_detail_area ul.order_history_detail {
    list-style: none;
}

.white_line {
    background: #fff;
}

.white_line .inner {
    width: 1024px;
    height: 51px;
    padding: 8px 20px;
    margin: 0 auto;
    position: relative;
}

.white_line .inner button.back_button {
    width: 94px;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -17px;
}

.order_history_detail_area ul.order_history_detail li {
    width: 100%;
    background: #fff;
    box-shadow: 3px 3px 3px 0 rgba(0,0,0,0.3);
    padding: 8px;
    padding-right: 0;
    margin-bottom: 5px;
    position: relative;
    letter-spacing: -0.4em;
}

.order_history_detail_area ul.order_history_detail li .item_photo,
.order_history_detail_area ul.order_history_detail li .item_spec,
.order_history_detail_area ul.order_history_detail li .item_num_orders {
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: 1.1;
    letter-spacing: normal;
    margin-left: 7px;
}

.order_history_detail_area ul.order_history_detail li .item_photo {
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    margin-left: 0;
}

.order_history_detail_area ul.order_history_detail li .item_photo img {
    max-width: 120px;
    max-height: 120px;
}

.order_history_detail_area ul.order_history_detail li .item_spec {
    width: 320px;
}

.order_history_detail_area ul.order_history_detail li .item_spec table {
    width: 100%;
}

.order_history_detail_area ul.order_history_detail li .item_spec table th,
.order_history_detail_area ul.order_history_detail li .item_spec table td {
    border-top: 1px solid #e6e6e6;
    padding: 2px 4px;
}

.order_history_detail_area ul.order_history_detail li .item_spec table tr:first-child th,
.order_history_detail_area ul.order_history_detail li .item_spec table tr:first-child td {
    border-top: none;
}

.order_history_detail_area ul.order_history_detail li .item_spec table th {
    width: 90px;
    color: #b3b3b3;
    font-size: 12px;
    font-weight: normal;
}

.order_history_detail_area ul.order_history_detail li .item_spec table td {
    font-size: 14px;
}

.order_history_detail_area ul.order_history_detail li .item_num_orders {
    width: 556px;
}

.order_history_detail_area ul.order_history_detail li .item_num_orders table.color_size_tbl {
    table-layout: fixed!important;
}

.order_history_detail_area ul.order_history_detail li .item_num_orders table {
    width: 100%;
    border: 1px solid #e6e6e6;
    margin-bottom: 5px;
}

.order_history_detail_area ul.order_history_detail li .item_num_orders table th,
.order_history_detail_area ul.order_history_detail li .item_num_orders table td {
    font-weight: normal;
    text-align: center;
    border-bottom: 1px solid #e6e6e6;
}

.order_history_detail_area ul.order_history_detail li .item_num_orders table thead th {
    color: #fff;
    font-size: 12px;
    background: #999;
    padding: 5px;
}

.order_history_detail_area ul.order_history_detail li .item_num_orders table thead th:first-child {
    width: 90px;
}

.order_history_detail_area ul.order_history_detail li .item_num_orders table td {
    padding: 3px;
}

.order_history_detail_area ul.order_history_detail li .item_num_orders table thead th span {
    display: block;
    min-height: 18px;
}

.order_history_detail_area ul.order_history_detail li .item_num_orders .sku_qua {
    border-style:none;
    margin-bottom:0px
}

.order_history_detail_area ul.order_history_detail li .item_num_orders .sku_qua td {
    border-style:none;
}

.multiple-select-box {
    background: #f2f2f2 none repeat scroll 0 0;
    border: 1px solid #ccc;
    border-radius: 0;
    height: 35px;
    line-height: 35px;
    padding: 0px;
    vertical-align: middle;
    width:350px!important;
}
.multiple-select-box .ms-choice{
    height:100%;
    background:#f2f2f2;
    border:0px;
    color:#555;
}
.multiple-select-box .ms-choice > span{
    padding-left:15px;
    padding-top:4px;
}
.multiple-select-box .ms-drop{
    background: #f2f2f2 none repeat scroll 0 0;
    color:#555;
}

.pdf_wrapper{
    position: relative;
    height: 750px;
    margin: 20px 0 20px 0;
}
.pdf_display_area{
    width:1024px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.pdf_display_area object{
    width:100%;
    height:100%;
}

div.login_user_info {
    padding: 15px 30px 0 0;
    left: 200px;
    position: absolute;
    font-weight:bold;
}

div.login_user_info .menu-customer-code {
    margin-bottom:15px;
}

div.login_user_info .login_user_name {
    margin-left: 20px;
}

div.login_user_info .login_user_name div:first-child {
    display:inline-block;
}

.differentQua {
    color: Red;
}

/* ==================================================
    1.1.1 得意先選択
================================================== */
#tsk_cd {
    margin-right: 15px;
    width: 85px;
}

#tsk_nm {
    width: 300px;
}

.tsk_search {
    background: #fff;
}

.tsk_search .inner {
    width: 800px;
    padding: 8px 20px;
    margin: 0 auto;
    position: relative;
}

.tsk_search .inner h3 {
    display: inline-block;
    color: #595757;
    font-size: 14px;
    font-weight: bold;
    margin-right: 10px;
}

.tsk_search .inner input[type="text"] {
    display: inline-block;
    width: 126px;
    margin: 0;
}

.tsk_search .inner button.search_button {
    width: 94px;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -17px;
}

.tsk_select_area {
    padding-bottom: 30px
}

.tsk_select_area .tsk_select {
    width: 640px;
    background: #fff;
    margin: 20px auto 10px;
}

.tsk_select_area .tsk_select table {
    width: 100%;
    border: 1px solid #e6e6e6;
}

.tsk_select_area .tsk_select table th,
.tsk_select_area .tsk_select table td {
    border: 1px solid #e6e6e6;
    vertical-align: middle;
    line-height: 1;
    padding: 5px;
}

.tsk_select_area .tsk_select table th {
    color: #fff;
    font-size: 12px;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    background: #999;
    padding: 10px;
}

.col_tsk_cd {
    width: 120px;
}

.tsk_select_area .tsk_select table td {
    font-size: 14px;
    padding: 10px 8px;
}

.tsk_select_area #ui-datepicker-div {
    box-shadow: 3px 3px 3px 0 rgba(0,0,0,0.3);
}

/* ==================================================
	1.12.1 全体状況表示
================================================== */

.detail_search_list .inner {
    margin: 0 auto;
    padding: 7px 20px;
    position: relative;
    width: 1024px;
}

.detail_search_list .space {
    padding: 15px 20px;
    display: inline-block;
}

.detail_search_list button.search_accordion_button {
    margin-top: -17px;
    position: absolute;
    right: 15px;
    top: 50%;
    width: 134px;
}

/* ▽---全体状況 簡易検索条件---▽ */
.order_list_calendar_search #datepicker-start,
.order_list_calendar_search #datepicker-end {
    width:160px;
}
/* △---全体状況 簡易検索条件---△ */

/* ▽---全体状況 詳細検索条件---▽ */
.order_search_form_area {
	width: 1024px;
	padding: 20px 20px 30px;
	margin: 0 auto;
}

.order_search_form_area table {
    margin: auto;
}

.order_search_form_area table th,
.order_search_form_area table td {
	color: #595757;
	vertical-align: middle!important;
	white-space: nowrap;
	border-top: none!important;
	padding: 0px 4px!important;
	font-size: 13px;
}

.order_search_form_area table th {
	font-weight: bold;
}

.order_search_form_area table td select {
	margin: 4px 0;
}

.order_search_form_area table td input[type="text"] {
	display: inline;
	margin: 4px 0;
}

.order_search_form_area table td .price {
    text-align: right;
    padding-right: 4px;
}

/* 全体状況検索条件1列目 */
.order_search_form_area table input#OrderNo,
.order_search_form_area table select#SearchOrderMethod,
.order_search_form_area table input#SearchTskCd,
.order_search_form_area table select#SearchOrderStatus,
.order_search_form_area table select#SearchAgencyOrderFlag {
    width:125px;
}
.order_search_form_area table select#SearchOrderStatus {
    width:125px;
}
.order_search_form_area table input#SearchComment {
    width:400px;
}

/* 全体状況検索条件2列目 */
.order_search_form_area table select#SearchBillingMethod,
.order_search_form_area table select#SearchOutOfStock ,
.order_search_form_area table input#SearchLoginUser {
    width:150px;
}
.order_search_form_area table input#SearchStoreNm {
    width:300px;
}

/* 全体状況検索条件3列目 */
.order_search_form_area table input#SearchOrderDtStart,
.order_search_form_area table input#SearchOrderDtEnd,
.order_search_form_area table input#SearchDeliveryDateStart,
.order_search_form_area table input#SearchDeliveryDateEnd,
.order_search_form_area table input#SearchTotalWholesaleMin,
.order_search_form_area table input#SearchTotalWholesaleMax {
    width:140px;
}
.order_search_form_area table input#SearchLoginUserNm {
    width:290px;
}
/* △---全体状況 詳細検索条件---△ */

.order_history.order_list {
    margin-bottom: 20px;
    overflow-x: auto;
}

.order_history.order_list table {
    margin-bottom: 0px;
}

.order_history.order_list table .icon_column {
    text-align: center;
    width: 32px;
}

.order_history.order_list td {
    white-space: nowrap;
}


.order_list_calendar_search .inner {
    width: 1024px;
    padding: 8px 20px;
    margin: 0 auto;
    position: relative;
}

.order_list_calendar_search .inner h3 {
    display: inline-block;
    color: #595757;
    font-size: 14px;
    font-weight: bold;
    margin-right: 10px;
}

.order_list_calendar_search .inner input[type="text"] {
    display: inline-block;
    width: 126px;
    margin: 0;
}

.order_list_calendar_search .inner button.search_button {
    width: 94px;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -17px;
}

td.order_list_search_detail {
    text-align: center;
}

td.order_list_search_detail button.search_button {
    width: 94px;
    margin: 10px 5px 0;
}

td.order_list_search_detail button.reset_button {
    width: 94px;
    margin: 10px 5px 0;
}

/* モーダルウィンドウ(得意先検索) */
#dialogSelectCustomer {
    background-image: url("../../common/img/backimg.png");
    display: none;
}

#dialogSelectCustomer .tsk_select tr td.customer-code {
    color : #337ab7;
    cursor: pointer;
}

#dialogSelectCustomer .plainmodal-close {
    float       : right;
    margin-right: 10px;
    margin-top  :  8px;
    width       : 94px;
}

.order_history_detail_area .order_history.order_list th {
    width:150px;
}

/* ==================================================
	1.13.1 ログインユーザーマスタ
================================================== */
/* モーダルウィンドウ(ログインユーザー登録) */
.dialog-login-user {
    background-image: url("../../common/img/backimg.png");
    height: 90%;
    display: none;
}

.dialog-login-user .tsk_select_area {
    height:100%;
    width:1024px;
    position:relative;
}

.dialog-login-user .plainmodal-close {
    float       : right;
    margin-right: 10px;
    margin-top  :  8px;
    width       : 94px;
}

.dialog-login-user .tsk_select_area .user-info {
    top   : 0px;
    bottom: 0px;
}

.dialog-login-user .tsk_select_area .user-info div {
    margin: auto;
    width : 700px;
}

.dialog-login-user .tsk_select_area .user-info h3 {
    font-size: 14px;
    display  : inline-block;
}

.dialog-login-user .tsk_select_area .user-info input[type="text"] {
    display: inline-block;
}

.dialog-login-user .tsk_select_area .tsk_select {
    overflow: auto;
    position: absolute;
    margin  : 0px auto;
    width   : 800px;
    left    :   0px;
    right   :   0px;
    top     : 110px;
    bottom  : 100px;
}

.dialog-login-user .tsk_select_area table {
    margin-bottom: 0px;
}

.dialog-login-user .tsk_select_area table td.add-checkbox {
    text-align: center;
}

.dialog-login-user .tsk_select_area table td.add-checkbox input[type="checkbox"] {
    display:none;
}

.dialog-login-user .tsk_select_area table td.add-checkbox input[type="checkbox"] + label {
    background-image: url("../../common/img/bg_checkbox_off.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 15px 15px;
    display: block;
    height: 15px;
    margin: 0 auto;
    width: 15px;
}

.dialog-login-user .tsk_select_area table td.add-checkbox input[type="checkbox"]:checked + label {
	background-image: url(../../common/img/bg_checkbox_on.png);
}

.dialog-login-user .tsk_select_area table td.add-checkbox input[type="checkbox"] + input + label {
    background-image: url("../../common/img/bg_checkbox_off.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 15px 15px;
    display: block;
    height: 15px;
    margin: 0 auto;
    width: 15px;
}

.dialog-login-user .tsk_select_area table td.add-checkbox input[type="checkbox"]:checked + input + label {
	background-image: url(../../common/img/bg_checkbox_on.png);
}

.dialog-login-user .tsk_select_area .user-register {
    position: absolute;
    left  : 0px;
    right : 0px;
    bottom: 20px;
}

.dialog-login-user .tsk_select_area .user-register div {
    margin    : auto;
    width     :600px;
    text-align:center;
}

.dialog-login-user .tsk_select_area .user-register button {
    width: 100px;
}

/* ==================================================
	1.14.1 管理
================================================== */

.management_area .management {
    background: #fff none repeat scroll 0 0;
    margin: 20px auto 10px;
    width: 640px;
}

.management_area .management div.management_row {
    padding: 10px;
}

.management_area .management div.management_row div {
    display: inline-block;
}

.management_area .management span.password_change {
    background-color: #ed1e79;
    background-image: url(../../common/img/icons/h_btn_icon_password.png);
    display: inline-block;
    padding: 16px;
    vertical-align: middle;
}

.management_area .management div div span.order_list {
    background-color: #ed1e79;
    background-image: url(../../common/img/icons/h_btn_icon_order_list.png);
    display: inline-block;
    padding: 16px;
    vertical-align: middle;
}

.management_area .management div div span.user_management {
    background-color: #ed1e79;
    background-image: url(../../common/img/icons/h_btn_icon_user.png);
    display: inline-block;
    padding: 16px;
    vertical-align: middle;
}

.management_area .management div div a {
    color: #337ab7;
    display: inline-block;
    padding: 0 10px;
}

/* ==================================================
    モーダル表示
================================================== */

.modal {
    display: none;
    z-index: 10000!important;
}

.modalBody {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.modalBK {
    height: 100%;
    width: 100%;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.9;
    filter: alpha(opacity=90);
    -moz-opacity:0.90;
}

.modalContainer {
    height: 100%;
    position: relative;
}

/* ==================================================
    モーダル時用のボタン
================================================== */

button.modalWindowBottom {
    width: 50%;
    color: #0098da;
    font-weight: bold;
    background: none;
    border: 1px solid #e6e6e6;
    border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
}

button.modalWindowBottom.left {
    border-radius: 0 0 0 10px;
    -webkit-border-radius: 0 0 0 10px;
    -moz-border-radius: 0 0 0 10px;
    left: 0;
}

button.modalWindowBottom.right {
    border-radius: 0 0 10px 0;
    -webkit-border-radius: 0 0 10px 0;
    -moz-border-radius: 0 0 10px 0;
    right: 0;
}

button.modalWindowBottom.center {
    width: 100%;
    border-radius: 0 0 30px 30px;
    -webkit-border-radius: 0 0 30px 30px;
    -moz-border-radius: 0 0 30px 30px;
    right: 0;
}



/* ==================================================
    ダイアログ
================================================== */
/*-- エラーダイアログ --*/
.errormodal {
    width: 800px;
    background: #fff;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    padding: 0 0 60px;
    position: relative;
    font-size: 24px!important;
    top: 50%;
    left:50%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
}

.errormodal h3 {
    height: 32px;
    color: #fff;
    font-size: 24px!important;;
    text-align: center;
    background: #ff3366;
    border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    padding: 10px 0 0;
    font-weight: bold;
    box-sizing: content-box;
}

.errormodal .attention_mark {
    width: 260px;
    height: 240px;
    background: url(../img/attention_mark.png) center center no-repeat;
    margin: 0 auto 40px;
}

.errormodal #ModalErrMsg {
    padding-top: 20px;
}

.errormodal span {
    display: block;
    color: #ff3366;
    font-weight: bold;
    text-align:center;
    padding: 0 20px;
}

/*-- 確認ダイアログ --*/
.confirmmodal {
    width: 560px;
    background: #fff;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    padding: 0 0 60px;
    position: relative;
    font-size: 24px!important;
    top: 50%;
    left:50%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
}

.confirmmodal h3 {
    height: 32px;
    font-size: 24px!important;
    text-align: center;
    background: #f2f2f2;
    border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    padding: 10px 0 0;
    font-weight: bold;
    box-sizing: content-box;
}

.confirmmodal .confirm_mark {
    width: 260px;
    height: 240px;
    background: url(../img/question_mark.png) center center no-repeat;
    margin: 0 auto 40px;
}

.confirmmodal #ModalConfirmMsg {
    padding-top: 20px;
}

.confirmmodal span {
    display: block;
    font-weight: bold;
    text-align:center;
}


/*-- インフォメーションダイアログ --*/
.infomationmodal {
    width: 560px;
    background: #fff;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    padding: 0 0 60px;
    position: relative;
    font-size: 24px!important;
    top: 50%;
    left:50%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
}

.infomationmodal h3 {
    height: 32px;
    font-size: 24px!important;
    text-align: center;
    background: #f2f2f2;
    border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    padding: 10px 0 0;
    font-weight: bold;
    box-sizing: content-box;
}

.infomationmodal .infomationmodal_mark {
    width: 260px;
    height: 240px;
    background: url(../img/information_mark.png) center center no-repeat;
    margin: 0 auto 40px;
}

.infomationmodal #ModalInfomationMsg {
    padding-top: 20px;
}

.infomationmodal span {
    display: block;
    font-weight: bold;
    text-align:center;
}

.inner_overflow 
{
    vertical-align:middle;
    width:450px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
}

/* ==================================================
    UI-BLOCK
================================================== */
.blockUI.blockOverlay {
    z-index: 10000!important;
}

.blockUI.blockMsg.blockPage {
    z-index: 10001!important;
}


/* ==================================================
	受注入力部のタブ設定
================================================== */
.selected-tab {
    float: left;
    list-style: outside none none;
    width: 20%;
}

.selected-tab span {
    padding: 10px 10px 0px 0px;
    display: block;
    cursor: pointer;
    text-align: center;
    border-style: solid;
    border-width: 1px; 
    border-radius: 10px 10px 0px 0px;
    background: rgb(153, 153, 153) none repeat scroll 0px 0px;
    border-color: rgb(155, 153, 152) rgb(155, 153, 152) #999;
    color: rgb(255, 255, 255);
}

.not-selected-tab {
    float:left;
    list-style: outside none none;
    width: 20%;
}

.not-selected-tab span {
    padding: 10px 10px 0px 0px;
    display: block;
    cursor: pointer;
    text-align: center;
    border-style: solid;
    border-width: 1px;
    border-radius: 10px 10px 0px 0px;
    background: rgb(200, 200, 200) none repeat scroll 0px 0px;
    border-color: rgb(155, 155, 155) rgb(155, 155, 555) #999;
    color: rgb(255, 255, 255);
}

.multi-input-area {
    font-size: 14px;
    display: none;
    margin: 1px 0 0 10px;
}

.multi-input-area input {
    width: 80px;
    height: 24px;
    line-height: 24px;
    margin: 0;
    text-align: right;
    ime-mode: disabled;
}

/* ==================================================
	受注入力部のスクロール設定
================================================== */
.vertical-scroll-header {
    left    : 0px;
    top     : 76px;
    position: absolute;
    width   : 185px;
    overflow: hidden;
}

.vertical-scroll-header table tr {
    height:55px;
}
.vertical-scroll-header table tr:last-child {
    height:72px;
}

.horizontal-scroll-header {
    left    : 185px;
    top     : 36px;
    position: absolute;
    overflow: hidden;
    width   : 838px;
}

.horizontal-scroll-header th {
    width: 105px;
}

.horizontal-scroll-header th:last-child {
    width: 121px;
}

.scroll-main {
    left    : 185px;
    top     : 76px;
    position: absolute;
    width   : 838px;
    overflow: scroll;
}
.scroll-main table tr {
    height:55px;
}

.new-blink-label 
{
    margin-left: 5px;
    font-weight: bold;
    color: Red;
    animation: 0.5s linear 0s alternate none infinite running blink;
}

@keyframes blink {
    0% { opacity: 0; }
    49.9% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 1; }
}
