@charset "UTF-8";
/* breakpoint */
/* font-size */
/* animation */
/* z-index */
/* $header-height ヘッダーの高さ */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 55.555%;
  }
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 1.4em;
  min-height: 100vh;
  position: relative;
  left: 0;
  transition: left 0.2s ease-in-out;
  will-change: left;
}
body.menu-open {
  left: 14em;
}
body.menu-open header {
  left: 14em;
}
body.menu-open .main-menu-nav {
  left: 0;
}

main {
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding-top: 3em;
}

h1 {
  font-size: calc(1.4em + 0.6rem);
  font-weight: 600;
}

h2 {
  font-size: calc(1.4em + 0.4rem);
  font-weight: 600;
}

h3 {
  font-size: calc(1.4em + 0.2rem);
  font-weight: 600;
  padding-bottom: 0.5rem;
}

select {
  padding: 0.25rem;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  border-width: 0.8px;
  border-style: solid;
  cursor: pointer;
}
select[disabled] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: auto;
}

button {
  padding: 0.25rem;
  border-width: 0.8px;
  border-style: solid;
  font-weight: 600;
  cursor: pointer;
}

input {
  padding: 0.25rem;
  border-width: 0.8px;
  border-style: solid;
  opacity: 1;
}

input[type=radio] {
  cursor: pointer;
}

input[type=checkbox] {
  cursor: pointer;
}

input[type=color] {
  cursor: pointer;
}

input[type=color]::-webkit-color-swatch-wrapper {
  padding: 0.25rem;
}

input[type=color]::-webkit-color-swatch {
  border-color: #aaa;
}

