.mobile-disclaimer {
  position: absolute;
  top: 70px;
  color: rgb(0, 0, 0);
  display: none;
}
@media screen and (max-width: 700px) {
  .mobile-disclaimer {
    display: block;
  }
}

section {
  min-width: 1660;
}
@media screen and (max-width: 1440px) {
  section {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  section .table-container {
    width: 90vw;
  }
}

hr {
  width: 100%;
}

.button-highlight {
  border-radius: 10px;
  color: white;
  background-color: #FE9D00;
  font-size: 22px;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.2), inset 0 8px 14px rgba(0, 0, 0, 0.2);
}

button, select, input {
  border: 1px solid white;
  height: 35px;
  cursor: pointer;
  padding: 3px 5px;
  -moz-box-sizing: border-box;
  border-radius: 10px;
  white-space: nowrap;
}

.pseudo-select-parent {
  position: absolute;
  background: white;
  width: -moz-fit-content;
  width: fit-content;
  height: 200px;
  overflow-y: scroll;
}
.pseudo-select-parent option {
  cursor: pointer;
}
.pseudo-select-parent option:hover {
  background-color: cyan;
}

.schedule_popup_overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.25);
}
.schedule_popup_overlay .schedule_popup_window {
  width: 580px;
  height: 350px;
  margin: auto;
  margin-top: auto;
  background-color: white;
  position: relative;
  margin-top: 310px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 700px) {
  .schedule_popup_overlay .schedule_popup_window {
    width: 80vw;
  }
}
.schedule_popup_overlay .schedule_popup_window .schedule_popup_top {
  width: 100%;
  height: 30px;
  background-color: aquamarine;
  border-radius: 10px 10px 0 0;
}
.schedule_popup_overlay .schedule_popup_window #schedule_text {
  height: fit-content;
  font-size: 30px;
  margin: 5px;
  text-align: center;
}
.schedule_popup_overlay .schedule_popup_window .schedule-container {
  height: 94%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  overflow-x: hidden;
}
.schedule_popup_overlay .schedule_popup_window .schedule-container .time_container {
  text-align: center;
  font-size: 30px;
  display: flex;
  gap: 10px;
}
.schedule_popup_overlay #schedule_room {
  margin-top: 5px;
  font-size: 25px;
}
.schedule_popup_overlay .member_list_container {
  margin-top: 10px;
}
.schedule_popup_overlay .member_list_container h3 {
  font-size: 25px;
  margin-bottom: 15px;
}
.schedule_popup_overlay .member_list_container ol {
  text-align: center;
  font-size: 20px;
}

