/*** 主に一覧画面のデザイン ***/

.search_conditions{
  background-color: var(--color2);
  font-size: 14px;
  padding: 10px 20px;
}

.main_area{
  padding: 0.5rem 1rem;
  overflow-x: hidden;
}

.list_contents{
  position: relative;
}

.table thead{
  color: var(--color4);
  cursor: default;
}

.table tbody{
}

.table tbody tr:hover{
  cursor: pointer;
}

.table td{
  line-height: 30px;
}

.pager{
  background-color: var(--color3);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.pager ul{
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
.pager li{
  width: 45px;
}
.pager li:hover{
  opacity: 0.7;
}

.pager ul li{
  background-color: var(--color3);
  border-radius: 0 0 0.25rem 0.25rem;
}


.pager ul .page-now{
  background-color: var(--color1);
}

.list_area{
  padding-bottom: 2rem;
}

.status_red {
  background-color: #ff7068;
  font-weight: bold;
  text-align: center;
  margin: 10px 0px 10px 0px;
  border-radius: 5px;
  padding: 5px;
}
.status_yellow {
  background-color: #ffe57e;
  font-weight: bold;
  text-align: center;
  margin: 10px 0px 10px 0px;
  border-radius: 5px;
  padding: 5px;
}
.status_blue {
  background-color: #6cbaff;
  font-weight: bold;
  text-align: center;
  margin: 10px 0px 10px 0px;
  border-radius: 5px;
  padding: 5px;
}
.status_green {
  background-color: #92ffbe;
  font-weight: bold;
  text-align: center;
  margin: 10px 0px 10px 0px;
  border-radius: 5px;
  padding: 5px;
}
.status_black {
  background-color: #443838;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: 10px 0px 10px 0px;
  border-radius: 5px;
  padding: 5px;
}

.conditions_mark{
  position: absolute;
  font-size: 10px;
  font-weight: bold;
  left: 8px;
  bottom: 12px;
  color: #fff;
  background-color: #e00;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
}

.conditions_mark_comp{
  position: absolute;
  font-size: 10px;
  font-weight: bold;
  left: 8px;
  bottom: 12px;
  color: #fff;
  background-color: #44e;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
}

/* PCサイズ */
@media screen and (min-width: 768px) {

  .search_conditions{
    margin-top: 50px;
  }
  .main_area{
    margin-bottom: 100px;
  }
  .pager{
    position: absolute;
    bottom: 0;
    margin-left: -1.5rem;
    margin-bottom: -0.5rem;
  }

  .list_contents{
    min-height: calc(100vh - 100px);
  }

  .contents_area .pager{
    width: calc(100% + 3rem);
  }

  .contents_area_hide .pager{
  }

}

/* スマホサイズ */
@media screen and (max-width: 767px) {

  .main_area{
    margin-bottom: 10px;
  }

  .pager{
    position: absolute;
    bottom: 0;
    margin-left: -0.5rem;
    margin-bottom: -0.75rem;
  }

  .pager li{
    width: 14vw;
    max-width: 70px;
  }

  .list_contents{
    min-height: calc(100vh - 100px);
  }

  .list_area .table{
/*    overflow-x: auto;
    white-space: nowrap;*/
    width: 100%;
    box-sizing: border-box;
  }

  .list_area table{
    width: 767px;
  }

  .contents_area .pager{
    width: calc(100% + 1rem);
  }

}
