@charset "UTF-8";
/* ################################################## */
/* Base */
/* ################################################## */
*,
*::before,
*::after {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: 1;
}

html {
  font-family: "Noto Sans JP", sans-serif;
}

html {
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  background-color: #e6e6e6;
  color: #555;
  font-size: 14px;
  line-height: 1;
  overflow: auto;
}

input[type=text],
input[type=password],
textarea {
  font-family: "Noto Sans JP";
}

/* ################################################## */
/* Heading */
/* ################################################## */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  line-height: 1;
}

h1 {
  font-size: 18px;
}

h2 {
  font-size: 16px;
}

h3, h4, h5, h6 {
  font-size: 14px;
}

/* ################################################## */
/* Global Style */
/* ################################################## */
/* Global Style » Grid */
/* ================================================== */
.gr-row--start {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.gr-row--center {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.gr-row--end {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

.gr-row-start-start {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}

.gr-row-start-center {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.gr-row-start-end {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
}

.gr-row-center-start {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

.gr-row-center-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.gr-row-center-end {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
}

.gr-row-end-start {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
}

.gr-row-end-center {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.gr-row-end-end {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
}

.gr-col--start {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.gr-col--center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gr-col--end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.gr-col-start-start {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.gr-col-start-center {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.gr-col-start-end {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}

.gr-col-center-start {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.gr-col-center-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gr-col-center-end {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.gr-col-end-start {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.gr-col-end-center {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.gr-col-end-end {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

.gs-row {
  display: flex;
  flex-direction: row;
}

.gs-col {
  display: flex;
  flex-direction: column;
}

/* Global Style » Text */
/* ================================================== */
.gs-ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.gs-clamp2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-all;
  line-height: 1.1;
}

.gs-clamp3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  word-break: break-all;
  line-height: 1.1;
}

.gs-clamp4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  word-break: break-all;
  line-height: 1.1;
}

/* ################################################## */
/* grid */
/* ################################################## */
.container {
  display: grid;
  grid-template-rows: 48px calc(100dvh - 48px - 48px) 48px;
}
.container.op-tNoFooter {
  grid-template-rows: 48px calc(100dvh - 48px);
}

@media (max-width: 768px) {
  .container {
    display: grid;
    grid-template-rows: 36px calc(100dvh - 36px - 48px) 48px;
  }
  .container.op-tNoFooter {
    grid-template-rows: 36px calc(100dvh - 36px);
  }
}
.cp-header {
  grid-row: 1/2;
  z-index: 20;
}

.cp-content {
  grid-row: 2/3;
  z-index: 1;
  padding: 0 12px;
}

.cp-footer {
  grid-row: 3/4;
  z-index: 10;
}
.op-tNoFooter .cp-footer {
  display: none;
}

/* Button */
/* ################################################# */
.el-button {
  display: inline-block;
  padding: 9px;
  height: 36px;
  border: 1px solid transparent;
  border-radius: 2px;
  background-color: hsl(210, 30%, 93%);
  color: hsl(210, 30%, 30%);
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.3);
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}
.el-button:hover {
  background-color: hsl(210, 100%, 95%);
  color: #111;
  cursor: pointer;
}
.el-button:disabled {
  background-color: hsl(210, 20%, 85%);
  color: hsl(210, 10%, 50%);
}
.el-button:disabled:hover {
  cursor: not-allowed;
}
.el-button.op-cPrimary {
  background-color: hsl(210, 80%, 40%);
  color: hsl(210, 100%, 95%);
}
.el-button.op-cPrimary:hover {
  background-color: hsl(210, 100%, 45%);
  color: #fff;
}
.el-button.op-cPrimary:disabled {
  background-color: hsl(210, 50%, 40%);
  color: hsl(210, 30%, 70%);
}
.el-button.op-cCurrent {
  background-color: hsl(160, 50%, 30%);
  color: hsl(160, 100%, 95%);
  pointer-events: none;
}
.el-button.op-cCurrent:hover {
  background-color: hsl(160, 100%, 35%);
  color: #fff;
}
.el-button.op-cCurrent:disabled {
  background-color: hsl(160, 20%, 30%);
  color: hsl(160, 30%, 70%);
  pointer-events: auto;
}
.el-button.op-cCurrent:disabled:hover {
  cursor: not-allowed;
}
.el-button.op-cCaution {
  background-color: hsl(0, 60%, 50%);
  color: hsl(0, 100%, 95%);
}
.el-button.op-cCaution:hover {
  background-color: hsl(0, 80%, 55%);
  color: #fff;
}
.el-button.op-cCaution:disabled {
  background-color: hsl(0, 40%, 40%);
  color: hsl(0, 30%, 70%);
}
.el-button.op-cError {
  background-color: hsl(0, 60%, 80%);
  color: hsl(0, 100%, 30%);
}
.el-button.op-cError:hover {
  background-color: hsl(0, 60%, 70%);
  color: #fff;
}
.el-button.op-cError:disabled {
  background-color: hsl(0, 40%, 65%);
  color: hsl(0, 40%, 35%);
}
.el-button.op-cCaution.op-tTransparent {
  background-color: transparent;
  /* color: $cTextCaution */
}
.el-button.op-cCaution.op-tTransparent:hover {
  background-color: hsl(0, 80%, 55%);
  color: #fff;
}
.el-button.op-cCaution.op-tTransparent:disabled {
  background-color: transparent;
  color: #966;
}
.el-button.op-cCaution.op-tTransparent:hover:disabled {
  background-color: transparent;
}
.el-button.op-sS {
  padding: 4px 12px;
  height: 24px;
  font-size: 14px;
}
.el-button.op-sL {
  padding: 11px 24px;
  height: 48px;
  font-size: 24px;
}
.el-button.op-sF {
  width: 100%;
}
.el-button.op-tFlat {
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: none;
}
.el-button.op-tFlat:hover {
  border-color: transparent;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.3);
}
.el-button.op-tFlat:hover:disabled {
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: none;
}
.el-button.op-tUnderline {
  border-width: 0 1px 2px 0;
  border-color: transparent transparent rgba(0, 0, 0, 0.3) transparent;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
}
.el-button.op-tUnderline:hover {
  background-color: hsl(210, 100%, 95%);
}
.el-button.op-tUnderline:hover:disabled {
  background-color: transparent;
}
.el-button.op-tUnderline.op-currentPlace {
  border-bottom-color: hsl(160, 50%, 30%);
  background-color: inherit;
  color: inherit;
}
.el-button.op-tUnderline.op-currentPlace > i {
  color: hsl(160, 50%, 30%);
}
.el-button.op-tTransparent {
  background-color: transparent;
  color: #555;
  box-shadow: none;
}
.el-button.op-tTransparent:hover {
  background-color: hsl(210, 100%, 95%);
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.3);
}
.el-button.op-tTransparent:disabled {
  background-color: transparent;
  color: #999;
}
.el-button.op-tTransparent:disabled:hover {
  box-shadow: none;
}
.el-button.op-currentPlace {
  background-color: hsl(160, 50%, 30%);
  color: #fff;
  pointer-events: none;
}
.el-button.op-fClear {
  margin: 2px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
}
.el-button.op-fClear:hover {
  background-color: rgba(0, 0, 0, 0.15);
}

/* Button » Module */
/* ================================================= */
.md-button.op-copyPaste {
  padding-top: 15px;
  height: 100%;
  min-height: 51px;
}
.md-button.op-copyPaste .el-button {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 36px;
  white-space: normal;
}
.md-button.op-copyPaste .el-button i:nth-of-type(1) {
  margin-left: 9px;
  margin-right: 3px;
}
.md-button.op-copyPaste .el-button:hover {
  background-color: inherit;
  color: hsl(210, 80%, 40%);
}
.md-button.op-copyPaste .el-button:hover i:nth-of-type(1) {
  margin-left: 3px;
  margin-right: 9px;
}
.md-button.op-copyPaste .ls-label {
  margin-left: 0.25em;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* Button » Module » Search Box */
/* ================================================= */
.md-search > div {
  display: inline-block;
}

/* Button » Module » Footer */
/* ================================================= */
.cp-footer .el-button {
  min-width: 150px;
}

.md-function {
  display: flex;
  flex-direction: row;
}
.md-function.op-batch {
  padding-left: 15px;
}
.md-function .el-button {
  margin-right: 12px;
}

.md-functionRight {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.md-functionRight .el-button {
  margin-left: 12px;
}

@media (max-width: 1024px) {
  .md-functionRight {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .md-functionRight .el-button {
    margin-left: 6px;
    margin-right: 6px;
  }
}
.md-okCancel {
  display: flex;
  flex-direction: row;
}
.md-okCancel .ls-cancel,
.md-okCancel .ls-ok,
.md-okCancel .ls-add {
  min-width: 120px;
}
.md-okCancel .ls-cancel {
  margin-right: 12px;
}
.md-okCancel .ls-delete {
  min-width: 0;
  width: 70px;
}
.md-okCancel .ls-option {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 15px;
  padding: 0 6px;
  border: 2px solid hsl(210, 80%, 40%);
  border-radius: 3px;
  color: #555;
}
.md-okCancel .ls-option::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 100%;
  top: 50%;
  transform: translate(0, -50%);
  border-width: 8px 15px;
  border-style: solid;
  border-color: transparent transparent transparent hsl(210, 80%, 40%);
}
.md-okCancel .ls-option::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: calc(100% - 2px);
  top: 50%;
  transform: translate(0, -50%);
  border-width: 6px 13px;
  border-style: solid;
  border-color: transparent transparent transparent hsl(210, 100%, 95%);
}

/* Button » Module » Search */
/* ================================================= */
.md-itemRow {
  position: relative;
  display: flex;
  flex-direction: row;
  padding: 0 12px 12px;
  gap: 6px;
  min-height: 48px;
  border-radius: 2px;
  background-color: #f0f0f0;
}
.md-heading + .md-itemRow {
  padding-top: 12px;
}
.md-itemRow.op-header {
  min-height: 0;
  padding-bottom: 3px;
}
.md-itemRow.op-separator {
  padding-top: 12px;
  border-top: 1px dashed #666;
}
.md-itemRow.op-guidance {
  min-height: 0;
}
.md-itemRow.op-guidance .ls-item {
  padding-bottom: 0.25em;
  width: 100%;
  border-bottom: 1px solid #999;
}
.md-itemRow.op-guidance .ls-item > i {
  font-size: 1.25em;
}
.md-itemRow.op-caution {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 0;
}
.md-itemRow.op-caution .ls-item {
  position: relative;
  padding-left: 1.5em;
  color: #c00;
  line-height: 1.25;
}
.md-itemRow.op-caution .ls-item i {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.25em;
}
.md-itemRow.op-caution .ls-item + .ls-item {
  margin-top: 0.5em;
}
.md-itemRow .ls-apply input[type=text] {
  padding-right: 3em;
  text-align: right;
}
.md-itemRow .ls-execute {
  text-align: center;
}
.md-itemRow .ls-execute .el-button {
  min-width: 140px;
  width: 40%;
}
.md-itemRow h3 {
  padding: 6px;
  width: 100%;
  background-color: #999;
  color: #fff;
}
.md-itemRow h4 {
  padding: 6px 12px;
  background-color: #999;
  color: #fff;
}

@media (max-width: 768px) {
  .md-itemRow {
    display: flex;
    flex-direction: column;
  }
}
.md-itemRowGroup {
  padding: 0 12px 12px;
  background-color: #f0f0f0;
}
.md-itemRowGroup h3 {
  padding: 0 6px 3px;
  font-size: 14px;
  font-weight: bold;
}
.md-itemRowGroup .ls-inner {
  padding-top: 12px;
  border: 1px solid #999;
}

.md-heading + .md-itemRowGroup {
  padding-top: 12px;
}

/* ------------------------------------------------- */
.md-inputItem {
  position: relative;
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 12px;
  border-radius: 2px;
  background-color: #f0f0f0;
}
.md-inputItem.op-wrap {
  flex-wrap: wrap;
}
.md-heading + .md-inputItem {
  margin-top: 9px;
}
.md-inputItem > div {
  flex: 1 1 auto;
}
.md-inputItem > div:not(:last-of-type) {
  margin-right: 12px;
}

/* 2025-01-15a : no Ticket */
.md-itemsPerPage {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: 24px;
}
.md-itemsPerPage .ls-select {
  width: 80px;
}
.md-itemsPerPage .el-inputText {
  width: 75px;
}
.md-itemsPerPage .ls-unit {
  white-space: nowrap;
}
@media (max-width: 1570px) {
  .md-itemsPerPage {
    margin-left: 10px;
  }
}

/* /2025-01-15a : no Ticket */
/* 2024-03-25a : G-903 */
.md-pageButton {
  margin-left: 24px;
  padding-right: 6px;
  font-size: 0;
}
.md-pageButton .el-button {
  padding: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
}
.md-pageButton .el-button.op-tTransparent.op-cCurrent {
  background-color: hsl(160, 50%, 30%);
  color: hsl(160, 100%, 95%);
}
@media (max-width: 1570px) {
  .md-pageButton {
    margin-left: 10px;
  }
}

/* /2024-03-25a : G-903 */
/* ------------------------------------------------- */
.md-inputFile {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 6px;
  margin-right: 6px;
  padding: 12px;
  border-radius: 2px;
  background-color: #f0f0f0;
}
.md-inputFile .ls-item {
  display: flex;
  flex-direction: row;
}
.md-inputFile .ls-item:not(:first-of-type) {
  margin-top: 6px;
}
.md-inputFile .ls-item .el-inputFile {
  flex: 1 1 auto;
}
.md-inputFile .ls-item .el-button {
  flex: 0 0 auto;
}

/* Input Text */
/* ################################################# */
/* 2024-06-18a : G-1049 */
.md-inputText {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  min-width: 36px;
}
.md-inputText.op-nonEditable .el-inputText input[type=text]:disabled,
.md-inputText.op-nonEditable .el-inputText input[type=time]:disabled {
  color: #555;
  background-color: transparent;
}
.md-inputText.op-nonEditable .el-inputText.op-cCaution input[type=text]:disabled,
.md-inputText.op-nonEditable .el-inputText.op-cCaution input[type=time]:disabled {
  color: #d00;
  font-weight: bold;
}
.md-inputText.op-nonEditable .ls-trigger {
  display: none;
}

/* /2024-06-18a : G-1049 */
/* 2024-06-18a : G-1049 */
.el-inputText {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.el-inputText input[type=text],
.el-inputText input[type=time],
.el-inputText input[type=password] {
  padding: 9px 6px;
  width: 100%;
  height: 36px;
  border: 1px solid #c5c5c5;
  border-radius: 2px;
  background-color: #fff;
  font-size: 16px;
  line-height: normal;
}
.el-inputText input[type=text]:focus,
.el-inputText input[type=time]:focus,
.el-inputText input[type=password]:focus {
  background-color: #ffd;
}
.el-inputText input[type=text]:disabled,
.el-inputText input[type=time]:disabled,
.el-inputText input[type=password]:disabled {
  background-color: #ddd;
  color: #999;
  pointer-events: none;
}
.el-inputText.op-cError {
  display: block;
}
.el-inputText.op-cError input[type=text],
.el-inputText.op-cError input[type=time],
.el-inputText.op-cError input[type=password] {
  background-color: #faa;
}
.el-inputText.op-cCaution input[type=text],
.el-inputText.op-cCaution input[type=time] {
  color: #d00;
  font-weight: bold;
}
.el-inputText.op-sS input[type=text],
.el-inputText.op-sS input[type=time],
.el-inputText.op-sS input[type=password] {
  padding: 4px 6px;
  height: 24px;
  font-size: 14px;
}
.el-inputText.op-sL input[type=text],
.el-inputText.op-sL input[type=time],
.el-inputText.op-sL input[type=password] {
  padding: 11px 6px;
  height: 48px;
  font-size: 24px;
}
.el-inputText.op-tUnderline input[type=text],
.el-inputText.op-tUnderline input[type=time],
.el-inputText.op-tUnderline input[type=password] {
  border-color: transparent transparent #c5c5c5 transparent;
  border-radius: 0;
  background-color: transparent !important;
}
.el-inputText.op-tUnderline input[type=text]:focus,
.el-inputText.op-tUnderline input[type=time]:focus,
.el-inputText.op-tUnderline input[type=password]:focus {
  background-color: #ffd;
}
.el-inputText.op-tUnderline input[type=text]:disabled,
.el-inputText.op-tUnderline input[type=time]:disabled,
.el-inputText.op-tUnderline input[type=password]:disabled {
  background-color: #ddd;
  color: #999;
}
.el-inputText.op-tUnderline.op-cError input[type=text],
.el-inputText.op-tUnderline.op-cError input[type=time],
.el-inputText.op-tUnderline.op-cError input[type=password] {
  background-color: #faa;
}
.el-inputText.op-fClear input[type=text],
.el-inputText.op-fClear input[type=time],
.el-inputText.op-fClear input[type=password] {
  padding-right: 36px;
}
.el-inputText.op-fClear .ls-trigger {
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translate(0, -50%);
  padding: 0;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
}
.el-inputText.op-fClear .ls-trigger:hover {
  background-color: rgba(0, 0, 0, 0.15);
  box-shadow: none;
}
.el-inputText.op-fClear.op-sS input[type=text],
.el-inputText.op-fClear.op-sS input[type=time],
.el-inputText.op-fClear.op-sS input[type=password] {
  padding-right: 24px;
}
.el-inputText.op-fClear.op-sS .ls-trigger {
  width: 20px;
  height: 20px;
}
.el-inputText.op-fClear.op-sL input[type=text],
.el-inputText.op-fClear.op-sL input[type=time],
.el-inputText.op-fClear.op-sL input[type=password] {
  padding-right: 48px;
}
.el-inputText.op-fClear.op-sL .ls-trigger {
  width: 44px;
  height: 44px;
}
.el-inputText.op-fDropdown input[type=text],
.el-inputText.op-fDropdown input[type=time] {
  padding-right: 36px;
}
.el-inputText.op-fDropdown input[type=text]:disabled,
.el-inputText.op-fDropdown input[type=time]:disabled {
  color: #111;
  background-color: #fff;
}
.el-inputText.op-fDropdown input[type=text]:hover,
.el-inputText.op-fDropdown input[type=time]:hover {
  background-color: hsl(210, 100%, 95%);
  cursor: pointer;
}
.el-inputText.op-fDropdown .el-button.ls-trigger {
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translate(0, -50%);
  padding: 0 9px 0 0;
  width: 32px;
  height: 32px;
  border-radius: 0;
  text-align: right;
  pointer-events: none;
}
.el-inputText.op-fDropdown input[type=text]:focus + .ls-trigger:hover,
.el-inputText.op-fDropdown input[type=time]:focus + .ls-trigger:hover {
  background-color: transparent;
}
.el-inputText.op-fDropdown.op-sS input[type=text],
.el-inputText.op-fDropdown.op-sS input[type=time] {
  padding-right: 24px;
}
.el-inputText.op-fDropdown.op-sS .el-button.ls-trigger {
  width: 20px;
  height: 20px;
}
.el-inputText.op-fDropdown.op-sL input[type=text],
.el-inputText.op-fDropdown.op-sL input[type=time] {
  padding-right: 48px;
}
.el-inputText.op-fDropdown.op-sL .el-button.ls-trigger {
  width: 44px;
  height: 44px;
}
.el-inputText.op-fComboBox input[type=text],
.el-inputText.op-fComboBox input[type=time] {
  padding-right: 36px;
}
.el-inputText.op-fComboBox .el-button.ls-trigger {
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translate(0, -50%);
  padding: 0;
  width: 32px;
  height: 32px;
  border-left-color: rgba(0, 0, 0, 0.1);
  border-radius: 0;
}
.el-inputText.op-fComboBox .el-button.ls-trigger:hover {
  background-color: rgba(0, 0, 0, 0.15);
}
.el-inputText.op-fComboBox.op-sS input[type=text],
.el-inputText.op-fComboBox.op-sS input[type=time] {
  padding-right: 24px;
}
.el-inputText.op-fComboBox.op-sS .el-button.ls-trigger {
  width: 20px;
  height: 20px;
}
.el-inputText.op-fComboBox.op-sL input[type=text],
.el-inputText.op-fComboBox.op-sL input[type=time] {
  padding-right: 48px;
}
.el-inputText.op-fComboBox.op-sL .el-button.ls-trigger {
  width: 44px;
  height: 44px;
}
.el-inputText.op-fClear.op-fComboBox input[type=text],
.el-inputText.op-fClear.op-fComboBox input[type=time],
.el-inputText.op-fClear.op-fComboBox input[type=password] {
  padding-right: 72px;
}
.op-nonEditable .el-inputText.op-fClear.op-fComboBox input[type=text],
.op-nonEditable .el-inputText.op-fClear.op-fComboBox input[type=time],
.op-nonEditable .el-inputText.op-fClear.op-fComboBox input[type=password] {
  padding-right: 6px;
}
.el-inputText.op-fClear.op-fComboBox .el-button.ls-trigger {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  width: 32px;
  height: 32px;
}
.el-inputText.op-fClear.op-fComboBox .el-button.ls-trigger:nth-of-type(1) {
  right: 36px;
  border-radius: 50%;
}
.el-inputText.op-fClear.op-fComboBox .el-button.ls-trigger:nth-of-type(1) i {
  font-weight: 300;
}
.el-inputText.op-fClear.op-fComboBox .el-button.ls-trigger:nth-of-type(2) {
  right: 2px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
}
.el-inputText.op-fClear.op-fComboBox .el-button.ls-trigger:hover {
  background-color: rgba(0, 0, 0, 0.15);
  box-shadow: none;
}
.el-inputText.op-fClear.op-fComboBox.op-sS input[type=text],
.el-inputText.op-fClear.op-fComboBox.op-sS input[type=time],
.el-inputText.op-fClear.op-fComboBox.op-sS input[type=password] {
  padding-right: 48px;
}
.el-inputText.op-fClear.op-fComboBox.op-sS input[type=text] .ls-trigger:nth-of-type(1),
.el-inputText.op-fClear.op-fComboBox.op-sS input[type=time] .ls-trigger:nth-of-type(1),
.el-inputText.op-fClear.op-fComboBox.op-sS input[type=password] .ls-trigger:nth-of-type(1) {
  right: 26px;
}
.el-inputText.op-fClear.op-fComboBox.op-sL input[type=text],
.el-inputText.op-fClear.op-fComboBox.op-sL input[type=time],
.el-inputText.op-fClear.op-fComboBox.op-sL input[type=password] {
  padding-right: 96px;
}
.el-inputText.op-fClear.op-fComboBox.op-sL input[type=text] .ls-trigger:nth-of-type(1),
.el-inputText.op-fClear.op-fComboBox.op-sL input[type=time] .ls-trigger:nth-of-type(1),
.el-inputText.op-fClear.op-fComboBox.op-sL input[type=password] .ls-trigger:nth-of-type(1) {
  right: 40px;
}
.el-inputText.op-fClear.op-fFuzzy input[type=text],
.el-inputText.op-fClear.op-fFuzzy input[type=time],
.el-inputText.op-fClear.op-fFuzzy input[type=password] {
  padding-right: 72px;
}
.el-inputText.op-fClear.op-fFuzzy .el-checkBox.ls-fuzzy {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  right: 34px;
  border-radius: 50%;
}
.el-inputText.op-fClear.op-fFuzzy .el-checkBox.ls-fuzzy .ls-label {
  padding: 6px 9px;
  height: 24px;
  border: 2px dashed #ddd;
  border-radius: 12px;
  font-size: 12px;
  letter-spacing: -1px;
}
.el-inputText.op-fClear.op-fFuzzy .el-checkBox.ls-fuzzy .ls-label::before {
  content: none;
}
.el-inputText.op-fClear.op-fFuzzy .el-checkBox.ls-fuzzy :checked + .ls-label {
  border: 2px solid hsl(160, 50%, 30%);
  background-color: hsl(160, 50%, 30%);
  color: #fff;
}
.el-inputText.op-aPrefix1 input[type=text],
.el-inputText.op-aPrefix1 input[type=time] {
  padding-left: 36px;
}
.el-inputText.op-aPrefix1 .ls-prefix {
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translate(0, -50%);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 32px;
  height: 32px;
  border: none;
}
.el-inputText.op-aPrefix4 input[type=text],
.el-inputText.op-aPrefix4 input[type=time] {
  padding-left: 100px;
}
.el-inputText.op-aPrefix4 .ls-prefix {
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translate(0, -50%);
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  width: 80px;
  height: 32px;
  border: none;
}
.el-inputText.op-aSuffix1 input[type=text],
.el-inputText.op-aSuffix1 input[type=time] {
  padding-right: 36px;
  text-align: right;
}
.el-inputText.op-aSuffix1 .ls-suffix {
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translate(0, -50%);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 32px;
  height: 32px;
  border: none;
}
.el-inputText.op-nonEditable input[type=text]:disabled,
.el-inputText.op-nonEditable input[type=time]:disabled {
  color: #555;
  background-color: transparent;
}

/* /2024-06-18a : G-1049 */
/* Input File (Upload) */
/* ################################################# */
.el-inputFile {
  position: relative;
  display: block;
}
.el-inputFile:hover {
  background-color: #ffd;
  cursor: pointer;
}
.el-inputFile input[type=file] {
  padding: 5px;
  width: 100%;
  border: 1px solid #c5c5c5;
  border-radius: 2px;
  background-color: #fff;
  font-size: 12px;
  line-height: 1;
}
.el-inputFile input[type=file]:focus {
  background-color: #ffd;
}

input#file-upload-button {
  padding: 0;
}

/* Text Area */
/* ################################################# */
.md-textArea {
  position: relative;
  display: inline-block;
}
.md-textArea.op-sS textarea {
  padding: 2px 12px;
  font-size: 14px;
}
.md-textArea textarea {
  padding: 3px 12px;
  font-size: 16px;
}
.md-textArea.op-sL textarea {
  padding: 9px 12px;
  font-size: 24px;
}
.md-textArea.op-tTransparent textarea {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0;
  background-color: transparent;
}
.md-textArea.op-tTransparent textarea:disabled {
  border-bottom: none;
}
.md-textArea.op-addLabelLeft {
  display: grid;
  grid-template-columns: 1fr 3fr;
}
.md-textArea.op-addLabelLeft .md-formLabelText {
  grid-row: 1/2;
  font-size: 16px;
  line-height: 1;
}
.md-textArea.op-addLabelLeft .md-formElement {
  position: relative;
  grid-row: 1/2;
}
.md-textArea.op-addLabelLeft.op-addMessage {
  display: grid;
  grid-template-rows: 1fr 24px;
  grid-template-columns: 1fr 3fr;
}
.md-textArea.op-addLabelLeft.op-addMessage .md-formLabelText {
  grid-row: 1/2;
  grid-column: 1/2;
  font-size: 16px;
  line-height: 1;
}
.md-textArea.op-addLabelLeft.op-addMessage .md-formElement {
  position: relative;
  grid-row: 1/2;
  grid-column: 2/3;
}
.md-textArea.op-addLabelLeft.op-addMessage .md-formMessageText {
  grid-row: 2/3;
  grid-column: 2/3;
}
.md-textArea.op-nonEditable textarea:disabled {
  color: #555;
  background-color: transparent;
}

.el-textArea {
  padding: 3px 12px;
  width: 100%;
  border: none;
  border: 1px solid #c5c5c5;
  border-radius: 2px;
  font-size: 16px;
  line-height: 1.35;
  resize: none;
}
.el-textArea:focus {
  background-color: #ffd;
}
.el-textArea:disabled {
  background-color: #ddd;
  color: #999;
}
.el-textArea.op-cError {
  background-color: #faa;
}
.el-textArea.op-hL {
  height: 56px;
}
.el-textArea.op-hH {
  height: 120px;
}
.el-textArea.op-sS {
  padding: 2px 6px;
  height: 48px;
  font-size: 14px;
}
.el-textArea.op-sS.op-hL {
  height: 34px;
}
.el-textArea.op-sS.op-hH {
  height: 90px;
}
.el-textArea.op-sL {
  padding: 11px 6px;
  height: 96px;
  font-size: 24px;
}
.el-textArea.op-sL.op-hL {
  height: 72px;
}
.el-textArea.op-sL.op-hH {
  height: 168px;
}
.el-textArea.op-tUnderline {
  border-color: transparent transparent #c5c5c5 transparent;
  border-radius: 0;
  background-color: transparent;
}
.el-textArea.op-tUnderline:focus {
  background-color: #ffd;
}
.el-textArea.op-tUnderline:disabled {
  background-color: #ddd;
  color: #999;
}
.el-textArea.op-tUnderline.op-cError {
  background-color: #faa;
}

/* 2023-07-21a : G-770 */
.md-updateNote .el-textArea {
  height: 135px;
}

/* /2023-07-21a : G-770 */
/* Check Box */
/* ################################################# */
.el-checkBox {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  font-size: 16px;
}
.el-checkBox input[type=checkbox] {
  display: none;
}
.el-checkBox .ls-label {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  min-width: 1.333333333em;
  height: 32px;
  padding: 9px 16px 9px 32px;
  border-radius: 2px;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 1366px) {
  .el-checkBox .ls-label {
    padding-right: 6px;
  }
}
.el-checkBox .ls-label::before {
  content: "\f0c8";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  display: inline-block;
  width: 1.6em;
  text-align: center;
  font-family: "Font Awesome 7 Pro";
  font-size: 1.25em;
  font-weight: 300;
}
.el-checkBox .ls-label:hover {
  cursor: pointer;
  background-color: hsl(210, 100%, 95%);
}
.el-checkBox input[type=checkbox]:checked ~ .ls-label::before {
  content: "\f14a";
  width: 1.333333333em;
  font-size: 1.5em;
  font-weight: 900;
  color: hsla(160, 50%, 30%, 0.5);
}
.el-checkBox input[type=checkbox]:disabled ~ .ls-label {
  pointer-events: none;
  color: #999;
}
.el-checkBox input[type=checkbox]:disabled ~ .ls-label::before {
  color: #999;
}
.el-checkBox.op-sS {
  /* height: 1.714285714em */
}
.el-checkBox.op-sS .ls-label {
  font-size: 14px;
  height: 1.714285714em;
}
.el-checkBox.op-sL {
  font-size: 20px;
}
.el-checkBox.op-tNoLabel {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.el-checkBox.op-tNoLabel .ls-label {
  width: 100%;
  padding: 0;
}
.el-checkBox.op-tNoLabel .ls-label::before {
  left: 50%;
  transform: translate(-50%, -50%);
}
.el-checkBox.op-tPartial .ls-label::before {
  content: "\f146";
  color: hsl(160, 50%, 30%);
  width: 1.333333333em;
  font-size: 1.5em;
  font-weight: 900;
}
.el-checkBox.op-tPartial:hover input[type=checkbox] ~ .ls-label::before {
  content: "\f146";
}
.el-checkBox input[type=checkbox]:checked ~ .ls-label::before {
  content: "\f14a";
  width: 1.333333333em;
  font-size: 1.5em;
  font-weight: 900;
  color: hsl(160, 50%, 30%);
}
.el-checkBox input[type=checkbox]:disabled ~ .ls-label::before {
  color: #999;
}
.el-checkBox.op-disabled {
  pointer-events: none;
}
.el-checkBox.op-disabled .ls-label,
.el-checkBox.op-disabled input[type=checkbox]:checked ~ .ls-label::before {
  color: #999;
}

.md-checkBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  font-size: 0;
}
.md-checkBox.op-cError {
  background-color: #fdd;
}
.md-checkBox .el-checkBox {
  /* height: calc(2.25em - 2px) */
}
.md-checkBox .el-checkBox .ls-label {
  min-width: calc(1em - 2px);
  height: calc(2.25em - 2px);
}
.md-checkBox.op-sS .el-checkBox {
  height: calc(1.714285714em - 2px);
}
.md-checkBox.op-sS .el-checkBox .ls-label {
  font-size: 14px;
  height: calc(1.714285714em - 2px);
}
.md-checkBox.op-sL {
  font-size: 20px;
}
.md-checkBox.op-tUnderline {
  border-bottom-color: #c5c5c5;
}
.md-checkBox.op-tWhiteBox {
  width: 100%;
  height: 36px;
  border: 1px solid #c5c5c5;
  border-radius: 2px;
  background-color: #fff;
}
.md-checkBox.op-tWhiteBox .el-checkBox {
  flex: 1 1 auto;
}
.md-checkBox.op-tWhiteBox .el-checkBox .ls-label {
  width: 100%;
}
.md-checkBox.op-nonEditable {
  width: 100%;
  height: 36px;
  border: 1px solid #c5c5c5;
  border-radius: 2px;
  background-color: transparent;
}
.md-checkBox.op-nonEditable .el-checkBox input[type=checkbox]:disabled ~ .ls-label {
  color: #555;
}
.md-checkBox.op-tNoLabel {
  text-align: center;
}
.md-checkBox.op-tNoLabel .el-checkBox {
  width: 100%;
  justify-content: center;
}
.md-checkBox.op-tNoLabel .el-checkBox .ls-label {
  padding: 0;
}
.md-checkBox.op-tNoLabel .el-checkBox .ls-label::before {
  left: 50%;
  transform: translate(-50%, -50%);
}
.md-checkBox.op-oVertical .el-checkBox {
  display: block;
}
.md-checkBox input[type=checkbox].gs-pertial:checked + .ls-label::before {
  content: "\f146";
}

/* 2025-12-19a : G-1418 */
.md-readOnlyMode {
  flex-shrink: 0;
}
@media (max-width: 1570px) {
  .md-readOnlyMode .gs-full {
    display: none;
  }
  .md-readOnlyMode .gs-abbr {
    display: inline;
  }
}

/* /2025-12-19a : G-1418 */
/* Radio Button */
/* ################################################# */
.el-radioButton {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}
.el-radioButton input[type=radio] {
  display: none;
}
.el-radioButton .ls-label {
  position: relative;
  padding: 9px 16px 9px 32px;
  min-height: 34px;
  border-radius: 2px;
  font-size: 16px;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 1366px) {
  .el-radioButton .ls-label {
    padding-right: 6px;
  }
}
.el-radioButton .ls-label:hover {
  cursor: pointer;
  background-color: hsl(210, 100%, 95%);
}
.el-radioButton .ls-label::before {
  content: "\f111";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  display: inline-block;
  width: 32px;
  text-align: center;
  font-family: "Font Awesome 7 Pro";
  font-size: 20px;
  font-weight: 300;
}
.el-radioButton:first-of-type .ls-label {
  padding-left: 38px;
}
.el-radioButton:first-of-type .ls-label::before {
  left: 6px;
}
.el-radioButton:last-of-type .ls-label {
  padding-right: 6px;
}
.el-radioButton input[type=radio]:checked ~ .ls-label::before {
  content: "\f192";
  font-size: 24px;
  font-weight: 900;
  color: hsl(160, 50%, 30%);
}
.el-radioButton input[type=radio]:disabled ~ .ls-label {
  pointer-events: none;
  color: #999;
}
.el-radioButton input[type=radio]:disabled ~ .ls-label::before {
  color: #999;
}
.el-radioButton.op-disabled {
  pointer-events: none;
}
.el-radioButton.op-disabled .ls-label,
.el-radioButton.op-disabled input[type=radio]:checked ~ .ls-label::before {
  color: #999;
}

/* 2023-12-21a : G-433 */
.md-radioButton {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 36px;
  border: 1px solid transparent;
}
.md-radioButton.op-cError {
  background-color: #fdd;
}
.md-radioButton.op-sS {
  min-height: 24px;
}
.md-radioButton.op-sS .el-radioButton .ls-label {
  padding: 4px 12px 4px 24px;
  min-height: 22px;
  font-size: 14px;
}
.md-radioButton.op-sS .el-radioButton .ls-label::before {
  width: 24px;
  font-size: 18px;
}
.md-radioButton.op-sS .el-radioButton input[type=radio]:checked ~ .ls-label::before {
  font-size: 21px;
}
.md-radioButton.op-sL {
  min-height: 48px;
}
.md-radioButton.op-sL .el-radioButton .ls-label {
  padding: 11px 20px 11px 40px;
  min-height: 46px;
  font-size: 24px;
}
.md-radioButton.op-sL .el-radioButton .ls-label::before {
  width: 40px;
  font-size: 30px;
}
.md-radioButton.op-sL .el-radioButton input[type=radio]:checked ~ .ls-label::before {
  font-size: 36px;
}
.md-radioButton.op-tUnderline {
  border-bottom-color: #c5c5c5;
}
.md-radioButton.op-tWhiteBox {
  height: auto;
  border: 1px solid #c5c5c5;
  border-radius: 2px;
  background-color: #fff;
}
.md-radioButton.op-tWhiteBox .el-radioButton {
  flex: 1 1 auto;
}
.md-radioButton.op-tWhiteBox .el-radioButton .ls-label {
  width: 100%;
}
.md-radioButton.op-nonEditable {
  border: 1px solid #c5c5c5;
  border-radius: 2px;
  background-color: transparent;
  color: #555;
  font-size: 16px;
  line-height: 1;
}
.md-radioButton.op-nonEditable .ls-trigger {
  display: none;
}
.md-radioButton.op-oVertical .el-radioButton {
  display: block;
}
.md-radioButton.op-tNoLabel {
  text-align: center;
}
.md-radioButton.op-tNoLabel .el-radioButton {
  width: 100%;
  justify-content: center;
}
.md-radioButton.op-tNoLabel .el-radioButton .ls-label {
  padding: 0;
}
.md-radioButton.op-tNoLabel .el-radioButton .ls-label::before {
  left: 50%;
  transform: translate(-50%, -50%);
}
.md-radioButton.op-tRadioOnOff {
  padding-top: 6px;
  padding-bottom: 6px;
}
.md-radioButton.op-tRadioOnOff .el-radioButton {
  height: 24px;
}
.md-radioButton.op-tRadioOnOff .el-radioButton .ls-label {
  padding-top: 4px;
  padding-bottom: 2px;
  padding-left: 24px;
  min-height: 24px;
  border-radius: 12px;
}
.md-radioButton.op-tRadioOnOff .el-radioButton .ls-label::before {
  width: 24px;
  font-size: 1em;
}
.md-radioButton.op-tRadioOnOff .el-radioButton:first-of-type :checked + .ls-label {
  background-color: #999;
  color: #fff;
}
.md-radioButton.op-tRadioOnOff .el-radioButton:first-of-type :checked + .ls-label::before {
  color: #fff;
  font-size: 1em;
}
.md-radioButton.op-tRadioOnOff .el-radioButton:last-of-type :checked + .ls-label {
  background-color: #090;
  color: #fff;
  font-weight: bold;
}
.md-radioButton.op-tRadioOnOff .el-radioButton:last-of-type :checked + .ls-label::before {
  color: #fff;
  font-size: 1em;
}

/* /2023-12-21a : G-433 */
/* Radio Button » Tab */
/* ================================================= */
.md-tab {
  font-size: 0;
  border-radius: 6px;
  /* box-shadow: $buttonBoxShadow */
}
.md-tab .el-radioButton .ls-label {
  display: inline-block;
  padding: 9px 18px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-left-style: none;
  border-radius: 0;
  background-color: hsl(210, 30%, 93%);
  background-color: #fff;
  color: hsl(210, 30%, 30%);
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}
.md-tab .el-radioButton .ls-label:hover {
  background-color: hsl(210, 100%, 95%);
  color: #111;
  cursor: pointer;
}
.md-tab .el-radioButton .ls-label::before {
  display: none;
}
.md-tab .el-radioButton.op-disabled .ls-label {
  background-color: #ddd;
  color: #999;
}
.md-tab .el-radioButton input[type=radio]:checked + .ls-label {
  background-color: hsl(160, 50%, 30%);
  color: hsl(160, 100%, 95%);
  pointer-events: none;
}
.md-tab .el-radioButton:first-of-type .ls-label {
  border-left-style: solid;
  border-radius: 6px 0 0 0;
}
.md-tab .el-radioButton:last-of-type .ls-label {
  border-radius: 0 6px 0 0;
}
.md-tab.op-sS .el-radioButton .ls-label {
  padding: 4px 12px;
}
.md-tab.op-sS .el-radioButton .ls-label::before {
  display: none;
}
.md-tab.op-sL .el-radioButton .ls-label {
  padding: 11px 20px;
}
.md-tab.op-sL .el-radioButton .ls-label::before {
  display: none;
}
.md-tab.op-tUnderline .el-radioButton .ls-label {
  padding: 9px 18px 7px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 3px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
}
.md-tab.op-tUnderline .el-radioButton .ls-label:hover {
  border-bottom-color: rgba(0, 0, 0, 0.3);
  background-color: transparent;
  color: inherit;
}
.md-tab.op-tUnderline .el-radioButton:hover {
  background-color: transparent;
}
.md-tab.op-tUnderline .el-radioButton:first-of-type .ls-label {
  border-left: none;
  border-radius: 0;
}
.md-tab.op-tUnderline .el-radioButton:last-of-type .ls-label {
  border-radius: 0;
}
.md-tab.op-tUnderline .el-radioButton:not(:first-of-type) {
  margin-left: 3px;
}
.md-tab.op-tUnderline .el-radioButton input[type=radio]:checked + .ls-label {
  border-bottom-color: hsl(160, 50%, 30%);
  background-color: inherit;
  color: hsl(160, 50%, 30%);
  pointer-events: none;
}
.md-tab.op-tColorTag .el-radioButton .ls-label {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 12px;
  background-color: transparent;
}
.md-tab.op-tColorTag .el-radioButton.ls-none input[type=radio] + .ls-label {
  color: #999;
}
.md-tab.op-tColorTag .el-radioButton.ls-red input[type=radio] + .ls-label {
  color: #c00;
}
.md-tab.op-tColorTag .el-radioButton.ls-yellow input[type=radio] + .ls-label {
  color: #e90;
}
.md-tab.op-tColorTag .el-radioButton.ls-green input[type=radio] + .ls-label {
  color: #080;
}
.md-tab.op-tColorTag .el-radioButton.ls-blue input[type=radio] + .ls-label {
  color: #00b;
}
.md-tab.op-tColorTag .el-radioButton.ls-gray input[type=radio] + .ls-label {
  color: #999;
}
.md-tab.op-tColorTag .el-radioButton:hover {
  background-color: transparent;
}
.md-tab.op-tColorTag .el-radioButton.ls-none input[type=radio]:checked + .ls-label, .md-tab.op-tColorTag .el-radioButton.ls-red input[type=radio]:checked + .ls-label, .md-tab.op-tColorTag .el-radioButton.ls-yellow input[type=radio]:checked + .ls-label, .md-tab.op-tColorTag .el-radioButton.ls-green input[type=radio]:checked + .ls-label, .md-tab.op-tColorTag .el-radioButton.ls-blue input[type=radio]:checked + .ls-label, .md-tab.op-tColorTag .el-radioButton.ls-gray input[type=radio]:checked + .ls-label {
  background-color: transparent;
  border: 2px solid #999;
}

.md-dropDown .ls-dropDownPanel .md-tab.op-tColorTag .el-radioButton input[type=radio]:checked ~ .ls-label::before {
  content: "";
  background-color: transparent;
}

/* Drop Down */
/* ################################################# */
/* 2024-07-11a : G-1064 */
.md-dropDown {
  position: relative;
  overflow: visible;
}
.md-dropDown .ls-dropDownPanel,
.md-dropDown .md-radioButton,
.md-dropDown .md-checkBox {
  position: absolute;
  z-index: 2;
  display: block;
  height: auto;
  min-width: 100%;
  max-height: 240px;
  border: 1px solid #c5c5c5;
  background-color: #fff;
  overflow: auto;
  opacity: 1;
  transition: opacity 0.2s ease-in, border-top 0.1s ease-in, border-bottom 0.1s ease-in;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.md-dropDown .ls-dropDownPanel.gs-hide,
.md-dropDown .md-radioButton.gs-hide,
.md-dropDown .md-checkBox.gs-hide {
  position: absolute;
  min-height: 0;
  border-top: 0;
  border-bottom: 0;
  opacity: 0;
  pointer-events: none;
}
.md-dropDown .ls-dropDownPanel.gs-hide .el-radioButton,
.md-dropDown .md-radioButton.gs-hide .el-radioButton,
.md-dropDown .md-checkBox.gs-hide .el-radioButton {
  height: 0;
}
.md-dropDown .ls-dropDownPanel.gs-hide .ls-label,
.md-dropDown .md-radioButton.gs-hide .ls-label,
.md-dropDown .md-checkBox.gs-hide .ls-label {
  padding-top: 0;
  padding-bottom: 0;
  height: 0;
}
.md-dropDown .ls-dropDownPanel.gs-hide .ls-label > div,
.md-dropDown .md-radioButton.gs-hide .ls-label > div,
.md-dropDown .md-checkBox.gs-hide .ls-label > div {
  line-height: 0;
  visibility: hidden;
  opacity: 0;
}
.md-dropDown .ls-dropDownPanel .ls-item:not(:last-of-type),
.md-dropDown .md-radioButton .ls-item:not(:last-of-type),
.md-dropDown .md-checkBox .ls-item:not(:last-of-type) {
  border-bottom: 1px solid #c5c5c5;
}
.md-dropDown .ls-dropDownPanel .ls-label,
.md-dropDown .md-radioButton .ls-label,
.md-dropDown .md-checkBox .ls-label {
  white-space: nowrap;
  line-height: 1;
  visibility: visible;
  opacity: 1;
  transition: padding-top 0.1s ease-in, padding-bottom 0.1s ease-in, height 0.1s ease-in;
  font-size: 14px;
}
.md-dropDown .ls-dropDownPanel .ls-label > div,
.md-dropDown .md-radioButton .ls-label > div,
.md-dropDown .md-checkBox .ls-label > div {
  white-space: nowrap;
  line-height: 1;
  visibility: visible;
  opacity: 1;
  transition: line-height 0.1s ease-in, visibility 0.1s ease-in, opacity 0.1s ease-in;
}
.md-dropDown.op-nonEditable > .el-inputText {
  pointer-events: none;
}
.md-dropDown.op-nonEditable > .el-inputText input[type=text]:disabled,
.md-dropDown.op-nonEditable > .el-inputText input[type=time]:disabled {
  color: #555;
  background-color: transparent;
}
.md-dropDown.op-nonEditable .ls-trigger {
  display: none;
}
.md-dropDown.op-fClear {
  display: flex;
  flex-direction: row;
}
.md-dropDown.op-fClear .el-inputText.op-fDropdown {
  flex: 1 1 auto;
}
.md-dropDown.op-fClear .el-button.op-tTransparent.ls-clear {
  flex: 0 0 auto;
  margin: 2px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
}
.md-dropDown.op-fClear .el-button.op-tTransparent.ls-clear:hover {
  background-color: rgba(0, 0, 0, 0.15);
}
.md-dropDown .el-radioButton,
.md-dropDown .el-checkBox {
  padding-left: 0;
  padding-right: 0;
}

/* /2024-07-02a : G-1064 */
/* Drop Down : Check Box */
/* ================================================= */
.md-dropDown .md-checkBox .ls-footer {
  position: sticky;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 6px 12px;
  border-top: 1px solid #c5c5c5;
  background-color: #fff;
}
.md-dropDown .md-checkBox .ls-footer .el-button {
  min-width: 100px;
}

/* Drop Down : Radio Button */
/* ================================================= */
.md-dropDown .md-radioButton .el-radioButton {
  min-width: 100%;
}
.md-dropDown .md-radioButton .ls-label {
  padding-left: 9px;
  width: 100%;
}
.md-dropDown .md-radioButton .ls-label::before {
  content: "";
  z-index: -1;
  top: 0;
  transform: none;
  display: block;
  width: 100%;
  height: 100%;
}
.md-dropDown .md-radioButton input[type=radio]:checked ~ .ls-label {
  color: #fff;
  pointer-events: none;
}
.md-dropDown .md-radioButton input[type=radio]:checked ~ .ls-label::before {
  content: "";
  background-color: hsl(160, 50%, 30%);
}
.md-dropDown .md-radioButton .ls-label > div {
  white-space: nowrap;
  line-height: 1;
  visibility: visible;
  opacity: 1;
  transition: line-height 0.1s ease-in, visibility 0.1s ease-in, opacity 0.1s ease-in;
}

/* Drop Down : in Data Area */
/* ================================================= */
.md-table .ls-dataArea .md-dropDown .ls-dropDownPanel .ls-item {
  display: block;
  padding-left: 0;
  padding-right: 0;
  min-height: 32px;
  height: auto;
  background-color: #fff;
}
.md-table .ls-dataArea .md-dropDown .ls-dropDownPanel .ls-item .el-button {
  text-align: left;
}

/* Group for Checkbox, Radio */
/* ################################################# */
.md-checkGroup ul {
  border: 1px solid transparent;
}
.md-checkGroup.op-orientHorizontal ul {
  display: inline-flex;
  flex-direction: row;
}
.md-checkGroup.op-orientHorizontal ul li,
.md-checkGroup.op-orientHorizontal ul li > .md-check,
.md-checkGroup.op-orientHorizontal ul li > .md-check > .ls-label {
  display: inline-block;
}
.md-checkGroup.op-orientVertical ul {
  display: inline-flex;
  flex-direction: column;
}
.md-checkGroup.op-orientVertical ul li,
.md-checkGroup.op-orientVertical ul li > .md-check,
.md-checkGroup.op-orientVertical ul li > .md-check > .ls-label {
  display: block;
  margin-right: 0;
}
.md-checkGroup.op-borderBottom ul {
  border-bottom-color: rgba(0, 0, 0, 0.3);
}
.md-checkGroup.op-addLabelLeft {
  display: grid;
  grid-template-columns: 1fr 3fr;
}
.md-checkGroup.op-addLabelLeft .md-formLabelText {
  grid-row: 1/2;
  font-size: 16px;
  line-height: 1;
}
.md-checkGroup.op-addLabelLeft .md-formElement {
  position: relative;
  grid-row: 1/2;
}
.md-checkGroup.op-addLabelLeft.op-addMessage {
  display: grid;
  grid-template-rows: 1fr 24px;
  grid-template-columns: 1fr 3fr;
}
.md-checkGroup.op-addLabelLeft.op-addMessage .md-formLabelText {
  grid-row: 1/2;
  grid-column: 1/2;
  font-size: 16px;
  line-height: 1;
}
.md-checkGroup.op-addLabelLeft.op-addMessage .md-formElement {
  position: relative;
  grid-row: 1/2;
  grid-column: 2/3;
}
.md-checkGroup.op-addLabelLeft.op-addMessage .md-formMessageText {
  grid-row: 2/3;
  grid-column: 2/3;
}

/* Checkbox, Radio */
/* ################################################# */
.md-check {
  display: inline-block;
}
.md-check > input {
  display: none;
}
.md-check > input ~ .ls-label {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-right: 16px;
  min-height: 36px;
  padding: 9px 16px 9px 32px;
  border-radius: 2px;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.md-check > input ~ .ls-label::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  display: inline-block;
  width: 32px;
  text-align: center;
  font-family: "Font Awesome 7 Pro";
  font-size: 20px;
  font-weight: 300;
}
.md-check > input:checked ~ .ls-label::before {
  font-family: "Font Awesome 7 Pro";
  font-size: 24px;
  font-weight: 900;
  color: hsl(160, 50%, 30%);
}
.md-check > input ~ .ls-label:hover {
  background-color: hsl(210, 100%, 95%);
}
.md-check.op-sS > input ~ .ls-label {
  margin-right: 14px;
  min-height: 2.2px;
  padding: 4px 7px 4px 28px;
  font-size: 14px;
}
.md-check.op-sS > input ~ .ls-label::before {
  width: 28px;
  font-size: 17.5px;
  font-weight: 300;
}
.md-check.op-sS > input:checked ~ .ls-label::before {
  font-size: 2.1px;
  font-weight: 900;
}
.md-check > input ~ .ls-label {
  margin-right: 16px;
  min-height: 3.4px;
  padding: 9px 8px 9px 32px;
  font-size: 16px;
}
.md-check > input ~ .ls-label::before {
  width: 32px;
  font-size: 20px;
  font-weight: 300;
}
.md-check > input:checked ~ .ls-label::before {
  font-size: 24px;
  font-weight: 900;
}
.md-check.op-sL > input ~ .ls-label {
  margin-right: 20px;
  min-height: 46px;
  padding: 13px 10px 13px 40px;
  font-size: 20px;
}
.md-check.op-sL > input ~ .ls-label::before {
  width: 40px;
  font-size: 26px;
  font-weight: 300;
}
.md-check.op-sL > input:checked ~ .ls-label::before {
  font-size: 32px;
  font-weight: 900;
}

.md-check > input[type=checkbox] ~ .ls-label::before {
  content: "\f0c8";
}
.md-check > input[type=checkbox]:checked ~ .ls-label::before {
  content: "\f14a";
}
.md-check > input[type=radio] ~ .ls-label::before {
  content: "\f111";
}
.md-check > input[type=radio]:checked ~ .ls-label::before {
  content: "\f192";
}

/* Pulldown Menu */
/* ################################################# */
.md-pulldown {
  position: relative;
  display: inline-block;
}
.md-pulldown input[type=text],
.md-pulldown input[type=password] {
  padding: 3px 12px;
  width: 100%;
  border: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  font-size: 24px;
}
.md-pulldown.op-sS input[type=text],
.md-pulldown.op-sS input[type=password] {
  padding: 2px 12px;
  font-size: 16px;
}
.md-pulldown input[type=text],
.md-pulldown input[type=password] {
  padding: 3px 12px;
  font-size: 24px;
}
.md-pulldown.op-sL input[type=text],
.md-pulldown.op-sL input[type=password] {
  padding: 9px 12px;
  font-size: 24px;
}
.md-pulldown.op-addClear input {
  padding: 3px 32px 3px 12px;
}
.md-pulldown.op-addClear input ~ button {
  position: absolute;
  top: 0;
  right: 0;
  margin: 1px;
  padding: 9px 0;
  width: 32px;
  border-radius: 0 1px 1px 0;
  color: #777;
}
.md-pulldown.op-addClear input ~ button:hover {
  background-color: transparent;
}
.md-pulldown.op-addLabel ~ button {
  margin-top: 18px;
}
.md-pulldown.op-addLabel.op-addClear > button.ls-clearButton {
  margin-top: 18px;
}
.md-pulldown.op-addLabelLeft {
  display: grid;
  grid-template-columns: 1fr 3fr;
}
.md-pulldown.op-addLabelLeft .md-formLabelText {
  grid-row: 1/2;
  font-size: 16px;
  line-height: 1;
}
.md-pulldown.op-addLabelLeft .md-formElement {
  position: relative;
  grid-row: 1/2;
}
.md-pulldown.op-addLabelLeft.op-addMessage {
  display: grid;
  grid-template-rows: 1fr 24px;
  grid-template-columns: 1fr 3fr;
}
.md-pulldown.op-addLabelLeft.op-addMessage .md-formLabelText {
  grid-row: 1/2;
  grid-column: 1/2;
  font-size: 16px;
  line-height: 1;
}
.md-pulldown.op-addLabelLeft.op-addMessage .md-formElement {
  position: relative;
  grid-row: 1/2;
  grid-column: 2/3;
}
.md-pulldown.op-addLabelLeft.op-addMessage .md-formMessageText {
  grid-row: 2/3;
  grid-column: 2/3;
}

.md-pulldown {
  position: relative;
}
.md-pulldown input[type=text] {
  cursor: pointer;
}
.md-pulldown.op-tTransparent input[type=text] {
  border-radius: 0;
  border-color: transparent transparent rgba(0, 0, 0, 0.3);
  background-color: transparent;
}
.md-pulldown.op-addExpand input[type=text] {
  padding: 3px 32px 3px 12px;
}
.md-pulldown.op-addExpand input[type=text] ~ button.ls-expandButton {
  position: absolute;
  top: 0;
  left: 0;
  margin: 1px;
  padding: 9px 0;
  width: 100%;
  text-align: right;
  border-radius: 0 1px 1px 0;
  color: #777;
}
.md-pulldown.op-addExpand input[type=text] ~ button.ls-expandButton:hover {
  background-color: transparent;
}
.md-pulldown.op-addExpand input[type=text] ~ button.ls-expandButton i {
  width: 32px;
  text-align: center;
}
.md-pulldown.op-addLabel .md-pulldownPanel {
  top: 54px;
}
.md-pulldown.op-sS input[type=text] ~ button.ls-expandButton {
  top: 0;
  padding: 4px 0;
}

.md-pulldownPanel {
  position: absolute;
  z-index: 10;
  top: 36px;
  left: 0;
  padding: 12px;
  min-width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.2s ease-in;
}
.md-pulldownPanel.js-hide {
  opacity: 0;
  pointer-events: none;
}
.md-pulldownPanel .md-check > input ~ .ls-label::before {
  content: "";
}
.md-pulldownPanel .md-check > input:checked ~ .ls-label::before {
  content: "\f00c";
  font-weight: 400;
}
.md-pulldownPanel .md-check.ls-uncheckAll {
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid #c5c5c5;
}
.md-pulldownPanel .md-okCancel {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid #c5c5c5;
  text-align: right;
}
.md-pulldownPanel .md-okCancel .ls-ok {
  width: 6em;
}

.md-formLabelText {
  padding: 0 6px;
  color: #777;
  font-size: 12px;
}

.md-formMessageText {
  position: relative;
  padding: 0 6px 0 24px;
  color: #777;
  font-size: 12px;
}
.md-formMessageText::before {
  content: "\f061";
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 6px;
  width: 24px;
  text-align: center;
  font-family: "Font Awesome 7 Pro";
  font-weight: 400;
}
.md-formMessageText.gs-errorText::before {
  content: "\f071";
  font-family: "Font Awesome 7 Pro";
  font-weight: 900;
}

.md-rankSimulation {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.md-rankSimulation .ls-onOff,
.md-rankSimulation .ls-amount {
  width: 120px;
}
.md-rankSimulation .ls-execute {
  width: 60px;
}

.md-balloon {
  position: absolute;
  z-index: 200;
  margin-top: 10px;
  padding: 0.5em;
  width: 100%;
  min-width: 120px;
  max-width: 360px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 3px;
  background-color: #666;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  color: #fff;
}
.md-balloon::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -20px;
  left: 20px;
  border: 10px solid transparent;
  border-bottom-color: #666;
}
.md-balloon.op-cError {
  background-color: #f77;
}
.md-balloon.op-cError::before {
  border-bottom-color: #f77;
}
.md-balloon.op-pTop {
  bottom: calc(100% + 10px);
}
.md-balloon.op-pTop::before {
  top: 100%;
  border: 10px solid transparent;
  border-top-color: #666;
}
.md-balloon.op-pTop.op-cError::before {
  border: 10px solid transparent;
  border-top-color: #f77;
}
.md-balloon.op-pRight {
  top: 0;
  left: calc(100% + 10px);
  margin-top: 0;
}
.md-balloon.op-pRight::before {
  top: 10px;
  left: -20px;
  border: 10px solid transparent;
  border-right-color: #666;
}
.md-balloon.op-pRight.op-cError::before {
  border: 10px solid transparent;
  border-right-color: #f77;
}
.md-balloon.op-pLeft {
  top: 0;
  right: calc(100% + 10px);
  margin-top: 0;
}
.md-balloon.op-pLeft::before {
  top: 10px;
  left: 100%;
  border: 10px solid transparent;
  border-left-color: #666;
}
.md-balloon.op-pLeft.op-cError::before {
  border: 10px solid transparent;
  border-left-color: #f77;
}

/* Data Text */
/* ################################################# */
.el-dataText {
  padding: 7px 6px;
  width: 100%;
  min-height: 36px;
  border: 1px solid #c5c5c5;
  border-radius: 2px;
  font-size: 16px;
  line-height: 1.25;
}

.md-heading h2 {
  flex: 1 1 auto;
  position: relative;
  display: block;
  color: #555;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.md-heading h2 i {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background-color: #666;
  color: #fff;
  font-size: 18px;
}
.md-heading h2 :where(.el-button:not(:nth-child(-n+3), .op-cCurrent, .el-button:nth-last-child(-n+3))) {
  display: none;
}
.md-heading h2 .el-button:nth-child(3),
.md-heading h2 .el-button:nth-last-child(3) {
  pointer-events: none;
}
.md-heading h2 .el-button:nth-child(3) span,
.md-heading h2 .el-button:nth-last-child(3) span {
  font-size: 0;
}
.md-heading h2 .el-button:nth-child(3) span::before,
.md-heading h2 .el-button:nth-last-child(3) span::before {
  content: "…";
  position: relative;
  font-size: 14px;
  top: -4px;
}
.md-heading h2 .op-cCurrent:nth-child(2) ~ .el-button:nth-child(3),
.md-heading h2 .op-cCurrent:nth-child(3),
.md-heading h2 .op-cCurrent:nth-last-child(3),
.md-heading h2 .el-button:nth-last-child(3):has(~ .op-cCurrent:nth-last-child(2)) {
  pointer-events: auto;
}
.md-heading h2 .op-cCurrent:nth-child(2) ~ .el-button:nth-child(3) span,
.md-heading h2 .op-cCurrent:nth-child(3) span,
.md-heading h2 .op-cCurrent:nth-last-child(3) span,
.md-heading h2 .el-button:nth-last-child(3):has(~ .op-cCurrent:nth-last-child(2)) span {
  font-size: 16px;
}
.md-heading h2 .op-cCurrent:nth-child(2) ~ .el-button:nth-child(3) span::before,
.md-heading h2 .op-cCurrent:nth-child(3) span::before,
.md-heading h2 .op-cCurrent:nth-last-child(3) span::before,
.md-heading h2 .el-button:nth-last-child(3):has(~ .op-cCurrent:nth-last-child(2)) span::before {
  display: none;
}
.md-heading h2:has(.el-button:nth-child(3)):not(:has(.el-button:nth-child(4))) {
  width: 108px;
  min-width: 108px;
}
.md-heading h2:has(.el-button:nth-child(4)):not(:has(.el-button:nth-child(5))) {
  width: 144px;
  min-width: 144px;
}
.md-heading h2:has(.el-button:nth-child(5)):not(:has(.el-button:nth-child(6))) {
  width: 180px;
}
@container pageButton (calc(36px * 5) <= width) and (width < calc(36px * 6)) {
  .md-heading h2 .el-button:nth-child(n+2):has(~ .op-cCurrent),
  .md-heading h2 .op-cCurrent + .el-button:not(:nth-last-child(-n+4)) {
    display: none;
  }
  .md-heading h2 .el-button:nth-last-child(-n+4):has(~ .op-cCurrent) {
    display: block;
  }
  .md-heading h2 .op-cCurrent:nth-last-child(-n+4) ~ .el-button:nth-last-child(3) {
    pointer-events: auto;
  }
  .md-heading h2 .op-cCurrent:nth-last-child(-n+4) ~ .el-button:nth-last-child(3) span {
    font-size: 16px;
  }
  .md-heading h2 .op-cCurrent:nth-last-child(-n+4) ~ .el-button:nth-last-child(3) span::before {
    display: none;
  }
}
.md-heading h2:has(.el-button:nth-child(6)):not(:has(.el-button:nth-child(7))) {
  width: 216px;
}
.md-heading h2:has(.el-button:nth-child(6)):not(:has(.el-button:nth-child(7))) .el-button {
  pointer-events: auto;
}
.md-heading h2:has(.el-button:nth-child(6)):not(:has(.el-button:nth-child(7))) .el-button span {
  font-size: 16px;
}
.md-heading h2:has(.el-button:nth-child(6)):not(:has(.el-button:nth-child(7))) .el-button span::before {
  display: none;
}
@container pageButton (calc(36px * 6) <= width) and (width < calc(36px * 7)) {
  .md-heading h2 .el-button:nth-child(n+2):has(~ .op-cCurrent) {
    display: none;
  }
  .md-heading h2 .op-cCurrent + .el-button,
  .md-heading h2 .el-button:nth-last-child(-n+5):has(~ .op-cCurrent) {
    display: block;
  }
  .md-heading h2 .op-cCurrent:nth-last-child(-n+5) ~ .el-button:nth-last-child(3) {
    pointer-events: auto;
  }
  .md-heading h2 .op-cCurrent:nth-last-child(-n+5) ~ .el-button:nth-last-child(3) span {
    font-size: 16px;
  }
  .md-heading h2 .op-cCurrent:nth-last-child(-n+5) ~ .el-button:nth-last-child(3) span::before {
    display: none;
  }
}
.md-heading h2:has(.el-button:nth-child(7)):not(:has(.el-button:nth-child(8))) {
  width: 252px;
}
@container pageButton (calc(36px * 7) <= width) and (width < calc(36px * 8)) {
  .md-heading h2 .op-cCurrent:nth-child(-n+3) ~ .el-button:nth-child(-n+4),
  .md-heading h2 .el-button:nth-last-child(-n+4):has(~ .op-cCurrent:nth-last-child(-n+3)) {
    display: block;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+4)),
  .md-heading h2 .op-cCurrent:nth-last-child(-n+4) ~ .el-button:nth-last-child(3),
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(7)),
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(7)) {
    pointer-events: auto;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+4)) span,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+4) ~ .el-button:nth-last-child(3) span,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(7)) span,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(7)) span {
    font-size: 16px;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+4)) span::before,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+4) ~ .el-button:nth-last-child(3) span::before,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(7)) span::before,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(7)) span::before {
    display: none;
  }
}
.md-heading h2:has(.el-button:nth-child(8)):not(:has(.el-button:nth-child(9))) {
  width: 288px;
}
@container pageButton (calc(36px * 8) <= width) and (width < calc(36px * 9)) {
  .md-heading h2 .op-cCurrent:nth-child(-n+4) ~ .el-button:nth-child(-n+5),
  .md-heading h2 .el-button:nth-last-child(-n+5):has(~ .op-cCurrent:nth-last-child(-n+4)),
  .md-heading h2 .op-cCurrent + .el-button {
    display: block;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+4)),
  .md-heading h2 .op-cCurrent:nth-last-child(-n+5) ~ .el-button:nth-last-child(3),
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(8)),
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(8)) {
    pointer-events: auto;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+4)) span,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+5) ~ .el-button:nth-last-child(3) span,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(8)) span,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(8)) span {
    font-size: 16px;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+4)) span::before,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+5) ~ .el-button:nth-last-child(3) span::before,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(8)) span::before,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(8)) span::before {
    display: none;
  }
}
.md-heading h2:has(.el-button:nth-child(9)):not(:has(.el-button:nth-child(10))) {
  width: 324px;
}
@container pageButton (calc(36px * 9) <= width) and (width < calc(36px * 10)) {
  .md-heading h2 .el-button:has(+ .op-cCurrent),
  .md-heading h2 .op-cCurrent + .el-button,
  .md-heading h2 .op-cCurrent:nth-child(-n+5) ~ .el-button:nth-child(-n+6),
  .md-heading h2 .el-button:nth-last-child(-n+6):has(~ .op-cCurrent:nth-last-child(-n+5)) {
    display: block;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+5)),
  .md-heading h2 .op-cCurrent:nth-last-child(-n+5) ~ .el-button:nth-last-child(3),
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(9)),
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(9)) {
    pointer-events: auto;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+5)) span,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+5) ~ .el-button:nth-last-child(3) span,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(9)) span,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(9)) span {
    font-size: 16px;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+5)) span::before,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+5) ~ .el-button:nth-last-child(3) span::before,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(9)) span::before,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(9)) span::before {
    display: none;
  }
}
.md-heading h2:has(.el-button:nth-child(10)):not(:has(.el-button:nth-child(11))) {
  width: 360px;
}
@container pageButton (calc(36px * 10) <= width) and (width < calc(36px * 11)) {
  .md-heading h2 .el-button:has(+ .op-cCurrent),
  .md-heading h2 .op-cCurrent + .el-button,
  .md-heading h2 .op-cCurrent + * + .el-button,
  .md-heading h2 .op-cCurrent:nth-child(-n+5) ~ .el-button:nth-child(-n+7),
  .md-heading h2 .el-button:nth-last-child(-n+7):has(~ .op-cCurrent:nth-last-child(-n+6)) {
    display: block;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+5)),
  .md-heading h2 .op-cCurrent:nth-last-child(-n+6) ~ .el-button:nth-last-child(3),
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(10)),
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(10)) {
    pointer-events: auto;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+5)) span,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+6) ~ .el-button:nth-last-child(3) span,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(10)) span,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(10)) span {
    font-size: 16px;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+5)) span::before,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+6) ~ .el-button:nth-last-child(3) span::before,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(10)) span::before,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(10)) span::before {
    display: none;
  }
}
.md-heading h2:has(.el-button:nth-child(11)):not(:has(.el-button:nth-child(12))) {
  width: 396px;
}
@container pageButton (calc(36px * 11) <= width) and (width < calc(36px * 12)) {
  .md-heading h2 .el-button:has(+ * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ .op-cCurrent),
  .md-heading h2 .op-cCurrent + .el-button,
  .md-heading h2 .op-cCurrent + * + .el-button,
  .md-heading h2 .op-cCurrent:nth-child(-n+6) ~ .el-button:nth-child(-n+8),
  .md-heading h2 .el-button:nth-last-child(-n+8):has(~ .op-cCurrent:nth-last-child(-n+6)) {
    display: block;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+6)),
  .md-heading h2 .op-cCurrent:nth-last-child(-n+6) ~ .el-button:nth-last-child(3),
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(11)),
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(11)) {
    pointer-events: auto;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+6)) span,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+6) ~ .el-button:nth-last-child(3) span,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(11)) span,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(11)) span {
    font-size: 16px;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+6)) span::before,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+6) ~ .el-button:nth-last-child(3) span::before,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(11)) span::before,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(11)) span::before {
    display: none;
  }
}
.md-heading h2:has(.el-button:nth-child(12)):not(:has(.el-button:nth-child(13))) {
  width: 432px;
}
@container pageButton (calc(36px * 12) <= width) and (width < calc(36px * 13)) {
  .md-heading h2 .el-button:has(+ * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ .op-cCurrent),
  .md-heading h2 .op-cCurrent + .el-button,
  .md-heading h2 .op-cCurrent + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + .el-button,
  .md-heading h2 .op-cCurrent:nth-child(-n+6) ~ .el-button:nth-child(-n+9),
  .md-heading h2 .el-button:nth-last-child(-n+9):has(~ .op-cCurrent:nth-last-child(-n+7)) {
    display: block;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+6)),
  .md-heading h2 .op-cCurrent:nth-last-child(-n+7) ~ .el-button:nth-last-child(3),
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(12)),
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(12)) {
    pointer-events: auto;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+6)) span,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+7) ~ .el-button:nth-last-child(3) span,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(12)) span,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(12)) span {
    font-size: 16px;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+6)) span::before,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+7) ~ .el-button:nth-last-child(3) span::before,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(12)) span::before,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(12)) span::before {
    display: none;
  }
}
.md-heading h2:has(.el-button:nth-child(13)):not(:has(.el-button:nth-child(14))) {
  width: 468px;
}
@container pageButton (calc(36px * 13) <= width) and (width < calc(36px * 14)) {
  .md-heading h2 .el-button:has(+ * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ .op-cCurrent),
  .md-heading h2 .op-cCurrent + .el-button,
  .md-heading h2 .op-cCurrent + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + .el-button,
  .md-heading h2 .op-cCurrent:nth-child(-n+7) ~ .el-button:nth-child(-n+10),
  .md-heading h2 .el-button:nth-last-child(-n+10):has(~ .op-cCurrent:nth-last-child(-n+7)) {
    display: block;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+7)),
  .md-heading h2 .op-cCurrent:nth-last-child(-n+7) ~ .el-button:nth-last-child(3),
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(13)),
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(13)) {
    pointer-events: auto;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+7)) span,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+7) ~ .el-button:nth-last-child(3) span,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(13)) span,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(13)) span {
    font-size: 16px;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+7)) span::before,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+7) ~ .el-button:nth-last-child(3) span::before,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(13)) span::before,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(13)) span::before {
    display: none;
  }
}
.md-heading h2:has(.el-button:nth-child(14)):not(:has(.el-button:nth-child(15))) {
  width: 504px;
}
@container pageButton (calc(36px * 14) <= width) and (width < calc(36px * 15)) {
  .md-heading h2 .el-button:has(+ * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ .op-cCurrent),
  .md-heading h2 .op-cCurrent + .el-button,
  .md-heading h2 .op-cCurrent + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent:nth-child(-n+7) ~ .el-button:nth-child(-n+11),
  .md-heading h2 .el-button:nth-last-child(-n+11):has(~ .op-cCurrent:nth-last-child(-n+8)) {
    display: block;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+7)),
  .md-heading h2 .op-cCurrent:nth-last-child(-n+8) ~ .el-button:nth-last-child(3),
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(14)),
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(14)) {
    pointer-events: auto;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+7)) span,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+8) ~ .el-button:nth-last-child(3) span,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(14)) span,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(14)) span {
    font-size: 16px;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+7)) span::before,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+8) ~ .el-button:nth-last-child(3) span::before,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(14)) span::before,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(14)) span::before {
    display: none;
  }
}
.md-heading h2:has(.el-button:nth-child(15)):not(:has(.el-button:nth-child(16))) {
  width: 540px;
}
@container pageButton (calc(36px * 15) <= width) and (width < calc(36px * 16)) {
  .md-heading h2 .el-button:has(+ * + * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ .op-cCurrent),
  .md-heading h2 .op-cCurrent + .el-button,
  .md-heading h2 .op-cCurrent + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent:nth-child(-n+7) ~ .el-button:nth-child(-n+12),
  .md-heading h2 .el-button:nth-last-child(-n+12):has(~ .op-cCurrent:nth-last-child(-n+7)) {
    display: block;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+8)),
  .md-heading h2 .op-cCurrent:nth-last-child(-n+8) ~ .el-button:nth-last-child(3),
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(15)),
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(15)) {
    pointer-events: auto;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+8)) span,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+8) ~ .el-button:nth-last-child(3) span,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(15)) span,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(15)) span {
    font-size: 16px;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+8)) span::before,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+8) ~ .el-button:nth-last-child(3) span::before,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(15)) span::before,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(15)) span::before {
    display: none;
  }
}
.md-heading h2:has(.el-button:nth-child(16)):not(:has(.el-button:nth-child(17))) {
  width: 576px;
}
@container pageButton (calc(36px * 16) <= width) and (width < calc(36px * 17)) {
  .md-heading h2 .el-button:has(+ * + * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ .op-cCurrent),
  .md-heading h2 .op-cCurrent + .el-button,
  .md-heading h2 .op-cCurrent + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent:nth-child(-n+8) ~ .el-button:nth-child(-n+13),
  .md-heading h2 .el-button:nth-last-child(-n+13):has(~ .op-cCurrent:nth-last-child(-n+9)) {
    display: block;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+8)),
  .md-heading h2 .op-cCurrent:nth-last-child(-n+9) ~ .el-button:nth-last-child(3),
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(16)),
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(16)) {
    pointer-events: auto;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+8)) span,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+9) ~ .el-button:nth-last-child(3) span,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(16)) span,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(16)) span {
    font-size: 16px;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+8)) span::before,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+9) ~ .el-button:nth-last-child(3) span::before,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(16)) span::before,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(16)) span::before {
    display: none;
  }
}
.md-heading h2:has(.el-button:nth-child(17)):not(:has(.el-button:nth-child(18))) {
  width: 612px;
}
@container pageButton (calc(36px * 17) <= width) and (width < calc(36px * 18)) {
  .md-heading h2 .el-button:has(+ * + * + * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ .op-cCurrent),
  .md-heading h2 .op-cCurrent + .el-button,
  .md-heading h2 .op-cCurrent + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent:nth-child(-n+9) ~ .el-button:nth-child(-n+14),
  .md-heading h2 .el-button:nth-last-child(-n+14):has(~ .op-cCurrent:nth-last-child(-n+9)) {
    display: block;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+9)),
  .md-heading h2 .op-cCurrent:nth-last-child(-n+9) ~ .el-button:nth-last-child(3),
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(17)),
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(17)) {
    pointer-events: auto;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+9)) span,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+9) ~ .el-button:nth-last-child(3) span,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(17)) span,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(17)) span {
    font-size: 16px;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+9)) span::before,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+9) ~ .el-button:nth-last-child(3) span::before,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(17)) span::before,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(17)) span::before {
    display: none;
  }
}
.md-heading h2:has(.el-button:nth-child(18)):not(:has(.el-button:nth-child(19))) {
  width: 648px;
}
@container pageButton (calc(36px * 18) <= width) and (width < calc(36px * 19)) {
  .md-heading h2 .el-button:has(+ * + * + * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ .op-cCurrent),
  .md-heading h2 .op-cCurrent + .el-button,
  .md-heading h2 .op-cCurrent + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent:nth-child(-n+9) ~ .el-button:nth-child(-n+15),
  .md-heading h2 .el-button:nth-last-child(-n+15):has(~ .op-cCurrent:nth-last-child(-n+10)) {
    display: block;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+9)),
  .md-heading h2 .op-cCurrent:nth-last-child(-n+10) ~ .el-button:nth-last-child(3),
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(18)),
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(18)) {
    pointer-events: auto;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+9)) span,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+10) ~ .el-button:nth-last-child(3) span,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(18)) span,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(18)) span {
    font-size: 16px;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+9)) span::before,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+10) ~ .el-button:nth-last-child(3) span::before,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(18)) span::before,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(18)) span::before {
    display: none;
  }
}
.md-heading h2:has(.el-button:nth-child(19)):not(:has(.el-button:nth-child(20))) {
  width: 684px;
}
@container pageButton (calc(36px * 19) <= width) and (width < calc(36px * 20)) {
  .md-heading h2 .el-button:has(+ * + * + * + * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + * + * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ .op-cCurrent),
  .md-heading h2 .op-cCurrent + .el-button,
  .md-heading h2 .op-cCurrent + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent:nth-child(-n+10) ~ .el-button:nth-child(-n+16),
  .md-heading h2 .el-button:nth-last-child(-n+16):has(~ .op-cCurrent:nth-last-child(-n+10)) {
    display: block;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+10)),
  .md-heading h2 .op-cCurrent:nth-last-child(-n+10) ~ .el-button:nth-last-child(3),
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(19)),
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(19)) {
    pointer-events: auto;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+10)) span,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+10) ~ .el-button:nth-last-child(3) span,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(19)) span,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(19)) span {
    font-size: 16px;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+10)) span::before,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+10) ~ .el-button:nth-last-child(3) span::before,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(19)) span::before,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(19)) span::before {
    display: none;
  }
}
.md-heading h2:has(.el-button:nth-child(20)):not(:has(.el-button:nth-child(21))) {
  width: 720px;
}
@container pageButton (calc(36px * 20) <= width) and (width < calc(36px * 21)) {
  .md-heading h2 .el-button:has(+ * + * + * + * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + * + * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ .op-cCurrent),
  .md-heading h2 .op-cCurrent + .el-button,
  .md-heading h2 .op-cCurrent + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent:nth-child(-n+10) ~ .el-button:nth-child(-n+17),
  .md-heading h2 .el-button:nth-last-child(-n+17):has(~ .op-cCurrent:nth-last-child(-n+11)) {
    display: block;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+10)),
  .md-heading h2 .op-cCurrent:nth-last-child(-n+11) ~ .el-button:nth-last-child(3),
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(20)),
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(20)) {
    pointer-events: auto;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+10)) span,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+11) ~ .el-button:nth-last-child(3) span,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(20)) span,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(20)) span {
    font-size: 16px;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+10)) span::before,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+11) ~ .el-button:nth-last-child(3) span::before,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(20)) span::before,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(20)) span::before {
    display: none;
  }
}
.md-heading h2:has(.el-button:nth-child(21)):not(:has(.el-button:nth-child(22))) {
  width: 756px;
}
@container pageButton (calc(36px * 21) <= width) and (width < calc(36px * 22)) {
  .md-heading h2 .el-button:has(+ * + * + * + * + * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + * + * + * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + * + * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ .op-cCurrent),
  .md-heading h2 .op-cCurrent + .el-button,
  .md-heading h2 .op-cCurrent + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent:nth-child(-n+11) ~ .el-button:nth-child(-n+18),
  .md-heading h2 .el-button:nth-last-child(-n+18):has(~ .op-cCurrent:nth-last-child(-n+11)) {
    display: block;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+11)),
  .md-heading h2 .op-cCurrent:nth-last-child(-n+11) ~ .el-button:nth-last-child(3),
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(21)),
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(21)) {
    pointer-events: auto;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+11)) span,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+11) ~ .el-button:nth-last-child(3) span,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(21)) span,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(21)) span {
    font-size: 16px;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+11)) span::before,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+11) ~ .el-button:nth-last-child(3) span::before,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(21)) span::before,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(21)) span::before {
    display: none;
  }
}
.md-heading h2:has(.el-button:nth-child(22)):not(:has(.el-button:nth-child(23))) {
  width: 792px;
}
@container pageButton (calc(36px * 22) <= width) and (width < calc(36px * 23)) {
  .md-heading h2 .el-button:has(+ * + * + * + * + * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + * + * + * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + * + * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ * + .op-cCurrent),
  .md-heading h2 .el-button:has(+ .op-cCurrent),
  .md-heading h2 .op-cCurrent + .el-button,
  .md-heading h2 .op-cCurrent + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent + * + * + * + * + * + * + * + .el-button,
  .md-heading h2 .op-cCurrent:nth-child(-n+11) ~ .el-button:nth-child(-n+19),
  .md-heading h2 .el-button:nth-last-child(-n+19):has(~ .op-cCurrent:nth-last-child(-n+12)) {
    display: block;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+11)),
  .md-heading h2 .op-cCurrent:nth-last-child(-n+12) ~ .el-button:nth-last-child(3),
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(22)),
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(22)) {
    pointer-events: auto;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+11)) span,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+12) ~ .el-button:nth-last-child(3) span,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(22)) span,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(22)) span {
    font-size: 16px;
  }
  .md-heading h2 .el-button:nth-child(3):has(~ .op-cCurrent:nth-child(-n+11)) span::before,
  .md-heading h2 .op-cCurrent:nth-last-child(-n+12) ~ .el-button:nth-last-child(3) span::before,
  .md-heading h2 .el-button:nth-child(3):has(~ .ls-next:nth-child(22)) span::before,
  .md-heading h2 .el-button:nth-last-child(3):has(~ .ls-next:nth-child(22)) span::before {
    display: none;
  }
}