.contents-container {
  width: 100%;
}
.contents-container .dashboard-container {
  margin: 0px 3%;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 30px;
  min-height: 115px;
}
.contents-container .dashboard-container .card-wrapper {
  max-width: 30%;
  flex: auto;
  position: relative;
}
.contents-container .dashboard-container .card-wrapper i {
  position: absolute;
  right: 10px;
  bottom: 8px;
  font-size: 80px;
  opacity: 0.14;
}
.contents-container .dashboard-container .card-wrapper .card-contents {
  background-color: #FE9D00;
  border: 1px solid;
  height: 100%;
  padding: 0 20px;
  color: black;
}
.contents-container .dashboard-container .card-wrapper .card-contents span {
  display: -webkit-box;
  word-break: break-all;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.contents-container .dashboard-container .card-wrapper .card-contents h2 {
  padding: 9px 0 0px;
  font-size: 19px;
  display: -webkit-box;
  word-break: break-all;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.contents-container .dashboard-container .card-wrapper .card-contents .card-value {
  font-size: 30px;
}
.contents-container .dashboard-container .card-wrapper:visited, .contents-container .dashboard-container .card-wrapper:link {
  text-decoration: none;
  color: black;
}

@media screen and (max-width: 700px) {
  .contents-container .dashboard-container {
    flex-direction: column;
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    margin: 0px 2vw;
    gap: 4vw;
  }
  .contents-container .dashboard-container .card-wrapper {
    max-width: initial;
    width: 100%;
    height: 100px;
  }
  .contents-container .dashboard-container .card-wrapper i {
    right: 2vw;
    bottom: 1.1vw;
    font-size: 18vw;
  }
  .contents-container .dashboard-container .card-wrapper .card-contents {
    font-size: 4.2vw;
    padding: 0 3vw;
  }
  .contents-container .dashboard-container .card-wrapper .card-contents h2 {
    font-size: 4.5vw;
    padding: 1vw 0 0px;
  }
  .contents-container .dashboard-container .card-wrapper .card-contents .card-valud {
    font-size: 7vw;
  }
}
button.button-success {
  box-shadow: inset 0 8px 14px rgba(0, 0, 0, 0.2);
  background-color: rgb(108, 199, 255);
  cursor: default;
}
button.button-inactive {
  background-color: white;
  color: grey;
  cursor: pointer;
}
button.button-default {
  cursor: pointer;
  background-color: white;
}
button.button-active {
  cursor: pointer;
  box-shadow: inset 0 8px 14px rgba(0, 0, 0, 0.2);
  background-color: #eb9100;
}

select, input {
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.2), inset 0 8px 14px rgba(0, 0, 0, 0.2);
}

.company-icon {
  height: 72%;
  border-radius: 10px;
  border: 1px solid #fff;
  box-shadow: 3px 3px 6px #cccccc, -3px -3px 6px #ffffff;
  margin-right: 20px;
}

header {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  pointer-events: none;
}
header .logout-parent {
  justify-content: end !important;
}
header .logout-parent li {
  border-left: 1px solid black;
  border-right: 0 !important;
}
header .header-parent {
  pointer-events: all;
  position: relative;
  top: 0;
  width: 100%;
  height: 70px;
  background-color: white;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  overflow-x: auto;
}
header .header-parent ul {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  box-sizing: border-box;
  width: fit-content;
}
header .header-parent ul li {
  border-right: 1px solid;
  position: relative;
}
header .header-parent ul li .notification_icon {
  width: 15px;
  aspect-ratio: 1;
  display: block;
  background-color: #b4ffa4;
  position: absolute;
  border-radius: 300px;
  right: 10px;
  top: 10px;
}
header .header-parent ul li:hover {
  border: 1px solid #fc9b00;
  z-index: 2;
}
header .header-parent ul li a {
  text-decoration: none;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  flex-direction: column;
  gap: 6px;
  font-family: "Noto Sans JP", sans-serif;
}
header .header-parent ul li a i {
  font-size: 25px;
  color: rgba(0, 0, 0, 0.35);
}
header .header-parent ul li.active a {
  background-color: #e68e00;
}
header .header-parent ul li.active a i {
  color: white;
}
header .header-parent ul li.active a span {
  color: white;
}

header .header-parent ul li a:link, header .header-parent ul li a:visited {
  color: inherit;
}

#alert {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  top: 0;
  z-index: 101;
  pointer-events: none;
}
#alert .alert-container {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: white;
  top: -100px;
  padding: 20px;
  border: 1px solid gainsboro;
  border-radius: 11px;
  gap: 9px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}
#alert .alert-container.active {
  top: 30px;
}
#alert .alert-container .alert-instance {
  display: none;
}
#alert .alert-container .alert-instance.active {
  display: initial;
}

body {
  background-color: #f3f3f3;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

#top {
  background-color: #f3f3f3;
}
#top .top-container {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 150px 150px 60px;
  flex-direction: row;
  justify-content: center;
  height: 47px;
}
#top .top-container .date {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  grid-row: 1;
  grid-column: 2;
  height: inherit;
}
#top .top-container .date h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 44px;
  white-space: nowrap;
}
#top .top-container .button-container {
  display: flex;
  justify-content: center;
  grid-column: 3;
  align-items: center;
}

@media screen and (max-width: 1440px) {
  #top .top-container {
    flex-direction: column;
    align-items: center;
    display: grid;
    grid-auto-rows: auto;
    align-content: center;
    justify-items: center;
  }
  #top .top-container .search-container {
    width: -moz-fit-content;
    width: fit-content;
    justify-content: center;
    grid-column: 2 !important;
    grid-row: 2;
  }
  #top .top-container .date {
    grid-row: 1;
    grid-column: 2 !important;
  }
  #top .top-container .button-container {
    grid-row: 3;
    grid-column: 2 !important;
  }
}
#top .top-container .search-container {
  display: flex;
  flex-direction: row;
  gap: 5px;
  min-width: 30%;
  grid-column: 1;
  justify-content: center;
  align-items: center;
  width: fit-content;
  position: relative;
  z-index: 1;
}

#top .top-container .search-container button .button-highlight, #top .top-container .search-container select .button-highlight, #top .top-container .search-container input .button-highlight {
  width: 90px;
}

