@charset "UTF-8";
/******
** Original sccs
*/
.panel {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-title-color: ;
  --bs-card-subtitle-color: ;
  --bs-card-border-width: var(--bs-border-width);
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: var(--bs-border-radius);
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: var(--bs-body-bg);
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  color: var(--bs-body-color);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
}
.panel > hr {
  margin-right: 0;
  margin-left: 0;
}
.panel > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.panel > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}
.panel > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}
.panel > .panel-header + .list-group,
.panel > .list-group + .panel-footer {
  border-top: 0;
}

.panel-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
}

.panel-title {
  margin-bottom: var(--bs-card-title-spacer-y);
  color: var(--bs-card-title-color);
}

.panel-subtitle {
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0;
  color: var(--bs-card-subtitle-color);
}

.panel-text:last-child {
  margin-bottom: 0;
}

.panel-link + .panel-link {
  margin-left: var(--bs-card-spacer-x);
}

.panel-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.panel-header:first-child {
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}

.panel-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.panel-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}

.panel-header-tabs {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0;
}
.panel-header-tabs .nav-link.active {
  background-color: var(--bs-card-bg);
  border-bottom-color: var(--bs-card-bg);
}

.panel-header-pills {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
}

.panel-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius);
}

.panel-img,
.panel-img-top,
.panel-img-bottom {
  width: 100%;
}

.panel-img,
.panel-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}

.panel-img,
.panel-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

.panel-group > .panel {
  margin-bottom: var(--bs-card-group-margin);
}
@media (min-width: 576px) {
  .panel-group {
    display: flex;
    flex-flow: row wrap;
  }
  .panel-group > .panel {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .panel-group > .panel + .panel {
    margin-left: 0;
    border-left: 0;
  }
  .panel-group > .panel:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .panel-group > .panel:not(:last-child) .panel-img-top,
  .panel-group > .panel:not(:last-child) .panel-header {
    border-top-right-radius: 0;
  }
  .panel-group > .panel:not(:last-child) .panel-img-bottom,
  .panel-group > .panel:not(:last-child) .panel-footer {
    border-bottom-right-radius: 0;
  }
  .panel-group > .panel:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .panel-group > .panel:not(:first-child) .panel-img-top,
  .panel-group > .panel:not(:first-child) .panel-header {
    border-top-left-radius: 0;
  }
  .panel-group > .panel:not(:first-child) .panel-img-bottom,
  .panel-group > .panel:not(:first-child) .panel-footer {
    border-bottom-left-radius: 0;
  }
}

/*!
 * ELCIELOで使用するもののみを暫定でインポート
 * 次回はBootstrap5標準を全件使用できるようにする
 */
@font-face {
  font-display: block;
  font-family: "bootstrap-icons";
  src: url("../elcielo_bootstrap5/fonts/bootstrap-icons.woff2?24e3eb84d0bcaf83d77f904c78ac1f47") format("woff2"), url("../elcielo_bootstrap5/fonts/bootstrap-icons.woff?24e3eb84d0bcaf83d77f904c78ac1f47") format("woff");
}
.glyphicon::before,
[class^=glyphicon-]::before,
[class*=" glyphicon-"]::before {
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.glyphicon-circle-arrow-up::before {
  content: "\f139";
}

.glyphicon-circle-arrow-down::before {
  content: "\f118";
}

.glyphicon-home::before {
  content: "\f422";
}

.glyphicon-lock::before {
  content: "\f47a";
}

.glyphicon-shopping-cart::before {
  content: "\f23d";
}

.glyphicon-backward::before {
  content: "\f551";
}

.glyphicon-forward::before {
  content: "\f55d";
}

.glyphicon-play::before {
  content: "\f557";
}

.glyphicon-question-sign::before {
  content: "\f504";
}

.glyphicon-print::before {
  content: "\f500";
}

.glyphicon-download-alt::before {
  content: "\f355";
}

.glyphicon-prev::before {
  content: "\f563";
}

.glyphicon-hand-index::before {
  content: "\f403";
}

.glyphicon-keyboard::before {
  content: "\f451";
}

.glyphicon-display::before {
  content: "\f302";
}

/******
** カラーパレット
*/
/*
** Bootstrap overwrite
*/
.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: #000;
  --bs-nav-link-hover-color: none;
  --bs-nav-link-disabled-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  background: none;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: var(--bs-nav-link-hover-color);
}
.nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.nav-link.disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  --bs-nav-tabs-border-width: var(--bs-border-width);
  --bs-nav-tabs-border-color: var(--bs-border-color);
  --bs-nav-tabs-border-radius: var(--bs-border-radius);
  --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}
.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}
.nav-tabs .nav-link.disabled, .nav-tabs .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}
.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #41835c;
}
.nav-pills .nav-link {
  border-radius: var(--bs-nav-pills-border-radius);
}
.nav-pills .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  background-color: transparent;
  border-color: transparent;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}

.nav-underline {
  --bs-nav-underline-gap: 1rem;
  --bs-nav-underline-border-width: 0.125rem;
  --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
  gap: var(--bs-nav-underline-gap);
}
.nav-underline .nav-link {
  padding-right: 0;
  padding-left: 0;
  border-bottom: var(--bs-nav-underline-border-width) solid transparent;
}
.nav-underline .nav-link:hover, .nav-underline .nav-link:focus {
  border-bottom-color: currentcolor;
}
.nav-underline .nav-link.active,
.nav-underline .show > .nav-link {
  font-weight: 700;
  color: var(--bs-nav-underline-link-active-color);
  border-bottom-color: currentcolor;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(1rem + var(--bs-border-width));
  padding-bottom: calc(1rem + var(--bs-border-width));
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + var(--bs-border-width));
  padding-bottom: calc(0.5rem + var(--bs-border-width));
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + var(--bs-border-width));
  padding-bottom: calc(0.25rem + var(--bs-border-width));
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-secondary-color);
}