/* /2025-12-19a : G-1418 */
.el-infoLabel {
  padding-left: 3px;
  color: #555;
  font-size: 12px;
  line-height: 1;
}
.el-infoLabel::before {
  content: "\f219";
  margin-right: 3px;
  font-family: "Font Awesome 7 Pro";
  font-size: 11px;
  font-weight: 700;
}
.el-infoLabel.op-pTop {
  padding-bottom: 3px;
}

.el-infoText {
  padding: 10px 6px;
  min-height: calc(1em + 20px);
  border-bottom: 1px solid #c5c5c5;
  color: #555;
  font-size: 16px;
  line-height: 1;
}

.el-formLabel {
  padding-left: 3px;
  color: #555;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.el-formLabel::before {
  content: "\f219";
  margin-right: 3px;
  font-family: "Font Awesome 7 Pro";
  font-size: 11px;
  font-weight: 700;
}
.md-heading .el-formLabel::before {
  content: "\f2fb";
}
.el-formLabel.op-pTop {
  padding-bottom: 3px;
}
.el-formLabel.op-pLeft {
  display: inline-block;
  font-size: 14px;
  white-space: nowrap;
}
.el-formLabel.op-pLeft::before {
  display: none;
}
.el-formLabel.op-pLeft ~ .md-dropDown {
  display: inline-block;
}
.el-formLabel.op-tOption::before {
  content: "\f054";
}
.el-formLabel--blank::before {
  content: "　";
}