#page-main {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: #f3f3f3;
}
#page-main .config-container {
  min-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 50px auto;
  width: 40%;
  padding: 20px 15px;
  background-color: #e3e3e3;
  border: 1px solid;
  gap: 10px;
}
#page-main .config-container #approver_toggle {
  height: 30px;
}
#page-main .config-container .config-section {
  width: 80%;
  margin-bottom: 20px;
}
#page-main .config-container .config-section textarea {
  max-width: 100%;
}
#page-main .config-container .config-section span {
  font-size: 20px;
  color: black;
  margin-bottom: 20px;
  display: block;
}
#page-main .config-container .config-section .filter-box {
  width: 160px;
  position: relative;
}
#page-main .config-container .config-section .table-container {
  height: 400px;
  box-shadow: inset 0 8px 14px rgba(0, 0, 0, 0.2);
  flex-direction: row;
  margin: 0;
  display: flex;
}
#page-main .config-container .config-section .table-container table {
  min-width: 0;
}
#page-main .config-container .config-section .table-container thead {
  box-shadow: inset 0 8px 14px rgba(0, 0, 0, 0.2);
}
#page-main .config-container .config-section .search-container {
  display: flex;
}
#page-main .table-container {
  max-height: 570px;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 30px;
  overflow-y: scroll;
  overflow-x: auto;
  border-bottom: 1px solid;
}
#page-main .table-container table {
  width: auto;
  min-width: 1620px;
  overflow-x: auto;
  white-space: nowrap;
  table-layout: fixed;
  display: table;
  height: -moz-fit-content;
  height: fit-content;
}
#page-main .table-container table thead {
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: #f2f2f2;
  border: 1px solid;
  border-top: 0;
}
#page-main .table-container table thead .th-sticky-vertical {
  position: sticky;
  min-width: 120px;
  background-color: white;
}
#page-main .table-container table .highlight-column {
  box-shadow: inset 10px 0 15px rgba(0, 0, 0, 0.1), inset -10px 0 15px rgba(0, 0, 0, 0.1);
}
#page-main .table-container table tbody tr {
  border-bottom: 1px solid;
}
#page-main .table-container table tbody .highlight-row {
  box-shadow: inset 10px 0 15px rgba(0, 0, 0, 0.1), inset -10px 0 15px rgba(0, 0, 0, 0.1);
}
#page-main .table-container table tbody .tr-hover {
  z-index: 1;
}
#page-main .table-container table tbody .tr-hover th {
  position: sticky;
  left: 0;
  white-space: nowrap;
  min-width: 140px;
  border: 1px solid;
  background-color: white !important;
  z-index: 1;
}
#page-main .table-container table tbody .tr-hover th:nth-of-type(2) {
  left: 140px;
  min-width: 80px;
}
#page-main .table-container table tbody .tr-hover th:nth-of-type(3) {
  left: 220px;
  min-width: 80px;
}
#page-main .table-container table tbody .tr-hover th div {
  display: flex;
  justify-content: start;
  align-items: center;
}
#page-main .table-container table tbody .tr-hover th div img {
  margin-right: 5px;
  margin-left: 5px;
  height: 21px;
}
#page-main .table-container table tbody .tr-hover:hover {
  outline: 2px solid;
}
#page-main .table-container table tbody .tr-hover:hover td, #page-main .table-container table tbody .tr-hover:hover th {
  box-shadow: inset 0 5px 5px rgba(0, 0, 0, 0.1), inset 0 -5px 5px rgba(0, 0, 0, 0.1);
}
#page-main .table-container table tbody td {
  border-right: 1px solid;
}
#page-main .table-container table tbody td:nth-of-type(1) {
  border-left: 1px solid;
}
#page-main .table-container table tbody td .company-icon {
  margin-right: 0;
}

#page-main .table-container table thead tr th p {
  color: grey;
  font-size: 15px;
}

#page-main .config-container .config-section input, #page-main .config-container .config-section select {
  width: 100%;
}

#page-main .config-container .config-section input[type=checkbox], #page-main .config-container .config-section select[type=checkbox] {
  height: 100%;
  width: initial;
  aspect-ratio: 1;
  max-height: 20px;
}

#page-main .config-container .config-section .filter-box select, #page-main .config-container .config-section .filter-box input {
  width: 150px;
}

