@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese");

:root {
  --object-width: 90%;
  --object-text: 77%;
  --margin-top: 5px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
  overflow: hidden;
}

.deleteButton{
  top: -90px;
  right: 130px;
}

.deleteButton.deleteList{
  top: 0px;
  right: 0px;
}

.listArea{
  width: calc(100% - 10% - 250px);
  right: 0;
  position: absolute;
  margin: 0 5%;
  top: 150px;
}

.buttonArea{
  width: calc(100% - 10% - 250px);
  right: 0;
  height: 50px;
  position: absolute;
  margin: 0 5%;
}

.list{
  width: 100%;
  margin: 0px auto;
}

table th{
  height: 20px;
  margin: 0 5px 0 0;
  padding: 13px;
  background-color: #5b5b5b;
  color: #FFFFFF;
  font-size: 16px;
}

table th:first-child,
table td:first-child{
  border-radius: 10px 0 0 10px;
}

table th:last-child,
table td:last-child{
  border-radius: 0 10px 10px 0;
}

table td{
  height: 30px;
  margin: 0 5px 0 0;
  padding: 18px;
  background-color: #f6f6f6;
  text-align: left;
}

.submitArea{
  height: 70px;
  padding: 10px 5%;
  position: fixed;
  width: calc(100% - 10% - 250px);
  bottom: 0px;
  right: 0px;
  background-color: #FFFFFF;
  z-index: 2;
}

.overlayEdit,
#overlayConfirm{
  z-index:1;
  position:absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color:rgba(0,0,0,0.5);
  display: flex;
  align-items: right;
  justify-content: right;
}

#overlayConfirm{
  z-index: 10;
}

.editArea{
  width: 90%;
  height: calc(100vh - 80px);
  right: 0;
  position: absolute;
  background-color: #FFFFFF;
  overflow-x: hidden;
  overflow-y: auto;
}

.editArea .editTitle{
  height: 100px;
  line-height: 100px;
  width: 100%;
  font-size: 28px;
  font-weight: 500;
  text-align: left;
  padding-left: 25px;
  border-bottom: solid 2px #707070;
}

.editArea .closeEdit{
  height: 100px;
  width: 100px;
  position: absolute;
  right: 0px;
  top: 0px;
  background-image: url('/assets/img/icon/close.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50px 50px;
  cursor: pointer;
}

.footerSpace{
  height: 100px;
}

input[type=checkbox] {
    display: none;
}
.checkbox {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 20px;
    position: relative;
    width: auto;
}
.checkbox::before {
    background: #E0F1F1;
    border: 1px solid #E0F1F1;
    border-radius: 5px;
    content: '';
    display: block;
    height: 20px;
    left: 5px;
    margin-top: -12px;
    position: absolute;
    top: 50%;
    width: 20px;
}
.checkbox::after {
    border-right: 3px solid #008080;
    border-bottom: 3px solid #008080;
    content: '';
    display: block;
    height: 11px;
    left: 12px;
    margin-top: -9px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 5px;
}
input[type=checkbox]:checked + .checkbox::after {
    opacity: 1;
}

.searchText{
  height: 30px;
  line-height: 24px;
  border-width: 0px;
  background-color: #EEEEEE;
  padding-left: 35px;
  position: relative;
  top: 10px;
  border-radius: 5px;
  width: 40%;
  outline: none;
  margin-top: 12px;
  float: left;
}

.searchIcon{
  position: relative;
  left: 25px;
  top: 30px;
  z-index: 1;
  color: #A0A0A0;
  float: left;
}

table td.listStatus{
  padding: 0;
}

table td.listStatus select{
  height: 100%;
  width: 100%;
  font-size: 18px;
  color: #008080;
  text-align-last:center;
  border: none;
  border-radius: 0 10px 10px 0;
  margin: 0;
  padding: 0;
  outline: none;
  cursor: pointer;
  background-color: #e0f1f1;
}

.linedash{
  margin-top: 10px;
  border: dashed 1px gray;
  width: 100%;
  display: inline-block;
}

.lineNone{
  margin-top: 5px;
  border: none;
  width: 100%;
  display: inline-block;
}

.requiredMark{
  color: red;
  font-weight: bold;
  margin-left: 10px;
}

.explain {
  color: #787878;
  margin-bottom:20px;
}

.form-group {
  padding: 10px;
  background-color: #FFF;
  margin: 20px 40px;
  display: flow-root;
}

.title, .explain {
  text-align:left;
}

.edit-icon {
  margin-top: 20px;
  background-color: #e0f1f1;
  border-radius: 100px;
  cursor: pointer;
  height: 66px;
  width: 66px;
  right: 5%;
  position: absolute;
}