.el-formMessage {
  padding-left: 3px;
  color: #555;
  font-size: 12px;
  line-height: 1;
}
.el-formMessage.op-pBottom {
  padding-top: 3px;
}
.el-formMessage.op-tGuidance {
  color: #777;
}
.el-formMessage.op-tGuidance::before {
  content: "\f0a4";
  margin-right: 3px;
  font-family: "Font Awesome 7 Pro";
  font-size: 11px;
  font-weight: 400;
}
.el-formMessage.op-tError {
  color: #d00;
}
.el-formMessage.op-tError::before {
  content: "\f071";
  margin-right: 3px;
  font-family: "Font Awesome 7 Pro";
  font-size: 11px;
  font-weight: 900;
}

.el-buttonLabel {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-right: 12px;
  height: 36px;
  color: #555;
  font-size: 14px;
  line-height: 1;
}
.el-buttonLabel i {
  margin-right: 0.5em;
}

.el-buttonNotice {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-left: 12px;
  height: 36px;
  color: #555;
  font-size: 14px;
  line-height: 1;
}
.el-buttonNotice i {
  margin-right: 0.5em;
}

.el-messageText p {
  padding-bottom: 0.75em;
  line-height: 1.5;
}

/* Legend */
/* 2025-12-19a : G-1418 */
.md-legend {
  container-name: legend;
  container-type: inline-size;
  min-width: 352px;
}
.md-legend dl, .md-legend dt, .md-legend dd {
  position: relative;
}
.md-legend dl.op-noBox dt {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
}
.md-legend dt {
  margin-right: 0.25em;
  width: 1em;
  height: 1em;
  border: 1px solid #999;
}
.md-legend dt:not(:first-of-type) {
  margin-left: 0.75em;
}
.md-legend.op-row {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.md-legend.op-row .ls-label {
  white-space: nowrap;
}
.md-legend.op-row dl {
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* /2025-12-19a : G-1418 */
/* 2026-01-07a : G-1469 */
.pg-program.pg__search .cp-listBox .md-heading h2,
.pg-program.pg__title .cp-listBox.ls--episodeList .md-heading h2,
.pg-program.pg__rightsRequest .cp-box.ls--result .md-heading h2,
.pg-program.pg__history .cp-listBox .md-heading h2,
.pg-distribution.pg__episode .cp-listBox.ls--distributorList .md-heading h2,
.pg-distribution.pg__package .cp-listBox.ls--distributorList .md-heading h2,
.pg-distribution.pg__package .cp-listBox.ls--episodeList .md-heading h2,
.pg-distribution.pg__distibutorListBatch .cp-listBox.ls--distributorList .md-heading h2,
.pg-distribution.pg__history .cp-listBox .md-heading h2,
.pg-distFree.pg__searchEpisode .cp-listBox .md-heading h2,
.pg-distFree.pg__searchSeason .cp-listBox .md-heading h2,
.pg-distFree.pg__searchSeries .cp-listBox .md-heading h2,
.pg-distFree.pg__search .cp-listBox .md-heading h2,
.pg-distFree.pg__distribution .cp-listBox .md-heading h2,
.pg-distFree.pg__series .pg__seasonSelect .cp-box.ls--current .md-heading h2,
.pg-distFree.pg__episode .cp-listBox.ls--distDuration .md-heading h2 {
  flex: 0 0 auto;
}
.pg-program.pg__search .cp-listBox .md-heading .md-legend,
.pg-program.pg__title .cp-listBox.ls--episodeList .md-heading .md-legend,
.pg-program.pg__rightsRequest .cp-box.ls--result .md-heading .md-legend,
.pg-program.pg__history .cp-listBox .md-heading .md-legend,
.pg-distribution.pg__episode .cp-listBox.ls--distributorList .md-heading .md-legend,
.pg-distribution.pg__package .cp-listBox.ls--distributorList .md-heading .md-legend,
.pg-distribution.pg__package .cp-listBox.ls--episodeList .md-heading .md-legend,
.pg-distribution.pg__distibutorListBatch .cp-listBox.ls--distributorList .md-heading .md-legend,
.pg-distribution.pg__history .cp-listBox .md-heading .md-legend,
.pg-distFree.pg__searchEpisode .cp-listBox .md-heading .md-legend,
.pg-distFree.pg__searchSeason .cp-listBox .md-heading .md-legend,
.pg-distFree.pg__searchSeries .cp-listBox .md-heading .md-legend,
.pg-distFree.pg__search .cp-listBox .md-heading .md-legend,
.pg-distFree.pg__distribution .cp-listBox .md-heading .md-legend,
.pg-distFree.pg__series .pg__seasonSelect .cp-box.ls--current .md-heading .md-legend,
.pg-distFree.pg__episode .cp-listBox.ls--distDuration .md-heading .md-legend {
  flex: 1 1 auto;
  margin-left: 20px;
}
.pg-program.pg__search .cp-listBox .md-heading .md-legend dt,
.pg-program.pg__title .cp-listBox.ls--episodeList .md-heading .md-legend dt,
.pg-program.pg__rightsRequest .cp-box.ls--result .md-heading .md-legend dt,
.pg-program.pg__history .cp-listBox .md-heading .md-legend dt,
.pg-distribution.pg__episode .cp-listBox.ls--distributorList .md-heading .md-legend dt,
.pg-distribution.pg__package .cp-listBox.ls--distributorList .md-heading .md-legend dt,
.pg-distribution.pg__package .cp-listBox.ls--episodeList .md-heading .md-legend dt,
.pg-distribution.pg__distibutorListBatch .cp-listBox.ls--distributorList .md-heading .md-legend dt,
.pg-distribution.pg__history .cp-listBox .md-heading .md-legend dt,
.pg-distFree.pg__searchEpisode .cp-listBox .md-heading .md-legend dt,
.pg-distFree.pg__searchSeason .cp-listBox .md-heading .md-legend dt,
.pg-distFree.pg__searchSeries .cp-listBox .md-heading .md-legend dt,
.pg-distFree.pg__search .cp-listBox .md-heading .md-legend dt,
.pg-distFree.pg__distribution .cp-listBox .md-heading .md-legend dt,
.pg-distFree.pg__series .pg__seasonSelect .cp-box.ls--current .md-heading .md-legend dt,
.pg-distFree.pg__episode .cp-listBox.ls--distDuration .md-heading .md-legend dt {
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.pg-program.pg__search .cp-listBox .md-heading .md-legend dt::before,
.pg-program.pg__title .cp-listBox.ls--episodeList .md-heading .md-legend dt::before,
.pg-program.pg__rightsRequest .cp-box.ls--result .md-heading .md-legend dt::before,
.pg-program.pg__history .cp-listBox .md-heading .md-legend dt::before,
.pg-distribution.pg__episode .cp-listBox.ls--distributorList .md-heading .md-legend dt::before,
.pg-distribution.pg__package .cp-listBox.ls--distributorList .md-heading .md-legend dt::before,
.pg-distribution.pg__package .cp-listBox.ls--episodeList .md-heading .md-legend dt::before,
.pg-distribution.pg__distibutorListBatch .cp-listBox.ls--distributorList .md-heading .md-legend dt::before,
.pg-distribution.pg__history .cp-listBox .md-heading .md-legend dt::before,
.pg-distFree.pg__searchEpisode .cp-listBox .md-heading .md-legend dt::before,
.pg-distFree.pg__searchSeason .cp-listBox .md-heading .md-legend dt::before,
.pg-distFree.pg__searchSeries .cp-listBox .md-heading .md-legend dt::before,
.pg-distFree.pg__search .cp-listBox .md-heading .md-legend dt::before,
.pg-distFree.pg__distribution .cp-listBox .md-heading .md-legend dt::before,
.pg-distFree.pg__series .pg__seasonSelect .cp-box.ls--current .md-heading .md-legend dt::before,
.pg-distFree.pg__episode .cp-listBox.ls--distDuration .md-heading .md-legend dt::before {
  left: 0;
}
.pg-program.pg__search .cp-listBox .md-heading .md-legend dt.ls--current,
.pg-program.pg__title .cp-listBox.ls--episodeList .md-heading .md-legend dt.ls--current,
.pg-program.pg__rightsRequest .cp-box.ls--result .md-heading .md-legend dt.ls--current,
.pg-program.pg__history .cp-listBox .md-heading .md-legend dt.ls--current,
.pg-distribution.pg__episode .cp-listBox.ls--distributorList .md-heading .md-legend dt.ls--current,
.pg-distribution.pg__package .cp-listBox.ls--distributorList .md-heading .md-legend dt.ls--current,
.pg-distribution.pg__package .cp-listBox.ls--episodeList .md-heading .md-legend dt.ls--current,
.pg-distribution.pg__distibutorListBatch .cp-listBox.ls--distributorList .md-heading .md-legend dt.ls--current,
.pg-distribution.pg__history .cp-listBox .md-heading .md-legend dt.ls--current,
.pg-distFree.pg__searchEpisode .cp-listBox .md-heading .md-legend dt.ls--current,
.pg-distFree.pg__searchSeason .cp-listBox .md-heading .md-legend dt.ls--current,
.pg-distFree.pg__searchSeries .cp-listBox .md-heading .md-legend dt.ls--current,
.pg-distFree.pg__search .cp-listBox .md-heading .md-legend dt.ls--current,
.pg-distFree.pg__distribution .cp-listBox .md-heading .md-legend dt.ls--current,
.pg-distFree.pg__series .pg__seasonSelect .cp-box.ls--current .md-heading .md-legend dt.ls--current,
.pg-distFree.pg__episode .cp-listBox.ls--distDuration .md-heading .md-legend dt.ls--current {
  background-color: #ffe3e3;
}
.pg-program.pg__search .cp-listBox .md-heading .md-legend dt.ls--past,
.pg-program.pg__title .cp-listBox.ls--episodeList .md-heading .md-legend dt.ls--past,
.pg-program.pg__rightsRequest .cp-box.ls--result .md-heading .md-legend dt.ls--past,
.pg-program.pg__history .cp-listBox .md-heading .md-legend dt.ls--past,
.pg-distribution.pg__episode .cp-listBox.ls--distributorList .md-heading .md-legend dt.ls--past,
.pg-distribution.pg__package .cp-listBox.ls--distributorList .md-heading .md-legend dt.ls--past,
.pg-distribution.pg__package .cp-listBox.ls--episodeList .md-heading .md-legend dt.ls--past,
.pg-distribution.pg__distibutorListBatch .cp-listBox.ls--distributorList .md-heading .md-legend dt.ls--past,
.pg-distribution.pg__history .cp-listBox .md-heading .md-legend dt.ls--past,
.pg-distFree.pg__searchEpisode .cp-listBox .md-heading .md-legend dt.ls--past,
.pg-distFree.pg__searchSeason .cp-listBox .md-heading .md-legend dt.ls--past,
.pg-distFree.pg__searchSeries .cp-listBox .md-heading .md-legend dt.ls--past,
.pg-distFree.pg__search .cp-listBox .md-heading .md-legend dt.ls--past,
.pg-distFree.pg__distribution .cp-listBox .md-heading .md-legend dt.ls--past,
.pg-distFree.pg__series .pg__seasonSelect .cp-box.ls--current .md-heading .md-legend dt.ls--past,
.pg-distFree.pg__episode .cp-listBox.ls--distDuration .md-heading .md-legend dt.ls--past {
  background-color: #d3d3d3;
}
.pg-program.pg__search .cp-listBox .md-heading .md-legend dt.ls--close,
.pg-program.pg__title .cp-listBox.ls--episodeList .md-heading .md-legend dt.ls--close,
.pg-program.pg__rightsRequest .cp-box.ls--result .md-heading .md-legend dt.ls--close,
.pg-program.pg__history .cp-listBox .md-heading .md-legend dt.ls--close,
.pg-distribution.pg__episode .cp-listBox.ls--distributorList .md-heading .md-legend dt.ls--close,
.pg-distribution.pg__package .cp-listBox.ls--distributorList .md-heading .md-legend dt.ls--close,
.pg-distribution.pg__package .cp-listBox.ls--episodeList .md-heading .md-legend dt.ls--close,
.pg-distribution.pg__distibutorListBatch .cp-listBox.ls--distributorList .md-heading .md-legend dt.ls--close,
.pg-distribution.pg__history .cp-listBox .md-heading .md-legend dt.ls--close,
.pg-distFree.pg__searchEpisode .cp-listBox .md-heading .md-legend dt.ls--close,
.pg-distFree.pg__searchSeason .cp-listBox .md-heading .md-legend dt.ls--close,
.pg-distFree.pg__searchSeries .cp-listBox .md-heading .md-legend dt.ls--close,
.pg-distFree.pg__search .cp-listBox .md-heading .md-legend dt.ls--close,
.pg-distFree.pg__distribution .cp-listBox .md-heading .md-legend dt.ls--close,
.pg-distFree.pg__series .pg__seasonSelect .cp-box.ls--current .md-heading .md-legend dt.ls--close,
.pg-distFree.pg__episode .cp-listBox.ls--distDuration .md-heading .md-legend dt.ls--close {
  background-color: #fed;
}
.pg-program.pg__search .cp-listBox .md-heading .md-legend dt.ls--noRightsDuration,
.pg-program.pg__title .cp-listBox.ls--episodeList .md-heading .md-legend dt.ls--noRightsDuration,
.pg-program.pg__rightsRequest .cp-box.ls--result .md-heading .md-legend dt.ls--noRightsDuration,
.pg-program.pg__history .cp-listBox .md-heading .md-legend dt.ls--noRightsDuration,
.pg-distribution.pg__episode .cp-listBox.ls--distributorList .md-heading .md-legend dt.ls--noRightsDuration,
.pg-distribution.pg__package .cp-listBox.ls--distributorList .md-heading .md-legend dt.ls--noRightsDuration,
.pg-distribution.pg__package .cp-listBox.ls--episodeList .md-heading .md-legend dt.ls--noRightsDuration,
.pg-distribution.pg__distibutorListBatch .cp-listBox.ls--distributorList .md-heading .md-legend dt.ls--noRightsDuration,
.pg-distribution.pg__history .cp-listBox .md-heading .md-legend dt.ls--noRightsDuration,
.pg-distFree.pg__searchEpisode .cp-listBox .md-heading .md-legend dt.ls--noRightsDuration,
.pg-distFree.pg__searchSeason .cp-listBox .md-heading .md-legend dt.ls--noRightsDuration,
.pg-distFree.pg__searchSeries .cp-listBox .md-heading .md-legend dt.ls--noRightsDuration,
.pg-distFree.pg__search .cp-listBox .md-heading .md-legend dt.ls--noRightsDuration,
.pg-distFree.pg__distribution .cp-listBox .md-heading .md-legend dt.ls--noRightsDuration,
.pg-distFree.pg__series .pg__seasonSelect .cp-box.ls--current .md-heading .md-legend dt.ls--noRightsDuration,
.pg-distFree.pg__episode .cp-listBox.ls--distDuration .md-heading .md-legend dt.ls--noRightsDuration {
  background-color: #ffe0e0;
}
@media (max-width: 1570px) {
  .pg-program.pg__search .cp-listBox .md-heading .md-legend,
  .pg-program.pg__title .cp-listBox.ls--episodeList .md-heading .md-legend,
  .pg-program.pg__rightsRequest .cp-box.ls--result .md-heading .md-legend,
  .pg-program.pg__history .cp-listBox .md-heading .md-legend,
  .pg-distribution.pg__episode .cp-listBox.ls--distributorList .md-heading .md-legend,
  .pg-distribution.pg__package .cp-listBox.ls--distributorList .md-heading .md-legend,
  .pg-distribution.pg__package .cp-listBox.ls--episodeList .md-heading .md-legend,
  .pg-distribution.pg__distibutorListBatch .cp-listBox.ls--distributorList .md-heading .md-legend,
  .pg-distribution.pg__history .cp-listBox .md-heading .md-legend,
  .pg-distFree.pg__searchEpisode .cp-listBox .md-heading .md-legend,
  .pg-distFree.pg__searchSeason .cp-listBox .md-heading .md-legend,
  .pg-distFree.pg__searchSeries .cp-listBox .md-heading .md-legend,
  .pg-distFree.pg__search .cp-listBox .md-heading .md-legend,
  .pg-distFree.pg__distribution .cp-listBox .md-heading .md-legend,
  .pg-distFree.pg__series .pg__seasonSelect .cp-box.ls--current .md-heading .md-legend,
  .pg-distFree.pg__episode .cp-listBox.ls--distDuration .md-heading .md-legend {
    margin-left: 10px;
  }
}

.pg-program.pg__history .cp-listBox .md-heading .md-readOnlyMode,
.pg-distribution.pg__history .cp-listBox .md-heading .md-readOnlyMode,
.pg-distFree.pg__searchSeason .cp-listBox .md-heading .md-readOnlyMode,
.pg-distFree.pg__searchSeries .cp-listBox .md-heading .md-readOnlyMode {
  flex: 1 1 auto;
}
.pg-program.pg__history .cp-listBox .md-heading .md-readOnlyMode .md-checkBox,
.pg-distribution.pg__history .cp-listBox .md-heading .md-readOnlyMode .md-checkBox,
.pg-distFree.pg__searchSeason .cp-listBox .md-heading .md-readOnlyMode .md-checkBox,
.pg-distFree.pg__searchSeries .cp-listBox .md-heading .md-readOnlyMode .md-checkBox {
  width: -moz-max-content;
  width: max-content;
}

/* /2026-01-07a : G-1469 */
/* Duration Line BgColor */
.ls--duration {
  position: relative;
}
.ls--duration.ls--before {
  background-color: #dff;
}
.ls--duration.ls--within {
  background-color: #f6f6f6;
}
.ls--duration.ls--after {
  background-color: #ddd;
}

/* Duration Line BgColor (New) */
/* 2024-03-25a : G-961 */
.md-durationLegend {
  margin: 0 2px;
  padding: 2px 4px;
  border: 1px solid #999;
  text-align: center;
}
.md-durationLegend.ls--before {
  background-color: #dff;
}
.md-durationLegend.ls--within {
  background-color: #f6f6f6;
}
.md-durationLegend.ls--after {
  margin-right: 15px;
  background-color: #ddd;
}

/* /2024-03-25a : G-961 */
/* 2023-06-19a : G-761  */
.ls-rightsStatus span,
.ls--rightsStatus span {
  position: relative;
  display: block;
  padding-left: 26px;
  line-height: 20px;
}
.ls-rightsStatus span::before,
.ls--rightsStatus span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  transform: translate(0, -50%);
  border-radius: 12px;
  font-size: 14px;
  font-family: "Font Awesome 7 Pro";
}
.ls-rightsStatus span.ls--unsent::before,
.ls--rightsStatus span.ls--unsent::before {
  content: "\f1d8";
  text-indent: -2px;
  background-color: #999;
  color: #fff;
}
.ls-rightsStatus span.ls--wip::before,
.ls--rightsStatus span.ls--wip::before {
  content: "\f252";
  background-color: #f93;
  color: #fff;
}
.ls-rightsStatus span.ls--ok::before,
.ls--rightsStatus span.ls--ok::before {
  content: "\f00c";
  background-color: #090;
  color: #fff;
}
.ls-rightsStatus span.ls--unnecessary::before,
.ls--rightsStatus span.ls--unnecessary::before {
  content: "\f00c";
  background-color: #39f;
  color: #fff;
}
.ls-rightsStatus span.ls--ng,
.ls--rightsStatus span.ls--ng {
  color: #e20;
}
.ls-rightsStatus span.ls--ng::before,
.ls--rightsStatus span.ls--ng::before {
  content: "\f071";
  color: #e20;
  font-size: 20px;
  font-weight: 900;
}
.ls-rightsStatus span.ls--cancel,
.ls--rightsStatus span.ls--cancel {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 20px;
}
.ls-rightsStatus span.ls--cancel .ls__status,
.ls--rightsStatus span.ls--cancel .ls__status {
  margin-right: 1em;
  white-space: nowrap;
}
.ls-rightsStatus span.ls--cancel::before,
.ls--rightsStatus span.ls--cancel::before {
  content: "\f071";
  color: #e20;
  font-size: 20px;
}
.ls-rightsStatus span.ls--link::before,
.ls--rightsStatus span.ls--link::before {
  content: "\f0c1";
  text-indent: -1px;
  border: 2px solid #666;
  color: #666;
}

/* /2023-06-19a */
/* Rights Status Icon (New) */
/* 2024-03-25a : G-961 */
.md-rightsLegend {
  position: relative;
  margin-right: 10px;
  padding-left: 26px;
  line-height: 20px;
  white-space: nowrap;
}
.md-rightsLegend::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  transform: translate(0, -50%);
  border-radius: 12px;
  font-family: "Font Awesome 7 Pro";
}
.md-rightsLegend.ls--unsent::before {
  content: "\f1d8";
  text-indent: -2px;
  background-color: #999;
  color: #fff;
}
.md-rightsLegend.ls--wip::before {
  content: "\f252";
  background-color: #f93;
  color: #fff;
}
.md-rightsLegend.ls--ok::before {
  content: "\f00c";
  background-color: #090;
  color: #fff;
}
.md-rightsLegend.ls--unnecessary::before {
  content: "\f00c";
  background-color: #39f;
  color: #fff;
}
.md-rightsLegend.ls--ng {
  color: #e20;
}
.md-rightsLegend.ls--ng::before {
  content: "\f071";
  color: #e20;
  font-size: 20px;
  font-weight: 900;
}
.md-rightsLegend.ls--cancel::before {
  content: "\f071";
  color: #e20;
  font-size: 20px;
}
.md-rightsLegend.ls--link::before {
  content: "\f0c1";
  text-indent: -1px;
  border: 2px solid #666;
  color: #666;
}

/* /2024-03-25a : G-961 */
/* 2025-12-19a : G-1418 */
@container legend (width < 590px) {
  .md-rightsLegend {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 8px;
    padding-left: 0;
    width: -moz-max-content;
    width: max-content;
    height: 40px;
    font-size: 12px;
    line-height: 1;
  }
  .md-rightsLegend::before {
    top: -6px;
    left: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    transform: translate(-50%, 0);
    border-radius: 8px;
    font-size: 12px;
  }
  .md-rightsLegend.ls--ng::before, .md-rightsLegend.ls--cancel::before {
    font-size: 14px;
  }
}
/* /2025-12-19a : G-1418 */
/* Rights Status Icon (in Table) */
/* 2024-02-20a */
.ls--duration::before {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  transform: translate(0, -50%);
  border-radius: 12px;
  font-family: "Font Awesome 7 Pro";
}
.ls--duration.ls--unsent::before {
  content: "\f1d8";
  text-indent: -2px;
  background-color: #999;
  color: #fff;
}
.ls--duration.ls--wip::before {
  content: "\f252";
  background-color: #f93;
  color: #fff;
}
.ls--duration.ls--ok::before {
  content: "\f00c";
  background-color: #090;
  color: #fff;
}
.ls--duration.ls--unnecessary::before {
  content: "\f00c";
  background-color: #39f;
  color: #fff;
}
.ls--duration.ls--ng {
  color: #e20;
}
.ls--duration.ls--ng::before {
  content: "\f071";
  color: #e20;
  font-size: 20px;
  font-weight: 900;
}
.ls--duration.ls--cancel::before {
  content: "\f071";
  color: #e20;
  font-size: 20px;
}
.ls--duration.ls--link::before {
  content: "\f0c1";
  text-indent: -1px;
  border: 2px solid #666;
  color: #666;
}

/* /2024-02-20a */
.ls-dataArea .ls--duration .el-checkBox.ls--unsent::before {
  content: "\f1d8";
  text-indent: -2px;
  background-color: #999;
  color: #fff;
}

.op-message .md-table.op-hTop .ls-message,
.op-message .md-table.op-hTopLeft .ls-message {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #f6f6f6;
  text-align: center;
  font-size: 20px;
}

.op-message .md-heading .md-numberOfItems,
.op-message .md-heading .md-itemsPerPage,
.op-message .md-heading .md-pageButton {
  display: none;
}

.md-pagenation {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-bottom: 12px;
}
.md-pagenation > div {
  margin-right: 12px;
}
.md-pagenation .md-button {
  margin: 0 3px 0 0;
}
.md-pagenation .ls-itemsPerPage .md-pulldown {
  width: 80px;
}
.md-pagenation .ls-number {
  font-size: 15px;
}
.md-pagenation .ls-unit {
  font-size: 14px;
}

.md-commonInfo {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
}
.md-commonInfo .ls-item {
  width: auto;
}

/* 2024-09-12a : G-1024 */
.md-table {
  position: relative;
  display: grid;
}
.md-table.op-hTop {
  grid-template-columns: 1fr;
  grid-template-rows: min-content 1fr;
}
.md-table.op-hTop .ls-headerX {
  grid-row: 1/2;
  grid-column: 1/2;
  display: flex;
  flex-direction: row;
}
.md-table.op-hTop .ls-dataArea {
  grid-row: 2/3;
  grid-column: 1/2;
}
.md-table.op-hTop .ls-message {
  grid-row: 2/3;
  grid-column: 1/2;
  display: none;
}
.md-table.op-hTopLeft {
  grid-template-columns: min-content 1fr;
  grid-template-rows: min-content 1fr;
}
.md-table.op-hTopLeft .ls-origin {
  grid-row: 1/2;
  grid-column: 1/2;
}
.md-table.op-hTopLeft .ls-headerX {
  grid-row: 1/2;
  grid-column: 2/3;
  display: flex;
  flex-direction: row;
}
.md-table.op-hTopLeft .ls-headerY {
  position: relative;
  grid-row: 2/3;
  grid-column: 1/2;
}
.md-table.op-hTopLeft .ls-dataArea {
  grid-row: 2/3;
  grid-column: 2/3;
  background-color: #f6f6f6;
  overflow: auto;
}
.md-table.op-hTopLeft .ls-message {
  grid-row: 2/3;
  grid-column: 1/3;
  display: none;
}
.md-table .ls-origin {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #c5c5c5;
  background-color: #fff;
  overflow: hidden;
}
.md-table .ls-origin .ls-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-right: 1px solid #c5c5c5;
  font-weight: bold;
}
.md-table .ls-origin .ls-item > div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.md-table .ls-headerX {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #c5c5c5;
  background-color: #fff;
  overflow: hidden;
}
.md-table .ls-headerX .ls-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-right: 1px solid #c5c5c5;
  font-weight: bold;
}
.md-table .ls-headerX .ls-item.ls-item--flex {
  flex: 1 0 auto;
}
.md-table .ls-headerX .ls-item:last-child {
  border-right: none;
}
.md-table .ls-headerX .ls-item > div:not(.gs-col) {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.md-table .ls-itemGroup .gs-row .ls-item:last-child {
  border-right: 1px solid #c5c5c5;
}
.md-table .ls-itemGroup .gs-row .ls-item {
  flex: 1 1 auto;
  min-height: 25px;
  border-right: none;
}
.md-table .ls-headerY {
  background-color: #f6f6f6;
}
.md-table .ls-headerY .ls-col {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.md-table .ls-headerY .ls-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #c5c5c5;
  border-bottom: 1px solid #c5c5c5;
}
.md-table .ls-headerY .ls-more {
  height: 36px;
}
.md-table .ls-dataArea {
  background-color: #f6f6f6;
  overflow: auto;
}
.md-table .ls-dataArea .ls-itemGroup,
.md-table .ls-dataArea .ls-row,
.md-table .ls-dataArea .gs-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  background: linear-gradient(#f6f6f6 0% calc(100% - 1px), #c5c5c5 calc(100% - 1px));
}
.md-table .ls-dataArea .ls-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-right: 1px solid #c5c5c5;
  border-bottom: 1px solid #c5c5c5;
}
.md-table .ls-dataArea .ls-item.ls-item--flex {
  flex: 1 0 auto;
}
.md-table .ls-dataArea .ls-item:last-child {
  border-right: none;
}
.md-table .ls-dataArea .ls-item__date,
.md-table .ls-dataArea .ls-item__dateTime {
  font-size: 12px;
  line-height: 1;
}
.md-table .ls-dataArea .ls-item__date span:nth-of-type(1) {
  display: block;
}
.md-table .ls-dataArea .ls-item__date span:nth-of-type(2) {
  display: block;
  padding-top: 3px;
  text-align: right;
}
.md-table .ls-dataArea .ls-item__dateTime {
  font-size: 0;
}
.md-table .ls-dataArea .ls-item__dateTime span {
  font-size: 12px;
}
.md-table .ls-dataArea .ls-item__dateTime span:nth-of-type(1) {
  display: inline-block;
}
.md-table .ls-dataArea .ls-item__dateTime span:nth-of-type(2) {
  display: inline-block;
  padding-top: 3px;
  text-align: right;
}
.md-table .ls-item--col {
  display: flex;
  flex-direction: column;
}
.md-table .ls-item--col .ls-item:last-of-type {
  border-right: 1px solid #c5c5c5;
}
.md-table .ls-item {
  flex: 0 0 auto;
  padding-left: 6px;
  padding-right: 6px;
  min-height: 50px;
}
.md-table .ls-item > div {
  padding-left: 3px;
  padding-right: 3px;
}
.md-table .ls-item > div:first-child {
  padding-left: 0;
}
.md-table .ls-item > div:last-child {
  padding-right: 0;
}
.md-table .ls-headerY .ls-itemGroup .ls-item {
  padding-left: 6px;
}
.md-table .ls-headerY .ls-itemGroup .ls-item:not(:last-of-type) {
  border-bottom-style: dashed;
}
.md-table .ls-headerY .ls-itemGroup .ls-item:not(:first-of-type) .ls__option {
  visibility: hidden;
  pointer-events: none;
}
.md-table .ls-headerY .gs-col > .ls-item > .el-checkBox,
.md-table .ls-headerY .gs-col > .ls-item > .md-checkBox {
  min-height: 49px;
}
.md-table .ls-headerY .gs-col > .ls-item > .md-checkBox > .el-checkBox {
  min-height: 47px;
}
.md-table .ls-dataArea .ls-itemGroup .gs-row:not(:last-of-type) .ls-item {
  border-bottom-style: dashed;
}
.md-table .ls-item .el-inputText,
.md-table .ls-item .el-button {
  width: 100%;
  text-align: center;
}
.md-table .gs-row--separator {
  width: 100%;
  height: 3px;
  background-color: #999;
}
.md-table .ls-headerY .gs-row.op-merge .ls-item {
  border-bottom: none;
}