.form-control {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::-webkit-date-and-time-value {
  min-width: 85px;
  height: 1.5em;
  margin: 0;
}
.form-control::-webkit-datetime-edit {
  display: block;
  padding: 0;
}
.form-control::-moz-placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.form-control::placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.form-control:disabled {
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 1rem 2rem;
  margin: -1rem -2rem;
  margin-inline-end: 2rem;
  color: var(--bs-body-color);
  background-color: var(--bs-tertiary-bg);
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: var(--bs-border-width);
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: var(--bs-secondary-bg);
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 1rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: transparent;
  border: solid transparent;
  border-width: var(--bs-border-width) 0;
}
.form-control-plaintext:focus {
  outline: 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}

.form-control-color {
  width: 3rem;
  height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
  padding: 1rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}
.form-control-color::-webkit-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}
.form-control-color.form-control-sm {
  height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
}
.form-control-color.form-control-lg {
  height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}

.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 1rem 3rem 1rem 2rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 2rem;
  background-image: none;
}
.form-select:disabled {
  background-color: var(--bs-secondary-bg);
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--bs-body-color);
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}

[data-bs-theme=dark] .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23adb5bd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right;
}
.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}

.form-check-input {
  --bs-form-check-bg: var(--bs-body-bg);
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: var(--bs-border-width) solid var(--bs-border-color);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  width: 2em;
  margin-left: -2.5em;
  background-image: var(--bs-form-switch-bg);
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-switch.form-check-reverse {
  padding-right: 2.5em;
  padding-left: 0;
}
.form-switch.form-check-reverse .form-check-input {
  margin-right: -2.5em;
  margin-left: 0;
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e");
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #b6d4fe;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-tertiary-bg);
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #b6d4fe;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-tertiary-bg);
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: var(--bs-secondary-color);
}
.form-range:disabled::-moz-range-thumb {
  background-color: var(--bs-secondary-color);
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
  height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  padding: 1rem 0.75rem;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: var(--bs-border-width) solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder,
.form-floating > .form-control-plaintext::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown), .form-floating > .form-control-plaintext:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill,
.form-floating > .form-control-plaintext:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  color: rgba(var(--bs-body-color-rgb), 0.65);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-select ~ label {
  color: rgba(var(--bs-body-color-rgb), 0.65);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label::after {
  position: absolute;
  inset: 1rem 0.375rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: var(--bs-body-bg);
  border-radius: var(--bs-border-radius);
}
.form-floating > .form-control:focus ~ label::after,
.form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.form-floating > .form-control-plaintext ~ label::after,
.form-floating > .form-select ~ label::after {
  position: absolute;
  inset: 1rem 0.375rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: var(--bs-body-bg);
  border-radius: var(--bs-border-radius);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  color: rgba(var(--bs-body-color-rgb), 0.65);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control-plaintext ~ label {
  border-width: var(--bs-border-width) 0;
}
.form-floating > :disabled ~ label {
  color: #6c757d;
}
.form-floating > :disabled ~ label::after {
  background-color: var(--bs-secondary-bg);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select,
.input-group > .form-floating {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus,
.input-group > .form-floating:focus-within {
  z-index: 5;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 5;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-tertiary-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 5rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: calc(var(--bs-border-width) * -1);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .form-floating:not(:first-child) > .form-control,
.input-group > .form-floating:not(:first-child) > .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-valid-color);
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: var(--bs-success);
  border-radius: var(--bs-border-radius);
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: var(--bs-form-valid-border-color);
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: var(--bs-form-valid-border-color);
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  padding-right: 4.125rem;
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

.was-validated .form-control-color:valid, .form-control-color.is-valid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: var(--bs-form-valid-border-color);
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: var(--bs-form-valid-color);
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: var(--bs-form-valid-color);
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid,
.was-validated .input-group > .form-select:not(:focus):valid,
.input-group > .form-select:not(:focus).is-valid,
.was-validated .input-group > .form-floating:not(:focus-within):valid,
.input-group > .form-floating:not(:focus-within).is-valid {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-invalid-color);
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: var(--bs-danger);
  border-radius: var(--bs-border-radius);
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  padding-right: 4.125rem;
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

.was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: var(--bs-form-invalid-color);
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: var(--bs-form-invalid-color);
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid,
.was-validated .input-group > .form-select:not(:focus):invalid,
.input-group > .form-select:not(:focus).is-invalid,
.was-validated .input-group > .form-floating:not(:focus-within):invalid,
.input-group > .form-floating:not(:focus-within).is-invalid {
  z-index: 4;
}

.table,
.el-table-bordered {
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: var(--bs-body-color);
  --bs-table-bg: none;
  --bs-table-border-color: #cccccc;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-body-color);
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: var(--bs-body-color);
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: var(--bs-body-color);
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  margin-bottom: 1rem;
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}
.table > :not(caption) > * > *,
.el-table-bordered > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  background-color: var(--bs-table-bg);
  border-bottom-width: var(--bs-border-width);
  box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}
.table > tbody,
.el-table-bordered > tbody {
  vertical-align: inherit;
}
.table > thead,
.el-table-bordered > thead {
  vertical-align: bottom;
}

.table-group-divider {
  border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: var(--bs-border-width) 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 var(--bs-border-width);
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-striped-columns > :not(caption) > tr > :nth-child(even) {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-active {
  --bs-table-color-state: var(--bs-table-active-color);
  --bs-table-bg-state: var(--bs-table-active-bg);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-color-state: var(--bs-table-hover-color);
  --bs-table-bg-state: var(--bs-table-hover-bg);
}

.table-primary {
  --bs-table-color: #000;
  --bs-table-bg: #cfe2ff;
  --bs-table-border-color: #bacbe6;
  --bs-table-striped-bg: #c5d7f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bacbe6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfd1ec;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-secondary {
  --bs-table-color: #000;
  --bs-table-bg: #e2e3e5;
  --bs-table-border-color: #cbccce;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbccce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-success {
  --bs-table-color: #000;
  --bs-table-bg: #d1e7dd;
  --bs-table-border-color: #bcd0c7;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1d6cc;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-info {
  --bs-table-color: #000;
  --bs-table-bg: #cff4fc;
  --bs-table-border-color: #badce3;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-warning {
  --bs-table-color: #000;
  --bs-table-bg: #fff3cd;
  --bs-table-border-color: #e6dbb9;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece1be;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-danger {
  --bs-table-color: #000;
  --bs-table-bg: #f8d7da;
  --bs-table-border-color: #dfc2c4;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-light {
  --bs-table-color: #000;
  --bs-table-bg: #f8f9fa;
  --bs-table-border-color: #dfe0e1;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #212529;
  --bs-table-border-color: #373b3e;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
/*
** .table-bordered -> table
** 通常のテーブルをborderありに変更
** .el-table-bordered
** 枠線なしのテーブルの修正対応
*/
.table > :not(caption) > *,
.el-table-bordered > :not(caption) > * {
  border-width: var(--bs-border-width) 0;
}
.table > :not(caption) > * > *,
.el-table-bordered > :not(caption) > * > * {
  border-width: 0 var(--bs-border-width);
}

.table a {
  word-break: break-all;
}

/*
** 全体
*/
body {
  font-family: Meiryo UI, sans-serif;
  font-size: 1em;
}

object {
  display: none;
}

.container {
  max-width: 90%;
}

.display-sp {
  display: none;
}

a {
  color: #3f7c57;
  font-weight: bold;
}
a:link, a:visited {
  text-decoration: none;
}
a:hover, a:active {
  text-decoration: underline;
}

.panel-success .panel-heading {
  color: #41835c;
  background-color: #e6ffe6;
  padding: 10px;
  border-radius: 4px 4px 0px 0px;
}

.panel-primary .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
  border-radius: 4px 4px 0px 0px;
}

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.alert-success {
  color: #3f7c57;
  background-color: #e6ffe6;
  border-color: #e6ffe6;
}

.alert-danger {
  color: #fff;
  background-color: #ce4b0d;
  border-color: #ce4b0d;
  text-decoration: underline;
  font-weight: bold;
}

.error {
  color: #ce4b0d;
  font-weight: bold;
}

.HighLight {
  color: #1d71bc;
  background-color: #fdfa26;
  font-style: oblique;
  font-weight: bold;
}

/*
**スキップリンク
**PKGCSS
*/
div#blockskip {
  background-color: #41835c;
  margin: 0;
  overflow: visible;
  padding: 0;
  width: 100%;
  z-index: 9999;
}

div#blockskip a {
  cursor: default;
  display: block;
  font-size: 1px;
  height: 1px;
  line-height: 0;
  margin: -1px 0 0;
  min-width: initial;
  padding: 0;
  width: 100%;
  color: #fff;
}

div#blockskip a.show {
  cursor: pointer;
  font-size: 93%;
  line-height: 1;
  height: 20px;
  width: 100%;
  display: block;
  color: #fff;
  text-decoration: none !important;
}

div#blockskip a.de {
  font-size: 0px;
  text-decoration: none !important;
}

div#blockskip a:focus {
  text-decoration: none !important;
}

div#blockskip a:hover {
  text-decoration: underline !important;
}

