#app{
    background-color: rgb(249,249,249);
    padding-top: 1px;
    z-index: 1;
    position: relative;
}
/* btn.js */
.btn {
    padding: 12px 32px;
    border: 1px solid white;
    border-radius: 10px;
    min-width: 150px;
    transition: all ease 0.3s;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    position: relative;
    z-index: 10;
  }
.btn.sm {
    padding: 4px 12px;
    min-height: initial;
    min-width: initial;
}
.btn.ghost {
    background-color: white;
    color: #007db3;
    border: 1.5px solid #007db3;
}
.btn.ghost:hover {
    background-color: rgb(212, 231, 241);
    color: rgb(60, 108, 139);
    border: 1.5px solid rgb(60, 108, 139);
}
.btn.ghost.disabled {
    background-color: white;
    color: rgb(161, 163, 165);
    border: 1px solid rgb(229, 227, 231);
    cursor: not-allowed;
}
.btn.primary {
    background-color: #007db3;
    color: white;
}
.btn.primary:hover {
    background-color: rgb(38, 89, 123);
}
.btn.primary.disabled {
    background-color: rgb(245, 246, 250);
    color: rgb(142, 146, 148);
    border: 1px solid rgb(242, 241, 243);
    cursor: not-allowed;
}
/* btn.js */
/* ヘッダーのプルダウン hoverMenu.vue*/
.menu-wrapper {
    display: inline-flex;
    background-color: rgb(16, 23, 32);
    align-items: center;
    position: fixed;
    overflow-x: auto;
    overflow-y: hidden;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}
.header-menu.pull {
    display: inline-flex;
}
.header-menu .pulldiv {
    position: relative;
    background-color: rgb(16, 23, 32);
    padding: 20px 8px;
    transition: all 0.3s ease;
    opacity: 1;
    display: flex;
    align-items: center;
    cursor: pointer;
    white-space: pre;
}
.header-menu .pulldiv.active,
.header-menu .pulldiv:hover {
    background-color: rgb(27, 43, 63);
}
.header-menu .pulldiv-title {
    color: white;
    padding: 0 10px;
    word-break: keep-all;
}
.header-menu .pulldown {
    position: absolute;
    white-space: pre;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
        0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    opacity: 0;
    overflow-x: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none;
    padding: 0 30px;
    cursor: pointer;
    display: none;
}
.header-menu .pulldown.active {
    position: fixed;
    background-color: rgb(27, 43, 63);
    opacity: 1;
    pointer-events: all;
    color: white;
    left: 0;
    right: 0;
    top: 62px;
    overflow-x: auto;
    display: block;
}
.header-menu .pulldown-ul {
    margin: 0;
    padding: 0;
}
.header-menu .pulldown-link {
    color: black;
    font-size: 1em !important;
    text-decoration: none;
    display: inline-flex;
    flex-direction: column-reverse;
}
.header-menu .pulldown-link:hover li {
    color: rgb(26, 147, 168);
}
.header-menu .pulldown-link-li {
    font-size: 0.8em;
    padding: 15px 20px !important;
    transition: all 0.3s ease;
    list-style: none;
    display: inline-flex;
    color: white;
    border-bottom: 6px solid rgba(16, 23, 32, 0.3);
}
.header-menu .float-line {
    position: absolute;
    background-color: rgb(26, 147, 168);
    transition: all 0.3s ease;
    height: 6px;
    border-radius: 2px;
}
/* ヘッダーのプルダウン終わり */
/* modal.js */
.modal.background {
    position: fixed;
    top: 0;
    right: 0;
    bottom: -100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.65);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease 0.3s;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%),
        0 1px 5px 0 rgb(0 0 0 / 20%);
    z-index: 999;
}
.modal.background.active {
    opacity: 1;
    pointer-events: all;
    bottom: 0;
}
.modal .contentsWrapper {
    background-color: white;
    max-width: 400px;
    min-width: 400px;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 15px;
    position: relative;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}
