@charset "utf-8";

html {
	font-size:100%;
}
body {
	color: #666666;
	background-color: #FFFFFF;
	margin: 0px;
	padding: 0px;
	text-align: center;
	font: 75%/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
	background: url(../img/bg_after_login.jpg) 50% 0 / cover no-repeat fixed;	/*背景画像*/
}
body.login {
	background-image: url(../img/bg_login.jpg);
	background-size: cover;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,table,tr,th,td{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
}
input,textarea,select {
	line-height:100%;
	font-size: 1em;
	font-family: "ＭＳ Ｐゴシック";
	color: #000;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666666;
	outline: none;
}
a:hover {
	color: #F97DB7;			/*カーソルオーバー時の文字色*/
	text-decoration: none;	/*カーソルオーバー時に下線を消す設定*/
}

/*
---------------------------------------------------------------------------*/
#loginname {
	font-size: 14px;			/*文字サイズ*/
	line-height: 20px;			/*行間*/
	color: #000000;				/*文字色*/
	background-color: #D3ECFA;	/*背景色*/
	text-align: right;			/*文字を右寄せ*/
	padding-right:20px;
}

#sitename {
	font-size: 20px;			/*文字サイズ*/
	color: #ffffff;				/*文字色*/
	position: absolute;
	top: 10px;		/*ヘッダーブロックに対して上から13pxの位置に配置*/
	/*right: 500px;*/	/*ヘッダーブロックに対して右から10pxの位置に配置*/
	height: 24px;
	width: 200px;
	/*2017.08*/
	left: 0;
	right: 0;
	margin:0 auto;
}

#logout {
	position: absolute;
	top: 13px;		/*ヘッダーブロックに対して上から13pxの位置に配置*/
	right: 10px;	/*ヘッダーブロックに対して右から10pxの位置に配置*/
	height: 24px;
	width: 100px;
}

#logout a {
	text-decoration: none;
	color: #666666;
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	/*width: 1100px;*/
	width: 100%;
	margin-right: auto;
	margin-left: auto;

}

/*ヘッダー（ロゴが入っているHP上部ブロック）
---------------------------------------------------------------------------*/
#header {
	height: 50px;	/*ヘッダーの高さ*/
	/*width: 1100px;*/
	width: 100%;
	position: relative;
	background-color: #7CAEF9;	/*ヘッダー背景色*/
}
/*ロゴ画像設定*/
#header #logo {
	position: absolute;
	left: 0px;	/*ヘッダーブロックに対して左から0pxの位置に配置*/
	top: 8px;	/*ヘッダーブロックに対して上から8pxの位置に配置*/
}

/*メニュー
---------------------------------------------------------------------------*/
#menu{
	padding-bottom:5px;
}
#nav{
    display:inline-block;
    width:100%;
    margin:0px auto;
    padding:0;
    background:#335599;
    position: relative;
    /* z-index: 2000; */
    border-radius:10px; /*some css3*/
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
    box-shadow:0 2px 2px rgba(0,0,0, .5);
    -moz-box-shadow:0 2px 2px rgba(0,0,0, .5);
    -webkit-box-shadow:0 2px 2px rgba(0,0,0, .5);
}
#nav li {
    margin:10px;
    float:left;
    position:relative;
    list-style:none;
}
#nav a {
    font-weight:bold;
    color:#e7e5e5;
    text-decoration:none;
    display:block;
    padding:8px 20px;

    border-radius:10px; /*some css3*/
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
    text-shadow:0 2px 2px rgba(0,0,0, .7);
}

/* selected menu element */
#nav .current a, #nav li:hover > a {
    background:#7788aa;
    color:#000;
    border-top:1px solid #f8f8f8;

    box-shadow:0 2px 2px rgba(0,0,0, .7); /*some css3*/
    -moz-box-shadow:0 2px 2px rgba(0,0,0, .7);
    -webkit-box-shadow:0 2px 2px rgba(0,0,0, .7);
    text-shadow:0 2px 2px rgba(255,255,255, 0.7);
}