/******
** ナビゲーションバー
*/
.navbar-main {
  background-color: #41835c;
}
.navbar-main .el-navbar-brand {
  margin: 0px 10px;
}
.navbar-main .el-nav-item {
  margin: 0px 10px;
}
.navbar-main .loginstat-mes {
  color: #fff;
  font-weight: bolder;
  font-size: 1em;
  padding: 8px;
  margin: 0px 0px 0px 4px;
}
.navbar-main .header-menu {
  margin: 10px 0px;
}
.navbar-main .header-menu .btn {
  width: 100%;
}
.navbar-main .header-menu .recommendnew {
  margin-left: 10px;
  color: #fff9c4;
  font-size: smaller;
}

.el-opac-switch label,
.el-css label,
.el-mode label,
.el-resize label {
  padding: 10px 12px;
}

.el-opac-switch .btn,
.el-css .btn,
.el-mode .btn {
  padding: 4px 10px;
}

.el-resize .btn {
  padding: 4px 14px;
}

a.textresizer-active {
  background-color: #41835c;
  color: #fff;
  border-color: #41835c;
}
a.textresizer-active:hover {
  background-color: #5cb85c;
  color: #fff;
  border-color: #5cb85c;
}

.el-ewb img {
  width: 66%;
}

#HelpOpenM .HelpFrame {
  height: 70vh;
  width: 100%;
}

