html{
  position: relative;
  min-height: 100vh;
}
body{
  margin: 0;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  color: #171212;
  background-color: #f0f1f4;
  overscroll-behavior-y: none;
}
body.login{
  background-color: #fff;
}
*{
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}
h1,h2,h4,h6,p{
  margin: 0;
}
ul{
  margin: 0;
  padding: 0;
}
li{
  list-style: none;
}
a{
  text-decoration: none;
}
input,textarea,select{
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  box-sizing: border-box;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
}
input::placeholder,textarea::placeholder{
  color: #B3B5BA;
}
input[type="date"]{
  position: relative;
}
/* 日時不要ボタン削除 */
input[type="date"]::-webkit-inner-spin-button{
  -webkit-appearance: none;
}
/* 日時不要ボタン削除 */
input[type="date"]::-webkit-clear-button{
  -webkit-appearance: none;
}
/* 日時クリック判定を全面化（▼ボタンを全面） */
input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.inputWrapper{
  margin-bottom: 12px;
}
.inputWrapper input[type="text"],
.inputWrapper input[type="time"],
.inputWrapper select,
.inputWrapper textarea,
.inputWrapper input[type="password"],
.account_inputWrapper input[type="text"],
.inputWrapper input[type="date"],
.account_inputWrapper input[type="password"]{
  padding: 0 14px;
  font-size: 16px;
  width: 100%;
  height: 52px;
  border: 1px solid #c2c8d2;
  border-radius: 5px;
  color: #373939;
  background-color: #fff;
}
.login_button{
  height: 55px;
  font-size: 14px;
  line-height: 55px;
  min-width: 240px;
  padding: 0 12px;
  text-align: center;
  background-color: #384359;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 5px;
  margin-top: 28px;
}
.filterBg{
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 555;
}
.filterBg.-active{
  display: block;
}
.wrapper_login{
  max-width: 420px;
  padding: 128px 34px 20px 34px;
  margin: auto;
}
.login_logo{
  text-align: center;
  margin-bottom: 52px;
  font-size: 18px;
  font-weight: 600;
}
.login_linkBlock{
  margin: 28px 0 32px;
  padding-bottom: 28px;
}
.login_linkBlock p{
  display: table;
  margin: auto;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  margin-bottom: 7px;
}
.header{
  background-color: #fff;
  border-bottom: 1px solid #f0f1f4;
}
.header_wrapper{
  position: relative;
  display: flex;
  max-width: 1280px;
  padding: 10px 20px;
  margin: auto;
  justify-content: space-between;
}
.logo{
  height: 40px;
  line-height: 40px;
  font-size: 12px;
  font-weight: 600;
}
.menu{
  position: relative;
  width: 30px;
  height: 20px;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  margin-top: 10px;
  cursor: pointer;
}
.menu::before{
  position: absolute;
  content: "";
  top: calc(50% - 1px);
  width: 100%;
  height: 2px;
  background-color: #000;
}
.menu_open {
  display: none;
  position: absolute;
  top: 53px;
  right: 10px;
  width: 250px;
  background-color: #fefefe;
  border-radius: 5px;
  padding: 0;
  box-shadow: 0 0 8px 4px rgb(55 55 55 / 7%);
  border: 1px solid #c2c8d2;
  z-index: 10;
  cursor: default;
  z-index: 9999;
}
.menu_open.-open{
  display: block;
}
.menu_open::before{
  position: absolute;
  content: "";
  top: -8px;
  right: 16px;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fefefe;
  border-left: 8px solid transparent;
  z-index: 50;
}
.menu_open::after{
  position: absolute;
  content: "";
  top: -9px;
  right: 15px;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #c2c8d2;
  border-left: 9px solid transparent;
}
.menu_open li{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #dcdcdc;
  padding: 34px 28px;
  color: #384359;
}
.menu_open li.logout{
  font-weight: 400;
  border-bottom: none;
  padding: 18px 28px;
  transition: .1s;
  color: #171212;
}
.menu_open li.logout:hover{
  transition: .1s;
  background-color: #fafafa;
  cursor: pointer;
}
.wrapper{
  max-width: 1024px;
  width: calc(100% - 10px);
  margin: 10px auto 60px;
}
h2{
  padding: 0 0 0 10px;
  font-size: 21px;
  margin-bottom: 10px;
  margin-top: 8px;
  color: #384359;
  width: 100%;
}
.separate{
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.salesBtn, .addBtn {
  width: 100%;
  padding: 5px;
}
.salesBtn p{
  position: relative;
  background-color: #384359;
  color: #fff;
  padding: 12px 24px 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 5px;
  text-align: center;
}
.addBtn p{
  position: relative;
  background-color: #384359;
  color: #fff;
  padding: 12px 24px 12px 38px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 5px;
  text-align: center;
}
.addBtn p::before{
  position: absolute;
  left: 20px;
  top: 22px;
  content: "";
  width: 12px;
  height: 2px;
  background-color: #fff;
}
.addBtn p::after{
  position: absolute;
  left: 25px;
  top: 17px;
  content: "";
  width: 2px;
  height: 12px;
  background-color: #fff;
}
.tableContainer{
  background-color: #fff;
  padding: 26px 34px 50px;
  border-radius: 2px;
}
table {
  width: 100%;
  font-size: 15px;
  text-align: left;
  border-collapse: collapse;
}
.tableContainer a{
  display: block;
}
thead tr th {
  border-bottom: 1px solid #c2c8d2;
}
tbody tr {
  border-bottom: 1px solid #f0f1f4;
}
th, td {
  white-space: nowrap;
}
th{
  padding: 7px 34px 7px 6px;
  color: #c2c8d2;
  font-size: 12px;
  font-weight: 400;
}
td {
  padding: 26px 34px 26px 6px;
}
.tableContainer.-nameList tr td:first-child{
  font-weight: 600;
}
.tableContainer.-personal table{
  table-layout: fixed;
}
.tableContainer.-personal tr th:first-child,.tableContainer.-personal tr td:first-child{
  width: 200px;
}
.tableContainer.-personal tr td:nth-child(2){
  padding-left: 4px;
}
.tableContainer.-personal tr th:last-child,.tableContainer.-personal tr td:last-child{
  width: 140px;
  padding: 0;
  text-align: center;
}
td.status{
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
td.status::before{
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  margin-top: -1px;
  width: calc(100% - 12px);
  height: 30px;
  border-radius: 15px;
  background-color: #c2c8d2;
  z-index: -5;
}
.btn-close {
  width: auto;
  height: auto;
  border-radius: 8px;
  background-color: #fff;
  border: 0px;
  color: #3b3535;
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 50px;
}
.btn-status {
  width: calc(100% - 12px);
  height: 30px;
  border-radius: 8px;
  background-color: #fcdcdc;
  border: 0px;
  color: #f87e7e;
  display: block;
  margin: 10px auto;
}
.btn-status.in {
  background-color: #6beea6;
  color: #194e2b;
}
.btn-status.out {
  background-color: #8e99f5;
  color: #1d1681;
}
.btn-status.sign {
  background-color: #e1e1e9;
  color: #111113;
}
.btn-in {
  width: 100%;
  height: 50px;
  border-radius: 8px;
  background-color: #c3d2f1;
  border: 0px;
  color: #556ceb;
  font-size: 20px;
}
.btn-out {
  width: 100%;
  height: 50px;
  border-radius: 8px;
  background-color: #fcdcdc;
  border: 0px;
  color: #f87e7e;
}
td.status.status-1::before{
  background-color: #11beae;
}
td.status.status-0{
  color: #f87e7e;
}
td.status.status-0::before{
  background-color: #fcdcdc;
}
.parsonalOut{
  background-color: #f8f9fa;
  padding: 26px 24px 24px;
}
.parsonalOut p{
  font-size: 15px;
}
.parsonalOut p:first-child{
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 7px;
}
.parsonalOut p.tab{
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  margin-top: 11px;
  padding: 9px 14px 7px;
  background-color: #fff;
  border: 1px solid #c2c8d2;
  border-radius: 1px;
}
.pageNavi{
  margin-bottom: 6px;
}
.pageNavi li{
  position: relative;
  display: inline-block;
  font-size: 12px;
  margin-right: 14px;
  color: #384359;
}
.pageNavi li::before{
  position: absolute;
  content: "";
  top: 6px;
  left: -15px;
  border-top: solid 1px #384359;
  border-right: solid 1px #384359;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
}
.pageNavi li:first-child::before{
  display: none;
}
.inputWrapper p{
  font-size: 14px;
  margin-bottom: 4px;
}
.buttonArea {
  display: flex;
  justify-content: flex-start;
  margin-top: 36px;
}
.buttonArea.-between{
  justify-content: space-between;
}
.btn {
  background-color: #384359;
  color: #fff;
  width: 150px;
  text-align: center;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
}
.btn.-save{
  background-color: #11beae;
}
.btn.-cancel{
  background-color: #c2c8d2;
  margin-left: 32px;
}
.btn.-delete{
  color: #f87e7e;
  background-color: inherit;
  padding: 0 12px;
  width: auto;
  line-height: 47px;
  text-decoration: underline;
}
/*-------------------ipad----------------------*/
@media screen and (max-width:1024px){
  .tableContainer {
    padding: 18px 24px 30px;
  }
  .tableContainer.-input{
    padding: 18px 24px 50px;
  }
}
/*-------------------iphone6plus----------------------*/
@media screen and (max-width:768px){
  .tableContainer {
    padding: 0;
  }
  .tableContainer.-input{
    padding: 22px 24px 50px;
  }
  th{
    padding: 7px 34px 7px 26px;
  }
  td {
    padding: 26px 34px 26px 26px;
  }
  .tableContainer.-personal td{
    padding: 26px 12px;
  }
  .tableContainer.-personal th{
    padding: 7px 12px;
  }
  .tableContainer.-personal table{
    table-layout: auto;
  }
  .tableContainer.-personal tr th:first-child, .tableContainer.-personal tr td:first-child {
    width: 160px;
  }
  .tableContainer.-personal tr th:last-child, .tableContainer.-personal tr td:last-child {
    width: 160px;
  }
  .tableContainer.-personal tr th:nth-child(2){
    padding-left: 6px;
  }
  td.status::before{
    width: calc(100% - 38px);
  }
  .buttonArea {
      justify-content: space-between;
  }
}
/*-------------------iphone5S----------------------*/
@media screen and (max-width:414px){
  .tableContainer.-personal tr th:first-child, .tableContainer.-personal tr td:first-child {
    width: auto;
  }
  td.status::before {
    width: calc(100% - 18px);
  }
  .buttonArea{
    display: block;
  }
  .btn {
    width: 100%;
  }
  .btn.-cancel{
    margin-top: 16px;
    margin-left: 0;
  }
  .btn.-delete{
    margin-top: 24px;
  }
}

textarea {
  padding: 5px;
  width: 100%;
  height: 200px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 10px;
}
.time_h {
  width: 75px !important;
}
.time_m {
  width: 75px !important;
}
.time_t {
  width: 100px !important;
}
ul.menu-list {
  display: flex;
}
ul.menu-list li {
  width: 100%;
  text-align: center;
}
ul.menu-list li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px;
  border: 1px solid #fff;
}
.active {
  background: #fff;
}

:root {
  --amplify-primary-color: #354b82;
  --amplify-primary-tint: #354b82;
  --amplify-primary-shade: #354b82;
  --amplify-text-sm: 16px;
}

.date-picker {
  text-align: right;
  padding: 5px;
}
.date-picker input {
  border: 1px solid #666;
  padding: 5px;
  border-radius: 4px;
  font-size: 16px !important;
}

.date-picker .react-datepicker-popper {
  right: 50px !important;
}
.date-picker .react-datepicker__month-text {
  padding: 10px !important;
}

.signature {
  height: 40px;
}

th.del-col {
  width: 10%;
}
th.def-col {
  width: 45%;
}
canvas {
  width: 100% !important;
}

.ReactModal__Overlay,
.konvajs-content {
  touch-action: none;
}