/* sublevels */
#nav ul li:hover a, #nav li:hover li a {
    background:none;
    border:none;
    color:#000;
}
#nav ul li a:hover {
    background:#335599;
    color:#fff;

    border-radius:10px; /*some css3*/
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
    text-shadow:0 2px 2px rgba(0,0,0, 0.7);
}

#nav ul li:first-child > a {
    -moz-border-radius-topleft:10px; /*some css3*/
    -moz-border-radius-topright:10px;
    -webkit-border-top-left-radius:10px;
    -webkit-border-top-right-radius:10px;
}
#nav ul li:last-child > a {
    -moz-border-radius-bottomleft:10px; /*some css3*/
    -moz-border-radius-bottomright:10px;
    -webkit-border-bottom-left-radius:10px;
    -webkit-border-bottom-right-radius:10px;
}

/* drop down */
#nav li:hover > ul {
    opacity:1;
    visibility:visible;
}
#nav ul {
    opacity:0;
    visibility:hidden;
    z-index:2000;
    padding:0;
    width:175px;
    position:absolute;
    background:#aabbcc;
    border:1px solid #7788aa;

    border-radius:10px; /*some css3*/
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
    box-shadow:0 2px 2px rgba(0,0,0, .5);
    -moz-box-shadow:0 2px 2px rgba(0,0,0, .5);
    -webkit-box-shadow:0 2px 2px rgba(0,0,0, .5);

    -moz-transition:opacity .25s linear, visibility .1s linear .1s;
    -webkit-transition:opacity .25s linear, visibility .1s linear .1s;
    -o-transition:opacity .25s linear, visibility .1s linear .1s;
    transition:opacity .25s linear, visibility .1s linear .1s;
}
#nav ul li {
    float:none;
    margin:0;
}
#nav ul a {
    font-weight:normal;
    text-shadow:0 2px 2px rgba(255,255,255, 0.7);
}
#nav ul ul {
    left:160px;
    top:0px;
}
/* カレンダー
---------------------------------------------------------------------------*/
#calmenu p   {
     float:left;
     margin:0px;
     display:block;
     width:60px;
     margin-top:5px;
    }

#calmenu form .mm{
width: 60px;
}

/*日曜 */
.cal_w0{
	background-color: #ffe4e1;	/*背景色*/
}
/*土曜 */
.cal_w6{
	background-color: #e0ffff;	/*背景色*/
}

/*検索フォーム
---------------------------------------------------------------------------*/
#searchBox_shop{
/*	height: 40px;*/

}
#searchBox{
	/*height: 100px;*/
	border-top: 1px solid   #cccccc;	/*下部の線の幅、線種、色*/
	border-bottom: 1px solid   #cccccc;	/*下部の線の幅、線種、色*/
	padding-bottom: 20px;
}

/*合計金額
---------------------------------------------------------------------------*/
#priceTotal{
	margin-left:70%;

}
#priceTotal dl {
	width :250px;
	margin: 0 0 15px;
	padding: 0 10px 10px;
	border: 3px #EEEEEE solid;
}
#priceTotal dl dt {
	float: left;
	width: 7em;
	padding: 10px 0;
	font-weight: bold;
	text-indent: 1em;
	line-height: 150%;
}
#priceTotal dl dd {
	padding: 10px 0 10px 7em;
	line-height: 150%;
	border-bottom: 1px #CCCCCC solid;
}

/*コンテンツ（メインコンテンツを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	text-align:center;
	background-color: #FFFFFF;	/*背景色*/
	border: 1px solid  #cccccc;	/*下部の線の幅、線種、色*/
	/*width:1100px;*/
	width:100%;

}

