html {
  font-size: 14px;
}

body{
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color:#222222;
}

a{
  color: #222;
}

button{
  transition: .3s ease;
}

button:hover{
  opacity: .7;
}

/**********************
  スクロールバー常に表示
 **********************/

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
    height: 7px;
}
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    box-shadow: 0 0 1px rgba(255,255,255,.5);
}

/**********************
  original class
 **********************/

 /********bg***********/
.bg-lincuru-green{
  background-color: #4DB981 !important;
  color: #fff;
}

.bg-lightblue{
  background-color: #38A5D1;
  border-color:#38A5D1;
}

.bg-pink {
  background-color: #DF7C9E;
  border-color: #DF7C9E;
}

.bg-red {
  background-color: #AE1600;
  border-color: #AE1600;
}

/********btn***********/
.btn-lincuru{
  border-color: #002633;
  width: 240px;
}

.btn-hover:hover{
    opacity: .7;
}

/********color***********/
.color-lincuru-green {
  color: #4DB981;
}


/********header***********/
.lincuru-header-btn{
  background-color: #fff;
  border-radius: 50%;
  width: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lincuru-header-btn--logout{
  border:none;
  background-color: #fff;
}
.lincuru-header-btn--logout svg{
    color:rgba(0,0,0,.5);
}

.border-navy{
  border-color:#002633;
}

.text-pink{
  color:#DF7C9E;
}

/*
th.lincuru-close::before{
  content:"";
  background: url(../img/icon-close.svg) no-repeat 50% 50% / contain;
  width: 30px;
  height: 30px;
  display: inline-block;
}

th.lincuru-open::before {
  content: "";
  background: url(../img/icon-open.svg) no-repeat 50% 50% / contain;
  width: 30px;
  height: 30px;
  display: inline-block;
}
*/

table input[type=checkbox] {
  width: 1.5em;
  height: 1.5em;
  display: block;
  margin: 0 auto;
}

table.table thead th {
  line-height: 1.5em;
  vertical-align: middle;
  text-align: center;
}

tr:not(:hover) td.is-open{
  background-color: #F4F8FC;
  /*vertical-align: middle;*/
  /*cursor: pointer;*/
}


td.is-open::before{
  /*content: "\f111";*/
  /*font-family: "Font Awesome 6 Free";*/
  /*font-size: 28px;*/
  /*color:#17a2b8;*/
  /*line-height: 1;*/
}


tr:not(:hover) .is-close {
  background-color: #F9F2EE;
  /*vertical-align: middle;*/
  /*cursor: pointer;*/
}

td.is-close::before {
  /*content: "×";*/
  /*font-family: "Font Awesome 6 Free";*/
  /*font-size: 42px;*/
  /*color: #AE1600;*/
  /*line-height: 1;*/
  /*transform: translateY(-3px);*/
  /*display: inline-block;*/
}

 /**********************
  登所予定、登所実績のテーブル
 **********************/
/****** 共通設定 ******/
table#plan_table {
  border-collapse: separate;
  border-spacing: 0;
}

table#plan_table th{
    white-space: nowrap;
}
table#plan_table td{
    vertical-align: middle;
}

table#plan_table thead th.is-past {
  background-color: #F2F2F2;
}

table#plan_table .is-past {
  background-color: rgba(0,0,0,.05);
}

table#plan_table thead th {
  position: sticky;
  top: 0px;
  z-index: 1;
  background-color: #FFF;
  outline: 1px solid #dee2e6;
}

table#plan_table thead th:not([rowspan="2"]) {
  height: 45px;
}

table#plan_table thead th[rowspan="2"] {
  height: 90px;
}

table#plan_table thead tr:first-child th:not([rowspan="2"]) {
  border-bottom-width: 1px;
}

table#plan_table thead tr:nth-child(2) th {
  top: 45px;
}

table#plan_table .sticky-col {
  position: sticky;
  position: -webkit-sticky;
  padding-left: 0;
  padding-right: 0;
}

table#plan_table thead .sticky-col {
  z-index: 3;
}

table#plan_table .sticky-col:nth-child(1) {
  left: 0;
  min-width: 80px;
}

table#plan_table .sticky-col:nth-child(2) {
  left: 80px;
  min-width: 60px;
}

table#plan_table .sticky-col:nth-child(3) {
  left: 140px;
  min-width: 110px;
}

table#plan_table tbody th.sticky-col,
table#plan_table tr:not(:hover) .sticky-col {
  background-color: #FFFFFF;
}
table#plan_table tr:hover td.sticky-col {
  background-color: #DDFFEB;
}

/***** 登所予定向け設定 *****/
table#plan_table.stickytable-plan thead th {
  height: 55px;
}
table#plan_table.stickytable-plan thead tr:nth-child(2) th {
  top: 55px;
}

table#plan_table td .fa-circle{
    font-size: 28px !important;
    color:#17a2b8 !important;
}
table#plan_table td .fa-xmark{
    font-size: 32px !important;
    color: #AE1600 !important;
}

table#plan_table th button,
table#plan_table td button{
    width: 30px;
    height: 30px;
    border:none;
    padding:0;
    margin:0;
    background-color: transparent;
    appearance: none;
    -webkit-appearance: none;/*Google Chrome/Safari対応*/
    -moz-appearance: none;/*Firefox対応*/
}

table#plan_table th img{
    width: 30px;
    height: 30px;
}

/*********パスワード***********/
.password-field {
  position: relative;
}

.password-field .eye {
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  margin: auto;
  cursor: pointer;
}

.password-field .is-invalid+.eye {
  right: 2.3em;
}


/**********************
  上書き
 **********************/


