.reset-margin {
  margin-right: 0px;
  margin-left: 0px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  vertical-align: middle;
}
.cellfixed{
  position: sticky;
  left: 0;
  color: #fff;
  background: #333;
  z-index: 1020;
  &:before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
  }
}

.codenames-data-deleted {
  background: #dcdcdc;
}

@media (min-width: 992px) {
  .show-flex {
    display: flex;
  }
}

.box-bgcolor-lightyellow {
  background-color: lightyellow;
}

.box-border-none {
  border-top: none;
  margin-bottom: 5px;
}

#digima tr:hover td {
  background-color: #fcf8e3;
}

#constrcode_list tr:hover td {
  background-color: #fcf8e3;
}

/*[data-trix-button-group="text-tools"],*/
.trix-button--icon-bold,
.trix-button--icon-italic,
.trix-button--icon-strike,
/*.trix-button--icon-link,*/

[data-trix-button-group="block-tools"],
.trix-button--icon-heading-1,
.trix-button--icon-quote,
.trix-button--icon-code,
.trix-button--icon-bullet-list,
.trix-button--icon-number-list,
.trix-button--icon-decrease-nesting-level,
.trix-button--icon-increase-nesting-level

/*[data-trix-button-group="file-tools"],*/
/*.trix-button--icon-attach,*/

[data-trix-button-group="history-tools"],
.trix-button--icon-undo,
.trix-button--icon-redo
{
    display: none !important;
}

.for-pc { display:block; }
.for-sp { display:none; }

@media only screen and (max-width : 767px){
  .for-pc { display:none; }
  .for-sp { display:block; }
}

.hide { display:none; }

table.table-fixed-separate {
    border-collapse: separate;
}

.radio-none {
  display: none;  /* ラジオボタンを非表示にする */
}

.radio-none:checked + label {
  background: #31A9EE;/* マウス選択時の背景色を指定する */
  color: #ffffff; /* マウス選択時のフォント色を指定する */
  border: 1px solid #006DD9;
}

.evaluation-label {
  display: block; /* ブロックレベル要素化する */
  float: left; /* 要素の左寄せ・回り込を指定する */
  margin: 5px; /* ボックス外側の余白を指定する */
  width: 90%; /* ボックスの横幅を指定する */
  height: 45px; /* ボックスの高さを指定する */
  padding-left: 5px; /* ボックス内左側の余白を指定する */
  padding-right: 5px; /* ボックス内御右側の余白を指定する */
  color: #696969; /* フォントの色を指定 */
  text-align: center; /* テキストのセンタリングを指定する */
  line-height: 45px; /* 行の高さを指定する */
  cursor: pointer; /* マウスカーソルの形（リンクカーソル）を指定する */
  border: 1px solid #696969;/* ボックスの境界線を実線で指定する */
  border-radius: 5px; /* 角丸を指定する */
  font-size: large;
}

/* sticky table */
.sticky_table_wrapper {
  overflow: scroll;
  /* width: calc(100vw - 1rem); */
  height: 75vh;
}
.sticky_table {
  thead th {
    /* 縦スクロール時に固定する */
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    /* tbody内のセルより手前に表示する */
    z-index: 1;
  }
  thead th:first-child {
    /* 行内の他のセルより手前に表示する */
    z-index: 1045;
  }
  th:first-child {
    /* 横スクロール時に固定する */
    position: -webkit-sticky;
    position: sticky;
    left: 0;
  }
}
/* 高さ短め */
.sticky_table_wrapper_short {
  overflow: scroll;
  /* width: calc(100vw - 1rem); */
  height: 70vh;
}

/* importボタン */
.import-file-button {
  width: 100%;
  height: 100%;
}

.import-file-butto::file-selector-button {
  font-weight: bold;
  text-align: center;
}

.block::file-selector-button {
  display: block;
}

.import-file-erea {
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 0px;
  padding-bottom: 0px;
  height: 80px;
  border: dashed #87ceeb;
}

.shortcut {
   width: 300px;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
   -webkit-text-overflow: ellipsis;
}

.tooltip-equipment{
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.tooltip-equipment p{
    margin:0;
    padding:0;
}

.description-equipment {
    display: none;
    position: absolute;
    padding: 10px;
    font-size: 11px;
    line-height: 1.6em;
    color: #fff;
    border-radius: 5px;
    background: #000;
    width: 500px;
}

.description-equipment:before {
    content: "";
    position: absolute;
    top:45%;
    right: 100%;
    border: 15px solid transparent;
    border-top: 15px solid #000;
    margin-left: -15px;
    transform: rotateZ(90deg);
}

.tooltip-equipment:hover .description-equipment{
    display: inline-block;
    top: -50px;
    left: 250px;
}