/* /2024-09-12a : G-1024 */
.md-table .ls--check {
  width: 50px;
}
.md-table .ls__check {
  width: 44px;
  height: 100%;
}
.md-table .ls--apply {
  width: 65px;
}
.md-table .ls--allocation {
  width: 65px;
}
.md-table .ls--pic {
  width: 120px;
}
.md-table .ls--distribution {
  width: 130px;
}
.md-table .ls--distribution .ls__from,
.md-table .ls--distribution .ls__to {
  width: 59px;
}
.md-table .ls__deadline {
  width: 65px;
}
.md-table .ls__edit {
  width: 54px;
}
.md-table .ls--code {
  width: 120px;
}
.md-table .ls--pic {
  width: 120px;
}
.md-table .ls--update {
  width: 100px;
}
.md-table .ls--updater {
  width: 120px;
}
.md-table .ls--delete {
  width: 60px;
}

.md-table .ls-origin .ls__check,
.md-table .ls-origin .ls__title {
  text-align: center;
}
.md-table .ls-headerY .ls__check {
  text-align: center;
}
.md-table .ls-headerY .ls--title {
  justify-content: flex-start;
}
.md-table .ls-headerY .ls--apply {
  padding-right: 24px;
  justify-content: flex-end;
}
.md-table .ls-dataArea .ls--apply {
  padding-right: 24px;
  justify-content: flex-end;
}
.md-table .ls-dataArea .ls--allocation,
.md-table .ls-dataArea .ls--pic,
.md-table .ls-dataArea .ls--distribution,
.md-table .ls-dataArea .ls--code,
.md-table .ls-dataArea .ls--update,
.md-table .ls-dataArea .ls--updater {
  justify-content: center;
}
.md-table .ls-dataArea .ls__pic,
.md-table .ls-dataArea .ls__status,
.md-table .ls-dataArea .ls__deadline {
  text-align: center;
}

