/* モーダルウィンドウ全体のレイアウト（画面いっぱいに表示） */
.c-modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

/* 黒背景の設定 */
.c-modal_bg {
  background: rgba(0, 0, 0, 0.6);
  height: 100vh;
  width: 100%;
}

/* ウィンドウの設定 */
.c-modal_content {
  background: #fff;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
}

.d-none {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

table tr{
  border-bottom: solid 1px #eee;
  cursor: pointer;
}

table tbody tr:hover{
  background-color: #d4f0fd;
}

table tbody th, table tbody td{
  text-align: center;
  padding: 15px;
}

#excel-grid {
  height: 100%;
  font-size: .8rem;
  position: relative;
}

#excel-grid > .row {
  display: grid;
  column-gap: 0px;
  row-gap: 0px;
  border-top: 1px solid #999;
  border-left: 1px solid #999;
}

.row.head {
  font-weight: bold;
  position: -webkit-sticky !important;
  position: sticky !important;
  z-index: 2 !important;
  top:0 !important;
}

.row > .cell {
  white-space: nowrap;
  text-overflow: ellipsis;
  border-bottom: 0.1px solid #999;
  padding: 5px;
}

.row > .cell2 {
  white-space: nowrap;
  text-overflow: ellipsis;
  border-bottom: 0.1px solid #d1d0d0;
  padding: 2px;
}

.row > .no-cell {
  white-space: nowrap;
  text-overflow: ellipsis;
  border-bottom: 0.1px solid #c9c7c7;
}

.row > .no-cell2 {
  white-space: nowrap;
  text-overflow: ellipsis;
  border-bottom: 0.1px solid #d1d0d0;
}

.head > .cell {
  padding: 10px 5px !important;
}