/*メインコンテンツ（右側ブロック）
---------------------------------------------------------------------------*/
#main {
	/*width: 1080px;*/
	background-color: #FFFFFF;	/*背景色*/
	/*float: right;	*//*右側にフロート*/
	/*padding: 0px 10px 50px;*/
	/*2017.08*/
	width: 100%;
	padding: 0px 0px 50px;

/*	margin-right:15px;*/
}
/*h2タグ設定*/
#main h1 {
	font-size: 140%;	/*文字サイズ*/
	color: #7CAEF9;	/*文字色*/
	line-height: 60px;	/*行間*/
	border-bottom: 3px solid #F97DB7;	/*下部の線の幅、線種、色*/
	margin-bottom: 30px;
}
/*h2タグ設定*/
#main h2 {
	font-size: 120%;	/*文字サイズ*/
	color: #FFFFFF;		/*文字色*/
	background-color: #7CAEF9;	/*背景色*/
	line-height: 35px;	/*行間*/
	padding-right: 10px;
	padding-left: 10px;
	border-bottom: 3px solid #F97DB7;	/*下部の線の幅、線種、色*/
	/*2016.02*/
	font-weight:bold;
}
/*段落タグの余白設定*/
#main p {
	padding: 0.5em 10px 1em;	/*左から、上、左右、下への余白*/
}


/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
#main .new {
	overflow: auto;
	width: 95%;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom:20px;
}
#main .new dl {
	text-align:left;
	/*clear: left;*/
	border-bottom: 1px solid #cccccc;	/*日付ごとに入る下線の幅、線種、色*/
	/*overflow: hidden;*/
}
#main .new dt {
	font-weight: bold;	/*日付を太字に*/
	/*float: left;
	width: 100px;*/
}
#main .new dd {
	padding-left: 10px;
	/*float: left;
	width: 560px;*/
}
#main .new dd span.new-title{
	font-weight: bold;
	/*text-align:left;*/

}
#main .new dd img {
	vertical-align: middle;
}
*html #main .new dd img {
	margin-top:0.5em;
	vertical-align: baseline;
}

/*トップ
---------------------------------------------------------------------------*/
#topindex{
padding-top:100px;
padding-bottom:50px;
height:300px;
}

/*ログインボックス
---------------------------------------------------------------------------*/
#loginBox{
	padding-top:50px;
	/*padding-bottom:50px;
	height:300px;*/
	text-align:center;
	margin: auto;
}

/*フッター
---------------------------------------------------------------------------*/
#footer {
	text-align: center;	/*センタリング*/
	background-color: #7CAEF9;	/*背景色*/
	font-size: 10px;			/*文字サイズ*/
	color: #FFFFFF;				/*文字色*/
	clear: both;
/*
	padding-top: 30px;
	padding-bottom: 20px;
	padding-right: 10px;*/
}
/*フッター内にリンク設定した場合用*/
#footer a {
	text-decoration: none;
	color: #FFFFFF;	/*文字色*/
}
/*テーブルログイン
---------------------------------------------------------------------------*/
.ta_login {
	width :370px;
	margin: 20px auto;
}
.ta_login, .ta_login td, .ta_login th{
	border: 1px solid #999999;	/*テーブルの枠線の幅、線種、色*/
	line-height: 1.5;
}
.ta_login td {
	padding: 10px;	/*テーブル内の余白*/
	width: 33%;
	text-align: center;	/*センタリング*/
}
/*テーブル１行目に入った見出し部分*/
.ta_login th{
	background-color: #7CAEF9;	/*背景色*/
	text-align: left;
	padding: 10px;
	color: #FFFFFF;	/*文字色*/
}

/*テーブル サーチ
---------------------------------------------------------------------------*/
form.ta_search,.ta_search{
	margin-left:auto;
	margin-right:auto;
	margin-bottom:5px;
}

