/* ---------- 全体 ------------ */
html, body {
    height: 100%;
    margin: 0;
}
.content {
    min-height: calc(100% - 60px);
}
.content-inside {
    padding: 20px;
    padding-bottom: 50px;
}


/* ---------- ボディ ------------ */
body{
    background: #fafafa;
}

/* ---------- ヘッダー ---------- */
.header{
    width: 100%;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
    background-image: url(../image/header-bg.png);
    border-bottom: #0000ff;
    border-width: 1px;
    margin: 0px;
    padding: 10px;
}
.header span{
    height: 30px;
    vertical-align: middle;
    display: inline-block;
}
.header img{
    display: inline-block;
    width: 25px;
    height: 25px;
    margin: 2.5px;
}

/* ---------- タイトル ---------- */
h1 {
  position: relative;
  display: inline-block;
  padding: 0 55px;
  margin-bottom: 0;
}

h1:before, h1:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: black;
}

h1:before {
  left:0;
}
h1:after {
  right: 0;
}

/* ---------- コマンドバー ---------- */
.command-bar{
    height: 20px;
    margin-top: 5px;
    margin-left: 25px;
    margin-right: 25px;
    font-size: 14px;
    line-height: 20px;
}

/* ---------- フッター ---------- */
.footer{
    height: 50px;
    margin-top: -50px;
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 50px;
    /*margin-top:2em; padding-bottom:2em;*/ text-align:center;
}




/* ---------- エラーメッセージ ---------- */
.error_message{
    font-size: 18px;
    color: red;
}


/* ---------- モーダルウィンドウ ---------- */
  *:popover-open {
    position: fixed;
    padding: 40px;
    border: 2px solid #555;
    text-align: center;
    min-width: 250px;
    box-shadow: 4px 4px 8px #eee;
  }
  *::backdrop {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .popover-wrap {
    height: 100%;
  }
  
  .popover-close-button {
    background: lightgray;
    position: absolute;
    right: 2px;
    top: 2px;
  }
  
  #yes-only-popover-message{
    margin: 10px;
  }
  #yes-no-popover-message{
    margin: 10px;
  }
  

/* ---------- テーブル編集可能セル(編集入力) ---------- */
.com-edit-table-cell {
  width: 100%;
  margin: 0px;
  padding: 0px;
}

.com-input-table-cell {
  background-color: bisque;
}

.com-not-input-table-cell {
  background-color: white;
}

.screenModeHidden {
  display: none;
}