.md-table .ls-dataArea .ls--distribution span,
.md-table .ls-dataArea .ls__deadline span {
  display: block;
  text-align: center;
}
.md-table .ls-dataArea .ls--distribution span:nth-of-type(1),
.md-table .ls-dataArea .ls__deadline span:nth-of-type(1) {
  padding-right: 6px;
}
.md-table .ls-dataArea .ls--distribution span:nth-of-type(2),
.md-table .ls-dataArea .ls__deadline span:nth-of-type(2) {
  padding-top: 3px;
  padding-left: 6px;
}
.md-table .ls-dataArea .ls--update span {
  display: block;
  padding-right: 0px;
  text-align: right;
}
.md-table .ls-dataArea .ls--update:nth-of-type(2) {
  padding-top: 3px;
}

.md-table .ls-headerY .ls-item.ls--red,
.md-table .ls-dataArea .ls--red .ls-item,
.md-table .ls-headerY .ls-item.ls--caution.ls--red,
.md-table .ls-dataArea .ls--caution.ls--red .ls-item {
  background-color: #fdd;
}
.md-table .ls-headerY .ls-item.ls--yellow,
.md-table .ls-dataArea .ls--yellow .ls-item,
.md-table .ls-headerY .ls-item.ls--caution.ls--yellow,
.md-table .ls-dataArea .ls--caution.ls--yellow .ls-item {
  background-color: #fff6e0;
}
.md-table .ls-headerY .ls-item.ls--green,
.md-table .ls-dataArea .ls--green .ls-item,
.md-table .ls-headerY .ls-item.ls--caution.ls--green,
.md-table .ls-dataArea .ls--caution.ls--green .ls-item {
  background-color: #dfd;
}
.md-table .ls-headerY .ls-item.ls--blue,
.md-table .ls-dataArea .ls--blue .ls-item,
.md-table .ls-headerY .ls-item.ls--caution.ls--blue,
.md-table .ls-dataArea .ls--caution.ls--blue .ls-item {
  background-color: #def;
}
.md-table .ls-headerY .ls-item.ls--gray,
.md-table .ls-dataArea .ls--gray .ls-item,
.md-table .ls-headerY .ls-item.ls--caution.ls--gray,
.md-table .ls-dataArea .ls--caution.ls--gray .ls-item {
  background-color: #ddd;
}
.md-table .ls-headerY .ls-item.ls--caution,
.md-table .ls-dataArea .ls--caution .ls-item {
  background-color: transparent;
}
.md-table .ls-headerY .ls-item.ls--caution.ls--caution--j,
.md-table .ls-dataArea .ls--caution.ls--caution--j .ls-item,
.md-table .ls-headerY .ls-item.ls--caution.ls--caution--b,
.md-table .ls-dataArea .ls--caution.ls--caution--b .ls-item,
.md-table .ls-headerY .ls-item.ls--caution.ls--caution--etc,
.md-table .ls-dataArea .ls--caution.ls--caution--etc .ls-item {
  background-color: #ede;
}
.md-table .ls-headerY .ls-item.ls--diff,
.md-table .ls-dataArea .ls--diff .ls-item,
.md-table .ls-headerY .ls--noMatch .ls-item,
.md-table .ls-dataArea .ls--noMatch .ls-item {
  background-color: #fd9;
  color: #111;
}
.md-table .ls-headerY .ls--match .ls-item,
.md-table .ls-dataArea .ls--match .ls-item {
  animation: match 1s;
}
@keyframes match {
  50% {
    background-color: rgb(153, 221, 204);
  }
  100% {
    background-color: rgba(153, 221, 204, 0);
  }
}
.md-table .ls--locked .ls-item,
.md-table .ls--deleted .ls-item {
  background-color: #ccc;
}
.md-table .ls-headerY .ls-item.ls--caution::before,
.md-table .ls-headerY .ls-item.ls--caution.ls--caution::before {
  background-color: #777;
}
.md-table .ls-headerY .ls-item.ls--red::before,
.md-table .ls-headerY .ls-item.ls--caution.ls--red::before {
  background-color: #c00;
}
.md-table .ls-headerY .ls-item.ls--yellow::before,
.md-table .ls-headerY .ls-item.ls--caution.ls--yellow::before {
  background-color: #e90;
}
.md-table .ls-headerY .ls-item.ls--green::before,
.md-table .ls-headerY .ls-item.ls--caution.ls--green::before {
  background-color: #080;
}
.md-table .ls-headerY .ls-item.ls--blue::before,
.md-table .ls-headerY .ls-item.ls--caution.ls--blue::before {
  background-color: #00b;
}
.md-table .ls-headerY .ls-item.ls--gray::before,
.md-table .ls-headerY .ls-item.ls--caution.ls--gray::before {
  background-color: #999;
}
.md-table .ls-headerY .ls-item.ls--caution.ls--caution--j::before,
.md-table .ls-headerY .ls-item.ls--caution.ls--caution--b::before,
.md-table .ls-headerY .ls-item.ls--caution.ls--caution--etc::before {
  background-color: #b5b;
}
.md-table .ls-headerY .ls-item.ls--diff::before,
.md-table .ls-headerY .ls-item.ls--caution.ls--diff::before {
  background-color: #c63;
}
.md-table .ls-headerY .ls-item.ls--locked::before,
.md-table .ls-headerY .ls-item.ls--deleted::before,
.md-table .ls-headerY .ls-item.ls--caution.ls--locked::before,
.md-table .ls-headerY .ls-item.ls--caution.ls--deleted::before {
  background-color: #888;
}