/******
** パンくずリスト
*/
.el-breadcrumb {
  color: #000;
  font-weight: bold;
  background-color: #fff;
  margin-bottom: 0.5rem;
}
.el-breadcrumb li {
  padding-left: var(--bs-breadcrumb-item-padding-x);
}
.el-breadcrumb li + li::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.el-breadcrumb li + li.active {
  color: var(--bs-breadcrumb-item-active-color);
}
.el-breadcrumb li a {
  text-decoration: none;
  color: #41835c;
}
.el-breadcrumb li a:hover {
  color: #fff;
  background-color: #41835c;
}

/******
** 見出し
*/
h1 {
  font-weight: bold;
  font-size: 1.4em;
}
h1 .usercard {
  background-color: #e6ffe6;
  font-weight: bold;
  font-size: 0.6em;
  margin-left: 20px;
}
h1 .limitday {
  background-color: #e6ffe6;
  font-weight: bold;
  font-size: 0.6em;
  margin-left: 20px;
}
h1 .smicon {
  width: 50px;
}

h2.bibd {
  position: relative;
  padding: 0.75em 1em 0.75em 1.5em;
  border: 1px solid #ccc;
  background-color: #fff;
  font-size: 1em;
}

h2.bibd::after {
  position: absolute;
  top: 0.5em;
  left: 0.5em;
  content: "";
  width: 6px;
  height: calc(100% - 1em);
  background-color: #019a66;
  border-radius: 4px;
}

h2,
h3,
h4 {
  white-space: nowrap;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 1em;
  font-weight: bold;
}

h2 {
  font-weight: normal;
}

/******
**フォーム
*/
.baseline {
  margin: 0.5rem 0rem;
}

.form-group {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  margin-left: 0px;
  margin-bottom: 20px;
}

.form-control {
  display: inline;
  width: auto;
  font-size: 1em;
  padding: 0.8rem 2rem;
}

.control-label {
  padding: 0.8rem;
  margin-bottom: 0;
  font-weight: 700;
}

.form-select option {
  padding: 30px 0px;
}

textarea {
  position: relative;
  background: transparent;
  height: auto;
  width: 480px;
  resize: none;
  overflow: hidden;
  border: none;
  outline: none;
}

/******
** ボタン
*/
.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: #41835c;
  --bs-btn-border-color: #41835c;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5cb85c;
  --bs-btn-hover-border-color: #5cb85c;
  --bs-btn-focus-shadow-rgb: 94, 150, 116;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #5cb85c;
  --bs-btn-active-border-color: #5cb85c;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #41835c;
  --bs-btn-disabled-border-color: #41835c;
  --bs-btn-padding-y: 10px;
  --bs-btn-padding-x: 16px;
  --bs-btn-font-size: 1em;
  --bs-btn-border-radius: 6px;
}
.btn-success:hover {
  text-decoration: none;
}

.btn-default {
  --bs-btn-color: #000;
  --bs-btn-bg: #fff;
  --bs-btn-border-color: #cccccc;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #e6e6e6;
  --bs-btn-hover-border-color: #8c8c8c;
  --bs-btn-focus-shadow-rgb: 173, 173, 173;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #e6e6e6;
  --bs-btn-active-border-color: #8c8c8c;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #fff;
  --bs-btn-disabled-border-color: #cccccc;
  --bs-btn-padding-y: 10px;
  --bs-btn-padding-x: 16px;
  --bs-btn-font-size: 1em;
  --bs-btn-border-radius: 6px;
}
.btn-default:hover {
  text-decoration: none;
}

.el-btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #3d8bfd;
  --bs-btn-hover-border-color: #3d8bfd;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #3d8bfd;
  --bs-btn-active-border-color: #3d8bfd;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
  --bs-btn-padding-y: 10px;
  --bs-btn-padding-x: 16px;
  --bs-btn-font-size: 1em;
  --bs-btn-border-radius: 6px;
}
.el-btn-primary:hover {
  text-decoration: none;
}

.btn-key {
  --bs-btn-color: #000;
  --bs-btn-bg: #f5f5f5;
  --bs-btn-border-color: #cccccc;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f7f7f7;
  --bs-btn-hover-border-color: #d1d1d1;
  --bs-btn-focus-shadow-rgb: 173, 173, 173;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f7f7f7;
  --bs-btn-active-border-color: #d1d1d1;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f5f5f5;
  --bs-btn-disabled-border-color: #cccccc;
  font-weight: bold;
  width: 40px;
  margin: 4px;
  font-size: 1em;
}
.btn-key:active {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  text-decoration: none;
}
.btn-key:hover, .btn-key:link, .btn-key:visited {
  text-decoration: none;
}

.btn-keysel {
  --bs-btn-color: #fff;
  --bs-btn-bg: #41835c;
  --bs-btn-border-color: #41835c;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #376f4e;
  --bs-btn-hover-border-color: #34694a;
  --bs-btn-focus-shadow-rgb: 94, 150, 116;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #34694a;
  --bs-btn-active-border-color: #316245;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #41835c;
  --bs-btn-disabled-border-color: #41835c;
  font-weight: bold;
  width: 40px;
  margin: 4px;
  font-size: 1em;
}
.btn-keysel:active, .btn-keysel:hover, .btn-keysel:link, .btn-keysel:visited {
  text-decoration: none;
}

/******
** pagination
*/
.el-pagination {
  --bs-pagination-padding-x: 16px;
  --bs-pagination-padding-y: 10px;
  --bs-pagination-font-size: 1em;
  --bs-pagination-border-radius: 4px;
}
.el-pagination li {
  border-color: #cccccc;
}
.el-pagination li a {
  color: #000;
  text-decoration: none;
}
.el-pagination li a:hover {
  color: #000;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.el-pagination li span {
  color: #000;
  pointer-events: none;
}
.el-pagination .active .page-link {
  color: white;
  background-color: #41835c;
  border-color: #41835c;
  font-weight: bold;
}