/********side***********/
.btn-hamburger{
    background-color: #FFFFFF;
    width: 40px;
    height: 40px;
    text-align: center;
    margin-left: 7px;
    margin-top: 7px;
    padding-left:0 !important;
    padding-right:0 !important;

}
.btn-hamburger svg{
    width: 20px;
    height: 20px;
}
@media (min-width: 802px) {
    .btn-hamburger{
        display: none!important;
    }
}

.main-sidebar, .main-sidebar::before {
  width: 280px;
}

.sidebar-mini .main-sidebar .nav-link, .sidebar-mini-md .main-sidebar .nav-link, .sidebar-mini-xs .main-sidebar .nav-link {
  width: calc(280px - .5rem * 2);
}

.sidebar-mini .main-sidebar .nav-link {
  color: #fff;
  padding-right: 0;
}

.sidebar-mini .main-sidebar .nav-link:hover{
  background-color: #83CEA7;
  color: #fff;
}

.sidebar-mini .main-sidebar .nav-link.active {
  background-color: #fff;
  color: #022633;
}

.sidebar-collapse .main-sidebar, .sidebar-collapse .main-sidebar::before {
  margin-left: -280px;
}

@media (min-width: 802px) {
  body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper,
  body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .main-footer,
  body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .main-header {
    margin-left: 280px;
  }
}

@media (max-width: 991px) {
  body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper,
  body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .main-footer,
  body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .main-header {
    margin-left: 0;
  }
}

.nav-sidebar>.nav-item .nav-icon.svg-inline--fa {
  font-size: 1.4rem !important;
}

/* #sidebar{
    width:280px;
}
.sidebar-mini.sidebar-collapse #sidebar,
.sidebar-mini.sidebar-collapse #sidebar::before{
    width: 4.6rem;
}
@media (min-width: 802px) {
  body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .main-header,
  body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper {
    margin-left: 280px;
  }
}

.sidebar{
  padding-left: 0;
  padding-right: 0;
}


.sidebar-mini .main-sidebar .nav-link {
  width: 100%;
  padding: 0.8rem 1rem;
  color: #fff;
}
.sidebar-collapse.sidebar-mini .main-sidebar .nav-sidebar .nav-link,
.sidebar-collapse.sidebar-mini-md .main-sidebar .nav-sidebar .nav-link,
.sidebar-collapse.sidebar-mini-xs .main-sidebar .nav-sidebar .nav-link{
    width: 100%;
    text-align: center;
}
.sidebar-mini.sidebar-collapse .brand-text,
.sidebar-mini.sidebar-collapse .sidebar .nav-sidebar .nav-link p,
.sidebar-mini.sidebar-collapse .sidebar .user-panel>.info{
    display: none !important;
}

.nav-sidebar .nav-item>.nav-link i {
  width: 30px;
  text-align: center;
}

.sidebar-mini .main-sidebar .nav-link:hover{
  background-color: #83CEA7;
}

.sidebar-mini .main-sidebar .nav-link.active {
  background-color: #fff;
  color: #022633;
} */

/* body:not(.layout-fixed) .main-sidebar {
  min-height: 108%;
} */

/* body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .main-footer {
  margin-left: 280px;
  text-align: center;
} */

/********table***********/
.table td{
  font-weight: 400;
}

.table tbody tr:hover {
  background-color: #DDFFEB !important;
}

.btn-240 {
  width: 240px;
}

.table .buttons {
  display: flex;
  flex-wrap:wrap;
  gap: .5em;
  max-width: 37.5em;
}

.table .buttons > .btn,
.table .buttons > .spacer,
.table .buttons > form {
  min-width: 5em;
  max-width: 8em;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .2em;
}

.table .buttons > form .btn {
  width: 100%;
}

.table .buttons.mini > .btn,
.table .buttons.mini > .spacer,
.table .buttons.mini > form {
  min-width: 3em;
  max-width: 3em;
}

.table .buttons.wide > .btn,
.table .buttons.wide > .spacer,
.table .buttons.wide > form {
  min-width: 12em;
  max-width: 12em;
}

@media (max-width: 801px) {
    .table-striped .row{
        gap: 5px;
    }
    .table-striped .col-2,
    .table-striped .col-6,
    .table-striped .col-4,
    .table-striped .col-3 {
        max-width: 100%;
        flex: 100%;
    }
}
/********pagination***********/

.pagination{
  justify-content: flex-end;
}

.pagination a{
  color: #222;
}

.page-item.active .page-link{
  background-color: #4DB981;
  border-color: #4DB981;
}

/********input***********/
.datetimepicker-input:has(+ .input-group-append) {
  border-right: 0;
}
.input-group-text {
  background-color: #fff;
  border-left:0;
  /* padding-right: 5px; */
}

.input-group-text i{
  opacity: .7;
}

.custom-file-label::after {
  display: none;
}

.custom-file-input{
  height: 0;
}

.custom-file-label{
  width: 240px;
  height: auto;
  text-align: center;
  padding: 0.6rem 0;
  border-color: #002633;
  color:#002633;
  font-weight: 700;
}

.custom-file-label:hover{
  background-color: #002633;
  color: #fff;
  opacity: .8;
}


.select2-container--default .select2-selection--multiple .select2-selection__choice{
  background-color: #FAFAFA;
  border-color: #DFDFDF;
  color:#222;
  font-weight: 400;
  padding-left: 25px;
  position: relative;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
  color: #999;
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 25px;
}

.alert-info-yellow {
    background-color: #FADE7D;
    border-color: #FADE7D;
    color: #333333;
}

.tablet-show {
  display: none;
}

/*
 * ページ個別 (メッセージ管理)
 */
 #message_list th:last-child,
 #message_list td:last-child {
   max-width: 7em;
 }