.ta_search, .ta_search td, .ta_search th{
	border: 1px solid #999999;	/*テーブルの枠線の幅、線種、色*/
	line-height: 1.2;
}
.ta_search td {
	padding: 5px;	/*テーブル内の余白*/
	text-align: left;
}
/*テーブル１行目に入った見出し部分*/
.ta_search th{
	background-color: #7CAEF9;	/*背景色*/
	text-align: center;
	color: #FFFFFF;	/*文字色*/
}

/*取引先価格
---------------------------------------------------------------------------*/
.ta_customer_price, .ta_customer_price td, .ta_customer_price th{
	border: 1px solid #999999;	/*テーブルの枠線の幅、線種、色*/
	line-height: 1.2;
}
.ta_customer_price td {
	padding: 0 5px;	/*テーブル内の余白*/
	text-align: center;	/*センタリング*/
}
/*テーブル１行目に入った見出し部分*/
.ta_customer_price th{
	background-color: #7CAEF9;	/*背景色*/
	text-align: left;
	padding:0  5px;
	color: #FFFFFF;	/*文字色*/
}
/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
line-height: 1.5;
	border-bottom: 1px solid #999999;	/*テーブルの枠線の幅、線種、色*/
	border-left: 1px solid #999999;	/*テーブルの枠線の幅、線種、色*/
	margin-left:auto;
	margin-right:auto;

}

.ta1 td {
	padding: 10px;	/*テーブル内の余白*/
	width: 33%;
	text-align: left;
	border-top: 1px solid #999999;	/*テーブルの枠線の幅、線種、色*/
	border-right: 1px solid #999999;	/*テーブルの枠線の幅、線種、色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th{
	background-color: #7CAEF9;	/*背景色*/
	text-align: left;
	padding: 10px;
	color: #FFFFFF;	/*文字色*/
	border: 1px solid #999999;	/*テーブルの枠線の幅、線種、色*/
	border-right: 1px solid #999999;	/*テーブルの枠線の幅、線種、色*/
}


/*カレンダーボックス
---------------------------------------------------------------------------*/
#calbox{
	overflow:hidden ;
}

.ta_cal{
	width: 200px;
	float: left;
	margin-left:100px;
	padding-left:100px;
}
.ta_cal, .ta_cal td, .ta_cal th{
		border: 1px solid #999999;	/*テーブルの枠線の幅、線種、色*/
	line-height: 1.5;
}
.ta_cal td {
	padding: 10px;	/*テーブル内の余白*/
	text-align: center;	/*センタリング*/
}
/*テーブル１行目に入った見出し部分*/
.ta_cal th{
	background-color: #7CAEF9;	/*背景色*/
	color: #FFFFFF;	/*文字色*/
}

.nodelivery{
		background-color: #cccccc;	/*背景色*/
}

/*テーブル２
---------------------------------------------------------------------------*/
.ta2 {
	width: 100%;
	margin-left:auto;
	margin-right:auto;

}
.ta2, .ta2 td, .ta2 th{
	border: 1px solid #999999;	/*テーブルの枠線の幅、線種、色*/
	line-height: 1.2;
}
/*テーブル内の右側*/
.ta2 td{
	padding: 0 2px;				/*テーブル内の余白*/
	vertical-align: top;
	text-align: left;
}
/*テーブル内の段落タグの余白*/
.ta2 p {
	padding: 2px !important;
	margin-left:20px;
}
/*テーブル内の左側の見出し部分*/
.ta2 th{
	padding: 5px;				/*テーブル内の余白*/
	text-align: center;			/*文字をセンタリング*/
	background-color: #D1E1F9;	/*背景色*/
}
/*テーブル内のh3タグ設定*/
.ta2 h3 {
	font-size: 100%;
	color: #43C4FB;	/*文字色*/
	border-bottom: 1px solid #43C4FB;	/*h3タグ下部の線幅、線種、色*/
	margin-bottom: 0.5em;
}
/*テーブル１行目に入った見出し部分*/
.ta2 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #7CAEF9;	/*背景色*/
	color: #FFFFFF;	/*文字色*/
}


