@charset "UTF-8";
/* variable configs */
:root {
  /*
  * FONTS
  */
  --cus-font-family-base: "Noto Sans", sans-serif;
  --cus-font-weight-base: 500;
  --cus-font-style-base: normal;
  --cus-font-size-base: 14px;
  --cus-font-size-smp-base: 100%;
  --cus-font-mplus1p: "M PLUS 1p", sans-serif;
  /*
  * LINE-HEIGHT
  */
  --cus-line-height-base: 1.5;
  /*
  * COLORS
  */
  --cus-text-color-base: #272727;
  /*
  * CONTAINER WIDTH
  */
  --cus-container-default: 1200px;
  --cus-container-default-smp: 95%;
  --cus-container-default-padding: 10px;
  /*
  * EFFECTS
  */
  --cus-transition-speed: 0.5s;
  /*
  * HEADER
  */
  --cus-size-header-height: 63px;
  /*
  * SIDEBAR
  */
  --cus-size-sidebar-width: 210px;
  --cus-size-sidebar-space: 30px;
  /*
  * DATA TABLE
  */
  --dataTable-link-color: #1A56C6;
  --dataTable-bgRowOdd-color: #1A56C6;
  --dataTable-bgRowHover-color: #D1DDF0;
}

/* font */
.f_mplus1p, .btn-add {
  font-style: normal;
  font-weight: 500;
  font-family: var(--cus-font-mplus1p);
}

/* inview */
[class*=inview-] {
  visibility: hidden;
  opacity: 0;
  transition: 1s transform, 1s opacity;
}

@media (min-width: 769px) {
  .inview-up {
    transform: translate3d(0, 30px, 0);
  }
  .inview-down {
    transform: translate3d(0, -30px, 0);
  }
  .inview-left {
    transform: translate3d(30px, 0, 0);
  }
  .inview-right {
    transform: translate3d(-30px, 0, 0);
  }
}
.inview-active {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  opacity: 1;
}

/* components */
/* variable configs */
.btn, .btn-download, .btn-upload, .btn-add {
  --btn-color-text: #fff;
  --btn-color-bg: #D14216;
  --btn-color-border: #fff;
  --btn-font-size: 15px;
  --btn-font-weight: 500;
  --btn-min-width: 209px;
  --btn-height: 39px;
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
  border-radius: 7px;
  background-color: var(--btn-color-bg);
  padding: 13px 0;
  min-width: var(--btn-min-width);
  height: var(--btn-height);
  color: var(--btn-color-text);
  font-weight: var(--btn-font-weight);
  font-size: var(--btn-font-size);
  text-align: center;
}
.btn:hover, .btn-download:hover, .btn-upload:hover, .btn-add:hover {
  opacity: 0.8;
  text-decoration: none;
}

button.btn, button.btn-download, button.btn-upload, button.btn-add {
  cursor: pointer;
}

a.btn, a.btn-download, a.btn-upload, a.btn-add {
  text-decoration: none;
}

.btn-add {
  --btn-min-width: 281px;
  --btn-font-size: 17px;
  --btn-height: 43px;
  display: block;
  margin-bottom: 12px;
  padding-left: 45px;
  line-height: var(--btn-font-size);
}
.btn-add::after {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  background-image: url("../images/icon-plus-circle.png");
  background-size: contain;
  width: 21px;
  height: 21px;
  content: "";
}

.btn-upload {
  --btn-min-width: 146px;
  --btn-font-size: 14px;
  --btn-font-weight: 500;
  --btn-color-bg: #fff;
  --btn-color-text: #272727;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.16);
}

.btn-download {
  --btn-min-width: 238px;
  --btn-font-size: 15px;
  --btn-font-weight: 600;
  float: right;
  margin-bottom: 17px;
}

/* templates | base */
/* html tag reset */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: var(--cus-text-color-base);
  font-style: var(--cus-font-style-base);
  font-weight: var(--cus-font-weight-base);
  font-size: var(--cus-font-size-base);
  line-height: var(--cus-line-height-base);
  font-family: var(--cus-font-family-base);
}

nav, ul, li {
  list-style: none;
}