a {
  text-decoration: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

label:hover {
  opacity: 0.8;
}

label input[type=checkbox] {
  height: 65%;
}

[disabled] {
  pointer-events: none;
}

th,
dt {
  vertical-align: middle;
  padding: 0.25rem;
}

template {
  display: none !important;
}

tbody {
  padding-right: 3px;
}

::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

::-webkit-scrollbar-track {
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
}

.main-container {
  min-width: 1280px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
.main-container.page-fit {
  overflow-y: hidden;
  flex: 1;
  height: 1px;
}
@media screen and (max-width: 1280px) {
  .main-container {
    min-width: 100%;
  }
}

.page-head-title {
  padding: 1em 0.5em 0;
}

.page-head-title-container {
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}

.page-head-title-onclose-btn {
  display: none;
  width: 1.5em;
  justify-content: center;
  border: 0;
  color: #888;
}
@media screen and (max-width: 768px) {
  .page-head-title-onclose-btn {
    display: flex;
  }
}

.section {
  padding: 2em;
  margin: 1.5em;
  border-radius: 4px;
}
@media screen and (max-width: 1280px) {
  .section.over {
    width: -moz-max-content;
    width: max-content;
  }
}
@media screen and (max-width: 768px) {
  .section {
    padding: 0.5em;
    margin: 0.5em;
  }
}

.add-table, .edit-table {
  height: 100%;
}
.add-table thead, .edit-table thead {
  display: block;
}
.add-table tbody, .edit-table tbody {
  display: block;
}
.add-table th, .edit-table th,
.add-table td,
.edit-table td {
  border-width: 1.5px;
  height: 2em;
}
.add-table input, .edit-table input {
  width: 100%;
  height: 100%;
  border-width: 0;
}
.add-table select, .edit-table select {
  width: 100%;
  height: 100%;
  border-width: 0;
}

.page-fit .edit-table-section {
  flex: 1;
  height: 1px;
}

.edit-table-content-container {
  display: inline-block;
  height: calc(100% - 2em);
  flex: 1;
}
@media screen and (max-width: 768px) {
  .edit-table-content-container {
    height: calc(100% - 8.5em);
  }
}

.edit-table-container {
  height: calc(100% - 3em);
}

.edit-table {
  display: block;
}
.edit-table tbody {
  overflow-y: scroll;
  height: calc(100% - 3em);
}
.edit-table tbody tr:first-of-type td {
  border-top-width: 0;
}

.edit-btn-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.edit-update-btn,
.edit-close-btn {
  width: 8em;
  height: 3em;
  text-align: center;
  font-size: calc(1em + 0.2rem);
  box-shadow: 1px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

.layer {
  display: none;
  position: absolute;
  padding: 2em;
  border-width: 2px;
  border-style: solid;
  border-radius: 6px;
  z-index: 3000;
  box-shadow: 4px 6px 8px 8px rgba(80, 80, 80, 0.2);
  border-color: #aaa;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.layer.open {
  display: flex;
  flex-direction: column;
  opacity: 1;
  pointer-events: inherit;
}
.layer .layer-close-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -1px;
  right: -1px;
  border: 0;
  font-size: 1.5em;
  width: 3rem;
  height: 3rem;
  border-radius: 3px;
}
.layer .layer-close-btn:hover {
  opacity: 0.8;
}

.layer-select-tag {
  min-height: 10em;
}
@media screen and (max-width: 768px) {
  .layer-select-tag {
    max-width: initial !important;
    width: 80vw !important;
    left: 10vw !important;
  }
  .layer-select-tag .layer-select-tag-list {
    padding-bottom: 1rem;
  }
  .layer-select-tag .layer-select-tag-item {
    width: 100vw;
  }
}

.layer-select-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  flex: 1;
  width: 100%;
  padding: 0.5rem;
}
.layer-select-tag-list .layer-select-tag-item {
  height: 1.5em;
  display: flex;
  align-items: center;
  border-radius: 4px;
}
.layer-select-tag-list .layer-select-tag-item label {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0.5rem;
  position: relative;
  font-weight: 600;
}
.layer-select-tag-list .layer-select-tag-item .inline-check-box {
  width: 1em;
  height: 1em;
  border-width: 2px;
  border-style: solid;
  border-radius: 3px;
  display: inline-flex;
  vertical-align: text-top;
  margin-right: 0.25rem;
}
.layer-select-tag-list .layer-select-tag-item input[type=checkbox]:checked + .inline-check-box:after {
  content: "";
  width: 90%;
  height: 60%;
  border-left-width: 2px;
  border-left-style: solid;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  transform: rotate(-45deg);
}
.layer-select-tag-list .layer-select-tag-item .layer-select-tag-item-nm {
  flex: 1;
}

.layer-select-tag-add-btn {
  display: flex;
  justify-content: space-around;
  align-items: center;
  align-self: flex-end;
  width: 4.5em;
  height: 2em;
}

.layer-user-info {
  position: fixed;
  top: 3em;
  right: 0;
  width: 18em;
  padding: 1em;
  z-index: 5000;
  box-shadow: -2px 4px 6px 2px rgba(80, 80, 80, 0.2);
}
.layer-user-info h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  background-color: #c4ebf0;
  padding: 0.5rem;
}
.layer-user-info .layer-user-info-list {
  width: 100%;
  margin-bottom: 1rem;
}
.layer-user-info .layer-user-info-list > div {
  display: flex;
  margin-bottom: 0.75rem;
}
.layer-user-info .layer-user-info-list dt {
  display: flex;
  align-items: center;
  width: 8em;
  background-color: transparent !important;
}
.layer-user-info .layer-user-info-list dd {
  flex: 1;
}
.layer-user-info .layer-user-info-list input {
  width: 100%;
  height: 100%;
  border: 0;
  text-align: center;
}
.layer-user-info .layer-user-info-list input:not([type=password]) {
  background-color: transparent !important;
}
.layer-user-info .layer-user-info-list .layer-user-info-pass-container dd {
  display: flex;
}
.layer-user-info .layer-user-info-list .layer-user-info-pass-container dd input[type=password] {
  border: 1px solid #ccc;
  border-right: 0;
  text-align: left;
}
.layer-user-info .layer-user-info-list .layer-user-info-pass-container dd button {
  width: 4em;
  text-align: center;
}
.layer-user-info .layer-user-info-logout-btn {
  height: 2.5em;
  padding: 0;
}
.layer-user-info .layer-user-info-logout-btn a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.layer-user-info .is-auto-login-container {
  position: relative;
}
.layer-user-info .is-auto-login-container dd {
  position: absolute;
  right: 1em;
}
.layer-user-info .is-auto-login-container dd .is-auto-login-toggle {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  opacity: 0;
  cursor: pointer;
}
.layer-user-info .is-auto-login-container dd .is-auto-login-label {
  width: 3em;
  height: 1.5em;
  background: #ccc;
  position: relative;
  display: inline-block;
  border-radius: 1.5em;
  transition: 0.2s;
  box-sizing: border-box;
}
.layer-user-info .is-auto-login-container dd .is-auto-login-label::after {
  content: "";
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  border-radius: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
}
.layer-user-info .is-auto-login-container dd .is-auto-login-toggle:checked + .is-auto-login-label {
  background-color: #41d85d;
}
.layer-user-info .is-auto-login-container dd .is-auto-login-toggle:checked + .is-auto-login-label:after {
  left: 1.5em;
}