/*商品表示関係
---------------------------------------------------------------------------*/
.sortkey{
		text-decoration: none;
}

.goodsbox{
	height:300px;
}
/*td.goodsimg{
	valign :top;
}
*/
.goodsbox .goods_code{
	line-height: 1.5;
	font-size:1.2em;
	border-bottom: 2px solid #7CAEF9;

}

.goodsbox .goods_img{
	padding:5px 0;
	height:150px;
}
.goodsbox .price{
	height:20px;
	text-align:right;
}
.goodsbox .explanation{
	height:100px;
}
.catch_copy1 ,
.catch_copy2 ,
.catch_copy3 ,
.catch_copy4 ,
.catch_copy5 ,
.catch_copy6{
	text-align:center;
	border: 1px solid #BBBBBB;
	font-weight:bold;
	height:24px;
	width:100px;
}
.catch_copy1 {
	color:black;

}

.catch_copy2 {
	color:red;
}

.catch_copy3 {
	color:blue;
	border: 1px solid #BBBBBB;
	font-weight:bold;
}

.catch_copy4 {
	color:white;
	background-color:black;
}

.catch_copy5 {
	color:white;
	background-color:red;
}

.catch_copy6 {
	color:white;
	background-color:blue;
}

.price{
	font-weight:bold;
	height:15px;
}
.explanation{
	text-align:left;
}
/*注文
---------------------------------------------------------------------------*/
.order_status1{
		background-color:#ffffe0;
}

.order_circle{
        font-size:200%;
}
/*ポップアップ
---------------------------------------------------------------------------*/
.pop_noteInfo a, .pop_noteInfo a:active, pop_noteInfo a:visited{
	font-weight:bold;
	padding:1px 2px;
	color:#000000;
	text-decoration: none;
}

.pop_noteInfo a:hover{
	color:#0000DD;
	text-decoration: none;
}
.pop_customer_goods a, .pop_noteInfo a:active, pop_customer_goods a:visited{
	padding:1px 2px;
	color:#000000;
	text-decoration: none;
}

.pop_customer_goods a:hover{
	color:#0000DD;
	text-decoration: none;
}

/* リスト横
---------------------------------------------------------------------------*/
.list-h{
list-style-type: none;
text-align: left;

}
.list-h li{
float: left;
}


/*画像ボタンの位置
---------------------------------------------------------------------------*/
form.button_area,form.list_button_area{
    display: inline;
}

/*ページング
---------------------------------------------------------------------------*/

.pager  {
text-align: right;
}
 /*ポップアップ
---------------------------------------------------------------------------*/

.pop_customer_goods a, .pop_noteInfo a:active, pop_customer_goods a:visited{
	padding:1px 2px;
	color:#000000;
	text-decoration: none;
}

.pop_customer_goods a:hover{
	color:#0000DD;
	text-decoration: none;
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background-color: #D9D9D9;
}
.mb1em {
	margin-bottom: 1em;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
	text-align: left;
}

