@charset "utf-8";

.widthYear {
  width: 100px;
}

.widthMonth {
  width: 70px;
}

.width60 {
  width: 60px;
}

.width70 {
  width: 70px;
}

.width90 {
  width: 90px;
}

.width100 {
  width: 105px;
}

.width110 {
  width: 110px;
}

.width130 {
  width: 130px;
}

.width150 {
  width: 150px;
}

.width170 {
  width: 170px;
}

.width190 {
  width: 192px;
}

.width200 {
  width: 200px;
}

.width210 {
  width: 210px;
}

.width230 {
  width: 210px;
}

.width240 {
  width: 240px;
}

.width250 {
  width: 210px;
}

.width270 {
  width: 210px;
}

.width290 {
  width: 210px;
}

.width300 {
  width: 300px;
}

.width350 {
  width: 350px;
}

.width400 {
  width: 400px;
}

.width480 {
  width: 480px;
}

.length1 {
  width: 71px;
}

.length2 {
  width: 82px;
}

.length3 {
  width: 93px;
}

.length4 {
  width: 104px;
}

.length5 {
  width: 115px;
}

.time-length5 {
  width: 77px;
}

.length6 {
  width: 126px;
}

.length7 {
  width: 137px;
}

.length8 {
  width: 148px;
}

.length9 {
  width: 159px;
}

.length10 {
  width: 170px;
}

.length11 {
  width: 181px;
}

.length12 {
  width: 192px;
}

.length13 {
  width: 203px;
}

.length14 {
  width: 214px;
}

.length15 {
  width: 225px;
}

.length16 {
  width: 236px;
}

.length17 {
  width: 247px;
}

.length18 {
  width: 258px;
}

.length19 {
  width: 269px;
}

.length20 {
  width: 280px;
}

.length24 {
  width: 324px;
}

.length26 {
  width: 346px;
}

.length30 {
  width: 390px;
}

.length40 {
  width: 500px;
}

.length50 {
  width: 610px;
}

.length60 {
  width: 720px;
}

.length70 {
  width: 830px;
}

.length80 {
  width: 940px !important;
}

.length90 {
  width: 1050px;
}

.length186 {
  width: 1362px;
}

.numLength0 {
  width: 36px;
}

.numLength1 {
  width: 45px;
}

.numLength2 {
  width: 54px;
}

.numLength3 {
  width: 63px;
}

.numLength4 {
  width: 72px;
}

.numLength5 {
  width: 81px;
}

.numLength6 {
  width: 90px;
}

.numLength7 {
  width: 99px;
}

.numLength8 {
  width: 108px;
}

.numLength9 {
  width: 117px;
}

.numLength10 {
  width: 126px;
}

.numLength14 {
  width: 162px;
}

.numLength19 {
  width: 207px;
}

.numLength20 {
  width: 216px;
}

.numLength26 {
  width: 270px;
}

.sunday {
  color: red;
}

.saturday {
  color: blue;
}

.weekday {
  color: black;
}

.tableHeader {
  text-align: center;
  line-height: 16px;
}

.el-table th {
  background-color: #EEE !important;
  color: #666;
  padding: 5px 0 !important;
  font-size: medium;
}

.el-table td {
  padding: 2px 0 !important;
  font-size: 12px;
}