.md-table .ls-distributionType {
  padding-top: 3px;
}
.md-table .ls-taskLabel {
  display: inline-block;
  margin-right: 2px;
  width: 50px;
  height: 32px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  text-align: center;
  line-height: 32px;
}
.md-table .ls-taskLabel.ls--done {
  border-color: #999;
  background-color: #999;
  color: #fff;
}
.md-table .ls-taskLabel.ls--exception {
  border-color: transparent;
  background-color: transparent;
  color: #777;
}

.md-table .ls--title {
  flex-wrap: wrap;
  align-content: center;
}

.gs-titleSet {
  display: block;
  padding: 3px 0 !important;
  width: 100%;
}

.gs-titleSet + .gs-titleSet {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.gs-title,
.gs-subtitle,
.gs-episode,
.gs-apply {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.gs-subtitle {
  flex: 0 1 auto;
}

.gs-episode,
.gs-apply {
  flex: 0 0 auto;
}

.gs-subtitle::after {
  content: "，";
}

.gs-subtitle[title=""]::after {
  content: "";
}

.gs-apply::before {
  content: "，";
}

.gs-sort,
.gs-ascend,
.gs-descend {
  margin-left: 0.5em;
}
.gs-sort + .fa-stack,
.gs-ascend + .fa-stack,
.gs-descend + .fa-stack {
  width: 1em;
}

.gs-sort + .fa-stack i {
  width: 1em;
  color: #ccc;
}

.gs-ascend + .fa-stack i:first-of-type {
  color: #555;
}
.gs-ascend + .fa-stack i:last-of-type {
  color: #ccc;
}

.gs-descend + .fa-stack i:first-of-type {
  color: #ccc;
}
.gs-descend + .fa-stack i:last-of-type {
  color: #555;
}

.md-scrollBar {
  position: fixed;
  z-index: 301;
  bottom: 48px;
  height: 12px;
  background-color: transparent;
  overflow-x: scroll;
  overflow-y: hidden;
  opacity: 1;
  transition: opacity 0.2s;
}
.md-scrollBar::-webkit-scrollbar {
  height: 12px;
}
.md-scrollBar::-webkit-scrollbar-track {
  background: #ccc;
  border: none;
  border-radius: 10px;
}
.md-scrollBar::-webkit-scrollbar-thumb {
  background: #777;
  border-radius: 10px;
  box-shadow: none;
}
.md-scrollBar.gs-hide {
  opacity: 0;
  bottom: -50px;
}
.md-scrollBar .ls-content {
  height: 12px;
  background-color: #f00;
}

.md-tableFooter {
  padding: 6px 12px;
}

.md-table--inner {
  position: relative;
  display: grid;
  font-size: 14px;
}
.md-table--inner.op-hTop {
  grid-template-columns: 1fr;
  grid-template-rows: min-content 1fr;
}
.md-table--inner.op-hTop .ls-headerX {
  grid-row: 1/2;
  grid-column: 1/2;
  display: flex;
  flex-direction: row;
}
.md-table--inner.op-hTop .ls-dataArea {
  grid-row: 2/3;
  grid-column: 1/2;
  background-color: #f6f6f6;
  overflow: auto;
}
.md-table--inner.op-hTopLeft {
  grid-template-columns: min-content 1fr;
  grid-template-rows: min-content 1fr;
}
.md-table--inner.op-hTopLeft .ls-origin {
  grid-row: 1/2;
  grid-column: 1/2;
}
.md-table--inner.op-hTopLeft .ls-headerX {
  grid-row: 1/2;
  grid-column: 2/3;
  display: flex;
  flex-direction: row;
}
.md-table--inner.op-hTopLeft .ls-headerY {
  position: relative;
  grid-row: 2/3;
  grid-column: 1/2;
}
.md-table--inner.op-hTopLeft .ls-dataArea {
  grid-row: 2/3;
  grid-column: 2/3;
  background-color: #f6f6f6;
  overflow: auto;
}
.md-table--inner .ls-origin {
  display: flex;
  flex-direction: row;
  background-color: #fff;
  overflow: hidden;
}
.md-table--inner .ls-origin .ls-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
}
.md-table--inner .ls-headerX {
  display: flex;
  flex-direction: row;
  background-color: transparent;
  border-bottom: none;
  overflow: hidden;
}
.md-table--inner .ls-headerX .ls-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
}
.md-table--inner .ls-headerX .ls-item {
  border-right: none;
}
.md-table--inner .ls-headerX .ls-item.ls-item--flex {
  flex: 1 0 auto;
}
.md-table--inner .ls-headerY {
  border-right: none;
  background-color: #f6f6f6;
  overflow: hidden;
}
.md-table--inner .ls-headerY .ls-col {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.md-table--inner .ls-headerY .ls-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-right: none;
}
.md-table--inner .ls-headerY .ls-more {
  height: 36px;
}
.md-table--inner .ls-dataArea .ls-itemGroup,
.md-table--inner .ls-dataArea .ls-row,
.md-table--inner .ls-dataArea .gs-row {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.md-table--inner .ls-dataArea .ls-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-right: none;
  border-bottom: 1px solid #c5c5c5;
}
.md-table--inner .ls-dataArea .ls-item.ls-item--flex {
  flex: 1 0 auto;
}
.md-table--inner .ls-dataArea .ls-item__date,
.md-table--inner .ls-dataArea .ls-item__dateTime {
  font-size: 12px;
  line-height: 1;
}
.md-table--inner .ls-dataArea .ls-item__date span:nth-of-type(1),
.md-table--inner .ls-dataArea .ls-item__dateTime span:nth-of-type(1) {
  display: block;
}
.md-table--inner .ls-dataArea .ls-item__date span:nth-of-type(2),
.md-table--inner .ls-dataArea .ls-item__dateTime span:nth-of-type(2) {
  display: block;
  padding-top: 3px;
  text-align: right;
}
.md-table--inner .ls-item--col {
  display: flex;
  flex-direction: column;
}
.md-table--inner .ls-date--md {
  font-size: 12px;
}
.md-table--inner .ls-item {
  padding: 0 6px;
  min-height: 32px;
  border-right: none;
  background-color: transparent;
}
.md-table--inner .ls-item > div {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  padding: 0 3px;
}
.md-table--inner .ls-item > div:first-of-type {
  padding: 0 3px 0 0;
}
.md-table--inner .ls-item > div:last-of-type {
  padding: 0 0 0 3px;
}
.md-table--inner .ls-item--blank {
  flex: 1 1 auto;
  border-right: none;
}
.md-table--inner .ls-item .el-inputText,
.md-table--inner .ls-item .el-button {
  width: 100%;
  text-align: center;
}