.required ,td.comment,p.comment{
	color: #F97DB7;
}
p.comment{
    font-size: 120%;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.btnLink {
text-align:center;
text-decoration:none;
border:2px solid #999999;
background-color:#7CAEF9;
padding:3px;
width:100;
display:block;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c ,td.c{
	text-align: center;
}
.l,td.l{
	text-align: left;
}
.r,td.r{
	text-align: right;
}
.vm,td.vm{
	valign:middle;
}
.w-40{
	width: 40px;
}
.w-60{
	width: 60px;
}
.w-80{
	width: 80px;
}
.w-100{
	width: 100px;
}
.w-150{
	width: 150px;
}
.w-200{
	width: 200px;
}
.w-220{
	width: 220px;
}
.w-250{
	width: 250px;
}
.w-300{
	width: 300px;
}
.w-400{
	width: 400px;
}
.w-500{
	width: 500px;
}
.w-680{
	width: 680px;
}

.w-780{
	width: 780px;
}

.w-800{
	width: 800px;
}

/*2016.03*/
.w-850{
	width: 850px;
}

.mtop-20{
	margin-top:20px;
}
.p_right  {
text-align: right;
}

/* 入力部品
------------------------------------*/
textarea.detail_note{
height: 1.5em;
scrollbar-base-color:#D1E1F9;
overflow:auto;　
}
/* 2013.09 N.iwamoto */
textarea.detail_note2{
width: 210px;
height: 1.5em;
overflow:hidden;
}
input.btnGoods{
background-color:#e0ffff;
width:130px;
text-align:left;
}
/* 2013.09 N.iwamoto */
input.btnGoods2{
background-color:#e0ffff;
width:100px;
text-align:left;
}
/*エラーメッセージ
------------------------------------*/
#errorBox{
	color:#ff0000;
	font-size:1.5em;
	font-weight:bold;
}
/*
------------------------------------*/
.clearfix:after {
  content: ".";  /* 新しい要素を作る */
  display: block;  /* ブロックレベル要素に */
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*\*//*/
  height: auto;
  overflow: hidden;
  /**/
}

.detail_Txt2 {
	width: 250px;
}

/*2016.04*/
input[type=button]:disabled, input[type=submit]:disabled, select:disabled{
  border-color: #eaeaea;
  background: #fafafa;
  cursor: default;
  position: static;
  color: #999;
  /* Usually, !important should be avoided but here it's really needed :) */
  box-shadow: none !important;
  text-shadow: none !important;
}

/*
input[type=submit]:disabled{
  border-color: #eaeaea;
  background: #fafafa;
  cursor: default;
  position: static;
  color: #999;
  /* Usually, !important should be avoided but here it's really needed :) */
/*
  box-shadow: none !important;
  text-shadow: none !important;
}
*/

/* 2016 標準化対応 */
#menu {
  padding: 0;
}
#menu + h2 {
  margin: -3px auto 14px;
}

div.submit {
  padding: 0.5em 10px 1em;
}

.paginator .disabled {
  display: none;
}

.btn,
.ta2 .action a {
  font: normal 0.9em/100% "ＭＳ Ｐゴシック";
  color: #000;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  margin: 0;
  padding: 3px 6px 4px;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  cursor: default;
}
.btn,
.ta2 .action a {
  min-width: 22px;
  background: #fff;
}
.btn:active,
.ta2 .action a:active {
  background: #3a8bfc;
}
.btn:focus,
.ta2 .action a:focus {
  border: 2px solid #9bcbff;
  padding: 2px 5px 3px;
}
.btn:hover,
.btn:visited,
.ta2 .action a:hover,
.ta2 .action a:visited {
  color: #000;
}
.btn.disabled,
.ta2 .action a.disabled {
  border-color: #eaeaea;
  background: #fafafa;
  cursor: default;
  position: static;
  color: #999;
  box-shadow: none !important;
  text-shadow: none !important;
}
.btn + .btn {
  margin-left: 4px;
}
.unit .input,
.ta2 .list-h .input {
  display:inline-block;
}
.ta2 input[type=text],
.ta2 textarea {
  width: 250px;
}
.ta2 input[type=text].w-60,
.ta2 textarea.w-60 {
  width: 60px;
}
.ta2 input[type=text].w-80,
.ta2 textarea.w-80 {
  width: 80px;
}
.ta2 .list-h input[type=text] {
  width: auto;
}
.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
#modal {
  max-width: 100%;
  text-align:center;
}
#main p {
  padding: 0.5em 10px 1em;
}
#modal h2 {
  font-size: 120%;
  color: #FFFFFF;
  background-color: #7CAEF9;
  line-height: 35px;
  padding-right: 10px;
  padding-left: 10px;
  border-bottom: 3px solid #F97DB7;
  font-weight: bold;
}
#new-items {
  margin-bottom: 22px;
}
#new-items input[type=text] {
  width: auto;
}