.modal .header {
    background-color: #3f51b5;
    width: 100%;
    color: white;
    font-size: 25px;
    overflow-x: auto;
    padding: 10px 15px 10px;
    font-weight: bold;
    min-height: 55px;
}
.modal .body {
    padding: 30px;
    color: #333;
    overflow: auto;
    max-height: 75%;
    height: calc(100% - 210px);
}
.modal .body #loading{
    animation-duration: 1s;
    animation-name: loading;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes loading{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
.modal .progress-background {
    background-color: rgb(220, 219, 224);
    width: 100%;
    height: 20px;
    border-radius: 20px;
    position: absolute;
    z-index: 0;
}
.modal .progress-bar {
    background-color: rgb(56, 127, 155);
    width: 100%;
    height: 20px;
    border-radius: 20px;
    position: absolute;
    z-index: 100;
    transition: width 0.5s linear;
}
.modal .footer {
    height: 60px;
    width: calc(100%);
    margin: 0 auto;
    text-align: center;
    padding: 40px 0;
    padding-bottom: 0px !important;
    right: 0;
    bottom: 0;
    position: relative;
    display: inline-block;
}
.modal .footer .primary.btn{
    width: 216px;
}
.modal .footer .two-btn{
    padding: 12px 2px;
}
.modal .close-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
/* modal.js */

/* detailModal.js */
.detailModal.background {
    position: fixed;
    top: 0;
    right: 0;
    bottom: -100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.65);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: end;
    transition: all ease 0.5s;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%),
        0 1px 5px 0 rgb(0 0 0 / 20%);
    z-index: 999;
}
.detailModal.background.active {
    opacity: 1;
    pointer-events: all;
    bottom: 0;
}
.detailModal.background.active.overlay {
    background-color: rgba(0, 0, 0, 0);
}
.detailModal .close-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.detailModal .contentsWrapper {
    background-color: white;
    width: 75%;
    height: 90%;
    overflow-y: auto;
    overflow-x: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    position: relative;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    bottom: -90%;
    transition: bottom 0.5s ease;
}
.detailModal .contentsWrapper.one {
    height: 90%;
    background-color: white;
}
.detailModal .contentsWrapper.one.overlay {
    background-color: white;
}
.detailModal .contentsWrapper.two {
    height: 88%;
    background-color: white;
}
.detailModal .contentsWrapper.active {
    bottom: 0;
}
.detailModal .header {
    background-color: white;
    width: 100%;
    color: black;
    font-size: 25px;
    overflow-x: auto;
    padding: 20px 30px 20px;
    font-weight: bold;
    min-height: 55px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.5s ease;
}
.detailModal .header.none-border {
    border-bottom: none;
}
.detailModal.one.overlay .header,
.detailModal.one.overlay .body {
    background-color: rgba(0, 0, 0, 0.15);
}
.detailModal .body {
    padding: 16px 32px;
    color: #333;
    overflow-y: auto;
    height: calc(100% - 145px);
    transition: all 0.5s ease;
    position: relative;
    overflow-x: hidden;
}
.detailModal .body::-webkit-scrollbar {
    width: 24px;
    height: 24px;
}
.detailModal .body::-webkit-scrollbar-track {
    background-color: rgb(235, 235, 235);
}
.detailModal .body::-webkit-scrollbar-thumb {
    background-color: rgb(153, 153, 153);
    border: 6.5px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    border-radius: 9999px;
}
.detailModal .footer {
    height: 90px;
    width: 100%;
    padding: 15px;
    border-top: 1px solid #ddd;
    right: 0;
    bottom: 0;
    position: relative;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
}
.detailModal .footer .footer-link a{
    color: #007db3;
    border-bottom: 1px dashed #007db3;
    text-decoration: none;
}
/* detailModal.js */
/* tooltip.js */
.tooltip {
    height: 300%;
    position: relative;
}
.tooltip .tooltip-trigger {
    cursor: pointer;
    display: inline;
}
.tooltip.tooltip-body {
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%),
        0 1px 5px 0 rgb(0 0 0 / 20%);
    padding: 8px 16px 0;
    position: absolute;
    border-radius: 15px;
    background-color: white;
    font-size: 0.9em;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 99999;
    display: inline-block;
    word-break: keep-all;
}
.tooltip.tooltip-body.active {
    opacity: 1;
}
.tooltip.tooltip-body.top.center {
}
.tooltip.tooltip-body.top.right {
}
.tooltip.tooltip-body.top.left {
}
.tooltip.tooltip-body.bottom.center {
}
.tooltip.tooltip-body.bottom.right {
}
.tooltip.tooltip-body.bottom.left {
}
/* tooltip.js */
/* tabs.js */
.tabs {
    cursor: pointer;
}
.tabs .tabs-item {
    padding: 0px 24px 8px;
    display: inline-block;
}
.tabs .tab-items {
    transition: all 0.3s ease;
}
.tabs .tab-items.active {
    color: #13a6c7;
}
.tabs .float-line {
    position: absolute;
    background-color: #007db3;
    transition: all 0.3s ease;
    height: 4px;
    border-radius: 2px;
}
.tabs.underline {
    border-bottom: 1px solid #dcdbe0;
    position: relative;
    top: 4px;
}
/* tabs.js */
/* datePicker.js */
.picker.wrapper {
    display: flex;
    align-items: center;
    max-width: 600px;
}
.dp__button {
    display: none;
}
.dp__selection_preview {
    display: block;
    margin-bottom: 12px;
}
.dp__action_button {
    width: 96px;
    height: 32px;
}
.dp__action_row {
    display: block;
}
.dp__input_icon {
    right: 0;
    left: auto;
    top: 51%;
}
.dp__input_icon_pad {
    padding-left: 12px;
}
.input-slot-image {
    width: 24px;
}
/* datePicker.js */
/* hierarchy.js */
tr.hierarchy:nth-child(even) {
    background-color: rgb(241, 242, 246);
}
.hierarchy.hide {
    display: none;
}
.hierarchy .open {
    transform: rotate(0deg);
    display: inline-block;
}
.hierarchy .open.hide {
    transform: rotate(-90deg);
}
.hierarchy .level {
    display: flex;
    align-items: center;
}
.hierarchy .hierarchy-landmark {
    cursor: pointer;
    font-size: 8px;
    color: rgb(54, 123, 174);
}
.hierarchy .level {
}
.hierarchy .level.level-1 {
    margin-left: 0px;
}
.hierarchy .level.level-2 {
    margin-left: 30px;
}
.hierarchy .level.level-3 {
    margin-left: 60px;
}
.hierarchy .level.level-4 {
    margin-left: 90px;
}
.open-close.button {
    margin-bottom: 12px;
}
.open-close.button .action {
    color: #007db3;
    border-bottom: 1px dashed #007db3;
    margin-right: 20px;
    font-size: 13px;
    padding-bottom: 4px;
    cursor: pointer;
}
.open-close .bottom {
    transform: rotateZ(180deg);
    color: #007db3;
    font-size: 12px;
    width: 10px;
    height: 18px;
    cursor: pointer;
    right: 12px;
    position: relative;
    top: 4px;
}
.open-close .right {
    transform: rotateZ(90deg);
    color: #007db3;
    font-size: 12px;
    width: 10px;
    height: 10px;
    cursor: pointer;
}
.open-close .tree-right {
    transform: scale(0.7) translateX(0px) rotateZ(90deg);
    color: #007db3;
}
.side-menu-item {
    padding: 8px 16px;
}
.side-menu-item .text {
    color: white;
    z-index: 10;
}
.side-menu-item .marker {
    position: absolute;
    right: 0px;
}
.side-menu-item .marker .bottom {
    position: absolute;
    right: 18px;
}
.side-menu-item.current {
    background-color: #007db3;
}
.side-menu-item.current svg path {
    fill: white;
}
.side-menu-item.current .marker .bottom {
    color: white !important;
    z-index: 10;
}
.side-menu-item.current .marker .tree-right {
    color: white !important;
    z-index: 10;
}
/* hierarchy.js */
/* #007DB3.js */
.slider {
    width: 70%;
    position: relative;
    transform: translateX(44px);
}
.slider.disabled {
    transform: translateX(44px) translateY(12px);
}
.slider .horizon {
    border-top: 2px solid rgb(216, 216, 216);
    width: 100%;
    position: relative;
    top: 4px;
}
.slider .border {
    border-left: 2px solid rgb(216, 216, 216);
    height: 12px;
    position: absolute;
    top: -1px;
}
.slider .common-border .trigger {
    width: 20px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0);
    display: inline-block;
    top: -4px;
    border-radius: 100%;
    left: -9px;
    position: absolute;
    cursor: pointer;
    pointer-events: all;
}
.slider .common-border:not(.active) span {
    display: none;
}
.slider .common-border.active span {
    color: rgb(252, 143, 61);
    position: absolute;
    font-size: 8px;
    left: -6px;
    top: -14px;
}
.slider .tooltip-text {
    display: inline-block;
    min-width: 72px;
}
.slider .ball {
    background-color: #007db3;
    width: 12px;
    height: 12px;
    top: -1px;
    position: absolute;
    border-radius: 100%;
    left: -4px;
    transition: all 0.3s ease;
    z-index: 1;
}
.slider .trigger.disabled {
    cursor: initial;
}
.slider .ball.disabled {
    background-color: rgb(139, 142, 144) !important;
}
.slider .ball:not(.isEditable) {
    background-color: rgb(0, 125, 179) !important;
}
.slider .horizon.disabled,
.slider .horizon:not(.isEditable) {
    border-top: none;
}
.slider .horizon.disabled img,
.slider .horizon:not(.isEditable) img {
    height: 2px;
    width: 4px;
    top: -15px;
    position: relative;
}
/* slider.js */
/* dropdown.js */
.dropdown {
    height: 300%;
    position: relative;
}
.dropdown .hide-area {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    opacity: 0;
}
.dropdown .dropdown-trigger {
    cursor: pointer;
    display: inline;
}
.dropdown .dropdown-body {
    position: absolute;
    border-radius: 8px;
    background-color: white;
    font-size: 0.9em;
    max-height: 0;
    transition: max-height 0.6s ease;
    z-index: 99999;
    display: inline-block;
    overflow: hidden;
    border: none;
}
.dropdown .dropdown-body.active {
    max-height: 300px;
    border: 1px solid rgba(234, 234, 234, 1);
}
.dropdown .item {
    cursor: pointer;
    padding: 12px;
}
.dropdown .item:hover {
    background-color: rgb(207, 232, 242);
    color: rgb(34, 104, 148);
}
.dropdown .item.disabled,
.dropdown .item.disabled:hover {
    cursor: not-allowed;
    background-color: white;
    color: rgb(156, 159, 161);
}
.dropdown hr {
    border: 1px solid #dadada;
}
.dropdown .foot-item {
    display: flex;
    align-items: center;
    padding: 16px;
}
/* dropdown.js */
/* pager.js */
.pager {
    display: flex;
    justify-content: end;
    align-items: center;
}
.pager select {
    height: 24px;
    border-radius: 4px;
    background-color: rgb(245, 246, 250);
    border: 1px solid rgb(237, 236, 238);
}
.pager .arrow {
    border-radius: 100%;
    background-color: #f1f2f6;
    font-size: 14px;
    color: #007db3;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.pager .arrow.disable {
    color: #8a8e90;
    cursor: not-allowed;
}
/* pager.js */
/* sort.js */
.sort.icon {
    cursor: pointer;
    position: relative;
    top: 2px;
    left: 4px;
}
/* sort.js */
/* radio.js */
.radio {
    display: inline-flex;
    padding: 4px 16px;
    background-color: #f5f6fa;
    border: 1px solid rgb(236, 235, 240);
    cursor: pointer;
}
.radio.lg {
    padding: 8px 32px;
}
.radio.first {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}
.radio.last {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}
.radio.selected {
    background-color: #007db3;
    color: white;
    font-weight: bold;
}
.radio.disabled{
    cursor: not-allowed;
}
/* radio.js */
/* sort.js */
.table {
    width: 100%;
    border-collapse: collapse;
}
.table th {
    background-color: #283b51;
    color: white;
}
.table tr:nth-child(odd) {
    background-color: rgb(241, 242, 246);
}
.table td,
.table th {
    padding: 8px 24px;
    text-align: left;
    word-break: break-all;
}
/* 左上 */
.table.radius thead th:first-child {
    border-radius: 16px 0 0 0;
}
/* 右上 */
.table.radius thead th:last-child {
    border-radius: 0 16px 0 0;
}
/* 左下 */
.table.radius tbody tr:last-child td:first-child {
    border-radius: 0 0 0 16px;
}
/* 右下 */
.table.radius tbody tr:last-child td:last-child {
    border-radius: 0 0 16px 0;
}