.md-table.gr-2x2 {
  position: relative;
  display: grid;
}
.md-table.gr-2x2.op-left100 {
  grid-template-columns: 100px calc(100% - 100px);
}
.md-table.gr-2x2.op-left200 {
  grid-template-columns: 200px calc(100% - 200px);
}
.md-table.gr-2x2.op-left300 {
  grid-template-columns: 300px calc(100% - 300px);
}
.md-table.gr-2x2.op-left400 {
  grid-template-columns: 400px calc(100% - 400px);
}
.md-table.gr-2x2.op-left500 {
  grid-template-columns: 500px calc(100% - 500px);
}
.md-table.gr-2x2 .ls-origin {
  grid-row: 1/2;
  grid-column: 1/2;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  border-right: 1px solid #c5c5c5;
  border-bottom: 1px solid #c5c5c5;
  background-color: #fff;
  overflow: hidden;
}
.md-table.gr-2x2 .ls-origin .ls-item {
  font-weight: bold;
}
.md-table.gr-2x2 .ls-headerX {
  position: relative;
  grid-row: 1/2;
  grid-column: 2/3;
  border-bottom: 1px solid #c5c5c5;
  background-color: #fff;
  overflow: hidden;
}
.md-table.gr-2x2 .ls-headerX .ls-row {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.md-table.gr-2x2 .ls-headerX .ls-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 32px;
}
.md-table.gr-2x2 .ls-headerY {
  position: relative;
  grid-row: 2/3;
  grid-column: 1/2;
  border-right: 1px solid #c5c5c5;
  background-color: #f6f6f6;
  overflow: hidden;
}
.md-table.gr-2x2 .ls-headerY .ls-col {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.md-table.gr-2x2 .ls-headerY .ls-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 48px;
  border-bottom: 1px solid #c5c5c5;
}
.md-table.gr-2x2 .ls-headerY .ls-more {
  height: 36px;
}
.md-table.gr-2x2 .ls-dataArea {
  grid-row: 2/3;
  grid-column: 2/3;
  background-color: #f6f6f6;
  overflow: auto;
}
.md-table.gr-2x2 .ls-dataArea .ls-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.md-table.gr-2x2 .ls-dataArea .ls-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 48px;
  border-bottom: 1px solid #c5c5c5;
}
.md-table.gr-2x2 .ls-dataArea .ls-item--date span:nth-of-type(1),
.md-table.gr-2x2 .ls-dataArea .ls-item--update span:nth-of-type(1) {
  display: block;
  font-size: 12px;
}
.md-table.gr-2x2 .ls-dataArea .ls-item--date span:nth-of-type(2),
.md-table.gr-2x2 .ls-dataArea .ls-item--update span:nth-of-type(2) {
  display: block;
  padding: 3px 0 0 6px;
  text-align: right;
}
.md-table.gr-2x2 .ls-dataArea .ls-item--blank {
  flex: 1 1 auto;
}
.md-table.gr-2x2 .ls-dataArea .md-button {
  margin: 0;
  width: 100%;
}
.md-table.gr-2x2 .ls-dataArea .ls-more {
  height: 36px;
}
.md-table.gr-2x2 .ls-dataArea .ls-more button {
  width: 100%;
  height: 100%;
}
.md-table.gr-2x2 .ls-item {
  padding: 0 12px;
  font-size: 14px;
  line-height: 1;
}

