/*--------------------------------------------------------------------
 * 本体定義
 *--------------------------------------------------------------------*/
body {
  background: #f5f5f5;
  font-size: .8em;
  font-family: "メイリオ","Meiryo","Verdana","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic","Sans-Serif";
  width: 1050px;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------
 * (共通) 入力フィールドコピー禁止定義
 *--------------------------------------*/
*:not(input):not(textarea):not(select),
  input[type=text],
  input[type=file],
  textarea {
          user-select:none;
      -ms-user-select:none;
     -moz-user-select:none;
  -webkit-user-select:none;
   -khtml-user-select:none;
    -webkit-user-drag:none;
     -khtml-user-drag:none;
}

/*--------------------------------------
 * (共通) カラム定義
 *--------------------------------------*/
.col-left,
.col-normal {
  text-align: left;
}

.col-center,
.col-no,
.col-date {
  text-align: center;
}

.col-right,
.col-currency,
.col-number {
  text-align: right;
}

.col-w4p { width: 4%; }
.col-w5p { width: 5%; }
.col-w6p { width: 6%; }
.col-w8p { width: 8%; }
.col-w10p { width: 10%; }
.col-w12p { width: 12%; }
.col-w14p { width: 14%; }
.col-w15p { width: 15%; }
.col-w16p { width: 16%; }
.col-w18p { width: 18%; }
.col-w20p { width: 20%; }
.col-w23p { width: 23%; }
.col-w25p { width: 25%; }
.col-w30p { width: 30%; }
.col-w31p { width: 31%; }
.col-w35p { width: 35%; }
.col-w36p { width: 36%; }
.col-w50p { width: 50%; }
.col-w60p { width: 60%; }
.col-w65p { width: 65%; }
.col-w70p { width: 70%; }
.col-w75p { width: 75%; }
.col-w85p { width: 85%; }
.col-w86p { width: 86%; }
.col-w100p { width: 100%; }
.col-w40 { width: 40px; }
.col-w70 { width: 70px; }
.col-w80 { width: 80px; }
.col-w85 { width: 85px; }
.col-w90 { width: 90px; }
.col-w100 { width: 100px; }
.col-w120 { width: 120px; }
.col-w140 { width: 140px; }
.col-w160 { width: 160px; }
.col-w180 { width: 180px; }
.col-w200 { width: 200px; }
.col-w220 { width: 220px; }
.col-w240 { width: 240px; }
.col-w260 { width: 260px; }
.col-w330 { width: 330px; }
.col-w800 { width: 800px; }
.col-w1050 { width: 1050px; }
.col-maxw70 { max-width: 70px; }
.col-maxw140 { max-width: 140px; }
.col-minw70 { min-width: 70px; }
.col-maxh200 { max-height: 200px; }
.col-maxh310 { max-height: 310px; }
.col-h20 { height: 20px; }
.col-h24 { height: 24px; }
.col-h120 { height: 120px; }
.col-h20m { height: 20mm; }
.col-padr2 { padding-right: 2px; }
.mgn-top10  { margin-top: 10px; }
.mgn-top15  { margin-top: 15px; }
.mgn-left15  { margin-left: 15px; }
.mgn-leftauto  { margin-left: auto; }
.mgn-rightauto  { margin-right: auto; }
.col-disp-in { display: inline; }
.fsz-12 { font-size: 12px; }
.fsz-14 { font-size: 14px; }
.fcl-red { color: #FF0000; }

/*--------------------------------------
 * (共通) ボタン定義
 *--------------------------------------*/
.btn-normal {
  width: 80px;
  height: 26px;
  vertical-align: middle;
  text-align: center;
  padding: 0px;
/*  font-size: 12px; */
  font-size: .95em;
  font: bold;
  /* 角丸の指定 */
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #808080;
  box-shadow: inset 0 1px 1px #fff;
  background: -moz-linear-gradient(top, #F5F5F5 0%, #D3D3D3 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#F5F5F5), to(#D3D3D3));
  background: -webkit-linear-gradient(top, #F5F5F5 0%, #D3D3D3 100%);
  background: linear-gradient(#F5F5F5 0%, #D3D3D3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#F5F5F5', endColorstr='#D3D3D3'); /* IE5.5以上 */

}
.btn-normal:hover:not([disabled]) {
  background: -moz-linear-gradient(top, #D3D3D3 0%, #F5F5F5 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#D3D3D3), to(#F5F5F5));
  background: -webkit-linear-gradient(top, #D3D3D3 0%, #F5F5F5 100%);
  background: linear-gradient(#D3D3D3 0%, #F5F5F5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#D3D3D3', endColorstr='#F5F5F5'); /* IE5.5以上 */
}
.btn-normal:active:not([disabled]) {
  background: -moz-linear-gradient(top, #C0C0C0 0%, #E6E6FA 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#C0C0C0), to(#E6E6FA));
  background: -webkit-linear-gradient(top, #C0C0C0 0%, #E6E6FA 100%);
  background: linear-gradient(#C0C0C0 0%, #E6E6FA 100%);
  box-shadow: 1px 1px 0 #fff, inset 0 1px 1px rgba(0, 0, 0, .3);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#C0C0C0', endColorstr='#E6E6FA'); /* IE5.5以上 */
}

.btn-small {
  width: 60px;
  height: 24px;
  vertical-align: middle;
  text-align: center;
  padding: 0px;
/*  font-size: 11px; */
  font-size: .95em;
  font: bold;
  /* 角丸の指定 */
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #808080;
  box-shadow: inset 0 1px 1px #fff;
  background: -moz-linear-gradient(top, #F5F5F5 0%, #D3D3D3 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#F5F5F5), to(#D3D3D3));
  background: -webkit-linear-gradient(top, #F5F5F5 0%, #D3D3D3 100%);
  background: linear-gradient(#F5F5F5 0%, #D3D3D3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#F5F5F5', endColorstr='#D3D3D3'); /* IE5.5以上 */
}
.btn-small:hover:not([disabled]) {
  background: -moz-linear-gradient(top, #D3D3D3 0%, #F5F5F5 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#D3D3D3), to(#F5F5F5));
  background: -webkit-linear-gradient(top, #D3D3D3 0%, #F5F5F5 100%);
  background: linear-gradient(#D3D3D3 0%, #F5F5F5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#D3D3D3', endColorstr='#F5F5F5'); /* IE5.5以上 */
}
.btn-small:active:not([disabled]) {
  background: -moz-linear-gradient(top, #C0C0C0 0%, #E6E6FA 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#C0C0C0), to(#E6E6FA));
  background: -webkit-linear-gradient(top, #C0C0C0 0%, #E6E6FA 100%);
  background: linear-gradient(#C0C0C0 0%, #E6E6FA 100%);
  box-shadow: 1px 1px 0 #fff, inset 0 1px 1px rgba(0, 0, 0, .3);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#C0C0C0', endColorstr='#E6E6FA'); /* IE5.5以上 */
}

/*--------------------------------------
 * (共通)
 *--------------------------------------*/
a img {
  border: 0px;
}

/*--------------------------------------------------------------------
 * (共通) タイトル領域
 *--------------------------------------------------------------------*/
.functionHeader {
  position: relative;
  margin-top: 0px;
  padding: 0px;
  background-size: auto, 100% 100%;
  height: 64px;
}
.functionHeader.title-user {
  background:
    url("./images/logo_coop-sapporo_90×50.png") 10px 5px no-repeat,
    url("./svg/header_gradient.svg");
  background-color: #87CEEB; /* 古いブラウザ用 */
}
.functionHeader.title-admin {
   background:
     url("./images/logo_coop-sapporo_90×50_white.png") 10px 5px no-repeat,
     #00a23e;
   color: #ffffff;
}
.functionHeader.title-admin a {
  color: #ffffff;
}

/* システム名 */
.functionHeader .functionHeader-systemName {
  position: absolute;
  top: 5px;
  left: 0px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 1.4em;
}

/* 画面名 */
.functionHeader .functionHeader-displayName {
  position: absolute;
  top: 30px;
  left: 0px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 1.4em;
}

/* ヘルプ */
.functionHeader .help {
  position: absolute;
  top: 4px;
  right: 12px;
  font-size: 1.1em;
}

/* 日付 */
.functionHeader .timeInfo {
  position: absolute;
  top: 24px;
  right: 12px;
  font-size: 1.1em;
}

/* ログイン情報 */
.functionHeader .loginInfo {
  position: absolute;
  top: 42px;
  right: 12px;
  font-size: 1.1em;
}

/*--------------------------------------------------------------------
 * (共通) エラーメッセージ領域
 *--------------------------------------------------------------------*/
.alert {
  margin: 5px auto;
  padding: 0px;
  text-align: center;
  color :#ff0000;
  font-size: 1.4em;
}

/*--------------------------------------------------------------------
 * (共通) フッタ領域
 *--------------------------------------------------------------------*/
.footer {
  padding: 5px 0px;
  clear: both;
  text-align: center;
  line-height: normal;
}
.footer input {
  margin: 0px 5px;
}

div#footer {
  padding: 5px 0px;
  clear: both;
  text-align: center;
  line-height: normal;
}
div#footer input {
  margin: 0px 5px;
}

/*--------------------------------------------------------------------
 * (共通) 検索条件入力領域
 *--------------------------------------------------------------------*/
.searcharea {
  margin: 10px auto;
  font-size: 1.1em;
  color: #fff;
  background: #036;
     -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  border-style: outset;
  border-width: 2px;
  box-shadow:0px 0px 5px 2px rgba(0, 0, 0, 0.2)
            ,0px 0px 5px 2px rgba(0, 0, 0, 0.2) inset;
}

.searcharea form {
/*
  border-style: outset;
*/
  padding: 10px 5px;
  margin: 0px;
}

.searcharea table {
  width: 100%;
}

.searcharea table th {
  padding: 2px 10px;
  vertical-align: middle;
  text-align: right;
  color: white;
}

.searcharea table th td {
  padding: 2px 10px;
  vertical-align: middle;
  text-align: left;
  color: white;
}

/*--------------------------------------------------------------------
 * (共通) 一覧表示領域
 *--------------------------------------------------------------------*/
.listarea {
  width: 1050px;
  margin: 10px auto;
}

.listarea-header {
  padding: 2px 10px 2px;
  background: #eee;
  text-align: right;
  font-size: 12px;
}

.listarea-main {
  border-collapse: separate;
  border-spacing: 1px;
  line-height: 1.5;
  font-size: 12px;
}

.listarea-main th {
  height: 20px;
  padding: 2px;
  vertical-align: middle;
  text-align: center;
  border: 1px solid #456;
  font-weight: bold;
  color: #fff;
  background: #036;
}

.listarea-main td {
  height: 18px;
  padding: 2px;
  vertical-align: middle;
  text-align: left;
  border: 1px solid #456;
}

.listarea-footer {
  margin: 0 0 10px;
  padding: 5px 10px 5px;
  background: #eee;
  text-align: right;
}

.listarea-footer table {
  width: 100%;
  border: 0px solid;
  padding: 0px;
  margin: 0px;
}

.listarea-footer ul {
  margin: 0px;
  padding: 0px;
}

.listarea-footer li {
  display: inline;
  margin: 0 2px;
  padding: 0;
  text-align: right;
}

.listarea-footer li span,
.listarea-footer li a {
  display: inline-block;
  margin-bottom: 0px;
  padding: 1px 8px;
  background: #fff;
  border: 1px solid #aaa;
  text-decoration: none;
  vertical-align: middle;
}

.listarea-footer li a:hover {
   background: #eeeff7;
   border-color: #00f;
}




/*******************************
  （共通）取引先検索ダイアログ
*******************************/
#torihikiSearch {
  font-size: 12.5px;
/*  font-family: 'Meiryo UI'; */
  font-family: "メイリオ","Meiryo","Verdana","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic","Sans-Serif";
  font-style: normal;
}

#torisearch-searcharea {
  font-size: inherit;
  font-family: inherit;
  font-style: inherit;
  width: 540px;
}

#torisearch-searcharea table {
  width: 100%;
}

#torisearch-searcharea th {
/*  font-weight: normal; */                 /* 標準 */
  text-align: right;                    /* 右寄せ */
  padding-right: 15px;
  white-space: nowrap;                  /* 改行させない */
}

.torisearch-listarea-tricd {
  width: 100px;
}
.torisearch-listarea-syosyacd {
  width: 100px;
}
.torisearch-listarea-trinm {
  width: 330px;
}
.torihikisaki-listarea-scroll {
  height: 180px;
  max-height: 200px;
  overflow: auto;
}


/*******************************
  Please Wait
*******************************/
#Please_Wait-view {
  /* 領域の位置やサイズに関する設定 */
  width: 100%;
  height: 100%;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  /* 背景関連の設定 */
  background-color: #7FFF00;
  filter: alpha(opacity=65);
  -moz-opacity: 0.65;
  -khtml-opacity: 0.65;
  opacity: 0.65;
  background-image: url(./../image/loading-32.gif);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

input[type="submit"],
input[type="button"],
button{
  cursor: hand;
}

.ui-datepicker-trigger {
  margin-left: 10px;
  vertical-align: middle;
  cursor: hand;
}

.listarea-main tr td.odd {

  background-color: #B0E0E6;
}
.listarea-main tr td.even{
  background-color: #eee;
}

div.footer, div#footer {
	width:1050px;
	margin: 10px auto;
}
div.footer .copyright{
	text-align: center;
}

div.listarea-scroll {
	min-width: 100%;
}

div.listarea-scroll table{
	width:100%;
}

/*-----------------------------------------------------------------
 * Please Wait
 -----------------------------------------------------------------*/
div#loader {
  /* 領域の位置やサイズに関する設定 */
  width: 100%;
  height: 100%;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  /* 背景関連の設定 */
  background-color: #E6E6FA;
  filter: alpha(opacity=65);
  -moz-opacity: 0.65;
  -khtml-opacity: 0.65;
  opacity: 0.65;
  background-image: url(./../image/loading.gif);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

div.listarea-scroll {
    overflow: auto;
}

div.torihikisaki-listarea-scroll {
    overflow: auto;
}

.word-break{
    word-break: break-all;
}

.cookie-enable{
    display: none;
}

.loader-none {
    display: none;
}

/*
 * お知らせ情報用
 */
.info-title-24-red {
  color: #FF0000;
  font-size: 24px;
}
.info-link-20 {
  font-size: 20px;
}