/* Checkbox */
input[type=checkbox],input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
  height: 20px;
  width: 20px;
  vertical-align: -0.8rem;
  transition:all .15s ease-out 0s;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin: .4rem;
  outline: none;
  border-radius: 10%;
}
input[type=checkbox]:before,input[type=checkbox]:after {
    position: absolute;
    content: "";
    background: #fff;
    transition: all .2s ease-in-out;
}
input[type=checkbox]:before {
    left: 2px;
    top: 6px;
    width: 0;
    height: 2px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
input[type=checkbox]:after {
    right: 9px;
    bottom: 3px;
    width: 2px;
    height: 0;
    transform: rotate(40deg);
    -webkit-transform: rotate(40deg);
    -moz-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    -o-transform: rotate(40deg);
    transition-delay: .2s;
}
input[type=checkbox]:checked:before {
    left: 1px;
    top: 10px;
    width: 6px;
    height: 2px;
}
input[type=checkbox]:checked:after {
    right: 5px;
    bottom: 1px;
    width: 2px;
    height: 14px;
}
input[type=checkbox]:indeterminate:before,input[type=checkbox]:indeterminate:after {
    width: 7px;
    height: 2px;
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
}
input[type=checkbox]:indeterminate:before {
    left: 1px;
    top: 7px;
}
input[type=checkbox]:indeterminate:after {
    right: 1px;
    bottom: 7px;
}
/* Radio */
input[type=radio] {
    border-radius: 50%;
}
input[type=radio]:checked:before {
    transform: scale(1);
}
input[type=radio]:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 3px;
    transform: scale(0);
    transition: all ease-out 250ms;
}
input[type=checkbox].RequiredStyle,input[type=radio].RequiredStyle {
  border: 2px solid red;
}
input[type=checkbox].RequiredStyle:checked,input[type=checkbox].RequiredStyle:indeterminate,input[type=radio].RequiredStyle:checked:before {
  background: red;
}
input[type=checkbox].OngoingStyle,input[type=radio].OngoingStyle {
  border: 2px solid blue;
}
input[type=checkbox].OngoingStyle:checked,input[type=checkbox].OngoingStyle:indeterminate,input[type=radio].OngoingStyle:checked:before {
  background: blue;
}
input[type=checkbox].CompleteStyle,input[type=radio].CompleteStyle {
  border: 2px solid black;
}
input[type=checkbox].CompleteStyle:checked,input[type=checkbox].CompleteStyle:indeterminate,input[type=radio].CompleteStyle:checked:before {
  background: black;
}
input[type=checkbox].InvalidStyle,input[type=radio].InvalidStyle {
  border: 2px solid green;
}
input[type=checkbox].InvalidStyle:checked,input[type=checkbox].InvalidStyle:indeterminate,input[type=radio].InvalidStyle:checked:before {
  background: green;
}
input[type=checkbox].red,input[type=radio].red {
    border: 2px solid red;
}
input[type=checkbox].red:checked,input[type=checkbox].red:indeterminate,input[type=radio].red:checked:before {
    background: red;
}
input[type=checkbox].gray,input[type=radio].gray {
  border: 2px solid #999;
}
input[type=checkbox].gray2,input[type=radio].gray2 {
  border: 2px solid #CCC;
}
input[type=checkbox].gray:checked,input[type=checkbox].gray:indeterminate,input[type=radio].gray:checked:before {
  background: #999 !important;
}
input[type=checkbox].gray2:checked,input[type=checkbox].gray2:indeterminate,input[type=radio].gray2:checked:before {
  background: #CCC !important;
}
input[type=checkbox].blue2,input[type=radio].blue2 {
  border: 2px solid #b0c4de;
}
input[type=checkbox].blue2:checked,input[type=checkbox].blue2:indeterminate,input[type=radio].gray:checked:before {
  background: #b0c4de !important;
}
input[type=checkbox].red2,input[type=radio].red2 {
  border: 2px solid #ffa500;
}
input[type=checkbox].red2:checked,input[type=checkbox].red2:indeterminate,input[type=radio].red2:checked:before {
  background: #ffa500 !important;
}
input[type=checkbox].blue,input[type=radio].blue {
  border: 2px solid #c71585;
}
input[type=checkbox].blue:checked,input[type=checkbox].blue:indeterminate,input[type=radio].blue:checked:before {
  background: #c71585 !important;
}
input[type=checkbox].yellow,input[type=radio].yellow {
  border: 2px solid #FF9;
}
input[type=checkbox].yellow:checked,input[type=checkbox].yellow:indeterminate,input[type=radio].yellow:checked:before {
  background: #FF9 !important;
}
input[type=checkbox].green,input[type=radio].green {
  border: 2px solid #2f4f4f;
}
input[type=checkbox].green:checked,input[type=checkbox].green:indeterminate,input[type=radio].green:checked:before {
  background: #2f4f4f !important;
}
.el-table .update-row {
  background: #efe !important;
}
.el-table .out-row {
  color: #999 !important;
}
.el-table .out-row .select-success.el-select .el-input input {
  color: #999 !important;
}
.el-table .out-warning {
  background: #fff09c !important;
}
.el-table .out-emergency {
  background: #ffe0eb !important;
}
.el-table .out-info {
  background: #f6f9ff !important;
}

.text-right {
  padding-right: 0.3em; 
  text-align: right;
}

.help-block {
  margin-top: 0 !important;
  margin-bottom: 5px !important;
}

.text-danger {
  margin-top: 0 !important;
  margin-bottom: 5px !important;
}

.error-message-wrapper {
  margin: -3px 0 5px 0;
}

.table-width {
  display: inline-block;
  width: initial !important;
  max-width: initial !important;
}

.el-table .cell {
  text-overflow: clip !important;
  white-space: nowrap !important;
}

.paid-history-title {
  background-color: #EEE;
  margin: 0 15px 20px 15px !important;
  padding: 5px 10px !important;
  font-size: smaller;
  cursor: pointer;
}

.search-condition-title,.search-result-title {
  background-color: #FFFFFF;
  padding: 10px !important;
  font-size: smaller;
  cursor: pointer;
}

