@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure, dd, dt, time {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
  display: inline-block;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

body {
  font-family: "Helvetica", "Arial", sans-serif;
  background-color: #ddd;
  margin: 0;
  font-weight: 400;
  font-style: normal;
}

.header {
  width: 100%;
  height: 70px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px;
  position: relative;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 500;
}
.header .title {
  height: 45px;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .title form {
  height: 100%;
  width: 100%;
}
.header .title form button {
  height: 100%;
  width: 100%;
  background-color: transparent;
  cursor: pointer;
}
.header .title form img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header .links {
  position: absolute;
  left: 50%;
  translate: -50% 0;
}
.header .page-links {
  margin-left: auto;
}
.header .links,
.header .page-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.header .links a,
.header .page-links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  background-color: #fff;
  color: #858589;
  height: 60px;
  width: 70px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .links a i,
.header .page-links a i {
  font-size: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .links a img,
.header .page-links a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .links a::after,
.header .page-links a::after {
  content: attr(data-title);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  display: inline-block;
}
.header .links a:hover,
.header .page-links a:hover {
  color: #24688d;
  opacity: 0.8;
}
.header .links a.active,
.header .page-links a.active {
  color: #24688d;
}

.content {
  padding: 0 20px;
  max-width: 1400px;
  margin: 20px auto 60px;
  text-align: center;
  position: relative;
}

footer {
  position: fixed;
  z-index: 50;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 40px;
  background-color: #fff;
  color: #24688d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px;
  -webkit-box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
  font-weight: 600;
}
footer .storage {
  font-size: 14px;
  -webkit-animation: shrinkToNormal 6s ease-out infinite;
          animation: shrinkToNormal 6s ease-out infinite;
}

@-webkit-keyframes shrinkToNormal {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  20% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}

@keyframes shrinkToNormal {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  20% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
.full_block {
  height: calc(100vh - 130px);
  width: 100vw;
  margin: -20px calc(50% - 50vw) -60px;
}
.full_block.build {
  height: 100%;
  min-height: calc(100vh - 110px);
}

.auto_build {
  position: fixed;
  z-index: 900;
  top: 50%;
  left: 240px;
  translate: 0 -50%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-height: calc(100vh - 200px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow: auto;
  padding: 40px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 6px rgba(34, 34, 34, 0.4);
          box-shadow: 0px 0px 6px rgba(34, 34, 34, 0.4);
}
.auto_build button {
  background-color: #24688d;
  color: #fff;
  font-size: 14px;
  border: 1px solid #858589;
  border-radius: 4px;
  padding: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 2px;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  overflow: auto;
  min-height: 75px;
  max-height: 75px;
  cursor: pointer;
}
.auto_build button:hover {
  opacity: 0.6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.auto_build button span {
  white-space: nowrap;
}

.auto-list {
  position: fixed;
  top: 0.0625rem;
  left: 0;
  width: 0;
  height: 100vh;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 1rem 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.4);
          box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.4);
}
.auto-list.js-active {
  z-index: 999;
  width: 220px;
  background-color: #fff;
  opacity: 1;
  visibility: visible;
}
.auto-list button {
  background-color: #24688d;
  color: #fff;
  font-size: 14px;
  border: 1px solid #858589;
  border-radius: 4px;
  padding: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 2px;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  overflow: auto;
  min-height: 75px;
  max-height: 75px;
  cursor: pointer;
}
.auto-list button.option {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  white-space: nowrap;
}
.auto-list button.order-log-card {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 150px;
  max-height: 150px;
}
.auto-list button.order-log-card span {
  width: 100%;
  display: inline-block;
  font-size: 15px;
  text-align: left;
}
.auto-list button.camera-card {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 4px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  min-height: 150px;
  max-height: 150px;
}
.auto-list button.camera-card span {
  width: 100%;
  display: inline-block;
  font-size: 14px;
  text-align: left;
  line-height: 1.2;
}
.auto-list button:hover {
  opacity: 0.6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.loading {
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(34, 34, 34, 0.4);
}
.loading span {
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  height: 100px;
  width: 100px;
  font-size: 100px;
  color: #0a5fe8;
}
.loading.js-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.loading.js-active span {
  -webkit-animation: spin 3s linear infinite;
          animation: spin 3s linear infinite;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media screen and (max-width: 768px) {
  .title {
    height: 60px;
  }
}
.fa-file {
  color: #9a4444;
}

.fa-folder {
  color: #FFD966;
}

.fa-arrow-rotate-left {
  color: #222;
}

.fa-file-export {
  color: #25af33;
}

.login_body {
  background-color: #24688d;
}
.login_body .login__main {
  height: 100vh;
  position: relative;
}
.login_body .login__container {
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  max-width: 400px;
  padding: 2rem;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 6px rgba(34, 34, 34, 0.2);
          box-shadow: 0 0 6px rgba(34, 34, 34, 0.2);
}
.login_body .login__container-title {
  font-size: 1.25rem;
  margin-bottom: 1.125rem;
}
.login_body .login__container-icon {
  width: 250px;
  margin: 0 auto 0.625rem;
}
.login_body .login__container-icon img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.login_body .form-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 8px;
  gap: 3px;
}
.login_body .form-wrap label {
  font-size: 14px;
  color: #858589;
}
.login_body .form-wrap input {
  font-size: 16px;
  min-width: 300px;
  max-width: 500px;
  width: 100%;
  padding: 6px 10px;
}
.login_body .login__button {
  margin-top: 0.875rem;
  width: 100%;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: 600;
  background-color: #24688d;
  color: #fff;
  cursor: pointer;
}
.login_body .message__error {
  font-size: 14px;
  color: #931414;
}

.manual_head {
  width: 100%;
  padding: 10px;
}

.manual_title {
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  color: #24688d;
  font-weight: 600;
}

.manual-content {
  border-radius: 4px;
  padding: 10px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  max-height: calc(100vh - 250px);
  overflow: auto;
}
.manual-content .manual_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 15px;
  border-radius: 4px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.6);
          box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.6);
  cursor: pointer;
}
.manual-content .manual_button:hover {
  background-color: #24688d;
  color: #fff;
}
.manual-content .manual_button.back {
  background-color: #333;
  color: #fff;
}
.manual-content .manual_button.back:hover {
  opacity: 0.6;
}
.manual-content .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
}
.manual-content .icon i {
  font-size: 32px;
}
.manual-content .icon .fa-file-pdf {
  color: rgb(190, 17, 17);
}
.manual-content .icon .fa-file-pdf {
  color: rgb(190, 17, 17);
}
.manual-content .icon .fa-book {
  color: rgb(190, 181, 17);
}
.manual-content .value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 18px;
}

.btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 5px;
}

