@media only screen and (max-width: 1200px) {
  body {
    width: 992px;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

@media only screen and (max-width: 992px) {
  body {
    width: 960px;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

@media only screen and (max-width: 768px) {
  body {
    width: 720px;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

@media only screen and (max-width: 576px) {
  body {
    width: 540px;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

@media only screen and (max-width: 375px) {
  body {
    width: 325px;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

@media only screen and (max-width: 375px) {
  body {
    width: 325px;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

body {
  font-size: 16px;
  font-family: Hiragino Kaku Gothic ProN, ヒラギノ角ゴ ProN W3, Meiryo, メイリオ,
    Osaka, MS PGothic, arial, helvetica, sans-serif;
}
/* =============header============= */
.header {
  width: 200px;
  height: 100vh;
  background-color: #000;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
}

/* =============basic============= */
.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.d-none {
  display: none;
}

.mr-2 {
  margin-right: 15px;
}

.absolute {
  position: absolute !important;
}

.relative {
  position: relative !important;
}

.align-center{
  text-align: center;
}

input {
  outline: none;
}

input[type="number"] {
  overflow: hidden;
}

input[type="number"]:hover {
  overflow: hidden;
}

.font-sm {
  color: rgba(0, 0, 0, 0.54);
  margin: 0;
  font-size: 0.75rem;
  text-align: left;
  margin-top: 8px;
  min-height: 1em;
  font-family: Hiragino Kaku Gothic ProN, ヒラギノ角ゴ ProN W3, Meiryo, メイリオ,
    Osaka, MS PGothic, arial, helvetica, sans-serif;
  line-height: 1em;
}

.font-ss {
  font-size: 12px;
}

.font-mm {
  color: rgba(0, 0, 0, 0.87);
  font-size: 0.875rem;
  font-family: Hiragino Kaku Gothic ProN, ヒラギノ角ゴ ProN W3, Meiryo, メイリオ,
    Osaka, MS PGothic, arial, helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

.font-md {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.87);
  font-family: Hiragino Kaku Gothic ProN, ヒラギノ角ゴ ProN W3, Meiryo, メイリオ,
    Osaka, MS PGothic, arial, helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

.font-m {
  font-size: 1rem;
  transform: translate(0, 1.5px) scale(0.75);
  position: absolute;
  transform-origin: top left;
  color: rgba(0, 0, 0, 0.87);
  font-family: Hiragino Kaku Gothic ProN, ヒラギノ角ゴ ProN W3, Meiryo, メイリオ,
    Osaka, MS PGothic, arial, helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

.font-lg {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
}

.font-gray {
  color: #888;
}

.pl-2 {
  padding: 10px 150px;
}

.w-full {
  width: 100%;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.py-2 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.px-1 {
  padding-left: 10px;
  padding-right: 10px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mr-1 {
  margin-right: 10px;
}

ul {
  list-style-type: none;
}

.bg-gray {
  background-color: #f5f5f5;
}

.font-transform {
  transform: translate(0, 1.5px) scale(0.75);
  position: absolute;
  transform-origin: top left;
}

/* ========= userinfo ============ */

.header-button {
  margin-top: 10px;
  display: flex;
  justify-content: end;
  margin-bottom: 10px;
}

.notification {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: 16px;
  margin-bottom: 10px;
  position: absolute !important;
  top: 350px !important;
  right: 250px !important;
  left: 40%;
  border-radius: 10px;
  font-size: 20px;
  color: red;
}

.noticication_display {
  position: fixed;
  width: 100%;
}

.text-center {
  width: 300px;
  margin: 0 auto;
}

.new_user {
  background-color: #0277bd;
  padding: 6px 16px;
  font-size: 0.875rem;
  color: #fff;
  min-width: 120px;
  min-height: 36px;
  box-sizing: border-box;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  line-height: 1.75;
  font-family: Hiragino Kaku Gothic ProN, ヒラギノ角ゴ ProN W3, Meiryo, メイリオ,
    Osaka, MS PGothic, arial, helvetica, sans-serif;
  font-weight: 500;
  border-radius: 4px;
  text-transform: uppercase;
  border: none;
  text-decoration: none;
}

.new_user:hover{
  background-color: #0288d1;
}

.new_user:disabled {
  background-color: #ccc;
}

.pdf_button,
.submit_button,
.update_user,
.save_assessment {
  background-color: #0277bd;
  padding: 6px 16px;
  font-size: 0.875rem;
  color: #fff;
  min-width: 120px;
  min-height: 36px;
  box-sizing: border-box;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  line-height: 1.75;
  font-family: Hiragino Kaku Gothic ProN, ヒラギノ角ゴ ProN W3, Meiryo, メイリオ,
    Osaka, MS PGothic, arial, helvetica, sans-serif;
  font-weight: 500;
  border-radius: 4px;
  text-transform: uppercase;
  border: none;
}

.pdf_button {
    cursor: pointer;
}

.pdf_cancel_button {
    cursor: pointer;
    background-color: #fff;
    padding: 6px 16px;
    font-size: 0.875rem;
    color: #0277bd;
    min-width: 120px;
    min-height: 36px;
    box-sizing: border-box;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
      box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
      border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    line-height: 1.75;
    font-family: Hiragino Kaku Gothic ProN, ヒラギノ角ゴ ProN W3, Meiryo, メイリオ,
      Osaka, MS PGothic, arial, helvetica, sans-serif;
    font-weight: 500;
    border-radius: 4px;
    text-transform: uppercase;
    border: 1px solid #ccc;
}

.submit_button:hover,
.update_user:hover {
  background-color: #0288d1;
}

.submit_button:disabled,
.update_user:disabled {
  background-color: #ccc;
}

.submit_button p,
.update_user p,
.save_assessment p {
  font-size: 14px;
  min-height: 16px;
  font-style: normal;
  text-align: center;
  font-weight: 500;
  line-height: 1.14;
  font-stretch: normal;
  letter-spacing: 1.25px;
}

.user_id {
  display: none;
}

.info-box .title {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.6;
}

.info-box {
  margin: 10px;
  padding: 20px 30px;
  background-color: white;
}

.info-box select {
  outline: none;
  border: none;
}

.mt-8 {
  margin-top: 8px;
}

.info-box input {
  padding-top: 10px;
  font-size: 1rem;
  border: none;
}

.input {
  display: inline-block;
  font-size: 1rem;
  border-bottom: 1px;
  border-bottom-color: black;
  border-bottom-style: solid;
  padding-top: 6px;
  padding-bottom: 7px;
  margin-top: 10px;
}

.user-info-input {
  padding-top: 20px;
}

.pt-1 {
  padding-top: 10px;
}
.pt-2 {
  padding-top: 20px;
}

.mt-2 {
  margin-top: 20px;
}

.verified {
  font-size: 16px;
}

.disability {
  max-width: 500px;
}

.disability .check {
  padding: 10px 0;
  display: inline-block;
  width: 150px;
  font-size: 16px;
}

.gender {
  padding-top: 10px;
}

.max-width-sm {
  max-width: 610px;
}

.max-width-md {
  max-width: 780px;
}

.label-content {
  margin-left: 16px;
}

.label-content-max {
  margin-left: 48px;
}

.prefecture {
  min-width: 210px;
  padding-top: 10px;
  border: none;
  border-bottom: 1px;
  border-bottom-style: solid;
  border-bottom-color: black;
  outline: none;
}

.position {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: end;
}

.position-number {
  border-bottom-style: dotted !important;
}

.input span {
  font-size: 14px;
}

.date-month .week_time {
  display: inline-block;
}

textarea {
  margin-top: 25px;
  resize: none;
  outline: none;
  border: none;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  width: 100%;
  padding-bottom: 10px;
  overflow-y: hidden;
}

.date-month input.week_time {
  text-align: center;
  width: 60px;
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.date-year select {
  width: 270px;
}

.date {
  padding: 0 !important;
}

.radio {
  display: flex;
  align-items: center;
}

.income_select {
  min-width: 210px;
  font-size: 1rem;
  padding-top: 5px;
  padding-bottom: 5px;
}

.income_border {
  border-bottom-color: black;
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.border_bottom {
  border-bottom-color: black !important;
  border-bottom-style: solid !important;
  border-bottom-width: 1px !important;
}

.income {
  min-width: 70px;
}

.management_office_display th,
td {
  padding: 12px 16px;
  font-weight: 500;
  text-align: start;
}

@media only screen and (max-width: 768px) {
  .management_office_display th,
  td {
    padding: 5px 8px;
  }
}

.management_office_display thead {
  background-color: #eceff1;
  color: #37474f;
  font-weight: 500;
}

.work-time select {
  border: none;
  border-bottom-style: solid;
  border-bottom-color: black;
  border-bottom-width: 1px;
  padding: 6px 0 7px;
}

.work-time-start {
  margin-top: 16px;
  padding: 6px 0 7px;
  width: 160px;
  margin-right: 10px;
}

.break-time {
  overflow: auto;
}

@media only screen and (max-width: 768px) {
  .work-time th {
    padding: 5px;
  }
}

.break-time thead {
  background-color: #eceff1;
}

.break-time th {
  color: rgba(0, 0, 0, 0.54);
  font-weight: 500;
  padding: 16px;
}

.break-time td {
  text-align: center;
}

td .input {
  margin: 0 !important;
}

td input {
  background-color: inherit;
  padding: 0 !important;
}

.management_input_small {
  width: 118px !important;
}

.management_input {
  width: 220px !important;
}

.service_auto_input {
  font-size: 16px;
  background-color: #f5f5f5;
  padding: 5px 8px;
}

.error {
}

.error p {
  color: red;
}

.service_table thead {
  background-color: #90a4ae;
  color: white;
}

.service_table th {
  padding: 16px;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: start;
}

.service_table th:first-child {
  width: 232px;
}

@media only screen and (max-width: 768px) {
  .service_table th {
    padding: 3px !important;
  }

  .service_table td {
    padding: 2px !important;
  }

  .service_table th:first-child {
    width: 120px !important;
  }
}

.service_table table {
  width: 624px;
}

.service_table {
  overflow: auto;
}

.service_table td {
  padding: 16px;
}

.service_table input {
  width: 120px;
  padding: 0 !important;
  background-color: inherit;
}

table,
tr,
th,
td {
  border: none;
  border-collapse: collapse;
}

table {
  border-bottom: 1px solid #e5e5e5 !important;
}

.add-time {
  padding: 8px 10px;
  border: none;
  background-color: white;
  margin-top: 10px;
}

.add-time:hover {
  background-color: rgba(2, 119, 189, 0.08);
}

/* ======== toggel check ======= */
.switch {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 12px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: -1px;
  bottom: -1px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: -1px 2px 1px #ccc;
  background: #eee;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(14px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
/* ====== toogle check ===== */

/* ============ user list ========== */

.user_list {
  margin: 20px 10px;
  padding: 50px 40px;
  background-color: white;
  height: 100vh;
}

.user {
  display: inline-block;
  width: 200px;
  padding: 10px 20px;
  margin: 10px 20px;
  border-radius: 5px;
  border-style: solid;
  border-color: #2196f3;
  border-width: 1px;
  text-decoration: none;
  text-align: center;
  color: white;
  font-weight: 600;
  background-color: #2196f3;
  font-size: 20px;
}

.user:hover {
  background-color: #eee;
  color:#2196f3;
}

/* =============== login ============= */

@media (min-width: 576px) {
  .login_header {
    min-height: 64px;
  }
}

.login_header {
  color: #fff;
  background-color: #37474f;
  top: 0;
  left: auto;
  right: 0;
  position: fixed;
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  width: 100%;
  display: flex;
  z-index: 1100;
  box-sizing: border-box;
  flex-shrink: 0;
  flex-direction: column;
}

.login_header h2 {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}

.login_body {
  width: 40%;
  margin: 128px auto;
  /* min-height: calc(100vh - 128px - 54px - 80px); */
  border: 1px solid #dedede;
  border-radius: 5px;
  padding: 60px;
}

.login_body legend {
  margin-bottom: 20px !important;
}

.login_body fieldset {
  margin: auto;
}

.login_body label {
  display: block !important;
  margin-bottom: 10px !important;
}

#wpmem_login {
  width: 100% !important;
}

/*===============================1207*/
@media print {
  @page {
    margin: 0;
    padding: 1.25rem;
  }

  .tb-attendance th, .tb-attendance td {
    font-size: 6px !important;
  }
  .opt-option {
    font-size: 8px !important;
    width: 20px !important;
    max-width: 20px;
  }
  .tb-container {
    border: none !important;
  }
  .tb-statistic table th, .tb-statistic table td {
    font-size: 8px;
  } 
}
.page-content {
  margin: .75rem 0;
  padding: 0 .75rem;
}

.last_average {
  min-width: 55px;
}

#secondTable {
        page-break-before: always;
      }

#printbtn::after {
  content: "";
  display: block;
  clear: both;
}

.content-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: 0.75rem;
}
.content-header h1 {
  font-size: 24px;
}
.content {
  bottom: 0;
  display: flex;
  gap: .75rem;
}
.tb-statistic {
}
.tb-statistic table, .tb-statistic th, .tb-statistic td {
  white-space: nowrap;
  padding: 0 0.25rem;
  text-align: center;
  font-size: 10px;
}

.tb-container {
  max-width: 100%;
  /* overflow: auto; 
  max-height: calc(100vh - 240px); */
  /* border: 1px solid #000; */
}

.tb-fixed {
  border-collapse: separate;
  border-spacing: 0;
}
.tb-fixed thead tr {
  border-bottom: 1px solid #000;
}
.tb-fixed thead th {
  border-bottom: 1px solid #000;
}


.tb-fixed tbody tr:first-child td {
  border-top: none;
}

.tb-bordered table,.tb-bordered th, .tb-bordered td, .tb-bordered tr {
  border: 1px solid #000 !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  white-space: nowrap !important;
}

.tb-attendance table, .tb-attendance td, .tb-attendance th {
  padding: 0;
}

.tb-attendance table {
  position: relative !important;
  min-width: 100% !important;
}
.tb-attendance thead {
  background: #eee;
}
.tb-attendance th, .tb-attendance td {
  font-size: 10px !important;
  text-align: center;
}
.tb-attendance thead {
  position: sticky;
  top: 0;
  z-index: 2;
}

.bg-am {
  background: #f4cccc;
}
.bg-pm {
  background: #d9ead3;
}
.bg-apm {
  background: #ffe599;
}
.bg-sm {
  background: #d9d2e9;
}
.bg-hm {
  background: #cfe2f3;
}
.bg-cm {
  background: #dd7e6b !important;
}
.bg-out {
  background: #f9cb9c;
}
.bg-in {
  background: #ff9900;
}
.bg-ab {
  background: #ff00ff;
}
.bg-absent {
  background: #ff0000;
}
.bg-white {
  background: #FFF;
}
.bg-transparent {
  background: transparent;
}
.bg-yellow {
  background: #ffff00;
}
.bg-visit {
  background: #96C78C;
}
.bg-rest {
  background: #999999;
}
.border-red {
  border: 1px solid #ff0000 !important;
}
.opt-option {
  font-size: 10px;
  width: 100%;
  min-width: 32px;
  border: none;
  background: transparent;
}
.td-value {
  opacity: 0;
}
.td-select {
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
.td-select .opt-option {
  flex-grow: 1;
}
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  color: #000;
  font-size: 24px;
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #ccc;
  width: 80%;
  max-width: 600px;
  border-radius: .375rem;
  box-shadow: 1px 1px 3px #000;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.mb-2 {
  margin-bottom: .75rem;
}
.form-ctrl {
  width: 100% !important;
  padding: .5rem .75rem !important;
  border-radius: .375rem !important;
  border: 1px solid #ddd !important;
}
.textarea {
  width: 100% !important;
  resize: vertical !important;
  padding: .75rem !important;
  border-radius: .375rem !important;
  min-height: 80px !important;
  border: 1px solid #ddd !important;
  margin-top: .25rem !important;
}

.w-100 {
  width: 100% !important
}
.flex-fill {
  flex: 1 1 auto !important;
}
.justify-content-between {
  justify-content: space-between !important;
}

.d-flex {
  display: flex !important;
}
.justify-content-end {
  justify-content: end !important;
}
.align-items-center {
  align-items: center !important;
}
.gap-2 {
  gap:0.75rem !important
}

.btn {
  padding: .5rem 1rem ;
  border: none;
  background: transparent;
  border-radius: .375rem !important;
}
.btn-danger {
  background-color: #9e0707;
  color: white !important
}
.btn-primary {
  background-color: #0277bd;
  color : white !important ;
}

/*=========================1207*/

/*================ test*/

.table-input {
  font-size: 10px;
  width: 100%;
  border: none;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.tb-attendance td input {
  text-align: center;
}
.end {
  border-top-style: solid;
  border-width: 1px;
  border-bottom-style: solid;
}

/* ========= clock css =====  */
.clock {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 20x solid black;
  margin: 80px 0;
  position: relative;
}

.clock .number {
  --rotation: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 40px;
  transform: rotate(var(--rotation));
}

.clock .number1 {
  --rotation: 30deg;
}
.clock .number2 {
  --rotation: 60deg;
}
.clock .number3 {
  --rotation: 90deg;
}
.clock .number4 {
  --rotation: 120deg;
}
.clock .number5 {
  --rotation: 150deg;
}
.clock .number6 {
  --rotation: 180deg;
}
.clock .number7 {
  --rotation: 210deg;
}
.clock .number8 {
  --rotation: 240deg;
}
.clock .number9 {
  --rotation: 270deg;
}
.clock .number10 {
  --rotation: 300deg;
}
.clock .number11 {
  --rotation: 330deg;
}

.clock .hand {
  --rotation: 0;
  position: absolute;
  bottom: 50%;
  left: 50%;
  /* border: 1px solid white; */
  border-radius: 50%;
  transform-origin: bottom;
  transform: translateX(-50%) rotate(calc(var(--rotation) * 1deg));
}

.clock .hand.second {
  width: 1px;
  height: 45%;
  background-color: red;
  z-index: 100;
}

.clock .hand.minute {
  width: 5px;
  height: 38%;
  background-color: white;
}
.clock .hand.hour {
  width: 5px;
  height: 30%;
  background-color: white;
}

.digital {
}

#date {
}

.date {
  display: inline-block;
  margin: 0 20px;
  font-size: 45px;
}

.digits {
  display: inline-block;
  margin: 0 20px;
  font-size: 45px;
}

@font-face {
  font-family: "digital-clock-font";
  src: url("digital-7.ttf");
}

h1 {
  color: white;
  font-family: "digital-clock-font";
}

.number {
  color: white;
  font-family: "digital-clock-font";
  font-size: 40px;
}

.attendance_container {
  background-color: #4ed94e;
  min-height: 89vh;
  margin: 10px;
  text-align: center;
  padding: 30px;
}

.attendance_container h2 {
  font-size: 50px;
  color: white;
}

.attendance_clock {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  overflow: hidden;
}

.attendance_btn_container {
  display: flex;
  background-color: inherit;
  justify-content: center;
  align-items: center;
  height: 80px;
  overflow: hidden;
  margin: 100px;
}

.attendance_btn img {
  width: 60px;
  height: 60px;
}

.attendance_btn {
  border-radius: 80px;
  height: 80px;
  width: 80px;
  border-style: solid;
  border-color: white;
  border-width: 1px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: inherit;
}

.attendance_btn:hover {
  cursor: pointer;
  background-color: white;
}

.attendance_btn h3 {
  font-size: 24px;
  color: white;
}

.attendance_btn:hover h3 {
  color: #4ed94e;
}

.attendance_btn {
  margin: 50px;
}

.attendance_btn:disabled:hover {
  background-color: inherit;
  color:white;
}

.attendance_btn:disabled:hover h3 {
  color:white;
}

.digital_contanier {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ================ end clock ========== */
.table_setting {
  margin: 20px;
  padding: 20px 30px;
  background-color: white;
}

.setting_title {
  font-size: 16px;
  background-color: #f5f5f5;
  padding: 5px 8px;
}

.setting_label {
  padding: 10px;
  background-color: gainsboro;
  border-radius:10px;
}

.work_detail textarea {
  width: 100%;
}

.charge textarea {
  width: 30%;
}

/*====================== user-register*/
.label-sm-w {
  min-width: 50px;
}

.button {
  padding: 10px 20px;
  background-color: #0277bd;
  border: none;
  border-radius: 10px;
  color: white;
}

.button:hover {
  background-color: #0288d1;
  color: black;
}

.user_register:disabled {
  background-color: #ccc;
}

/* ==================== tab ================= */

.tab-wrapper {
  text-align: center;
  display: block;
  margin: auto;
  min-width: 530px;
}

.tabs {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-link {
  margin: 0 1%;
  list-style: none;
  padding: 20px 10px;
  color: black;
  cursor: pointer;
  font-weight: 700;
  transition: all ease 0.5s;
  border-bottom: solid 3px rgba(255, 255, 255, 0);
  letter-spacing: 1px;
}

.tab-link:hover {
  color: #999;
  border-color: #999;
}

.tab-link.active {
  color: #333;
  border-color: #333;
}

.tab-link:nth-of-type(1).active {
  color: #ee6534;
  border-color: #ee6534;
}

.tab-link:nth-of-type(2).active {
  color: #1790d2;
  border-color: #1790d2;
}

.tab-link:nth-of-type(3).active {
  color: #eec63b;
  border-color: #eec63b;
}

.tab-link:nth-of-type(4).active {
  color: #42a372;
  border-color: #42a372;
}

/* 1番目タブ（アセスメント） */
.Atab-link:nth-of-type(1).active > a {
  color: #ee6534;
}

/* 2番目タブ（個別支援計画） */
.Atab-link:nth-of-type(2).active > a {
  color: #1790d2;
}

/* 3番目タブ（支援記録） */
.Atab-link:nth-of-type(3).active > a {
  color: #eec63b;
}

/* 4番目タブ（作業記録） */
.Atab-link:nth-of-type(4).active > a {
  color: #42a372;
}

/* 共通：アンカーをタブ全面に広げ、装飾をリセット */
.Atab-link > a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 30px;
  text-decoration: none;
  color: inherit;      /* 未選択時は li の色を継承 */
}

.Rtab-link {
  margin: 0 1%;
  list-style: none;
  padding: 20px 10px;
  color: black;
  cursor: pointer;
  font-weight: 700;
  transition: all ease 0.5s;
  border-bottom: solid 3px rgba(255, 255, 255, 0);
  letter-spacing: 1px;
}

.Rtab-link:hover {
  color: #999;
  border-color: #999;
}

.Rtab-link.active {
  color: #333;
  border-color: #333;
}

.Rtab-link:nth-of-type(1).active {
  color: #ee6534;
  border-color: #ee6534;
}

.Rtab-link:nth-of-type(2).active {
  color: #1790d2;
  border-color: #1790d2;
}

.Atab-link {
  margin: 0 1%;
  list-style: none;
  padding: 20px 10px;
  color: black;
  cursor: pointer;
  font-weight: 700;
  transition: all ease 0.5s;
  border-bottom: solid 3px rgba(255, 255, 255, 0);
  letter-spacing: 1px;
}

.Atab-link:hover {
  color: #999;
  border-color: #999;
}

.Atab-link.active {
  color: #333;
  border-color: #333;
}

.Atab-link:nth-of-type(1).active {
  color: #ee6534;
  border-color: #ee6534;
}

.Atab-link:nth-of-type(2).active {
  color: #1790d2;
  border-color: #1790d2;
}

.Atab-link:nth-of-type(3).active {
  color: #eec63b;
  border-color: #eec63b;
}

.Atab-link:nth-of-type(4).active {
  color: #42a372;
  border-color: #42a372;
}

.content-wrapper {
  padding: 0 0.75em;
}

.tab-content {
  display: none;
  text-align: center;
  color: black;
  font-weight: 300;
  font-size: 15px;
  opacity: 0;
  /* transform: translateY(15px); */
  animation: fadeIn 0s ease 1 forwards;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  100% {
    opacity: 1;
    transform: none;
  }
}
/* ================== tab end ================= */

/* =====================wage page ==============*/
.tb-wage {
  /* max-width: 80%; */
}

.tb-wage th {
  background-color: #d9ead3;
}

.wage-home {
  text-align: center;
  color: black;
  font-size: 24px;
}

.off_facility_bg {
  background-color: #e6b8af;
}

.wage td input {
  border: none;
  width: 100%;
}

.tb-wage_out th {
  background-color: #fce5cd;
}

.flex-rounded {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.flex-rounded > div {
  padding: 20px;
}

.mark {
  font-weight: 700;
  text-align: center;
  border-style: solid;
  border-width: 1px;
  border-color: #555;
  border-radius: 5px;
}
.mark_title {
  font-weight: 700;
  background-color: #b6d7a8;
  padding: 5px 8px;
}

.mark_content {
  font-size: 16px;
  padding: 30px 20px;
}

.mark_total {
  background-color: #b6d7a8;
}

.mark_outside {
  background-color: #ffe599;
}

.mark_home {
  background-color: #ea9999;
}

.mark_gray {
  background-color: #cccccc;
}

.mark_BPO {
  background-color: #d9d2e9;
  min-width: 110px;
  border-right: solid;
  border-width: 1px;
}

.border-bottom {
  border-bottom: solid;
  border-width: 1px;
}

/*=====================================*/

.select-wrapper {
     position: relative;
     user-select: none;
}
.select-wrapper .select {
     position: relative;
     display: flex;
     flex-direction: column;
     border-width: 0 1px 0 1px;
     border-color: #000;
}
 .select__trigger {
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 20px;
     font-weight: 300;
     color: #3b3b3b;
     height: 17px;
     line-height: 17px;
     cursor: pointer;
     border-width: 1px 0 1px 0;
     border-color: #000;
}
 .custom-options {
     position: absolute;
     display: block;
     top: 100%;
     left: 0;
     right: 0;
     border-top: 0;
     background: #fff;
     transition: all 0.5s;
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
     z-index: 3;
}
 .select.open .custom-options {
     opacity: 1;
     visibility: visible;
     pointer-events: all;
}
 .custom-option {
     position: relative;
     display: block;
     font-size: 16px;
     font-weight: 300;
     color: #3b3b3b;
     line-height: 26px;
     cursor: pointer;
     transition: all 0.5s;
}
 .custom-option:hover {
     cursor: pointer;
     background-color: #b2b2b2;
}
 .custom-option.selected {
     color: #ffffff;
     background-color: #305c91;
}

.select__trigger .arrow {
     position: absolute;
     width: 2px;
     height: 15px;
 	 top: -3px;
     right: 2px;
     transform: rotate(-45deg);
     background-color: #3333ff;
}
.table-title {
	color: #000; 
	text-align:center; 
	font-size:24px
}

/* ================ work_item page ======= */
.th-gray {
  background-color: #eceff1;
  color: #37474f;
  font-weight: 500;
}

.work-item th {
  padding: 12px 16px;
  font-weight: 500;
  text-align: start;
}

.small_width {
  width: 450px;
}

.pb-1 {
  padding-bottom: 10px;
}

.work_label {
  width: 85px;
}

.border-none {
  border: none;
}

.btn-padding {
  padding: 10px 20px;
}

.btn-padding:hover {
  cursor: pointer;
}

.tb-wage .arrow {
  position: absolute;
  width: 2px;
  height: 39px;
  top: -7px;
  right: 14px;
  transform: rotate(-50deg);
  background-color: #3333ff;
}

.wage_width_md {
  min-width: 60px;
  font-size: 10px;
  text-align: center;
}
/* ===================== work_item  end ===========*/

/* ============ user wage page  */
#wage_print {
  border: solid 1px black;
  display: inline-block;
  font-family: Hiragino Kaku Gothic ProN, ヒラギノ角ゴ ProN W3, Meiryo, メイリオ,
    Osaka, MS PGothic, arial, helvetica, sans-serif;
}

.wage_print_title {
  margin: 20px 200px;
  width: 250px !important;
  color: black !important;
  text-align: center;
  border-bottom: solid 1px black;
}

.wage_print_title h1 {
  color: black !important;
  font-size: 28px;
  margin-right: -0.5em;
  line-height: 2.2em;
  letter-spacing: 0.5em;
  font-weight: 500;
}

.wage_print_user {
  margin-top: 30px;
  width: 250px;
  text-align: center;
  margin-bottom: 50px;
}

.wage_print_total_wage {
  margin-top: 80px;
  width: 450px;
  margin: auto;
}

.wage_print_total_wage .border-bottom {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.wage_print_check_content_first {
  margin-top: 50px;
  margin-bottom: 30px;
}

.wage_print_month {
  width: 450px;
  margin: auto;
}

.wage_print_month .border-bottom {
  display: flex;
  justify-content: center;
}

.wage_print_check_content_last {
  display: flex;
  justify-content: end;
  margin-right: 30px;
}

.wage_print_check_data {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.wage_print_adress {
  display: flex;
  justify-content: start;
  margin-right: 30px;
  margin-top: 20px;
  width: 500px;
  border-bottom: solid 1px black;
}

.wage_print_display {
  display: flex;
  justify-content: end;
  margin-right: 30px;
  margin-top: 20px;
  width: 500px;
  border-bottom: solid 1px black;
}

.wage_print_user_info {
  margin: 60px auto;
  width: 520px;
  line-height: 2.25em;
}

.wage_print_user_info .border-bottom {
  display: flex;
}

.user_info_lable {
  width: 180px;
}

.user_info_content {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  width: 340px;
  overflow-wrap: anywhere;
}

.info_first_content {
  width: 110px;
  display: flex;
}

.info_first_content_home {
  width: 140px;
  display: flex;
}

.info_first_content_value {
  width: 70px;
  text-align: center;
}

.info_first_content_unit {
  flex: 1;
}

.info_second_content {
  display: flex;
  flex: 1;
}

.info_second_content_first {
  width: 180px;
  display: flex;
  text-align: center;
  justify-content: space-around;
}

.info_second_content_second {
  display: flex;
}

.wage_print_total {
  font-size: 28px;
}

.font-22px {
  font-size: 22px;
}

.print-form {
  display: none;
}

.print-active{
  display: block;
}


@media print {
        /* Hide elements not to be printed */
        .hidden-for-print {
            display: block !important;
        }
	.print-form {
 	    display: block;
	    margin: 0 !important;
	}
	@page {
	  
	}
	
    }
.gold-type td{
  line-height: 2.25em;
}

.schedule_reset_btn{
  margin-top: 6px;
  margin-right: 6px;
  margin-bottom: 6px;
  margin-left: 6px;
  padding-top: 6px;
  padding-right: 6px;
  padding-bottom: 6px;
  padding-left: 6px;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  background-color: #007bff;
  border-color: #007bff;
  border-style: solid;
  border-width: 1px;
  cursor: pointer;
  border-radius: 3px;
}

.schedule_reset_btn:disabled{
  background-color: #aaa;
  border-style: #aaa;
}

.invoice-btn {
  margin: 6px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 3px;
  border-width: 1px;
  border-style: solid;
  cursor: pointer;
}

.invoice-btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  color: #ffffff;
}

.invoice-btn-outline {
  background-color: #ffffff;
  border-color: #007bff;
  color: #007bff;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.modal-box {
  background-color: #fff;
  margin: 5% auto;
  padding: 0;
  width: 400px;
  height: 80vh;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #ccc;
}

.modal-footer {
  padding: 15px;
  border-top: 1px solid #ccc;
  text-align: right;
}

.user-row {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  padding: 8px 12px;
  border-radius: 4px;
}

.user-row:nth-child(even) {
  background-color: #f9f9f9;
}

.user-row:nth-child(odd) {
  background-color: #ffffff;
}

.invoice-dl-table {
  border: 1px solid #ccc;
  width: 100%;
  border-collapse: collapse;
}

.invoice-dl-table th, .invoice-dl-table td {
  border: 1px solid #ccc;
  padding: 8px;
}

.th-blue {
    background-color: #d0f0f8;
}

.print-modal-box {
  background: #fff;
  width: 700px;
  margin: 10% auto;
  padding: 30px;
  border-radius: 4px;
  position: relative;
}

.user-checkbox {
  width: 20px;
  height: 20px;
  accent-color: #007bff;
  margin-right: 12px;
  cursor: pointer;
}

.user-name {
  font-size: 16px;
}

.modal-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.content-block {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.edit-user-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  margin-bottom: 8px;
  background-color: #f9f9f9;
  border-radius: 4px;
}

.edit-user-row span {
  font-size: 16px;
  font-weight: bold;
}

.edit-user-row label {
  margin-left: 12px;
}

.modal-button {
  margin: 6px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  background-color: #007bff;
  border: 1px solid #007bff;
  border-radius: 3px;
  cursor: pointer;
}

.invoice-modal-style {
  margin: 20px 0; 
  display: flex; 
  align-items: center; 
  gap: 10px;
}

.invoice-notificate-modal-style {
  margin: 20px 0; 
  display: none; 
  align-items: center; 
  gap: 10px;
}