/**
 * @fileOverview スマートロガー - 全体共通CSS
 * @author Computer Engineering & Consulting ltd.
 * @version 2.0
 * @preserve Copyright 2019 Computer Engineering & Consulting, Ltd. All rights reserved.
 */

body {
  font-family:  Arial, sans-serif, 'Source Han Sans', Meiryo, 'MS PGothic', 'Hiragino Kaku Gothic Pro';
}

@keyframes rotate-animation {
  0%  { transform: rotate(0); }
  100%  { transform: rotate(360deg); }
}
@keyframes fadein-animation {
  0% { opacity: 0.1; }
  100% { opacity: 1; }
}

header {
  width: 100%;
  height: 60px;
  background-color: #23303a;
}
#advanced-conf-menu {
  display: none;
}
.right_col{
  min-height: calc(100vh - 60px);
  transition: margin 100ms 0s ease;
}
/* footer調整 */
footer {
  background: #F7F7F7;
  text-align: center;
  height: 55px;
}
/* アイコンフォント */
.material-icons{
  margin-left: 0;
  margin-right: 7px;
  font-size: 14px;
}
/* コンテナ・パネル */
.container{
  background-color: #F7F7F7;
}
.col-md-12{
  width: 100%;
}
.x_panel{
  padding: 0;
  box-sizing: border-box;
}
.panel-body{
  padding: 17px;
}
.x-title {
  clear: both;
  padding: .75em 12px .75em .75em;
  margin-top: 0px;
  border-left: 6px solid #1f2d3a;
  border-bottom: 1px solid rgba(0, 0, 0, .12);
  white-space: nowrap;
  font-size: 18px;
  font-weight: 400;
 }
 .xx-title { /* パネル内の見出し */
   clear: both;
   padding: 0 10px;
   margin-top: 0px;
   margin-bottom: 8px;
   border-left: 5px solid #1f2d3a;
   white-space: nowrap;
   font-size: 16px;
   font-weight: 400;
 }
 /* テーブル */
.table-striped>thead{
  background: #055b9b;
  color: #ffffff;
}
div.table-area {
  height: calc(100vh - 220px);
  overflow:scroll;
}
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
  color: #73879c;
}
/* ヘッダー固定の際、スクロールバーの上の色がなくなるため追加 */
div.dataTables_scrollHeadInner {
  background-color: #055b9b;
  min-height: 39px;
}
/* ページング */
div.dataTables_info {
  width: 300px; /* 表示枠の幅固定 */
}
.dataTables_paginate a.paginate_button.current {
  background-color: #eee !important;
  border-color: #5bc0de !important;
}
/* ボタン */
.btn-info{
  background-color: #055b9b;
  border-color: #055b9b;
  font-weight: bold;
 }
.btn-info:focus{
  background-color: #055b9b;
  border-color: #055b9b;
}
.btn-info:hover {
  background-color: #31b0d5;
  border-color: #269abc;
}
.form-inline{
  margin: 0 0 10px 0;
}
.btn-xs{
  padding: 5px 3px 3px 3px;
  margin: 3px;
  background-color: #f5f5f5;
}
button.file-download {
  float: right;
  margin: 3px 7px -6px 4px;
}
/* title部分の「＋」ボタン */
.x-title button.new-button {
  float: right;
  cursor: pointer;
  background-color: #055b9b;
  border-color: #055b9b;
  color: #fff;
  border-radius: 3px;
  margin-left: 5px;
}
.x-title button.new-button:hover {
  background-color: #31b0d5;
  border-color: #269abc;
}
/* インプット */
input[type=checkbox], input[type=radio]{
  margin: 2px;
}
form label.error {
  color: red;
  font-weight: normal;
  font-size: 11px;
  margin-left: 10px;
  margin-bottom: 0;
}
/* ボタンのフォーカスを強調 */
.btn:focus {
  outline: 1.5px solid #1f2d3a;
  outline-offset: 2px;
}