img {
  display: block;
  margin: 0 auto;
  border: 0;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  outline: 0;
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

input[type=checkbox] {
  border: 1px solid #b3b3b3;
  border-radius: 0;
  background-color: #fff;
}
input[type=radio] {
    border: 1px solid #b3b3b3;
    background-color: #fff;
}

input[type=submit]:hover {
  opacity: 0.8;
  cursor: pointer;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
select,
textarea {
  position: relative;
  border: 1px solid #b3b3b3;
  border-radius: 0;
  background-color: #fff;
  padding: 6px 0;
  width: auto;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  text-indent: 1em;
}

textarea {
  resize: none;
}

area {
  outline: 0;
}

table {
  margin: 0 auto;
  width: 100%;
  max-width: var(--cus-container-default);
  table-layout: fixed;
}

table, td, th {
  vertical-align: top;
  border-collapse: collapse;
  border-spacing: 0;
  font-weight: var(--cus-font-weight-base);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 120%;
}

/*
* smooth effect
*/
a, button, input {
  -webkit-transition: var(--cus-transition-speed);
  transition: var(--cus-transition-speed);
}

/* templates | header */
.header_screentitle {
  color: #fff;
}
.header_screentitle h1 {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  font-family: var(--cus-font-mplus1p);
}
.header_boxinfo__user {
  position: relative;
}
.header_boxinfo__user a._trigger {
  display: block;
  margin-right: var(--cus-size-sidebar-space);
  width: 28px;
  height: 28px;
  color: #fff;
  background-image: url("../images/icon-user.png");
  background-size: 28px auto;
  background-position: center left;
  background-repeat: no-repeat;
}
.header_boxinfo__user a._trigger::after {
  display: inline-block;
  padding-left: 40px;
  content: "…";
}
.header_boxinfo__user a._trigger ._txt {
  display: none;
}
.header_boxinfo__user ul._link {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 100;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.11);
  border-radius: 5px;
  background-color: #fff;
  padding: 5px 0;
  width: 200px;
}
.header_boxinfo__user ul._link li a {
  display: block;
  padding: 10px 20px;
  color: #222938;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.5;
}
.header_boxinfo__user ul._link li a:hover {
  background-color: rgb(243, 244, 246);
  text-decoration: none;
}

/* templates | sidebar */
.sidebar_toggle {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  outline: none;
  border: none;
  width: 30px;
  height: 30px;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
}
.sidebar_toggle:hover {
  background-color: rgba(0, 70, 181, 0.12);
  color: #1A56C6;
}
.sidebar_navi {
  display: none;
  min-width: var(--cus-size-sidebar-width);
}
.sidebar_navi a {
  display: block;
  padding: 12px 15px 12px 35px;
  font-size: 16px;
  background: #ebebeb;
  color: #646464;
}
.sidebar_navi a._current, .sidebar_navi a:hover {
  background-color: #ced7e4;
  color: #3c6ecb;
  text-decoration: none;
}

/* common | container */
.container-default, .container-1300, .container, .container-full {
  position: relative;
  clear: both;
  z-index: 1;
  margin-right: auto;
  margin-left: auto;
  width: var(--cus-container-default, 100%);
  max-width: var(--cus-container-default, 100%);
}

.container-full {
  --cus-container-default: 100%;
  --cus-container-default-smp: 100%;
}

.container {
  padding-right: var(--cus-container-default-padding);
  padding-left: var(--cus-container-default-padding);
}

.container-1300 {
  --cus-container-default: 1300px;
  --cus-container-default-smp: 95%;
}

/*common | template */
#header {
  display: flex;
  position: fixed;
  top: 0;
  left: 50px;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: all 0.3s ease;
  background-color: #222938;
  padding-right: var(--cus-size-sidebar-space);
  padding-left: var(--cus-size-sidebar-space);
  width: calc(100% - 50px);
  min-height: var(--cus-size-header-height);
}

#wrapper {
  display: flex;
  height: 100vh;
}

#sidebar {
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.11);
  background-color: #EBEBEB;
  padding-top: var(--cus-size-header-height);
  width: var(--cus-size-sidebar-width);
  width: 50px;
}