.search-condition-title h4,.search-condition-title span,.search-result-title h4 {
  color: #666 !important;
}

.search-condition-item {
  border: 1px solid #FFF;
  padding: 5px !important;
}

.table-header {
  background-color: #364f6b !important;
  color: #ccc;
  padding: 2px 0;
  font-size: 12px;
  font-weight: bold;
}

.dropdown-menu > div > li a {
  color: #000000;
  font-size: 14px;
  padding: 10px 15px;
  transition: none;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
}

/* 非活性テキストボックス */
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  color: #333333 !important;
}

/* 非活性日付テキスト */
.el-date-editor.el-input.is-disabled .el-input__inner {
  color: #333333 !important;
}

/* マウスオーバー時の背景色 */
.el-table__body tr.hover-row > td {
  background-color:#f5f7fa !important;
  border-color: #f5f7fa !important;
}

.el-table__body tr.hover-row > td.no-hover {
  background-color: initial !important;
}

.el-table__body tr.hover-row > td.before-adjustment {
  background-color: #e1f5e1 !important;
}

.el-table__body tr.hover-row > td.in-adjustment {
  background-color: #e1ebf5 !important;
}

.error-cell {
  background-color: #ffe0eb;
}

.select-success.el-select .el-input input {
  border-style: none none solid none !important;
  border-radius: 0 !important;
  color: #606266 !important;
}

.form-control, .input-text {
  border-style: none none solid none !important;
  border-radius: 0 !important;
  border-bottom-width: 2px !important;
  border-bottom-color: #9A9A9A !important;
}

textarea.form-control {
  border-style: solid !important;
}

.el-date-editor.el-input .el-input__inner {
  border-style: none none solid none !important;
  border-radius: 0 !important;
  border-bottom-width: 2px !important;
  border-bottom-color: #9A9A9A !important;
}

.card .card-content .form-control.input-no-border {
  background-color: #FFFFFF !important;
}

.btn {
  margin-right: 4px !important;
}

.btn-default {
  font-size: 12px !important;
}

.btn-sweet-alert {
  margin: 0 4px !important;
}

.fa {
  width: 11px !important;
}

