@charset "UTF-8";
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes btnLoading {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(360deg);
            transform: translateY(-50%) rotate(360deg);
  }
}
@keyframes btnLoading {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(360deg);
            transform: translateY(-50%) rotate(360deg);
  }
}
@-webkit-keyframes btnComplete {
  0% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  10% {
    -webkit-transform: translateY(-70%) rotate(-45deg);
            transform: translateY(-70%) rotate(-45deg);
  }
  15% {
    -webkit-transform: translateY(-70%) rotate(45deg);
            transform: translateY(-70%) rotate(45deg);
  }
  20% {
    -webkit-transform: translateY(-40%) rotate(0deg);
            transform: translateY(-40%) rotate(0deg);
  }
  30% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@keyframes btnComplete {
  0% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  10% {
    -webkit-transform: translateY(-70%) rotate(-45deg);
            transform: translateY(-70%) rotate(-45deg);
  }
  15% {
    -webkit-transform: translateY(-70%) rotate(45deg);
            transform: translateY(-70%) rotate(45deg);
  }
  20% {
    -webkit-transform: translateY(-40%) rotate(0deg);
            transform: translateY(-40%) rotate(0deg);
  }
  30% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*==========================
base
==========================*/
/*==========================
background-color
==========================*/
/*==========================
font
==========================*/
/*==========================
shadow
==========================*/
/*==========================
height
==========================*/
/* ===============================================
# z-index
=============================================== */
body, html {
  background-color: #F8F8F8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #444444;
  font-family: "Roboto Flex", "BIZ UDPGothic", sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: normal;
  margin: 0;
  padding: 0;
  height: 100dvh;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/*!
 * ress.css • v1.2.2
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
# Global selectors
# ================================================================= */
* {
  background-repeat: no-repeat;
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
# General elements
# ================================================================= */
/* Add the correct display in iOS 4-7.*/
audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
  /* Show the overflow in Edge and IE */
}

/*
  * Correct `block` display not defined for any HTML5 element in IE 8/9
  * Correct `block` display not defined for `details` or `summary` in IE 10/11
  * and Firefox
  * Correct `block` display not defined for `main` in IE 11
  */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden],
template {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: 1px dotted;
  /* Add a bordered underline effect in all browsers */
  text-decoration: none;
  /* Remove text decoration in Firefox 40+ */
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
  -webkit-text-decoration-skip: objects;
  /* Remove gaps in links underline in iOS 8+ and Safari 8+ */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

b,
strong {
  font-weight: bolder;
  /* Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+ */
}

dfn {
  font-style: italic;
  /* Address styling not present in Safari and Chrome */
}

/* Address styling not present in IE 8/9 */
mark {
  background-color: #ff0;
  color: #000;
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* # =================================================================
# Forms
# ================================================================= */
input {
  border-radius: 0;
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

[type=number] {
  width: auto;
  /* Firefox 36+ */
}

[type=search] {
  -moz-appearance: textfield;
       appearance: textfield;
  -webkit-appearance: textfield;
  /* Safari 8+ */
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* Safari 8 */
}

textarea {
  overflow: auto;
  /* Internet Explorer 11+ */
  resize: vertical;
  /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule. */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -moz-appearance: button;
       appearance: button;
  -webkit-appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

/* Style select like a standard input */
select {
  /*-moz-appearance: none; /* Firefox 36+ */
  /*-webkit-appearance: none; /* Chrome 41+ */
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor;
  /* Internet Explorer 11+ */
}

legend {
  border: 0;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  /* Correct the text wrapping in Edge and IE */
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* Correct the inability to style clickable types in iOS and Safari */
  font: inherit;
  /* Change font properties to `inherit` in Chrome and Safari */
}

[type=search] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
       appearance: textfield;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  /* Correct the outline style in Safari */
}

/* # =================================================================
	 # Specify media element style
	 # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
  vertical-align: bottom;
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
  /* Internet Explorer 11- */
}

audio,
canvas,
progress,
video {
  display: inline-block;
  /* Internet Explorer 11+, Windows Phone 8.1+ */
}

/* # =================================================================
	 # Accessibility
	 # ================================================================= */
/* Hide content from screens but not screenreaders */
@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

/* # =================================================================
	 # Selection
	 # ================================================================= */
/* Specify text selection background color and omit drop shadow */
::-moz-selection {
  background-color: #b3d4fc;
  /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

/* # =================================================================
   # base
   # ================================================================= */
a {
  text-decoration: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

table {
  border-spacing: 0;
}

fieldset {
  border: none;
}

*:focus {
  outline: none;
}

.l-container {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  position: relative;
}

.l-header {
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  z-index: 25;
  position: fixed;
  top: 0;
  width: 100vw;
}

.l-globalNav {
  height: 100dvh;
  z-index: 26;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-globalNav::-webkit-scrollbar {
  display: none;
}

.l-main {
  min-height: calc(100dvh - 52px);
}
.l-main--col2 {
  display: grid;
  grid-template-columns: 190px 1fr;
}
.l-main--col1 {
  height: calc(100% - 52px);
}

.c-btnM--plain a, .c-btnM--warning a, .c-btnM--plainPlus a, .c-btnM--loading a, .c-btnM--search a, .c-btnM--withArrow a,
.c-btnM--plain button,
.c-btnM--warning button,
.c-btnM--plainPlus button,
.c-btnM--loading button,
.c-btnM--search button,
.c-btnM--withArrow button {
  padding: 0 20px;
  width: 180px;
  height: 48px;
  border-radius: 24px;
  background-color: #50A192;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 1.12px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-btnM--plain a:hover, .c-btnM--warning a:hover, .c-btnM--plainPlus a:hover, .c-btnM--loading a:hover, .c-btnM--search a:hover, .c-btnM--withArrow a:hover,
.c-btnM--plain button:hover,
.c-btnM--warning button:hover,
.c-btnM--plainPlus button:hover,
.c-btnM--loading button:hover,
.c-btnM--search button:hover,
.c-btnM--withArrow button:hover {
  opacity: 0.8;
}
.c-btnM--plain a:disabled, .c-btnM--warning a:disabled, .c-btnM--plainPlus a:disabled, .c-btnM--loading a:disabled, .c-btnM--search a:disabled, .c-btnM--withArrow a:disabled,
.c-btnM--plain button:disabled,
.c-btnM--warning button:disabled,
.c-btnM--plainPlus button:disabled,
.c-btnM--loading button:disabled,
.c-btnM--search button:disabled,
.c-btnM--withArrow button:disabled {
  background-color: #616866;
  cursor: default;
  opacity: 0.25;
}
.c-btnM--withArrow a,
.c-btnM--withArrow button {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.c-btnM--withArrow a img,
.c-btnM--withArrow button img {
  width: 12px;
  height: 12px;
}
.c-btnM--plainPlus a, .c-btnM--loading a, .c-btnM--search a,
.c-btnM--plainPlus button,
.c-btnM--loading button,
.c-btnM--search button {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.c-btnM--plainPlus a img, .c-btnM--loading a img, .c-btnM--search a img,
.c-btnM--plainPlus button img,
.c-btnM--loading button img,
.c-btnM--search button img {
  width: 12px;
  height: 12px;
}
.c-btnM--frame a, .c-btnM--negative a, .c-btnM--framePlus a, .c-btnM--framePlusShipping a, .c-btnM--framePlusArrival a, .c-btnM--framePlusCandied a, .c-btnM--frameThin a, .c-btnM--frameThinPlus a,
.c-btnM--frame button,
.c-btnM--negative button,
.c-btnM--framePlus button,
.c-btnM--framePlusShipping button,
.c-btnM--framePlusArrival button,
.c-btnM--framePlusCandied button,
.c-btnM--frameThin button,
.c-btnM--frameThinPlus button {
  padding: 0 20px;
  width: 180px;
  height: 48px;
  border-radius: 24px;
  background-color: #fff;
  color: #50A192;
  border: 2px solid #50A192;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 1.12px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-btnM--frame a:hover, .c-btnM--negative a:hover, .c-btnM--framePlus a:hover, .c-btnM--framePlusShipping a:hover, .c-btnM--framePlusArrival a:hover, .c-btnM--framePlusCandied a:hover, .c-btnM--frameThin a:hover, .c-btnM--frameThinPlus a:hover,
.c-btnM--frame button:hover,
.c-btnM--negative button:hover,
.c-btnM--framePlus button:hover,
.c-btnM--framePlusShipping button:hover,
.c-btnM--framePlusArrival button:hover,
.c-btnM--framePlusCandied button:hover,
.c-btnM--frameThin button:hover,
.c-btnM--frameThinPlus button:hover {
  opacity: 0.8;
}
.c-btnM--frame a:disabled, .c-btnM--negative a:disabled, .c-btnM--framePlus a:disabled, .c-btnM--framePlusShipping a:disabled, .c-btnM--framePlusArrival a:disabled, .c-btnM--framePlusCandied a:disabled, .c-btnM--frameThin a:disabled, .c-btnM--frameThinPlus a:disabled,
.c-btnM--frame button:disabled,
.c-btnM--negative button:disabled,
.c-btnM--framePlus button:disabled,
.c-btnM--framePlusShipping button:disabled,
.c-btnM--framePlusArrival button:disabled,
.c-btnM--framePlusCandied button:disabled,
.c-btnM--frameThin button:disabled,
.c-btnM--frameThinPlus button:disabled {
  border: 2px solid #616866;
  color: #616866;
  cursor: default;
  opacity: 0.25;
}
.c-btnM--frameThin a, .c-btnM--frameThinPlus a,
.c-btnM--frameThin button,
.c-btnM--frameThinPlus button {
  border-width: 1px;
}
.c-btnM--frameThin a:disabled, .c-btnM--frameThinPlus a:disabled,
.c-btnM--frameThin button:disabled,
.c-btnM--frameThinPlus button:disabled {
  border-width: 1px !important;
}
.c-btnM--frameThinPlus a,
.c-btnM--frameThinPlus button {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  width: auto;
}
.c-btnM--framePlus a, .c-btnM--framePlusShipping a, .c-btnM--framePlusArrival a, .c-btnM--framePlusCandied a,
.c-btnM--framePlus button,
.c-btnM--framePlusShipping button,
.c-btnM--framePlusArrival button,
.c-btnM--framePlusCandied button {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.c-btnM--framePlus a img, .c-btnM--framePlusShipping a img, .c-btnM--framePlusArrival a img, .c-btnM--framePlusCandied a img,
.c-btnM--framePlus button img,
.c-btnM--framePlusShipping button img,
.c-btnM--framePlusArrival button img,
.c-btnM--framePlusCandied button img {
  width: 12px;
  height: 12px;
}
.c-btnM--framePlusCandied a img,
.c-btnM--framePlusCandied button img {
  width: 20px;
  height: 20px;
}
.c-btnM--framePlusCandied a:disabled,
.c-btnM--framePlusCandied button:disabled {
  border: 2px solid #616866;
  color: #616866;
  cursor: default;
  opacity: 0.25;
}
.c-btnM--framePlusArrival a img,
.c-btnM--framePlusArrival button img {
  width: 20px;
  height: 20px;
}
.c-btnM--framePlusArrival a:disabled,
.c-btnM--framePlusArrival button:disabled {
  border: 2px solid #616866;
  color: #616866;
  cursor: default;
  opacity: 0.25;
}
.c-btnM--framePlusShipping a img,
.c-btnM--framePlusShipping button img {
  width: 20px;
  height: 20px;
}
.c-btnM--framePlusShipping a:disabled,
.c-btnM--framePlusShipping button:disabled {
  border: 2px solid #616866;
  color: #616866;
  cursor: default;
  opacity: 0.25;
}
.c-btnM--negative a,
.c-btnM--negative button {
  border: 1px solid #999999;
  color: #999999;
}
.c-btnM--negative a:disabled,
.c-btnM--negative button:disabled {
  cursor: default;
  opacity: 0.25;
}
.c-btnM--warning a,
.c-btnM--warning button {
  background-color: #F04D62;
  color: #fff;
}
.c-btnM--search a img,
.c-btnM--search button img {
  width: 20px;
  height: 20px;
}
.c-btnM--loading a,
.c-btnM--loading button {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  position: relative;
  background-color: #616866;
  cursor: default;
  pointer-events: none;
}
.c-btnM--loading a img,
.c-btnM--loading button img {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 24px;
  height: 24px;
  -webkit-animation-name: "btnLoading";
          animation-name: "btnLoading";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.c-btnL--plain a, .c-btnL--plainPlus a, .c-btnL--complete a, .c-btnL--loading a, .c-btnL--withArrow a,
.c-btnL--plain button,
.c-btnL--plainPlus button,
.c-btnL--complete button,
.c-btnL--loading button,
.c-btnL--withArrow button {
  padding: 0 20px;
  width: 240px;
  height: 56px;
  border-radius: 28px;
  background-color: #50A192;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.28px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-btnL--plain a:hover, .c-btnL--plainPlus a:hover, .c-btnL--complete a:hover, .c-btnL--loading a:hover, .c-btnL--withArrow a:hover,
.c-btnL--plain button:hover,
.c-btnL--plainPlus button:hover,
.c-btnL--complete button:hover,
.c-btnL--loading button:hover,
.c-btnL--withArrow button:hover {
  opacity: 0.8;
}
.c-btnL--plain a:disabled, .c-btnL--plainPlus a:disabled, .c-btnL--complete a:disabled, .c-btnL--loading a:disabled, .c-btnL--withArrow a:disabled,
.c-btnL--plain button:disabled,
.c-btnL--plainPlus button:disabled,
.c-btnL--complete button:disabled,
.c-btnL--loading button:disabled,
.c-btnL--withArrow button:disabled {
  background-color: #616866;
  cursor: default;
  opacity: 0.25;
}
.c-btnL--withArrow a,
.c-btnL--withArrow button {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.c-btnL--withArrow a img,
.c-btnL--withArrow button img {
  width: 12px;
  height: 12px;
}
.c-btnL--plainPlus a, .c-btnL--complete a, .c-btnL--loading a,
.c-btnL--plainPlus button,
.c-btnL--complete button,
.c-btnL--loading button {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.c-btnL--plainPlus a img, .c-btnL--complete a img, .c-btnL--loading a img,
.c-btnL--plainPlus button img,
.c-btnL--complete button img,
.c-btnL--loading button img {
  width: 14px;
  height: 14px;
}
.c-btnL--frame a, .c-btnL--negative a, .c-btnL--frameArrow a, .c-btnL--framePlus a, .c-btnL--frameThin a, .c-btnL--frameThinPlus a,
.c-btnL--frame button,
.c-btnL--negative button,
.c-btnL--frameArrow button,
.c-btnL--framePlus button,
.c-btnL--frameThin button,
.c-btnL--frameThinPlus button {
  padding: 0 20px;
  width: 240px;
  height: 56px;
  border-radius: 28px;
  background-color: #fff;
  color: #50A192;
  border: 2px solid #50A192;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.28px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-btnL--frame a:hover, .c-btnL--negative a:hover, .c-btnL--frameArrow a:hover, .c-btnL--framePlus a:hover, .c-btnL--frameThin a:hover, .c-btnL--frameThinPlus a:hover,
.c-btnL--frame button:hover,
.c-btnL--negative button:hover,
.c-btnL--frameArrow button:hover,
.c-btnL--framePlus button:hover,
.c-btnL--frameThin button:hover,
.c-btnL--frameThinPlus button:hover {
  opacity: 0.8;
}
.c-btnL--frame a:disabled, .c-btnL--negative a:disabled, .c-btnL--frameArrow a:disabled, .c-btnL--framePlus a:disabled, .c-btnL--frameThin a:disabled, .c-btnL--frameThinPlus a:disabled,
.c-btnL--frame button:disabled,
.c-btnL--negative button:disabled,
.c-btnL--frameArrow button:disabled,
.c-btnL--framePlus button:disabled,
.c-btnL--frameThin button:disabled,
.c-btnL--frameThinPlus button:disabled {
  border: 2px solid #616866;
  color: #616866;
  cursor: default;
  opacity: 0.25;
}
.c-btnL--frameThin a, .c-btnL--frameThinPlus a,
.c-btnL--frameThin button,
.c-btnL--frameThinPlus button {
  border-width: 1px;
}
.c-btnL--frameThin a:disabled, .c-btnL--frameThinPlus a:disabled,
.c-btnL--frameThin button:disabled,
.c-btnL--frameThinPlus button:disabled {
  border-width: 1px !important;
}
.c-btnL--frameThinPlus a,
.c-btnL--frameThinPlus button {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  width: auto;
}
.c-btnL--framePlus a,
.c-btnL--framePlus button {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.c-btnL--framePlus a img,
.c-btnL--framePlus button img {
  width: 14px;
  height: 14px;
}
.c-btnL--frameArrow a,
.c-btnL--frameArrow button {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.c-btnL--frameArrow a img,
.c-btnL--frameArrow button img {
  width: 14px;
  height: 14px;
}
.c-btnL--negative a,
.c-btnL--negative button {
  border: 1px solid #999999;
  color: #999999;
}
.c-btnL--negative a:disabled,
.c-btnL--negative button:disabled {
  cursor: default;
  opacity: 0.25;
}
.c-btnL--loading a,
.c-btnL--loading button {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  position: relative;
  background-color: #616866;
  cursor: default;
  pointer-events: none;
}
.c-btnL--loading a img,
.c-btnL--loading button img {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 24px;
  height: 24px;
  -webkit-animation-name: "btnLoading";
          animation-name: "btnLoading";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.c-btnL--complete a,
.c-btnL--complete button {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  position: relative;
  background-color: #6BBFB1;
}
.c-btnL--complete a img,
.c-btnL--complete button img {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 24px;
  height: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-btnL--complete a:hover img,
.c-btnL--complete button:hover img {
  -webkit-animation-name: "btnComplete";
          animation-name: "btnComplete";
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.c-btnS--plain a, .c-btnS--withArrow a, .c-btnS--plainPlus a,
.c-btnS--plain button,
.c-btnS--withArrow button,
.c-btnS--plainPlus button {
  padding: 0 19px;
  width: 120px;
  height: 32px;
  border-radius: 16px;
  background-color: #50A192;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 1.04px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-btnS--plain a:hover, .c-btnS--withArrow a:hover, .c-btnS--plainPlus a:hover,
.c-btnS--plain button:hover,
.c-btnS--withArrow button:hover,
.c-btnS--plainPlus button:hover {
  opacity: 0.8;
}
.c-btnS--plain a:disabled, .c-btnS--withArrow a:disabled, .c-btnS--plainPlus a:disabled,
.c-btnS--plain button:disabled,
.c-btnS--withArrow button:disabled,
.c-btnS--plainPlus button:disabled {
  background-color: #616866;
  cursor: default;
  opacity: 0.25;
}
.c-btnS--plainPlus a,
.c-btnS--plainPlus button {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
}
.c-btnS--plainPlus a img,
.c-btnS--plainPlus button img {
  width: 10px;
  height: 10px;
}
.c-btnS--frame a, .c-btnS--withArrowFrame a, .c-btnS--negative a, .c-btnS--framePlus a, .c-btnS--frameThin a, .c-btnS--frameThinPlus a, .c-btnS--frameThinThisMonth a,
.c-btnS--frame button,
.c-btnS--withArrowFrame button,
.c-btnS--negative button,
.c-btnS--framePlus button,
.c-btnS--frameThin button,
.c-btnS--frameThinPlus button,
.c-btnS--frameThinThisMonth button {
  padding: 0 19px;
  width: 120px;
  height: 32px;
  border-radius: 16px;
  background-color: inherit;
  color: #50A192;
  border: 2px solid #50A192;
  font-size: 13px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 1.04px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-btnS--frame a:hover, .c-btnS--withArrowFrame a:hover, .c-btnS--negative a:hover, .c-btnS--framePlus a:hover, .c-btnS--frameThin a:hover, .c-btnS--frameThinPlus a:hover, .c-btnS--frameThinThisMonth a:hover,
.c-btnS--frame button:hover,
.c-btnS--withArrowFrame button:hover,
.c-btnS--negative button:hover,
.c-btnS--framePlus button:hover,
.c-btnS--frameThin button:hover,
.c-btnS--frameThinPlus button:hover,
.c-btnS--frameThinThisMonth button:hover {
  opacity: 0.8;
}
.c-btnS--frame a:disabled, .c-btnS--withArrowFrame a:disabled, .c-btnS--negative a:disabled, .c-btnS--framePlus a:disabled, .c-btnS--frameThin a:disabled, .c-btnS--frameThinPlus a:disabled, .c-btnS--frameThinThisMonth a:disabled,
.c-btnS--frame button:disabled,
.c-btnS--withArrowFrame button:disabled,
.c-btnS--negative button:disabled,
.c-btnS--framePlus button:disabled,
.c-btnS--frameThin button:disabled,
.c-btnS--frameThinPlus button:disabled,
.c-btnS--frameThinThisMonth button:disabled {
  border: 2px solid #616866;
  color: #616866;
  cursor: default;
  opacity: 0.25;
}
.c-btnS--frameThin a, .c-btnS--frameThinPlus a, .c-btnS--frameThinThisMonth a,
.c-btnS--frameThin button,
.c-btnS--frameThinPlus button,
.c-btnS--frameThinThisMonth button {
  border-width: 1px;
}
.c-btnS--frameThin a:disabled, .c-btnS--frameThinPlus a:disabled, .c-btnS--frameThinThisMonth a:disabled,
.c-btnS--frameThin button:disabled,
.c-btnS--frameThinPlus button:disabled,
.c-btnS--frameThinThisMonth button:disabled {
  border-width: 1px !important;
}
.c-btnS--frameThinThisMonth a,
.c-btnS--frameThinThisMonth button {
  width: auto;
}
.c-btnS--frameThinPlus a,
.c-btnS--frameThinPlus button {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  width: auto;
}
.c-btnS--framePlus a,
.c-btnS--framePlus button {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
}
.c-btnS--framePlus a img,
.c-btnS--framePlus button img {
  width: 10px;
  height: 10px;
}
.c-btnS--negative a,
.c-btnS--negative button {
  border: 1px solid #999999;
  color: #999999;
}
.c-btnS--negative a:disabled,
.c-btnS--negative button:disabled {
  cursor: default;
  opacity: 0.25;
}
.c-btnS--withArrow a,
.c-btnS--withArrow button {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.c-btnS--withArrow a img,
.c-btnS--withArrow button img {
  width: 12px;
  height: 12px;
}
.c-btnS--withArrowFrame a,
.c-btnS--withArrowFrame button {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.c-btnS--withArrowFrame a img,
.c-btnS--withArrowFrame button img {
  width: 12px;
  height: 12px;
}
.c-btnTxt--gray, .c-btnTxt--green {
  white-space: nowrap;
}
.c-btnTxt--gray a, .c-btnTxt--green a,
.c-btnTxt--gray button,
.c-btnTxt--green button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  height: 40px;
  min-width: 88px;
  width: auto;
  padding: 0px 14px;
  color: #808785;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-btnTxt--gray a:hover, .c-btnTxt--green a:hover,
.c-btnTxt--gray button:hover,
.c-btnTxt--green button:hover {
  opacity: 0.8;
}
.c-btnTxt--gray img, .c-btnTxt--green img {
  width: 12px;
  height: 12px;
}
.c-btnTxt--green a,
.c-btnTxt--green button {
  color: #50A192;
}
.c-btnSuggest {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
  background-color: #F8F8F8;
  padding: 12px 16px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-btnSuggest:hover {
  opacity: 0.8;
}
.c-btnSuggest__text {
  font-size: 13px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 1.56px;
  color: #50A192;
}
.c-btnSuggest__img {
  width: 12px;
  height: 12px;
}
.c-btnLink a,
.c-btnLink button {
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
  color: #50A192;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-btnLink a:hover,
.c-btnLink button:hover {
  opacity: 0.8;
}
.c-btnLink a:disabled,
.c-btnLink button:disabled {
  color: #616866;
  cursor: default;
  opacity: 0.3;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-btnLink a:disabled:hover,
.c-btnLink button:disabled:hover {
  opacity: 0.3;
}
.c-btnEdit {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-btnEdit:hover {
  background-color: rgba(34, 34, 34, 0.04);
}
.c-btnEdit::after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url("../img/symbol_edit.svg");
}
.c-btnEdit:active::after {
  content: "";
  background-image: url("../img/symbol_edit-active.svg");
}

.c-search {
  width: 100%;
  border-radius: 4px;
  background: #F8F8F8;
  border: 1px solid #CACACA;
  position: relative;
  height: 48px;
  padding: 0px 28px 0px 16px;
  cursor: pointer;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-search::after {
  content: "";
  background-image: url("../img/icon-pointing_down_arrow.svg");
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-search.js-isOpened {
  border-radius: 4px 4px 0px 0px;
  border: 1px solid #CACACA;
  border-bottom: none;
}
.c-search.js-isOpened::after {
  background-image: url("../img/icon-pointing_up_arrow.svg");
}
.c-search--static {
  border-radius: 4px 4px 0px 0px;
  border: 1px solid #CACACA;
  border-bottom: none;
}
.c-search--static::after {
  background-image: none;
}
.c-search--side {
  background: #F8F8F8;
}
.c-search__title {
  color: #50A192;
  font-size: 14px;
  font-weight: 700;
  line-height: 20.8px;
  letter-spacing: 1.68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
}
.c-search__title--side {
  width: 100%;
  padding: 10px 14px;
}
.c-search__btn {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-search__btn img {
  width: 12px;
  height: 12px;
}
.c-search__inputs {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0px;
  gap: 12px 24px;
}
.c-search__inputs--switch {
  gap: 0 24px;
}
.c-search__switch {
  display: none;
}
.c-search__more {
  padding: 10px;
  height: 60px;
}
.c-search__more button {
  height: 100%;
  padding: 4px 6px;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.96px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-search__more button:hover {
  opacity: 0.7;
}
.c-search__submit {
  position: absolute;
  bottom: 16px;
  right: 24px;
  display: none;
}

.c-searchMenu__container {
  width: 100%;
  background: #F8F8F8;
  border: 1px solid #CACACA;
  border-top: none;
  border-radius: 0px 0px 4px 4px;
  display: none;
}
.c-searchMenu__inner {
  width: 100%;
  padding: 0px 8px;
}
.c-searchMenu__unit, .c-searchMenu__unit--button {
  width: 100%;
  padding: 18px 8px 24px 8px;
  border-top: 1px solid #CACACA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0px;
  gap: 18px 16px;
}
.c-searchMenu__unit--button {
  padding: 18px 8px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
.c-searchMenu__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.c-searchMenu__boxTitle {
  color: #222222;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.2px;
  letter-spacing: 1.12px;
}
.c-searchMenu__itemSet--calender {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
  white-space: nowrap;
}
.c-searchMenu__itemSet--time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
}
.c-searchMenu__itemSet--text {
  width: 288px;
}
.c-searchMenu__itemSet--numerics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
}
.c-searchMenu__itemSet--organic {
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 18px;
}
.c-searchMenu__itemSet--suggest {
  min-width: 352px;
}
.c-searchMenu__itemSet--worker {
  min-width: 176px;
}
.c-searchMenu__itemSet--plant {
  min-width: 96px;
}
.c-searchMenu__itemSet--status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.c-searchMenu__itemSet--status > * {
  height: 48px;
}
.c-searchMenu__itemSet--radio {
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.c-searchMenu__itemSetText {
  white-space: nowrap;
}

.c-form__section {
  display: grid;
  grid-template-columns: 140px 1fr;
  background-color: #F8F8F8;
}
.c-form__section:not(:last-child) {
  border-bottom: 1px solid #EEEEEE;
}
.c-form__section--full {
  display: block;
  background-color: #F8F8F8;
}
.c-form__section--full:not(:last-child) {
  border-bottom: 1px solid #EEEEEE;
}
.c-form__section hgroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
  padding: 16px 24px;
}
.c-form__section hgroup h3 {
  color: #222222;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.12px;
}
.c-form__section hgroup p {
  color: #222222;
  font-size: 13px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 1.12px;
}
.c-form__title {
  padding: 24px 8px 24px 24px;
  background-color: #fff;
}
.c-form__title h3 {
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.4px;
  color: #222222;
}
.c-form__info {
  background-color: #fff;
  padding: 14px 24px 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.c-form__info dt {
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.8px;
  color: #222222;
}
.c-form__info dd {
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 1.12px;
  color: #222222;
}
.c-form__info dd span {
  color: #222222;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
  margin-left: 16px;
}
.c-form__inputs {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  gap: 18px 2px;
}
.c-form__inputs--table {
  background-color: #fff;
  padding: 14px 12px;
}
.c-form__group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0px;
  gap: 12px 24px;
}
.c-form__group--auto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0px;
  gap: 12px 24px;
}
.c-form__group--side {
  gap: 8px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-right: 10px;
}
.c-form__wrap textarea {
  width: 100%;
  max-width: 100%;
  min-height: 40px;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #DDDDDD;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 1.12px;
}
.c-form__wrap dt {
  color: #222222;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 18.2px;
  letter-spacing: 1.12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 12px;
}
.c-form__wrap dt > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.c-form__wrap dt > span {
  color: #DDDDDD;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.c-form__wrap dt > span a {
  color: #222222;
  text-decoration: underline;
}
.c-form__wrap dt > span a:hover {
  text-decoration: none;
}
.c-form__wrap dt > span.right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
}
.c-form__wrap dd {
  position: relative;
}
.c-form__wrap--search input[type=text],
.c-form__wrap--search input[type=search],
.c-form__wrap--search input[type=number],
.c-form__wrap--search input[type=password] {
  width: 100%;
  height: 40px;
  padding: 0px 12px;
  border-radius: 4px;
  border: 1px solid #DDDDDD;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 1.12px;
}
.c-form__wrap--search input[type=text]:disabled,
.c-form__wrap--search input[type=search]:disabled,
.c-form__wrap--search input[type=number]:disabled,
.c-form__wrap--search input[type=password]:disabled {
  border: 1px solid #EEEEEE;
  background: #EEEEEE;
}
.c-form__wrap--search input[type=text]:focus,
.c-form__wrap--search input[type=search]:focus,
.c-form__wrap--search input[type=number]:focus,
.c-form__wrap--search input[type=password]:focus {
  border-color: #222222;
}
.c-form__wrap--search textarea {
  width: 100%;
  min-height: 150px;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #DDDDDD;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 1.12px;
}
.c-form__wrap--search dt {
  color: #222222;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  letter-spacing: 0.96px;
}
.c-form__wrap--float {
  position: relative;
}
.c-form__wrap--float input[type=text],
.c-form__wrap--float input[type=search],
.c-form__wrap--float input[type=number],
.c-form__wrap--float input[type=password] {
  width: 100%;
  height: 40px;
  padding: 0px 12px;
  border-radius: 4px;
  border: 1px solid #DDDDDD;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 1.12px;
}
.c-form__wrap--float input[type=text]:focus,
.c-form__wrap--float input[type=search]:focus,
.c-form__wrap--float input[type=number]:focus,
.c-form__wrap--float input[type=password]:focus {
  border-color: #222222;
}
.c-form__wrap--float textarea {
  width: 100%;
  min-height: 150px;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #DDDDDD;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 1.12px;
}
.c-form__wrap--float textarea:focus {
  border-color: #222222;
}
.c-form__wrap--float dt {
  color: #222222;
  position: absolute;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 1.12px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-form__wrap--float dt:has(+ dd > input[type=text]:focus), .c-form__wrap--float dt:has(+ dd > input[type=search]:focus), .c-form__wrap--float dt:has(+ dd.show) {
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  letter-spacing: 0.96px;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-135%);
          transform: translateY(-135%);
}
.c-form__wrap--float dt label {
  cursor: text;
}
.c-form__wrap--full {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-form__wrap--3l input[type=text],
.c-form__wrap--3l input[type=search],
.c-form__wrap--3l input[type=number],
.c-form__wrap--3l input[type=password] {
  width: 433px;
}
.c-form__wrap--xl input[type=text],
.c-form__wrap--xl input[type=search],
.c-form__wrap--xl input[type=number],
.c-form__wrap--xl input[type=password] {
  width: 320px;
}
.c-form__wrap--l input[type=text],
.c-form__wrap--l input[type=search],
.c-form__wrap--l input[type=number],
.c-form__wrap--l input[type=password] {
  width: 240px;
}
.c-form__wrap--m input[type=text],
.c-form__wrap--m input[type=search],
.c-form__wrap--m input[type=number],
.c-form__wrap--m input[type=password] {
  width: 180px;
}
.c-form__wrap--s input[type=text],
.c-form__wrap--s input[type=search],
.c-form__wrap--s input[type=number],
.c-form__wrap--s input[type=password] {
  width: 130px;
}
.c-form__wrap--ss input[type=text],
.c-form__wrap--ss input[type=search],
.c-form__wrap--ss input[type=number],
.c-form__wrap--ss input[type=password] {
  width: 105px;
}
.c-form__wrap--sss input[type=text],
.c-form__wrap--sss input[type=search],
.c-form__wrap--sss input[type=number],
.c-form__wrap--sss input[type=password] {
  width: 60px;
}
.c-form__wrap--num input[type=text],
.c-form__wrap--num input[type=search],
.c-form__wrap--num input[type=number],
.c-form__wrap--num input[type=password] {
  width: 83px;
  text-align: right;
}
.c-form__wrap--numArrow input[type=number] {
  padding: 0 25px 0 12px;
  text-align: right;
}
.c-form__wrap--numArrow input[type=number]::-webkit-inner-spin-button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  cursor: pointer;
  opacity: 0;
}
.c-form__wrap--numArrow dd {
  position: relative;
}
.c-form__wrap--numArrow dd::before, .c-form__wrap--numArrow dd::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #222222;
  border-left: 1px solid #222222;
  position: absolute;
  right: 8px;
  pointer-events: none;
}
.c-form__wrap--numArrow dd::before {
  top: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-form__wrap--numArrow dd::after {
  bottom: 9px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.c-form__unit {
  width: 100%;
  background-color: #fff;
  padding: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 20px;
}
.c-form__unit + .c-form__unit {
  margin-top: 8px;
}
.c-form__unit.hide {
  display: none;
}
.c-form__switch {
  display: none;
}
.c-form__submit--login {
  padding: 0 20px;
  margin-top: 10px;
}
.c-form__submit--login button {
  width: 100%;
  height: 42px;
  border-radius: 21px;
}
.c-form__error {
  padding: 16px 18px;
  color: #F04D62;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  /* 160% */
  letter-spacing: 1.4px;
  border: 2px solid #F04D62;
  background-color: #fff;
}
.c-form__error li {
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 1.12px;
}
.c-form__error li a {
  color: #F04D62;
  text-decoration: underline;
}
.c-form__error li a:hover {
  text-decoration: none;
}
.c-form__any {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2px 4px 3px;
  border-radius: 2px;
  background: #DDDDDD;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 10px;
  letter-spacing: 1px;
}
.c-form__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
}
.c-form__check label {
  position: relative;
  display: inline-block;
  height: 40px;
  padding: 8px 10px 8px 32px;
  color: #222222;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 1.12px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  cursor: pointer;
}
.c-form__check label input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  width: 22px;
  height: 22px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-form__check label input[type=checkbox]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 1px solid #222222;
  background-color: #fff;
  z-index: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-form__check label input[type=checkbox]::after {
  content: "";
  display: block;
  width: 12px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  opacity: 0;
  bottom: 9px;
  left: 4px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-form__check label input[type=checkbox]:checked::before {
  background-color: #444444;
  border: 1px solid #444444;
}
.c-form__check label input[type=checkbox]:checked::after {
  opacity: 1;
}
.c-form__check label:hover {
  opacity: 0.9;
}
.c-form__check label:hover input[type=checkbox]::after {
  border-color: #EEEEEE;
  opacity: 1;
}
.c-form__check label:hover input[type=checkbox]:checked::before {
  opacity: 0.8;
}
.c-form__check label:hover input[type=checkbox]:checked::after {
  border-color: #fff;
  opacity: 0.8;
}
.c-form__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
}
.c-form__radio label {
  position: relative;
  display: inline-block;
  height: 40px;
  padding: 8px 10px 8px 32px;
  color: #222222;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 1.12px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  cursor: pointer;
}
.c-form__radio label input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-form__radio label input[type=radio]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #222222;
  background-color: #fff;
  z-index: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-form__radio label input[type=radio]::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  border-radius: 50%;
  background-color: #444444;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-form__radio label input[type=radio]:checked::before {
  border-color: #444444;
}
.c-form__radio label input[type=radio]:checked::after {
  opacity: 1;
}
.c-form__radio label input[type=radio]:disabled {
  cursor: auto;
}
.c-form__radio label input[type=radio]:disabled::before {
  border-color: #EEEEEE;
  background-color: #EEEEEE;
}
.c-form__radio label input[type=radio]:disabled::after {
  opacity: 0;
}
.c-form__radio label input[type=radio]:disabled:checked::after {
  opacity: 0.4;
}
.c-form__radio label:hover {
  opacity: 0.9;
}
.c-form__radio label:hover input[type=radio]::after {
  opacity: 0.2;
}
.c-form__radio label:hover input[type=radio]:checked::before {
  opacity: 0.8;
}
.c-form__radio label:hover input[type=radio]:checked::after {
  opacity: 0.8;
}
.c-form__radio label:hover input[type=radio]:disabled::before {
  border-color: #EEEEEE;
  background-color: #EEEEEE;
}
.c-form__radio label:hover input[type=radio]:disabled::after {
  opacity: 0;
}
.c-form__radio label:hover input[type=radio]:disabled:checked::after {
  opacity: 0.4;
}
.c-form__levelRadio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-form__levelRadio label {
  position: relative;
  height: 40px;
  width: 88px;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  border-left: 1px solid #DDDDDD;
  color: #DDDDDD;
  background: #fff;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.12px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  cursor: pointer;
}
.c-form__levelRadio label input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  height: 40px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.c-form__levelRadio label:first-child {
  border-radius: 4px 0 0 4px;
}
.c-form__levelRadio label:last-child {
  border-radius: 0 4px 4px 0;
  border-right: 1px solid #DDDDDD;
}
.c-form__levelRadio label:hover {
  color: #444444;
  opacity: 0.9;
}
.c-form__levelRadio label:has(input[type=radio]:checked) {
  color: #fff;
}
.c-form__levelRadio label:has(input[type=radio]:disabled) {
  color: #DDDDDD;
  border-color: #EEEEEE;
  cursor: auto;
}
.c-form__levelRadio label:has(input[type=radio]:disabled)::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(185, 183, 179, 0.3);
}
.c-form__levelRadio label:has(input[type=radio]:disabled):hover {
  color: #DDDDDD;
  opacity: 1;
}
.c-form__levelRadio label:has(input[type=radio]:disabled):has(input[type=radio]:checked) {
  color: #F8F8F8;
}
.c-form__weekCheck {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.c-form__weekCheck label {
  position: relative;
  border-radius: 4px;
  height: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  color: #DDDDDD;
  background: #fff;
  border: 1px solid #DDDDDD;
  font-family: "BIZ UDPGothic", sans-serif;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.12px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  cursor: pointer;
}
.c-form__weekCheck label input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  height: 40px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.c-form__weekCheck label input[type=checkbox]::after {
  content: "";
  display: block;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  opacity: 0;
  top: 4px;
  right: 6px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-form__weekCheck label input[type=checkbox]:checked::after {
  opacity: 1;
}
.c-form__weekCheck label:hover {
  color: #444444;
  opacity: 0.9;
}
.c-form__weekCheck label:hover input[type=checkbox]::after {
  border-color: #EEEEEE;
  opacity: 1;
}
.c-form__weekCheck label:hover input[type=checkbox]:checked::after {
  border-color: #fff;
  opacity: 0.8;
}
.c-form__weekCheck label:has(input[type=checkbox]:checked) {
  color: #fff;
  background: #444444;
  border: 1px solid #444444;
}
.c-form__selectWidth--144px {
  width: 144px;
}
.c-form__selectWidth--144px select {
  width: 100%;
}
.c-form__selectWidth--432px {
  width: 432px;
}
.c-form__selectWidth--432px select {
  width: 100%;
}
.c-form__select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 1.12px;
  cursor: pointer;
  position: relative;
  color: #222222;
}
.c-form__select select {
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid #DDDDDD;
  background: #fff;
  height: 40px;
  padding: 0 24px 0 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-width: 140px;
}
.c-form__select select:disabled {
  cursor: auto;
  border-color: #EEEEEE;
  background-color: #EEEEEE;
}
.c-form__select::after {
  content: "";
  display: block;
  background-color: #222222;
  width: 10px;
  height: 8px;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  position: absolute;
  right: 12px;
  pointer-events: none;
}
.c-form__select--m select {
  min-width: 220px;
}
.c-form__select--s select {
  min-width: 100px;
}
.c-form__select--ss select {
  min-width: 60px;
}
.c-form__select--full select {
  width: 100%;
}
.c-form__riceballNum:has(select [value="2"]:checked)::after {
  content: "△";
  display: block;
}
.c-form__riceballNum:has(select [value="4"]:checked)::after {
  content: "○";
  display: block;
}
.c-form__suggest--sizeMax {
  width: 670px;
  height: 48px;
}
.c-form__suggest--sizeMax input[type=text] {
  width: 100%;
  height: 100%;
}
.c-form__suggest--sizeM {
  width: 432px;
  height: 48px;
}
.c-form__suggest--sizeM input[type=text] {
  width: 100%;
  height: 100%;
}
.c-form__suggest--sizeS {
  width: 144px;
  height: 48px;
}
.c-form__suggest--sizeS input[type=text] {
  width: 100%;
  height: 100%;
}
.c-form__heading {
  color: #222222;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.2px;
  letter-spacing: 1.12px;
}
.c-form__heading--sub {
  color: #999999;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.2px;
  letter-spacing: 1.12px;
}

.c-pager {
  width: 100%;
  height: 60px;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  padding: 12px 0px;
}
.c-pager ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.c-pager ul li {
  font-size: 13px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.78px;
}
.c-pager ul li a {
  color: #999999;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-pager ul li a:hover {
  background-color: #F8F8F8;
}
.c-pager ul li span {
  color: #fff;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  width: 36px;
  height: 36px;
  background-color: #999999;
  border-radius: 50%;
}
.c-pager ul li.prev, .c-pager ul li.next {
  font-size: 24px;
}
.c-pager__count {
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.04px;
  color: #999999;
}

.c-table {
  width: 100%;
  overflow-x: auto;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.c-table::-webkit-scrollbar {
  display: none;
}
.c-table__main {
  width: 100%;
  height: 100%;
}
.c-table__main td,
.c-table__main th {
  white-space: nowrap;
}
.c-table__main--remarks > thead > tr > th {
  background-color: #222222;
  -webkit-transition: background-color 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: background-color 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-table__main--remarks > thead > tr > th:not(:first-child) {
  border-left: 1px solid #DDDDDD;
}
.c-table__main--remarks > thead > tr > th:has(.c-tooltips__main.show) {
  background-color: #444444;
}
.c-table__main--quarter {
  width: 25%;
}
.c-table__main--quarter > thead > tr > th:last-child {
  border-radius: 6px 6px 0px 0px;
}
.c-table__main--quarter:not(:first-child) > thead > tr > th {
  border-left: 1px solid #DDDDDD;
}
.c-table__multiple {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-table__normal:nth-of-type(2n) {
  background-color: #F8F8F8;
}
.c-table__normal:nth-of-type(2n) > td:first-child {
  background-color: #F8F8F8;
}
.c-table__normal:nth-of-type(2n+1) {
  background-color: #fff;
}
.c-table__normal:nth-of-type(2n+1) > td:first-child {
  background-color: #fff;
}
.c-table__normalSecond:nth-of-type(2n+1) {
  background-color: #F8F8F8;
}
.c-table__normalSecond:nth-of-type(2n+1) > td:first-child {
  background-color: #F8F8F8;
}
.c-table__normalSecond:nth-of-type(2n) {
  background-color: #fff;
}
.c-table__normalSecond:nth-of-type(2n) > td:first-child {
  background-color: #fff;
}
.c-table__normalThird:nth-of-type(2n) {
  background-color: #F8F8F8;
}
.c-table__normalThird:nth-of-type(2n) > td:first-child {
  background-color: #F8F8F8;
}
.c-table__normalThird:nth-of-type(2n+1) {
  background-color: #fff;
}
.c-table__normalThird:nth-of-type(2n+1) > td:first-child {
  background-color: #fff;
}
.c-table--deleteHeightLight:has(input[type=checkbox]:checked) th,
.c-table--deleteHeightLight:has(input[type=checkbox]:checked) td {
  background-color: rgba(34, 34, 34, 0.08);
  border-color: rgba(34, 34, 34, 0.08);
}
.c-table--deleteHeightLight:has(input[type=checkbox]:checked) th *,
.c-table--deleteHeightLight:has(input[type=checkbox]:checked) td * {
  color: #CACACA;
}
.c-table--deleteHeightLight:has(input[type=checkbox]:checked) th *:not(:has(.c-inputCheckbox--delete)),
.c-table--deleteHeightLight:has(input[type=checkbox]:checked) td *:not(:has(.c-inputCheckbox--delete)) {
  pointer-events: none;
}
.c-table--deleteHeightLight:has(input[type=checkbox]:checked) th *:not(:has(.c-inputCheckbox--delete)) label,
.c-table--deleteHeightLight:has(input[type=checkbox]:checked) td *:not(:has(.c-inputCheckbox--delete)) label {
  opacity: 0.7;
}
.c-table__border td {
  border-bottom: 1px solid #EEEEEE;
}
.c-table__border td:not(:first-child) {
  border-left: 1px solid #EEEEEE;
}
.c-table__border--bodyLeft {
  border-left: 1px solid rgba(34, 34, 34, 0.04);
}
.c-table__border--normal {
  border-left: 1px solid rgba(34, 34, 34, 0.04);
  border-bottom: 1px solid rgba(34, 34, 34, 0.04);
}
.c-table__overview:nth-of-type(4n+1) {
  background-color: #F8F8F8;
}
.c-table__detail.show > td {
  border-bottom: 1px solid #EEEEEE;
}
.c-table__flexSize--half {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-table__wrap--fit {
  width: 1px;
  white-space: nowrap;
}
.c-table__wrap--fit:has(.--readonly) {
  border-bottom: 1px solid #EEEEEE;
  cursor: default;
  background-color: none !important;
}
.c-table__wrap--head, .c-table__wrap--head-slim-left, .c-table__wrap--head-slim, .c-table__wrap--head-flex, .c-table__wrap--head-link-split, .c-table__wrap--head-multi-split, .c-table__wrap--head-multi-splitLeft, .c-table__wrap--head-multi-center, .c-table__wrap--head-multi-line, .c-table__wrap--headInTable {
  height: 100%;
  min-height: 42px;
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  background-color: #616866;
}
.c-table__wrap--head p, .c-table__wrap--head-slim-left p, .c-table__wrap--head-slim p, .c-table__wrap--head-flex p, .c-table__wrap--head-link-split p, .c-table__wrap--head-multi-split p, .c-table__wrap--head-multi-splitLeft p, .c-table__wrap--head-multi-center p, .c-table__wrap--head-multi-line p, .c-table__wrap--headInTable p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 8px 10px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
}
.c-table__wrap--head a, .c-table__wrap--head-slim-left a, .c-table__wrap--head-slim a, .c-table__wrap--head-flex a, .c-table__wrap--head-link-split a, .c-table__wrap--head-multi-split a, .c-table__wrap--head-multi-splitLeft a, .c-table__wrap--head-multi-center a, .c-table__wrap--head-multi-line a, .c-table__wrap--headInTable a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 8px 18px 8px 10px;
  color: #fff;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-table__wrap--head a::after, .c-table__wrap--head-slim-left a::after, .c-table__wrap--head-slim a::after, .c-table__wrap--head-flex a::after, .c-table__wrap--head-link-split a::after, .c-table__wrap--head-multi-split a::after, .c-table__wrap--head-multi-splitLeft a::after, .c-table__wrap--head-multi-center a::after, .c-table__wrap--head-multi-line a::after, .c-table__wrap--headInTable a::after {
  content: "";
  width: 8px;
  height: 8px;
  background-image: url("../img/icon-sort-upward.svg");
  position: absolute;
  right: 5px;
  opacity: 0.2;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.c-table__wrap--head a::before, .c-table__wrap--head-slim-left a::before, .c-table__wrap--head-slim a::before, .c-table__wrap--head-flex a::before, .c-table__wrap--head-link-split a::before, .c-table__wrap--head-multi-split a::before, .c-table__wrap--head-multi-splitLeft a::before, .c-table__wrap--head-multi-center a::before, .c-table__wrap--head-multi-line a::before, .c-table__wrap--headInTable a::before {
  content: "";
  width: 8px;
  height: 8px;
  background-image: url("../img/icon-sort-downward.svg");
  position: absolute;
  right: 5px;
  opacity: 0.2;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}
.c-table__wrap--head a.--upward::after, .c-table__wrap--head-slim-left a.--upward::after, .c-table__wrap--head-slim a.--upward::after, .c-table__wrap--head-flex a.--upward::after, .c-table__wrap--head-link-split a.--upward::after, .c-table__wrap--head-multi-split a.--upward::after, .c-table__wrap--head-multi-splitLeft a.--upward::after, .c-table__wrap--head-multi-center a.--upward::after, .c-table__wrap--head-multi-line a.--upward::after, .c-table__wrap--headInTable a.--upward::after {
  opacity: 1;
}
.c-table__wrap--head a.--downward::before, .c-table__wrap--head-slim-left a.--downward::before, .c-table__wrap--head-slim a.--downward::before, .c-table__wrap--head-flex a.--downward::before, .c-table__wrap--head-link-split a.--downward::before, .c-table__wrap--head-multi-split a.--downward::before, .c-table__wrap--head-multi-splitLeft a.--downward::before, .c-table__wrap--head-multi-center a.--downward::before, .c-table__wrap--head-multi-line a.--downward::before, .c-table__wrap--headInTable a.--downward::before {
  opacity: 1;
}
.c-table__wrap--headInTable {
  background-color: #999999;
}
.c-table__wrap--alignRight > p {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.c-table__wrap--alignLeft > p {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.c-table__wrap--head-multi-line {
  background-color: #616866;
  height: 100%;
}
.c-table__wrap--head-multi-line p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.c-table__wrap--head-multi-center {
  background-color: #616866;
  height: 100%;
}
.c-table__wrap--head-multi-center p {
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.c-table__wrap--head-multi-split, .c-table__wrap--head-multi-splitLeft {
  background-color: #616866;
  height: 100%;
}
.c-table__wrap--head-multi-split p, .c-table__wrap--head-multi-splitLeft p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  padding: 0;
}
.c-table__wrap--head-multi-split p > *, .c-table__wrap--head-multi-splitLeft p > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 50%;
  padding: 4px 10px;
  width: 100%;
}
.c-table__wrap--head-multi-split p > *:not(:last-of-type), .c-table__wrap--head-multi-splitLeft p > *:not(:last-of-type) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.c-table__wrap--head-multi-splitLeft p > * {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.c-table__wrap--head-link-split {
  background-color: #616866;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-table__wrap--head-link-split a {
  height: 50%;
  padding: 4px 10px;
  width: 100%;
}
.c-table__wrap--head-link-split a > p {
  padding: 0px;
}
.c-table__wrap--head-link-split a:not(:last-of-type) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.c-table__wrap--head-flex {
  background-color: #616866;
  height: 100%;
}
.c-table__wrap--head-flex p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.c-table__wrap--head-slim {
  background-color: #616866;
  height: 100%;
  min-height: 24px;
}
.c-table__wrap--head-slim p {
  padding: 4px 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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.c-table__wrap--head-slim-left {
  background-color: #616866;
  height: 100%;
  min-height: 24px;
}
.c-table__wrap--head-slim-left p {
  padding: 4px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.c-table__wrap--body, .c-table__wrap--control, .c-table__wrap--splitBody, .c-table__wrap--alignedRightBody {
  padding: 10px;
  height: 100%;
  word-break: break-all;
  min-height: 36px;
  border-left: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.04px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  -webkit-transition: opacity 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: opacity 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-table__wrap--body:has(> .c-icon--jien), .c-table__wrap--control:has(> .c-icon--jien), .c-table__wrap--splitBody:has(> .c-icon--jien), .c-table__wrap--alignedRightBody:has(> .c-icon--jien) {
  gap: 2px;
}
.c-table__wrap--body.--selected, .--selected.c-table__wrap--control, .--selected.c-table__wrap--splitBody, .--selected.c-table__wrap--alignedRightBody {
  background-color: #E5FBF7;
}
.c-table__wrap--body.--highlighted, .--highlighted.c-table__wrap--control, .--highlighted.c-table__wrap--splitBody, .--highlighted.c-table__wrap--alignedRightBody {
  background-color: #E5FBF7;
}
.c-table__wrap--body-not-last {
  border-bottom: none;
}
.c-table__wrap--innerBody {
  padding: 10px;
  height: 100%;
  word-break: break-all;
  min-height: 36px;
  border-left: 1px solid #EEEEEE;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.04px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  -webkit-transition: opacity 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: opacity 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-table__wrap--innerBody:has(> .c-icon--jien) {
  gap: 2px;
}
.c-table__wrap--alignedRightBody {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.c-table__wrap--splitBody {
  gap: 0px;
  padding: 0px;
}
.c-table__wrap--splitBody > * {
  padding: 6px 10px;
}
.c-table__wrap--splitBody > *:not(:last-of-type) {
  border-bottom: 1px solid rgba(34, 34, 34, 0.08);
}
.c-table__wrap--id {
  color: #222222;
  font-size: 13px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.78px;
}
.c-table__wrap--fs {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.96px;
}
.c-table__wrap--halfh {
  padding: 0;
  gap: 0;
}
.c-table__wrap--halfh p {
  height: 50%;
  padding: 10px 10px 9px 10px;
}
.c-table__wrap--halfh div {
  height: 50%;
}
.c-table__wrap--halfh button {
  padding: 9px 10px 10px 10px;
}
.c-table__wrap--fullBtn {
  padding: 0;
  gap: 0;
}
.c-table__wrap--name {
  color: #222222;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.12px;
}
.c-table__wrap--essenceName {
  color: #222222;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.12px;
}
.c-table__wrap--vegetableNumber {
  color: #999999;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.96px;
}
.c-table__wrap--organic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 2px;
}
.c-table__wrap--beforeWork, .c-table__wrap--confirmed, .c-table__wrap--unconfirmed {
  width: 54px;
  height: 18px;
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.96px;
  color: #fff;
  background-image: url("../img/icon-before-work.svg");
}
.c-table__wrap--unconfirmed {
  background-image: url("../img/icon-unconfirmed.svg");
}
.c-table__wrap--confirmed {
  background-image: url("../img/icon-confirmed.svg");
}
.c-table__wrap--measurementMonth {
  font-size: 13px;
  font-weight: 600;
  line-height: 16.9px;
  letter-spacing: 1.04px;
  color: #999999;
}
.c-table__wrap--user {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 0.96px;
}
.c-table__wrap--user img {
  width: 24px;
  height: 24px;
}
.c-table__wrap--num {
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.84px;
  color: #222222;
}
.c-table__wrap--num p {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  width: 100%;
}
.c-table__wrap--num p span {
  color: #DDDDDD;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
}
.c-table__wrap--numerics {
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.8px;
  color: #fff;
}
.c-table__wrap--numerics p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  gap: 4px;
  width: 100%;
}
.c-table__wrap--numerics p span {
  color: #999999;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
}
.c-table__wrap--center {
  color: #222222;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-table__wrap--justifyCenter {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-table__wrap--img p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.c-table__wrap--control {
  padding: 4px;
  background: rgba(45, 44, 42, 0.03);
  -webkit-transition: opacity 0.3s ease 0.1s;
  transition: opacity 0.3s ease 0.1s;
}
.c-table__wrap--control p,
.c-table__wrap--control a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-table__wrap--control > ul {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-table__wrap--control > ul > li {
  position: relative;
}
.c-table__wrap--control > ul > li > a,
.c-table__wrap--control > ul > li > button {
  border-radius: 2px;
  width: 40px;
  height: 40px;
  font-size: 10px;
  font-weight: 400;
  line-height: 10px;
  letter-spacing: 1px;
  color: #6E7674;
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 3px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-table__wrap--control > ul > li > a:hover,
.c-table__wrap--control > ul > li > button:hover {
  background: rgba(45, 44, 42, 0.03);
}
.c-table__wrap--option p span {
  color: #DDDDDD;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
  margin-left: 12px;
}
.c-table__wrap--dl {
  font-family: "BIZ UDPGothic", sans-serif;
}
.c-table__wrap--dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.96px;
}
.c-table__wrap--dl dt span {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.96px;
  font-family: "Roboto Flex", sans-serif;
}
.c-table__wrap--dl dd {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.96px;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-table__wrap--dl dd p {
  height: 100%;
  width: 100%;
  border-radius: 2px;
  background: #F8F8F8;
  padding: 8px 10px;
}
.c-table__wrap--dl.c-table__wrap--alfa dd {
  border: 1px solid #EEEEEE;
  background: #fff;
}
.c-table__wrap--dlCol {
  font-family: "BIZ UDPGothic", sans-serif;
}
.c-table__wrap--dlCol dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.96px;
}
.c-table__wrap--dlCol dt span {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.96px;
  font-family: "Roboto Flex", sans-serif;
}
.c-table__wrap--dlCol dd {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.96px;
}
.c-table__wrap--dlCol.c-table__wrap--alfa dd {
  border: 1px solid #EEEEEE;
  background: #fff;
}
.c-table__wrap--dlRow {
  font-family: "BIZ UDPGothic", sans-serif;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-table__wrap--dlRow dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.96px;
}
.c-table__wrap--dlRow dt span {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.96px;
  font-family: "Roboto Flex", sans-serif;
}
.c-table__wrap--dlRow dd {
  height: calc(100% - 22px);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.96px;
}
.c-table__wrap--dlRow.c-table__wrap--alfa dd {
  border: 1px solid #EEEEEE;
  background: #fff;
}
.c-table__wrap--alfa {
  background-color: rgba(45, 44, 42, 0.03);
}
.c-table__wrap--level {
  width: 100%;
  padding: 4px 2px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 15.6px;
  letter-spacing: 0.72px;
}
@media screen and (max-width: 1350px) {
  .c-table__wrap--level {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    min-height: 60px;
  }
}
@media screen and (max-width: 1200px) {
  .c-table__wrap--level {
    padding: 4px;
  }
}
.c-table__wrap--radio {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
.c-table__wrap--col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-table__wrap--row {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.c-table__wrap--thin {
  padding: 4px 10px;
  min-height: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.c-table__wrap--bySide {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.c-table__wrap--individual {
  padding: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  white-space: nowrap;
}
.c-table__wrap--individual > button {
  padding: 0 6px;
  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;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-table__wrap--individual > button:hover {
  background: rgba(45, 44, 42, 0.03);
}
.c-table__wrap--individual > button img {
  width: 12px;
  height: 12px;
}
.c-table__wrap--individual p {
  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: flex-start;
}
.c-table__wrap--individual > ul {
  margin-left: auto;
  padding: 0 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-table__wrap--individual > ul > li {
  position: relative;
  height: 100%;
}
.c-table__wrap--individual > ul > li > a,
.c-table__wrap--individual > ul > li button {
  border-radius: 2px;
  width: 28px;
  height: 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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-table__wrap--individual > ul > li > a:hover,
.c-table__wrap--individual > ul > li button:hover {
  background: rgba(45, 44, 42, 0.03);
}
.c-table__wrap--individual > ul > li > a img,
.c-table__wrap--individual > ul > li button img {
  width: 16px;
  height: 16px;
}
.c-table__wrap--copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-table__wrap--copy > ul {
  width: 100%;
  padding: 0 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-table__wrap--copy > ul > li {
  position: relative;
  height: 100%;
}
.c-table__wrap--copy > ul > li > a,
.c-table__wrap--copy > ul > li > button {
  border-radius: 2px;
  width: 28px;
  height: 28px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-table__wrap--copy > ul > li > a:hover,
.c-table__wrap--copy > ul > li > button:hover {
  background: rgba(255, 255, 255, 0.12);
}
.c-table__btn {
  width: 100%;
}
.c-table__btn button {
  white-space: nowrap;
  width: 100%;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0);
  border-left: 1px solid rgba(255, 255, 255, 0);
  border-top: 1px solid #EEEEEE;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.96px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-table__btn button:hover {
  background: rgba(45, 44, 42, 0.03);
}
.c-table__btn.show {
  background: #EEEEEE;
}
.c-table__btn.show button {
  border-right: 1px solid #EEEEEE;
  border-left: 1px solid #EEEEEE;
  border-top: 1px solid #EEEEEE;
}
.c-table__btn--full {
  height: 100%;
}
.c-table__btn--full button {
  padding: 10px;
  border-top: none;
}
.c-table__btn--full.show {
  background: #EEEEEE;
}
.c-table__btn--full.show button {
  border-right: 1px solid #EEEEEE;
  border-left: 1px solid #EEEEEE;
  border-top: none;
}
.c-table__btn--add {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}
.c-table__btn--add button {
  border-top: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  position: relative;
}
.c-table__btn--add button::before, .c-table__btn--add button::after {
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  background-color: #222222;
  border-radius: 1px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  position: absolute;
  top: 50%;
  left: 50%;
}
.c-table__btn--add button::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.c-table__btn--add button::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-table__close button {
  width: 100%;
  height: 36px;
  padding: 6px 3px 6px 6px;
  color: #222222;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.96px;
  -webkit-transition: background-color 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: background-color 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-table__close button:hover {
  background: rgba(185, 183, 179, 0.3);
}
.c-table__inner {
  background: var(--WF-light3, #EDECEA);
  display: none;
  width: 100%;
}
.c-table__text {
  padding: 14px 14px 0;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.2px;
  letter-spacing: 1.12px;
}
.c-table__text span {
  margin-left: 24px;
  font-family: "Roboto Flex", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.72px;
}
.c-table__text--alignLeft {
  text-align: left;
}
.c-table__text--alignRight {
  text-align: right;
}
.c-table__text--alignCenter {
  text-align: center;
}
.c-table__head {
  padding-bottom: 10px;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-table__head p {
  color: #222222;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.2px;
  letter-spacing: 1.12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 12px;
}
.c-table__head p span {
  color: #222222;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.c-table__head p span a {
  color: #222222;
  text-decoration: underline;
}
.c-table__head p span a:hover {
  text-decoration: none;
}
.c-table__head--borderLeft {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.c-table__head--borderBottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.c-table__head--start {
  border-radius: 6px 0px 0px 0px;
}
.c-table__head--end {
  border-radius: 0px 6px 0px 0px;
}
.c-table__head--row {
  height: 100%;
  padding: 8px 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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.c-table__headText--m {
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.8px;
}
.c-table__headSubText--m {
  color: #999999;
  margin-left: 4px;
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.8px;
}
.c-table--sub {
  padding: 20px 14px 0;
}
.c-table--sub .c-table__wrap--head, .c-table--sub .c-table__wrap--headInTable, .c-table--sub .c-table__wrap--head-multi-line, .c-table--sub .c-table__wrap--head-multi-center, .c-table--sub .c-table__wrap--head-multi-split, .c-table--sub .c-table__wrap--head-multi-splitLeft, .c-table--sub .c-table__wrap--head-link-split, .c-table--sub .c-table__wrap--head-flex, .c-table--sub .c-table__wrap--head-slim, .c-table--sub .c-table__wrap--head-slim-left {
  min-height: 32px;
}
.c-table--form tbody {
  background-color: #fff;
}
.c-table--bgWhite tbody {
  background-color: #F8F8F8;
}
.c-table__cell--regular {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
  width: 100%;
  height: 100%;
}
.c-table__cell--primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 2px;
  width: 100%;
  height: 100%;
}
.c-table__cell--flexRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
}
.c-table__cell--flexRowEnd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
}
.c-table__unit--normal {
  color: #999999;
  text-align: right;
  font-family: "Roboto Flex";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
}
.c-table__input--numerics {
  width: 100%;
  height: 100%;
  padding: 8px 10px;
  background-color: transparent;
  border-left: 1px solid rgba(34, 34, 34, 0.04);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-table__input--numerics:has(input:focus) {
  background-color: #E5FBF7;
}
.c-table__input--numerics > input {
  text-align: right;
  width: 100%;
  min-width: 69.5px;
  height: 100%;
  border-bottom: 1px dashed #CACACA;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
}
.c-table__input--numerics > input:focus {
  border-bottom: 1px solid #50A192;
}
.c-table__input--numerics > input:-moz-read-only {
  border-bottom: none;
}
.c-table__input--numerics > input:read-only {
  border-bottom: none;
}
.c-table__input--numerics.--selected {
  background-color: #E5FBF7;
}
.c-table__input--numerics.--selected > input:-moz-read-only {
  border-bottom: none;
}
.c-table__input--numerics.--selected > input:read-only {
  border-bottom: none;
}
.c-table__input--numerics.--highlighted {
  background-color: #E5FBF7;
}
.c-table__input--numerics.--highlighted > input:-moz-read-only {
  border-bottom: none;
}
.c-table__input--numerics.--highlighted > input:read-only {
  border-bottom: none;
}
.c-table__input--numerics.--error {
  background-color: #FFEFF1;
}
.c-table__input--numerics.--error > input:focus {
  border-bottom: 1px solid #F04D62;
}
.c-table__input--numerics.--error > input:-moz-read-only {
  border-bottom: none;
}
.c-table__input--numerics.--error > input:read-only {
  border-bottom: none;
}
.c-table__input--numerics:has(input:disabled) {
  background-color: #EEEEEE;
}
.c-table__input--numerics:has(input:disabled) > input {
  border-bottom: 1px dashed #CACACA;
  color: #CACACA;
}
.c-table__input--numerics:has(input:disabled) > input:-moz-read-only {
  border-bottom: none;
}
.c-table__input--numerics:has(input:disabled) > input:read-only {
  border-bottom: none;
}
.c-table__input--numerics:has(input.--readonly) {
  border: none;
  cursor: default;
  background-color: inherit;
}
.c-table__input--numerics:has(input.--readonly) > input {
  color: #444444;
}
.c-table__input--numericsWithUnit {
  width: 100%;
  height: 100%;
  padding: 8px 10px;
  background-color: transparent;
  border-left: 1px solid rgba(34, 34, 34, 0.04);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.c-table__input--numericsWithUnit:has(input:focus) {
  background-color: #E5FBF7;
}
.c-table__input--numericsWithUnit > input {
  text-align: right;
  width: 100%;
  min-width: 69.5px;
  height: 100%;
  border-bottom: 1px dashed #CACACA;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
}
.c-table__input--numericsWithUnit > input:focus {
  border-bottom: 1px solid #50A192;
}
.c-table__input--numericsWithUnit > input:-moz-read-only {
  border-bottom: none;
}
.c-table__input--numericsWithUnit > input:read-only {
  border-bottom: none;
}
.c-table__input--numericsWithUnit.--selected {
  background-color: #E5FBF7;
}
.c-table__input--numericsWithUnit.--selected > input:-moz-read-only {
  border-bottom: none;
}
.c-table__input--numericsWithUnit.--selected > input:read-only {
  border-bottom: none;
}
.c-table__input--numericsWithUnit.--error {
  background-color: #FFEFF1;
}
.c-table__input--numericsWithUnit.--error > input:focus {
  border-bottom: 1px solid #F04D62;
}
.c-table__input--numericsWithUnit.--error > input:-moz-read-only {
  border-bottom: none;
}
.c-table__input--numericsWithUnit.--error > input:read-only {
  border-bottom: none;
}
.c-table__input--numericsWithUnit:has(input:disabled) {
  background-color: #EEEEEE;
}
.c-table__input--numericsWithUnit:has(input:disabled):has(.--readonly) {
  background-color: inherit;
}
.c-table__input--numericsWithUnit:has(input:disabled) > input {
  border-bottom: 1px dashed #CACACA;
  color: #CACACA;
}
.c-table__input--numericsWithUnit:has(input:disabled) > input:-moz-read-only {
  border-bottom: none;
}
.c-table__input--numericsWithUnit:has(input:disabled) > input:read-only {
  border-bottom: none;
}
.c-table__input--numericsWithUnit:has(input:disabled) > input.--readonly {
  color: #222222;
}
.c-table__input--text {
  width: 100%;
  height: 100%;
  padding: 8px 10px;
  background-color: inherit;
  border-left: 1px solid rgba(34, 34, 34, 0.04);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-table__input--text:has(input:focus) {
  background-color: #E5FBF7;
}
.c-table__input--text > input {
  text-align: left;
  width: 100%;
  height: 100%;
  border-bottom: 1px dashed #CACACA;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
}
.c-table__input--text > input:-moz-read-only {
  border-bottom: none;
}
.c-table__input--text > input:read-only {
  border-bottom: none;
}
.c-table__input--text.--selected {
  background-color: #E5FBF7;
}
.c-table__input--text.--selected > input {
  border-bottom: 1px solid #50A192;
}
.c-table__input--text.--selected > input:-moz-read-only {
  border-bottom: none;
}
.c-table__input--text.--selected > input:read-only {
  border-bottom: none;
}
.c-table__input--text.--error {
  background-color: #FFEFF1;
}
.c-table__input--text.--error > input {
  border-bottom: 1px solid #F04D62;
}
.c-table__input--text.--error > input:-moz-read-only {
  border-bottom: none;
}
.c-table__input--text.--error > input:read-only {
  border-bottom: none;
}
.c-table__input--text:has(input:disabled) {
  background-color: #EEEEEE;
}
.c-table__input--text:has(input:disabled) > input {
  border-bottom: 1px dashed #CACACA;
  color: #CACACA;
}
.c-table__input--text:has(input:disabled) > input:-moz-read-only {
  border-bottom: none;
}
.c-table__input--text:has(input:disabled) > input:read-only {
  border-bottom: none;
}
.c-table__input--text:has(input:disabled.--readonly) {
  background-color: inherit;
}
.c-table__input--text:has(input:disabled.--readonly) > input {
  border-bottom: 1px dashed #CACACA;
  color: #222222;
}
.c-table__input--text:has(input:disabled.--readonly) > input:-moz-read-only {
  border-bottom: none;
}
.c-table__input--text:has(input:disabled.--readonly) > input:read-only {
  border-bottom: none;
}
.c-table__input--calender {
  width: 100%;
  height: 100%;
  padding: 8px 10px;
  background-color: transparent;
  border-left: 1px solid rgba(34, 34, 34, 0.04);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  position: relative;
}
.c-table__input--calender::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("../img/icon-calender.svg");
  background-color: transparent;
  pointer-events: none;
}
.c-table__input--calender:has(input:focus) {
  background-color: #E5FBF7;
}
.c-table__input--calender:has(input:focus)::after {
  background-image: url("../img/icon-calender-green.svg");
}
.c-table__input--calender > input {
  text-align: left;
  width: 100%;
  height: 100%;
  border-bottom: 1px dashed #CACACA;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
}
.c-table__input--calender > input::-webkit-calendar-picker-indicator {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.c-table__input--calender > input:-moz-read-only {
  border-bottom: none;
}
.c-table__input--calender > input:read-only {
  border-bottom: none;
}
.c-table__input--calender.--selected {
  background-color: #E5FBF7;
}
.c-table__input--calender.--selected::after {
  background-image: url("../img/icon-calender-green.svg");
}
.c-table__input--calender.--selected > input {
  border-bottom: 1px solid #50A192;
}
.c-table__input--calender.--selected > input:-moz-read-only {
  border-bottom: none;
}
.c-table__input--calender.--selected > input:read-only {
  border-bottom: none;
}
.c-table__input--calender.--error {
  background-color: #FFEFF1;
}
.c-table__input--calender.--error > input {
  border-bottom: 1px solid #F04D62;
}
.c-table__input--calender.--error > input:-moz-read-only {
  border-bottom: none;
}
.c-table__input--calender.--error > input:read-only {
  border-bottom: none;
}
.c-table__input--calender:has(input:disabled) {
  background-color: #EEEEEE;
}
.c-table__input--calender:has(input:disabled) > input {
  border-bottom: 1px dashed #CACACA;
  color: #CACACA;
}
.c-table__input--calender:has(input:disabled) > input:-moz-read-only {
  border-bottom: none;
}
.c-table__input--calender:has(input:disabled) > input:read-only {
  border-bottom: none;
}
.c-table__input--calender:has(input:disabled.--readonly) {
  background-color: inherit;
}
.c-table__input--calender:has(input:disabled.--readonly) > input {
  border-bottom: 1px dashed #CACACA;
  color: #222222;
}
.c-table__input--calender:has(input:disabled.--readonly) > input:-moz-read-only {
  border-bottom: none;
}
.c-table__input--calender:has(input:disabled.--readonly) > input:read-only {
  border-bottom: none;
}
.c-table__input--time {
  width: 100%;
  height: 100%;
  padding: 8px 10px;
  background-color: inherit;
  border-left: 1px solid rgba(34, 34, 34, 0.04);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  position: relative;
}
.c-table__input--time::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("../img/icon-time.svg");
  background-color: inherit;
  pointer-events: none;
}
.c-table__input--time:has(input:focus) {
  background-color: #E5FBF7;
}
.c-table__input--time:has(input:focus)::after {
  background-image: url("../img/icon-time-green.svg");
}
.c-table__input--time > input {
  text-align: left;
  width: 100%;
  height: 100%;
  border-bottom: 1px dashed #CACACA;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
}
.c-table__input--time > input::-webkit-calendar-picker-indicator {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.c-table__input--time > input:-moz-read-only {
  border-bottom: none;
}
.c-table__input--time > input:read-only {
  border-bottom: none;
}
.c-table__input--time.--selected {
  background-color: #E5FBF7;
}
.c-table__input--time.--selected::after {
  background-image: url("../img/icon-time-green.svg");
}
.c-table__input--time.--selected > input {
  border-bottom: 1px solid #50A192;
}
.c-table__input--time.--selected > input:-moz-read-only {
  border-bottom: none;
}
.c-table__input--time.--selected > input:read-only {
  border-bottom: none;
}
.c-table__input--time.--error {
  background-color: #FFEFF1;
}
.c-table__input--time.--error > input {
  border-bottom: 1px solid #F04D62;
}
.c-table__input--time.--error > input:-moz-read-only {
  border-bottom: none;
}
.c-table__input--time.--error > input:read-only {
  border-bottom: none;
}
.c-table__input--time:has(input:disabled) {
  background-color: #EEEEEE;
}
.c-table__input--time:has(input:disabled) > input {
  border-bottom: 1px dashed #CACACA;
  color: #CACACA;
}
.c-table__input--time:has(input:disabled) > input:-moz-read-only {
  border-bottom: none;
}
.c-table__input--time:has(input:disabled) > input:read-only {
  border-bottom: none;
}
.c-table__input--time:has(input.--readonly) {
  background-color: inherit;
}
.c-table__input--time:has(input.--readonly) > input {
  color: #222222;
}
.c-table__content--regular {
  color: #222222;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
  word-break: break-all;
}
.c-table__content--primary {
  color: #222222;
  font-size: 14px;
  font-weight: 600;
  line-height: 18.2px;
  letter-spacing: 1.12px;
  word-break: break-all;
}
.c-table__content--primaryRight {
  color: #222222;
  font-size: 14px;
  font-weight: 600;
  line-height: 18.2px;
  letter-spacing: 1.12px;
  word-break: break-all;
  text-align: right;
}
.c-table__content--low {
  color: #222222;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.96px;
  word-break: break-all;
}
.c-table__content--count {
  text-align: right;
  color: #222222;
  font-size: 13px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 1.04px;
  word-break: break-all;
}
.c-table__content--numerics {
  text-align: right;
  color: #222222;
  font-size: 13px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 1.04px;
  word-break: break-all;
}
.c-table__content--numericsEmphasis {
  text-align: right;
  color: #222222;
  font-size: 13px;
  font-weight: 600;
  line-height: 16.9px;
  letter-spacing: 1.04px;
  word-break: break-all;
}
.c-table__content--numericsDeemphasis {
  text-align: right;
  color: #CACACA;
  font-size: 13px;
  font-weight: 600;
  line-height: 16.9px;
  letter-spacing: 1.04px;
  word-break: break-all;
}
.c-table__content--annotation {
  color: #8E55D6;
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
  word-break: break-all;
}
.c-table__supplement--regular {
  color: #666;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
  word-break: break-all;
}
.c-table__supplement--small {
  color: #666;
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.8px;
  word-break: break-all;
}
.c-table__supplement--numerics {
  color: #666;
  font-size: 12px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 0.96px;
  word-break: break-all;
  text-align: right;
}
.c-table__supplement--identifier {
  color: #666;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
  word-break: break-all;
  width: 100%;
}
.c-table__supplement--omission {
  color: #666;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
  word-break: break-all;
}
.c-table__subtext--regular {
  color: #999999;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
  word-break: break-all;
}
.c-table__overflow--stickyCross {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 3;
  background-color: inherit;
}
.c-table__overflow--stickyColumn {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: inherit;
}
.c-table__overflow--stickyRow {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: inherit;
}
.c-table--select {
  background-color: #E5FBF7;
}

.c-tablePulldown {
  width: 100%;
  height: 100%;
  padding: 8px 10px;
  background-color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  position: relative;
}
.c-tablePulldown:has(.--readonly)::after {
  display: none;
}
.c-tablePulldown:hover {
  cursor: pointer;
}
.c-tablePulldown::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url("../img/icon-angle.svg");
}
.c-tablePulldown__inner {
  width: 100%;
  height: 100%;
  padding-right: 22px;
  border-bottom: 1px dashed #CACACA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-tablePulldown__inner:has(.--readonly) {
  border-bottom: none;
  pointer-events: none;
  cursor: default;
}
.c-tablePulldown__name {
  width: 100%;
  height: 100%;
}
.c-tablePulldown__name ::-webkit-input-placeholder {
  color: #222222;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 1.12px;
}
.c-tablePulldown__name ::-moz-placeholder {
  color: #222222;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 1.12px;
}
.c-tablePulldown__name :-ms-input-placeholder {
  color: #222222;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 1.12px;
}
.c-tablePulldown__name ::-ms-input-placeholder {
  color: #222222;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 1.12px;
}
.c-tablePulldown__name ::placeholder {
  color: #222222;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 1.12px;
}
.c-tablePulldown:has(input:focus) {
  background-color: #E5FBF7;
}
.c-tablePulldown:has(input:focus)::after {
  background-image: url("../img/icon-angle-green.svg");
}
.c-tablePulldown:has(input:focus) .c-tablePulldown__inner {
  border-bottom: 1px solid #50A192;
}
.c-tablePulldown.--selected {
  background-color: #E5FBF7;
}
.c-tablePulldown.--selected::after {
  background-image: url("../img/icon-angle-green.svg");
}

.c-tableTextarea {
  position: relative;
  width: 100%;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.c-tableTextarea > textarea {
  height: 37px;
  min-height: 37px;
  max-height: 78.5px;
  padding: 8px 12px;
  min-width: 184px;
  width: 100%;
  border: 1px solid #808785;
  background-color: #fff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 400;
  line-height: 20.8px;
  letter-spacing: 1.04px;
  color: #222222;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.c-tableTextarea > textarea::-webkit-input-placeholder {
  color: #DDDDDD;
}
.c-tableTextarea > textarea::-moz-placeholder {
  color: #DDDDDD;
}
.c-tableTextarea > textarea:-ms-input-placeholder {
  color: #DDDDDD;
}
.c-tableTextarea > textarea::-ms-input-placeholder {
  color: #DDDDDD;
}
.c-tableTextarea > textarea::placeholder {
  color: #DDDDDD;
}
.c-tableTextarea > textarea:disabled {
  background-color: #EEEEEE;
}
.c-tableTextarea > textarea .contents_box::-webkit-scrollbar {
  display: none;
}
.c-tableTextarea.--selected {
  background-color: #E5FBF7;
}
.c-tableTextarea.--selected > textarea {
  border: 1px solid #50A192;
  -webkit-box-shadow: 0px 0px 0px 1px #6BBFB1;
          box-shadow: 0px 0px 0px 1px #6BBFB1;
}
.c-tableTextarea.--highlighted {
  background-color: #E5FBF7;
}
.c-tableTextarea.--error {
  background-color: #FFEFF1;
}
.c-tableTextarea.--error > textarea {
  border: 1px solid #F04D62;
}

.c-tableCheckbox {
  width: 100%;
  height: 100%;
  padding: 8px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}

.c-tableChecker {
  width: 22px;
  height: 22px;
}

.c-tableHead {
  background-color: #616866;
  height: 100%;
}
.c-tableHead--firstColumn {
  padding: 4px 10px;
  border-radius: 6px 0px 0px 0px;
}
.c-tableHead--lastColumn {
  padding: 4px 10px;
  border-radius: 0px 6px 0px 0px;
}
.c-tableHead--upperRow {
  padding: 4px 10px;
  height: 33px;
}
.c-tableHead--lowerColumn {
  padding: 4px 10px;
  height: 22px;
}
.c-tableHead__text {
  color: #fff;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.c-tableHead__text--upperRow {
  color: #fff;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.c-tableHead__text--lowerColumn {
  color: #fff;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}

.c-tableBorder--left {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.c-tableBorder--bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.c-tableRow--head {
  height: 55px;
}

.c-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 720px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(45, 44, 42, 0.09), 0px 4px 20px 0px rgba(45, 44, 42, 0.18);
          box-shadow: 0px 2px 8px 0px rgba(45, 44, 42, 0.09), 0px 4px 20px 0px rgba(45, 44, 42, 0.18);
  background-color: #fff;
  z-index: 50;
  display: none;
}
.c-modal__head {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  height: 60px;
  padding: 0px 4px 0 24px;
  border-bottom: 1px solid #DDDDDD;
}
.c-modal__title {
  color: #222222;
  font-size: 18px;
  font-weight: 700;
  line-height: 23.4px;
  letter-spacing: 1.8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.c-modal__title--warning {
  color: #F04D62;
}
.c-modal__hide {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-modal__hide::before, .c-modal__hide::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  border-radius: 1px;
  background-color: #444444;
  position: absolute;
  top: 50%;
  left: 50%;
}
.c-modal__hide::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.c-modal__hide::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.c-modal__hide:hover {
  background-color: #F8F8F8;
}
.c-modal__main {
  max-height: calc(100dvh - 120px - 80px);
}
.c-modal__section {
  padding: 24px;
  color: #222222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  letter-spacing: 1.12px;
}
.c-modal__section:first-child:not(.c-modal__section--err) {
  padding: 16px 24px 0;
}
.c-modal__section--bg {
  background-color: #F8F8F8;
}
.c-modal__section--err {
  padding: 16px 24px;
  border-bottom: 1px solid var(--Gray-light2, #DFDDDA);
}
.c-modal__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 20px;
  height: 72px;
  padding: 0px 20px;
  border-top: 1px solid var(--Gray-light2, #DFDDDA);
}
.c-modal--bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--Overlay, rgba(45, 44, 42, 0.7));
  backdrop-filter: blur(3px);
  z-index: 40;
  display: none;
}
.c-modal--min {
  width: 540px;
}
.c-modal__message {
  font-size: 0.875rem;
  line-height: 1.75;
}
.c-modal__precautions {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #F04D62;
}

.c-tooltips {
  position: relative;
}
.c-tooltips__bg {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 39;
  cursor: auto;
}
.c-tooltips__bg.show {
  display: block;
}
.c-tooltips__main {
  position: absolute;
  right: -4px;
  top: calc(100% + 4px);
  opacity: 0;
  -webkit-transform: translateX(-100vw);
          transform: translateX(-100vw);
  -webkit-transition: opacity 0.3s cubic-bezier(0.37, 0, 0.63, 1), -webkit-transform 0.1s cubic-bezier(0.37, 0, 0.63, 1) 0.3s;
  transition: opacity 0.3s cubic-bezier(0.37, 0, 0.63, 1), -webkit-transform 0.1s cubic-bezier(0.37, 0, 0.63, 1) 0.3s;
  transition: transform 0.1s cubic-bezier(0.37, 0, 0.63, 1) 0.3s, opacity 0.3s cubic-bezier(0.37, 0, 0.63, 1);
  transition: transform 0.1s cubic-bezier(0.37, 0, 0.63, 1) 0.3s, opacity 0.3s cubic-bezier(0.37, 0, 0.63, 1), -webkit-transform 0.1s cubic-bezier(0.37, 0, 0.63, 1) 0.3s;
  z-index: 40;
}
.c-tooltips__main.show {
  -webkit-transition: opacity 0.3s cubic-bezier(0.37, 0, 0.63, 1);
  transition: opacity 0.3s cubic-bezier(0.37, 0, 0.63, 1);
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.c-tooltips__floating {
  position: fixed;
}
.c-tooltips__inner {
  border-radius: 6px;
  background: #494E4D;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(45, 44, 42, 0.09), 0px 4px 20px 0px rgba(45, 44, 42, 0.18);
          box-shadow: 0px 2px 8px 0px rgba(45, 44, 42, 0.09), 0px 4px 20px 0px rgba(45, 44, 42, 0.18);
  padding: 9px 8px;
  position: relative;
}
.c-tooltips__section + .c-tooltips__section {
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid #222222;
}
.c-tooltips__text {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
  color: #fff;
}
.c-tooltips__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-tooltips__row li {
  width: 100%;
}
.c-tooltips__row li button {
  width: 100%;
  height: 48px;
  padding: 6px;
  text-align: left;
  border-radius: 4px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-tooltips__row li button:hover {
  background-color: rgba(45, 44, 42, 0.18);
}
.c-tooltips__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-tooltips__col li {
  width: 100%;
  white-space: nowrap;
}
.c-tooltips__col li a,
.c-tooltips__col li button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #fff;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.96px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-tooltips__col li a:hover,
.c-tooltips__col li button:hover {
  opacity: 0.7;
}
.c-tooltips--title {
  position: relative;
}
.c-tooltips--title > img {
  width: 18px;
  height: 18px;
}
.c-tooltips--title.is-disabled, .c-tooltips--title:disabled {
  pointer-events: none;
  opacity: 0.5;
}
.c-tooltips--titleGray {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
}
.c-tooltips--titleGray:disabled {
  pointer-events: none;
  opacity: 0.3;
}
.c-tooltips__positionAdjust:first-child .c-tooltips__main {
  bottom: -310%;
}

.c-icon--primary {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-icon--primary span {
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 1px;
  background: #222222;
  font-size: 10px;
  font-weight: 700;
  line-height: 10px;
  letter-spacing: 0.8px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-icon--nursery {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-icon--nursery span {
  color: #222222;
  width: 28px;
  height: 28px;
  border-radius: 1px;
  border: 2px solid #222222;
  background: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 10px;
  letter-spacing: 0.8px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-icon--circle {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-icon--circle span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #444444;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.96px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-icon--jien {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-icon--jien span {
  width: 28px;
  height: 14px;
  border-radius: 1px;
  background: #222222;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 10px;
  letter-spacing: 0.8px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-icon--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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-icon--A span {
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 1px;
  background: #DDDDDD;
  font-size: 16px;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: 1.28px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-icon--B {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-icon--B span {
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 1px;
  background: #444444;
  font-size: 16px;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: 1.28px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-icon--C {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-icon--C span {
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 1px;
  background: #222222;
  font-size: 16px;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: 1.28px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}

.c-week {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 1px;
}
.c-week li {
  background-color: #fff;
  background-image: linear-gradient(-45deg, transparent 49%, #EEEEEE 49%, #EEEEEE 51%, transparent 51%, transparent);
  border: 1px solid #EEEEEE;
  width: 16px;
  height: 16px;
  padding-left: 1px;
  color: #EEEEEE;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.96px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-week li.active {
  color: #fff;
  background-color: #444444;
  border: 1px solid #444444;
  background-image: none;
}

.c-box {
  border-radius: 4px;
  border: 1px solid #DDDDDD;
}
.c-box__head {
  padding: 8px 16px;
  border-radius: 4px 4px 0px 0px;
  background: #F8F8F8;
  border-bottom: 1px solid #DDDDDD;
}
.c-box__head h3 {
  color: #222222;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.c-box__main {
  padding: 14px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
}
.c-box__name {
  color: #222222;
  font-size: 14px;
  font-weight: 700;
  line-height: 22.4px;
  letter-spacing: 1.12px;
}
.c-box__note {
  color: #222222;
  font-size: 12px;
  font-weight: 400;
  line-height: 19.2px;
  letter-spacing: 0.96px;
}
.c-box__note a {
  color: #222222;
  text-decoration: underline;
}
.c-box__note a:hover {
  text-decoration: none;
}

.c-caution {
  border-radius: 4px;
  background: #FFD8DD;
  padding: 14px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
}
.c-caution h3 {
  color: #F04D62;
  font-size: 12px;
  font-weight: 700;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.c-caution ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
}
.c-caution ul li {
  position: relative;
  padding-left: 16px;
  color: #222222;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 1.04px;
}
.c-caution ul li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #FFEFF1;
  position: absolute;
  top: 9px;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-check {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-check::before {
  content: "";
  display: block;
  width: 3px;
  height: 17px;
  border-radius: 2px;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #444444;
}
.c-check::after {
  content: "";
  display: block;
  width: 3px;
  height: 11px;
  border-radius: 2px;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: translate(-2px, 3px) rotate(-45deg);
          transform: translate(-2px, 3px) rotate(-45deg);
  background-color: #444444;
}

.c-checkRecord {
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
  width: 100%;
}
.c-checkRecord__btn {
  opacity: 0;
}
.c-checkRecord::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #50A192;
  height: 12px;
  width: 12px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.c-checkRecord:has(input:checked)::before {
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.c-btnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.c-badge {
  position: relative;
}
.c-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #F04D62;
  position: absolute;
  top: 3px;
  right: 3px;
}

.c-menu {
  display: none;
  position: absolute;
  top: 40px;
  right: 5px;
  border-radius: 10px;
  padding: 2px 8px;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(45, 44, 42, 0.09), 0px 4px 20px 0px rgba(45, 44, 42, 0.18);
          box-shadow: 0px 2px 8px 0px rgba(45, 44, 42, 0.09), 0px 4px 20px 0px rgba(45, 44, 42, 0.18);
  background-color: #494E4D;
  z-index: 50;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
}
.c-menu p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
  padding: 8px;
  height: 52px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
  white-space: nowrap;
}
.c-menu p > span {
  color: #999999;
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.c-menu ul {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  padding: 8px 0px;
}
.c-menu ul li {
  padding: 8px;
  height: 48px;
  display: block;
  -webkit-transition: background-color 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: background-color 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
}
.c-menu ul li:hover {
  background-color: rgba(185, 183, 179, 0.3);
}
.c-menu ul li a {
  color: #fff;
}

.c-calender {
  width: 1000px;
  margin: 50px auto;
}
.c-calender__head {
  text-align: center;
  margin-bottom: 30px;
  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;
  gap: 50px;
}
.c-calender__head h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
}
.c-calender__body table {
  width: 100%;
  height: 100%;
}
.c-calender__body table > thead {
  white-space: nowrap;
}
.c-calender__body table > thead > tr > th {
  background-color: #444444;
  color: #fff;
  height: 100%;
  padding: 10px 20px;
}
.c-calender__body table > thead > tr > th:first-child {
  border-radius: 6px 0px 0px 0px;
}
.c-calender__body table > thead > tr > th:last-child {
  border-radius: 0px 6px 0px 0px;
}
.c-calender__body table > thead > tr > th:not(:first-child) {
  border-left: 1px solid #222222;
}
.c-calender__body table > thead > tr > td {
  background-color: #fff;
  border-left: 1px solid rgba(45, 44, 42, 0.18);
  border-bottom: 1px solid #DDDDDD;
}
.c-calender__body table > tbody {
  background-color: #fff;
}
.c-calender__body table > tbody > tr > th {
  border-bottom: 1px solid #EEEEEE;
  text-align: left;
}
.c-calender__body table > tbody > tr > td {
  height: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  text-align: center;
  border-bottom: 1px solid #EEEEEE;
}
.c-calender__body table > tbody > tr > td:not(:first-child) {
  border-left: 1px solid #EEEEEE;
}
.c-calender__cell--sun .c-calender__day {
  color: #F04D62;
}
.c-calender__cell--sat .c-calender__day {
  color: #00669C;
}
.c-calender__cell--not {
  position: relative;
}
.c-calender__cell--not::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.7);
}
.c-calender__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.c-calender__day {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.96px;
  padding: 5px 0;
  margin: 0 5px;
  border-bottom: 1px solid #EEEEEE;
}
.c-calender__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  width: 132.8571428571px;
  padding: 5px 0;
  margin: 0 5px;
  text-align: left;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-calender__content ul {
  padding: 0 5px;
  font-size: 12px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
}
.c-calender__content ul li {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-calender__content:hover {
  background-color: rgba(45, 44, 42, 0.03);
}
.c-calender__other {
  display: block;
  border-top: 1px solid #EEEEEE;
  padding: 5px 0 10px;
  margin: 0 5px;
  text-align: left;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-calender__other dl {
  padding: 0 5px;
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.8px;
}
.c-calender__other dl dt {
  display: inline-block;
  width: 50%;
}
.c-calender__other dl dd {
  display: inline-block;
  width: 50%;
}
.c-calender__other:hover {
  background-color: rgba(45, 44, 42, 0.03);
}

.c-clear {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 10px;
  height: 100%;
}
.c-clear::before, .c-clear::after {
  content: "";
  display: block;
  width: 11px;
  height: 1px;
  border-radius: 1px;
  background-color: #222222;
}
.c-clear::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-clear::after {
  -webkit-transform: translateY(-1px) rotate(-45deg);
          transform: translateY(-1px) rotate(-45deg);
}
.c-clear.show {
  display: block;
}

.c-userIcon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #B3B9B7;
}
.c-userIcon button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #B3B9B7;
}
.c-userIcon__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
}
.c-userIcon__wrapper::after {
  content: "";
  display: block;
  background-image: url(../img/icon-pointing_down_arrow.svg);
  width: 12px;
  height: 12px;
}

.c-suggest {
  position: absolute;
  top: 52px;
  left: 0;
  z-index: 999;
  min-width: 300px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-height: 351px;
  border-radius: 4px;
  z-index: 999;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 0px 1px #6BBFB1;
          box-shadow: 0px 0px 0px 1px #6BBFB1;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.c-suggest::-webkit-scrollbar {
  display: none;
}
.c-suggest__inner {
  min-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  min-height: 0px;
  max-height: 25vh;
  cursor: pointer;
}
.c-suggest__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
  padding: 12px 16px;
  width: 100%;
  height: 48px;
  border-bottom: 1px solid #DDDDDD;
  word-break: break-all;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-suggest__item:hover {
  background-color: #E5FBF7;
}
.c-suggest__item:last-of-type {
  border-bottom: none;
}
.c-suggest__item--loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
  padding: 12px 16px;
  width: 100%;
  height: 48px;
  border-radius: 4px;
}
.c-suggest__item--loading::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("../img/icon-loading_in_page.svg");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-animation-name: "loading";
          animation-name: "loading";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.c-suggest__item--noData {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
  padding: 12px 16px;
  width: 100%;
  height: 48px;
  border-radius: 4px;
}
.c-suggest__name {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 1.12px;
  color: #222222;
  word-break: keep-all;
}
.c-suggest__name--loading {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 1.12px;
  color: #919795;
  word-break: keep-all;
}
.c-suggest__name--noData {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 1.12px;
  color: #919795;
  word-break: keep-all;
}
.c-suggest__person {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 1.12px;
  color: #222222;
  word-break: keep-all;
}
.c-suggest__img {
  width: 18px;
  height: 18px;
}
.c-suggest__icon {
  width: 24px;
  height: 24px;
}
.c-suggest__number {
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.96px;
  color: #999999;
}
.c-suggest__btn {
  width: 100%;
  height: 48px;
}

.c-detail {
  width: 100%;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
}
.c-detail__list {
  display: grid;
  grid-template-columns: 160px auto;
  overflow: hidden;
}
.c-detail__name {
  padding: 16px 10px 16px 16px;
  color: #50A192;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.2px;
  letter-spacing: 1.4px;
  border-bottom: 1px solid #DDDDDD;
}
.c-detail__name:last-of-type {
  border-bottom: none;
}
.c-detail__name--confirmation {
  color: #8D7764;
}
.c-detail__dateContent {
  padding: 16px 20px;
  border-bottom: 1px solid #DDDDDD;
  background-color: #F8F8F8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.c-detail__dateContent:last-of-type {
  border-bottom: none;
}
.c-detail__border--bottom {
  border-bottom: 1px solid #EEEEEE;
}
.c-detail__text--boldM {
  color: #222222;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.8px;
  letter-spacing: 1.6px;
}
.c-detail__text--primaryM {
  color: #222222;
  font-size: 14px;
  font-weight: 600;
  line-height: 18.2px;
  letter-spacing: 1.12px;
}
.c-detail__text--supplementM {
  color: #999999;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
}
.c-detail__text--supplementS {
  color: #999999;
  font-size: 12px;
  font-weight: 400;
  line-height: 20.8px;
  letter-spacing: 0.96px;
}
.c-detail__text--inline {
  font-size: 16px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 1.28px;
}
.c-detail__content {
  padding: 16px 20px;
  border-bottom: 1px solid #DDDDDD;
  background-color: #F8F8F8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.c-detail__content:last-of-type {
  border-bottom: none;
}
.c-detail__content--number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  font-size: 16px;
  font-weight: 600;
  line-height: 18.2px;
  letter-spacing: 1.28px;
  color: #222222;
}
.c-detail__content--normal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
  color: #222222;
}
.c-detail__content--low {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  font-size: 12px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 0.96px;
  color: #999999;
}
.c-detail__content--bold {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.12px;
  color: #222222;
}
.c-detail__content--worker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0px;
  gap: 8px 16px;
}
.c-detail__content--workerLook {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.c-detail__content--remarks {
  color: #222222;
  word-break: break-all;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  letter-spacing: 1.12px;
}
.c-detail__content--list {
  display: grid;
  grid-template-columns: 74px auto;
  gap: 5px;
  width: 100%;
  word-break: break-all;
  border-top: 1px dashed #DDDDDD;
}
.c-detail__content--list:first-of-type {
  margin-top: 12px;
}
.c-detail__content--list dt {
  padding-top: 6px;
  padding-right: 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 16.9px;
  letter-spacing: 1.04px;
  color: #808785;
}
.c-detail__content--list dd {
  padding-top: 6px;
  font-size: 13px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 1.04px;
  color: #222222;
}
.c-detail__content--supplement {
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.96px;
  color: #666;
  padding: 0px 4px;
}
.c-detail__content--bottom {
  color: #222222;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.2px;
  letter-spacing: 1.12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.c-detail__content--img {
  width: 18px;
  height: 18px;
  margin-right: 2px;
}
.c-detail__subContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 5px;
  width: 100%;
}
.c-detail__bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
.c-detail__flexWrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.c-detail__flexWrap--alignCenter {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.c-detail__flexWrap--spacedTop {
  margin-top: 24px;
}
.c-detail__register {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 18px;
}
.c-detail__item--moreShort {
  width: 112px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-detail__item--short {
  width: 152px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-detail__item--medium {
  width: 184px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-detail__item--semiLong {
  width: 432px;
}
.c-detail__item--long {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-detail__item--max {
  width: 100%;
}
.c-detail__select {
  width: 216px;
}
.c-detail__inputContainer--numerics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
}
.c-detail__inputContainer--numerics input {
  text-align: right;
}
.c-detail__inputAligner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.c-detail__inputWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.c-detail__inputWrapper--narrowFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
}
.c-detail__inputWrapper--flex {
  -webkit-margin-end: 16px;
          margin-inline-end: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
.c-detail__inputWrapper--flexCenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
.c-detail__box--confirmation {
  padding: 0px 24px;
}
.c-detail__heading {
  padding: 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}

.c-detailOrientation__wrapper {
  width: 100%;
}
@media (orientation: portrait) {
  .c-detailOrientation__wrapper {
    border: 1px solid #DDDDDD;
    border-radius: 8px;
  }
  .c-detailOrientation__wrapper > .c-detail {
    border: none;
  }
  .c-detailOrientation__wrapper > .c-detail:first-of-type {
    border-bottom: 1px solid #DDDDDD;
    border-radius: 0px;
  }
}
@media (orientation: landscape) {
  .c-detailOrientation__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 24px;
  }
}

.c-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  width: 100%;
  height: 48px;
}
.c-input input {
  width: 100%;
  height: 100%;
  cursor: pointer;
  border: 1px solid #808785;
  border-radius: 6px;
  padding: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 1.28px;
}
.c-input input[disabled] {
  background-color: #EEEEEE;
  cursor: default;
}
.c-input input[type=date]::-webkit-calendar-picker-indicator,
.c-input input [type=time]::-webkit-calendar-picker-indicator {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.c-input input.--readonly {
  border: none;
  cursor: default;
  background-color: #F8F8F8;
}
.c-input--calender {
  position: relative;
}
.c-input--calender span {
  display: block;
  width: 100%;
  height: 100%;
}
.c-input--calender::after {
  content: "";
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  left: auto;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../img/icon-calender.svg");
}
.c-input--remark {
  position: relative;
}
.c-input--remark input {
  width: 100%;
  height: 100%;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 400;
  line-height: 20.8px;
  letter-spacing: 1.04px;
  color: #222222;
  border: 1px solid #B3B9B7;
  border-radius: 6px;
  background-color: #fff;
}
.c-input--remark input::-webkit-input-placeholder {
  color: #B3B9B7;
  font-size: 13px;
  font-weight: 400;
  line-height: 20.8px;
  letter-spacing: 1.04px;
}
.c-input--remark input::-moz-placeholder {
  color: #B3B9B7;
  font-size: 13px;
  font-weight: 400;
  line-height: 20.8px;
  letter-spacing: 1.04px;
}
.c-input--remark input:-ms-input-placeholder {
  color: #B3B9B7;
  font-size: 13px;
  font-weight: 400;
  line-height: 20.8px;
  letter-spacing: 1.04px;
}
.c-input--remark input::-ms-input-placeholder {
  color: #B3B9B7;
  font-size: 13px;
  font-weight: 400;
  line-height: 20.8px;
  letter-spacing: 1.04px;
}
.c-input--remark input::placeholder {
  color: #B3B9B7;
  font-size: 13px;
  font-weight: 400;
  line-height: 20.8px;
  letter-spacing: 1.04px;
}
.c-input--remark::after {
  position: absolute;
  content: "";
  background-image: url(../img/icon-input-handle.svg);
  bottom: 3px;
  right: 3px;
  width: 5px;
  height: 5px;
}

.c-inputCheckbox, .c-inputCheckbox--delete {
  width: 22px;
  height: 22px;
  background-color: #fff;
  border: 1px solid #222222;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-inputCheckbox--withText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
}
.c-inputCheckbox--withText > p {
  color: #222222;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 1.12px;
  cursor: pointer;
}
.c-inputCheckbox--withText:has(input:disabled) > p {
  color: #999999;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 1.12px;
  cursor: default;
}
.c-inputCheckbox::before, .c-inputCheckbox--delete::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-inputCheckbox:hover::before, .c-inputCheckbox--delete:hover::before {
  background-image: url("../img/icon-check-hover.svg");
}
.c-inputCheckbox:has(input:checked), .c-inputCheckbox--delete:has(input:checked) {
  background-color: #50A192;
  border: none;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-inputCheckbox:has(input:checked)::before, .c-inputCheckbox--delete:has(input:checked)::before {
  background-image: url("../img/icon-check-active.svg");
  opacity: 1;
}
.c-inputCheckbox:has(input:checked):hover::before, .c-inputCheckbox--delete:has(input:checked):hover::before {
  opacity: 0.3;
}
.c-inputCheckbox:has(input:disabled):has(input:not(.--readonly)), .c-inputCheckbox--delete:has(input:disabled):has(input:not(.--readonly)) {
  pointer-events: none;
  background-color: #EEEEEE;
  border: 1px solid #DDDDDD;
  cursor: default;
  background-image: none;
}
.c-inputCheckbox > input, .c-inputCheckbox--delete > input {
  display: none;
}
.c-inputCheckbox--borderLess {
  width: 25px;
  height: 25px;
  background-color: inherit;
  position: relative;
  cursor: pointer;
}
.c-inputCheckbox--borderLess::before {
  content: "-";
  text-align: center;
  color: #999999;
  position: absolute;
  width: 22px;
  height: 22px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-inputCheckbox--borderLess:has(input:checked)::before {
  content: "";
  background-image: url("../img/icon-check-green.svg");
}
.c-inputCheckbox--borderLess > input {
  display: none;
}
.c-inputCheckbox--delete:has(input:checked) {
  background-color: #F04D62;
}
.c-inputCheckbox--delete:has(input.--readonly) {
  cursor: default;
}

.c-inputRadio {
  width: 22px;
  height: 22px;
  border-radius: 11px;
  background-image: url("../img/icon-radio.svg");
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-inputRadio--withText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
}
.c-inputRadio--withText > p {
  color: #222222;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 1.12px;
  cursor: pointer;
}
.c-inputRadio--withText:has(input:disabled) > p {
  color: #999999;
  cursor: default;
}
.c-inputRadio:hover {
  background-image: url("../img/icon-radio-hover.svg");
}
.c-inputRadio:has(input:checked) {
  background-image: url("../img/icon-radio-active.svg");
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-inputRadio:has(input:checked):hover {
  background-image: url("../img/icon-radio-active-hover.svg");
}
.c-inputRadio:has(input:disabled) {
  pointer-events: none;
}
.c-inputRadio:has(input:disabled:not(.--readonly)) {
  pointer-events: none;
  background-color: #EEEEEE;
  border: 1px solid #DDDDDD;
  cursor: default;
  background-image: none;
}
.c-inputRadio > input {
  display: none;
}

.c-inputText, .c-inputText--sizeL {
  cursor: pointer;
  height: 48px;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 1.12px;
}
.c-inputText--sizeM {
  font-size: 16px;
}
.c-inputText input, .c-inputText--sizeL input {
  border: 1px solid #808785;
  border-radius: 6px;
  background-color: #fff;
  color: #222222;
  height: 100%;
  width: 100%;
  padding: 0px 12px;
}
.c-inputText input::-webkit-input-placeholder, .c-inputText--sizeL input::-webkit-input-placeholder {
  color: #CACACA;
}
.c-inputText input::-moz-placeholder, .c-inputText--sizeL input::-moz-placeholder {
  color: #CACACA;
}
.c-inputText input:-ms-input-placeholder, .c-inputText--sizeL input:-ms-input-placeholder {
  color: #CACACA;
}
.c-inputText input::-ms-input-placeholder, .c-inputText--sizeL input::-ms-input-placeholder {
  color: #CACACA;
}
.c-inputText input::placeholder, .c-inputText--sizeL input::placeholder {
  color: #CACACA;
}
.c-inputText input:focus, .c-inputText--sizeL input:focus {
  border: 1px solid #6BBFB1;
  -webkit-box-shadow: 0px 0px 0px 1px #6BBFB1;
          box-shadow: 0px 0px 0px 1px #6BBFB1;
}
.c-inputText input:disabled, .c-inputText--sizeL input:disabled {
  border: 1px solid #999999;
  color: #CACACA;
  background-color: #EEEEEE;
  cursor: default;
}
.c-inputText input:-moz-read-only, .c-inputText--sizeL input:-moz-read-only {
  border: 1px solid #999999;
  color: #222222;
  background-color: #EEEEEE;
  cursor: default;
}
.c-inputText input:read-only, .c-inputText--sizeL input:read-only {
  border: 1px solid #999999;
  color: #222222;
  background-color: #EEEEEE;
  cursor: default;
}
.c-inputText input.--readonly, .c-inputText--sizeL input.--readonly {
  border: none;
  color: #222222;
  cursor: default;
  background-color: #F8F8F8;
}
.c-inputText.--error > input, .--error.c-inputText--sizeL > input {
  border: 1px solid #F04D62;
  color: #222222;
  background-color: #FFEFF1;
}
.c-inputText.--alert > input, .--alert.c-inputText--sizeL > input {
  border: 1px solid #FF8718;
  color: #222222;
  background-color: #FFF7EB;
}
.c-inputText--sizeL {
  height: 56px;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 1.92px;
}
.c-inputText--sizeL input {
  padding: 0px 16px;
}

.c-input__error {
  color: #F04D62;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.96px;
}

.c-input__alert {
  color: #FF8718;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.96px;
}

.c-inputUpDown {
  position: relative;
  width: 100%;
}
.c-inputUpDown > .c-inputText > input, .c-inputUpDown > .c-inputText--sizeL > input {
  padding: 0px 26px 0px 12px;
  text-align: right;
}
.c-inputUpDown__btns {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-inputUpDown__btn--up {
  background-color: transparent;
  width: 19px;
  height: 23px;
  border-radius: 0px 5px 0px 0px;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-inputUpDown__btn--up::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url("../img/icon-up-arrow.svg");
  background-size: cover;
}
.c-inputUpDown__btn--up:hover {
  background-color: #EDF1F0;
}
.c-inputUpDown__btn--up:hover::before {
  background-image: url("../img/icon-up-arrow-green.svg");
}
.c-inputUpDown__btn--up:disabled {
  pointer-events: none;
}
.c-inputUpDown__btn--down {
  background-color: transparent;
  width: 19px;
  height: 23px;
  border-radius: 0px 0px 5px 0px;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-inputUpDown__btn--down::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url("../img/icon-down-arrow.svg");
  background-size: cover;
}
.c-inputUpDown__btn--down:hover {
  background-color: #EDF1F0;
}
.c-inputUpDown__btn--down:hover::before {
  background-image: url("../img/icon-down-arrow-green.svg");
}
.c-inputUpDown__btn--down:disabled {
  pointer-events: none;
}

.c-inputSearch {
  width: 100%;
  position: relative;
}
.c-inputSearch > .c-inputText > input, .c-inputSearch > .c-inputText--sizeL > input {
  padding: 0px 36px 0px 12px;
}
.c-inputSearch::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url("../img/icon-scope.svg");
  background-size: cover;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}

.c-inputSuggest, .c-inputSuggest--plusUser {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  border-radius: 6px;
  border: 1px solid #999999;
  background-color: #fff;
  height: 48px;
  padding: 0 38px 0 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-width: 140px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-inputSuggest::before, .c-inputSuggest--plusUser::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("../img/icon-angle.svg");
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.c-inputSuggest:focus, .c-inputSuggest--plusUser:focus {
  border: 1px solid #6BBFB1;
  -webkit-box-shadow: 0px 0px 0px 1px #6BBFB1;
          box-shadow: 0px 0px 0px 1px #6BBFB1;
}
.c-inputSuggest:focus::before, .c-inputSuggest--plusUser:focus::before {
  background-image: url("../img/icon-angle-green.svg");
  background-size: cover;
}
.c-inputSuggest input, .c-inputSuggest--plusUser input {
  color: #222222;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 1.12px;
  pointer-events: none;
}
.c-inputSuggest:has(input:disabled), .c-inputSuggest--plusUser:has(input:disabled) {
  background-color: #EEEEEE;
  pointer-events: none;
  cursor: default;
}
.c-inputSuggest.--readonly, .--readonly.c-inputSuggest--plusUser {
  padding-left: 12px;
}
.c-inputSuggest.--readonly::before, .--readonly.c-inputSuggest--plusUser::before {
  display: none;
}
.c-inputSuggest.--readonly::after, .--readonly.c-inputSuggest--plusUser::after {
  display: none;
}
.c-inputSuggest:has(input:-moz-read-only), .c-inputSuggest--plusUser:has(input:-moz-read-only) {
  background-color: #EEEEEE;
  pointer-events: none;
  cursor: default;
}
.c-inputSuggest:has(input:read-only), .c-inputSuggest--plusUser:has(input:read-only) {
  background-color: #EEEEEE;
  pointer-events: none;
  cursor: default;
}
.c-inputSuggest.--error, .--error.c-inputSuggest--plusUser {
  border: 1px solid #F04D62;
  background-color: #FFEFF1;
}
.c-inputSuggest--plusScope {
  position: relative;
}
.c-inputSuggest--plusScope > .c-inputText > input, .c-inputSuggest--plusScope > .c-inputText--sizeL > input {
  padding: 0px 30px 0px 36px;
}
.c-inputSuggest--plusScope > .c-inputText > input:focus, .c-inputSuggest--plusScope > .c-inputText--sizeL > input:focus {
  -webkit-box-shadow: 0px 0px 0px 1px #6BBFB1;
          box-shadow: 0px 0px 0px 1px #6BBFB1;
  border: 1px solid #6BBFB1;
}
.c-inputSuggest--plusScope > .c-inputText.--error > input, .c-inputSuggest--plusScope > .--error.c-inputText--sizeL > input {
  border: 1px solid #F04D62;
  background-color: #FFEFF1;
}
.c-inputSuggest--plusScope::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-image: url("../img/icon-angle.svg");
  background-size: cover;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.c-inputSuggest--plusScope:has(input:focus)::after {
  background-image: url("../img/icon-angle-green.svg");
}
.c-inputSuggest--plusScope::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url("../img/icon-scope.svg");
  background-size: cover;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.c-inputSuggest--dummy {
  padding-left: 37px;
  font-size: 16px;
}
.c-inputSuggest.--readonly, .--readonly.c-inputSuggest--plusUser {
  border: none;
  background-color: #F8F8F8;
  pointer-events: none;
  cursor: default;
}
.c-inputSuggest.--readonly .c-genericTextWithImg__text--regular, .--readonly.c-inputSuggest--plusUser .c-genericTextWithImg__text--regular {
  color: #222222;
}
.c-inputSuggest__userIcon {
  position: absolute;
}
.c-inputSuggest--plusUser input {
  padding-left: 30px;
  width: 100%;
}

.c-inputCalender {
  position: relative;
  width: 100%;
}
.c-inputCalender > .c-inputText > input, .c-inputCalender > .c-inputText--sizeL > input {
  padding: 0px 36px 0px 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-inputCalender > .c-inputText > input::-webkit-calendar-picker-indicator, .c-inputCalender > .c-inputText--sizeL > input::-webkit-calendar-picker-indicator {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.c-inputCalender::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url("../img/icon-calender.svg");
  background-size: cover;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.c-inputCalender:has(input:focus)::before {
  background-image: url("../img/icon-calender-green.svg");
}
.c-inputCalender.--error > .c-inputText > input, .c-inputCalender.--error > .c-inputText--sizeL > input {
  border: 1px solid #F04D62;
  background-color: #FFEFF1;
}
.c-inputCalender:has(.--readonly)::before {
  display: none;
}

.c-inputTime {
  position: relative;
  width: 100%;
}
.c-inputTime > .c-inputText > input, .c-inputTime > .c-inputText--sizeL > input {
  padding: 0px 36px 0px 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-inputTime > .c-inputText > input::-webkit-calendar-picker-indicator, .c-inputTime > .c-inputText--sizeL > input::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}
.c-inputTime::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url("../img/icon-time.svg");
  background-size: cover;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.c-inputTime:has(input:focus)::before {
  background-image: url("../img/icon-time-green.svg");
}
.c-inputTime.--error > .c-inputText > input, .c-inputTime.--error > .c-inputText--sizeL > input {
  border: 1px solid #F04D62;
  background-color: #FFEFF1;
}

.c-inputTextarea {
  position: relative;
  width: 100%;
  height: auto;
}
.c-inputTextarea > textarea {
  display: block;
  height: 100%;
  min-height: 48px;
  max-height: 91px;
  min-width: 280px;
  width: 100%;
  padding: 12px;
  border: 1px solid #999999;
  background-color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  letter-spacing: 1.12px;
  color: #222222;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.c-inputTextarea > textarea:focus {
  border: 1px solid #6BBFB1;
  -webkit-box-shadow: 0px 0px 0px 1px #6BBFB1;
          box-shadow: 0px 0px 0px 1px #6BBFB1;
}
.c-inputTextarea > textarea::-webkit-input-placeholder {
  color: #DDDDDD;
}
.c-inputTextarea > textarea::-moz-placeholder {
  color: #DDDDDD;
}
.c-inputTextarea > textarea:-ms-input-placeholder {
  color: #DDDDDD;
}
.c-inputTextarea > textarea::-ms-input-placeholder {
  color: #DDDDDD;
}
.c-inputTextarea > textarea::placeholder {
  color: #DDDDDD;
}
.c-inputTextarea > textarea .contents_box::-webkit-scrollbar {
  display: none;
}
.c-inputTextarea:has(textarea:disabled) > textarea {
  background-color: #EEEEEE;
}
.c-inputTextarea:has(textarea:-moz-read-only) > textarea {
  background-color: #EEEEEE;
}
.c-inputTextarea:has(textarea:read-only) > textarea {
  background-color: #EEEEEE;
}
.c-inputTextarea.--error > textarea {
  border: 1px solid #F04D62;
  background-color: #FFEFF1;
}
.c-inputTextarea--wide > textarea {
  min-height: none;
  max-height: none;
  height: 92px;
}

.c-inputPassword--sizeL {
  cursor: pointer;
  height: 56px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 1.92px;
}
.c-inputPassword--sizeL input {
  border: 1px solid #808785;
  border-radius: 6px;
  background-color: #fff;
  color: #222222;
  height: 100%;
  width: 100%;
  padding: 0px 62px 0px 16px;
}
.c-inputPassword--sizeL input::-webkit-input-placeholder {
  color: #CACACA;
}
.c-inputPassword--sizeL input::-moz-placeholder {
  color: #CACACA;
}
.c-inputPassword--sizeL input:-ms-input-placeholder {
  color: #CACACA;
}
.c-inputPassword--sizeL input::-ms-input-placeholder {
  color: #CACACA;
}
.c-inputPassword--sizeL input::placeholder {
  color: #CACACA;
}
.c-inputPassword--sizeL input:focus {
  border: 1px solid #6BBFB1;
  -webkit-box-shadow: 0px 0px 0px 1px #6BBFB1;
          box-shadow: 0px 0px 0px 1px #6BBFB1;
}
.c-inputPassword--sizeL input:disabled {
  border: 1px solid #999999;
  color: #CACACA;
  background-color: #EEEEEE;
  cursor: default;
}
.c-inputPassword--sizeL input:-moz-read-only {
  border: 1px solid #999999;
  color: #222222;
  background-color: #EEEEEE;
  cursor: default;
}
.c-inputPassword--sizeL input:read-only {
  border: 1px solid #999999;
  color: #222222;
  background-color: #EEEEEE;
  cursor: default;
}
.c-inputPassword--sizeL:has(input[type=password]) {
  position: relative;
}
.c-inputPassword--sizeL:has(input[type=password]) button {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 56px;
  height: 56px;
  cursor: pointer;
}
.c-inputPassword--sizeL:has(input[type=password]) button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(../img/icon-eyes-close.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.c-inputPassword--sizeL:has(input[type=text]) {
  position: relative;
}
.c-inputPassword--sizeL:has(input[type=text]) button {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 56px;
  height: 56px;
  cursor: pointer;
}
.c-inputPassword--sizeL:has(input[type=text]) button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(../img/icon-eyes-open.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.c-inputPassword--sizeL.--error > input {
  border: 1px solid #F04D62;
  color: #222222;
  background-color: #FFEFF1;
}

.c-topNav {
  position: absolute;
  height: 68px;
  width: calc(100% - 80px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-topNav__link {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  padding-top: 13.5px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 20.8px;
  letter-spacing: 1.68px;
  color: #fff;
  opacity: 0.7;
  background-color: transparent;
}
.c-topNav__link--select {
  opacity: 1;
  background-color: #6BBFB1;
  border-radius: 16px 16px 0px 0px;
}

.c-topNavPlus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  background-color: #50A192;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  border-radius: 16px 16px 0px 0px;
  margin-right: 2px;
}
.c-topNavPlus__wrapper {
  background-color: #fff;
  height: 68px;
  position: absolute;
  width: calc(100% - 80px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-topNavPlus__link {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  padding-top: 15.6px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 20.8px;
  letter-spacing: 1.68px;
  color: #fff;
  background-color: #50A192;
}
.c-topNavPlus__link--after::after {
  content: "";
  display: block;
  width: 30px;
  height: 100%;
  background-color: #50A192;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.c-topNavPlus__link--black {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  background-color: #616866;
  border-radius: 16px 16px 0px 0px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 24px;
  white-space: nowrap;
  height: 100%;
}
.c-topNavPlus__link--select {
  opacity: 1;
  background-color: #6BBFB1;
  border-radius: 16px 16px 0px 0px;
}
.c-topNavPlus__link--first {
  border-radius: 16px 0px 0px 0px;
}
.c-topNavPlus__link--last {
  border-radius: 0px 16px 0px 0px;
}
.c-topNavPlus__font--active {
  opacity: 1;
}
.c-topNavPlus__font--inactive {
  opacity: 0.7;
}

.c-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  height: 100%;
  position: relative;
}
.c-select select {
  width: 100%;
  height: 100%;
  cursor: pointer;
  border: 1px solid #808785;
  border-radius: 6px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 0 30px 0 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 1.12px;
}
.c-select__display {
  height: 100%;
  width: 100%;
  border: 1px solid #999999;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
  padding-inline: 12px 30px;
  border-radius: 6px;
}
.c-select__display::after {
  content: "";
  position: absolute;
  top: 50%;
  left: auto;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url(../img/icon-down-arrow.svg);
  pointer-events: none;
}
.c-select__display:focus {
  border: 2px solid #6BBFB1;
}
.c-select__display:focus::after {
  background-image: url(../img/icon-down-arrow-green.svg);
}
.c-select__img {
  height: 24px;
  width: 24px;
}

.c-label {
  width: 100%;
  height: 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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-label--beforeWork, .c-label--extract, .c-label--suspension, .c-label--fittingIn, .c-label--confirmed, .c-label--unconfirmed {
  width: 54px;
  height: 18px;
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.96px;
  color: #fff;
  background-image: url("../img/icon-before-work.svg");
}
.c-label--unconfirmed {
  background-image: url("../img/icon-unconfirmed.svg");
}
.c-label--confirmed {
  background-image: url("../img/icon-confirmed.svg");
}
.c-label--fittingIn {
  background-image: url("../img/icon-fittingIn.svg");
  background-size: cover;
}
.c-label--suspension {
  background-image: url("../img/icon-suspension.svg");
  background-size: cover;
}
.c-label--extract {
  background-image: url("../img/icon-extract.svg");
}
.c-label--required {
  background-color: #F04D62;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 12px;
  letter-spacing: 1px;
  text-align: center;
  width: 36px;
  height: 16px;
  padding: 2px 4px;
  border-radius: 2px;
}
.c-label--optional {
  background-color: #B3B9B7;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 12px;
  letter-spacing: 1px;
  text-align: center;
  width: 36px;
  height: 16px;
  padding: 2px 4px;
  border-radius: 2px;
}
.c-label--completed {
  padding: 2px 4px;
  border-radius: 3px;
  background-color: #6BBFB1;
  height: 19px;
  width: 20px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-label--completed > p {
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.c-label--unfinished {
  padding: 2px 4px;
  border-radius: 3px;
  background-color: #FF8718;
  height: 19px;
  width: 20px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-label--unfinished > p {
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.c-label--long {
  font-size: 10px;
  width: auto;
  padding: 0 3px;
}

.c-inputBody {
  border-top: 1px solid #EEEEEE;
  padding-top: 8px;
  background-color: #fff;
}
.c-inputBody--noTopPadding {
  padding-top: 0;
}
.c-inputBody--continuity {
  border-top: 1px solid #EEEEEE;
  padding: 24px 24px 32px 24px;
  background-color: #fff;
}
.c-inputBody__head {
  padding: 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
.c-inputBody__head:has(input) {
  background-color: #EDF1F0;
}
.c-inputBody__head:has(input:checked) {
  background-color: #fff;
}
.c-inputBody__head--continuity {
  padding-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
.c-inputBody__title, .c-inputBody__title--dark {
  color: #50A192;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.8px;
  letter-spacing: 1.6px;
}
.c-inputBody__title--dark {
  color: #222222;
}
.c-inputBody__title--withItem {
  color: #222222;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.2px;
  letter-spacing: 1.12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.c-inputBody__supplement {
  color: #CACACA;
  font-size: 12px;
  font-weight: 400;
  line-height: 20.8px;
  letter-spacing: 0.96px;
}

.c-list {
  height: 100%;
  width: auto;
  position: absolute;
}
.c-list > thead {
  white-space: nowrap;
}
.c-list > thead > tr > th {
  height: 100%;
  border-left: 1px solid #808785;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px;
  width: 88px;
}
.c-list > thead > tr > td {
  background-color: #fff;
  border-left: 1px solid rgba(45, 44, 42, 0.18);
  border-bottom: 1px solid #DDDDDD;
}
.c-list > tbody {
  height: 100%;
  background-color: #fff;
}
.c-list > tbody > tr > th {
  border-left: 1px solid rgba(34, 34, 34, 0.08);
  border-bottom: 1px solid rgba(34, 34, 34, 0.08);
  padding: 8px;
  width: 88px;
  text-align: left;
}
.c-list > tbody > tr > th:has(.c-list__item--month) {
  border-left: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.c-list > tbody > tr > td {
  background-color: #fff;
  border-left: 1px solid rgba(34, 34, 34, 0.08);
  border-bottom: 1px solid rgba(34, 34, 34, 0.08);
  width: 88px;
  padding: 8px 10px;
  text-align: right;
}
.c-list > tbody > tr > td > input {
  width: 100%;
  text-align: right;
  border-bottom: 1px dashed #999999;
}
.c-list--head > th:first-child {
  border-radius: 6px 0px 0px 0px;
  min-width: 0;
}
.c-list--head > th:last-child {
  border-radius: 0px 6px 0px 0px;
}
.c-list__item--titleLL {
  font-size: 16px;
  font-weight: 600;
  line-height: 20.8px;
  letter-spacing: 1.28px;
}
.c-list__item--titleL {
  font-size: 13px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 1.04px;
}
.c-list__item--titleL > span {
  color: #999999;
}
.c-list__item--titleM {
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.c-list__item--titleS {
  font-size: 10px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 0.8px;
}
.c-list__item--month {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  font-size: 26px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.52px;
}
.c-list__item--month > span {
  font-size: 12px;
  font-weight: 600;
  line-height: 15.6px;
  letter-spacing: 0.48px;
  color: #999999;
}
.c-list__data--top > th {
  height: 33px;
}
.c-list__data--top > td {
  height: 33px;
}
.c-list--baseColor > thead > .c-list--odd > th {
  color: #fff;
  background-color: #616866;
}
.c-list--baseColor > thead > .c-list--odd > th:nth-of-type(odd) {
  color: #fff;
  background-color: #6E7674;
}
.c-list--baseColor > thead > .c-list--even > th {
  color: #fff;
  background-color: #6E7674;
}
.c-list--baseColor > thead > .c-list--even > th:nth-of-type(odd) {
  color: #fff;
  background-color: #616866;
}
.c-list--baseColor > thead > .c-list--head > th:first-child {
  color: #fff;
  background-color: #616866;
}

.c-listCheck {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.c-listCheck__item {
  color: #222222;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  letter-spacing: 1.4px;
  padding-left: 16px;
  position: relative;
}
.c-listCheck__item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: #cacaca;
}

.c-bottomBtnSet {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
  padding: 0px 12px;
  height: 72px;
  width: calc(100% - 80px);
  background-color: #fff;
  border-radius: 16px 0px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(49, 55, 54, 0.08), 0px 2px 16px 0px rgba(49, 55, 54, 0.08);
          box-shadow: 0px 1px 4px 0px rgba(49, 55, 54, 0.08), 0px 2px 16px 0px rgba(49, 55, 54, 0.08);
}
.c-bottomBtnSet__wrapper {
  position: relative;
}
.c-bottomBtnSet__message--confirmation {
  width: 100%;
  padding: 0 12px;
  text-align: left;
  color: #222222;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.68px;
}

.c-tab__nav {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  background-color: #EDF1F0;
  height: 48px;
  border-radius: 16px 16px 0px 0px;
}
.c-tab__link, .c-tab__link--disabled, .c-tab__link--active {
  height: 48px;
  min-width: 112px;
  padding-inline: 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 16px 16px 0px 0px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20.8px;
  letter-spacing: 1.68px;
  background-color: transparent;
  color: #6E7674;
}
.c-tab__link--active {
  background-color: #50A192;
  color: #fff;
  cursor: default;
}
.c-tab__link--disabled {
  background-color: transparent;
  color: #D7DCDB;
  cursor: default;
}

.c-genericTextWithImg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 2px;
  word-break: break-all;
}
.c-genericTextWithImg > img {
  width: 18px;
  height: 18px;
}
.c-genericTextWithImg > span {
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.96px;
  color: #999999;
}
.c-genericTextWithImg__text--regular {
  font-size: 13px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 1.04px;
  white-space: wrap;
  color: #222222;
}
.c-genericTextWithImg__text--primary {
  font-size: 13px;
  font-weight: 700;
  line-height: 16.9px;
  letter-spacing: 1.04px;
  white-space: wrap;
  color: #222222;
}
.c-genericTextWithImg__text--low {
  font-size: 13px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 1.04px;
  white-space: wrap;
  color: #222222;
}
.c-genericUserL {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
  color: #999999;
}
.c-genericUserL::before {
  content: "";
  width: 24px;
  height: 24px;
  background-color: rgba(34, 34, 34, 0.04);
  border: 1px solid rgba(34, 34, 34, 0.04);
  border-radius: 12px;
}
.c-genericUserL--selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
  color: #222222;
}
.c-genericUserL--selected > img {
  width: 24px;
  height: 24px;
}
.c-genericUserM {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 0.96px;
  color: #999999;
}
.c-genericUserM::before {
  content: "";
  width: 24px;
  height: 24px;
  background-color: rgba(34, 34, 34, 0.04);
  border: 1px solid rgba(34, 34, 34, 0.04);
  border-radius: 12px;
}
.c-genericUserM--selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 0.96px;
  color: #222222;
}
.c-genericUserM--selected > img {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-genericUserS {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 0.96px;
  color: #999999;
}
.c-genericUserS::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: rgba(34, 34, 34, 0.04);
  border: 1px solid rgba(34, 34, 34, 0.04);
  border-radius: 9px;
}
.c-genericUserS--selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 0.96px;
  color: #222222;
}
.c-genericUserS--selected > img {
  width: 18px;
  height: 18px;
}
.c-genericDate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.c-genericDate > p {
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
  color: #222222;
}
.c-genericDate > span {
  font-size: 12px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 0.96px;
  color: #666;
}
.c-genericNumber {
  width: 100%;
  padding-top: 6px;
  border-top: 1px dashed #DDDDDD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
}
.c-genericNumber > dt > p {
  font-size: 13px;
  font-weight: 700;
  line-height: 16.9px;
  letter-spacing: 1.04px;
  color: #808785;
}
.c-genericNumber > dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.c-genericNumber > dd > p {
  font-size: 13px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 1.04px;
  color: #222222;
}
.c-genericNumber > dd > span {
  font-size: 13px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 1.04px;
  color: #808785;
}

.c-checkPanel {
  width: 100%;
  border-radius: 16px 0px 0px 0px;
  background-color: #50A192;
  padding-bottom: 72px;
}
.c-checkPanel--confirmation {
  background-color: #8D7764;
}
.c-checkPanel__title {
  padding: 16px 24px;
  word-break: break-all;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.8px;
  letter-spacing: 1.6px;
}
.c-checkPanel__annotation {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 20.8px;
  letter-spacing: 0.96px;
}
.c-checkPanel__img {
  width: 22px;
  height: 22px;
}
.c-checkPanel__inner, .c-checkPanel__inner--confirmation {
  width: auto;
  height: auto;
  background-color: #F8F8F8;
  border-radius: 8px;
  padding: 16px;
  margin-inline: 24px;
  margin-bottom: 32px;
}
.c-checkPanel__inner--confirmation {
  padding: 0px;
  background-color: #fff;
}
.c-checkPanel__textarea {
  width: auto;
  height: auto;
  margin-inline: 24px;
  margin-bottom: 32px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
}
.c-checkPanel__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
.c-checkPanel__unit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
}
.c-checkPanel__name {
  font-size: 14px;
  font-weight: 700;
  line-height: 18.2px;
  letter-spacing: 1.12px;
  color: #222222;
}
.c-checkPanel__content {
  min-height: 48px;
  min-width: 184px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}

.c-messagePanel--information, .c-messagePanel--success, .c-messagePanel--info, .c-messagePanel--attention {
  border: 2px solid #808785;
  border-radius: 8px;
  width: 100%;
  color: #222222;
}
.c-messagePanel--attention {
  border: 2px solid #F04D62;
  color: #F04D62;
}
.c-messagePanel--info {
  border: 2px solid #FF8718;
}
.c-messagePanel--success {
  border: 2px solid #50A192;
  color: #50A192;
}
.c-messagePanel__title--information, .c-messagePanel__title--success, .c-messagePanel__title--info, .c-messagePanel__title--attention {
  padding: 8px 16px;
  background-color: #808785;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 16.9px;
  letter-spacing: 1.04px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
}
.c-messagePanel__title--attention {
  background-color: #F04D62;
  color: #fff;
}
.c-messagePanel__title--info {
  background-color: #FF8718;
  color: #fff;
}
.c-messagePanel__title--success {
  background-color: #50A192;
  color: #fff;
}
.c-messagePanel__img {
  width: 18px;
  height: 18px;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-messagePanel__body {
  padding: 18px;
  background-color: #fff;
  border-radius: 0px 0px 8px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 12px;
}
.c-messagePanel__sentence {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.c-messagePanel__text {
  word-break: break-all;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  letter-spacing: 1.4px;
}
.c-messagePanel__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.c-messagePanel__item--information, .c-messagePanel__item--success, .c-messagePanel__item--info, .c-messagePanel__item--attention {
  word-break: break-all;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  letter-spacing: 1.4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
}
.c-messagePanel__item--information::before, .c-messagePanel__item--success::before, .c-messagePanel__item--info::before, .c-messagePanel__item--attention::before {
  content: "";
  background-image: url("../img/icon-mark_list.svg");
  width: 6px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-messagePanel__item--attention::before {
  background-image: url("../img/icon-mark_list_attention.svg");
}
.c-messagePanel__item--info::before {
  background-image: url("../img/icon-mark_list_info.svg");
}
.c-messagePanel__item--success::before {
  background-image: url("../img/icon-mark_list_success.svg");
}

.c-reference {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.c-reference__item, .c-reference__item--text, .c-reference__item--schedule, .c-reference__item--incoming, .c-reference__item--record {
  min-height: 65px;
  border: 1px solid #DDDDDD;
  background-color: #F8F8F8;
  padding: 12px 16px;
  border-radius: 6px;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
}
.c-reference__item--schedule, .c-reference__item--incoming, .c-reference__item--record {
  border: 1px solid #E0CCFA;
  background-color: #F5EFFC;
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  position: relative;
}
.c-reference__item--schedule::before, .c-reference__item--incoming::before, .c-reference__item--record::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 12px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -1.5px);
          transform: translate(-50%, -1.5px);
  background-color: #F5EFFC;
  z-index: 2;
}
.c-reference__item--schedule::after, .c-reference__item--incoming::after, .c-reference__item--record::after {
  content: "";
  content: "";
  position: absolute;
  width: 15px;
  height: 12px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0px);
          transform: translate(-50%, 0px);
  background-color: #E0CCFA;
  z-index: 1;
}
.c-reference__item--record {
  border: 1px solid #C8E4F3;
  background-color: #E5F6FF;
}
.c-reference__item--record::before {
  background-color: #E5F6FF;
}
.c-reference__item--record::after {
  background-color: #C8E4F3;
}
.c-reference__item--incoming {
  border: 1px solid #A6DFD5;
  background-color: #E5FBF7;
}
.c-reference__item--incoming::before {
  background-color: #E5FBF7;
}
.c-reference__item--incoming::after {
  background-color: #A6DFD5;
}
.c-reference__item--text {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
  border: 1px solid #C8E4F3;
  padding: 8px 16px;
  min-height: 0;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  position: relative;
}
.c-reference__item--text::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 12px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -1.5px);
          transform: translate(-50%, -1.5px);
  background-color: #fff;
  z-index: 2;
}
.c-reference__item--text::after {
  content: "";
  content: "";
  position: absolute;
  width: 15px;
  height: 12px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0px);
          transform: translate(-50%, 0px);
  background-color: #C8E4F3;
  z-index: 1;
}
.c-reference__name {
  font-size: 12px;
  font-weight: 700;
  line-height: 15.6px;
  letter-spacing: 0.96px;
  color: #6E7674;
}
.c-reference__name--schedule {
  font-size: 12px;
  font-weight: 700;
  line-height: 15.6px;
  letter-spacing: 0.96px;
  color: #8E55D6;
}
.c-reference__name--record {
  font-size: 12px;
  font-weight: 700;
  line-height: 15.6px;
  letter-spacing: 0.96px;
  color: #00669C;
}
.c-reference__name--incoming {
  font-size: 12px;
  font-weight: 700;
  line-height: 15.6px;
  letter-spacing: 0.96px;
  color: #50A192;
}
.c-reference__content {
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
  color: #222222;
}
.c-reference__content span {
  color: #999999;
}
.c-reference__text--normal {
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
  color: #222222;
}
.c-reference__text--blue {
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
  color: #00669C;
}

.c-selectBox--normal {
  min-width: 100%;
  height: 48px;
  position: relative;
}
.c-selectBox--normal::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  pointer-events: none;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../img/icon-angle.svg");
  width: 12px;
  height: 12px;
}
.c-selectBox--normal:has(select:focus)::after {
  background-image: url("../img/icon-angle-green.svg");
}
.c-selectBox--normal:has(.--readonly) > select {
  color: #222222;
}
.c-selectBox--normal:has(.--readonly)::after {
  display: none;
}
.c-selectBox--table {
  min-width: 100%;
  height: 100%;
  position: relative;
}
.c-selectBox--table::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  pointer-events: none;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../img/icon-angle.svg");
  width: 12px;
  height: 12px;
}
.c-selectBox--table:has(select:focus)::after {
  background-image: url("../img/icon-angle-green.svg");
}
.c-selectBox--table:has(.--readonly)::after {
  display: none;
}
.c-selectBox--table select.--readonly {
  border: none;
  cursor: default;
  background-color: inherit;
}
.c-selectBox__wrapper--table {
  padding: 8px 10px;
  width: 100%;
  height: 100%;
}
.c-selectBox__wrapper--table:has(select:focus) {
  background-color: #E5FBF7;
}
.c-selectBox__wrapper--table:has(.--error) {
  background-color: #FFEFF1;
}
.c-selectBox__inner--normal {
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
  padding: 0px 30px 0px 12px;
  border: 1px solid #999999;
  border-radius: 6px;
  background-color: #fff;
}
.c-selectBox__inner--normal.--error {
  border: 1px solid #F04D62;
  background-color: #FFEFF1;
}
.c-selectBox__inner--normal:focus {
  border: 1px solid #6BBFB1;
  -webkit-box-shadow: 0px 0px 0px 1px #6BBFB1;
          box-shadow: 0px 0px 0px 1px #6BBFB1;
}
.c-selectBox__inner--normal:disabled {
  background-color: #EEEEEE;
  color: #222222;
}
.c-selectBox__inner--normal.--readonly {
  border: none;
  cursor: default;
  background-color: #F8F8F8;
  opacity: 1;
}
.c-checkPanel__inner .c-selectBox__inner--normal.--readonly {
  background-color: #fff;
}

.c-selectBox__inner--table, .c-selectBox__inner--tableWithImg {
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
  padding: 0px 30px 0px 12px;
  border-bottom: 1px dotted #999999;
  background-color: inherit;
}
.c-selectBox__inner--table.--error, .--error.c-selectBox__inner--tableWithImg {
  background-color: #FFEFF1;
}
.c-selectBox__inner--table:focus, .c-selectBox__inner--tableWithImg:focus {
  background-color: #E5FBF7;
}
.c-selectBox__inner--table:disabled, .c-selectBox__inner--tableWithImg:disabled {
  background-color: #EEEEEE;
  color: #222222;
}
.c-selectBox__inner--table.--readonly, .--readonly.c-selectBox__inner--tableWithImg {
  background-color: inherit;
  opacity: 1;
}
.c-selectBox__inner--tableWithImg {
  padding: 0px 30px 0px 30px;
}
.c-selectBox__icon--table {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-scrollTable__wrapper--withBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  border-top: 1px solid #CACACA;
}
.c-scrollTable__wrapper--withIndex {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  padding-bottom: 20px;
}
.c-scrollTable__wrapper--content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.c-scrollTable__wrapper--content::-webkit-scrollbar {
  display: none;
}
.c-scrollTable__container {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.c-scrollTable__container.js-isScrolled .c-scrollTable__firstUnit a, .c-scrollTable__container.js-isScrolled .c-scrollTable__firstUnit button, .c-scrollTable__container.js-isScrolled .c-scrollTable__firstUnit input, .c-scrollTable__container.js-isScrolled .c-scrollTable__firstUnit label {
  pointer-events: none;
}
.c-scrollTable__firstUnit {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: calc(100% - 80px);
  scroll-snap-align: start;
  position: relative;
}
.c-scrollTable__firstUnit::before {
  content: "";
  position: absolute;
  top: 0;
  right: 1px;
  width: 16px;
  height: 100%;
  border-radius: 0px 16px 16px 0px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: inherit;
}
.c-scrollTable__secondUnit {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 368px;
  scroll-snap-align: end;
}
.c-scrollTable__thirdUnit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: calc(100% - 80px);
  scroll-snap-align: start;
  position: relative;
}
.c-scrollTable__thirdUnit::before {
  content: "";
  position: absolute;
  top: 0;
  right: 1px;
  width: 16px;
  height: 100%;
  border-radius: 0px 16px 16px 0px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: inherit;
}
.c-scrollTable__fourthUnit {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 368px;
  scroll-snap-align: end;
  padding-right: 40px;
}
.c-scrollTable__head--first {
  width: 100%;
  padding: 24px 3px 24px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
.c-scrollTable__head--second {
  width: 100%;
  padding: 24px 16px 24px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
.c-scrollTable__head--third {
  width: 100%;
  padding: 20px 3px 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
.c-scrollTable__head--fourth {
  width: 100%;
  padding: 20px 3px 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
.c-scrollTable__head--top {
  height: 72px;
  width: 100%;
  background-color: #EDF1F0;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
.c-scrollTable__head--bottom {
  height: 72px;
  width: 100%;
  background-color: #EDF1F0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
  border-top: 1px solid #CACACA;
}
.c-scrollTable__button--delete {
  display: block;
  background-color: rgba(34, 34, 34, 0.04);
  width: 40px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.c-scrollTable__button--delete:hover {
  opacity: 0.7;
}
.c-scrollTable__button--delete > input {
  display: none;
  width: 100%;
  height: 100%;
}
.c-scrollTable__deleteIcon {
  position: absolute;
  width: 17.8px;
  height: 17.8px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-scrollTable__indexWrapper {
  width: 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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.c-scrollTable__index {
  color: #808785;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.28px;
}

.c-changeLabel__changeLink {
  position: relative;
}
.c-changeLabel__changeBtn {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
}
.c-changeLabel__changeBtn::after {
  content: "▼";
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  width: 12px;
  height: 12px;
}
.c-changeLabel__changeBtn.is-opened::after {
  content: "▲";
}

.c-toast {
  position: fixed;
  top: auto;
  left: 50%;
  bottom: -100px;
  border-radius: 8px;
  width: 80dvw;
  background-color: rgba(80, 161, 146, 0.9);
  z-index: 35;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(49, 55, 54, 0.08), 0px 2px 16px 0px rgba(49, 55, 54, 0.08);
          box-shadow: 0px 1px 4px 0px rgba(49, 55, 54, 0.08), 0px 2px 16px 0px rgba(49, 55, 54, 0.08);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
.c-toast--error {
  background-color: #F04D62;
}
.c-toast__message {
  padding: 8px 14px;
}
.c-toast__text {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.92px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.c-toast__text::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-image: url("../img/symbol-check.svg");
}
.c-toast__delete {
  width: 48px;
  height: 56px;
  cursor: pointer;
}
.c-toast__delete > img {
  width: 17.7px;
  height: 17.7px;
}

.c-loading {
  width: 100%;
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #F8F8F8;
  border-radius: 8px;
}
.c-loading__body {
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  width: 100%;
  height: 160px;
  padding: 16px 24px;
}
.c-loading__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.22px;
  color: #CACACA;
}
.c-loading__icon {
  width: 48px;
  height: 48px;
  -webkit-animation-name: "loading";
          animation-name: "loading";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.c-confirmation {
  width: 100%;
  background-color: #fff;
  border: 1px solid #CACACA;
  border-radius: 4px;
  overflow: hidden;
}
.c-confirmation__head {
  background-color: #EEEEEE;
  padding: 6px 16px;
  border-bottom: 1px solid #CACACA;
}
.c-confirmation__title {
  color: #999999;
  font-size: 0.75rem;
  line-height: 1.333;
}
.c-confirmation__body {
  padding: 12px 16px;
}
.c-confirmation__target {
  font-weight: 700;
  line-height: 1.625;
  color: #222222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
.c-confirmation__main {
  margin-top: 6px;
}
.c-confirmation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #666;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  line-height: 1.643;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2px;
}
.c-confirmation__list:first-child {
  margin-top: 0;
}
.c-confirmation__term {
  font-size: 0.75rem;
  margin: 0;
}
.c-confirmation__term::after {
  content: "：";
  display: inline-block;
}
.c-confirmation__description {
  font-size: 0.875rem;
  color: #222222;
  margin: 0;
}
.c-confirmation__description--serial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 10px;
}

.p-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  padding: 0 20px 0 22px;
  width: 100%;
  position: relative;
}
.p-header__datetime {
  color: #808785;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-header__datetime time {
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.6px;
}
.p-header__nav {
  position: relative;
}
.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 26px;
}
.p-header__item a, .p-header__item button {
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-header__item a:hover, .p-header__item button:hover {
  opacity: 0.7;
}

.p-globalNav {
  height: 100%;
  padding: 0 4px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-globalNav__list {
  padding: 12px 0 13px;
}
.p-globalNav__list:not(:last-child) {
  position: relative;
}
.p-globalNav__list:not(:last-child)::before {
  content: "";
  display: block;
  width: calc(100% - 4px);
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background-color: #D7DCDB;
}
.p-globalNav__list:last-child {
  padding-bottom: 55px;
}
.p-globalNav__item {
  border-radius: 0 6px 6px 0;
}
.p-globalNav__item a {
  width: 100%;
  padding: 14px 0 14px 4px;
  color: #494E4D;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.72px;
}
.p-globalNav__item span {
  width: 100%;
  height: 100px;
  padding: 26px 0;
  color: #50A192;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.72px;
}
.p-globalNav__item[data-nav=master].measure a {
  background: rgba(185, 183, 179, 0.3);
}
.p-globalNav__coloring[data-color] a, [data-color].p-globalNav__coloring--first a {
  position: relative;
}
.p-globalNav__coloring[data-color] a::after, [data-color].p-globalNav__coloring--first a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}
.p-globalNav__coloring[data-color].is-prev, [data-color].is-prev.p-globalNav__coloring--first {
  position: relative;
}
.p-globalNav__coloring[data-color].is-prev::before, [data-color].is-prev.p-globalNav__coloring--first::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #F8F8F8;
  position: absolute;
  bottom: 0;
  left: 4px;
  z-index: 1;
}
.p-globalNav__coloring[data-color].is-prev::after, [data-color].is-prev.p-globalNav__coloring--first::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #F8F8F8;
  position: absolute;
  bottom: 0;
  left: 4px;
  border-radius: 0 0 0 100%;
  z-index: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-globalNav__coloring[data-color].is-active a, [data-color].is-active.p-globalNav__coloring--first a {
  color: #fff;
}
.p-globalNav__coloring[data-color].is-next, [data-color].is-next.p-globalNav__coloring--first {
  position: relative;
}
.p-globalNav__coloring[data-color].is-next::before, [data-color].is-next.p-globalNav__coloring--first::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #F8F8F8;
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 1;
}
.p-globalNav__coloring[data-color].is-next::after, [data-color].is-next.p-globalNav__coloring--first::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #F8F8F8;
  position: absolute;
  top: 0;
  left: 4px;
  border-radius: 100% 0 0 0;
  z-index: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-globalNav__coloring[data-color="#50A192"] span::after, [data-color="#50A192"].p-globalNav__coloring--first span::after, .p-globalNav__coloring[data-color="#50A192"] a::after, [data-color="#50A192"].p-globalNav__coloring--first a::after {
  background-color: #50A192;
}
.p-globalNav__coloring[data-color="#50A192"] a::before, [data-color="#50A192"].p-globalNav__coloring--first a::before {
  background-color: #50A192;
}
.p-globalNav__coloring[data-color="#50A192"].is-prev, [data-color="#50A192"].is-prev.p-globalNav__coloring--first {
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-globalNav__coloring[data-color="#50A192"].is-prev::before, [data-color="#50A192"].is-prev.p-globalNav__coloring--first::before {
  background-color: #50A192;
}
.p-globalNav__coloring[data-color="#50A192"].is-prev:hover::after, [data-color="#50A192"].is-prev.p-globalNav__coloring--first:hover::after {
  background-color: #E5FBF7;
}
.p-globalNav__coloring[data-color="#50A192"].is-active, [data-color="#50A192"].is-active.p-globalNav__coloring--first {
  background-color: #50A192;
}
.p-globalNav__coloring[data-color="#50A192"].is-next, [data-color="#50A192"].is-next.p-globalNav__coloring--first {
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-globalNav__coloring[data-color="#50A192"].is-next::before, [data-color="#50A192"].is-next.p-globalNav__coloring--first::before {
  background-color: #50A192;
}
.p-globalNav__coloring[data-color="#50A192"].is-next:hover::after, [data-color="#50A192"].is-next.p-globalNav__coloring--first:hover::after {
  background-color: #E5FBF7;
}
.p-globalNav__coloring[data-hover_color="#E5FBF7"]:not(.is-active) a, [data-hover_color="#E5FBF7"].p-globalNav__coloring--first:not(.is-active) a {
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-globalNav__coloring[data-hover_color="#E5FBF7"]:not(.is-active) a:hover, [data-hover_color="#E5FBF7"].p-globalNav__coloring--first:not(.is-active) a:hover {
  background-color: #E5FBF7;
}
.p-globalNav__coloring[data-color="#518FE0"] span::after, [data-color="#518FE0"].p-globalNav__coloring--first span::after, .p-globalNav__coloring[data-color="#518FE0"] a::after, [data-color="#518FE0"].p-globalNav__coloring--first a::after {
  background-color: #518FE0;
}
.p-globalNav__coloring[data-color="#518FE0"] a::before, [data-color="#518FE0"].p-globalNav__coloring--first a::before {
  background-color: #518FE0;
}
.p-globalNav__coloring[data-color="#518FE0"].is-prev, [data-color="#518FE0"].is-prev.p-globalNav__coloring--first {
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-globalNav__coloring[data-color="#518FE0"].is-prev::before, [data-color="#518FE0"].is-prev.p-globalNav__coloring--first::before {
  background-color: #518FE0;
}
.p-globalNav__coloring[data-color="#518FE0"].is-prev:hover::after, [data-color="#518FE0"].is-prev.p-globalNav__coloring--first:hover::after {
  background-color: #E8F2FF;
}
.p-globalNav__coloring[data-color="#518FE0"].is-active, [data-color="#518FE0"].is-active.p-globalNav__coloring--first {
  background-color: #518FE0;
}
.p-globalNav__coloring[data-color="#518FE0"].is-next, [data-color="#518FE0"].is-next.p-globalNav__coloring--first {
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-globalNav__coloring[data-color="#518FE0"].is-next::before, [data-color="#518FE0"].is-next.p-globalNav__coloring--first::before {
  background-color: #518FE0;
}
.p-globalNav__coloring[data-color="#518FE0"].is-next:hover, [data-color="#518FE0"].is-next.p-globalNav__coloring--first:hover {
  background-color: #E8F2FF;
}
.p-globalNav__coloring[data-color="#518FE0"].is-next:hover::after, [data-color="#518FE0"].is-next.p-globalNav__coloring--first:hover::after {
  background-color: #E8F2FF;
}
.p-globalNav__coloring[data-hover_color="#E8F2FF"]:not(.is-active) a, [data-hover_color="#E8F2FF"].p-globalNav__coloring--first:not(.is-active) a {
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-globalNav__coloring[data-hover_color="#E8F2FF"]:not(.is-active) a:hover, [data-hover_color="#E8F2FF"].p-globalNav__coloring--first:not(.is-active) a:hover {
  background-color: #E8F2FF;
}
.p-globalNav__coloring[data-color="#AB6DDB"] span::after, [data-color="#AB6DDB"].p-globalNav__coloring--first span::after, .p-globalNav__coloring[data-color="#AB6DDB"] a::after, [data-color="#AB6DDB"].p-globalNav__coloring--first a::after {
  background-color: #AB6DDB;
}
.p-globalNav__coloring[data-color="#AB6DDB"] a::before, [data-color="#AB6DDB"].p-globalNav__coloring--first a::before {
  background-color: #AB6DDB;
}
.p-globalNav__coloring[data-color="#AB6DDB"].is-prev, [data-color="#AB6DDB"].is-prev.p-globalNav__coloring--first {
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-globalNav__coloring[data-color="#AB6DDB"].is-prev::before, [data-color="#AB6DDB"].is-prev.p-globalNav__coloring--first::before {
  background-color: #AB6DDB;
}
.p-globalNav__coloring[data-color="#AB6DDB"].is-prev:hover::after, [data-color="#AB6DDB"].is-prev.p-globalNav__coloring--first:hover::after {
  background-color: #F8EEFF;
}
.p-globalNav__coloring[data-color="#AB6DDB"].is-active, [data-color="#AB6DDB"].is-active.p-globalNav__coloring--first {
  background-color: #AB6DDB;
}
.p-globalNav__coloring[data-color="#AB6DDB"].is-next, [data-color="#AB6DDB"].is-next.p-globalNav__coloring--first {
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-globalNav__coloring[data-color="#AB6DDB"].is-next::before, [data-color="#AB6DDB"].is-next.p-globalNav__coloring--first::before {
  background-color: #AB6DDB;
}
.p-globalNav__coloring[data-color="#AB6DDB"].is-next:hover, [data-color="#AB6DDB"].is-next.p-globalNav__coloring--first:hover {
  background-color: #F8EEFF;
}
.p-globalNav__coloring[data-hover_color="#F8EEFF"]:not(.is-active) a, [data-hover_color="#F8EEFF"].p-globalNav__coloring--first:not(.is-active) a {
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-globalNav__coloring[data-hover_color="#F8EEFF"]:not(.is-active) a:hover, [data-hover_color="#F8EEFF"].p-globalNav__coloring--first:not(.is-active) a:hover {
  background-color: #F8EEFF;
}
.p-globalNav__coloring[data-color="#E87661"] span::after, [data-color="#E87661"].p-globalNav__coloring--first span::after, .p-globalNav__coloring[data-color="#E87661"] a::after, [data-color="#E87661"].p-globalNav__coloring--first a::after {
  background-color: #E87661;
}
.p-globalNav__coloring[data-color="#E87661"] a::before, [data-color="#E87661"].p-globalNav__coloring--first a::before {
  background-color: #E87661;
}
.p-globalNav__coloring[data-color="#E87661"].is-prev, [data-color="#E87661"].is-prev.p-globalNav__coloring--first {
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-globalNav__coloring[data-color="#E87661"].is-prev::before, [data-color="#E87661"].is-prev.p-globalNav__coloring--first::before {
  background-color: #E87661;
}
.p-globalNav__coloring[data-color="#E87661"].is-prev:hover::after, [data-color="#E87661"].is-prev.p-globalNav__coloring--first:hover::after {
  background-color: #FFEFEC;
}
.p-globalNav__coloring[data-color="#E87661"].is-active, [data-color="#E87661"].is-active.p-globalNav__coloring--first {
  background-color: #E87661;
}
.p-globalNav__coloring[data-color="#E87661"].is-next, [data-color="#E87661"].is-next.p-globalNav__coloring--first {
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-globalNav__coloring[data-color="#E87661"].is-next::before, [data-color="#E87661"].is-next.p-globalNav__coloring--first::before {
  background-color: #E87661;
}
.p-globalNav__coloring[data-color="#E87661"].is-next:hover::after, [data-color="#E87661"].is-next.p-globalNav__coloring--first:hover::after {
  background-color: #FFEFEC;
}
.p-globalNav__coloring[data-hover_color="#FFEFEC"]:not(.is-active) a, [data-hover_color="#FFEFEC"].p-globalNav__coloring--first:not(.is-active) a {
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-globalNav__coloring[data-hover_color="#FFEFEC"]:not(.is-active) a:hover, [data-hover_color="#FFEFEC"].p-globalNav__coloring--first:not(.is-active) a:hover {
  background-color: #FFEFEC;
}
.p-globalNav__coloring[data-color="#F0A314"] span::after, [data-color="#F0A314"].p-globalNav__coloring--first span::after, .p-globalNav__coloring[data-color="#F0A314"] a::after, [data-color="#F0A314"].p-globalNav__coloring--first a::after {
  background-color: #F0A314;
}
.p-globalNav__coloring[data-color="#F0A314"] a::before, [data-color="#F0A314"].p-globalNav__coloring--first a::before {
  background-color: #F0A314;
}
.p-globalNav__coloring[data-color="#F0A314"].is-prev, [data-color="#F0A314"].is-prev.p-globalNav__coloring--first {
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-globalNav__coloring[data-color="#F0A314"].is-prev::before, [data-color="#F0A314"].is-prev.p-globalNav__coloring--first::before {
  background-color: #F0A314;
}
.p-globalNav__coloring[data-color="#F0A314"].is-prev:hover::after, [data-color="#F0A314"].is-prev.p-globalNav__coloring--first:hover::after {
  background-color: #FFF1D8;
}
.p-globalNav__coloring[data-color="#F0A314"].is-active, [data-color="#F0A314"].is-active.p-globalNav__coloring--first {
  background-color: #F0A314;
}
.p-globalNav__coloring[data-color="#F0A314"].is-next, [data-color="#F0A314"].is-next.p-globalNav__coloring--first {
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-globalNav__coloring[data-color="#F0A314"].is-next::before, [data-color="#F0A314"].is-next.p-globalNav__coloring--first::before {
  background-color: #F0A314;
}
.p-globalNav__coloring[data-color="#F0A314"].is-next:hover::after, [data-color="#F0A314"].is-next.p-globalNav__coloring--first:hover::after {
  background-color: #FFF1D8;
}
.p-globalNav__coloring[data-hover_color="#FFF1D8"]:not(.is-active) a, [data-hover_color="#FFF1D8"].p-globalNav__coloring--first:not(.is-active) a {
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-globalNav__coloring[data-hover_color="#FFF1D8"]:not(.is-active) a:hover, [data-hover_color="#FFF1D8"].p-globalNav__coloring--first:not(.is-active) a:hover {
  background-color: #FFF1D8;
}
.p-globalNav__coloring--first a::after, .p-globalNav__coloring:first-of-type a::after, .p-globalNav__coloring--first:first-of-type a::after {
  border-radius: 0 999px 0 0;
}
.p-globalNav__coloring:last-child a::after, .p-globalNav__coloring--first:last-child a::after {
  border-radius: 0 0 999px 0;
}
.p-globalNav__coloring:first-child:last-child a::after, .p-globalNav__coloring--first:first-child:last-child a::after {
  border-radius: 0 999px 999px 0;
}
.p-globalNav__icon {
  width: 30px;
  height: 30px;
}

.p-sidebar {
  position: relative;
  z-index: 10;
  border-radius: 20px 0px 0px 0px;
  height: calc(100dvh - 52px);
  overflow: auto;
  scrollbar-width: none;
}
.p-sidebar::-webkit-scrollbar {
  display: none;
}
.p-sidebar__head {
  padding: 0 20px;
  background-color: #F8F8F8;
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  position: sticky;
  top: 0;
  z-index: 10;
}
.p-sidebar__head h1, .p-sidebar__head h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 18px;
}
.p-sidebar__head h1 span, .p-sidebar__head h2 span {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
}
.p-sidebar__head hgroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
}
.p-sidebar__head hgroup p {
  color: #DDDDDD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
  font-size: 10px;
  font-weight: 400;
  line-height: 10px;
  letter-spacing: 0.8px;
}
.p-sidebar__head hgroup p::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #DDDDDD;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-sidebar__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 20px;
  margin: 10px 0;
}
.p-sidebar__group h2 {
  padding: 14px 20px;
  color: #222222;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
}
.p-sidebar__item {
  padding: 4px;
}
.p-sidebar__item a {
  display: block;
  padding: 10px 16px;
  color: #444444;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.84px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
  -webkit-transition: background-color 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: background-color 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-sidebar__item.current a {
  background-color: #fff;
}
.p-sidebar__item[data-nav=ingredients].ingredients-list a {
  background: #fff;
}
.p-sidebar__item[data-nav=allergy-type].allergy-type-list a {
  background: #fff;
}
.p-sidebar__item[data-nav=facility].facility-list a {
  background: #fff;
}
.p-sidebar__item[data-nav=ledger-remarks].ledger-remarks-list a {
  background: #fff;
}
.p-sidebar__item[data-nav=class].class-list a {
  background: #fff;
}
.p-sidebar__item[data-nav=menu].menu-list a {
  background: #fff;
}
.p-sidebar__item[data-nav=allergy-target].allergy-target-list a {
  background: #fff;
}
.p-sidebar__item[data-nav=allergy-ingredients].allergy-ingredients-list a {
  background: #fff;
}
.p-sidebar__item[data-nav=dish].dish-list a {
  background: #fff;
}
.p-sidebar__item[data-nav=allergy-type] a::after, .p-sidebar__item[data-nav=class] a::after, .p-sidebar__item[data-nav=allergy-ingredients] a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #DDDDDD;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-sidebar__item:hover a {
  background-color: rgba(185, 183, 179, 0.3);
}

.p-main, .p-main--plusNav, .p-main--list {
  border-radius: 20px 0px 0px 0px;
  height: calc(100dvh - 52px);
  margin-top: 52px;
  padding-bottom: 72px;
  overflow-y: scroll;
  overflow-x: auto;
  position: absolute;
  width: calc(100% - 80px);
  position: absolute;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(49, 55, 54, 0.08), 0px 2px 16px 0px rgba(49, 55, 54, 0.08);
          box-shadow: 0px 1px 4px 0px rgba(49, 55, 54, 0.08), 0px 2px 16px 0px rgba(49, 55, 54, 0.08);
  z-index: 20;
}
.p-main::-webkit-scrollbar, .p-main--plusNav::-webkit-scrollbar, .p-main--list::-webkit-scrollbar {
  display: none;
}
.p-main--withCheckPanel {
  border-radius: 20px 0px 0px 0px;
  height: calc(100dvh - 52px);
  margin-top: 52px;
  overflow-y: scroll;
  overflow-x: auto;
  position: absolute;
  width: calc(100% - 80px);
  position: absolute;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background-color: #fff;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(49, 55, 54, 0.08), 0px 2px 16px 0px rgba(49, 55, 54, 0.08);
          box-shadow: 0px 1px 4px 0px rgba(49, 55, 54, 0.08), 0px 2px 16px 0px rgba(49, 55, 54, 0.08);
  z-index: 20;
}
.p-main--withCheckPanel::-webkit-scrollbar {
  display: none;
}
.p-main--list {
  padding-bottom: 0px;
}
.p-main__head {
  padding: 0 12px 0 24px;
  border-radius: 20px 0px 0px 0px;
  background-color: #fff;
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  position: sticky;
  top: 0;
  z-index: 10;
  left: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-main__head h1, .p-main__head h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 18px;
}
.p-main__head h1 span, .p-main__head h2 span {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
}
.p-main__head span {
  color: #9FA4A4;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.96px;
}
.p-main__head--border {
  border-bottom: 1px solid #DDDDDD;
}
.p-main__headInner {
  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;
}
.p-main__headWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
.p-main__headSubTitle {
  color: #CACACA;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  letter-spacing: 1.12px;
}
.p-main__tab {
  border-bottom: 1px solid #EEEEEE;
  position: sticky;
  background-color: #fff;
  top: 72px;
  left: 0;
  z-index: 1;
  padding: 0px 24px;
  color: #222222;
  padding-bottom: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 20px;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-main__switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.p-main__switch label {
  color: #222222;
  height: 100%;
  padding: 0px 16px;
  border-radius: 4px;
  height: 40px;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  letter-spacing: 1.28px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-main__switch label:hover {
  background: #F8F8F8;
  opacity: 0.7;
}
.p-main__switch label:has(input[type=radio]:checked) {
  background: #EEEEEE;
}
.p-main__switch label input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.p-main__body, .p-main__body--order, .p-main__body--bottomThick, .p-main__body--errorMessage, .p-main__body--confirmation, .p-main__body--inputLast, .p-main__body--input {
  background-color: #fff;
  padding: 8px 16px;
  min-height: calc(100% - 72px);
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-main__body--input {
  min-height: auto;
  padding: 24px 24px 32px 24px;
}
.p-main__body--footMenu {
  min-height: calc(100% - 72px - 250px);
  padding: 24px 24px 32px 24px;
}
.p-main__body--inputLast {
  min-height: auto;
  padding: 0px 24px 32px 24px;
}
.p-main__body--confirmation {
  min-height: auto;
  padding: 24px;
}
.p-main__body--errorMessage {
  min-height: auto;
  padding: 24px 24px 0px 24px;
}
.p-main__body--bottomThick {
  padding: 24px 24px 104px 24px;
}
.p-main__body--order {
  min-height: auto;
  padding: 24px 24px 32px 24px;
  background-color: #EDF1F0;
}
.p-main--nav {
  background-color: #fff;
  height: calc(100dvh - 52px);
  margin-top: 52px;
  padding-bottom: 72px;
  overflow-y: scroll;
  overflow-x: auto;
  width: 100%;
  border-radius: 16px 16px 0px 0px;
  background-color: #50A192;
  overflow: hidden;
}
.p-main--plusNav {
  height: calc(100dvh - 104px);
  margin-top: 52px;
  padding-bottom: 0px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(49, 55, 54, 0.08), 0px 2px 16px 0px rgba(49, 55, 54, 0.08);
          box-shadow: 0px 1px 4px 0px rgba(49, 55, 54, 0.08), 0px 2px 16px 0px rgba(49, 55, 54, 0.08);
  z-index: 20;
  width: calc(100% - 80px);
  position: absolute;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-main--plusNav::-webkit-scrollbar {
  display: none;
}
.p-main__btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
.p-main__btnWrap--column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.p-main__labelOnlyWrap {
  padding: 0px 12px;
}

.p-contents {
  width: 100%;
}
.p-contents--columnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  padding-top: 8px;
}
.p-contents--box {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-contents--box + .p-contents--box {
  margin-top: 12px;
}
.p-contents + .p-contents--box {
  margin-top: 12px;
}
.p-contents--box + .p-contents {
  margin-top: 12px;
}
.p-contents--col2 {
  display: grid;
  grid-template-columns: 258px 1fr;
  position: relative;
  gap: 24px;
}
.p-contents--noData {
  width: 100%;
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
}
.p-contents--group {
  margin-top: 10px;
}
.p-contents__side {
  background: #F8F8F8;
  padding: 10px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
}
.p-contents__side h3 {
  padding: 0 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 0.84px;
  color: #222222;
}
.p-contents__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
  width: 100%;
}
.p-contents__main hgroup {
  width: 100%;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-contents__main h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 20.8px;
  letter-spacing: 1.6px;
  color: #222222;
}
.p-contents__main--noData {
  width: 100%;
  height: 160px;
  background-color: #F8F8F8;
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  color: #00669C;
  font-size: 13px;
  font-weight: 400;
  line-height: 20.8px;
  letter-spacing: 1.04px;
  border-radius: 8px;
}
.p-contents__list {
  width: 100%;
  height: 100%;
  max-height: 800px;
  overflow-y: auto;
}
.p-contents__list li {
  padding: 4px;
}
.p-contents__list li a {
  color: #222222;
  height: 32px;
  padding: 8px 10px 8px 16px;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 0.84px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-contents__list li a:hover {
  background-color: #EEEEEE;
  opacity: 0.7;
}
.p-contents__list li.current a {
  color: #fff;
  background-color: #222222;
}

.p-pageTop {
  position: fixed;
  right: 25px;
  bottom: 10px;
  display: none;
}
.p-pageTop 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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(45, 44, 42, 0.7);
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-pageTop a::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  -webkit-transform: translateY(2px) rotate(45deg);
          transform: translateY(2px) rotate(45deg);
}
.p-pageTop a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.p-login {
  padding: 80px 0 100px;
  background-color: #fff;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
.p-login__head {
  width: 420px;
  margin: auto;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  height: 60px;
  padding-top: 30px;
}
.p-login__head h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.p-login__body {
  width: 420px;
  margin: auto;
  padding: 20px 20px 30px;
  margin-top: 30px;
  border-radius: 10px;
  border: 1px solid #F8F8F8;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(45, 44, 42, 0.09), 0px 4px 20px 0px rgba(45, 44, 42, 0.18);
          box-shadow: 0px 2px 8px 0px rgba(45, 44, 42, 0.09), 0px 4px 20px 0px rgba(45, 44, 42, 0.18);
  background-color: #fff;
}
.p-login__reminder {
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 1.04px;
  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: 6px;
}
.p-login__reminder a {
  text-decoration: underline;
  color: #222222;
  font-size: 13px;
  letter-spacing: 1.3px;
  display: inline;
}
.p-login__reminder a:hover {
  text-decoration: none;
}
.p-login__container {
  background-color: #50A192;
  width: 100%;
  min-height: 100dvh;
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 96px;
  padding: 100px 0px;
  position: relative;
}
.p-login__topImg {
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 30px;
  width: 234px;
  height: 257px;
}
.p-login__inputBody {
  width: 90%;
  max-width: 496px;
  background-color: #EDF1F0;
  border-radius: 24px;
  padding: 32px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(49, 55, 54, 0.08), 0px 2px 16px 0px rgba(49, 55, 54, 0.08);
          box-shadow: 0px 1px 4px 0px rgba(49, 55, 54, 0.08), 0px 2px 16px 0px rgba(49, 55, 54, 0.08);
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 18px;
}
.p-login__inputBody form {
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 18px;
  width: 100%;
}
.p-login__inputWrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
}
.p-login__buttonSet {
  padding-top: 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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 24px;
}
.p-login__btn input {
  padding: 0 20px;
  width: 280px;
  height: 64px;
  border-radius: 32px;
  background-color: #50A192;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.44px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-login__btn input:hover {
  opacity: 0.8;
}
.p-login__btn input:disabled {
  background-color: #616866;
  cursor: default;
  pointer-events: none;
  opacity: 0.25;
}
.p-login__name {
  font-size: 16px;
  font-weight: 600;
  line-height: 20.8px;
  letter-spacing: 1.28px;
  color: #222222;
}
.p-login__copyLight {
  position: absolute;
  bottom: 24px;
  color: #A6DFD5;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 1.12px;
}

.p-detail {
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 24px;
}

.p-combination__body {
  padding-inline: 16px;
  width: 100%;
  margin-bottom: 56px;
}
.p-combination__information {
  padding: 24px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 24px;
}
.p-combination__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-combination__staff {
  font-size: 14px;
  font-weight: 700;
  line-height: 18.2px;
  letter-spacing: 1.12px;
  color: #222222;
}
.p-combination__staff span {
  color: #999999;
}
.p-combination__select {
  min-width: 168px;
  height: 48px;
}
.p-combination__list {
  width: 100%;
}
.p-combination__table {
  width: 100%;
  height: 100%;
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
  position: relative;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-combination__table::-webkit-scrollbar {
  display: none;
}
.p-combination__tableInner {
  position: absolute;
  width: 100%;
  height: 100%;
}
.p-combination__tableInner td,
.p-combination__tableInner th {
  white-space: nowrap;
}
.p-combination__headTr--upperColor th:nth-child(3).is-active {
  background-color: #8E55D6;
  color: #fff;
}
.p-combination__headTr--upperColor th:nth-child(4).is-active {
  background-color: #00669C;
  color: #fff;
}
.p-combination__headTr--lowerColor th:nth-child(3).is-active {
  background-color: #8E55D6;
  color: #fff;
}
.p-combination__headTr--lowerColor th:nth-child(4).is-active {
  background-color: #8E55D6;
  color: #fff;
}
.p-combination__headTr--lowerColor th:nth-child(5).is-active {
  background-color: #00669C;
  color: #fff;
}
.p-combination__headTr--lowerColor th:nth-child(6).is-active {
  background-color: #00669C;
  color: #fff;
}
.p-combination__headTr--lowerColor th:nth-child(n+3):nth-child(-n+6).--selected {
  background-color: #50A192;
}
.p-combination__bodyTr--color td:nth-child(4).is-active {
  background-color: #F5EFFC;
}
.p-combination__bodyTr--color td:nth-child(5).is-active {
  background-color: #F5EFFC;
}
.p-combination__bodyTr--color td:nth-child(6).is-active {
  background-color: #E5F6FF;
}
.p-combination__bodyTr--color td:nth-child(7).is-active {
  background-color: #E5F6FF;
}
.p-combination__tableHead {
  background-color: #616866;
  height: 55px;
}
.p-combination__tableHead--inputArea {
  background-color: #00669C;
  color: #fff;
  height: 55px;
}
.p-combination__tableItem--first {
  padding: 4px 10px;
  border-radius: 6px 0px 0px 0px;
  height: 100%;
  min-width: 1px;
  width: auto;
}
.p-combination__tableItem--upper {
  padding: 4px 10px;
  height: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 1px;
  width: auto;
}
.p-combination__tableItem--lower {
  padding: 4px 10px;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 1px;
  width: auto;
}
.p-combination__tableItem--end {
  padding: 4px 10px;
  border-radius: 0px 6px 0px 0px;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.p-combination__tableItem--numerics {
  width: 70px;
}
.p-combination__tableText--first {
  color: #fff;
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-combination__tableText--upper {
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-combination__tableText--lower {
  color: #fff;
  text-align: right;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-combination__tableText--end {
  color: #fff;
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-combination__container--select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.p-combination__selectWrapper {
  position: relative;
  min-width: 168px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.p-combination__suggestWrapper {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 216px;
  min-height: 96px;
  max-height: 25vh;
}

.p-components__body {
  padding: 24px;
}
.p-components__headline {
  padding-bottom: 24px;
}
.p-components__box {
  margin-top: 24px;
  padding: 24px 0px;
  border-top: 2px solid #DDDDDD;
}
.p-components__box--highlight {
  padding: 25px;
  width: 100%;
  background-color: #E5F6FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
.p-components__flex {
  padding: 24px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
.p-components__flex--column {
  padding: 24px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
.p-components__tabWrapper {
  width: 100%;
  height: auto;
}
.p-components__topNavWrapper {
  background-color: #50A192;
  position: relative;
  width: 100%;
  border-radius: 20px 20px 0px 0px;
  height: 68px;
}
.p-components__genericTextWithImg {
  display: inline-block;
}
.p-components__select {
  width: 200px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}
.p-components__input {
  width: 200px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}
.p-components__input--freeSize {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}
.p-components__table {
  width: 208px;
  height: 86px;
  padding: 10px;
  background-color: azure;
}
.p-components__table--short {
  width: 120px;
  height: 46px;
  background-color: azure;
}
.p-components__table--textarea {
  width: 200px;
  min-height: 53px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}

.p-alcohol__body {
  padding-inline: 16px;
  width: 100%;
}
.p-alcohol__body:last-child {
  margin-bottom: 56px;
}
.p-alcohol__tableContent--barrelNumber {
  min-width: 104px;
}
.p-alcohol__tableContent--percent {
  height: 100%;
  min-width: 160px;
}
.p-alcohol__message {
  width: 100%;
  height: 160px;
  background-color: #F8F8F8;
  border-radius: 8px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-alcohol__text {
  color: #00669C;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 20.8px;
  letter-spacing: 1.04px;
}

.p-stirrings__headBtnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 12px;
}
.p-stirrings__input {
  min-width: 184px;
  gap: 8px;
}
.p-stirrings__searchBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-stirrings__searchItemSet {
  width: 100%;
}
.p-stirrings__searchButtons {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
.p-stirrings__box--worker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.p-stirrings__body {
  padding-inline: 16px;
  width: 100%;
}
.p-stirrings__body:last-child {
  margin-bottom: 56px;
}
.p-stirrings__table td,
.p-stirrings__table th {
  white-space: nowrap;
}
.p-stirrings__table--stripe > th:nth-child(2n) {
  background-color: #616866;
}
.p-stirrings__table--stripe > th:nth-child(2n+1) {
  background-color: #6E7674;
}
.p-stirrings__table--stripe > th:first-child {
  background-color: #616866;
}
.p-stirrings__table--stripe > th:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.p-stirrings__table--stripe > th.--selected {
  background-color: #50A192;
}
.p-stirrings__table--roundedCorners > th:first-child {
  padding: 4px 8px;
  border-radius: 6px 0px 0px 0px;
}
.p-stirrings__table--roundedCorners > th:last-child {
  padding: 8px;
  border-radius: 0px 6px 0px 0px;
}
.p-stirrings__table--bgColor {
  background-color: #fff;
}
.p-stirrings__table--confirm {
  width: 100%;
}
.p-stirrings__tableWrapper {
  height: 46px;
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.p-stirrings__tableHeadText--regularM {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
}
.p-stirrings__tableHeadText--regularS {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.96px;
}
.p-stirrings__tableHeadText--primaryM {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.12px;
}
.p-stirrings__tableHeadText--primaryS {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.96px;
}
.p-stirrings__tableHeadText--saturdayColor {
  color: #C8E4F3;
}
.p-stirrings__tableHeadText--sundayColor {
  color: #FFD8DD;
}
.p-stirrings__tableBodyText {
  color: inherit;
  font-size: 13px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 1.04px;
}
.p-stirrings__tableBodyText--primary {
  color: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 20.8px;
  letter-spacing: 1.28px;
}
.p-stirrings__searchUnit {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.p-stirrings__monthControl {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-stirrings__monthButton {
  height: 48px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-stirrings__monthButton--next {
  width: 40px;
  border-radius: 5px;
}
.p-stirrings__monthButton--next:hover {
  background-color: #DDDDDD;
}
.p-stirrings__monthButton--next img {
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.p-stirrings__monthButton--prev {
  width: 40px;
  border-radius: 5px;
}
.p-stirrings__monthButton--prev:hover {
  background-color: #DDDDDD;
}
.p-stirrings__monthButton--prev img {
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-stirrings__confirmTableBodyText {
  color: inherit;
  font-size: 13px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 1.04px;
  text-align: center;
}
.p-stirrings__confirmTableBodyText--primary {
  color: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 20.8px;
  letter-spacing: 1.28px;
  text-align: center;
}
.p-stirrings__tableGroup {
  background-color: #fff;
}
.p-stirrings__tableGroup--text {
  width: 41px;
  padding: 10px 8px;
  text-align: center;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  color: #222222;
  font-size: 13px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 5px;
}
.p-stirrings__tableBody--stripe > tr:nth-child(2n+1) > .p-stirrings__tableCell--head {
  background-color: #F8F8F8;
}
.p-stirrings__tableBody--stripe > tr:nth-child(2n+1) > .p-stirrings__tableCell--head.--selected {
  background-color: #E5FBF7;
}
.p-stirrings__tableBody--stripe > tr:nth-child(2n+1) > .p-stirrings__tableCell--content {
  background-color: #fff;
}
.p-stirrings__tableBody--stripe > tr:nth-child(2n+1) > .p-stirrings__tableCell--content.--selected > * {
  background-color: #E5FBF7;
}
.p-stirrings__tableBody--stripe > tr:nth-child(2n) > .p-stirrings__tableCell--head {
  background-color: #F8F8F8;
}
.p-stirrings__tableBody--stripe > tr:nth-child(2n) > .p-stirrings__tableCell--head.--selected {
  background-color: #E5FBF7;
}
.p-stirrings__tableBody--stripe > tr:nth-child(2n) > .p-stirrings__tableCell--content {
  background-color: #F8F8F8;
}
.p-stirrings__tableBody--stripe > tr:nth-child(2n) > .p-stirrings__tableCell--content.--selected {
  background-color: #E5FBF7;
}
.p-stirrings__tableBody--borderBottom > tr:last-child td,
.p-stirrings__tableBody--borderBottom > tr:last-child th {
  border-bottom: 1px solid #999999;
}
.p-stirrings__tableCell--head {
  padding: 8px;
  min-width: 87px;
  height: 48px;
  border-right: 1px solid #DDDDDD;
  border-left: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  color: #222222;
}
.p-stirrings__tableCell--head.--selected {
  color: #50A192;
}
.p-stirrings__tableCell--content {
  min-width: 142px;
  height: 48px;
  border-bottom: 1px solid #DDDDDD;
  border-right: 1px solid #DDDDDD;
}
.p-stirrings__tableCell--select {
  min-width: 142px;
  height: 48px;
  border-bottom: 1px solid #DDDDDD;
  border-right: 1px solid #DDDDDD;
  padding: 0 10px;
}
.p-stirrings__tableCell--select select {
  width: 100%;
}
.p-stirrings__tableCell--select select.--readonly {
  opacity: 1;
}
.p-stirrings__tableCell--person {
  padding: 10px;
  min-width: 142px;
  height: 48px;
  border-bottom: 1px solid #DDDDDD;
  border-right: 1px solid #DDDDDD;
}
.p-stirrings__confirmTableCell--person {
  padding: 10px;
  min-width: 142px;
  height: 48px;
  border-bottom: 1px solid #DDDDDD;
  border-right: 1px solid #DDDDDD;
  background-color: inherit;
}
.p-stirrings__confirmTableCell--person > * {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.p-stirrings__tableBorder--headLeft {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.p-stirrings__tableBorder--top {
  border-top: 1px solid #999999;
}
.p-stirrings__tableBorder--bottom {
  border-bottom: 1px solid #999999;
}
.p-stirrings__overflow--stickyFirst {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-stirrings__overflow--stickySecond {
  position: sticky;
  top: 0;
  left: 41px;
  z-index: 2;
}
.p-stirrings__overflow--stickyInputArea {
  position: sticky;
  top: 0;
  left: 129px;
  z-index: 1;
  -webkit-box-shadow: 3px 3px 8px 0px rgba(49, 50, 50, 0.16);
          box-shadow: 3px 3px 8px 0px rgba(49, 50, 50, 0.16);
}
.p-stirrings__tableSuggest {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-stirrings__messagePanel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 32px);
  min-height: 160px;
  padding: 16px 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  background-color: #F8F8F8;
  margin: 0px 16px 20px 16px;
}
.p-stirrings__message {
  color: #00669C;
  text-align: center;
  font-family: "BIZ UDPGothic";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.8px; /* 160% */
  letter-spacing: 1.04px;
}

.p-barrels__tableHead--mixture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.p-barrels__tableHeadText--supplementS {
  color: #CACACA;
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.8px;
}
.p-barrels__tableHeadText--supplementM {
  color: #CACACA;
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.8px;
}
.p-barrels__tableHeadText--marginLeft {
  margin-left: 4px;
}

.p-barrelsMixture__body {
  padding-inline: 16px;
  margin-bottom: 56px;
}
.p-barrelsMixture__information {
  padding: 24px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 24px;
}
.p-barrelsMixture__stripe > th {
  background-color: #616866;
}
.p-barrelsMixture__stripe > th:nth-child(even) {
  background-color: #6E7674;
}
.p-barrelsMixture__stripe > th:nth-child(2) {
  background-color: #616866;
}
.p-barrelsMixture__stripe > th:nth-child(3) {
  background-color: #FF8718;
}
.p-barrelsMixture__stripe--multiple > th {
  background-color: #616866;
}
.p-barrelsMixture__stripe--multiple > th:nth-child(4n+1) {
  background-color: #6E7674;
}
.p-barrelsMixture__stripe--multiple > th:nth-child(4n+2) {
  background-color: #6E7674;
}
.p-barrelsMixture__stripe--multiple > th:nth-child(1) {
  background-color: #616866;
}
.p-barrelsMixture__stripe--multiple > th:nth-child(2) {
  background-color: #616866;
}
.p-barrelsMixture__stripe--multiple > th:nth-child(3) {
  background-color: #FF8718;
}
.p-barrelsMixture__stripe--multiple > th:nth-child(4) {
  background-color: #FF8718;
}
.p-barrelsMixture__tableItem--roundedCorners > th:first-of-type {
  border-radius: 6px 0px 0px 0px;
}
.p-barrelsMixture__tableItem--roundedCorners > th:last-of-type {
  border-radius: 0px 6px 0px 0px;
}
.p-barrelsMixture__tableItem--first {
  height: 85px;
}
.p-barrelsMixture__tableHeadText--regularL {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 1.12px;
}
.p-barrelsMixture__tableHeadText--regularM {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-barrelsMixture__tableHeadText--supplementM {
  color: #808785;
  font-size: 13px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 1.04px;
}
.p-barrelsMixture__tableHead--upper {
  padding: 4px 10px;
  height: 62px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 1px;
  width: auto;
}
.p-barrelsMixture__tableHead--lower {
  padding: 4px 10px;
  height: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 1px;
  width: auto;
}
.p-barrelsMixture__tableHead--inner {
  margin-top: 4px;
  padding: 10px;
  height: 25px;
  background-color: #EEEEEE;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
}
.p-barrelsMixture__tableBody--head {
  min-width: 175px;
  height: 30px;
  padding: 10px 55px 10px 10px;
  background-color: #616866;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-barrelsMixture__tableBody--sum {
  width: 45px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #808785;
  padding: 10px;
  border-radius: 8px 0px 0px 8px;
  color: #fff;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-barrelsMixture__tableBody--number {
  padding: 4px;
  width: 30px;
  height: 29px;
  border-right: 1px solid rgba(34, 34, 34, 0.04);
  border-bottom: 1px solid #DDDDDD;
  text-align: right;
  background-color: inherit;
}
.p-barrelsMixture__tableBody--name {
  padding: 5px 10px;
  height: 100%;
  border-right: 1px solid rgba(34, 34, 34, 0.04);
  border-bottom: 1px solid #DDDDDD;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
  background-color: inherit;
}
.p-barrelsMixture__tableBody--numerics {
  padding: 5px 10px;
  max-width: 69.5px;
  min-width: 69.5px;
  width: 69.5px;
  height: 29px;
  border-right: 1px solid rgba(34, 34, 34, 0.04);
  border-bottom: 1px solid #DDDDDD;
  text-align: right;
  background-color: inherit;
}
.p-barrelsMixture__tableBody--bottom {
  background-color: #616866;
}
.p-barrelsMixture__tableBodyText--regularL {
  color: #222222;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
}
.p-barrelsMixture__tableBodyText--primaryL {
  color: #222222;
  font-size: 14px;
  font-weight: 600;
  line-height: 18.2px;
  letter-spacing: 1.12px;
}
.p-barrelsMixture__tableBodyText--regularM {
  color: #222222;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-barrelsMixture__tableBodyText--primaryM {
  color: #222222;
  font-size: 12px;
  font-weight: 700;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-barrelsMixture__tableBodyText--whiteM {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-barrelsMixture__tableBodyText--supplementM {
  color: #999999;
  font-size: 12px;
  font-weight: 400;
  line-height: 20.8px;
  letter-spacing: 0.96px;
}
.p-barrelsMixture__bgColor--topHighlight > td {
  background-color: #fff;
}
.p-barrelsMixture__bgColor--topHighlight > td:nth-of-type(3), .p-barrelsMixture__bgColor--topHighlight > td:nth-of-type(4) {
  background-color: #FFF7EB;
}
.p-barrelsMixture__bgColor--highlight > td:nth-of-type(5), .p-barrelsMixture__bgColor--highlight > td:nth-of-type(6) {
  background-color: #FFF7EB;
}
.p-barrelsMixture__bgColor--bottom > td {
  background-color: #EDF1F0;
}
.p-barrelsMixture__overflow--stickyHeadUpper > th:nth-of-type(2) {
  position: sticky;
  top: 0;
  left: 175px;
  z-index: 2;
}
.p-barrelsMixture__overflow--stickyHeadUpper > th:nth-of-type(3) {
  position: sticky;
  top: 0;
  left: 314px;
  z-index: 2;
  -webkit-box-shadow: 3px 3px 8px 0px rgba(49, 50, 50, 0.16);
          box-shadow: 3px 3px 8px 0px rgba(49, 50, 50, 0.16);
}
.p-barrelsMixture__overflow--stickyHeadLower > th:nth-of-type(1) {
  position: sticky;
  top: 0;
  left: 175px;
  z-index: 2;
}
.p-barrelsMixture__overflow--stickyHeadLower > th:nth-of-type(2) {
  position: sticky;
  top: 0;
  left: 244.5px;
  z-index: 2;
}
.p-barrelsMixture__overflow--stickyHeadLower > th:nth-of-type(3) {
  position: sticky;
  top: 0;
  left: 314px;
  z-index: 2;
}
.p-barrelsMixture__overflow--stickyHeadLower > th:nth-of-type(4) {
  position: sticky;
  top: 0;
  left: 383.5px;
  z-index: 2;
  -webkit-box-shadow: 3px 3px 8px 0px rgba(49, 50, 50, 0.16);
          box-shadow: 3px 3px 8px 0px rgba(49, 50, 50, 0.16);
}
.p-barrelsMixture__overflow--stickyName, .p-barrelsMixture__overflow--stickyBody > td:nth-of-type(6), .p-barrelsMixture__overflow--stickyBody > td:nth-of-type(5), .p-barrelsMixture__overflow--stickyBody > td:nth-of-type(4), .p-barrelsMixture__overflow--stickyBody > td:nth-of-type(3), .p-barrelsMixture__overflow--stickyTopAndBottom > td:nth-of-type(4), .p-barrelsMixture__overflow--stickyTopAndBottom > td:nth-of-type(3), .p-barrelsMixture__overflow--stickyTopAndBottom > td:nth-of-type(2), .p-barrelsMixture__overflow--stickyTopAndBottom > td:nth-of-type(1) {
  position: sticky;
  top: 0;
  left: 30px;
  z-index: 2;
}
.p-barrelsMixture__overflow--stickyTopAndBottom > td:nth-of-type(1) {
  left: 175px;
}
.p-barrelsMixture__overflow--stickyTopAndBottom > td:nth-of-type(2) {
  left: 244.5px;
}
.p-barrelsMixture__overflow--stickyTopAndBottom > td:nth-of-type(3) {
  left: 314px;
}
.p-barrelsMixture__overflow--stickyTopAndBottom > td:nth-of-type(4) {
  left: 383.5px;
  -webkit-box-shadow: 3px 3px 8px 0px rgba(49, 50, 50, 0.16);
          box-shadow: 3px 3px 8px 0px rgba(49, 50, 50, 0.16);
}
.p-barrelsMixture__overflow--stickyBody > td:nth-of-type(3) {
  left: 175px;
}
.p-barrelsMixture__overflow--stickyBody > td:nth-of-type(4) {
  left: 244.5px;
}
.p-barrelsMixture__overflow--stickyBody > td:nth-of-type(5) {
  left: 314px;
}
.p-barrelsMixture__overflow--stickyBody > td:nth-of-type(6) {
  left: 383.5px;
  -webkit-box-shadow: 3px 3px 8px 0px rgba(49, 50, 50, 0.16);
          box-shadow: 3px 3px 8px 0px rgba(49, 50, 50, 0.16);
}

.p-pastingRegister__main {
  background-color: #fff;
  min-height: calc(100% - 72px);
  min-width: 0;
  min-height: auto;
  padding: 24px 24px 32px 24px;
}
.p-pastingRegister__body {
  margin-bottom: 56px;
}
.p-pastingRegister__input {
  min-width: 184px;
}
.p-pastingRegister__box--worker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.p-pastingRegister__firstUnit {
  background-color: #E5F6FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-pastingRegister__secondUnit {
  background-color: #00669C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-pastingRegister__title {
  width: 100%;
  position: relative;
}
.p-pastingRegister__title--first {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #00669C;
  position: sticky;
  top: 0;
  left: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.8px;
  letter-spacing: 1.6px;
}
.p-pastingRegister__title--second {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  position: sticky;
  top: 0;
  left: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.8px;
  letter-spacing: 1.6px;
}
.p-pastingRegister__btn a, .p-pastingEdit__btn--second a, .p-pastingRegister__btn--second a,
.p-pastingRegister__btn button,
.p-pastingEdit__btn--second button,
.p-pastingRegister__btn--second button {
  padding: 0 20px;
  width: 120px;
  height: 32px;
  border-radius: 16px;
  background-color: inherit;
  color: #00669C;
  border: 2px solid #00669C;
  font-size: 13px;
  font-weight: 700;
  line-height: 13px;
  letter-spacing: 1.04px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-pastingRegister__btn a img, .p-pastingEdit__btn--second a img, .p-pastingRegister__btn--second a img,
.p-pastingRegister__btn button img,
.p-pastingEdit__btn--second button img,
.p-pastingRegister__btn--second button img {
  width: 10px;
  height: 10px;
}
.p-pastingRegister__btn a:hover, .p-pastingEdit__btn--second a:hover, .p-pastingRegister__btn--second a:hover,
.p-pastingRegister__btn button:hover,
.p-pastingEdit__btn--second button:hover,
.p-pastingRegister__btn--second button:hover {
  opacity: 0.8;
}
.p-pastingRegister__btn--second a,
.p-pastingRegister__btn--second button {
  color: #fff;
  border: 2px solid #fff;
}
.p-pastingRegister__tableStripe:nth-of-type(2n+1) {
  background-color: #fff;
}
.p-pastingRegister__tableStripe:nth-of-type(2n) {
  background-color: #F8F8F8;
}
.p-pastingRegister__tableContainer {
  padding: 0px 0px 0px 16px;
}
.p-pastingRegister__tableContainer--second {
  padding: 0px 16px 0px 32px;
}
.p-pastingRegister__tableHead--normal, .p-pastingEdit__tableHead--alignRight, .p-pastingRegister__tableHead--alignRight {
  height: 100%;
  min-height: 42px;
  padding: 4px 10px;
  background-color: #494E4D;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.p-pastingRegister__tableHead--alignRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.p-pastingRegister__tableHeadText--regular {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-pastingRegister__tableHeadText--supplement {
  color: #999999;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-pastingRegister__tableBody--index {
  border-bottom: 1px solid #EEEEEE;
  height: 100%;
  min-width: 24px;
  color: #808785;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 1.28px;
}
.p-pastingRegister__tableBody--radio {
  padding: 0px 10px;
  height: 100%;
  border-left: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0px;
}
.p-pastingRegister__tableBody--button {
  border-left: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}
.p-pastingRegister__tableBody--number {
  border-bottom: 1px solid #EEEEEE;
  height: 48px;
  width: 88px;
}
.p-pastingRegister__unit--radio {
  padding: 8px 10px 8px 0px;
}

.p-pastingEdit__main {
  background-color: #fff;
  min-height: calc(100% - 72px);
  min-width: 0;
  min-height: auto;
  padding: 24px 24px 32px 24px;
}
.p-pastingEdit__body {
  margin-bottom: 56px;
}
.p-pastingEdit__input {
  min-width: 184px;
}
.p-pastingEdit__box--worker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.p-pastingEdit__firstUnit {
  background-color: #E5F6FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-pastingEdit__secondUnit {
  background-color: #00669C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-pastingEdit__title {
  width: 100%;
  position: relative;
}
.p-pastingEdit__title--first {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #00669C;
  position: sticky;
  top: 0;
  left: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.8px;
  letter-spacing: 1.6px;
}
.p-pastingEdit__title--second {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  position: sticky;
  top: 0;
  left: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.8px;
  letter-spacing: 1.6px;
}
.p-pastingEdit__btn a,
.p-pastingEdit__btn button {
  padding: 0 20px;
  width: 120px;
  height: 32px;
  border-radius: 16px;
  background-color: inherit;
  color: #00669C;
  border: 2px solid #00669C;
  font-size: 13px;
  font-weight: 700;
  line-height: 13px;
  letter-spacing: 1.04px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-pastingEdit__btn a img,
.p-pastingEdit__btn button img {
  width: 10px;
  height: 10px;
}
.p-pastingEdit__btn a:hover,
.p-pastingEdit__btn button:hover {
  opacity: 0.8;
}
.p-pastingEdit__btn--second a,
.p-pastingEdit__btn--second button {
  color: #fff;
  border: 2px solid #fff;
}
.p-pastingEdit__tableStripe:nth-of-type(2n+1) {
  background-color: #fff;
}
.p-pastingEdit__tableStripe:nth-of-type(2n) {
  background-color: #F8F8F8;
}
.p-pastingEdit__tableContainer {
  padding: 0px 0px 0px 16px;
}
.p-pastingEdit__tableContainer--second {
  padding: 0px 16px 0px 32px;
}
.p-pastingEdit__tableHead--normal {
  height: 100%;
  min-height: 42px;
  padding: 4px 10px;
  background-color: #494E4D;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.p-pastingEdit__tableHead--alignRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.p-pastingEdit__tableHeadText--regular {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-pastingEdit__tableHeadText--supplement {
  color: #999999;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-pastingEdit__tableBody--index {
  border-bottom: 1px solid #EEEEEE;
  height: 100%;
  min-width: 24px;
  color: #808785;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 1.28px;
}
.p-pastingEdit__tableBody--radio {
  padding: 0px 10px;
  height: 100%;
  border-left: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0px;
}
.p-pastingEdit__tableBody--button {
  border-left: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}
.p-pastingEdit__tableBody--number {
  border-bottom: 1px solid #EEEEEE;
  height: 48px;
  width: 88px;
}
.p-pastingEdit__unit--radio {
  padding: 8px 10px 8px 0px;
}

.p-pastingTableItem__container {
  width: 100%;
  height: 100%;
  border-left: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}
.p-pastingTableItem__upper {
  height: 62px;
  padding: 8px 10px;
}
.p-pastingTableItem__lower {
  padding: 0px 8px 3px 8px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.p-pastingTableItem__cell {
  height: 48px;
}
.p-pastingTableItem__cell--numerics {
  padding: 10px;
  height: 48px;
}
.p-pastingTableItem__cell--multi, .p-pastingTableItem__cell--multiReference {
  height: 32px;
  padding: 4px 10px;
  color: #fff;
  background-color: #616866;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.p-pastingTableItem__cell--multiReference {
  background-color: #6E7674;
}
.p-pastingTableItem__text--head {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-pastingTableItem__text--headSupplement {
  color: #999999;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-pastingTableItem__text--numerics {
  text-align: right;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
}
.p-pastingTableItem__deleteButton {
  display: block;
  background-color: rgba(34, 34, 34, 0.04);
  height: 100%;
  width: 40px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-pastingTableItem__deleteButton:hover {
  opacity: 0.7;
}
.p-pastingTableItem__deleteButton > input {
  display: none;
  width: 100%;
  height: 100%;
}
.p-pastingTableItem__deleteIcon {
  position: absolute;
  width: 17.8px;
  height: 17.8px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-pastingConfirm__box {
  border-top: 1px solid #EEEEEE;
  padding: 24px;
}
.p-pastingConfirm__tableItem--upper {
  height: 62px;
  padding: 8px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}

.p-processing__tableHead--mixture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
  padding: 8px 10px;
}
.p-processing__tableHeadText--supplementS {
  color: #CACACA;
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.8px;
}
.p-processing__tableHeadText--supplementM {
  color: #CACACA;
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.8px;
}
.p-processing__tableHeadText--marginLeft {
  margin-left: 4px;
}
.p-processing__tableWrap--alignRight {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.p-processingRegister__main {
  background-color: #fff;
  min-height: calc(100% - 72px);
  min-width: 0;
  min-height: auto;
  padding: 24px 24px 32px 24px;
}
.p-processingRegister__body {
  margin-bottom: 56px;
}
.p-processingRegister__input {
  min-width: 184px;
}
.p-processingRegister__box--worker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.p-processingRegister__firstUnit {
  background-color: #E5F6FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-processingRegister__secondUnit {
  background-color: #00669C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  width: calc(100% - 80px);
  scroll-snap-align: end;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-processingRegister__thirdUnit {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-processingRegister__fourthUnit {
  background-color: #6E7674;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  width: calc(100% - 80px);
  scroll-snap-align: end;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-processingRegister__title {
  width: 100%;
  position: relative;
}
.p-processingRegister__title--fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-processingRegister__title--first {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #00669C;
  position: sticky;
  top: 0;
  left: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.8px;
  letter-spacing: 1.6px;
}
.p-processingRegister__title--second {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  position: sticky;
  top: 0;
  left: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.8px;
  letter-spacing: 1.6px;
}
.p-processingRegister__title--third {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #616866;
  position: sticky;
  top: 0;
  left: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.8px;
  letter-spacing: 1.6px;
}
.p-processingRegister__title--fourth {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  position: sticky;
  top: 0;
  left: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.8px;
  letter-spacing: 1.6px;
}
.p-processingRegister__btn a, .p-processingRegister__btn--second a,
.p-processingRegister__btn button,
.p-processingRegister__btn--second button {
  padding: 0 20px;
  width: 120px;
  height: 32px;
  border-radius: 16px;
  background-color: inherit;
  color: #00669C;
  border: 2px solid #00669C;
  font-size: 13px;
  font-weight: 700;
  line-height: 13px;
  letter-spacing: 1.04px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-processingRegister__btn a img, .p-processingRegister__btn--second a img,
.p-processingRegister__btn button img,
.p-processingRegister__btn--second button img {
  width: 10px;
  height: 10px;
}
.p-processingRegister__btn a:hover, .p-processingRegister__btn--second a:hover,
.p-processingRegister__btn button:hover,
.p-processingRegister__btn--second button:hover {
  opacity: 0.8;
}
.p-processingRegister__btn--second a,
.p-processingRegister__btn--second button {
  color: #fff;
  border: 2px solid #fff;
}
.p-processingRegister__radioWrapper {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
  padding: 12px 24px;
}
.p-processingRegister__btnWrapper {
  padding: 0px 16px;
}
.p-processingRegister__innerBody {
  padding-inline: 16px;
}
.p-processingRegister__tableStripe:nth-of-type(2n+1) {
  background-color: #fff;
}
.p-processingRegister__tableStripe:nth-of-type(2n) {
  background-color: #F8F8F8;
}
.p-processingRegister__tableContainer {
  padding: 0px 0px 0px 16px;
}
.p-processingRegister__tableContainer--second {
  padding: 0px 16px 0px 32px;
}
.p-processingRegister__tableInner td {
  height: 48px;
}
.p-processingRegister__tableBorder--left {
  border-left: 1px solid #EEEEEE;
}
.p-processingRegister__tableBorder--right {
  border-right: 1px solid #EEEEEE;
}
.p-processingRegister__tableBorder--bottom {
  border-bottom: 1px solid #DDDDDD;
}
.p-processingRegister__tableBorder--multiBottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.p-processingRegister__head--first {
  width: 100%;
  padding: 24px 3px 24px 24px;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
.p-processingRegister__tableHead--normal, .p-processingRegister__tableHead--alignRight {
  height: 100%;
  min-height: 42px;
  padding: 4px 10px;
  background-color: #494E4D;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.p-processingRegister__tableHead--column {
  height: 100%;
  min-height: 42px;
  background-color: #494E4D;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-processingRegister__tableHead--label {
  height: 100%;
  min-height: 42px;
  padding: 4px 10px;
  background-color: #919795;
  border-radius: 0px 0px 0px 6px;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.p-processingRegister__tableHead--alignRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.p-processingRegister__tableHeadText--regular {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-processingRegister__tableHeadText--alignRight {
  text-align: right;
}
.p-processingRegister__tableHeadText--alignLeft {
  text-align: left;
}
.p-processingRegister__tableHeadText--column {
  padding: 4px 10px;
  color: #fff;
  width: 100%;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-processingRegister__tableHeadText--supplement {
  color: #999999;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-processingRegister__margin--left {
  margin-left: 4px;
}
.p-processingRegister__tableWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.p-processingRegister__tableBody {
  height: 48px;
  width: 100%;
  border-left: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}
.p-processingRegister__tableBody--index {
  border-bottom: 1px solid #EEEEEE;
  height: 100%;
  min-width: 24px;
  color: #808785;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 1.28px;
}
.p-processingRegister__tableBody--percentage {
  border-left: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
  height: 100%;
  min-width: 24px;
  color: #808785;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 1.28px;
}
.p-processingRegister__tableBody--radio {
  padding: 0px 10px;
  height: 100%;
  border-left: 1px solid #EEEEEE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0px;
}
.p-processingRegister__tableBody--button {
  border-left: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}
.p-processingRegister__tableBody--number {
  border-bottom: 1px solid #EEEEEE;
  height: 48px;
  width: 88px;
}
.p-processingRegister__tableBody--split {
  height: 96px;
}
.p-processingRegister__tableBody--expand {
  width: 100%;
  border-left: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
  height: 100%;
}
.p-processingRegister__tableCell--split {
  padding: 0;
  min-height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-processingRegister__unit--radio {
  padding: 8px 10px 8px 0px;
}

.p-processingTableItem__container {
  width: 100%;
  height: 100%;
  border-left: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}
.p-processingTableItem__upper {
  height: 62px;
  padding: 8px 10px;
}
.p-processingTableItem__lower {
  padding: 0px 8px 3px 8px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.p-processingTableItem__cell {
  height: 48px;
}
.p-processingTableItem__cell--numerics {
  padding: 10px;
  height: 48px;
}
.p-processingTableItem__cell--multi, .p-processingTableItem__cell--multiReference {
  height: 32px;
  padding: 4px 10px;
  color: #fff;
  background-color: #616866;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.p-processingTableItem__cell--multiReference {
  background-color: #6E7674;
}
.p-processingTableItem__cell--justifyStart {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.p-processingTableItem__text--head {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-processingTableItem__text--headSupplement {
  color: #999999;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-processingTableItem__text--numerics {
  text-align: right;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
}
.p-processingTableItem__deleteButton {
  display: block;
  background-color: rgba(34, 34, 34, 0.04);
  height: 100%;
  width: 40px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-processingTableItem__deleteButton:hover {
  opacity: 0.7;
}
.p-processingTableItem__deleteButton > input {
  display: none;
  width: 100%;
  height: 100%;
}
.p-processingTableItem__deleteIcon {
  position: absolute;
  width: 17.8px;
  height: 17.8px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-processingConfirm__tableWrapper {
  padding-bottom: 24px;
  background-color: #EDF1F0;
}
.p-processingConfirm__tableWrapper:not(:has(.c-scrollTable__wrapper--withBtn)) {
  display: none;
}

.p-processingConfirmTableItem__upper {
  height: 62px;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
}

.p-filling__tableHead--mixture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
  padding: 8px 10px;
}
.p-filling__tableHeadText--supplementS {
  color: #CACACA;
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.8px;
}
.p-filling__tableHeadText--supplementM {
  color: #CACACA;
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.8px;
}
.p-filling__tableHeadText--marginLeft {
  margin-left: 4px;
}
.p-filling__tableWrap--justifyCenter {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-filling__tableWrap--alignRight {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.p-fillingRegister__main {
  background-color: #fff;
  min-height: calc(100% - 72px);
  min-width: 0;
  min-height: auto;
  padding: 24px 24px 32px 24px;
}
.p-fillingRegister__body {
  margin-bottom: 56px;
}
.p-fillingRegister__input {
  min-width: 184px;
}
.p-fillingRegister__box--worker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.p-fillingRegister__firstUnit {
  background-color: #E5F6FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-fillingRegister__secondUnit {
  background-color: #00669C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  width: calc(100% - 80px);
  scroll-snap-align: end;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-fillingRegister__thirdUnit {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-fillingRegister__fourthUnit {
  background-color: #6E7674;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  width: calc(100% - 80px);
  scroll-snap-align: end;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-fillingRegister__title {
  width: 100%;
  position: relative;
}
.p-fillingRegister__title--first {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #00669C;
  position: sticky;
  top: 0;
  left: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.8px;
  letter-spacing: 1.6px;
}
.p-fillingRegister__title--second {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  position: sticky;
  top: 0;
  left: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.8px;
  letter-spacing: 1.6px;
}
.p-fillingRegister__title--third {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #616866;
  position: sticky;
  top: 0;
  left: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.8px;
  letter-spacing: 1.6px;
}
.p-fillingRegister__title--fourth {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  position: sticky;
  top: 0;
  left: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.8px;
  letter-spacing: 1.6px;
}
.p-fillingRegister__btn a, .p-fillingRegister__btn--second a,
.p-fillingRegister__btn button,
.p-fillingRegister__btn--second button {
  padding: 0 20px;
  width: 120px;
  height: 32px;
  border-radius: 16px;
  background-color: inherit;
  color: #00669C;
  border: 2px solid #00669C;
  font-size: 13px;
  font-weight: 700;
  line-height: 13px;
  letter-spacing: 1.04px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-fillingRegister__btn a img, .p-fillingRegister__btn--second a img,
.p-fillingRegister__btn button img,
.p-fillingRegister__btn--second button img {
  width: 10px;
  height: 10px;
}
.p-fillingRegister__btn a:hover, .p-fillingRegister__btn--second a:hover,
.p-fillingRegister__btn button:hover,
.p-fillingRegister__btn--second button:hover {
  opacity: 0.8;
}
.p-fillingRegister__btn--second a,
.p-fillingRegister__btn--second button {
  color: #fff;
  border: 2px solid #fff;
}
.p-fillingRegister__radioWrapper {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
  padding: 12px 24px;
}
.p-fillingRegister__btnWrapper {
  padding: 0px 16px;
}
.p-fillingRegister__tableStripe:nth-of-type(2n+1) {
  background-color: #fff;
}
.p-fillingRegister__tableStripe:nth-of-type(2n) {
  background-color: #F8F8F8;
}
.p-fillingRegister__tableContainer {
  padding: 0px 0px 0px 16px;
}
.p-fillingRegister__tableContainer--second {
  padding: 0px 16px 0px 32px;
}
.p-fillingRegister__tableInner td {
  height: 48px;
}
.p-fillingRegister__tableBorder--bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.p-fillingRegister__tableHead--normal, .p-fillingRegister__tableHead--alignRight {
  height: 100%;
  min-height: 42px;
  padding: 4px 10px;
  background-color: #494E4D;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.p-fillingRegister__tableHead--column {
  height: 100%;
  min-height: 42px;
  background-color: #494E4D;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-fillingRegister__tableHead--label {
  height: 100%;
  min-height: 42px;
  padding: 4px 10px;
  background-color: #919795;
  border-radius: 0px 0px 0px 6px;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.p-fillingRegister__tableHead--alignRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.p-fillingRegister__tableHeadText--regular {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-fillingRegister__tableHeadText--alignRight {
  text-align: right;
}
.p-fillingRegister__tableHeadText--alignLeft {
  text-align: left;
}
.p-fillingRegister__tableHeadText--column {
  padding: 4px 10px;
  color: #fff;
  width: 100%;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-fillingRegister__tableHeadText--supplement {
  color: #999999;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-fillingRegister__tableBody {
  height: 48px;
  width: 100%;
  border-left: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}
.p-fillingRegister__tableBody--index {
  border-bottom: 1px solid #EEEEEE;
  height: 100%;
  min-width: 24px;
  color: #808785;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 1.28px;
}
.p-fillingRegister__tableBody--radio {
  padding: 0px 10px;
  height: 100%;
  border-left: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0px;
}
.p-fillingRegister__tableBody--button {
  border-left: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}
.p-fillingRegister__tableBody--number {
  border-bottom: 1px solid #EEEEEE;
  height: 48px;
  width: 88px;
}
.p-fillingRegister__tableBody--split {
  height: 96px;
}
.p-fillingRegister__tableBody--expand {
  width: 100%;
  border-left: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
  height: 100%;
}
.p-fillingRegister__tableCell--row {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  width: 100%;
}
.p-fillingRegister__tableCell--split {
  padding: 0;
  min-height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-fillingRegister__tableCell--verticalHalf {
  min-height: 50%;
}
.p-fillingRegister__unit--radio {
  padding: 8px 10px 8px 0px;
}

.p-fillingTableItem__container {
  width: 100%;
  height: 100%;
  border-left: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}
.p-fillingTableItem__upper {
  height: 62px;
  padding: 8px 10px;
}
.p-fillingTableItem__lower {
  padding: 0px 8px 3px 8px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.p-fillingTableItem__cell {
  height: 48px;
}
.p-fillingTableItem__cell--numerics {
  padding: 10px;
  height: 48px;
}
.p-fillingTableItem__cell--multi, .p-fillingTableItem__cell--multiReference {
  height: 32px;
  padding: 4px 10px;
  color: #fff;
  background-color: #616866;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.p-fillingTableItem__cell--multiReference {
  background-color: #6E7674;
}
.p-fillingTableItem__cell--justifyStart {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.p-fillingTableItem__text--head {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-fillingTableItem__text--headSupplement {
  color: #999999;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-fillingTableItem__text--numerics {
  text-align: right;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
}
.p-fillingTableItem__deleteButton {
  display: block;
  background-color: rgba(34, 34, 34, 0.04);
  height: 100%;
  width: 40px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-fillingTableItem__deleteButton:hover {
  opacity: 0.7;
}
.p-fillingTableItem__deleteButton > input {
  display: none;
  width: 100%;
  height: 100%;
}
.p-fillingTableItem__deleteIcon {
  position: absolute;
  width: 17.8px;
  height: 17.8px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-fillingConfirmTableItem__upper {
  height: 62px;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
}

.p-product_inventory__tableBody--numerics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 2px;
}

.p-vegetable_extract_stock__main {
  background-color: #fff;
  padding: 8px 16px;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: calc(100% - 72px - 250px);
}
.p-vegetable_extract_stock__tableHead {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-vegetable_extract_stock__tableHead--mixture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.p-vegetable_extract_stock__tableHeadText--supplementS {
  color: #CACACA;
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.8px;
}
.p-vegetable_extract_stock__tableHeadText--supplementM {
  color: #CACACA;
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.8px;
}
.p-vegetable_extract_stock__tableHeadText--marginLeft {
  margin-left: 4px;
}
.p-vegetable_extract_stock__detailWrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
}
.p-vegetable_extract_stock__detailUnit {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.p-vegetable_extract_stock__detailUnit--empty {
  height: 51px;
}
.p-vegetable_extract_stock__detailName {
  width: 160px;
  padding: 16px 10px 16px 16px;
  color: #50A192;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.2px;
  letter-spacing: 1.4px;
}
.p-vegetable_extract_stock__detailContent {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 16px 20px;
  background-color: #F8F8F8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.p-vegetable_extract_stock__detailContent--empty {
  height: 100%;
}
.p-vegetable_extract_stock__border--bottom {
  border-bottom: 1px solid #DDDDDD;
}
.p-vegetable_extract_stock__border--left {
  border-left: 1px solid #DDDDDD;
}
.p-vegetable_extract_stock__editBody {
  padding-inline: 16px;
  margin-bottom: 56px;
}
.p-vegetable_extract_stock__editBody--last {
  padding-inline: 16px;
  margin-bottom: 128px;
}
.p-vegetable_extract_stock__editBodySize--short {
  width: 344px;
}
.p-vegetable_extract_stock__editBodySize--medium {
  width: 456px;
}
.p-vegetable_extract_stock__wrapper {
  width: 100%;
}

.p-extracts__tableHead--mixture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
  padding: 4px 10px;
}
.p-extracts__tableHead--row {
  height: 100%;
  padding: 4px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.p-extracts__tableHeadText--supplementS {
  color: #999999;
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.8px;
}
.p-extracts__tableHeadText--supplementM {
  color: #999999;
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.8px;
}
.p-extracts__tableHeadText--marginLeft {
  margin-left: 4px;
}
.p-extracts__tableWrap--alignRight {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.p-extracts__container--input {
  width: 100%;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 24px;
}
.p-extracts__headWrapper--withButton {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 24px;
  padding-bottom: 15px;
}
.p-extracts__buttonWrapper--alignRight {
  padding-top: 18px;
  padding-bottom: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-extracts__buttonWrapper--inReference {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-extracts__reference {
  margin-bottom: 16px;
}
.p-extracts__changeModal {
  position: absolute;
  right: 0;
  top: 25px;
  background-color: #494E4D;
  padding: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(49, 55, 54, 0.08), 0px 2px 16px 0px rgba(49, 55, 54, 0.08);
          box-shadow: 0px 1px 4px 0px rgba(49, 55, 54, 0.08), 0px 2px 16px 0px rgba(49, 55, 54, 0.08);
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
.p-extracts__changeRadio p {
  color: #fff;
  white-space: nowrap;
}

.p-extractsTable__td {
  height: 48px;
}
.p-extractsTable__deleteButton {
  display: block;
  background-color: rgba(34, 34, 34, 0.04);
  height: 100%;
  width: 40px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  border-left: 1px solid rgba(34, 34, 34, 0.08);
  border-bottom: 1px solid rgba(34, 34, 34, 0.08);
}
.p-extractsTable__deleteButton:hover {
  opacity: 0.7;
}
.p-extractsTable__deleteIcon {
  position: absolute;
  width: 17.8px;
  height: 17.8px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-inventory_plans__tableBody--numerics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 2px;
}

.p-vegetable_incoming_delivery__container--input {
  width: 100%;
  padding: 0px 24px 40px 24px;
}
.p-vegetable_incoming_delivery__buttonWrapper--alignRight {
  padding-top: 18px;
  padding-bottom: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-vegetable_incoming_delivery__changeLink {
  position: relative;
}
.p-vegetable_incoming_delivery__changeBtn {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
}
.p-vegetable_incoming_delivery__changeBtn::after {
  content: "▲";
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  width: 12px;
  height: 12px;
}
.p-vegetable_incoming_delivery__changeBtn:disabled::after {
  content: "▼";
}
.p-vegetable_incoming_delivery__changeModal {
  position: absolute;
  right: 0;
  top: 25px;
  background-color: #494E4D;
  padding: 16px;
  width: 116px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(49, 55, 54, 0.08), 0px 2px 16px 0px rgba(49, 55, 54, 0.08);
          box-shadow: 0px 1px 4px 0px rgba(49, 55, 54, 0.08), 0px 2px 16px 0px rgba(49, 55, 54, 0.08);
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
.p-vegetable_incoming_delivery__changeRadio p {
  color: #fff;
}

.p-vegetable_incoming_deliveryTableItem__deleteButton {
  display: block;
  background-color: rgba(34, 34, 34, 0.04);
  height: 100%;
  width: 40px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  border-left: 1px solid rgba(34, 34, 34, 0.08);
  border-bottom: 1px solid rgba(34, 34, 34, 0.08);
}
.p-vegetable_incoming_deliveryTableItem__deleteButton:hover {
  opacity: 0.7;
}
.p-vegetable_incoming_deliveryTableItem__deleteIcon {
  position: absolute;
  width: 17.8px;
  height: 17.8px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-product_incoming_delivery__container--input {
  width: 100%;
  padding: 0px 24px 40px 24px;
}
.p-product_incoming_delivery__buttonWrapper--alignRight {
  padding-top: 18px;
  padding-bottom: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-product_incoming_delivery__changeLink {
  position: relative;
}
.p-product_incoming_delivery__changeBtn {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
}
.p-product_incoming_delivery__changeBtn::after {
  content: "▲";
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  width: 12px;
  height: 12px;
}
.p-product_incoming_delivery__changeBtn:disabled::after {
  content: "▼";
}
.p-product_incoming_delivery__changeModal {
  position: absolute;
  right: 0;
  top: 25px;
  background-color: #494E4D;
  padding: 16px;
  width: 116px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(49, 55, 54, 0.08), 0px 2px 16px 0px rgba(49, 55, 54, 0.08);
          box-shadow: 0px 1px 4px 0px rgba(49, 55, 54, 0.08), 0px 2px 16px 0px rgba(49, 55, 54, 0.08);
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
.p-product_incoming_delivery__changeRadio p {
  color: #fff;
}

.p-product_incoming_deliveryTableItem__deleteButton {
  display: block;
  background-color: rgba(34, 34, 34, 0.04);
  height: 100%;
  width: 40px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-product_incoming_deliveryTableItem__deleteButton:hover {
  opacity: 0.7;
}
.p-product_incoming_deliveryTableItem__deleteButton > input {
  display: none;
  width: 100%;
  height: 100%;
}
.p-product_incoming_deliveryTableItem__deleteIcon {
  position: absolute;
  width: 17.8px;
  height: 17.8px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-candied_extract_stock__container--input {
  width: 100%;
  padding: 0px 24px 40px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 24px;
}
.p-candied_extract_stock__headWrapper--withButton {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 24px;
  padding-bottom: 15px;
}
.p-candied_extract_stock__buttonWrapper--alignRight {
  padding-top: 18px;
  padding-bottom: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-candied_extract_stock__buttonWrapper--inReference {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-candied_extract_stock__reference {
  margin-bottom: 16px;
}
.p-candied_extract_stock__changeLink {
  position: relative;
}
.p-candied_extract_stock__changeBtn {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
}
.p-candied_extract_stock__changeBtn::after {
  content: "▲";
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  width: 12px;
  height: 12px;
}
.p-candied_extract_stock__changeBtn:disabled::after {
  content: "▼";
}
.p-candied_extract_stock__changeModal {
  position: absolute;
  right: 0;
  top: 25px;
  background-color: #494E4D;
  padding: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(49, 55, 54, 0.08), 0px 2px 16px 0px rgba(49, 55, 54, 0.08);
          box-shadow: 0px 1px 4px 0px rgba(49, 55, 54, 0.08), 0px 2px 16px 0px rgba(49, 55, 54, 0.08);
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
.p-candied_extract_stock__changeRadio p {
  color: #fff;
  white-space: nowrap;
}

.p-candied_extract_stockTable__td {
  height: 48px;
}
.p-candied_extract_stockTable__deleteButton {
  display: block;
  background-color: rgba(34, 34, 34, 0.04);
  height: 100%;
  width: 40px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  border-left: 1px solid rgba(34, 34, 34, 0.08);
  border-bottom: 1px solid rgba(34, 34, 34, 0.08);
}
.p-candied_extract_stockTable__deleteButton:hover {
  opacity: 0.7;
}
.p-candied_extract_stockTable__deleteButton:has(.--readonly) {
  cursor: default;
}
.p-candied_extract_stockTable__deleteIcon {
  position: absolute;
  width: 17.8px;
  height: 17.8px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-receiving__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 18px;
}
.p-receiving__detail--flexWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 26px;
  gap: 18px 32px;
}
.p-receiving__inputWrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 26px;
}
.p-receiving__inputHead {
  width: 100%;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 26px;
}

.p-receivingTableItem__deleteButton {
  display: block;
  background-color: rgba(34, 34, 34, 0.04);
  height: 100%;
  width: 40px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-receivingTableItem__deleteButton:hover {
  opacity: 0.7;
}
.p-receivingTableItem__deleteButton > input {
  display: none;
  width: 100%;
  height: 100%;
}
.p-receivingTableItem__deleteIcon {
  position: absolute;
  width: 17.8px;
  height: 17.8px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-shipping__tdContainer {
  padding: 0px 8px 8px 8px;
  border-left: 1px solid rgba(34, 34, 34, 0.08);
  border-bottom: 1px solid rgba(34, 34, 34, 0.08);
}

.p-shippingTableItem__deleteButton {
  display: block;
  background-color: rgba(34, 34, 34, 0.04);
  height: 100%;
  width: 40px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}
.p-shippingTableItem__deleteButton:hover {
  opacity: 0.7;
}
.p-shippingTableItem__deleteButton > input {
  display: none;
  width: 100%;
  height: 100%;
}
.p-shippingTableItem__deleteButton:has(input:disabled) {
  cursor: default;
  opacity: 0.3;
}
.p-shippingTableItem__deleteIcon {
  position: absolute;
  width: 17.8px;
  height: 17.8px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-sessionOut__main {
  width: 100dvw;
  height: calc(100dvh - 52px);
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-sessionOut__body {
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-sessionOut__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 4px;
}
.p-sessionOut__title {
  color: #F04D62;
  text-align: center;
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 23.4px;
  letter-spacing: 1.28px;
  font-family: "Roboto Flex", sans-serif;
}
.p-sessionOut__message {
  color: #222222;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 2.4px;
  margin-bottom: 56px;
}

.p-myPage__information {
  width: 100%;
  height: 100%;
  padding: 16px 8px;
}
.p-myPage__body {
  width: 100%;
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 24px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 32px;
}
.p-myPage__profile {
  width: 100%;
  height: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 12px;
}
.p-myPage__icon {
  width: 100%;
  height: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-myPage__detail {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 32px;
}
.p-myPage__detailInner {
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 24px;
  width: 100%;
}
.p-myPage__inputWrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 18px;
  padding-bottom: 32px;
}
.p-myPage__nextWrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 18px;
  padding: 24px 0px 32px 0px;
  border-top: 1px solid #EEEEEE;
}
.p-myPage__inputItem--medium {
  width: 100%;
  max-width: 384px;
}
.p-myPage__inputItem--short {
  width: 100%;
  max-width: 144px;
}

.p-dashboard__main {
  background-color: #fff;
  padding: 16px 24px;
  min-height: calc(100% - 72px);
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.p-measureBody__logTable {
  display: none;
}
.p-measureBody__body {
  padding-inline: 16px;
  width: 100%;
  padding-bottom: 32px;
}
.p-measureBody__body:last-child {
  padding-bottom: 56px;
}
.p-measureBody__inner {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-measureBody__stripe:nth-of-type(odd) .p-measureBody__flexBody--headCell {
  background-color: #6E7674;
}
.p-measureBody__stripe:nth-of-type(odd) .p-measureBody__flexBody--headCell.--selected {
  background-color: #50A192;
}
.p-measureBody__stripe:nth-of-type(odd) .p-measureBody__flexBody--bodyCell,
.p-measureBody__stripe:nth-of-type(odd) .p-measureBody__flexBody--monthCell {
  background-color: rgba(34, 34, 34, 0.02);
}
.p-measureBody__stripe:nth-of-type(odd) .p-measureBody__flexBody--bodyCell:nth-of-type(odd),
.p-measureBody__stripe:nth-of-type(odd) .p-measureBody__flexBody--monthCell:nth-of-type(odd) {
  background-color: #F8F8F8;
}
.p-measureBody__stripe:nth-of-type(odd) .p-measureBody__flexBody--bodyCell.--selected,
.p-measureBody__stripe:nth-of-type(odd) .p-measureBody__flexBody--monthCell.--selected {
  background-color: #E5FBF7;
}
.p-measureBody__stripe:nth-of-type(even) .p-measureBody__flexBody--headCell {
  background-color: #616866;
}
.p-measureBody__stripe:nth-of-type(even) .p-measureBody__flexBody--headCell.--selected {
  background-color: #50A192;
}
.p-measureBody__stripe:nth-of-type(even) .p-measureBody__flexBody--bodyCell,
.p-measureBody__stripe:nth-of-type(even) .p-measureBody__flexBody--monthCell {
  background-color: #fff;
}
.p-measureBody__stripe:nth-of-type(even) .p-measureBody__flexBody--bodyCell:nth-of-type(odd),
.p-measureBody__stripe:nth-of-type(even) .p-measureBody__flexBody--monthCell:nth-of-type(odd) {
  background-color: rgba(34, 34, 34, 0.02);
}
.p-measureBody__stripe:nth-of-type(even) .p-measureBody__flexBody--bodyCell.--selected,
.p-measureBody__stripe:nth-of-type(even) .p-measureBody__flexBody--monthCell.--selected {
  background-color: #E5FBF7;
}
.p-measureBody__stripe--head .p-measureBody__flexBody--bodyHead:nth-of-type(even),
.p-measureBody__stripe--head .p-measureBody__flexBody--month:nth-of-type(even) {
  background-color: #F8F8F8;
}
.p-measureBody__stripe--head .p-measureBody__flexBody--bodyHead.--selected,
.p-measureBody__stripe--head .p-measureBody__flexBody--month.--selected {
  background-color: #E5FBF7;
}
.p-measureBody__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
}
.p-measureBody__flexBody--first, .p-measureBody__flexBody--firstTypeLog {
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  width: 56px;
  height: 96px;
  background-color: #616866;
  border-radius: 6px 0px 0px 0px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.p-measureBody__flexBody--firstTypeLog {
  height: 64px;
}
.p-measureBody__flexBody--date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  width: 56px;
  height: 178px;
  padding: 8px;
  background-color: #fff;
  border-right: 1px solid rgba(34, 34, 34, 0.08);
  border-bottom: 2px solid #DDDDDD;
}
.p-measureBody__flexBody--dateTypeLog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  width: 56px;
  height: 133px;
  padding: 8px;
  background-color: #fff;
  border-right: 1px solid rgba(34, 34, 34, 0.08);
  border-bottom: 2px solid #DDDDDD;
}
.p-measureBody__flexBody--head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  width: 92px;
  height: 32px;
  padding: 4px 7px;
  background-color: #616866;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.p-measureBody__flexBody--inputBodyHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  width: 92px;
  height: 48px;
  padding: 4px 8px;
  background-color: #EEEEEE;
  border-bottom: 1px solid #DDDDDD;
  border-right: 1px solid #DDDDDD;
}
.p-measureBody__flexBody--inputBodyHead.--selected {
  background-color: #E5FBF7;
}
.p-measureBody__flexBody--inputBodyHead.--selected p {
  color: #50A192;
}
.p-measureBody__flexBody--bodyHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  width: 92px;
  height: 33px;
  padding: 4px 8px;
  background-color: #EEEEEE;
  border-bottom: 1px solid #DDDDDD;
  border-right: 1px solid #DDDDDD;
}
.p-measureBody__flexBody--bodyHead.--selected {
  background-color: #E5FBF7;
}
.p-measureBody__flexBody--bodyHead.--selected p {
  color: #50A192;
}
.p-measureBody__flexBody--headCell {
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  width: 88px;
  height: 32px;
  padding: 4px 8px;
  background-color: #616866;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.p-measureBody__flexBody--headCell.--selected {
  background-color: #50A192;
}
.p-measureBody__flexBody--bodyCell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  width: 88px;
  height: 33px;
  padding: 10px;
  background-color: #fff;
  border-left: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
}
.p-measureBody__flexBody--bodyCell.--selected {
  background-color: #E5FBF7;
}
.p-measureBody__flexBody--inputBodyCell {
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0px;
  width: 88px;
  height: 48px;
  background-color: #fff;
  border-bottom: 1px solid #DDDDDD;
  border-left: 1px solid #DDDDDD;
}
.p-measureBody__tableHead {
  width: 88px;
  height: 32px;
  padding: 4px 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.p-measureBody__tableHead--roundedCorners > th:first-of-type {
  border-radius: 6px 0px 0px 0px;
}
.p-measureBody__tableHead--roundedCorners > th:last-of-type {
  border-radius: 0px 6px 0px 0px;
}
.p-measureBody__tableHead--alternateBgColor > th:nth-child(odd of .p-measureBody__tableHead) {
  background-color: #6E7674;
}
.p-measureBody__tableHead--alternateBgColor > th:nth-child(even of .p-measureBody__tableHead) {
  background-color: #616866;
}
.p-measureBody__tableHead--alternateBgColor > th:nth-child(1 of .--selected) {
  background-color: #50A192;
}
.p-measureBody__tableHead--stickyRow {
  position: sticky;
  top: 0;
  left: 56px;
  z-index: 2;
  background-color: inherit;
}
.p-measureBody__tableHead--firstColumn {
  width: 56px;
  padding: 4px 8px;
  background-color: #616866;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
  white-space: nowrap;
}
.p-measureBody__tableHead--secondColumn {
  width: 92px;
  height: 32px;
  padding: 4px 8px;
  background-color: #616866;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
  white-space: nowrap;
}
.p-measureBody__tableBlock {
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.p-measureBody__tableDate {
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.p-measureBody__tableDate--supplement {
  padding-top: 8px;
  border-top: 1px solid #EEEEEE;
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 1px;
}
.p-measureBody__tableText--fontSizeL {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 20.8px;
  letter-spacing: 1.28px;
}
.p-measureBody__tableText--fontSizeM {
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 1.04px;
}
.p-measureBody__tableText--fontSizeS {
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 0.8px;
}
.p-measureBody__tableText--regular {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.96px;
}
.p-measureBody__tableText--low {
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.8px;
}
.p-measureBody__tableText--year {
  color: #999999;
  font-size: 12px;
  font-weight: 600;
  line-height: 15.6px;
  letter-spacing: 0.48px;
}
.p-measureBody__tableText--month {
  color: #222222;
  font-size: 26px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0.52px;
}
.p-measureBody__tableText--bodyHead {
  color: #222222;
  font-size: 13px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 1.04px;
}
.p-measureBody__tableText--bodyHead > span {
  color: #999999;
  font-size: 13px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 1.04px;
}
.p-measureBody__tableText--primaryNumber {
  color: #222222;
  text-align: right;
  font-size: 14px;
  font-weight: 600;
  line-height: 16.9px;
  letter-spacing: 1.12px;
}
.p-measureBody__tableText--number {
  color: #222222;
  text-align: right;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 1.12px;
}
.p-measureBody__tableText--numerics {
  color: #222222;
  text-align: right;
  font-size: 13px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 1.04px;
}
.p-measureBody__tableSupplement--year {
  color: #999999;
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.8px;
}
.p-measureBody__tableSupplement--date {
  color: #222222;
  font-size: 13px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 1.04px;
}
.p-measureBody__tableBody {
  padding: 10px;
  width: 88px;
  height: 33px;
  border-right: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
}
.p-measureBody__tableBody--input {
  width: 88px;
  height: 48px;
  border-right: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
}
.p-measureBody__tableBody--firstColumn {
  width: 56px;
  padding: 8px;
  background-color: #fff;
  border-right: 1px solid rgba(34, 34, 34, 0.08);
  border-bottom: 1px solid rgba(34, 34, 34, 0.08);
  text-align: left;
  white-space: nowrap;
  vertical-align: baseline;
}
.p-measureBody__tableBody--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 2px;
}
.p-measureBody__tableBody--secondOddColumn {
  width: 92px;
  padding: 8px;
  border-right: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  text-align: left;
  white-space: nowrap;
  -webkit-box-shadow: 2px 0px 6px 0px rgba(49, 50, 50, 0.16);
          box-shadow: 2px 0px 6px 0px rgba(49, 50, 50, 0.16);
  background-color: #EEEEEE;
}
.p-measureBody__tableBody--secondOddColumn.--selected {
  background-color: #E5FBF7;
}
.p-measureBody__tableBody--secondEvenColumn {
  width: 92px;
  padding: 8px;
  border-right: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  text-align: left;
  white-space: nowrap;
  -webkit-box-shadow: 2px 0px 6px 0px rgba(49, 50, 50, 0.16);
          box-shadow: 2px 0px 6px 0px rgba(49, 50, 50, 0.16);
  background-color: #F8F8F8;
}
.p-measureBody__tableBody--secondEvenColumn.--selected {
  background-color: #E5FBF7;
}
.p-measureBody__tableBody--alternateBgColor > td:nth-of-type(2n+1) {
  background-color: rgba(34, 34, 34, 0.02);
}
.p-measureBody__tableBody--alternateBgColor > td:nth-of-type(2n) {
  background-color: #F8F8F8;
}
.p-measureBody__tableBody--alternateBgColor > td:nth-child(n of .--selected) {
  background-color: #E5FBF7;
}
.p-measureBody__tableUnit {
  border-bottom: 1px solid #DDDDDD;
}
.p-measureBody__floatUnit {
  border-bottom: 1px solid #DDDDDD;
  -webkit-box-shadow: 2px 0px 6px 0px rgba(49, 50, 50, 0.16);
          box-shadow: 2px 0px 6px 0px rgba(49, 50, 50, 0.16);
}

@media print {
  .l-header,
  .l-globalNav,
  .c-bottomBtnSet {
    display: none !important;
  }
  .p-vegetable_extract_stock__detailName {
    color: #222222 !important;
  }
  .p-main,
  .p-main--withCheckPanel {
    width: 100%;
    height: auto !important;
    margin-top: 0;
    border-radius: 0 0 0 0 !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  .p-vegetable_extract_stock__detailContent {
    border-left: 1px solid #DDDDDD;
    padding-top: 9px;
    padding-bottom: 8px;
  }
  .p-main__head {
    border-radius: 0 0 0 0 !important;
  }
  .print-hidden {
    display: none !important;
  }
  .p-combination__headTr--upperColor th:nth-child(3).is-active {
    background-color: #616866;
    height: 55px;
  }
  .p-combination__bodyTr--color td:nth-child(4).is-active {
    background-color: transparent;
  }
  .p-combination__bodyTr--color td:nth-child(5).is-active {
    background-color: transparent;
  }
  .p-combination__body {
    margin-bottom: 0;
  }
  .p-combination__tableHead {
    background-color: #616866 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .p-vegetable_extract_stock__border--bottom {
    border-bottom: none !important;
  }
  .p-main__body--input {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .p-detail {
    gap: 10px;
  }
  .p-combination__information {
    padding-top: 10px;
    margin-bottom: 10px;
    gap: 10px;
  }
  .page-break {
    display: block;
    page-break-before: always;
    -webkit-column-break-before: page;
       -moz-column-break-before: page;
            break-before: page;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .c-table__wrap--fit {
    height: auto;
  }
  .p-combination__tableItem--numerics {
    height: auto;
  }
  .c-table__border td {
    border-bottom: 1px solid #DDDDDD;
  }
  .c-inputBody {
    border-top: none;
  }
  .c-table__normal td:last-child {
    border-right: 1px solid #DDDDDD;
  }
  .c-inputBody {
    padding-top: 0;
  }
  .p-combination__information {
    padding-top: 0;
  }
  .p-combination__container--select {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
    width: 100%;
  }
  .p-combination__container--select .p-combinationDetail__selectWrapper {
    max-width: 30%;
    width: 100%;
  }
  .p-combination__box {
    width: 100%;
  }
  .c-detail__inputWrapper {
    width: 100%;
  }
  .p-combination__container--select .p-components__select {
    width: 100%;
  }
  .p-combination__container--select .c-selectBox--normal {
    height: 40px;
  }
  .c-table__input--numerics {
    padding-top: 0;
    padding-bottom: 0;
  }
  .c-table__wrap--body {
    padding-top: 0;
    padding-bottom: 0;
  }
  .c-tableTextarea.--error > textarea,
  .c-tableTextarea > textarea {
    height: 13px;
    min-height: 13px;
    line-height: 13px;
    padding: 0;
    border: none;
    resize: none;
    background: none;
  }
  .c-inputTextarea > textarea {
    resize: none;
  }
  .js-errors,
  .c-input__error {
    display: none !important;
  }
  .c-inputCalender.--error > .c-inputText > input,
  .c-inputCalender.--error > .c-inputText--sizeL > input,
  .c-inputTextarea.--error > textarea,
  .c-selectBox__inner--normal.--error {
    background-color: #fff !important;
    border-color: #999999 !important;
  }
  .c-table__input--numerics > input {
    border: none;
  }
}
.u-margin--10 {
  margin-top: 10px;
}

.u-preload * {
  -webkit-transition: none !important;
  transition: none !important;
}

.u-unimplemented {
  position: relative;
  opacity: 0.7;
}
.u-unimplemented::after {
  content: "※準備中";
  display: block;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 5px 10px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  border: 1px solid #222222;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 400;
  line-height: 10px;
  letter-spacing: 0.8px;
  opacity: 0.9;
}

.u-color--minus {
  color: #F04D62;
}
.u-color--plus {
  color: #4DAA13;
}