html {
  overflow: hidden;
}
body {
  overflow: hidden;
  margin-top: 0;
  height: 100vh;
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  /*font-family: 'Kosugi Maru', -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;*/
}
div {
  -webkit-tap-highlight-color: transparent;
}
header {
  width: 100vw;
  padding-top: 3px;
  padding-bottom: 1px;
}
#headerDiv {
  width: 100vw;
  display: table;
}
#headerLogoDiv {
  display: table-cell;
  height: 55px;
  width: 400px;
}
#headerRightDiv {
  display: table-cell;
  text-align: right;
  vertical-align: top;
  padding-right: 10px;
  padding-top: 5px;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mainContainer {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
footer {
  width: 100vw;
  padding: 0;
  margin: 0;
  background-color: #0075c5;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
/*
footer div {
  display: table-cell;
}
*/
footer ul {
  display: table;
  table-layout: fixed;
  height: 40px;
  padding: 0;
  margin: 0;
}
footer ul li {
  display: table-cell;
  padding-top: 10px;
  padding-left: 12px;
  font-size: 0.9rem;
}
footer ul li:before {
  content: "|";
  font-size: 1rem;
  padding-right: 12px;
  color: #fff;
}
footer a {
  text-decoration: none;
  color: #fff;
}
footer a:hover {
    color: #ffa700;
}
footer #copyrightDiv {
  text-align: right;
  padding-right: 10px;
  font-size: 0.8rem;
  color: #fff;
}

input, select, textarea {
  font-size: 0.85rem;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type=checkbox] {
  display: none;
}
.checkbox-label {
  position: relative;
  padding: 0 0 0 22px;
}
.checkbox-label:hover:before {
  border-color: #4392c3;
}
.checkbox-label:after, .checkbox-label:before{
  position: absolute;
  content: "";
  display: block;
  top: 50%;
}
.checkbox-label:before {
  left: 1px;
  /*margin-top: -9px;*/
  width: 12px;
  height: 12px;
  border: 2px solid #666;
  border-radius: 5px;
  transform: translate(0%, -50%);
}
.checkbox-label:after {
  left: 7px;
  /*margin-top: -12px;*/
  margin-top: -3px;
  width: 5px;
  height: 12px;
  border-right: 3px solid red;
  border-bottom: 3px solid red;
  /*transform: rotate(45deg);*/
  transform: translate(0%, -50%) rotate(45deg);
  opacity: 0;
}
input[type=checkbox]:checked + .checkbox-label:after {
  opacity: 1;
}
input[type=checkbox]:disabled + .checkbox-label:before {
  border: 2px solid #666;
  background-color: #bbbbbb80;
}

input[type=radio] {
  display: none;
}
.radio-label {
  position: relative;
  padding: 0 0 0 24px;
  font-size: 0.9em;"
}
.radio-label:hover:before {
  border-color: #4392c3;
}
.radio-label:after, .radio-label:before{
  position: absolute;
  content: "";
  display: block;
  top: 50%;
}
.radio-label:before {
  left: 1px;
  margin-top: -9px;
  width: 14px;
  height: 14px;
  border: 2px solid #666;
  border-radius: 14px;
}
.radio-label:after {
  left: 6px;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 8px;
  background-color: blue;
  opacity: 0;
}
input[type=radio]:checked + .radio-label:after {
  opacity: 1;
}
input[type=radio]:disabled + .radio-label:before {
  border: 2px solid #666;
  background-color: #bbbbbb80;
}

#noticeDiv {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  padding-bottom: 10px;
  box-sizing: border-box;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0px 20px 10px;
}

#noticeTblDiv {
  border: 1px solid #999;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  flex: 1;
}

table.notice {
  /*border: solid 1px #999999;*/
  border-collapse: collapse;
  /*margin-top: -1px;*/
  /*margin-left: -1px;*/
  /*margin-right: -1px;*/
  margin-bottom: -1px;
  font-size: 0.9em;
  width: 100%;
}

td.noticeDate {
  border-bottom: solid 1px #999999;
  border-right: solid 1px #999999;
  width: 100px;
}

td.noticeContent {
  border-bottom: solid 1px #999999;
}

.simple-btn {
  height: 24px;
  padding: 2px 5px 2px 5px;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  background-color: #0075c5;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.simple-btn:hover {
  opacity: 0.5;
}

.simple-btn:disabled {
  background-color: #cccccc;
}

.simple-btn:disabled:hover {
  opacity: 1;
  cursor: auto;
}

.footer-btn {
  height: 24px;
  padding: 2px 5px 2px 5px;
  text-align: center;
  color: #364ea5;
  font-size: 14px;
  background-color: #ffffff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.footer-btn:hover {
  background-color: #49a9d4;
}

.footer-btn:disabled {
  background-color: #cccccc;
}

.alertMsg {
  font-weight: bold;
  color: #ff7700;
}

.read-only {
  background-color: #eeeeee;
}

.ipt-error {
  background-color: #ffb6c1;
}

.ipt-error:disabled {
  background-color: #cccccc;
}

.context-menu-item {
  text-align: left !important;
}

.error {
  color: #ffbd24;
  font-size: 0.9em;
  font-weight: bold;
}

.ui-widget {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    font-size: 14px;
}
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
  width: 60px;
  font-size: 1rem;
  border: 1px solid #99c9e5;
  border-radius: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.ui-datepicker select.ui-datepicker-year::-ms-expand {
  display: none;
}
.link-button {
  border: none;
  background: none;
  color: #0514d2;
  text-decoration: underline;
  outline: none;
  cursor: pointer;  
}
.link-button:hover {
  color: #ff5e00;
}
.swal-overlay, .swal-modal {
    animation: none !important;
}
.swal-text {
  color: #000 !important;
}
.swal-button {
  background-color: #0075c5 !important;
  padding: 6px 24px !important;
}
.swal-button-red {
  background-color: #ff2e2e !important;
}
.swal-button--cancel {
  color: #555 !important;
  background-color: #efefef !important;
}
.swal-button:hover {
  opacity: 0.5;
}
.swal-button:focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px #ccc !important;
}
.swal-button--danger:focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px #ccc !important;
}
#loadingDiv {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 999;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
}
#loadingImg {
  position: absolute;
  margin: auto;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
pre {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
select[multiple] option:checked {
  background: linear-gradient(#99c9e5, #99c9e5);
  background-color: #9acae5;
}

.select2-container--default .select2-selection--multiple {
  overflow: auto;
  border: 1px solid #99c9e5;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #99c9e5;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  line-height: 22px;
  background-color: #f2f7ff;
  border: 1px solid #99c9e5;
  margin-left: 2px;
  margin-top: 2px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 8px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  height: 100%;
  border-right: 1px solid #99c9e5;
}
.select2-container--default .select2-search--inline .select2-search__field {
  line-height: 22px !important;
  height: 22px !important;
  width: calc(100% - 5px)!important;
}
.select2-container--default .select2-results__option--selected {
  background-color: #99c9e5;
}