.jumppage {
  margin-right: 6px;
  padding: 0.8rem 0.8rem !important;
}

/******
** radio
*/
.radio {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  overflow: hidden;
  padding: 0;
  clip: rect(0, 0, 0, 0);
}
.radio + label {
  font-weight: normal;
  display: block;
  float: left;
  margin: 10px;
  text-align: center;
  line-height: 18px;
  padding: 1rem;
  cursor: pointer;
  color: #000;
  border: 1px solid #cccccc;
  border-radius: 5px;
  background-color: #fff;
}
.radio + label:hover {
  background-color: #e6e6e6;
  border: 1px solid #8c8c8c;
}
.radio:focus + label {
  background-color: #e6e6e6;
  border: 1px solid #8c8c8c;
}
.radio:checked + label {
  color: #fff;
  background-color: #41835c;
  border: 1px solid #41835c;
}
.radio:checked + label:hover {
  color: #fff;
  background-color: #5cb85c;
  border: 1px solid #5cb85c;
}
.radio:checked:focus + label {
  color: #fff;
  background-color: #5cb85c;
  border: 1px solid #5cb85c;
}
.radio:disabled + label {
  background-color: #e6e6e6;
  border: 1px solid #cccccc;
  color: #cccccc;
}

/*
** checkbox
*/
.checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  overflow: hidden;
  padding: 0;
  clip: rect(0, 0, 0, 0);
}
.checkbox + label {
  font-weight: normal;
  display: block;
  float: left;
  margin: 5px;
  width: 100%;
  text-align: center;
  line-height: 40px;
  padding: 10px 5px;
  cursor: pointer;
  color: #000;
  border: 1px solid #cccccc;
  border-radius: 5px;
  background: #fff;
}
.checkbox:hover + label {
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.checkbox:focus + label {
  outline: thin dotted;
}
.checkbox:checked + label {
  color: #fff;
  background-color: #41835c;
  border: 1px solid #41835c;
}
.checkbox:focus + label, .checkbox:active + label {
  border-radius: 0px;
  border: 1px solid #000;
  border-style: dotted;
}

.el-checkbox {
  inline-size: 2rem;
  block-size: 4rem;
}

/*
** listgroup
** ファセット
** カテゴリグループ
*/
.tablehead {
  font-weight: bold;
  border: 1px solid #cccccc;
  padding: 7px;
  background: #e6ffe6;
  color: #3f7c57;
}

.tablerow {
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

.tbltop {
  border-top: 1px solid #cccccc;
}

.tblsel {
  background: #41835c;
  color: #fff;
}
.tblsel:hover, .tblsel:focus {
  color: #fff;
  background: #5cb85c;
}
.tblsel a {
  font-weight: normal;
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 15px 5px;
}
.tblsel a:hover, .tblsel a:focus {
  color: #fff;
  background-color: #5cb85c;
}

.tbldef {
  background: #fff;
  color: #000;
}
.tbldef:hover, .tbldef:focus {
  background: #e6e6e6;
}
.tbldef a {
  font-weight: normal;
  display: block;
  text-decoration: none;
  color: #000;
  padding: 15px 5px;
}
.tbldef a:hover, .tbldef a:focus {
  color: #000;
  background: #e6e6e6;
}

/*
** 資料一覧
** 検索一覧、新着案内、ベストリーダ ...etc
*/
th.basemark,
td.basemark {
  background-color: #6ab283;
}

th.active {
  background-color: #f5f5f5;
}

.basemark {
  background-color: #6ab283;
}

.basecolor {
  background-color: #e6ffe6;
}

.lightcolor {
  background-color: #fefefe;
}

.smallfont {
  font-size: 0.8em;
}

.list_item_title {
  min-width: 150px;
}

.list_item_author {
  min-width: 120px;
}

.list_item_pubyear {
  min-width: 90px;
}

.list_item_assessment {
  min-width: 100px;
}

.list_item_pub {
  min-width: 120px;
}

.list_item_status {
  min-width: 100px;
}

.list_item_addcart {
  min-width: 150px;
}

.list_item_issue {
  min-width: 250px;
}

.list_item_volume {
  min-width: 200px;
}

.list_item_topics {
  min-width: 250px;
}

.list_item_library {
  min-width: 180px;
}

.list_item_library_s {
  min-width: 100px;
}

.list_item_bmsp {
  min-width: 100px;
}

.list_item_location {
  min-width: 180px;
}

.list_item_class {
  min-width: 180px;
}

.list_item_barcode {
  min-width: 200px;
}

.list_item_hold_status {
  min-width: 180px;
}

.list_item_map {
  min-width: 150px;
}

.list_item_showreview {
  min-width: 150px;
}

.list_item_remark {
  min-width: 120px;
}

.list_item_date {
  min-width: 150px;
}

.list_item_kiji_head {
  min-width: 40vw;
}

.list_item_hold {
  min-width: 100px;
}

/*
** sort
*/
.sortmark,
.sortmark-userinfo {
  color: #fff;
  font-size: 1.8em;
}

.clearText {
  position: absolute;
  left: -9999px;
}

/*
** 背表紙表示
*/
.shelfcontainer {
  margin: 10px auto;
  width: 960px;
  position: relative;
}

.bookshelf {
  margin: 0px auto;
  padding-left: 40px;
  padding-bottom: 25px;
  width: 960px;
  height: 540px;
  overflow-y: hidden;
  overflow-x: hidden;
  white-space: nowrap;
  background-image: url("../img/bookshelf/shelf.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  box-sizing: border-box;
}

.shelfscroll {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 40px 8px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.left-arrow {
  left: 0;
}

.right-arrow {
  right: 0;
}

.spine {
  display: flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  align-self: auto;
}

.bookcover img {
  border: 1px solid #000000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  -o-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.bookcover .noimage {
  width: 40px;
  background-color: #fff;
  border: 1px solid #000000;
}

.bookcover .noimage:hover {
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.4);
  -o-box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.4);
  transition: 0.2s;
  z-index: 1;
  transform: scale(1.1) translate(0px, 6px);
}

.bookcover div {
  position: relative;
}

.bookcover div p {
  position: absolute;
  width: 100%;
  font-size: 1em;
  color: #000000;
  top: 2%;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  overflow: hidden;
  transform: translateX(-60%);
  height: 90%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.bookcover img:hover {
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.4);
  -o-box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.4);
  transition: 0.2s;
  z-index: 1;
  transform: scale(1.1) translate(0px, 6px);
}

/******
** OPWMAIN
*/
.btn-elmain-area a {
  text-decoration: none;
}
.btn-elmain-area p {
  color: #41835c;
  font-weight: bold;
}

.MES_topmes {
  width: 95%;
  margin: 0 auto;
}

/******
** OPWSRCH
*/
.CollapsibleBox {
  border: 1px solid #41835c !important;
  margin: 5px !important;
  /*
  & .CollapsibleBoxBody {
  	& a {
  		margin: 4px 10px;
  	}
  }
  */
}
.CollapsibleBox .CollapsibleBoxTitle {
  background: #41835c !important;
  font-weight: bold !important;
  margin: 2px !important;
  padding: 1px !important;
}
.CollapsibleBox .CollapsibleBoxTitle .cBoxTitle {
  color: #fff !important;
}
.CollapsibleBox .CollapsibleBoxTitle .cBoxTitle a {
  color: #fff !important;
  text-decoration: none;
}

.well .form-control {
  margin: 4px 0px;
}

.WRTCALS20 hr {
  height: 1px;
}
.WRTCALS20 label {
  display: block;
  float: left;
}
.WRTCALS20 ul {
  list-style: none;
  margin: 0;
  border: 0;
  padding: 0;
  width: 98%;
}
.WRTCALS20 ul li {
  float: left;
  width: 20%;
  table-layout: fixed;
  word-break: break-all;
  background-position: left;
  background-repeat: no-repeat;
  margin: 8px;
}
.WRTCALS20 ul li span label {
  white-space: normal;
}
.WRTCALS20 .subhead {
  width: 20%;
}
.WRTCALS20 .subinc {
  width: 100%;
  table-layout: fixed;
  word-break: break-all;
}

/******
** OPWSRCHTYPE
** 他のページも使っている可能性あり
*/
.ul-list-group {
  list-style: none;
  padding-left: 5px;
}

.modal-dialog-srch {
  max-width: calc(100vw - 200px);
}

.modal-content-srch {
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

/******
** OPWSRCHMRDF
*/
.mrdftable1 {
  width: 25% !important;
}

.mrdftable2 {
  width: 50% !important;
}

.mrdftable3 {
  width: 70% !important;
}

/*
** OPWUSERINFO
** tab:OPWCATEGLIST2
*/
#UserInfo-tab .nav-item {
  margin: 4px 4px;
}
#UserInfo-tab .nav-link {
  background-color: #fff;
  border: solid 1px #8c8c8c;
}
#UserInfo-tab .nav-link:hover {
  background-color: #e6e6e6;
}
#UserInfo-tab .active {
  background-color: #41835c;
  border: solid 1px #41835c;
}
#UserInfo-tab .active:hover {
  color: #fff;
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.ruletable {
  font-size: 0.7em;
  min-height: 110px;
}
.ruletable .rulelist_in {
  background-color: #e6ffe6;
}