section.section-back-color {
  box-shadow: 2px 2px 6px 2px rgba(80, 80, 80, 0.2);
}

/* flatpickr */
.flatpickr-current-month {
  display: flex;
  justify-content: center;
}

.flatpickr-current-month .numInputWrapper {
  width: 4.5em;
  order: 1;
}
.flatpickr-current-month .numInputWrapper:after {
  content: "年";
  position: absolute;
  top: 0.25em;
  right: 1em;
}
.flatpickr-current-month .numInputWrapper .cur-year {
  padding: 0.25rem;
  text-align: left;
}

.flatpickr-monthDropdown-months {
  order: 2;
}

.flatpickr-calendar.hasTime {
  width: 8em;
}

header {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 3em;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4000;
  transition: left 0.2s ease-in-out;
  will-change: left;
  box-shadow: 0px 3px 6px 3px rgba(80, 80, 80, 0.2);
}
header h1 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.page-title {
  text-align: center;
  padding: 0.5em;
}
.page-title.login {
  letter-spacing: 10px;
  font-weight: 900;
}

.main-header-left-container {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  height: 3em;
}

.main-header-right-container {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  height: 3em;
}

.main-header-button {
  width: 3em;
  height: 100%;
}
.main-header-button.menu {
  border-right-width: 0;
}
.main-header-button > a, .main-header-button > i {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-menu-nav {
  display: block;
  position: fixed;
  top: 0;
  left: -14em;
  bottom: 0;
  z-index: 2000;
  width: 14em;
  transition: left 0.2s ease-in-out;
  will-change: left;
}
.main-menu-nav h1.main-menu-nav-title {
  width: 100%;
  height: 3em;
  font-size: 1em;
  text-align: center;
  letter-spacing: 4px;
}
.main-menu-nav h1.main-menu-nav-title span {
  font-size: calc(1em + 0.6rem);
}
.main-menu-nav .main-menu-nav-list > li {
  font-size: calc(1em + 0.2rem);
}
.main-menu-nav .main-menu-nav-list > li:hover:not(.main-menu-nav-innter) > a {
  opacity: 0.8;
}
.main-menu-nav .main-menu-nav-list > li span {
  padding: 0.25rem 0;
}
.main-menu-nav .main-menu-nav-list > li > a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.5rem 1rem;
}
.main-menu-nav .main-menu-nav-list > li > a > i {
  width: 1.75em;
  height: 1.75em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-menu-nav .main-menu-nav-innter {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.main-menu-nav .main-menu-nav-inner-list {
  display: inline-flex;
  flex-direction: column;
  overflow: hidden;
  height: 0;
  transition: height 0.2s ease-out;
  padding-left: 3em;
}
.main-menu-nav .main-menu-nav-innter:hover .main-menu-nav-inner-list {
  height: 4em;
}
.main-menu-nav li.main-menu-nav-inner-item {
  display: flex;
  align-items: center;
  height: 2.25em;
  font-size: calc(1em - 0.2rem);
}
.main-menu-nav li.main-menu-nav-inner-item a {
  display: inline-flex;
  align-items: center;
}
.main-menu-nav li.main-menu-nav-inner-item:hover a {
  opacity: 0.8;
}
.main-menu-nav li.main-menu-nav-inner-item i::after {
  content: "-";
  margin-left: 0.25rem;
}

dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  right: initial;
  bottom: initial;
  margin: 0;
  padding: 3rem;
  z-index: 9999;
  border-radius: 0.5rem;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  dialog {
    width: 80vw;
  }
}

dialog[open] {
  opacity: 1;
  pointer-events: inherit;
}

.dialog {
  box-shadow: 4px 6px 8px 8px rgba(80, 80, 80, 0.2);
}

dialog form {
  text-align: right;
}

dialog form p {
  text-align: left;
  line-height: 1.5;
  margin-bottom: 1rem;
}

dialog button {
  height: 2em;
  padding: 0 1.25em;
  text-align: center;
  box-shadow: 0 1px 2px 0 rgba(80, 80, 80, 0.2);
}

dialog.center-important {
  transform: translate(-50%, -50%) !important;
}

.normal-dialog {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 20em;
  min-height: 6em;
  font-size: calc(1em + 0.2rem);
}
.normal-dialog p {
  text-align: center;
}

.confirm-dialog-yes-btn {
  margin-right: 0.75em;
}

.loading-dialog {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.loading-dialog img {
  width: 4em;
  height: 4em;
  margin-bottom: 1.25em;
}

.login-page main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-page main .login-title-container {
  display: flex;
  flex-direction: column;
  width: 16em;
  margin-top: 1em;
}
.login-page main .login-title {
  margin-top: 1em;
  text-align: center;
}
.login-page main .login-system-version {
  font-size: calc(1em - 0.2rem);
  text-align: center;
}
.login-page main .login-container {
  width: 20em;
  padding: 1em;
  margin-top: 2em;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  border-width: 0.8px;
  border-style: solid;
  box-shadow: 2px 3px 4px 2px rgba(80, 80, 80, 0.2);
}
.login-page main .login-container dt {
  display: flex;
  align-items: center;
  height: 1.75em;
  border-width: 1px;
  border-bottom-width: 0;
}
.login-page main .login-container dt:last-of-type {
  border-top-width: 0;
}
.login-page main .login-container dd {
  height: 2em;
}
.login-page main .login-container dd input {
  width: 100%;
  height: 100%;
}
.login-page main .login-container .login-btn-container {
  margin-top: 1em;
}
.login-page main .login-container .login-btn-container button {
  width: 100%;
  height: 2em;
  text-align: center;
}

.logoff-page .logoff-message-container {
  text-align: center;
  margin-top: 2em;
}
.logoff-page .logoff-message-container .logoff-message {
  display: inline-block;
  font-size: 1em;
  border-bottom: 4px solid #3fb5e5;
  padding-bottom: 0.25rem;
  margin-bottom: 1em;
}
.logoff-page .logoff-message-container .logoff-relogin-message {
  color: #25ad8a;
  font-weight: 600;
  text-decoration: underline;
}

.list-machine .list-search-container {
  display: flex;
}
@media screen and (max-width: 768px) {
  .list-machine .list-search-container {
    flex-direction: column;
    gap: 1em;
  }
}
.list-machine .list-search-condition-list {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  width: 100%;
  font-size: calc(1em + 0.4rem);
}
@media screen and (max-width: 1280px) {
  .list-machine .list-search-condition-list {
    font-size: calc(1em + 0.2rem);
    gap: 0.5em;
  }
}
.list-machine .list-search-condition-list > div {
  display: flex;
  min-height: 1.75em;
  border-width: 0.8px;
  border-style: solid;
}
.list-machine .list-search-condition-list > div dt {
  display: flex;
  align-items: center;
  padding-right: 2rem;
  border-right: 1px solid;
  width: 8em;
}
.list-machine .list-search-condition-list > div dd {
  display: flex;
  flex: 1;
}
.list-machine .list-search-condition-list > div input,
.list-machine .list-search-condition-list > div select {
  width: 100%;
  border-width: 0;
}
.list-machine .list-search-condition-list > div button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.75em;
  border-width: 0;
  border-left: 1px solid;
}
.list-machine .list-search-wrap-box {
  flex: 1;
  visibility: hidden;
}
.list-machine .list-search-btn-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 2em;
}
@media screen and (max-width: 768px) {
  .list-machine .list-search-btn-container {
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-left: 0;
  }
}
.list-machine .list-search-btn, .list-machine .list-delete-search-param-btn {
  width: 6rem;
  height: 6rem;
  align-self: flex-end;
  font-size: calc(1em + 1.4rem);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 1px 2px 2px 1px rgba(80, 80, 80, 0.2);
}
.list-machine .list-search-btn span, .list-machine .list-delete-search-param-btn span {
  display: none;
}
@media screen and (max-width: 768px) {
  .list-machine .list-search-btn, .list-machine .list-delete-search-param-btn {
    width: 60%;
  }
  .list-machine .list-search-btn span, .list-machine .list-delete-search-param-btn span {
    display: inline-block;
    margin-left: 0.5rem;
  }
}
.list-machine .list-delete-search-param-btn:hover {
  color: white;
  background-color: #e4535a;
}
.list-machine .list-delete-search-param-btn i {
  font-size: calc(1em + 0.2rem);
}
@media screen and (max-width: 768px) {
  .list-machine .list-delete-search-param-btn {
    width: 35%;
  }
}
.list-machine div.list-search-category {
  min-width: 30%;
  flex: 1;
}
.list-machine div.list-search-category ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  width: 100%;
  padding: 0.25rem;
}
.list-machine div.list-search-category ul li {
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  font-size: calc(1em - 0.2rem);
}
@media screen and (max-width: 1280px) {
  .list-machine div.list-search-category {
    min-width: 100%;
  }
}
.list-machine .list-search-move dd {
  min-width: 8em;
}
@media screen and (max-width: 1280px) {
  .list-machine .list-search-move {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .list-machine .list-search-move {
    width: 100%;
  }
}
.list-machine .list-search-user dd {
  min-width: 8em;
}
@media screen and (max-width: 1280px) {
  .list-machine .list-search-user {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .list-machine .list-search-user {
    width: 100%;
  }
}
.list-machine .list-search-date-view dd {
  min-width: 8em;
}
@media screen and (max-width: 1280px) {
  .list-machine .list-search-date-view {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .list-machine .list-search-date-view {
    width: 100%;
  }
}
.list-machine .list-search-is-disabled dd {
  width: 4rem;
}
.list-machine .list-search-is-disabled dd label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.list-machine .list-search-is-disabled dd input {
  width: 1em;
}
.list-machine .list-search-keyword {
  flex: 1;
  min-width: 80%;
}
.list-machine .list-machine-table {
  width: 100%;
}
.list-machine .list-machine-table th {
  border-width: 0.8px;
  border-style: solid;
}
.list-machine .list-machine-table td {
  border-width: 0.8px;
  border-style: solid;
}
.list-machine .list-machine-table td input {
  width: 100%;
  height: 100%;
  border-width: 0;
}
.list-machine .list-machine-table .list-machine-table-machine-nm {
  width: 28em;
}
.list-machine .list-machine-table .list-machine-table-location-nm {
  width: 28em;
}
.list-machine .list-machine-table .list-machine-table-move-date {
  width: 10em;
}
.list-machine .list-machine-table .list-machine-table-short-nm {
  width: 7em;
}
.list-machine .list-machine-table-flex {
  width: 100%;
}
.list-machine .list-machine-table-flex thead {
  display: none;
}
.list-machine .list-machine-table-flex tbody {
  display: flex;
  justify-content: space-around;
  gap: 1em;
  flex-wrap: wrap;
}
.list-machine .list-machine-table-flex tr {
  border-width: 2px;
  min-width: 18em;
  max-width: 15%;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0px 2px 6px 2px rgba(80, 80, 80, 0.2);
}
.list-machine .list-machine-table-flex tr:hover .list-machine-table-machine-nm input {
  color: black !important;
}
.list-machine .list-machine-table-flex tr * {
  cursor: pointer;
}
@media screen and (max-width: 1280px) {
  .list-machine .list-machine-table-flex tr {
    width: 30%;
  }
}
@media screen and (max-width: 1024px) {
  .list-machine .list-machine-table-flex tr {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .list-machine .list-machine-table-flex tr {
    width: 100%;
    max-width: 100%;
  }
}
.list-machine .list-machine-table-flex tr .list-machine-table-machine-nm,
.list-machine .list-machine-table-flex tr .list-machine-table-location-nm,
.list-machine .list-machine-table-flex tr .list-machine-table-move-memo {
  width: 100%;
}
.list-machine .list-machine-table-flex tr .list-machine-table-move-date {
  width: 60%;
}
.list-machine .list-machine-table-flex tr .list-machine-table-short-nm {
  width: 40%;
}
.list-machine .list-machine-table-flex input {
  background-color: transparent;
  width: 100%;
  height: 100%;
  border-width: 0;
}
.list-machine .list-machine-table-flex .list-machine-table-machine-nm input {
  font-weight: 600;
}

.entry-move-machine .entry-move-machine-base-machine-container {
  display: flex;
  font-size: calc(1em + 0.4rem);
}
@media screen and (max-width: 768px) {
  .entry-move-machine .entry-move-machine-base-machine-container {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .entry-move-machine .entry-move-machine-base-machine-container input {
    width: 100%;
  }
}
.entry-move-machine .entry-move-machine-base-machine-container .base-machine-nm {
  width: 20em;
  margin-left: -1px;
}
@media screen and (max-width: 768px) {
  .entry-move-machine .entry-move-machine-base-machine-container .base-machine-nm {
    width: 100%;
    margin-left: 0;
  }
}
.entry-move-machine .entry-move-machine-move-date {
  width: 12em;
}
.entry-move-machine .entry-move-machine-move-date-container {
  width: 100%;
  height: 100%;
  display: flex;
}
.entry-move-machine .entry-move-machine-move-date-container input.js-flatpickr-ymd {
  width: 8em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .entry-move-machine .entry-move-machine-move-date-container input.js-flatpickr-ymd {
    padding: 0;
  }
}
.entry-move-machine .entry-move-machine-move-date-container input.js-flatpickr-time {
  width: calc(4em - 0.8px);
  text-align: center;
  border-left-width: 0.8px;
}
@media screen and (max-width: 1280px) {
  .entry-move-machine .entry-move-machine-move-date-container input.js-flatpickr-time {
    border-left-width: 0;
  }
}
@media screen and (max-width: 768px) {
  .entry-move-machine .entry-move-machine-move-date-container input.js-flatpickr-time {
    width: calc(5em - 0.8px);
    padding: 0;
    transform: translateX(0.8px);
  }
}
.entry-move-machine .entry-move-machine-move-date-container input::-webkit-calendar-picker-indicator {
  display: none;
}
.entry-move-machine .entry-move-machine-move-cd {
  min-width: 7.75em;
  max-width: 7.75em;
}
.entry-move-machine .entry-move-machine-location-nm {
  width: 18em;
}
.entry-move-machine .entry-move-machine-move-memo {
  width: 18em;
}
.entry-move-machine .entry-move-machine-userid {
  width: 10em;
}
.entry-move-machine .entry-move-machine-control {
  width: 4em;
  text-align: center;
}
.entry-move-machine .entry-move-machine-control button {
  width: 100%;
  height: 100%;
  border: 0;
}
@media screen and (max-width: 1280px) {
  .entry-move-machine section {
    width: -moz-max-content;
    width: max-content;
  }
}
@media screen and (max-width: 1024px) {
  .entry-move-machine .main-container {
    overflow: initial;
  }
  .entry-move-machine section {
    width: initial;
  }
  .entry-move-machine .edit-table-section {
    height: auto;
  }
  .entry-move-machine .edit-table-content-container {
    width: 100%;
  }
  .entry-move-machine .edit-table-container {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }
  .entry-move-machine .add-table, .entry-move-machine .edit-table {
    width: 100%;
  }
  .entry-move-machine .edit-table {
    width: 100%;
  }
  .entry-move-machine .edit-table thead {
    display: none;
  }
  .entry-move-machine .edit-table tbody {
    overflow-y: hidden;
  }
  .entry-move-machine .entry-move-machine-row {
    display: grid;
    height: auto;
    grid-template-columns: auto minmax(10em, 10em);
    grid-template-rows: auto auto auto auto;
    gap: 0.75rem;
    padding: 1rem;
    border-width: 0.8px;
    margin-bottom: 1rem;
    border-radius: 3px;
    box-shadow: 2px 2px 3px 2px rgba(80, 80, 80, 0.2);
  }
}
@media screen and (max-width: 1024px) and (max-width: 768px) {
  .entry-move-machine .entry-move-machine-row {
    grid-template-columns: auto minmax(8em, 8em);
  }
}
@media screen and (max-width: 1024px) {
  .entry-move-machine .entry-move-machine-row td {
    width: 100%;
    border-width: 0;
  }
  .entry-move-machine .entry-move-machine-row td input {
    border-bottom-width: 0.8px;
    border-bottom-color: #ccc;
  }
}
@media screen and (max-width: 1024px) {
  .entry-move-machine .entry-move-machine-row .entry-move-machine-location-nm {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .entry-move-machine .entry-move-machine-row .entry-move-machine-location-nm input {
    font-size: calc(1em + 0.2rem);
  }
}
@media screen and (max-width: 1024px) {
  .entry-move-machine .entry-move-machine-row .entry-move-machine-move-cd {
    grid-column: 2/3;
    grid-row: 1/2;
    min-width: initial;
    max-width: initial;
    width: 100%;
    border-bottom-width: 0.8px;
    border-bottom-color: #ccc;
  }
}
@media screen and (max-width: 1024px) {
  .entry-move-machine .entry-move-machine-row .entry-move-machine-move-date-ymd {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
@media screen and (max-width: 1024px) {
  .entry-move-machine .entry-move-machine-row .entry-move-machine-userid {
    grid-column: 2/3;
    grid-row: 2/3;
    min-width: initial;
    max-width: initial;
    width: 100%;
    border-bottom-width: 0.8px;
    border-bottom-color: #ccc;
  }
}
@media screen and (max-width: 1024px) {
  .entry-move-machine .entry-move-machine-row .entry-move-machine-move-memo {
    grid-column: 1/3;
    grid-row: 3/4;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .entry-move-machine .entry-move-machine-row .entry-move-machine-control {
    grid-column: 2/3;
    grid-row: 4/5;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    border-width: 0.8px;
    border-color: #ccc;
  }
}

.edit-user .edit-user-table-user-cd {
  width: 6.5em;
}
.edit-user .edit-user-table-user-nm {
  width: 14em;
}
.edit-user .edit-user-table-short-nm {
  width: 4em;
}
.edit-user .edit-user-table-login-nm {
  width: 10em;
}
.edit-user .edit-user-table-login-pass {
  width: 10em;
}
.edit-user .edit-user-table-user-lev {
  width: 9em;
}
.edit-user .edit-user-table-mail {
  width: 14em;
}
.edit-user .edit-user-table-is-send-mail {
  width: 3em;
}
.edit-user .edit-user-table-is-send-mail input {
  width: 1.25em;
}
.edit-user td.edit-user-table-is-send-mail label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.edit-user .edit-user-table-user-is-disabled {
  width: 3em;
}
.edit-user .edit-user-table-user-is-disabled input {
  width: 1.25em;
}
.edit-user td.edit-user-table-user-is-disabled label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.edit-user .edit-user-table-user-control {
  width: 3em;
}
.edit-user .edit-user-table-user-control button {
  width: 100%;
  height: 100%;
  text-align: center;
  border-width: 0;
}
.edit-user .edit-user-table-control button {
  width: 100%;
  height: 100%;
  border: 0;
}

.edit-machine .edit-machine-table-machine-cd {
  min-width: 12em;
  max-width: 12em;
}
.edit-machine .edit-machine-table-machine-nm {
  min-width: 18em;
  max-width: 18em;
}
.edit-machine .edit-machine-table-back-color {
  width: 4em;
}
.edit-machine .edit-machine-table-large-cd {
  width: 10em;
}
.edit-machine .edit-machine-table-middle-cd {
  width: 10em;
}
.edit-machine .edit-machine-table-small-cd {
  width: 10em;
}
.edit-machine .edit-machine-table-start-day {
  width: 8.5em;
}
.edit-machine .edit-machine-table-end-day {
  width: 8.5em;
}
.edit-machine .edit-machine-table-is-disabled {
  width: 3em;
}
.edit-machine td.edit-machine-table-is-disabled label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.edit-machine td.edit-machine-table-is-disabled input {
  width: 1.25em;
}
.edit-machine .edit-machine-table-control {
  width: 3em;
}
.edit-machine .edit-machine-table-control button {
  width: 100%;
  height: 100%;
  text-align: center;
  border-width: 0;
}

.edit-category .add-table-section {
  height: 10em;
}
.edit-category .add-table-section .edit-category-order {
  display: none;
}
.edit-category .edit-table-container {
  height: initial;
  margin-bottom: 2em;
}
.edit-category .edit-table tbody {
  overflow-y: hidden;
  height: initial;
}
.edit-category th.edit-category-order {
  visibility: hidden;
  border-width: 0;
}
.edit-category .edit-category-order {
  width: 2em;
  border-width: 0;
}
.edit-category .edit-category-order button {
  width: 100%;
  height: 100%;
  text-align: center;
  border-width: 0;
}
.edit-category .edit-category-order button:hover i {
  font-size: calc(1em + 0.2rem);
}
.edit-category .edit-category-select-cd {
  width: 10em;
  display: none;
}
.edit-category .edit-category-cd {
  width: 10em;
}
.edit-category .edit-category-nm {
  width: 24em;
}
.edit-category .edit-category-color {
  width: 4em;
}
.edit-category table:not([data-add_table=move], [data-edit_table=move]) .edit-category-color {
  display: none;
}
.edit-category .edit-category-is-disabled {
  width: 3em;
}
.edit-category td.edit-category-is-disabled label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.edit-category td.edit-category-is-disabled input {
  width: 1.25em;
}
.edit-category .edit-category-control {
  width: 3em;
}
.edit-category .edit-category-control button {
  width: 100%;
  height: 100%;
  text-align: center;
  border-width: 0;
}

.edit-color .edit-color-list-container {
  display: inline-block;
}
.edit-color .edit-color-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 2em;
  margin-bottom: 1em;
}
.edit-color .edit-color-list > div {
  display: flex;
  box-shadow: 2px 3px 4px 2px rgba(80, 80, 80, 0.2);
}
.edit-color .edit-color-list > div dt {
  display: flex;
  align-items: center;
  width: 20em;
  border-width: 1px;
  border-right-width: 0;
}
.edit-color .edit-color-list > div input {
  width: 3em;
}

.edit-mail .edit-mail-list-container {
  display: inline-block;
}
.edit-mail .edit-mail-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin: 1em 0;
}
.edit-mail .edit-mail-list select {
  width: 100%;
  height: 100%;
}
.edit-mail .edit-mail-list > div {
  display: flex;
  font-size: calc(1em + 0.2rem);
}
.edit-mail .edit-mail-list > div dt {
  display: flex;
  align-items: center;
  width: 12em;
  border-width: 1px;
  border-right-width: 0;
}
.edit-mail .edit-mail-list > div dd {
  width: 30em;
}
.edit-mail .edit-mail-list > div dd input {
  width: 100%;
}/*# sourceMappingURL=common.css.map */