.tooltip {
  display: block !important;
  z-index: 10000;
}
.tooltip .tooltip-inner {
  background: lightyellow;
  color: black;
  border-radius: 16px;
  padding: 5px 10px 4px;
  max-width: 500px !important;
  text-align: left;
  font-weight: normal;
  font-size: medium;
}
.tooltip .tooltip-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  margin: 5px;
  border-color: black;
  z-index: 1;
}
.tooltip[x-placement^="top"] {
  margin-bottom: 5px;
}
.tooltip[x-placement^="top"] .tooltip-arrow {
  border-width: 5px 5px 0 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  bottom: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
.tooltip[x-placement^="bottom"] {
  margin-top: 5px;
}
.tooltip[x-placement^="bottom"] .tooltip-arrow {
  border-width: 0 5px 5px 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-top-color: transparent !important;
  top: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
.tooltip[x-placement^="right"] {
  margin-left: 5px;
}
.tooltip[x-placement^="right"] .tooltip-arrow {
  border-width: 5px 5px 5px 0;
  border-left-color: transparent !important;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  left: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}
.tooltip[x-placement^="left"] {
  margin-right: 5px;
}
.tooltip[x-placement^="left"] .tooltip-arrow {
  border-width: 5px 0 5px 5px;
  border-top-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  right: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}
.tooltip.popover .popover-inner {
  background: #f9f9f9;
  color: black;
  padding: 24px;
  border-radius: 5px;
  box-shadow: 0 5px 30px rgba(black, .1);
}
.tooltip.popover .popover-arrow {
  border-color: #f9f9f9;
}
.tooltip[aria-hidden='true'] {
  visibility: hidden;
  opacity: 0;
  transition: opacity .15s, visibility .15s;
}
.tooltip[aria-hidden='false'] {
  visibility: visible;
  opacity: 1;
  transition: opacity .15s;
}

.style-chooser .vs__search::placeholder,
.style-chooser .vs__dropdown-toggle,
.style-chooser .vs__dropdown-menu {
  border-style: none none solid none !important;
  border-radius: 0 !important;
  border-bottom-width: 2px !important;
  border-bottom-color: #9A9A9A !important;
  padding-top: 8px !important;
  padding-bottom: 5px !important;
}

.swal2-icon.swal2-warning {
  width: 60px !important;
  height: 60px !important;
  font-size: 35px !important;
  line-height: 60px !important;
}

.orgchart-container {
  width: initial !important;
  height: 600px !important;
  margin-top: 10px !important;
}

.orgchart {
  background: #FFF !important;
}

.orgchart .lines .topLine {
  border-top: 2px solid #364f6b !important;
}

.orgchart .lines .bottomLine {
  border-bottom: 2px solid #364f6b !important;
}

.orgchart .lines .leftLine {
  border-left: 1px solid #364f6b !important;
}

.orgchart .lines .rightLine {
  border-right: 1px solid #364f6b !important;
}

.orgchart .lines .downLine {
  background-color: #364f6b !important;
}

.attendance-text {
  font-size: small;
}

.strong-text {
  text-align: left;
  font-size: medium;
  font-weight: bold;
}

.strong-text-left {
  text-align: left;
  font-size: medium;
  font-weight: bold;
}

.strong-text-right {
  text-align: right;
  font-size: medium;
  font-weight: bold;
}

.strong-text-center {
  text-align: center;
  font-size: medium;
  font-weight: bold;
}

.strong-orange-text-right {
  text-align: right;
  font-size: medium;
  font-weight: bold;
  color: #ffa500
}

.required {
  background-color: #f0ad4e;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  min-width: 10px;
  padding: 3px 7px;
  margin: 0px 5px;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  border-radius: 10px;
  display: inline-block;
}

.inline-block {
  display: inline-block !important;
}

.select-success.el-select.RequiredStyle .el-input input {
  color: red !important; 
}
.select-success.el-select.OngoingStyle .el-input input {
  color: blue !important; 
}
.select-success.el-select.CompleteStyle .el-input input {
  color: black !important; 
}
.select-success.el-select.InvalidStyle .el-input input {
  color: green !important; 
}
.white-color {
  color: white !important;
}
.v-select > .vs__dropdown-toggle > .vs__selected-options > span.vs__selected {
  max-width: 95% !important;
}
.v-step {
  box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, .5) !important;
}
.v-step, .v-step__header, .v-step__arrow::before {
  opacity: 0.9 !important;
}
.v-tour div[data-popper-placement="bottom-start"] .v-step__arrow, .v-tour div[data-popper-placement="top-start"] .v-step__arrow {
  transform: translate(20px, 0) !important;
}
/* .v-step__button {
  color: #000000 !important;
  border-color: #000000 !important;
} */
.v-step {
  font-size: 16px !important;
}
.v-step__button {
  font-size: 14px !important;
  height: 2.3rem !important;
} 
.v-step {
  text-align: left !important;
}
.v-step > .v-step__buttons {
  text-align: center !important;
}
.special-measures, .special-measures td {
  border-collapse: collapse;
  border: 1px solid #333;
  padding: 2px 10px;
}
.vue-notifyjs .alert-info {
  background-color: #364f6b !important;
  color: #ffffff !important;
}
.vue-notifyjs .close {
  color: #ffffff !important;
}
.vue-notifyjs .alert {
  font-size: 16px !important;
}
.vue-notifyjs .alert {
  font-size: 16px !important;
}
.vue-notifyjs .alert[data-notify="container"] {
  width: 500px !important;
}
.vue-notifyjs .alert .alert-icon {
  font-size: 24px !important;
  margin-top: -12px !important; 
  margin-right: 5px !important; 
}
.sidebar[data-background-color=artemis] .sidebar-wrapper > .nav li > a {
  opacity: 1.0 !important;
}
.sidebar[data-background-color=artemis] .user .info a {
  opacity: 1.0 !important;
}
.sidebar[data-background-color=black] .nav li.active li.active>a {
  background-color: #2d4764 !important;
}
.sidebar[data-background-color=black] .nav li>a:hover {
  background-color: #566f8b !important;
}
.sidebar[data-background-color=artemis] .nav li.active>a {
  background-color: #B50042 !important;
}
.sidebar[data-background-color=artemis] .nav li>a:hover {
  background-color: #E52072 !important;
}

.font20 {
  font-size: 18px !important;
}

.btn-calc {
  width: 33px;
}

.btn-calc2 {
  width: 69px;
}

.shift-setting-work-schedule {
  margin-bottom: 0 !important;
}

.shift-setting-unit-price {
  padding: 0 5px !important;
  width: 55px !important;
}

.shift-setting-number-of-people {
  padding: 0 10px !important;
  width: 40px !important;
}

.el-tag {
  margin-left: initial !important;
  margin-bottom: initial !important;
}

input[type="search"]::placeholder {
  color: #CCC;
}

.before-adjustment {
  background-color: #e1f5e1;
}

.in-adjustment {
  background-color: #e1ebf5;
}

.el-date-editor.el-input, .el-date-editor.el-input__inner {
  width: 140px !important;
}