.reclist_year {
  min-width: 65px;
}

.reclist_month {
  min-width: 55px;
}

.reclist_total {
  min-width: 50px;
}

.reclist_goal {
  min-width: 80px;
}

/******
** OPWJRNLIST
*/
.el-kana-table td:first-child {
  font-size: 0.9em;
}

/******
** OPWBMCALEN
*/
.tablebmcalen .list_bm_remark {
  min-width: 200px;
}
.tablebmcalen .list_bm_time {
  min-width: 220px;
}
.tablebmcalen .list_bm_month {
  min-width: 90px;
}

/******
** OPWBOOTHSTATE
*/
.statelist {
  margin-bottom: 20px;
}
.statelist .statelist__head {
  display: table;
  width: 100%;
  margin-bottom: 0;
  padding: 0;
}
.statelist .statelist__head li {
  display: table-cell;
  background-color: #6ab283;
  padding: 5px 0;
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  text-align: center;
  width: 50%;
  font-weight: bold;
}
.statelist .statelist__body {
  display: table;
  width: 100%;
  margin-bottom: 0;
  padding: 0;
}
.statelist .statelist__body li {
  display: table-cell;
  vertical-align: middle;
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
  border-top: 1px solid #cccccc;
  padding: 10px 15px;
  text-align: center;
  width: 50%;
}