#content {
  transition: all 0.3s ease;
  padding: calc(var(--cus-size-header-height) + 20px) 0 70px var(--cus-size-sidebar-space);
  width: calc(100% - 50px);
  overflow-y: auto;
}

.sidebar_toggle_show #header {
  left: var(--cus-size-sidebar-width);
  width: calc(100% - var(--cus-size-sidebar-width));
}
.sidebar_toggle_show #sidebar {
  width: var(--cus-size-sidebar-width);
}
.sidebar_toggle_show #content {
  width: calc(100% - var(--cus-size-sidebar-width));
}

#content.template_logout {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 100%;
  height: 100vh;
}

.common-button {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #EBEAEA;
  padding: 10px 0;
  width: 100%;
  text-align: center;
}
.common-button a:hover {
  text-decoration: none;
}

.common_list_metabox {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-right: 50px;
  margin-bottom: 10px;
}
.common_list_metabox ._left {
  margin-bottom: -7px;
  font-weight: 500;
  font-size: 12px;
}
.common_list_metabox ._right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
}
.common_list_metabox.just-right {
  justify-content: end;
  margin-bottom: 12px;
}
.common_list__searchbox {
  position: relative;
  border-radius: 50px;
  background-color: #F7F5F5;
  width: 306px;
}
.common_list__searchbox input {
  border: none;
  border-radius: 50px;
  background-color: #F7F5F5;
  padding: 11px 35px 11px 14px;
  width: 100%;
  height: 39px;
  font-size: 13px;
}
.common_list__searchbox::after {
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  content: "";
  background-image: url("../images/icon-search.png");
  background-size: contain;
  z-index: 100;
  width: 15px;
  height: 15px;
}