.btn {
  display: inline-block;
  position: relative;
  padding: 16px 12px;
  background-color: #fff;
  color: #24688d;
  border: 2px solid #24688d;
  -webkit-box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.5);
          box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.5);
  border-radius: 100px;
  height: 70px;
  width: 70px;
  cursor: pointer;
}
.btn i {
  font-size: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.btn::after {
  opacity: 0;
  position: absolute;
  visibility: hidden;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  content: attr(data-title);
  text-align: left;
  line-height: 1.4;
  padding: 0 6px;
  border-radius: 4px;
  color: #222;
  font-size: 14px;
  background-color: #fff;
  top: 100%;
  left: 50%;
  width: auto;
  white-space: nowrap;
  translate: -50% 0;
}
.btn:hover::after {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease 0.5s;
  transition: all 0.3s ease 0.5s;
}

.w-btn {
  display: inline-block;
  padding: 12px 16px;
  background-color: #24688d;
  color: #fff;
  border-radius: 4px;
  border: none;
  height: 40px;
  width: 100%;
  max-width: 180px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.w-btn i {
  font-size: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.w-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.w-btn:hover {
  opacity: 0.6;
}

.com-btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  color: #858589;
  padding: 2px 6px;
  font-size: 12px;
  border-bottom: 1px solid #858589;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
}
.com-btn:hover {
  opacity: 0.6;
}

.up-inner {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.up-form {
  width: 100%;
  gap: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.up-form li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.up-form label {
  font-size: 16px;
}
.up-form textarea {
  height: 150px;
}
.up-form input[type=text],
.up-form input[type=date],
.up-form textarea,
.up-form select {
  width: 100%;
  font-size: 16px;
  font-family: "M PLUS 1p", sans-serif;
  padding: 8px;
  background-color: #fff;
  color: #222;
  border: 1px solid #858589;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 6px;
  resize: none;
  line-height: 1.2;
}

.up-area {
  width: 100%;
  height: 150px;
  border: 2px dotted #858589;
  background-color: #fff;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  color: #858589;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.up-area.js-active {
  border-color: #6bc6fa;
  background-color: rgba(107, 198, 250, 0.1);
}

.up-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.input_files {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 18px;
  padding-left: 18px;
}
.input_files .fileDelete {
  cursor: pointer;
  font-size: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.input_files .fileDelete:hover {
  color: #24688d;
}

.up-btn {
  display: none;
  width: 300px;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #24688d;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.input-area {
  display: none;
  padding-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  visibility: hidden;
  opacity: 0;
  height: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.input-area.js-active {
  padding-top: 32px;
  opacity: 1;
  height: 100%;
  visibility: visible;
}
.input-area input {
  width: 100%;
  max-width: 400px;
  display: inline-block;
  font-size: 16px;
  padding: 8px 16px;
  border: 1px solid #858589;
}

.reader-area {
  display: none;
  position: relative;
  height: 0;
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.reader-area.js-active {
  height: 100%;
  display: block;
}

.content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 32px 0;
}

.column {
  width: 100%;
  background-color: #fff;
  border: 1px solid #858589;
  border-radius: 4px;
  padding: 10px;
  max-height: 70vh;
  overflow-y: auto;
}

.column h2 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #858589;
}

.column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.column li {
  padding: 8px;
  border-bottom: 1px solid #858589;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.column li a {
  color: #6bc6fa;
  text-decoration: none;
  margin-left: 10px;
  font-size: 16px;
  padding: 0.5em 1em;
}

.common-modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(34, 34, 34, 0.6);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.common-modal.js-active {
  opacity: 1;
  visibility: visible;
  z-index: 900;
}
.common-modal .common-modal-inner {
  background-color: #fff;
  padding: 10px 20px 20px;
  margin: auto;
  margin-top: auto;
  margin-bottom: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-height: 90%;
  max-width: 90%;
  overflow: scroll;
}
.common-modal .common-modal-close {
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 32px;
  background-color: #24688d;
  color: #fff;
  border-radius: 40px;
  margin-left: auto;
  position: sticky;
  top: 0;
  cursor: pointer;
}
.common-modal .common-modal-content {
  margin-top: 10px;
}

.modal {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.modal .modal-content {
  translate: -50% 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.modal.js-active {
  opacity: 1;
  visibility: visible;
}
.modal.js-active .modal-content {
  height: 800px;
  width: 500px;
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 101;
  background-color: #fff;
  border-radius: 5px;
  padding: 16px 24px;
}
.modal.js-active .modal-bg {
  background-color: rgba(34, 34, 34, 0.8);
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.modal .modal-title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.modal li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 16px;
}
.modal li label {
  color: gray;
  font-size: 14px;
}
.modal li input[type=text] {
  font-size: 16px;
  padding: 10px 12px 6px;
  border: 1px solid #222;
  border-radius: 3px;
  line-height: 1;
  background-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.modal .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  margin: 40px auto 0;
}
.modal .btns a,
.modal .btns button {
  width: 90%;
  max-width: 150px;
  display: inline-block;
  background-color: #24688d;
  color: #fff;
  border-radius: 3px;
  padding: 10px 20px;
  text-align: center;
}

.modalBg {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  z-index: -1;
}
.modalBg.js-active {
  opacity: 1;
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(34, 34, 34, 0.5);
  z-index: 100;
}

.material_again_modal {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-200vw);
          transform: translateX(-200vw);
  z-index: 400;
  padding: 30px 30px 80px;
}
.material_again_modal.js-active {
  width: 30vw;
  height: 100vh;
  overflow: auto;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  background-color: #222;
}
.material_again_modal .material_again_content {
  width: 100%;
  height: 100%;
  margin: 20px auto 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 18px;
}
.material_again_modal button {
  cursor: pointer;
  background-color: #24688d;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  width: 200px;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.material_again_modal .material_again_close {
  height: 40px;
  width: 40px;
  display: block;
  margin-left: auto;
  border-radius: 100px;
  background-color: #fff;
  position: relative;
  cursor: pointer;
}
.material_again_modal .material_again_close::after {
  position: absolute;
  content: "×";
  top: calc(50% - 2px);
  left: 50%;
  translate: -50% -50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 30px;
}
.material_again_modal .again-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.material_again_modal .again-wrap textarea {
  width: calc(100% - 110px);
  height: 40px;
  display: inline-block;
  padding: 4px 8px;
  text-align: left;
  font: inherit;
  margin: 0;
  border: none;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #fff;
  color: #222;
  resize: none;
  line-height: 32px;
  white-space: nowrap;
  scrollbar-width: none;
}
.material_again_modal .again-wrap textarea::-webkit-scrollbar {
  display: none;
}
.material_again_modal .again-wrap input[type=number] {
  width: 50px;
  height: 40px;
  display: inline-block;
  padding: 0 8px;
  text-align: center;
  font: inherit;
  margin: 0;
  border: none;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #fff;
  color: #222;
}
.material_again_modal .again-wrap button {
  width: 40px;
  line-height: 40px;
  display: inline-block;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  padding: 0;
}
.material_again_modal .material_again_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 10px;
}
.material_again_modal .material_again_block label {
  color: #fff;
  font-size: 15px;
  text-align: left;
  line-height: 1.5;
}
.material_again_modal .material_again_block input,
.material_again_modal .material_again_block textarea,
.material_again_modal .material_again_block select {
  width: 100%;
  font: inherit;
  padding: 6px 10px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 4px;
}
.material_again_modal .again-alert {
  color: #fff;
  font-size: 18px;
}

.material_modal {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translateX(200vw);
          transform: translateX(200vw);
  z-index: 300;
  padding: 30px 30px 80px;
}
.material_modal.js-active {
  width: 70vw;
  height: 100vh;
  overflow: auto;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  background-color: #d0cdcd;
}
.material_modal .material_content {
  width: 100%;
  margin: 20px auto 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 18px;
}
.material_modal button {
  cursor: pointer;
  background-color: #24688d;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  width: 200px;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.material-table {
  width: 100%;
  background-color: #fff;
  border: 1px solid #d0cdcd;
  overflow: auto;
}
.material-table .material-head,
.material-table .material-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.material-table .material-head ul,
.material-table .material-body ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.material-table .material-head li,
.material-table .material-body li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  width: 100%;
  line-height: 1.5;
  padding: 0 10px;
  white-space: nowrap;
  font-size: 15px;
}
.material-table .material-head li:nth-of-type(1), .material-table .material-head li:nth-of-type(5),
.material-table .material-body li:nth-of-type(1),
.material-table .material-body li:nth-of-type(5) {
  min-width: 70px;
  max-width: 70px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.material-table .material-head li:nth-of-type(2), .material-table .material-head li:nth-of-type(3), .material-table .material-head li:nth-of-type(6), .material-table .material-head li:nth-of-type(9),
.material-table .material-body li:nth-of-type(2),
.material-table .material-body li:nth-of-type(3),
.material-table .material-body li:nth-of-type(6),
.material-table .material-body li:nth-of-type(9) {
  min-width: 300px;
  max-width: 300px;
}
.material-table .material-head li:nth-of-type(4), .material-table .material-head li:nth-of-type(7), .material-table .material-head li:nth-of-type(8),
.material-table .material-body li:nth-of-type(4),
.material-table .material-body li:nth-of-type(7),
.material-table .material-body li:nth-of-type(8) {
  min-width: 150px;
  max-width: 150px;
}
.material-table .material-head li {
  text-align: center;
  color: #fff;
  background-color: #24688d;
  height: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.material-table .material-body li {
  border-bottom: 1px solid #d0cdcd;
  border-right: 1px solid #d0cdcd;
  height: 40px;
  cursor: pointer;
}
.material-table .material-body li input[type=checkbox] {
  height: 30px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

@media (hover: hover) {
  .material-body ul {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .material-body ul:hover {
    background-color: #e2dddd;
  }
}
.inspection_create {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translateX(200vw);
          transform: translateX(200vw);
  z-index: 300;
  padding: 30px 30px 80px;
}
.inspection_create.js-active {
  width: 100vw;
  max-width: 800px;
  height: 100vh;
  overflow: auto;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  background-color: #d0cdcd;
}
.inspection_create .inspection_title {
  text-align: left;
  line-height: 1.5;
  font-size: 16px;
}
.inspection_create .inspection_create_content {
  width: 100%;
  margin: 20px auto 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.inspection_create .inspection_create_wrap {
  width: 300px;
  margin: 0 auto 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 4px;
}
.inspection_create .inspection_create_wrap label {
  font-size: 16px;
  text-align: left;
  line-height: 1.5;
}
.inspection_create .inspection_create_wrap input[type=text],
.inspection_create .inspection_create_wrap input[type=date],
.inspection_create .inspection_create_wrap select {
  width: 100%;
  font-family: inherit;
  font-size: 18px;
  padding: 8px 10px;
  background-color: #fff;
  color: #222;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #858589;
  min-width: 200px;
}
.inspection_create .js-inspection-name,
.inspection_create .js-inspection-file,
.inspection_create .js-inspection-date,
.inspection_create .js-inspection-xldate,
.inspection_create .js-inspection-xlbranch,
.inspection_create .js-inspection-xltype {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  max-height: 0;
  margin-bottom: 0;
}
.inspection_create .js-inspection-name.js-active,
.inspection_create .js-inspection-file.js-active,
.inspection_create .js-inspection-date.js-active,
.inspection_create .js-inspection-xldate.js-active,
.inspection_create .js-inspection-xlbranch.js-active,
.inspection_create .js-inspection-xltype.js-active {
  max-height: 100%;
  opacity: 1;
  visibility: visible;
  margin-bottom: 18px;
}
.inspection_create button {
  cursor: pointer;
  background-color: #24688d;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  width: 200px;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.label_create {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translateX(200vw);
          transform: translateX(200vw);
  z-index: 300;
  padding: 30px 30px 80px;
}
.label_create.js-active {
  width: 100vw;
  max-width: 1000px;
  height: 100vh;
  overflow: auto;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  background-color: #d0cdcd;
}
.label_create .label_title {
  text-align: left;
  line-height: 1.5;
  font-size: 16px;
}
.label_create .label_create_content {
  width: 100%;
  margin: 20px auto 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
.label_create .label_create_wrap {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 4px;
}
.label_create .label_create_wrap label {
  font-size: 16px;
  text-align: left;
  line-height: 1.5;
}
.label_create .label_create_wrap .label_create_list,
.label_create .label_create_wrap .label_create_head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.label_create .label_create_wrap .label_create_list li,
.label_create .label_create_wrap .label_create_head li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 4px;
}
.label_create .label_create_wrap .label_create_list span,
.label_create .label_create_wrap .label_create_head span {
  font-size: 16px;
  text-align: left;
  overflow: auto;
}
.label_create .label_create_wrap .label_create_list span:nth-of-type(1),
.label_create .label_create_wrap .label_create_head span:nth-of-type(1) {
  min-width: 380px;
  max-width: 380px;
}
.label_create .label_create_wrap .label_create_list span:nth-of-type(2),
.label_create .label_create_wrap .label_create_head span:nth-of-type(2) {
  min-width: 60px;
  max-width: 60px;
}
.label_create .label_create_wrap .label_create_list span:nth-of-type(3),
.label_create .label_create_wrap .label_create_head span:nth-of-type(3) {
  min-width: 60px;
  max-width: 60px;
}
.label_create .label_create_wrap .label_create_list span:nth-of-type(4),
.label_create .label_create_wrap .label_create_head span:nth-of-type(4) {
  min-width: 150px;
  max-width: 150px;
}
.label_create .label_create_wrap .label_create_list span:nth-of-type(5),
.label_create .label_create_wrap .label_create_head span:nth-of-type(5) {
  min-width: 50px;
  max-width: 50px;
}
.label_create .label_create_wrap .label_create_list span:nth-of-type(6),
.label_create .label_create_wrap .label_create_head span:nth-of-type(6) {
  min-width: 50px;
  max-width: 50px;
}
.label_create .label_create_wrap .label_create_list span:nth-of-type(7),
.label_create .label_create_wrap .label_create_head span:nth-of-type(7) {
  min-width: 50px;
  max-width: 50px;
}
.label_create .label_create_wrap .label_create_list span:nth-of-type(8),
.label_create .label_create_wrap .label_create_head span:nth-of-type(8) {
  min-width: 50px;
  max-width: 50px;
}
.label_create .label_create_wrap .label_create_list span:nth-of-type(9),
.label_create .label_create_wrap .label_create_head span:nth-of-type(9) {
  min-width: 50px;
  max-width: 50px;
}
.label_create .label_create_wrap .label_create_list input[type=number],
.label_create .label_create_wrap .label_create_list input[type=text],
.label_create .label_create_wrap .label_create_head input[type=number],
.label_create .label_create_wrap .label_create_head input[type=text] {
  width: 100%;
  height: 100%;
  font-family: inherit;
  font-size: 14px;
  padding: 8px 6px;
  background-color: #fff;
  color: #222;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #858589;
}
.label_create .label_create_wrap .label_create_head {
  background-color: #24688d;
  color: #fff;
  padding: 4px 0;
}
.label_create .label_create_wrap .label_create_head span {
  text-align: center;
}
.label_create button {
  cursor: pointer;
  background-color: #24688d;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  width: 200px;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.laser_label_create {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translateX(200vw);
          transform: translateX(200vw);
  z-index: 300;
  padding: 30px 30px 80px;
}
.laser_label_create.js-active {
  width: 100vw;
  max-width: 1000px;
  height: 100vh;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  background-color: #d0cdcd;
}
.laser_label_create .laser_label_title {
  text-align: left;
  line-height: 1.5;
  font-size: 16px;
}
.laser_label_create .laser_label_create_content {
  width: 100%;
  margin: 20px auto 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
.laser_label_create .laser_label_create_wrap {
  width: 100%;
  max-height: calc(100vh - 300px);
  overflow: auto;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 4px;
}
.laser_label_create .laser_label_create_wrap label {
  font-size: 16px;
  text-align: left;
  line-height: 1.5;
}
.laser_label_create .laser_label_create_wrap .laser_label_create_list,
.laser_label_create .laser_label_create_wrap .laser_label_create_head {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.laser_label_create .laser_label_create_wrap .laser_label_create_list li,
.laser_label_create .laser_label_create_wrap .laser_label_create_head li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 4px;
}
.laser_label_create .laser_label_create_wrap .laser_label_create_list span,
.laser_label_create .laser_label_create_wrap .laser_label_create_head span {
  font-size: 16px;
  text-align: left;
  overflow: auto;
}
.laser_label_create .laser_label_create_wrap .laser_label_create_list span:nth-of-type(1),
.laser_label_create .laser_label_create_wrap .laser_label_create_head span:nth-of-type(1) {
  min-width: 70px;
  max-width: 70px;
}
.laser_label_create .laser_label_create_wrap .laser_label_create_list span:nth-of-type(2),
.laser_label_create .laser_label_create_wrap .laser_label_create_head span:nth-of-type(2) {
  min-width: 250px;
  max-width: 250px;
}
.laser_label_create .laser_label_create_wrap .laser_label_create_list span:nth-of-type(3),
.laser_label_create .laser_label_create_wrap .laser_label_create_head span:nth-of-type(3) {
  min-width: 250px;
  max-width: 250px;
}
.laser_label_create .laser_label_create_wrap .laser_label_create_list span:nth-of-type(4),
.laser_label_create .laser_label_create_wrap .laser_label_create_head span:nth-of-type(4) {
  min-width: 250px;
  max-width: 250px;
}
.laser_label_create .laser_label_create_wrap .laser_label_create_list span:nth-of-type(5),
.laser_label_create .laser_label_create_wrap .laser_label_create_head span:nth-of-type(5) {
  min-width: 100px;
  max-width: 100px;
}
.laser_label_create .laser_label_create_wrap .laser_label_create_list span:nth-of-type(6), .laser_label_create .laser_label_create_wrap .laser_label_create_list span:nth-of-type(7), .laser_label_create .laser_label_create_wrap .laser_label_create_list span:nth-of-type(8), .laser_label_create .laser_label_create_wrap .laser_label_create_list span:nth-of-type(9),
.laser_label_create .laser_label_create_wrap .laser_label_create_head span:nth-of-type(6),
.laser_label_create .laser_label_create_wrap .laser_label_create_head span:nth-of-type(7),
.laser_label_create .laser_label_create_wrap .laser_label_create_head span:nth-of-type(8),
.laser_label_create .laser_label_create_wrap .laser_label_create_head span:nth-of-type(9) {
  min-width: 50px;
  max-width: 50px;
}
.laser_label_create .laser_label_create_wrap .laser_label_create_list input[type=number],
.laser_label_create .laser_label_create_wrap .laser_label_create_list input[type=text],
.laser_label_create .laser_label_create_wrap .laser_label_create_head input[type=number],
.laser_label_create .laser_label_create_wrap .laser_label_create_head input[type=text] {
  width: 100%;
  height: 100%;
  font-family: inherit;
  font-size: 14px;
  padding: 8px 6px;
  background-color: #fff;
  color: #222;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #858589;
}
.laser_label_create .laser_label_create_wrap .laser_label_create_head {
  background-color: #24688d;
  color: #fff;
  padding: 4px 0;
}
.laser_label_create .laser_label_create_wrap .laser_label_create_head span {
  text-align: center;
}
.laser_label_create button {
  cursor: pointer;
  background-color: #24688d;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  width: 200px;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.modal-btns {
  position: fixed;
  z-index: 60;
  bottom: 5px;
  left: 50%;
  translate: -50% 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px;
}
.modal-btns.js-active {
  opacity: 1;
  visibility: visible;
}
.modal-btns button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 38px;
  background-color: #24688d;
  color: #fff;
  height: 75px;
  width: 75px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.modal-btns button::after {
  content: attr(data-text);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  display: inline-block;
}
.modal-btns button:hover {
  opacity: 0.6;
}

.arrive-modal-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}

.group_modal {
  position: fixed;
  z-index: 300;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 6px;
  -webkit-box-shadow: 4px 4px 8px rgba(34, 34, 34, 0.6);
          box-shadow: 4px 4px 8px rgba(34, 34, 34, 0.6);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.group_modal.js-active {
  opacity: 1;
  visibility: visible;
}
.group_modal .group_modal_content {
  min-width: 400px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  max-height: 90vh;
  background-color: #fff;
  overflow: scroll;
  padding: 20px;
  width: 100%;
  height: 100%;
  overflow: auto;
  position: relative;
}
.group_modal .group_modal_content p {
  font-size: 24px;
  color: #858589;
  font-weight: 600;
  margin-bottom: 10px;
}
.group_modal .group_modal_content .group_modal_change {
  position: absolute;
  top: 10px;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 45px;
  width: 45px;
  font-size: 24px;
  border-radius: 100px;
  color: #fff;
  background-color: #24688d;
  cursor: pointer;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.group_modal .group_modal_content .group_modal_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  width: 100%;
  max-height: 80%;
  overflow: auto;
  margin-bottom: 10px;
}
.group_modal .group_modal_content .group_modal_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 4px;
}
.group_modal .group_modal_content .group_modal_list li .time {
  font-size: 20px;
  padding-left: 8px;
}
.group_modal .group_modal_content .group_modal_list li label {
  font-size: 16px;
  color: #858589;
  font-weight: 600;
}
.group_modal .group_modal_content .group_modal_list li .sheet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 20px;
  padding: 6px 8px;
  font-size: 16px;
}
.group_modal .group_modal_content .group_modal_list li .key {
  font-size: 18px;
  text-align: left;
  width: 200px;
}
.group_modal .group_modal_content .group_modal_list li .value {
  font-size: 20px;
  text-align: left;
}
.group_modal .group_modal_content .accessory_head,
.group_modal .group_modal_content .accessory_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 10px;
  text-align: center;
}
.group_modal .group_modal_content .accessory_head span,
.group_modal .group_modal_content .accessory_body span {
  font-size: 18px;
}
.group_modal .group_modal_content .accessory_head span:nth-of-type(1),
.group_modal .group_modal_content .accessory_body span:nth-of-type(1) {
  min-width: 150px;
  max-width: 150px;
}
.group_modal .group_modal_content .accessory_head span:nth-of-type(2),
.group_modal .group_modal_content .accessory_body span:nth-of-type(2) {
  min-width: 100px;
  max-width: 100px;
}
.group_modal .group_modal_content .accessory_head span:nth-of-type(3),
.group_modal .group_modal_content .accessory_body span:nth-of-type(3) {
  min-width: 100px;
  max-width: 100px;
}
.group_modal .group_modal_content .accessory_head {
  background-color: #24688d;
  color: #fff;
  padding: 8px 0;
}
.group_modal .group_modal_content .matrix-table {
  border-spacing: 0;
}
.group_modal .group_modal_content .matrix-table tr {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  overflow: auto;
}
.group_modal .group_modal_content .matrix-table th {
  background-color: #24688d;
  color: #fff;
}
.group_modal .group_modal_content .matrix-table td {
  background-color: #fff;
  border-bottom: 1px solid #858589;
}
.group_modal .group_modal_content .matrix-table th, .group_modal .group_modal_content .matrix-table td {
  border-right: 1px solid #858589;
  padding: 12px 10px;
  font-size: 16px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.group_modal .group_modal_content .matrix-table th:nth-of-type(1), .group_modal .group_modal_content .matrix-table td:nth-of-type(1) {
  width: 150px;
  border-left: 1px solid #858589;
}
.group_modal .group_modal_content .matrix-table th:nth-of-type(n+2), .group_modal .group_modal_content .matrix-table td:nth-of-type(n+2) {
  width: 70px;
}
.group_modal .group_modal_content .matrix-table .quantity_head {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.group_modal .group_modal_content .matrix-table .quantity_head:hover {
  background-color: #d0cdcd;
}
.group_modal .group_modal_content .group_modal_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin: 20px auto;
}
.group_modal .group_modal_content .group_modal_block .group_modal_subtitle {
  font-size: 14px;
  text-align: left;
}
.group_modal .group_modal_content .group_modal_block .group_modal_subtitle span {
  font-size: 20px;
  color: #222;
  padding-left: 5px;
}
.group_modal .group_modal_content .group_modal_block .group_modal_table {
  border-spacing: 0;
  width: 100%;
  overflow: scroll;
}
.group_modal .group_modal_content .group_modal_block .group_modal_table tr {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  overflow: auto;
}
.group_modal .group_modal_content .group_modal_block .group_modal_table th {
  background-color: #24688d;
  color: #fff;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}
.group_modal .group_modal_content .group_modal_block .group_modal_table td {
  background-color: #fff;
  border-bottom: 1px solid #858589;
}
.group_modal .group_modal_content .group_modal_block .group_modal_table td, .group_modal .group_modal_content .group_modal_block .group_modal_table th {
  border-right: 1px solid #858589;
  padding: 12px 10px;
  font-size: 13px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.group_modal .group_modal_content .group_modal_block .group_modal_table td:nth-of-type(1), .group_modal .group_modal_content .group_modal_block .group_modal_table th:nth-of-type(1) {
  width: 100px;
  border-left: 1px solid #858589;
}
.group_modal .group_modal_content .group_modal_block .group_modal_table td:nth-of-type(2), .group_modal .group_modal_content .group_modal_block .group_modal_table th:nth-of-type(2) {
  width: 250px;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.group_modal .group_modal_content .group_modal_block .group_modal_table td:nth-of-type(3), .group_modal .group_modal_content .group_modal_block .group_modal_table td:nth-of-type(4), .group_modal .group_modal_content .group_modal_block .group_modal_table th:nth-of-type(3), .group_modal .group_modal_content .group_modal_block .group_modal_table th:nth-of-type(4) {
  width: 70px;
}
.group_modal .group_modal_content .group_modal_block .group_modal_table td:nth-of-type(n+5), .group_modal .group_modal_content .group_modal_block .group_modal_table th:nth-of-type(n+5) {
  width: 100px;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

.camera-values {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.camera-inner {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.camera-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 0.125rem;
  width: 30%;
  position: relative;
}
.camera-item label {
  font-size: 14px;
}
.camera-item input,
.camera-item select,
.camera-item textarea {
  font-size: 16px;
  padding: 8px 12px;
  border: 1px solid #858589;
  width: 100%;
  border-radius: 4px;
  background-color: #fff;
  height: 38px;
}
.camera-item span {
  position: absolute;
  top: 50%;
  right: 5px;
  cursor: pointer;
}

.camera-canvas {
  position: relative;
  margin: 0 auto;
  margin-bottom: 150px;
  border: 1px solid #858589;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: none;
}
.camera-canvas.js-active {
  display: block;
}
.camera-canvas canvas {
  width: 100%;
  height: 100%;
  display: inline-block;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.file-input {
  display: none;
}

.camera-btns {
  position: fixed;
  z-index: 900;
  bottom: 50px;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.camera-btns .camera-btn {
  display: inline-block;
  width: 49%;
  max-width: 300px;
  background-color: #24688d;
  color: #fff;
  text-align: center;
  font-size: 20px;
  border: none;
  border-radius: 8px;
  padding: 18px 16px;
  cursor: pointer;
}
.camera-btns .camera-btn.js-hidden {
  display: none;
}

.black-board {
  position: absolute;
  background-color: #01210a;
  bottom: 10px;
  left: 5px;
  min-width: 300px;
  max-width: 50%;
  padding: 10px;
  border-radius: 3px;
}
.black-board::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  height: calc(100% - 10px);
  width: calc(100% - 10px);
  border: 1px solid #fff;
}

.black-board-item {
  border-top: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-top: 6px;
  padding-bottom: 6px;
}
.black-board-item:nth-of-type(1) {
  border: none;
  padding-top: 0;
}
.black-board-item.wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
.black-board-item label {
  width: 65px;
  font-size: 11px;
  color: #fff;
  letter-spacing: 0.25em;
  text-align: left;
}
.black-board-item p {
  width: calc(100% - 68px);
  font-size: 14px;
  color: #fff;
  text-align: left;
}
.black-board-item span {
  display: inline-block;
  text-align: left;
  line-height: 1.2;
}
.black-board-item .black-board-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
}
.black-board-item .black-board-block:nth-of-type(1) {
  border-right: 1px solid #fff;
  padding-right: 8px;
}
.black-board-item .black-board-block label {
  text-align: left;
  width: 100%;
}
.black-board-item .black-board-block p {
  width: 100%;
}

.xl_filters {
  width: calc(100vw - 60px);
  margin: 0 calc(50% - 50vw + 30px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding: 0 10px 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: 500;
  position: relative;
}
.xl_filters.in-tab {
  padding-bottom: 35px;
}
.xl_filters.in_build {
  width: 100%;
  margin: 0 auto;
}
.xl_filters .file_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 4px;
  margin-right: auto;
}
.xl_filters .file_creates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.xl_filters .file_tab {
  margin-bottom: -3px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.xl_filters .file_tab a {
  border: 1px solid #24688d;
  color: #24688d;
  background-color: #fff;
  border-radius: 6px 6px 0 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
}
.xl_filters .file_tab a:hover, .xl_filters .file_tab a.js-active {
  color: #fff;
  background-color: #24688d;
}
.xl_filters .file_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  color: #24688d;
  font-weight: 500;
}
.xl_filters .qr {
  margin-right: auto;
}
.xl_filters .filter_wrap {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  white-space: nowrap;
  overflow: scroll;
  scrollbar-width: none; /* Firefox用の設定 */
  -ms-overflow-style: none; /* Internet Explorer・Edge用の設定 */
}
.xl_filters .filter_wrap::-webkit-scrollbar {
  display: none; /* Chrome・Safari・Edge（新しいバージョン）用の設定 */
}
.xl_filters .filter,
.xl_filters li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 4px;
}
.xl_filters label {
  font-size: 14px;
}
.xl_filters input[type=text],
.xl_filters input[type=date],
.xl_filters select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 15px;
  padding: 6px 8px;
  border: 1px solid #d0cdcd;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 7.5rem;
  background-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
}
.xl_filters input[type=checkbox] {
  height: 30px;
  width: 30px;
  display: block;
  margin: 0 auto;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
}
.xl_filters button, .xl_filters a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #24688d;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  margin-top: auto;
  height: 33px;
  cursor: pointer;
}

.xl-list {
  overflow: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100vw - 40px);
  margin: 0 calc(50% - 50vw + 20px);
  height: 100%;
  max-height: calc(100vh - 270px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  font-size: 13px;
  margin-bottom: 16px;
  scrollbar-width: none; /* Firefox用の設定 */
  -ms-overflow-style: none; /* Internet Explorer・Edge用の設定 */
}
.xl-list::-webkit-scrollbar {
  display: none; /* Chrome・Safari・Edge（新しいバージョン）用の設定 */
}
.xl-list.group-list {
  max-height: 32px;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.xl-list.group-list.js-active {
  max-height: calc(100vh - 240px);
  overflow: auto;
}
.xl-list.build-list td, .xl-list.accessory-list td {
  white-space: wrap;
}
.xl-list.build-list .xl_values, .xl-list.accessory-list .xl_values {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.xl-list.build-list .xl_values:hover, .xl-list.accessory-list .xl_values:hover {
  background-color: #24688d;
  color: #fff;
}
.xl-list thead {
  position: sticky;
  top: 0;
  background-color: #24688d;
  color: #fff;
  z-index: 10;
}
.xl-list tbody {
  background-color: #fff;
}
.xl-list tbody.group-body {
  height: 100%;
  max-height: 1px;
  overflow: hidden;
  opacity: 0;
  background-color: transparent;
}
.xl-list tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.xl-list tr.supplier_row {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.xl-list tr.supplier_row:hover {
  background-color: #24688d;
  color: #fff;
}
.xl-list th {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 30px;
}
.xl-list td {
  text-align: left;
  line-height: 1.1;
  height: 40px;
  overflow-x: auto;
}
.xl-list td.wrap {
  white-space: wrap;
}
.xl-list td.wrap span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  max-height: 100%;
  overflow: auto;
  scrollbar-width: none;
}
.xl-list td.wrap span::-webkit-scrollbar {
  display: none;
}
.xl-list th, .xl-list td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 1px solid #d0cdcd;
  border-bottom: 1px solid #d0cdcd;
  padding: 3px 8px;
  white-space: nowrap;
  scrollbar-width: none;
}
.xl-list th::-webkit-scrollbar, .xl-list td::-webkit-scrollbar {
  display: none;
}
.xl-list th.tr, .xl-list td.tr {
  -webkit-box-pack: right !important;
      -ms-flex-pack: right !important;
          justify-content: right !important;
}
.xl-list th.tc, .xl-list td.tc {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}
.xl-list th.h60, .xl-list td.h60 {
  height: 60px;
}
.xl-list th.w40, .xl-list td.w40 {
  min-width: 40px;
  max-width: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.xl-list th.w50, .xl-list td.w50 {
  min-width: 50px;
  max-width: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.xl-list th.w70, .xl-list td.w70 {
  min-width: 70px;
  max-width: 70px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.xl-list th.w100, .xl-list td.w100 {
  min-width: 100px;
  max-width: 100px;
}
.xl-list th.w120, .xl-list td.w120 {
  min-width: 120px;
  max-width: 120px;
}
.xl-list th.w150, .xl-list td.w150 {
  min-width: 150px;
  max-width: 150px;
}
.xl-list th.w180, .xl-list td.w180 {
  min-width: 180px;
  max-width: 180px;
}
.xl-list th.w200, .xl-list td.w200 {
  min-width: 200px;
  max-width: 200px;
}
.xl-list th.w250, .xl-list td.w250 {
  min-width: 250px;
  max-width: 250px;
}
.xl-list th.w300, .xl-list td.w300 {
  min-width: 300px;
  max-width: 300px;
}
.xl-list th.w400, .xl-list td.w400 {
  min-width: 400px;
  max-width: 400px;
}
.xl-list th.odd, .xl-list td.odd {
  font-weight: 600;
  color: rgb(186, 30, 30);
  font-size: 20px;
}
.xl-list th.fs-20, .xl-list td.fs-20 {
  font-size: 20px;
}
.xl-list th.alert, .xl-list td.alert {
  background-color: rgb(235, 55, 55);
  color: #fff;
}
.xl-list th.buildName, .xl-list th.all-check, .xl-list td.buildName, .xl-list td.all-check {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.xl-list th.buildName:hover, .xl-list th.all-check:hover, .xl-list td.buildName:hover, .xl-list td.all-check:hover {
  color: #222;
  background-color: #fff;
}
.xl-list th.count input, .xl-list td.count input {
  font-size: 20px;
  width: 100%;
  border: none;
  text-align: center;
}
.xl-list th.scheduleName, .xl-list td.scheduleName {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.xl-list th.scheduleName:hover, .xl-list td.scheduleName:hover {
  background-color: #24688d;
  color: #fff;
}
.xl-list th.open-single, .xl-list td.open-single {
  position: relative;
}
.xl-list th.open-single::after, .xl-list td.open-single::after {
  position: absolute;
  content: "SINGLE";
  font-size: 12px;
  top: 85%;
  left: 50%;
  translate: -50% -50%;
  opacity: 0.6;
  color: rgb(173, 25, 25);
}
.xl-list th.open-list, .xl-list td.open-list {
  position: relative;
}
.xl-list th.open-list::after, .xl-list td.open-list::after {
  position: absolute;
  content: "LIST";
  font-size: 12px;
  top: 85%;
  left: 50%;
  translate: -50% -50%;
  opacity: 0.6;
  color: #24688d;
}
.xl-list th.open-single, .xl-list th.open-list, .xl-list th.hover, .xl-list td.open-single, .xl-list td.open-list, .xl-list td.hover {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.xl-list th.open-single:hover, .xl-list th.open-list:hover, .xl-list th.hover:hover, .xl-list td.open-single:hover, .xl-list td.open-list:hover, .xl-list td.hover:hover {
  background-color: #24688d;
  color: #fff;
}
.xl-list th.open-single:hover select,
.xl-list th.open-single:hover input[type=text], .xl-list th.open-list:hover select,
.xl-list th.open-list:hover input[type=text], .xl-list th.hover:hover select,
.xl-list th.hover:hover input[type=text], .xl-list td.open-single:hover select,
.xl-list td.open-single:hover input[type=text], .xl-list td.open-list:hover select,
.xl-list td.open-list:hover input[type=text], .xl-list td.hover:hover select,
.xl-list td.hover:hover input[type=text] {
  background-color: #24688d;
  color: #fff;
}
.xl-list th.open-single select, .xl-list th.open-list select, .xl-list th.hover select, .xl-list td.open-single select, .xl-list td.open-list select, .xl-list td.hover select {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.xl-list th.js-date, .xl-list td.js-date {
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.xl-list th.js-date:hover, .xl-list td.js-date:hover {
  background-color: #24688d;
  color: #fff;
}
.xl-list th.js-date span, .xl-list td.js-date span {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.xl-list th.js-date input[type=date], .xl-list td.js-date input[type=date] {
  position: absolute;
  z-index: 500;
  top: 0;
  left: 8px;
  width: calc(100% - 16px);
  height: 100%;
  font-size: 12px;
}
.xl-list th.-drag, .xl-list td.-drag {
  cursor: -webkit-grab;
  cursor: grab;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}
.xl-list th.-drag i, .xl-list td.-drag i {
  color: #858589;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.xl-list th.-drag:hover i, .xl-list td.-drag:hover i {
  opacity: 1;
  scale: 1.3;
}
.xl-list th.-onData, .xl-list th .-stopData, .xl-list td.-onData, .xl-list td .-stopData {
  position: relative;
  overflow: visible;
}
.xl-list th.-onData::after, .xl-list th .-stopData::after, .xl-list td.-onData::after, .xl-list td .-stopData::after {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  content: attr(data-qr);
  top: 100%;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #fff;
  border: 1px solid #222;
  border-radius: 2px;
  padding: 3px;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  z-index: -1;
}
.xl-list th.-onData:hover::after, .xl-list th .-stopData:hover::after, .xl-list td.-onData:hover::after, .xl-list td .-stopData:hover::after {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s 1s;
  transition: all 0.3s 1s;
}
.xl-list th.connect, .xl-list td.connect {
  background-color: #e0f7fd;
}
.xl-list th.-flex_col div, .xl-list td.-flex_col div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 2px;
}
.xl-list th.-flex_col p, .xl-list td.-flex_col p {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.xl-list th.-flex_col span, .xl-list td.-flex_col span {
  display: inline-block;
}
.xl-list th.-flex_col span:nth-child(2), .xl-list td.-flex_col span:nth-child(2) {
  margin-left: auto;
}
.xl-list th.-inventory, .xl-list td.-inventory {
  background-color: #e0f7fd;
}
.xl-list th.-onData, .xl-list td.-onData {
  background-color: #e0f7fd;
}
.xl-list th.-stopData, .xl-list td.-stopData {
  background-color: #edf19b;
}
.xl-list div {
  overflow: auto;
  height: 100%;
  width: 100%;
}
.xl-list i {
  width: 100%;
  height: 100%;
  cursor: pointer;
  margin: 0;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.xl-list select,
.xl-list input[type=text],
.xl-list input[type=number],
.xl-list input[type=date] {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  height: 100%;
  font-size: 14px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.xl-list input[type=checkbox] {
  width: 100%;
  height: 30px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.xl-list button {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  height: 100%;
  width: 100%;
  cursor: pointer;
  margin: 0;
}
.xl-list a {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.xl-list .get_pdf {
  cursor: pointer;
  position: relative;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.xl-list .get_pdf i {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 0;
  left: 30%;
  font-size: 28px;
  opacity: 0.3;
}

.group_titles {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  margin: 0 calc(50% - 50vw + 20px);
}
.group_titles .group_title {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  padding: 6px 8px 4px;
  background-color: #fff;
  color: #24688d;
  border: 2px solid #24688d;
  border-radius: 6px;
  -webkit-box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.5);
          box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.5);
  cursor: pointer;
}
.group_titles .group_setting {
  cursor: pointer;
  display: inline-block;
  color: #24688d;
  font-size: 24px;
}

.js-row.js-select,
.xl_values.js-select {
  -webkit-box-shadow: inset 0 0 10px #54a8c7;
          box-shadow: inset 0 0 10px #54a8c7;
}
.js-row.lock,
.xl_values.lock {
  background-color: #f1f963;
}
.js-row.lock input[type=text],
.js-row.lock td, .js-row.lock select,
.xl_values.lock input[type=text],
.xl_values.lock td,
.xl_values.lock select {
  pointer-events: none;
}
.js-row.lock input[type=checkbox],
.js-row.lock .js-lock, .js-row.lock a, .js-row.lock button,
.xl_values.lock input[type=checkbox],
.xl_values.lock .js-lock,
.xl_values.lock a,
.xl_values.lock button {
  pointer-events: visible;
}
.js-row.complete,
.xl_values.complete {
  background-color: #d6d8da;
}
.js-row.complete input[type=text],
.js-row.complete .js-lock, .js-row.complete td, .js-row.complete select,
.xl_values.complete input[type=text],
.xl_values.complete .js-lock,
.xl_values.complete td,
.xl_values.complete select {
  pointer-events: none;
}
.js-row.complete input[type=checkbox],
.js-row.complete .-open_sheets,
.js-row.complete .xl_values__sheets,
.js-row.complete a,
.js-row.complete button,
.xl_values.complete input[type=checkbox],
.xl_values.complete .-open_sheets,
.xl_values.complete .xl_values__sheets,
.xl_values.complete a,
.xl_values.complete button {
  pointer-events: visible;
}
.js-row.arrival,
.xl_values.arrival {
  background-color: #e0f7fd;
}
.js-row.arrival input[type=text],
.js-row.arrival .js-lock, .js-row.arrival td, .js-row.arrival select,
.xl_values.arrival input[type=text],
.xl_values.arrival .js-lock,
.xl_values.arrival td,
.xl_values.arrival select {
  pointer-events: none;
}
.js-row.arrival input[type=checkbox],
.js-row.arrival input[type=number],
.js-row.arrival input[type=date],
.js-row.arrival select,
.js-row.arrival a,
.js-row.arrival button,
.xl_values.arrival input[type=checkbox],
.xl_values.arrival input[type=number],
.xl_values.arrival input[type=date],
.xl_values.arrival select,
.xl_values.arrival a,
.xl_values.arrival button {
  pointer-events: visible;
}
.js-row input,
.js-row select,
.js-row td,
.xl_values input,
.xl_values select,
.xl_values td {
  background-color: inherit;
}

.xl_values__sheets {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  max-width: 0px;
  width: 80%;
  height: 100vh !important;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  visibility: hidden;
  background-color: #858589;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.xl_values__sheets.js-active {
  opacity: 1;
  max-width: 1200px;
  visibility: visible;
  padding: 0 20px 20px;
  background-color: #858589;
}
.xl_values__sheets .sheets_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  padding-top: 4px;
  padding-bottom: 4px;
}
.xl_values__sheets .-close_sheets {
  font-size: 36px;
  line-height: 45px;
  padding-bottom: 4px;
  background-color: #24688d;
  color: #fff;
  border-radius: 50px;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: auto;
  cursor: pointer;
}
.xl_values__sheets .sheets_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-weight: 500;
  margin-left: auto;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.xl_values__sheets .sheets_wrap {
  overflow: auto;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #222;
}
.xl_values__sheets .sheets_header {
  background-color: #24688d;
  color: #fff;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.xl_values__sheets .sheets_value {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid transparent;
  padding-left: 0;
}
.xl_values__sheets .sheets_header,
.xl_values__sheets .sheets_value {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  height: 40px;
  border-bottom: 1px solid #d0cdcd;
}
.xl_values__sheets .sheets_header.complete,
.xl_values__sheets .sheets_value.complete {
  background-color: #d6d8da;
}
.xl_values__sheets .sheets_header.complete input[type=text],
.xl_values__sheets .sheets_header.complete input[type=number],
.xl_values__sheets .sheets_value.complete input[type=text],
.xl_values__sheets .sheets_value.complete input[type=number] {
  pointer-events: none;
}
.xl_values__sheets .sheets_header.complete input[type=checkbox],
.xl_values__sheets .sheets_header.complete .a,
.xl_values__sheets .sheets_value.complete input[type=checkbox],
.xl_values__sheets .sheets_value.complete .a {
  pointer-events: visible;
}
.xl_values__sheets .sheets_header li,
.xl_values__sheets .sheets_value li {
  border-right: 1px solid #d0cdcd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4px 5px;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.xl_values__sheets .sheets_header li.w30,
.xl_values__sheets .sheets_value li.w30 {
  max-width: 30px;
  min-width: 30px;
}
.xl_values__sheets .sheets_header li.w50,
.xl_values__sheets .sheets_value li.w50 {
  max-width: 50px;
  min-width: 50px;
}
.xl_values__sheets .sheets_header li.w70,
.xl_values__sheets .sheets_value li.w70 {
  max-width: 70px;
  min-width: 70px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.xl_values__sheets .sheets_header li.w100,
.xl_values__sheets .sheets_value li.w100 {
  max-width: 100px;
  min-width: 100px;
}
.xl_values__sheets .sheets_header li.w120,
.xl_values__sheets .sheets_value li.w120 {
  max-width: 120px;
  min-width: 120px;
}
.xl_values__sheets .sheets_header li.w150,
.xl_values__sheets .sheets_value li.w150 {
  max-width: 150px;
  min-width: 150px;
}
.xl_values__sheets .sheets_header li.w200,
.xl_values__sheets .sheets_value li.w200 {
  max-width: 200px;
  min-width: 200px;
}
.xl_values__sheets .sheets_header li.-center,
.xl_values__sheets .sheets_value li.-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.xl_values__sheets .sheets_header li.-grow1,
.xl_values__sheets .sheets_value li.-grow1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.xl_values__sheets .sheets_header li.odd,
.xl_values__sheets .sheets_value li.odd {
  font-weight: 600;
  color: rgb(186, 30, 30);
  font-size: 18px;
}
.xl_values__sheets .sheets_header li a,
.xl_values__sheets .sheets_value li a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.xl_values__sheets .sheets_header li a i,
.xl_values__sheets .sheets_value li a i {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 24px;
}
.xl_values__sheets .sheets_header li a i::before,
.xl_values__sheets .sheets_value li a i::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.xl_values__sheets .sheets_header li input[type=text],
.xl_values__sheets .sheets_value li input[type=text] {
  border: none;
  width: 100%;
  font-size: 16px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.xl_values__sheets .sheets_header li input[type=checkbox],
.xl_values__sheets .sheets_value li input[type=checkbox] {
  height: 90%;
  width: 90%;
  margin: 0 auto;
}
.xl_values__sheets .sheets_header li.-inventory,
.xl_values__sheets .sheets_value li.-inventory {
  background-color: #e0f7fd;
}
.xl_values__sheets .sheets_header li.-inventory input, .xl_values__sheets .sheets_header li.-inventory select,
.xl_values__sheets .sheets_value li.-inventory input,
.xl_values__sheets .sheets_value li.-inventory select {
  background-color: #e0f7fd;
}
.xl_values__sheets .sheets_header li.count input,
.xl_values__sheets .sheets_value li.count input {
  font-size: 20px;
  width: 100%;
  border: none;
  text-align: center;
}

.sheet_value {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.sheet_value.js-active {
  -webkit-box-shadow: 0 0 5px rgba(34, 34, 34, 0.5);
          box-shadow: 0 0 5px rgba(34, 34, 34, 0.5);
}
.sheet_value.js-target {
  background-color: transparent;
  border-top: 4px solid #00EFFF; /* 差し込み位置を示す線 */
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease; /* スムーズな遷移効果 */
}

.import_form p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 20px;
  gap: 16px;
}
.import_form button {
  display: inline-block;
  font-size: 18px;
  padding: 10px 20px;
  background-color: #24688d;
  color: #fff;
  border: 1px solid #222;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 4px;
  cursor: pointer;
}

@media (hover: hover) {
  .import_form button:hover {
    background-color: #fff;
    color: #222;
  }
}
.again_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  width: calc(100vw - 40px);
  margin: 12px calc(50% - 50vw + 20px) 0;
}

.again-toggle {
  display: inline-block;
  width: 150px;
  background-color: #222;
  color: #fff;
  border-radius: 4px;
  padding: 14px 10px;
  text-align: center;
  margin: 0 auto;
  cursor: pointer;
}

.again_card {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #222;
  border-radius: 4px;
  overflow: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.again_card.js-hidden {
  height: 0;
  width: 0;
  opacity: 0;
  visibility: hidden;
  position: fixed;
}

.again_head,
.again_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.again_head li,
.again_body li {
  border-left: 1px solid #d0cdcd;
  white-space: nowrap;
  overflow: auto;
  scrollbar-width: none;
  line-height: 1.4;
}
.again_head li::-webkit-scrollbar,
.again_body li::-webkit-scrollbar {
  display: none;
}
.again_head li:nth-of-type(1),
.again_body li:nth-of-type(1) {
  min-width: 180px;
  max-width: 180px;
  border-left: none;
}
.again_head li:nth-of-type(2), .again_head li:nth-of-type(3), .again_head li:nth-of-type(4), .again_head li:nth-of-type(5),
.again_body li:nth-of-type(2),
.again_body li:nth-of-type(3),
.again_body li:nth-of-type(4),
.again_body li:nth-of-type(5) {
  min-width: 110px;
  max-width: 110px;
}
.again_head li:nth-of-type(6), .again_head li:nth-of-type(7),
.again_body li:nth-of-type(6),
.again_body li:nth-of-type(7) {
  min-width: 350px;
  max-width: 350px;
}
.again_head li:nth-of-type(8), .again_head li:nth-of-type(9), .again_head li:nth-of-type(10),
.again_body li:nth-of-type(8),
.again_body li:nth-of-type(9),
.again_body li:nth-of-type(10) {
  min-width: 70px;
  max-width: 70px;
}
.again_head li input[type=checkbox],
.again_body li input[type=checkbox] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 30px;
  cursor: pointer;
}
.again_head li input[type=text],
.again_head li textarea,
.again_body li input[type=text],
.again_body li textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 100%;
  cursor: pointer;
  font: inherit;
  background: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  resize: none;
  line-height: 1.4;
}
.again_head li input[type=text]::-webkit-scrollbar,
.again_head li textarea::-webkit-scrollbar,
.again_body li input[type=text]::-webkit-scrollbar,
.again_body li textarea::-webkit-scrollbar {
  display: none;
}
.again_head li textarea,
.again_body li textarea {
  width: 500px;
}

.again_head li {
  padding: 8px 10px;
  background-color: #222;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.again_card.js-active > .again_head > li {
  background-color: #24688d;
}

.again_body li {
  padding: 12px 10px;
  text-align: left;
  background-color: #fff;
}

.label_print .label {
  margin: 16px auto;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  width: 50mm;
  height: 30mm;
  font-weight: 600;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.label_print .name {
  position: absolute;
  top: 1mm;
  left: 1mm;
  width: 48mm;
  height: 14mm;
  line-height: 1.1;
  letter-spacing: -0.02em;
  border-radius: 2px;
  word-break: break-all;
  overflow: hidden;
}
.label_print .bottom {
  position: absolute;
  top: 16mm;
  left: 1mm;
  width: 48mm;
  height: 13mm;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.label_print .left {
  width: 37mm;
  height: 13mm;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.label_print .info {
  display: block;
  word-break: break-all;
  overflow: hidden;
}
.label_print .number {
  margin-top: auto;
  display: block;
  word-break: break-all;
  overflow: hidden;
}
.label_print .check {
  margin-top: auto;
  margin-left: auto;
  height: 10mm;
  width: 10mm;
  font-size: 12px;
  line-height: 10mm;
  text-align: center;
  border: 1px solid #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.label_print .laser_label {
  margin: 16px auto;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  width: 50mm;
  height: 30mm;
  font-weight: 600;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  letter-spacing: -0.05em;
  padding: 3px;
  gap: 3px;
  font-family: "メイリオ", "Noto Sans JP";
}
.label_print .font1,
.label_print .font2,
.label_print .font3 {
  height: calc((100% - 28px) / 3);
  word-break: break-all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  overflow: hidden;
}
.label_print .font4 {
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}

.updates {
  width: 100%;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.updates__title {
  font-size: 24px;
  font-weight: 600;
}
.updates__title span {
  font-size: 42px;
  color: #24688d;
}

.updates__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.updates__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 8px;
  margin-bottom: 20px;
  gap: 5px;
}
.updates__body li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.updates__body label {
  font-size: 13px;
  color: #24688d;
}
.updates__body label.required {
  position: relative;
}
.updates__body label.required::after {
  position: absolute;
  content: "*必須";
  left: calc(100% + 0.5em);
  top: 0;
  font-size: 10px;
  color: rgb(188, 21, 21);
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  white-space: nowrap;
}
.updates__body input[type=text],
.updates__body input[type=date],
.updates__body input[type=number],
.updates__body textarea,
.updates__body select {
  width: 100%;
  font-size: 15px;
  font-family: "M PLUS 1p", sans-serif;
  padding: 8px 6px;
  background-color: #fff;
  color: #222;
  border: 1px solid #858589;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 4px;
  resize: none;
  line-height: 1.2;
  max-height: 150px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.build_head {
  width: 100%;
  background-color: #24688d;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 20px;
  white-space: nowrap;
  overflow: auto;
}
.build_head .build_head_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 4px;
  min-width: 100px;
}
.build_head .build_head_wrap span:nth-of-type(1) {
  font-size: 12px;
  color: #d0cdcd;
}
.build_head .build_head_wrap span:nth-of-type(2) {
  font-size: 18px;
  color: #fff;
}

.build_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  gap: 2rem;
}

.build_menu {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-width: 200px;
  background-color: #fff;
  border-radius: 2px;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: sticky;
  top: 20px;
}
.build_menu li {
  width: 100%;
}
.build_menu li a {
  font-size: 16px;
  color: #858589;
  text-align: left;
  border-bottom: 1px solid #858589;
  padding: 12px 20px;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.build_menu li a:hover {
  color: #fff;
  background-color: #24688d;
}
.build_menu li a i {
  display: inline-block;
  margin-right: 0.4em;
  font-size: 20px;
}

.build_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 12px;
  overflow: auto;
  padding-bottom: 10px;
  overflow: auto;
  max-height: calc(100vh - 230px);
  min-width: calc(100% - 260px);
}
.build_content .area_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 28px;
  font-weight: 600;
  color: #24688d;
  text-align: left;
  letter-spacing: 0.2em;
}
.build_content .area_subtitle {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 120px;
  font-size: 20px;
  margin-right: auto;
  font-weight: 500;
  color: #24688d;
  background-color: #fff;
  border: 1px solid #24688d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 12px;
  border-radius: 6px;
}
.build_content .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 70px;
  min-height: 70px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 700px;
  background-color: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.build_content .card:hover {
  opacity: 0.6;
}
.build_content .lot,
.build_content .name {
  padding: 10px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.build_content .lot {
  width: 150px;
  font-size: 18px;
  background-color: #24688d;
  color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.build_content .name {
  width: calc(100% - 150px);
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.build_form {
  min-width: 200px;
  max-width: 200px;
  max-height: calc(100vh - 230px);
  overflow: auto;
  padding: 16px;
  background-color: #fff;
  -webkit-box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.4);
          box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.4);
}
.build_form input[type=text],
.build_form input[type=date],
.build_form textarea,
.build_form select {
  width: 100%;
  font-size: 14px;
  font-family: "M PLUS 1p", sans-serif;
  padding: 8px;
  background-color: #fff;
  color: #222;
  border: 1px solid #858589;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 6px;
  resize: none;
  line-height: 1.2;
  max-height: 150px;
}
.build_form .updates__btns {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.table_area {
  width: 100%;
  height: 100%;
}

.table_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 120px;
  font-size: 20px;
  margin-right: auto;
  font-weight: 500;
  color: #24688d;
  background-color: #fff;
  border: 1px solid #24688d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 12px;
  border-radius: 6px;
}
.table_title.change_title {
  cursor: pointer;
}

.table_subtitle {
  font-size: 20px;
  font-weight: 600;
  border-bottom: 2px solid #24688d;
  padding: 2px 8px;
  margin: 10px auto 10px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.build_table {
  border-spacing: 0;
  margin-top: 20px;
}
.build_table tr {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  overflow: auto;
}
.build_table th {
  background-color: #24688d;
  color: #fff;
}
.build_table td {
  background-color: #fff;
  border-bottom: 1px solid #858589;
}
.build_table th, .build_table td {
  border-right: 1px solid #858589;
  padding: 12px 10px;
  font-size: 16px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.build_table th:nth-of-type(1), .build_table td:nth-of-type(1) {
  width: 150px;
  border-left: 1px solid #858589;
}
.build_table th:nth-of-type(n+2), .build_table td:nth-of-type(n+2) {
  width: 70px;
}
.build_table .quantity_head {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.build_table .quantity_head:hover {
  background-color: #d0cdcd;
}

.accessory_area {
  padding-bottom: 40px;
}

.accessory_block .accessory_tables {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.accessory_block table {
  border-spacing: 0;
  border-collapse: collapse;
  border: 2px solid #858589;
  border-left: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.accessory_block table:nth-of-type(1) {
  border-left: 2px solid #858589;
}
.accessory_block .table-head-title {
  color: #fff;
  background-color: #24688d;
  font-size: 16px;
  padding: 8px;
}
.accessory_block .table-head-label {
  color: #fff;
  background-color: #24688d;
}
.accessory_block .table-body-value {
  color: #222;
  background-color: #fff;
}
.accessory_block .table-head-label,
.accessory_block .table-body-value {
  font-size: 14px;
  height: 28px;
  line-height: 28px;
  border-top: 1px dotted gray;
  border-right: 1px dotted gray;
}
.accessory_block .table-head-label input[type=text],
.accessory_block .table-head-label select,
.accessory_block .table-body-value input[type=text],
.accessory_block .table-body-value select {
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  padding: 0 2px;
  background-color: transparent;
  color: inherit;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.accessory_block .table-head-label input[type=text].js-arrangement,
.accessory_block .table-head-label select.js-arrangement,
.accessory_block .table-body-value input[type=text].js-arrangement,
.accessory_block .table-body-value select.js-arrangement {
  background-color: #f0f364;
}
.accessory_block .table-head-label input[type=number],
.accessory_block .table-body-value input[type=number] {
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  padding: 0 0 0 2px;
  background-color: transparent;
  text-align: right;
  color: inherit;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.accessory_block .table-head-label.w50,
.accessory_block .table-body-value.w50 {
  max-width: 50px;
  min-width: 50px;
}
.accessory_block .table-head-label.w70,
.accessory_block .table-body-value.w70 {
  max-width: 70px;
  min-width: 70px;
}
.accessory_block .table-head-label.w100,
.accessory_block .table-body-value.w100 {
  max-width: 100px;
  min-width: 100px;
}
.accessory_block .table-head-label.w130,
.accessory_block .table-body-value.w130 {
  max-width: 130px;
  min-width: 130px;
}

.template-button {
  position: fixed;
  right: 60px;
  bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60px;
  width: 60px;
  border: 1px solid #24688d;
  background-color: #fff;
  color: #24688d;
  font-size: 32px;
  border-radius: 100px;
  -webkit-box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.4);
          box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.4);
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.template-button:hover {
  opacity: 0.6;
}

.template-modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(34, 34, 34, 0.6);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-modal.js-active {
  opacity: 1;
  visibility: visible;
  z-index: 999;
}
.template-modal .template-modal-inner {
  background-color: #fff;
  padding: 10px 20px 20px;
  margin: auto;
  margin-top: auto;
  margin-bottom: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-height: 90%;
  max-width: 90%;
  min-width: 600px;
  overflow: scroll;
}
.template-modal .template-modal-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: sticky;
  top: 0;
  width: 100%;
  gap: 10px;
}
.template-modal .template-modal-log {
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  background-color: #24688d;
  color: #fff;
  border-radius: 40px;
  cursor: pointer;
}
.template-modal .template-modal-open {
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  background-color: #24688d;
  color: #fff;
  border-radius: 40px;
  margin-right: auto;
  cursor: pointer;
}
.template-modal .template-modal-close {
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 32px;
  background-color: #24688d;
  color: #fff;
  border-radius: 40px;
  margin-left: auto;
  cursor: pointer;
}
.template-modal .template-modal-content {
  margin-top: 10px;
}
.template-modal .template-modal-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.template-modal .template-modal-list button {
  padding: 10px 20px;
  border-left: 2px solid #24688d;
  background-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: left;
  cursor: pointer;
}
.template-modal .template-modal-list button:hover {
  color: #fff;
  background-color: #24688d;
  border-color: #fff;
}
.template-modal .area {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}
.template-modal .area label {
  text-align: left;
  font-size: 18px;
}
.template-modal .area input {
  font: inherit;
  width: 100%;
  padding: 6px;
  border: 1px solid #858589;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.template-modal .area .list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  height: 200px;
  overflow: auto;
}
.template-modal .area button {
  padding: 10px 20px;
  border-left: 2px solid #24688d;
  background-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: left;
  cursor: pointer;
}
.template-modal .area button:hover {
  color: #fff;
  background-color: #24688d;
  border-color: #fff;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.table-row-pop {
  position: absolute;
  top: 100%;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: both;
          animation-iteration-count: both;
  padding: 4px 40px;
  background-color: #fff;
  -webkit-box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.4);
          box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.4);
}
.table-row-pop button {
  cursor: pointer;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  color: #24688d;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.table-row-pop button::after {
  content: attr(data-text);
  font-size: 12px;
}
.table-row-pop button:hover {
  opacity: 0.4;
}
.table-row-pop button.hidden {
  color: #858589;
  opacity: 0.6;
  pointer-events: none;
}

.table_pdf_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 400px;
  gap: 10px;
}
.table_pdf_content p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 3px 10px;
  border-bottom: 2px solid #858589;
}
.table_pdf_content label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  padding-left: 40px;
}
.table_pdf_content input {
  height: 24px;
  width: 24px;
}
.table_pdf_content span {
  width: calc(100% - 34px);
  font-size: 20px;
}
.table_pdf_content button {
  margin: 0 auto;
}

.print {
  min-height: calc(100vh - 110px);
  width: 100vw;
  margin: -20px calc(50% - 50vw) -60px;
  padding-bottom: 100px;
}

.a4-page {
  width: 297mm;
  height: 210mm;
  margin: auto;
  padding: 10mm 10mm;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  -webkit-box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.4);
          box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.4);
  margin: 40px auto 20px;
}
.a4-page .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 3mm;
}
.a4-page .info-title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-align: left;
  margin-bottom: 1mm;
}
.a4-page .info-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.a4-page .info-block:nth-of-type(1) {
  border-top: 1px solid #222;
}
.a4-page .info-text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: canter;
      -ms-flex-align: canter;
          align-items: canter;
  white-space: nowrap;
  gap: 1mm;
  font-size: 20px;
  border-right: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 2px 4px 4px;
  overflow: hidden;
}
.a4-page .info-text:nth-of-type(1) {
  border-left: 1px solid #222;
}
.a4-page .info-text.font-s {
  font-size: 16px;
}
.a4-page .info-text span {
  font-size: 14px;
  padding-bottom: 3px;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px dotted #222;
}
.a4-page .floors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3mm;
}
.a4-page .floor-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  border-right: 1px solid #222;
}
.a4-page .floor-block:nth-of-type(1) {
  border-left: 1px solid #222;
}
.a4-page .floor-block span {
  width: 50px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.a4-page .floor-block .floor {
  border-bottom: 1px dotted #222;
}
.a4-page .tables .print_block {
  width: 100%;
}
.a4-page .tables .print_tables {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.a4-page .tables table {
  width: 33.3%;
  border-spacing: 0;
  border-collapse: collapse;
  border: 1px solid #222;
  border-left: none;
  border-bottom: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.a4-page .tables table:nth-of-type(1) {
  border-left: 1px solid #222;
}
.a4-page .tables .table-head-title {
  color: #222;
  font-size: 14px;
  font-weight: 600;
  padding: 8px;
  border-bottom: 1px solid #222;
}
.a4-page .tables .table-head-row,
.a4-page .tables .table-body-row {
  display: grid;
  grid-template-columns: 7% 8% 12% 27% 30% 9% 7%;
  min-height: 32px;
  max-height: 32px;
  border-bottom: 1px solid #222;
  font-size: 9px;
}
.a4-page .tables .table-head-label,
.a4-page .tables .table-body-value {
  font-weight: 600;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  border-left: #858589 1px dotted;
  line-height: 1.2;
}
.a4-page .tables .table-head-label:nth-of-type(1),
.a4-page .tables .table-body-value:nth-of-type(1) {
  border-left: none;
}

/* 印刷時のA4 landscape設定 */
@media print {
  body,
  .content {
    margin: 0;
  }
  .print {
    display: contents;
    margin: 0;
  }
  .header,
  .footer {
    display: none;
  }
  .a4-page {
    margin: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  @page {
    size: A4 landscape;
    margin: 0;
  }
}
.pagination {
  overflow: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.pagination-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.page-item span, .page-item a {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px #24688d solid;
  border-radius: 4px;
}
.page-item span {
  background-color: #24688d;
  color: #fff;
}
.page-item a {
  background-color: #fff;
  color: #24688d;
}

.current-modal {
  position: fixed;
  z-index: 900;
  left: 0;
  right: 0;
  bottom: 0;
  top: calc(100vh - 80px);
  width: 100%;
  opacity: 0;
  max-height: 50px;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.current-modal.js-active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.current-modal.js-open {
  max-height: 100vh;
  top: 0;
}

.current-modal-up {
  background-color: #24688d;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  height: 50px;
  cursor: pointer;
}

.current-modal-content {
  height: calc(100vh - 50px);
  width: 100%;
  max-width: 100vw;
  overflow-x: auto;
  background-color: rgba(34, 34, 34, 0.6);
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 20px;
}
.current-modal-content .li_body {
  position: relative;
  min-width: 600px;
  max-width: 600px;
  min-height: 100%;
  max-height: 100%;
  overflow-y: auto;
  padding-bottom: 40px;
  background-color: #fff;
  -webkit-box-shadow: 2px 2px 6px rgba(34, 34, 34, 0.4);
          box-shadow: 2px 2px 6px rgba(34, 34, 34, 0.4);
}
.current-modal-content .li_header {
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: sticky;
  top: 0;
  background-color: #24688d;
}
.current-modal-content .li_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  font-size: 18px;
  color: #fff;
}
.current-modal-content .li_close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  font-size: 28px;
  color: #fff;
  background-color: #222;
  margin-left: auto;
  cursor: pointer;
}
.current-modal-content .li_sub_list {
  position: sticky;
  top: 0;
  left: 10%;
  max-height: 1px;
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 0;
  gap: 4px;
  overflow: auto;
  background-color: #fff;
  border: none;
  -webkit-box-shadow: 0px 0px 6px rgba(34, 34, 34, 0.4);
          box-shadow: 0px 0px 6px rgba(34, 34, 34, 0.4);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  visibility: hidden;
}
.current-modal-content .li_sub_list.js-active {
  padding: 20px;
  top: 120px;
  max-height: 60vh;
  overflow: auto;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.current-modal-content .li_sub_list label {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 10px;
  border: 1px solid #24688d;
  color: #24688d;
  background-color: #fff;
  border-radius: 4px;
  width: 100%;
  text-align: left;
}
.current-modal-content .li_sub_list label:hover {
  opacity: 0.6;
}
.current-modal-content .li_sub_list label.js-active {
  color: #fff;
  background-color: #24688d;
}
.current-modal-content .inspection_content {
  width: 100%;
  padding: 20px 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 12px;
}
.current-modal-content .inspection_content .inspection_form-title {
  text-align: center;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: sticky;
  padding: 5px 0;
  top: 60px;
  background-color: #fff;
}
.current-modal-content .inspection_content .inspection_form-title label {
  position: relative;
  padding: 8px 14px 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 4px;
  font-size: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #24688d;
  cursor: pointer;
  color: #24688d;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.current-modal-content .inspection_content .inspection_form-title label.js-active {
  background-color: #24688d;
  color: #fff;
}
.current-modal-content .inspection_content .inspection_form-title input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.current-modal-content .inspection_content .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 18px;
}
.current-modal-content .inspection_content .group .group_img {
  display: inline-block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.current-modal-content .inspection_content .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  width: 100%;
}
.current-modal-content .inspection_content .wrap label {
  font-size: 15px;
  text-align: left;
  line-height: 1.5;
}
.current-modal-content .inspection_content .wrap input[type=number],
.current-modal-content .inspection_content .wrap input[type=text],
.current-modal-content .inspection_content .wrap select {
  font-family: inherit;
  font-size: 18px;
  padding: 8px 10px;
  background-color: #fff;
  color: #222;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #858589;
  min-width: 150px;
}
.current-modal-content .inspection_content .wrap input[type=checkbox] {
  height: 24px;
  width: 24px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #858589;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  margin-left: 24px;
}
.current-modal-content .inspection_content .wrap textarea {
  font-family: inherit;
  font-size: 16px;
  padding: 4px 10px;
  background-color: #fff;
  color: #222;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #858589;
  width: 100%;
  min-height: 3.5em;
}
.current-modal-content .inspection_submit {
  cursor: pointer;
  background-color: #24688d;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  width: 200px;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.inspectionButton.current-cell {
  background-color: #222;
  color: #fff;
  opacity: 0.4;
  pointer-events: none;
  padding: 0;
}

.save-modal {
  position: fixed;
  z-index: 9999;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: #fff;
  color: #222;
  padding: 60px 40px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 8px rgba(34, 34, 34, 0.6);
          box-shadow: 0px 0px 8px rgba(34, 34, 34, 0.6);
  opacity: 1;
  pointer-events: none;
  -webkit-animation: fadeout 1s ease 1s forwards;
          animation: fadeout 1s ease 1s forwards;
}

@-webkit-keyframes fadeout {
  to {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes fadeout {
  to {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
.fly-item {
  position: fixed;
  z-index: 9999;
  top: var(--start-y);
  left: var(--start-x);
  width: 24px;
  height: 24px;
  border-radius: 2px;
  -webkit-box-shadow: 2px 2px 6px rgba(34, 34, 34, 0.4);
          box-shadow: 2px 2px 6px rgba(34, 34, 34, 0.4);
  background: #fff;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: fly-to-target 1.2s ease-in-out forwards;
          animation: fly-to-target 1.2s ease-in-out forwards;
  pointer-events: none;
}

@-webkit-keyframes fly-to-target {
  0% {
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  10% {
    -webkit-transform: scale(4);
            transform: scale(4);
    opacity: 1;
  }
  100% { /* 下部中央へ移動して縮小・消える */
    -webkit-transform: translate(calc(50vw - var(--start-x)), calc(100vh - var(--start-y))) scale(0.4);
            transform: translate(calc(50vw - var(--start-x)), calc(100vh - var(--start-y))) scale(0.4);
    opacity: 0;
  }
}

@keyframes fly-to-target {
  0% {
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  10% {
    -webkit-transform: scale(4);
            transform: scale(4);
    opacity: 1;
  }
  100% { /* 下部中央へ移動して縮小・消える */
    -webkit-transform: translate(calc(50vw - var(--start-x)), calc(100vh - var(--start-y))) scale(0.4);
            transform: translate(calc(50vw - var(--start-x)), calc(100vh - var(--start-y))) scale(0.4);
    opacity: 0;
  }
}
.inventory_sheet_content {
  min-width: 800px;
  min-height: 60vh;
  margin-top: 20px;
  position: relative;
}

.inventory_create {
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-block;
  background-color: #fff;
  color: #24688d;
  border: 2px solid #24688d;
  -webkit-box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.3);
          box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.3);
  border-radius: 100px;
  height: 45px;
  width: 45px;
  cursor: pointer;
}
.inventory_create i {
  font-size: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inventory_sheet_details,
.inventory_sheet_used,
.inventory_sheet_wrapper,
.inventory_sheet_change {
  width: 100%;
  display: none;
  margin-top: 40px;
}
.inventory_sheet_details.js-active,
.inventory_sheet_used.js-active,
.inventory_sheet_wrapper.js-active,
.inventory_sheet_change.js-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.inventory_sheet_details ul,
.inventory_sheet_used ul,
.inventory_sheet_wrapper ul,
.inventory_sheet_change ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #858589;
  border-top: none;
}
.inventory_sheet_details ul.content_header,
.inventory_sheet_used ul.content_header,
.inventory_sheet_wrapper ul.content_header,
.inventory_sheet_change ul.content_header {
  background-color: #24688d;
  border-radius: 4px 4px 0 0;
  color: #fff;
  text-align: center;
}
.inventory_sheet_details li,
.inventory_sheet_used li,
.inventory_sheet_wrapper li,
.inventory_sheet_change li {
  height: 100%;
  padding: 8px;
  border-left: 1px solid #858589;
}
.inventory_sheet_details li.w100,
.inventory_sheet_used li.w100,
.inventory_sheet_wrapper li.w100,
.inventory_sheet_change li.w100 {
  min-width: 100px;
  max-width: 100px;
  text-align: center;
}
.inventory_sheet_details li.w120,
.inventory_sheet_used li.w120,
.inventory_sheet_wrapper li.w120,
.inventory_sheet_change li.w120 {
  min-width: 120px;
  max-width: 120px;
}
.inventory_sheet_details li.w150,
.inventory_sheet_used li.w150,
.inventory_sheet_wrapper li.w150,
.inventory_sheet_change li.w150 {
  min-width: 150px;
  max-width: 150px;
}
.inventory_sheet_details li.w180,
.inventory_sheet_used li.w180,
.inventory_sheet_wrapper li.w180,
.inventory_sheet_change li.w180 {
  min-width: 180px;
  max-width: 180px;
}
.inventory_sheet_details li.w200,
.inventory_sheet_used li.w200,
.inventory_sheet_wrapper li.w200,
.inventory_sheet_change li.w200 {
  min-width: 200px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.inventory_sheet_details li.w250,
.inventory_sheet_used li.w250,
.inventory_sheet_wrapper li.w250,
.inventory_sheet_change li.w250 {
  min-width: 250px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.inventory_sheet_details li:first-of-type,
.inventory_sheet_used li:first-of-type,
.inventory_sheet_wrapper li:first-of-type,
.inventory_sheet_change li:first-of-type {
  border-left: none;
}

.inventory_sheet_change,
.inventory_sheet_details {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.inventory_sheet_change span,
.inventory_sheet_details span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 4px;
}
.inventory_sheet_change span label,
.inventory_sheet_details span label {
  font-size: 14px;
  color: #858589;
  letter-spacing: 0.5em;
}
.inventory_sheet_change span input,
.inventory_sheet_details span input {
  font: inherit;
  font-size: 16px;
  padding: 10px 12px;
  border: 1px solid #858589;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 4px;
  min-width: 300px;
}

.order-log-button {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60px;
  width: 60px;
  border: 1px solid #24688d;
  background-color: #fff;
  color: #24688d;
  font-size: 32px;
  border-radius: 100px;
  -webkit-box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.4);
          box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.4);
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.order-log-button:hover {
  opacity: 0.6;
}

.order-log-card {
  background-color: #24688d;
  color: #fff;
  font-size: 14px;
  border: 1px solid #858589;
  border-radius: 4px;
  padding: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 2px;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  overflow: auto;
  min-height: 150px;
  max-height: 150px;
  cursor: pointer;
}
.order-log-card:hover {
  opacity: 0.6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.order-log-card span {
  white-space: nowrap;
}

.parts_get_content .head,
.parts_get_content .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 10px;
  font-size: 14px;
}
.parts_get_content .head {
  text-align: center;
  background-color: #24688d;
  font-weight: 600;
  color: #fff;
}
.parts_get_content .item {
  border-bottom: 1px dotted #222;
}
.parts_get_content span {
  white-space: nowrap;
}
.parts_get_content span:nth-of-type(1), .parts_get_content span:nth-of-type(3), .parts_get_content span:nth-of-type(4) {
  max-width: 220px;
  min-width: 220px;
}
.parts_get_content span:nth-of-type(2), .parts_get_content span:nth-of-type(5) {
  text-align: center;
  max-width: 120px;
  min-width: 120px;
}
.parts_get_content span:nth-of-type(6) {
  text-align: center;
  max-width: 50px;
  min-width: 50px;
}

.setting .setting__create-btn {
  font-size: 18px;
  padding: 8px 24px;
  display: inline-block;
  background-color: #24688d;
  color: #fff;
  border-radius: 4px;
  margin-bottom: 24px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.setting .setting__create-btn:hover {
  opacity: 0.6;
}
.setting .setting__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.setting .setting__item a {
  width: 400px;
  padding: 16px 20px;
  border-left: 5px solid #24688d;
  background-color: #fff;
  color: #222;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 18px;
  border-radius: 2px;
  text-align: left;
}
.setting .setting__item a:hover {
  background-color: #24688d;
  color: #fff;
}
.setting .setting__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #24688d;
  text-align: left;
}
.setting .setting__title input {
  font-size: 24px;
  font-weight: 600;
  color: #24688d;
  text-align: left;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: inherit;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.setting .setting__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.setting .order_setting_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-bottom: 8px;
  font-size: 20px;
  text-align: left;
  padding: 8px 16px 6px;
  color: #fff;
  background-color: #24688d;
  border-radius: 2px;
}
.setting .order_setting_card {
  padding: 20px;
  background-color: #fff;
  -webkit-box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.4);
          box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.4);
  border-radius: 4px;
}
.setting .order_setting_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}
.setting .order_setting_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.setting .order_setting_wrap label {
  font-size: 14px;
  color: #222;
  text-align: left;
}
.setting .order_setting_wrap select {
  font: inherit;
  padding: 8px 8px 6px;
  border: 1px solid #858589;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}
.setting .order_setting_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.setting .order_setting_block input[type=number] {
  margin-top: 14px;
  font: inherit;
  padding: 7px 8px 5px;
  border: 1px solid #858589;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}
.setting .setting_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.setting .setting_btns button, .setting .setting_btns a {
  width: 150px;
}
.setting .setting_delete {
  position: fixed;
  bottom: 50px;
  right: 10px;
}

.template_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 12px;
  overflow: auto;
  padding-right: 10px;
  padding-bottom: 10px;
  overflow: auto;
  max-height: calc(100vh - 190px);
  width: 95vw;
  margin: 0 calc((100% - 95vw) / 2);
}

.breakdown {
  padding: 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.breakdown .breakdown-branch {
  padding: 20px;
  background-color: #fff;
  -webkit-box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.4);
          box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.4);
  border-radius: 4px;
  width: 24%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-width: 320px;
  max-height: calc(100vh - 200px);
  overflow: auto;
}
.breakdown .breakdown-branch.inventory {
  width: 32%;
  min-width: 450px;
}
.breakdown .breakdown-branch-titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5px;
}
.breakdown .breakdown-branch-title {
  font-size: 21px;
  padding: 3px 5px 0;
  border-bottom: 2px solid #24688d;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.breakdown .breakdown-branch-price {
  font-size: 18px;
  padding: 3px 5px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.breakdown .breakdown-branch-price span {
  font-size: 14px;
  color: #858589;
}
.breakdown .breakdown-branch-graph {
  height: 200px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.breakdown .branch-graph-circle {
  max-height: 100%;
  max-width: 100%;
  aspect-ratio: 1/1;
}
.breakdown .breakdown-branch-open {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 12px;
  padding: 4px 8px;
  color: #858589;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #858589;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.breakdown .breakdown-branch-open.js-active {
  background-color: #222;
  border-color: #222;
  color: #fff;
}
.breakdown .breakdown-account,
.breakdown .breakdown-genre {
  margin-top: 7px;
  margin-bottom: 7px;
  border-bottom: 1px solid #858589;
}
.breakdown .breakdown-account-titles,
.breakdown .breakdown-genre-titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 3px 6px;
}
.breakdown .breakdown-account-title,
.breakdown .breakdown-genre-title {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breakdown .breakdown-account-title span,
.breakdown .breakdown-genre-title span {
  font-size: 24px;
}
.breakdown .breakdown-account-price,
.breakdown .breakdown-genre-price {
  text-align: left;
}
.breakdown .breakdown-subs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  overflow: hidden;
  max-height: 0;
  padding: 0;
  border-top: 0;
  -webkit-transition: max-height 0.3s, padding 0.2s;
  transition: max-height 0.3s, padding 0.2s;
}
.breakdown .breakdown-subs.js-active {
  border-top: 2px dotted #858589;
  padding: 6px;
  max-height: 3000px;
}
.breakdown .breakdown-subs.inventory.js-active {
  border-top: 2px dotted #858589;
  padding: 6px;
}
.breakdown .breakdown-sub_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.breakdown .breakdown-sub_account,
.breakdown .breakdown-sub_genre {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  gap: 4px;
  width: calc(100% - 100px);
}
.breakdown .breakdown-sub_account span,
.breakdown .breakdown-sub_genre span {
  font-size: 18px;
}
.breakdown .breakdown-sub_genre {
  font-size: 14px;
}
.breakdown .breakdown-sub_price {
  width: 95px;
  text-align: right;
}
.breakdown .breakdown-numbers {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  -webkit-box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.4);
          box-shadow: 2px 2px 4px rgba(34, 34, 34, 0.4);
  border-radius: 4px;
  padding: 12px;
  min-width: 640px;
  max-width: 1000px;
  max-height: calc(100vh - 200px);
  overflow: auto;
}
.breakdown .breakdown-numbers-head,
.breakdown .breakdown-numbers-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.breakdown .breakdown-numbers-head li,
.breakdown .breakdown-numbers-body li {
  width: 100%;
  padding: 5px 3px;
  font-size: 13px;
}
.breakdown .breakdown-numbers-head li {
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  color: #fff;
  background-color: #333;
  padding-top: 8px;
  padding-bottom: 8px;
}
.breakdown .breakdown-numbers-head .back-blue {
  background-color: rgb(24, 122, 158);
}
.breakdown .breakdown-numbers-head .back-orange {
  background-color: rgb(189, 81, 9);
}
.breakdown .breakdown-numbers-head .back-pink {
  background-color: #a82665;
}
.breakdown .breakdown-numbers-head .back-green {
  background-color: rgb(22, 148, 22);
}
.breakdown .breakdown-numbers-head .back-yellow {
  background-color: rgb(161, 153, 6);
}
.breakdown .breakdown-numbers-head .back-red {
  background-color: rgb(158, 19, 1);
}
.breakdown .breakdown-numbers-head .back-purple {
  background-color: rgb(82, 8, 139);
}
.breakdown .breakdown-numbers-body {
  border-bottom: 1px dotted #858589;
  padding-left: 5px;
}
.breakdown .breakdown-numbers-body li {
  font-size: 15px;
}
.breakdown .breakdown-numbers-body .tl {
  text-align: left;
}
.breakdown .breakdown-numbers-body .tr {
  text-align: right;
}
.breakdown .blue {
  color: #1d95c1;
}
.breakdown .orange {
  color: #f2670b;
}
.breakdown .pink {
  color: #f53794;
}
.breakdown .green {
  color: #1ecf1e;
}
.breakdown .yellow {
  color: #e7dc0b;
}
.breakdown .red {
  color: #de1d03;
}
.breakdown .purple {
  color: #7a0ad0;
}

.trend {
  padding: 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  overflow: scroll;
  padding-bottom: 100px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE, Edge */
}
.trend::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
.trend .trend-branch {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 6px rgba(34, 34, 34, 0.3);
          box-shadow: 0px 0px 6px rgba(34, 34, 34, 0.3);
  padding: 16px;
  min-width: 1300px;
  max-width: 1600px;
}
.trend .trend-head {
  width: 14.2857142857%;
}
.trend .trend-month {
  width: 7.1428571429%;
}
.trend .trend-label {
  padding: 5px;
  border-bottom: 1px solid #858589;
}
.trend .trend-account {
  border-bottom: 1px dotted #858589;
  height: 40px;
}
.trend .trend-account-titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding-bottom: 1px;
}
.trend .trend-account-titles.title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.trend .trend-account-title {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  padding: 3px 6px;
}
.trend .trend-account-title span {
  font-size: 20px;
}
.trend .trend-account-price {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  font-size: 14px;
  padding: 3px 6px;
}
.trend .trend-account-price.order {
  background-color: #e5f1fa;
}
.trend .trend-subs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  overflow: hidden;
  max-height: 0;
  padding: 0;
  border-top: 0;
  -webkit-transition: max-height 0.3s, padding 0.2s;
  transition: max-height 0.3s, padding 0.2s;
}
.trend .trend-subs.js-active {
  border-top: 2px dotted #858589;
  padding: 6px;
  max-height: 3000px;
}
.trend .trend-sub_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.trend .trend-sub_account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  gap: 4px;
  width: calc(100% - 100px);
}
.trend .trend-sub_account span {
  font-size: 18px;
}
.trend .trend-sub_price {
  width: 95px;
  text-align: right;
}
.trend .blue {
  color: #1d95c1;
}
.trend .orange {
  color: #f2670b;
}
.trend .pink {
  color: #f53794;
}
.trend .green {
  color: #1ecf1e;
}
.trend .yellow {
  color: #e7dc0b;
}
.trend .red {
  color: #de1d03;
}
.trend .purple {
  color: #7a0ad0;
}