@charset "UTF-8";

/***********************
 * カラーコード定義
 ***********************/

/**
 * 共通
 */
*
{
  box-sizing: border-box;
  -webkit-touch-callout: none;
}

html, body
{
  height: 100%;
  margin: 0px;
  padding: 0px;
  font-family: 'Meiryo UI', Meiryo, sans-serif;
  font-size: 11px;
}

button,
textarea,
input,
select
{
  font-family: 'Meiryo UI', Meiryo, sans-serif;
  outline: none;
}

ul
{
  list-style: none;
}

a
{
  cursor: pointer;
  text-decoration: none;
}

a:hover
{
  text-decoration: none;
}

/** ボタン */
button
{
  border-color: #99a6b3;
  color: #005e92;
  background: -webkit-gradient(linear, top, bottom, from(rgba(255,255,255,255)), to(rgba(239,240,242,255))) ;
  background: -webkit-linear-gradient(rgba(255,255,255,255), rgba(239,240,242,255)) ;
  background: linear-gradient(rgba(255,255,255,255), rgba(239,240,242,255)) ;
  border-radius: 3px;
}
button:active
{
  color: #ffffff;
  font-weight: bold;
}

/** テーブル */
th,td
{
  border-color: #000000;
}
th
{
  background-color: #ddffdd;
}
tr:nth-child(2n) td
{
/**background-color: #efffef;*/
   background-color: #f0f0f0;
}
tr:nth-child(2n+1) td
{
  background-color: #ffffff;
}

/** ボタン */
div.ctrl-btn
{
  border: 2px solid #c0c0c0;
  border-radius: 5px;
  border-color: #99a6b3;
  color: #005e92;
  text-align: center;
  vertical-align: middle;
  padding: 2px 0px;
  background: -webkit-gradient(linear, top, bottom, from(rgba(255,255,255,255)), to(rgba(239,240,242,255))) ;
  background: -webkit-linear-gradient(rgba(255,255,255,255), rgba(239,240,242,255)) ;
  background: linear-gradient(rgba(255,255,255,255), rgba(239,240,242,255)) ;
  cursor: pointer;
}
div.ctrl-btn:hover
{
  background: #f0f0f0 ;
}
div.ctrl-btn:active
{
  border-top-color : #505050;
  border-left-color: #505050;
  font-weight: bold;
  color: #ffffff;
}

/**
 * 選択状態
 */
div.ctrl-btn.selected
{
  background: #006aa4;
  color: #ffffff;
  cursor: default;
  pointer-events: none;
}
div.ctrl-btn.selected:active
{
  border-top-color : #c0c0c0;
  border-left-color: #c0c0c0;
  font-weight: normal;
  color: #fffff;
}

/**
 * 無効状態
 */
div.ctrl-btn.disabled
{
  background: #a0a0a0;
  color: #606060;
  font-weight: bold;
  cursor: default;
  pointer-events: none;
}
div.ctrl-btn.disabled:hover
{
  cursor: default;
}
div.ctrl-btn.disabled:active
{
  border-top-color : #c0c0c0;
  border-left-color: #c0c0c0;
  font-weight: bold;
  color: #606060;
}
