/*-----------------------------全般-----------------------------*/

/*タイトル下線*/
.cp_hr05 {
  position: relative;
  height: 2px;
  border-width: 0;
  background-color: #00bcd4;
  background-image: -webkit-linear-gradient(left,
  #283593 0%,#00bcd4 100%);
  background-image:         linear-gradient(90deg,
  #283593 0%,#00bcd4 100%);
}

/*-----------------------------メニュー-----------------------------*/
/*メニューボタン*/
.btn-menu {
  min-height: 100px;
  height: auto !important;
}

/*メニュー画像*/
.img-menu {
  width:50px
}

/*-----------------------------検索条件-----------------------------*/

/*検索ボタン*/
.btn-search {
  height: 35px !important;
}


/*-----------------------------テーブル-----------------------------*/

/*テーブルレイアウト*/
.master-table {
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
}

/*テーブルレイアウト　ヘッダ*/
.master-table thead th {
  text-align: center;
}

/*テーブルレイアウト　ボディ*/
.master-table tbody td {
  vertical-align: middle;
}

/*-----------------------------プログレス-----------------------------*/

/*プログレス オーバーレイ*/
#progress{ 
  position: fixed;
  top: 0;
  z-index: 2000;
  width: 100%;
  height:100%;
  display: none;
  box-sizing: border-box;
  background: rgba(0,0,0,0.6);
}

/*プログレス スピナー位置*/
.cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;  
}

/*プログレス スピナー本体*/
.spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}

/*プログレス キーフレーム*/
@keyframes sp-anime {
  100% { 
    transform: rotate(360deg); 
  }
}

/*-----------------------------アンダーライン-----------------------------*/

/*アンダーライン リンク*/
.u-link {
  text-decoration: underline;
  text-decoration-color: blue;
}

/*-----------------------------ログイン-----------------------------*/

/* ログイン　文字色*/
.login-font-color {
  color: #000080;
}

/* ログイン　お客様用背景色*/
.client-background-color {
  background-color: #00BF00 !important;
}

/* ログイン　会社名*/
.company-nm:before {
  content: "株式会社 武井工業所";
  font-family: "Yu Mincho";
}

/*-----------------------------社内向け機能-----------------------------*/
.inside-mark:before {
  content: "★";
  color: #FF0000;
}