/******
** OPWBOOTHRSV
*/
.boothreserve {
  margin-bottom: 20px;
}
.boothreserve .boothreserve__body {
  display: table;
  width: 100%;
  margin-bottom: 0;
  padding-left: 0;
}
.boothreserve .boothreserve__body li {
  display: table-cell;
  vertical-align: middle;
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
  border-top: 1px solid #cccccc;
  padding: 10px 15px;
  text-align: left;
}
.boothreserve .sort {
  background-color: #fff;
  padding: 0px;
}
.boothreserve .sort li {
  border: 0px;
  display: inline-block;
}
.boothreserve .set_header {
  background-color: #f5f5f5;
  width: 25%;
}

.modal-content-booth {
  width: auto;
}

/******
** OPWMESS
*/
.list-group .newscol {
  color: #fff;
  font-weight: bold;
  background-color: #41835c;
  padding: 20px 0px;
  margin: 2px;
  border: #41835c solid 1px;
}
.list-group .newscol:hover, .list-group .newscol:focus {
  color: #fff;
  background-color: #5cb85c;
  border-color: #8c8c8c;
}
.list-group .newscoldef,
.list-group .newscolsel {
  font-weight: bold;
  padding: 20px 0px;
  margin: 2px;
  border: #cccccc solid 1px;
}
.list-group .newscoldef:hover, .list-group .newscoldef:focus,
.list-group .newscolsel:hover,
.list-group .newscolsel:focus {
  color: #000;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.list-group .list-group-item-default {
  margin-bottom: 0;
  padding: 20px 10px;
}

.newstable {
  border: #cccccc solid 1px;
}
.newstable .basemark {
  background-color: #6ab283;
}
.newstable .ddate {
  background-color: #e6ffe6;
  font-weight: bold;
}
.newstable .dtype1 {
  background-color: #ffcccc;
  font-weight: bold;
}
.newstable .dtype2 {
  background-color: #ffcc99;
  font-weight: bold;
}
.newstable .dtype3 {
  background-color: #ff9999;
  font-weight: bold;
}
.newstable .dtype4 {
  background-color: #ff99ff;
  font-weight: bold;
}
.newstable a .newstable {
  border-collapse: separate;
}
.newstable th.newsth {
  text-align: center;
  font-weight: bold;
}
.newstable th.newsthsun {
  color: #fff;
  background-color: #ce4b0d;
  text-align: center;
  font-weight: bold;
}
.newstable th.newsthsat {
  color: #fff;
  background-color: #1e7abc;
  text-align: center;
  font-weight: bold;
}
.newstable .newssun {
  color: #ce4b0d;
}
.newstable .newssat {
  color: #1e7abc;
}
.newstable .eventtable {
  text-align: center;
}
.newstable td.etooltip {
  color: #555;
  display: inline-block;
  width: 100%;
}
.newstable td.etooltip span {
  display: none;
}
.newstable td.etooltip:hover {
  position: relative;
  color: #333;
}
.newstable td.etooltip:hover span {
  display: block;
  position: absolute;
  top: 20px;
  right: -305px;
  background-color: #41835c;
  padding: 5px;
  width: 300px;
  color: #fff;
  font-size: 90%;
  z-index: 100;
}

.news-list {
  padding-right: 2rem;
  margin-top: 1rem;
}
.news-list .news_item {
  list-style: none;
  border-top: 1px solid #cccccc;
  padding: 13px 20px 10px;
}
.news-list .news_item :hover {
  background-color: #e6e6e6;
}
.news-list .news_item:last-child {
  border-bottom: 1px solid #cccccc;
}
.news-list a {
  text-decoration: none;
  display: block;
}

/******
** カレンダー
*/
.ui-widget-header {
  border: 1px solid #6ab283;
  background: #6ab283;
  color: #ffffff;
}

.ui-datepicker .ui-datepicker-title select {
  color: #333333;
}

.ui-widget-content .ui-state-hover {
  border: 1px solid #cccccc;
  background: #e6ffe6;
  color: #6ab283;
}

.ui-widget-content .ui-state-active {
  border: 1px solid #cccccc;
  background: #e6ffe6;
  color: #6ab283;
}

.ui-widget-content .ui-state-highlight {
  border: 1px solid #cccccc;
  background: #6ab283;
  color: #363636;
}

/******
** ソフトウェアキー
*/
.common-key {
  background-color: #ddd;
  border: 1px solid #aba69e;
  border-radius: 5%;
  font-size: 1.5em;
  font-weight: bold;
  margin: 4px;
  padding: 5px;
}

.common-key:focus,
.common-key:active {
  border: 1px solid #000;
  border-radius: 0px;
  border-style: dotted;
}

.dialog {
  overflow: hidden;
  position: fixed;
  top: 170px;
  height: 560px;
  width: 55%;
  display: none;
  border: 1px solid #000;
  z-index: 1000;
  background-color: #f5f5f5;
}

.dialog-header {
  background-color: #f5f5f5;
  color: #222222;
  overflow: hidden;
  padding: 5px;
}

.dialog-title {
  float: left;
}

.dialog-close {
  background: #e6e6e6;
  border: 1px solid #d3d3d3;
  color: #555555;
  float: right;
  font-weight: normal;
}

.dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background-color: #f5f5f5;
  overflow: auto;
  width: auto;
  height: 500px;
}

.kanji-sel {
  width: 95%;
  border: 1px solid #d3d3d3;
  font-size: 2.1em;
}

.keyarea-hr {
  margin-top: 5px;
  margin-bottom: 5px;
  width: 98%;
}

.modal-body {
  padding: 10px;
}