.common_detail {
  margin-top: 30px;
  margin-bottom: 100px;
}
.common_detail_form dl {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin-bottom: 10px;
}
.common_detail_form dt {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E1E7F4;
  width: 167px;
  min-height: 43px;
}
.common_detail_form dd {
  width: calc(100% - 167px - 10px);
}
.common_detail_form dd .custom-select {
  margin: 0 auto;
  border: 1px solid #DBDBDB;
  border-radius: 3px;
  min-width: 80px;
  max-width: calc(100% - 5px);
}
.common_detail_form dd .custom-select select {
  padding-left: 5px;
  width: 100%;
  height: 100%;
  min-height: 40px;
}
.common_detail_form dd .custom-select::after {
  right: 10px;
}
.common_detail_form input,
.common_detail_form textarea {
  border: 1px solid #DBDBDB;
  border-radius: 5px;
  padding-right: 10px;
  padding-left: 10px;
  min-width: 599px;
  min-height: 43px;
  text-indent: 5px;
}
.common_detail_form ._select_wrap {
  display: inline-block;
  position: relative;
}
.common_detail_form ._select_wrap select {
  appearance: none;
  border: 1px solid #DBDBDB;
  border-radius: 5px;
  min-width: 84px;
  min-height: 43px;
  text-indent: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.common_detail_form ._select_wrap::after {
  position: absolute;
  top: 45%;
  right: 20px;
  transform: translateY(-50%) rotate(-225deg);
  border-top: 2px solid #1A56C6;
  border-right: 2px solid #1A56C6;
  width: 8px;
  height: 8px;
  pointer-events: none;
  content: "";
}
@-moz-document url-prefix() {
  .common_detail_form ._select_wrap select {
    text-indent: 8px;
  }
}
.common_detail_form textarea {
  min-height: 95px;
}
.common_detail_form ._note {
  display: block;
  margin-top: 5px;
  margin-bottom: 0;
  color: #9A9292;
  font-weight: 400;
  font-size: 12px;
}

.dt-column-header {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}

div.dt-container .dt-empty-footer .dt-scroll-body,
div.dt-container .dt-empty-footer tbody > tr:last-child > * {
  border: 0;
}
div.dt-container div.dt-layout-row {
  margin: 2px 0 0 0;
}
div.dt-container div.dt-layout-full > :only-child {
  margin: 0;
}

div.dt-container.dt-empty-footer .dt-scroll-body,
div.dt-container.dt-empty-footer tbody > tr:last-child > * {
  border-bottom: 0;
}

table.dataTable {
  max-width: calc(100% - 30px);
  table-layout: fixed;
  /* common column width default */
  /* element */
}
table.dataTable .select-checkbox {
  width: 60px;
}
table.dataTable .reorder {
  width: 80px;
}
table.dataTable .reorder-index {
  width: 40px;
  text-align: center !important;
}
table.dataTable .reorder-index .dt-column-header {
  visibility: hidden;
}
table.dataTable td.reorder {
  color: #707070 !important;
}
table.dataTable .col-status {
  width: 100px;
  text-align: center !important;
}
table.dataTable .col-count {
  width: 100px;
  text-align: center !important;
}
table.dataTable .col-require {
  width: 100px;
  text-align: center !important;
}
table.dataTable .col-btn_group {
  padding-right: 0;
  padding-left: 0;
  width: 125px;
}
table.dataTable a {
  color: var(--dataTable-link-color);
  text-decoration: underline;
}
table.dataTable .col-btn_group {
  text-align: center;
}
table.dataTable .col-btn_group .add,
table.dataTable .col-btn_group .edit,
table.dataTable .col-btn_group .delete {
  display: inline-block;
  margin: 0 10px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}
table.dataTable .col-btn_group .edit {
  background-image: url("../images/icon-edit.png");
}
table.dataTable .col-btn_group .delete {
  background-image: url("../images/icon-del.png");
}
table.dataTable .col-btn_group .add {
  background-image: url("../images/icon-plus.png");
}
table.dataTable .hidden {
  visibility: hidden;
}
table.dataTable thead th {
  vertical-align: middle;
  border: 0;
  border-right: 5px solid #fff;
  border-radius: 3px;
  background-color: rgba(235, 235, 235, 0.57);
  padding: 0;
  padding: 8px 5px !important;
}
table.dataTable thead th:last-child {
  border-right: 0;
}
table.dataTable tbody tr:nth-child(odd) td {
  background-color: rgba(26, 86, 198, 0.04);
}
table.dataTable tbody tr:nth-child(odd) td.reorder, table.dataTable tbody tr:nth-child(odd) td.col-btn_group {
  background-color: transparent;
}
table.dataTable tbody tr.selected *, table.dataTable tbody tr:hover * {
  box-shadow: none;
  color: inherit;
}
table.dataTable tbody tr.selected * .group-tag, table.dataTable tbody tr:hover * .group-tag {
  color: #fff;
}
table.dataTable tbody tr.selected td, table.dataTable tbody tr:hover td {
  background-color: var(--dataTable-bgRowHover-color);
}
table.dataTable tbody tr.selected td.reorder, table.dataTable tbody tr.selected td.col-btn_group, table.dataTable tbody tr:hover td.reorder, table.dataTable tbody tr:hover td.col-btn_group {
  background-color: transparent;
}
table.dataTable tbody tr.selected > td.select-checkbox::before,
table.dataTable tbody tr.selected > th.select-checkbox::before, table.dataTable tbody tr:hover > td.select-checkbox::before,
table.dataTable tbody tr:hover > th.select-checkbox::before {
  font-size: 20px;
  line-height: 18px;
}
table.dataTable tbody tr.selected a, table.dataTable tbody tr:hover a {
  color: var(--dataTable-link-color);
}
table.dataTable tbody tr td {
  vertical-align: middle;
  border-top: 5px solid #fff !important;
  border-bottom: 5px solid #fff !important;
  padding: 13px 10px;
}
table.dataTable tbody tr td.reorder {
  vertical-align: middle;
  font-size: 24px;
  text-align: center;
}
table.dataTable tbody tr td.select-checkbox::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  width: 20px;
  height: 20px;
  color: var(--dataTable-link-color);
}
table.dataTable tbody tr td a {
  transition: none;
}