/* sort.js */
/* gotoTop.js */
.goto-top {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    background-color: rgb(61, 136, 185);
    color: white;
    position: fixed;
    bottom: -48px;
    right: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: bottom 0.3s linear;
    cursor: pointer;
    z-index: 99999999;
}
.goto-top.active {
    bottom: 80px;
}
/* gotoTop.js */
/* badge.js */
.badge {
    font-size: 13px;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-flex;
}
.badge.required {
    background-color: rgb(229, 41, 24);
    color: white;
}
.badge.restart {
    background-color: rgb(231, 176, 0);
    color: black;
}
/* badge.js */
/* textbox.js */
.textbox .caption-wrapper {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
}
.textbox .caption {
    font-weight: bold;
    font-size: 20px;
}
/* textbox.js */
/* addBtn.js */
.add-btn .center {
    display: inline-flex;
    justify-content: space-around;
    align-items: center;
}
.add-btn .add {
    font-weight: bold;
    font-size: 16px;
    transform: scale(1.5);
    position: relative;
    top: -2px;
    margin-right: 12px;
}
/* addBtn.js */
/* captionBtn.js */
.caption-btn {
  background-color: white;
  padding: 16px;
  border-radius: 12px;
  margin: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 150px;
}
.caption-btn .caption {
    font-size: 18px;
}
.caption-btn .btn-wrapper {
    margin-top: 12px;
}
/* captionBtn.js */
/* sideMenu.js */
.side-menu {
    background-color: rgb(44, 58, 79);
    position: fixed;
    display: inline-block;
    width: 250px;
    height: calc(100% - 100px);
    top: 117px;
    left: 0;
    overflow-y: auto;
    z-index: 1;
}
.side-menu .menu-item {
    color: white;
    text-decoration: none;
    display: block;
    padding: 12px 0;
}
/* sideMenu.js */
/* mainTitle.js */
.main-title {
    display: inline-flex;
    align-items: start;
}
.main-title .question {
    color: rgb(47, 140, 185);
    border: 1px solid rgb(47, 140, 185);
    border-radius: 100%;
    width: 20px;
    height: 20px;
    padding: 4px;
    font-size: 13px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
    margin-top: 8px;
    cursor: pointer;
}
/* mainTitle.js */
/* markTitleCard.js */
.mark-title {
    display: block;
    margin-top: 32px;
    margin-bottom: 8px;
}
.mark-title .mark.close {
    transform: rotateZ(24deg);
    display: inline-block;
}
.mark-title .mark {
    color: #007db3;
    margin-right: 8px;
    cursor: pointer;
}
/* markTitleCard.js */
/* card.js */
.card {
    width: 100%;
    background-color: white;
    padding: 12px;
    border-radius: 12px;
}
.card .card-title {
    font-size: 16px;
    font-weight: bold;
}
.card .card-content {
    display: inline-block;
    font-size: 14px;
    margin-left: 12px;
    margin-top: 8px;
    margin-bottom: 24px;
}
.card-footer {
    margin-top: 12px;
    margin-bottom: 48px;
    display: flex;
    justify-content: end;
}
.card-emphasis {
    color: rgb(62, 136, 162);
    font-weight: bold;
}
/* card.js */
/* breadCrumbs.js */
.bread-crumbs {
    display: flex;
    margin-bottom: 12px;
}
.bread-crumbs div {
    margin: 0 8px 0 0;
}
.bread-crumbs div a {
    color: #007db3;
}
/* breadCrumbs.js */