.modal-softkey {
  margin-top: 80px;
  margin-left: -260px;
  padding: 10px 5px;
  width: 1160px;
}

.modal-content-userinfo {
  margin-top: 120px;
  margin-left: -260px;
  padding: 10px 5px;
  top: -70px;
  width: 1160px;
}

.userinfo-dialog {
  top: 180px;
  height: 570px;
  width: 59%;
}

.modal-dialog-common {
  top: -40px;
}

.modal-softkey-btn {
  font-size: 2.2em;
  height: 70px;
  margin: 8px;
  padding: 0px;
  width: 70px;
}

.modal-inputarea-btn {
  font-size: 1.5em;
  margin-bottom: 7px;
}

.modal-inputarea-text {
  font-size: 1.7em;
}

div.Layer {
  color: transparent;
  overflow: hidden;
  position: absolute;
  text-align: left;
  white-space: pre-wrap;
}

div.Layer span {
  display: inline-block;
  max-width: 100%;
}

div.Layer span b {
  display: none;
  background: #d8dfea;
  background: linear-gradient(#dce6fb, #bdcff1);
  -ms-box-shadow: 0 0 0 1px #a3bcea;
  -o-box-shadow: 0 0 0 1px #a3bcea;
  box-shadow: 0 0 0 1px #a3bcea;
  border-radius: 2px;
  font-weight: normal;
}

/*
** スクロールバー
*/
.scroll-area {
  margin-inline: auto;
  height: 80vh;
  overflow: scroll;
  overflow-x: hidden;
}
.scroll-area::-webkit-scrollbar {
  width: 60px;
  height: 30px;
}
.scroll-area::-webkit-scrollbar-thumb {
  background-color: #41835c;
  border-radius: 20px;
}
.scroll-area::-webkit-scrollbar-button {
  height: 50px;
  border: 1px solid #cccccc;
  border-radius: 10px;
  background-color: #5cb85c;
}
.scroll-area::-webkit-scrollbar-button:single-button:vertical:decrement {
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent #41835c transparent;
}
.scroll-area::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
  border-color: transparent transparent #5cb85c transparent;
}
.scroll-area::-webkit-scrollbar-button:single-button:vertical:decrement::before {
  content: "ここ";
}
.scroll-area::-webkit-scrollbar-button:single-button:vertical:increment {
  border-width: 8px 8px 0 8px;
  border-color: #41835c transparent transparent transparent;
}
.scroll-area::-webkit-scrollbar-button:single-button:vertical:increment:hover {
  border-color: #5cb85c transparent transparent transparent;
}
.scroll-area::-webkit-scrollbar-track-piece:vertical {
  background-color: #e6ffe6;
}
.scroll-area::-webkit-scrollbar-track-piece:start {
  border: 1px solid #e6ffe6;
}
.scroll-area::-webkit-scrollbar-track-piece:end {
  border: 1px solid #e6ffe6;
}

/******
** スマホ
*/
@media (max-width: 991.98px) {
  .container {
    max-width: 90%;
  }
  .navbar-main .el-navbar-brand {
    width: calc(100% - 85px);
    margin-bottom: 10px;
  }
  .navbar-main .el-navbar-toggler {
    background-color: #fff;
    border-color: #cccccc;
    margin-bottom: 10px;
    padding: 12px 16px;
  }
  .navbar-main .el-nav-item {
    width: 100%;
    margin: 10px 0px;
    padding: 0px 10px;
  }
  .navbar-main .btn-elnavbar {
    width: 100%;
  }
  .navbar-main .loginstat-mes {
    text-align: center;
  }
  .navbar-main .header-menu {
    margin: 0px;
  }
  .navbar-main .header-menu .btn {
    width: 100%;
    margin: 10px 0px;
  }
  .display-pc {
    display: none;
  }
  .display-sp {
    display: block;
  }
  .modal-content-userinfo {
    margin-top: 120px;
    margin-left: -191px;
    max-width: 891px;
  }
  .el-srchlist-table .el-srchlist-th {
    display: none;
  }
  .el-srchlist-table tr {
    width: 100%;
  }
  .el-srchlist-table td {
    display: block;
    width: 100%;
    padding-left: 100px;
  }
  .el-srchlist-table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    display: inline;
    margin-right: 10px;
  }
  .tablebmcalen .list_bm_month {
    min-width: 90px;
  }
  .tablebmcalen .list_bm_remark {
    min-width: 200px;
  }
  .tablebmcalen .list_bm_time {
    min-width: 220px;
  }
  .tablebmcalen .list_bm_station {
    min-width: 260px;
  }
  .tablebmcalen .list_bm_cose {
    min-width: 260px;
  }
  .tablebmcalen .list_item_showreview {
    min-width: 100px;
  }
  .boothreserve .boothreserve__body {
    display: block;
    width: 100% !important;
    border-left: none;
  }
  .boothreserve .boothreserve__body li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100% !important;
    border: none;
    border-bottom: 1px solid rgba(35, 85, 123, 0.5);
    border-top: 1px solid rgba(35, 85, 123, 0.5);
    border-left: 1px solid rgba(35, 85, 123, 0.5);
    border-right: 1px solid rgba(35, 85, 123, 0.5);
    padding: 10px;
  }
  .boothreserve .sort li {
    border: 0px;
    padding: 0px;
  }
  .el-pagination {
    --bs-pagination-padding-x: 12px;
    --bs-pagination-padding-y: 8px;
    --bs-pagination-font-size: 0.8em;
    --bs-pagination-border-radius: 4px;
  }
}/*# sourceMappingURL=opwbs5.css.map */