.md-table.gr-1x2 {
  position: relative;
  display: grid;
}
.md-table.gr-1x2.op-header24 {
  grid-template-rows: 24px calc(100% - 24px);
}
.md-table.gr-1x2.op-header24 .ls-item {
  height: 24px;
}
.md-table.gr-1x2.op-header32 {
  grid-template-rows: 32px calc(100% - 32px);
}
.md-table.gr-1x2.op-header32 .ls-item {
  height: 32px;
}
.md-table.gr-1x2 .ls-headerX {
  position: relative;
  grid-row: 1/2;
  border-bottom: 1px solid #c5c5c5;
  background-color: #fff;
  overflow: hidden;
}
.md-table.gr-1x2 .ls-headerX .ls-row {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.md-table.gr-1x2 .ls-headerX .ls-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.md-table.gr-1x2 .ls-dataArea {
  grid-row: 2/3;
  background-color: #f6f6f6;
  overflow: auto;
}
.md-table.gr-1x2 .ls-dataArea .ls-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.md-table.gr-1x2 .ls-dataArea .gs-row {
  background: linear-gradient(#f6f6f6 0% calc(100% - 1px), #c5c5c5 100%);
}
.md-table.gr-1x2 .ls-dataArea .ls-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 48px;
}
.md-table.gr-1x2 .ls-dataArea .ls-item--date span:nth-of-type(1),
.md-table.gr-1x2 .ls-dataArea .ls-item--update span:nth-of-type(1),
.md-table.gr-1x2 .ls-dataArea .ls-item--armaInport1 span:nth-of-type(1),
.md-table.gr-1x2 .ls-dataArea .ls-item--armaInport2 span:nth-of-type(1) {
  display: block;
  font-size: 12px;
}
.md-table.gr-1x2 .ls-dataArea .ls-item--date span:nth-of-type(2),
.md-table.gr-1x2 .ls-dataArea .ls-item--update span:nth-of-type(2),
.md-table.gr-1x2 .ls-dataArea .ls-item--armaInport1 span:nth-of-type(2),
.md-table.gr-1x2 .ls-dataArea .ls-item--armaInport2 span:nth-of-type(2) {
  display: block;
  padding: 3px 0 0 6px;
  text-align: right;
}
.md-table.gr-1x2 .ls-dataArea .ls-item--blank {
  flex: 1 1 auto;
}
.md-table.gr-1x2 .ls-dataArea .md-button {
  margin: 0;
  width: 100%;
}
.md-table.gr-1x2 .ls-dataArea .ls-more {
  height: 36px;
}
.md-table.gr-1x2 .ls-dataArea .ls-more button {
  width: 100%;
  height: 100%;
}
.md-table.gr-1x2 .ls-item {
  padding: 0 12px;
  font-size: 14px;
  line-height: 1;
}

.op-data24 .ls-item {
  height: 24px !important;
}

.md-table .gs-row.ls-separator .ls-item {
  justify-content: flex-start;
  padding-left: 12px;
  width: 100%;
  min-height: 18px;
  background-color: #999;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}

/* 2023-07-14a : G-433 */
.md-table .gs-row.gs-highlight .ls-item {
  background-color: hsl(210, 100%, 95%);
  cursor: pointer;
}

/* /2023-07-14a : G-433 */
/* ################################################## */
/* Common */
/* ################################################## */
/* Common » Header */
/* ================================================== */
.cp-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  border-bottom: 2px solid #fff;
  background-color: #f44;
  color: #fff;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
}
.cp-header .ls-title {
  flex: 1 1 auto;
  padding-left: 12px;
  font-size: 20px;
}
.cp-header .ls-loginUser {
  display: flex;
  flex-direction: row;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.cp-header .ls-logoutButton .el-button {
  color: #fff;
  font-size: 14px;
}

@media (max-width: 768px) {
  .cp-header .ls-title {
    font-size: 14px;
  }
  .cp-header .ls-loginUser i,
  .cp-header .ls-logoutButton span {
    display: none;
  }
}
/* Common » Content */
/* ================================================== */
.cp-content {
  overflow: auto;
}

.cp-searchBox,
.cp-resutlBox {
  margin-top: 12px;
}

.md-heading {
  margin-bottom: 6px;
}

/* Common » Footer */
/* ================================================== */
.cp-footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 12px;
  padding: 0 12px;
  height: 48px;
  border-radius: 2px 2px 0 0;
  background-color: hsl(210, 100%, 95%);
  color: #fff;
  box-shadow: 1px -1px 6px rgba(0, 0, 0, 0.2);
}
.cp-footer .md-function {
  flex: 1 1 auto;
  text-align: left;
}
.cp-footer .md-functionRight {
  flex: 1 1 auto;
  text-align: right;
}
.cp-footer .el-button.ls-delete {
  min-width: 80px;
}
.cp-footer .ls-file {
  margin-right: 6px;
}
.cp-footer .ls-file .el-button {
  margin-right: 0;
}
.cp-footer .ls-addKouban {
  width: 160px;
}
.cp-footer .md-okCancel .md-button.ls-cancel span {
  color: #fff;
}
.cp-footer .md-okCancel .md-button.ls-cancel:hover span {
  color: #555;
}
.cp-footer .md-okCancel .md-button.ls-ok {
  width: 120px;
}

/* ############################################################### */
/* EMERGENCY LOGIN */
/* ############################################################### */
.pg-emergency.pg__login {
  background-image: url("../img/photo_01.jpg");
  background-size: cover;
}
.pg-emergency.pg__login .cp-header,
.pg-emergency.pg__login .modalBg {
  display: none;
}
.pg-emergency.pg__login .modalMessage {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
.pg-emergency.pg__login .modalMessage .modalHeader .md-heading {
  background-color: #f44;
}
.pg-emergency.pg__login .modalMessage .modalHeader .md-heading i {
  color: #fff;
  background-color: transparent;
}
.pg-emergency.pg__login .modalMessage .modalHeader .md-heading span {
  color: #fff;
}

/* ############################################################### */
/* EMERGENCY */
/* ############################################################### */
/* EMERGENCY » CONTENT » Search */
/* =============================================================== */
.pg-emergency .cp-searchBox .ls-keyword .el-inputText {
  width: 300px;
}

@media (max-width: 1024px) {
  .pg-emergency .cp-searchBox .ls-keyword .el-inputText {
    width: auto;
  }
}
/* EMERGENCY » CONTENT » Result (Pay) */
/* =============================================================== */
.pg-emergency.pg__pay .cp-resultBox {
  margin-top: 12px;
}
.pg-emergency.pg__pay .cp-resultBox .ls-dataArea .gs-row:has(+ .gs-row .ls-item:empty) {
  background-image: none;
}
.pg-emergency.pg__pay .cp-resultBox .ls-dataArea .gs-row:has(+ .gs-row .ls--id:empty) .ls-item.ls--duration,
.pg-emergency.pg__pay .cp-resultBox .ls-dataArea .gs-row:has(+ .gs-row .ls--id:empty):has(+ .gs-row .ls--select:not(:empty)) .ls-item.ls--select {
  border-bottom-style: dashed;
}
.pg-emergency.pg__pay .cp-resultBox .ls-dataArea .gs-row:has(+ .gs-row .ls--id:empty) .ls-item,
.pg-emergency.pg__pay .cp-resultBox .ls-dataArea .gs-row:has(+ .gs-row .ls--id:empty):has(+ .gs-row .ls--select:empty) .ls-item.ls--select {
  border-bottom-style: none;
}
.pg-emergency.pg__pay .cp-resultBox .ls--id {
  width: 120px;
}
.pg-emergency.pg__pay .cp-resultBox .ls--title {
  width: calc((100% - 120px - 280px - 450px) / 2);
}
.pg-emergency.pg__pay .cp-resultBox .ls--episode {
  width: calc((100% - 120px - 280px - 450px) / 2);
}
.pg-emergency.pg__pay .cp-resultBox .ls--duration {
  width: 280px;
}
.pg-emergency.pg__pay .cp-resultBox .ls__from,
.pg-emergency.pg__pay .cp-resultBox .ls__to {
  position: relative;
  flex: 1 1 auto;
  text-align: center;
}
.pg-emergency.pg__pay .cp-resultBox .ls__from::after {
  content: "〜";
  position: absolute;
  left: 100%;
  transform: translate(-50%, 0);
}
.pg-emergency.pg__pay .cp-resultBox .ls--select {
  width: 450px;
}
.pg-emergency.pg__pay .cp-resultBox .ls--select .el-radioButton {
  flex-grow: 1;
}
.pg-emergency.pg__pay .cp-resultBox .ls--select .el-radioButton .ls-label {
  margin: 0 3px;
  border-radius: 6px;
}
.pg-emergency.pg__pay .cp-resultBox .ls--select .el-radioButton:nth-child(1):has(input[type=radio]) .ls-label {
  border: 2px solid #f30;
}
.pg-emergency.pg__pay .cp-resultBox .ls--select .el-radioButton:nth-child(2):has(input[type=radio]) .ls-label {
  border: 2px solid #93f;
}
.pg-emergency.pg__pay .cp-resultBox .ls--select .el-radioButton:nth-child(3):has(input[type=radio]) .ls-label {
  border: 2px solid #999;
}
.pg-emergency.pg__pay .cp-resultBox .ls--select .el-radioButton:has(input[type=radio]:checked) .ls-label {
  color: #fff;
}
.pg-emergency.pg__pay .cp-resultBox .ls--select .el-radioButton:has(input[type=radio]:checked) .ls-label::before {
  color: #fff;
}
.pg-emergency.pg__pay .cp-resultBox .ls--select .el-radioButton:has(input[type=radio]:disabled) {
  cursor: not-allowed;
}
.pg-emergency.pg__pay .cp-resultBox .ls--select .el-radioButton:has(input[type=radio]:disabled) .ls-label {
  border: 2px solid #e6e6e6;
}
.pg-emergency.pg__pay .cp-resultBox .ls--select .el-radioButton:nth-child(1):has(input[type=radio]:checked) .ls-label {
  background-color: #f30;
}
.pg-emergency.pg__pay .cp-resultBox .ls--select .el-radioButton:nth-child(2):has(input[type=radio]:checked) .ls-label {
  background-color: #93f;
}
.pg-emergency.pg__pay .cp-resultBox .ls--select .el-radioButton:nth-child(3):has(input[type=radio]:checked) .ls-label {
  background-color: #999;
}
.pg-emergency.pg__pay .cp-resultBox .ls--select .ls-label {
  width: 100%;
}

@media (max-width: 1024px) {
  .pg-emergency.pg__pay .cp-resultBox .ls-headerX {
    display: none;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls-dataArea {
    background-color: transparent;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls-dataArea .gs-row {
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    background-image: none;
    background-color: #f6f6f6;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls-dataArea .gs-row:has(+ .gs-row .ls-item:empty) {
    border-radius: 0;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls-dataArea .gs-row:has(.ls-item:empty) {
    border-radius: 0 0 6px 6px;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls-dataArea .gs-row:has(+ .gs-row .ls--id:empty):has(+ .gs-row .ls--select:not(:empty)) .ls-item.ls--select {
    border-bottom-style: none;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls-item {
    position: relative;
    padding: 24px 12px 9px;
    width: auto;
    min-height: 36px;
    border-right: none;
    border-bottom: none;
    border-left: none;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls-item:empty {
    display: none;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls-item:before {
    position: absolute;
    top: 0;
    left: 0;
    padding: 3px 12px;
    width: 100%;
    background-color: #999;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls--id {
    order: 1;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls--id::before {
    content: "GODIGO ID";
    border-radius: 6px 6px 0 0;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls--title {
    order: 2;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls--title::before {
    content: "タイトル";
  }
  .pg-emergency.pg__pay .cp-resultBox .ls--episode {
    order: 3;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls--episode::before {
    content: "エピソード";
  }
  .pg-emergency.pg__pay .cp-resultBox .ls--duration {
    order: 5;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls--duration::before {
    content: "配信期間";
    display: block;
    padding-top: 6px;
    height: auto;
    transform: none;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 0;
    background-color: transparent;
    color: #555;
    font-family: inherit;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls--duration .ls__from,
  .pg-emergency.pg__pay .cp-resultBox .ls--duration .ls__to {
    flex: 0 0 auto;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls--duration .ls__from::after {
    transform: none;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls--duration .ls__to {
    padding-left: 1em;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls-dataArea .ls--duration {
    min-height: 24px;
    border-bottom-style: none;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls--select {
    order: 4;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls--select::before {
    content: "緊急停止/延期";
  }
  .pg-emergency.pg__pay .cp-resultBox .ls--select .el-radioButton .ls-label {
    padding-left: 6px;
    text-align: center;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls--select .el-radioButton .ls-label::before {
    position: relative;
    left: auto;
    top: auto;
    display: block;
    transform: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3px;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls--select .el-radioButton input[type=radio]:checked ~ .ls-label::before {
    font-size: 20px;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls-item:empty + .ls-item:not(:empty) {
    padding-top: 0;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls-item:empty ~ .ls-item.ls--duration:not(:empty) {
    padding-top: 24px;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls-item:empty + .ls-item:not(:empty)::before {
    display: none;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls-item:empty ~ .ls-item.ls--duration:not(:empty)::before {
    display: block;
  }
  .pg-emergency.pg__pay .cp-resultBox .gs-row:not(:has(.ls-item:empty)):not(:first-child),
  .pg-emergency.pg__pay .cp-resultBox .gs-row:has(.ls-item:empty) + .gs-row:not(:has(.ls-item:empty)) {
    margin-top: 18px;
  }
  .pg-emergency.pg__pay .cp-resultBox .ls-dataArea .gs-row:has(+ .gs-row .ls-item:empty) .ls-item,
  .pg-emergency.pg__pay .cp-resultBox .ls-dataArea .gs-row:has(+ .gs-row .ls--id:empty) .ls-item.ls--duration {
    border-bottom-style: none;
  }
}
/* EMERGENCY » CONTENT » Result (Free) */
/* =============================================================== */
.pg-emergency.pg__free .cp-resultBox {
  margin-top: 12px;
}
.pg-emergency.pg__free .cp-resultBox .ls-dataArea .gs-row:has(+ .gs-row .ls-item:empty) {
  background-image: none;
}
.pg-emergency.pg__free .cp-resultBox .ls-dataArea .gs-row:has(+ .gs-row .ls--id:empty) .ls-item {
  border-bottom-style: none;
}
.pg-emergency.pg__free .cp-resultBox .ls-dataArea .gs-row:has(+ .gs-row .ls--id:empty) .ls-item.ls--distribution,
.pg-emergency.pg__free .cp-resultBox .ls-dataArea .gs-row:has(+ .gs-row .ls--id:empty) .ls-item.ls--onair {
  border-bottom-style: dashed;
}
.pg-emergency.pg__free .cp-resultBox .ls--id {
  width: 210px;
}
.pg-emergency.pg__free .cp-resultBox .ls--title {
  width: calc((100% - 210px - 420px - 100px - 540px) / 2);
  min-width: 180px;
}
.pg-emergency.pg__free .cp-resultBox .ls--episode {
  width: calc((100% - 210px - 420px - 100px - 540px) / 2);
  min-width: 180px;
}
.pg-emergency.pg__free .cp-resultBox .ls--distribution {
  width: 420px;
}
.pg-emergency.pg__free .cp-resultBox .ls--distribution .ls__status {
  width: 78px;
}
.pg-emergency.pg__free .cp-resultBox .ls--distribution .ls__distributor {
  width: 75px;
}
.pg-emergency.pg__free .cp-resultBox .ls--distribution .ls__time {
  width: 266px;
}
.pg-emergency.pg__free .cp-resultBox .ls-headerX .ls--distribution .ls__status span {
  letter-spacing: -1px;
  transform: scaleX(0.85);
}
.pg-emergency.pg__free .cp-resultBox .ls-dataArea .ls--distribution {
  padding: 0;
  background-image: linear-gradient(to bottom, #ddd 0 18px, transparent 18px 100%);
  background-repeat: no-repeat;
}
.pg-emergency.pg__free .cp-resultBox .ls-dataArea .ls--distribution > div {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.pg-emergency.pg__free .cp-resultBox .ls-dataArea .ls--distribution > div > div {
  flex: 1 1 auto;
  padding-top: 2px;
  padding-bottom: 2px;
}
.pg-emergency.pg__free .cp-resultBox .ls-dataArea .ls--distribution .ls__time {
  align-items: start;
}
.pg-emergency.pg__free .cp-resultBox .ls-dataArea .ls--distribution .ls__time div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.pg-emergency.pg__free .cp-resultBox .ls-dataArea .ls--distribution .ls__time div span {
  padding: 0;
}
.pg-emergency.pg__free .cp-resultBox .ls-dataArea .ls--distribution .ls__time div span:first-of-type::after {
  content: "〜";
  margin-left: 6px;
  margin-right: 6px;
}
.pg-emergency.pg__free .cp-resultBox .ls-dataArea .ls--distribution .ls__time div span.ls--disallowed:first-of-type::after {
  content: "";
}
.pg-emergency.pg__free .cp-resultBox .ls-dataArea .ls--distribution > .ls__time > div {
  padding-right: 6px;
}
.pg-emergency.pg__free .cp-resultBox .ls-dataArea .ls--distribution .ls__status {
  overflow: visible;
}
.pg-emergency.pg__free .cp-resultBox .ls-dataArea .ls--distribution .ls__status div:first-child {
  padding-left: 2.5em;
  white-space: nowrap;
  overflow: visible;
}
.pg-emergency.pg__free .cp-resultBox .ls-dataArea .ls--distribution:not(:has(.ls__distributor > div)) {
  background-image: none;
}
.pg-emergency.pg__free .cp-resultBox .ls--onair {
  width: 100px;
  justify-content: center;
}
.pg-emergency.pg__free .cp-resultBox .ls--select {
  width: 540px;
}
.pg-emergency.pg__free .cp-resultBox .ls--select .el-radioButton {
  flex-grow: 1;
}
.pg-emergency.pg__free .cp-resultBox .ls--select .el-radioButton .ls-label {
  margin: 0 3px;
  width: 100%;
  border-radius: 6px;
}
.pg-emergency.pg__free .cp-resultBox .ls--select .el-radioButton:nth-child(1):has(input[type=radio]) .ls-label {
  border: 2px solid #f30;
}
.pg-emergency.pg__free .cp-resultBox .ls--select .el-radioButton:nth-child(2):has(input[type=radio]) .ls-label {
  border: 2px solid #93f;
}
.pg-emergency.pg__free .cp-resultBox .ls--select .el-radioButton:nth-child(3):has(input[type=radio]) .ls-label {
  border: 2px solid #999;
}
.pg-emergency.pg__free .cp-resultBox .ls--select .el-radioButton:has(input[type=radio]:checked) .ls-label {
  color: #fff;
}
.pg-emergency.pg__free .cp-resultBox .ls--select .el-radioButton:has(input[type=radio]:checked) .ls-label::before {
  color: #fff;
}
.pg-emergency.pg__free .cp-resultBox .ls--select .el-radioButton:nth-child(1):has(input[type=radio]:checked) .ls-label {
  background-color: #f30;
}
.pg-emergency.pg__free .cp-resultBox .ls--select .el-radioButton:nth-child(2):has(input[type=radio]:checked) .ls-label {
  background-color: #93f;
}
.pg-emergency.pg__free .cp-resultBox .ls--select .el-radioButton:nth-child(3):has(input[type=radio]:checked) .ls-label {
  background-color: #999;
}

@media (max-width: 1024px) {
  .pg-emergency.pg__free .cp-resultBox .ls-headerX {
    display: none;
  }
  .pg-emergency.pg__free .cp-resultBox .ls-dataArea {
    background-color: transparent;
  }
  .pg-emergency.pg__free .cp-resultBox .ls-dataArea .gs-row {
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    background-image: none;
    background-color: #f6f6f6;
  }
  .pg-emergency.pg__free .cp-resultBox .ls-dataArea .gs-row:has(+ .gs-row .ls-item:empty) {
    border-radius: 0;
  }
  .pg-emergency.pg__free .cp-resultBox .ls-dataArea .gs-row:has(.ls-item:empty) {
    border-radius: 0 0 6px 6px;
  }
  .pg-emergency.pg__free .cp-resultBox .ls-item {
    position: relative;
    padding: 24px 12px 9px;
    width: auto;
    min-height: 36px;
    border-right: none;
    border-bottom: none;
    border-left: none;
  }
  .pg-emergency.pg__free .cp-resultBox .ls-item:empty {
    display: none;
  }
  .pg-emergency.pg__free .cp-resultBox .ls-item:before {
    position: absolute;
    top: 0;
    left: 0;
    padding: 3px 12px;
    width: 100%;
    background-color: #999;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
  }
  .pg-emergency.pg__free .cp-resultBox .ls--id {
    order: 1;
  }
  .pg-emergency.pg__free .cp-resultBox .ls--id::before {
    content: "GODIGO ID";
    border-radius: 6px 6px 0 0;
  }
  .pg-emergency.pg__free .cp-resultBox .ls--title {
    order: 2;
  }
  .pg-emergency.pg__free .cp-resultBox .ls--title::before {
    content: "タイトル";
  }
  .pg-emergency.pg__free .cp-resultBox .ls--episode {
    order: 3;
  }
  .pg-emergency.pg__free .cp-resultBox .ls--episode::before {
    content: "エピソード";
  }
  .pg-emergency.pg__free .cp-resultBox .ls--distribution {
    order: 5;
    font-size: clamp(0.719rem, 0.556rem + 0.69vw, 1rem);
  }
  .pg-emergency.pg__free .cp-resultBox .ls--distribution::before {
    content: "編成・配信設定";
    display: block;
    padding-top: 6px;
    height: auto;
    transform: none;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 0;
    background-color: transparent;
    color: #555;
    font-family: inherit;
  }
  .pg-emergency.pg__free .cp-resultBox .ls--distribution .ls__status {
    width: 4.5em;
    text-align: left;
  }
  .pg-emergency.pg__free .cp-resultBox .ls--distribution .ls__distributor {
    width: 5em;
  }
  .pg-emergency.pg__free .cp-resultBox .ls--distribution .ls__time {
    width: calc(100% - 9.5em);
  }
  .pg-emergency.pg__free .cp-resultBox .ls-dataArea .ls--distribution .ls__status div:first-child {
    padding-left: 0;
    overflow: visible;
  }
  .pg-emergency.pg__free .cp-resultBox .ls-dataArea .ls--distribution {
    padding: 24px 12px 9px;
    min-height: 24px;
    border-bottom-style: none;
    background-image: none;
  }
  .pg-emergency.pg__free .cp-resultBox .ls--onair {
    order: 6;
    justify-content: flex-start;
  }
  .pg-emergency.pg__free .cp-resultBox .ls--onair::before {
    content: "放送日";
  }
  .pg-emergency.pg__free .cp-resultBox .ls--select {
    order: 4;
  }
  .pg-emergency.pg__free .cp-resultBox .ls--select::before {
    content: "緊急停止/延期";
  }
  .pg-emergency.pg__free .cp-resultBox .ls--select .el-radioButton .ls-label {
    padding-left: 6px;
    text-align: center;
  }
  .pg-emergency.pg__free .cp-resultBox .ls--select .el-radioButton .ls-label::before {
    position: relative;
    left: auto;
    top: auto;
    display: block;
    transform: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3px;
  }
  .pg-emergency.pg__free .cp-resultBox .ls--select .el-radioButton input[type=radio]:checked ~ .ls-label::before {
    font-size: 20px;
  }
  .pg-emergency.pg__free .cp-resultBox .ls--select .el-radioButton.ls--cancel .ls-label {
    display: grid;
    height: 100%;
    white-space: nowrap;
  }
  .pg-emergency.pg__free .cp-resultBox .ls-item:empty + .ls-item:not(:empty) {
    padding-top: 0;
  }
  .pg-emergency.pg__free .cp-resultBox .ls-item:empty + .ls-item:not(:empty)::before {
    display: none;
  }
  .pg-emergency.pg__free .cp-resultBox .gs-row:not(:has(.ls-item:empty)):not(:first-child),
  .pg-emergency.pg__free .cp-resultBox .gs-row:has(.ls-item:empty) + .gs-row:not(:has(.ls-item:empty)) {
    margin-top: 18px;
  }
  .pg-emergency.pg__free .cp-resultBox .ls-dataArea .gs-row:has(+ .gs-row .ls-item:empty) .ls-item,
  .pg-emergency.pg__free .cp-resultBox .ls-dataArea .gs-row:has(+ .gs-row .ls--id:empty) .ls-item.ls--distribution {
    border-bottom-style: none;
  }
}
/* EMERGENCY » FOOTER */
/* ############################################################### */
/* 2026-01-19a : G-1421 */
/* ############################################################### */
/* EMERGENCY : [Modal] *** */
/* ############################################################### */
/* ############################################################### */
/* Modal */
/* ############################################################### */
/* Modal : Background */
/* =============================================================== */
.modalBg {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}
.modalBg.op-tDropTarget::before {
  content: "ここにファイルをドラッグ＆ドロップしてください";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: block;
  padding-top: 2em;
  border: 5px dotted #fff;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  font-size: 2em;
}

/* Modal : Content */
/* =============================================================== */
.modalContent {
  position: absolute;
  z-index: 101;
  top: 50%;
  left: 50%;
  width: 800px;
  height: calc(100vh - 128px);
  transform: translate(-50%, -50%);
  border-radius: 2px;
  background-color: #e6e6e6;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
}
.modalContent.op-wide {
  width: calc(1340px - 24px);
}
.modalContent.op-short {
  height: 70vh;
  min-height: 600px;
}
.modalContent.op-fluid {
  width: calc(100vw - 48px);
  height: calc(100vh - 48px);
}
.modalContent .md-editArea {
  padding: 24px 48px;
  overflow: auto;
}
.modalContent .md-editArea.op-noScroll {
  overflow: hidden;
}
.modalContent .md-editArea .ls-itemGroup__heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: -12px;
  margin-right: -12px;
  padding: 8px 18px;
  border-radius: 16px;
  background-color: #666;
  color: #fff;
  line-height: 1;
}
.modalContent .md-editArea .ls-itemGroup:not(:first-child) .ls-itemGroup__heading {
  margin-top: 24px;
}
.modalContent .modalHeader {
  position: absolute;
  z-index: 10;
  top: 0;
  width: 100%;
  height: 64px;
}
.modalContent .modalHeader .md-heading {
  padding: 12px;
  width: 100%;
  height: 64px;
  border-bottom: 1px solid #c5c5c5;
  background-color: #f0f0f0;
}
.modalContent .modalHeader .md-heading h2 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.modalContent .modalHeader .md-heading h2 i {
  flex: 0 0 auto;
  margin-right: 12px;
}
.modalContent .modalHeader .md-heading h2 span {
  flex: 1 1 auto;
  line-height: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-all;
  line-height: 1.1;
}
.modalContent .modalHeader .md-heading h2:has(:nth-child(3)) > i + span {
  flex: 0 0 auto;
  margin-right: 12px;
}
.modalContent .modalBody {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 48px;
  overflow: auto;
  padding: 0 12px 12px;
}
.modalContent .modalBody .md-heading h2 > i {
  border: 2px solid #555;
  color: #555;
  background-color: transparent;
}
.modalContent .modalFooter {
  position: absolute;
  z-index: 10;
  bottom: 0;
  width: 100%;
  height: 48px;
}

/* Modal : Message */
/* =============================================================== */
.modalMessage {
  position: absolute;
  z-index: 201;
  top: 50%;
  left: 50%;
  width: 800px;
  min-height: 328px;
  max-height: calc(100dvh - 128px);
  transform: translate(-50%, -50%);
  border-radius: 2px;
  background-color: #e6e6e6;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
  transition: width 0.2s;
}
.modalMessage.op-wide {
  width: calc(1340px - 24px);
}
.modalMessage.op-fluid {
  width: calc(100dvw - 48px);
  height: calc(100dvh - 48px);
}
.modalMessage .md-editArea {
  padding: 24px 48px;
  overflow: auto;
}
.modalMessage .md-editArea.op-noScroll {
  overflow: hidden;
}
.modalMessage .md-editArea .ls-itemGroup__heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: -12px;
  margin-right: -12px;
  padding: 8px 18px;
  border-radius: 16px;
  background-color: #666;
  color: #fff;
  line-height: 1;
}
.modalMessage .md-editArea .ls-itemGroup:not(:first-child) .ls-itemGroup__heading {
  margin-top: 24px;
}
.modalMessage .modalHeader {
  position: absolute;
  z-index: 10;
  top: 0;
  width: 100%;
}
.modalMessage .modalHeader .md-heading {
  padding: 12px;
  width: 100%;
  border-bottom: 1px solid #c5c5c5;
  background-color: #f0f0f0;
}
.modalMessage .modalHeader .md-heading h2 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.modalMessage .modalHeader .md-heading h2 i {
  flex: 0 0 auto;
  margin-right: 12px;
}
.modalMessage .modalHeader .md-heading h2 span {
  flex: 1 1 auto;
  line-height: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-all;
  line-height: 1.1;
}
.modalMessage .modalHeader .md-heading h2:has(:nth-child(3)) > i + span {
  flex: 0 0 auto;
  margin-right: 12px;
}
.modalMessage .modalBody {
  position: relative;
  overflow: auto;
  padding: 66px 12px 48px;
  max-height: calc(100vh - 128px);
}
.modalMessage .modalBody .md-heading {
  margin-top: -24px;
}
.modalMessage .modalBody .md-heading h2 > i {
  border: 2px solid #555;
  color: #555;
  background-color: transparent;
}
.modalMessage .modalBody .el-messageText {
  padding: 0 18px 6px;
}
.modalMessage .modalBody .md-inputItem {
  margin-bottom: 18px;
}
.modalMessage .modalBody .md-table.op-sticky .ls-origin,
.modalMessage .modalBody .md-table.op-sticky .ls-headerX {
  position: sticky;
  top: -24px;
  z-index: 2;
}
.modalMessage .modalFooter {
  position: absolute;
  z-index: 10;
  bottom: 0;
  width: 100%;
  height: 48px;
}

@media (max-width: 1024px) {
  .modalMessage {
    width: 90dvw;
    max-width: 800px;
  }
}
/*# sourceMappingURL=common--sp.css.map */