.custom-select {
  display: inline-block;
  position: relative;
  height: 100%;
}
.custom-select select {
  appearance: none;
  border: none;
  background-color: transparent;
  color: black;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  padding-right: 20px;
  height: 100%;
  text-align: center;
  text-indent: 0;
}
.custom-select::after {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%) rotate(-225deg);
  border-top: 2px solid var(--dataTable-link-color);
  border-right: 2px solid var(--dataTable-link-color);
  width: 8px;
  height: 8px;
  pointer-events: none;
  content: "";
}

.group-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.group-tag .tag {
  border-radius: 4px;
  padding: 2px 5px;
  color: #fff;
  font-size: 13px;
}
.group-tag .tag-blue {
  background-color: #1A56C6;
}
.group-tag .tag-green {
  background-color: #35687E;
}
.group-tag .tag-default {
  background-color: #000000;
}

.dropzone-image .box {
  position: relative;
  background: #ffffff;
  width: 40%;
}
.dropzone-image .box-header {
  display: block;
  position: relative;
  margin-bottom: 10px;
  padding: 10px;
  color: #444;
}
.dropzone-image .box-tools {
  position: absolute;
  top: 45px;
  right: -45%;
}
.dropzone-image .box-body {
  max-width: 249px;
}
.dropzone-image .dropzone-wrapper {
  position: relative;
  opacity: 0.55;
  border: 2px dashed #B5B5B5;
  border-radius: 26px;
  background: #ecf0f5;
  width: 599px;
  height: 150px;
  color: #A7A7A7;
}
.dropzone-image .dropzone-desc {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  margin: 0 auto;
  width: 40%;
  font-size: 16px;
  text-align: center;
}
.dropzone-image .dropzone-wrapper:hover, .dropzone-image .dropzone-wrapper.dragover {
  background: rgba(236, 240, 245, 0.5);
}
.dropzone-image .dropzone, .dropzone-image .dropzone:focus {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  outline: none !important;
  width: 100%;
  height: 150px;
}
.dropzone-image .preview-zone {
  width: 599px;
  text-align: center;
}
.dropzone-image .preview-zone.box {
  margin-bottom: 0;
  box-shadow: none;
  border-radius: 0;
}
.dropzone-image .remove-preview {
  background-image: url("../images/icon-cancel.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  border: none;
  background-color: transparent;
  width: 22px;
  height: 30px;
}
.dropzone-image .custom-hidden {
  display: none;
}

/* pages/screen | login */
.login {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login_logo {
  max-width: 50px;
}
.login_form {
  margin: 0 auto;
  min-width: 335px;
}
.login_form h1 {
  margin: 26px 0 39px 0;
  color: #272727;
  font-size: 21px;
  text-align: center;
}
.login_form p {
  color: #272727;
  font-size: 14px;
}
.login_form .mt2 {
  margin-bottom: 20px;
}
.login_form form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 335px;
}
.login_form-group {
  margin-bottom: 20px;
  width: 100%;
}
.login_form-group label {
  color: #272727;
  font-size: 14px;
}
.login_form-group input {
  border: 1px solid #DBDBDB;
  border-radius: 5px;
  padding: 5px 10px;
  width: 100%;
  height: 40px;
  text-indent: 5px;
}
.login_form-group input[type=checkbox] {
  position: relative;
  vertical-align: text-top;
  cursor: pointer;
  outline: 0;
  border: 1px solid #ACACAC;
  border-radius: 2px;
  background: none;
  padding: 0 !important;
  width: 20px;
  height: 20px;
  line-height: 0;
  -webkit-appearance: none;
  opacity: 0.5;
}
.login_form-group input[type=checkbox]:before {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
  margin: -1px -1px 0 -1px;
  border: solid #FFF;
  border-width: 0 2px 2px 0;
  width: 5px;
  height: 10px;
  content: "";
}
.login_form-group input[type=checkbox]:hover {
  opacity: 1;
}
.login_form-group input[type=checkbox]:checked {
  opacity: 1;
  background-color: #ACACAC;
}
.login_form-group.remember {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
.login_password {
  position: relative;
    display: flex;
    align-items: center;
}
.login_password input {
    width: 100%;
    padding-right: 30px;
    box-sizing: border-box;
}
.login_toggle {
    position: absolute;
    right: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
}
.login_toggle img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}
.login_forgot-password {
  color: #707070;
  font-size: 14px;
}
.login_button {
  display: flex;
  justify-content: center;
  gap: 36px;
}
.login .--grey {
  --btn-color-bg: #898989;
}
.login_reset h1 {
  margin: 20px 0 43px 0;
}
.login_reset-mail p {
  margin-bottom: 50px;
}
.login_reset-sent p {
  margin-bottom: 57px;
}
.login_reset-reinput h1 {
  margin: 19px 0 38px 0;
}
.login_reset-reinput p {
  margin-bottom: 44px;
  text-align: center;
}
.login_reset-complete h1 {
  margin: 0 0 43px 0;
}
.login_reset-complete p {
  margin-bottom: 12px;
  text-align: center;
}
.login_reset-complete a:hover {
  text-decoration: none;
}

.product_list .col-03 .dt-column-title,
.product_list .col-04 .dt-column-title,
.product_list .col-06 .dt-column-title {
  font-weight: 700;
}
.product_detail .col-08 .dt-column-title {
  font-weight: 700;
}
.product_detail table.dataTable .col-status,
.product_detail table.dataTable .col-06,
.product_detail table.dataTable .col-require {
  width: 90px;
}
.product_detail table.dataTable .col-07 {
  width: 80px;
}
.product_detail table.dataTable tbody tr:nth-child(odd) td {
  background-color: transparent;
}
.product_detail table.dataTable td:has(> div.custom-select) {
  padding-right: 0;
  padding-left: 0;
}
.product_detail table.dataTable .custom-select {
  border: 1px solid #DBDBDB !important;
  border-radius: 3px;
}
.product_detail table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order::before,
.product_detail table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order::after {
  display: none;
}
.product_detail table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order::before {
  opacity: 0;
}
.product_detail table.dataTable .col-btn_group {
  text-align: left;
}
.product_detail table.dataTable tbody tr td {
  padding-top: 1px;
  padding-bottom: 1px;
}

.register-edit-flow_table {
  max-width: calc(100% - 37px);
}
.register-edit-flow_table .col-03 {
  width: 95px;
}
.register-edit-flow_table .col-05,
.register-edit-flow_table .col-06,
.register-edit-flow_table .col-07 {
  width: 85px;
}
.register-edit-flow_table.dataTable .col-btn_group {
  text-align: left;
}
.register-edit-flow_table.dataTable .col-btn_group .dt-column-title {
  font-weight: 700;
}
.register-edit-flow table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order::before {
  opacity: 0;
}
.register-edit-flow_img {
  margin: 0 auto;
  height: 40px;
}
.register-edit-flow_img img {
  height: 100%;
}
.register-edit h1 {
  margin-bottom: 8px;
  background-color: #1A56C6;
  padding: 10px 0 10px 19px;
  max-width: calc(100% - 30px);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}
.register-edit dl {
  margin-bottom: 36px;
}
.register-edit .sales-price,
.register-edit .cost-price {
  width: 120px;
  min-width: 120px;
  text-align: end;
}
.register-edit_conditions {
  max-width: calc(100% - 37px);
}
.register-edit_conditions .custom-select select {
  border: 1px solid #DBDBDB;
  border-radius: 3px;
  min-height: 35px;
}
.register-edit_conditions .custom-select::after {
  right: 15px;
}
.register-edit_conditions input {
  min-width: 0;
}
.register-edit_conditions label {
  display: flex;
  align-items: center;
}
.register-edit_conditions-header {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-bottom: 20px;
}
.register-edit_conditions-header select {
  min-width: 120px;
}
.register-edit_conditions-header input {
  margin-right: 6px;
}
.register-edit_conditions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 66px;
  margin-bottom: 100px;
}
.register-edit_conditions ._item {
  border-bottom: 1px solid rgba(112, 112, 112, 0.16);
  padding: 1px 0;
  width: calc(50% - 33px);
}
.register-edit_conditions ._item input {
  margin-right: 13px;
}
.register-edit_conditions ._item input[type=checkbox] {
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.employee-list .text-input {
  width: 10%;
}
.employee-list .text-input input {
  border: 1px solid #DBDBDB;
  padding-right: 8px;
  padding-left: 8px;
  width: calc(100% - 10px);
  min-height: 35px;
  text-indent: 0;
}
.employee-list table.dataTable .col-btn_group {
  width: 80px;
  min-width: 80px;
}
.employee-list table.dataTable tr:last-child th {
  background-color: rgba(200, 198, 198, 0.57);
}
.employee-list table.dataTable thead > tr > th {
  border: 5px solid #fff;
}
.employee-list table.dataTable tr td {
  border-color: #DBDBDB;
  height: 58px;
}
.employee-list table.dataTable .radio-button {
  display: flex;
  justify-content: space-between;
}
.employee-list table.dataTable .hidden__wrap {
  position: relative;
}
.employee-list table.dataTable .hidden__input {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}
.employee-list table.dataTable .hidden__input-text {
  position: absolute;
  top: 50%;
  right: 50%;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease;
  height: 35px;
}
.employee-list table.dataTable input[type=text] {
  color: #1A56C6;
}
.employee-list table.dataTable a {
  text-decoration: underline;
}
.employee-list table.dataTable > tbody > tr > td:not(td:has(input[type=radio])) {
  padding-right: 0;
  padding-left: 0;
}
.employee-list table.dataTable thead th {
  padding: 0 !important;
  height: 28px;
}
.employee-list table.dataTable .f_extrabold .dt-column-title {
  font-weight: 700;
}
.employee_detail .common_detail_form dt {
  justify-content: start;
  background-color: transparent;
}
.employee_detail .common_detail_form input {
  width: 332px;
  min-width: 0;
}

.estimate-list_table {
  max-width: calc(100% - 37px);
}
.estimate-list table.dataTable > tbody > tr:nth-child(odd) {
  background-color: rgba(26, 86, 198, 0.04);
}
/* .estimate-list table.dataTable .f_extrabold .dt-column-title {
  font-weight: 700;
} */
.estimate_detail {
  max-width: calc(100% - 161px);
}
.estimate_detail .common_detail_form dl {
  margin-bottom: 30px;
}
.estimate_detail .common_detail_form dd {
  display: flex;
  align-items: center;
}
.estimate_detail .common_detail_form dd a {
  color: #1A56C6;
  text-decoration: underline;
}
.estimate_detail .common_detail_form dt {
  background-color: rgba(235, 235, 235, 0.57);
  min-height: 35px;
}
.estimate_detail .date {
  --cus-font-size-base: 15px;
}
.estimate_detail table.dataTable {
  max-width: none;
}
.estimate_detail table.dataTable > thead > tr > td,
.estimate_detail table.dataTable > thead > tr > th {
  border: 1px solid #D3D3D3 !important;
}
.estimate_detail table.dataTable tbody tr td {
  border-top: 0 !important;
  border-bottom: 0 !important;
}
.estimate_detail table.dataTable tbody tr.group-start {
  border-top: 1px solid #D3D3D3;
}
.estimate_detail table.dataTable td {
  height: auto;
}
.estimate_detail table.dataTable > thead > tr > th {
  height: 42px;
}
.estimate_detail table.dataTable tbody tr td {
  border-right: 1px solid #D3D3D3;
  border-left: 1px solid #D3D3D3;
  background-color: #fff;
}
.estimate_detail table.dataTable tr.hover-group td {
  background-color: #f0f8ff;
}
.estimate_detail table.dataTable > thead > tr > th {
  height: 42px;
}
.estimate_detail div.dt-container.dt-empty-footer .dt-scroll-body,
.estimate_detail div.dt-container.dt-empty-footer tbody > tr:last-child > * {
  border-bottom: 1px solid #D3D3D3 !important;
}
.estimate_detail .group-table {
  position: relative;
}
.estimate_detail .group-table a {
  position: absolute;
  top: -50px;
  right: 0;
}
.estimate table.dataTable td:has(> .group-tag) {
  vertical-align: top;
}
.estimate .text-right {
  text-align: right;
}
.estimate .text-right {
  text-align: right;
}
.estimate .f_number {
  --cus-font-weight-base: 400;
}
/*# sourceMappingURL=styles.min.css.map */