#page-main .config-container .config-section .filter-box select .filter-container, #page-main .config-container .config-section .filter-box input .filter-container {
  position: fixed;
}

#page-main .config-container .config-section .search-container input, #page-main .config-container .config-section .search-container select {
  width: 200px;
}

#page-main .table-container table thead tr:last-child, #page-main .table-container table tbody tr:last-child {
  border-bottom: none;
}

#page-main .table-container table thead tr th, #page-main .table-container table tbody tr th {
  min-width: -moz-fit-content;
  min-width: fit-content;
  border-right: 1px solid;
  font-size: 17.5px;
}

#page-main .table-container table thead tr .th-flex, #page-main .table-container table tbody tr .th-flex {
  width: initial;
}

#page-main .table-container table thead tr .th-tiny, #page-main .table-container table tbody tr .th-tiny {
  width: 30px;
}

#page-main .table-container table thead tr .th-small, #page-main .table-container table tbody tr .th-small {
  width: 70px;
}

#page-main .table-container table thead tr .th-medium, #page-main .table-container table tbody tr .th-medium {
  width: 110px;
}

#page-main .table-container table thead tr .th-large, #page-main .table-container table tbody tr .th-large {
  width: 160px;
}

#page-main .table-container table thead tr .th-extra-large, #page-main .table-container table tbody tr .th-extra-large {
  width: 280px;
}

#page-main .table-container table thead tr th, #page-main .table-container table thead tr td, #page-main .table-container table tbody tr th, #page-main .table-container table tbody tr td {
  vertical-align: top;
  text-align: center;
  min-height: 30px;
  height: -moz-fit-content;
  height: fit-content;
  word-break: break-all;
}

#page-main .table-container table thead th:nth-of-type(2n), #page-main .table-container table thead td:nth-of-type(2n), #page-main .table-container table tbody th:nth-of-type(2n), #page-main .table-container table tbody tr td:nth-of-type(2n) {
  background-color: hwb(0 78.4% 21.6%/0.31);
}

#page-main .table-container table thead tr th div, #page-main .table-container table thead tr td div, #page-main .table-container table tbody tr th div, #page-main .table-container table tbody tr td div {
  display: -webkit-box;
  word-break: break-all;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-box-orient: vertical;
  white-space: normal;
}

#page-main .table-container table thead tr th.th-name, #page-main .table-container table thead tr td.th-name, #page-main .table-container table tbody tr th.th-name, #page-main .table-container table tbody tr td.th-name {
  width: 6em;
  white-space: initial;
}

#page-main .table-container table thead tr th div, #page-main .table-container table tbody tr th div {
  border: 1px solid;
  border-left: 0;
  height: 100%;
  width: 100%;
}

#page-main .table-container table thead tr th:last-of-type, #page-main .table-container table tbody tr th:last-of-type {
  border-right: 0;
}

#page-main .table-container table thead tr th:first-of-type, #page-main .table-container table tbody tr th:first-of-type {
  border-left: 0;
}

#page-main .table-container table thead tr td, #page-main .table-container table tbody tr td {
  padding: 5px;
  height: 30px;
}

#page-main .table-container table thead tr td input[type=checkbox], #page-main .table-container table tbody tr td input[type=checkbox] {
  height: 70%;
  width: initial;
  aspect-ratio: 1;
}

#page-main .table-container table tbody.table-horizontal tr.schedulle-holiday {
  background-color: pink !important;
}
#page-main .table-container table tbody.table-horizontal tr.schedulle-holiday div, #page-main .table-container table tbody.table-horizontal tr.schedulle-holiday td {
  background-color: pink !important;
}
#page-main .table-container table tbody.table-horizontal .schedule-block {
  background-color: rgb(255, 150, 99);
  border-left: 0;
  border-right: 0;
  max-width: 10px !important;
}
#page-main .table-container table tbody.table-horizontal .schedule-block div {
  -webkit-line-clamp: 1 !important;
}
#page-main .table-container table tbody.table-horizontal .schedule-block.schedule-start {
  border-right: 0 !important;
  border-left: 1px solid !important;
}
#page-main .table-container table tbody.table-horizontal .schedule-block.schedule-end {
  border-left: 0 !important;
  border-right: 1px solid !important;
}
#page-main .table-container table tbody.table-horizontal .schedule-block.schedule-single {
  border-right: 1px solid !important;
  border-left: 1px solid !important;
}

/*# sourceMappingURL=common.css.map */
