@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap');
:root {
  --button-color: #f1f3f4;
  --button-hover: #dee1e6;
  --button-green: #4ea300;
  --button-orange: #e96c00;
  --font-color: #0066b3;
  --line-color: #0066b3;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: rgb(222 225 230 / 100%);
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #ebebeb;
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--font-color);
}
ul {
  list-style: none;
}
a, button {
  cursor: pointer;
}
a.link:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  object-fit: scale-down;
}
img.progress {
  display: none;
  width: 64px;
  height: auto;
  position: absolute;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
i {
  display: inline-block;
  width: 24px;
  height: 24px;
}
i.user { background: url(../image/user.svg) no-repeat center / 100%; }
i.passwd { background: url(../image/passwd.svg) no-repeat center / 100%; }
i.photo { background: url(../image/photo.svg) no-repeat center / 100%; }
i.file { background: url(../image/file.svg) no-repeat center / 100%; }
i.check { background: url(../image/check.svg) no-repeat center / 70%; }
/*----------------------------------------------------------------------------------
header
------------------------------------------------------------------------------------*/
body > header {
  display: flex;
  justify-content: space-between;
  padding: 15px 50px 15px 30px;
  width: 100%;
  height: 88px;
  border-bottom: 5px solid var(--line-color);
  background: rgb(255 255 255 / 80%);
  position: fixed;
  z-index: 1;
}
body > header h1 {
  width: 176px;
  height: 58px;
  background: url(../image/title.png) no-repeat center / 100%;
  text-indent: -9999px;
  overflow: none;
}
body > header ul {
  display: flex;
  align-items: center;
}
body > header ul li {
  cursor: pointer;
}
body > header ul li:nth-child(n+2) {
  margin-left: 20px;
}
body > header ul li.icon {
  width: 30px;
  height: 30px;
  background: no-repeat center / 100%;
  text-indent: -9999px;
  overflow: hidden;
}
body > header ul li.icon:hover {
  opacity: 0.6;
}
body > header ul li.icon.login {
  display: none;
  background-image: url(../image/login.svg);
}
body > header ul li.icon.logout {
  background-image: url(../image/logout.svg);
}
body > header ul li.icon.config {
  background-image: url(../image/config.svg);
  background-size: 24px;
}
body > header ul li.icon.menu {
  display: none;
  background-image: url(../image/menu.svg);
  background-size: 20px;
}
@media screen and (max-width: 1000px) {
  body > header {
    padding: 15px 30px;
  }
  body > header ul li.icon.menu {
    display: block;
  }
}
@media screen and (max-width: 799px) {
  body > header {
    padding: 0 15px 0 0;
    height: 60px;
  }
  body > header h1 {
    width: 150px;
    height: 60px;
    background-size: auto 40px;
  }
  body > header ul li.icon {
    width: 25px;
    height: 25px;
  }
  body > header ul li.icon.config {
    display: none;
  }
  body > header ul li.icon.menu {
    /* display: none; */
  }
}
/*----------------------------------------------------------------------------------
section
------------------------------------------------------------------------------------*/
body > section {
  display: flex;
  padding: 88px 0 0;
  width: 100%;
  min-height: 100vh;
}
body > section nav {
  padding: 20px 20px 20px 0;
  min-width: 360px;
  background: var(--line-color);
}
body > section nav > div {
  padding: 0 20px 10px;
  min-height: calc(100vh - 88px - 40px);
  max-height: calc(100vh - 88px - 40px);
  overflow-y: scroll;
}
body > section nav label {
  display: block;
  padding: 0 10px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
body > section nav label:nth-of-type(n+2) {
  margin-top: 30px;
}
body > section nav ul {
  display: flex;
  flex-direction: column;
}
body > section nav ul li {
  display: flex;
  align-items: center;
  height: 42px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
body > section nav ul li:nth-child(n+2) {
  margin-top: 20px;
}
body > section nav ul li:hover,
body > section nav ul li.current {
  background: rgb(178 180 255 / 65%);
}
body > section nav ul li i {
  margin: 0 30px;
  width: 22px;
  height: 22px;
  background: url(../image/config_wh.svg) no-repeat center / 20px;
}
li.dashboard i { background: url(../image/time_wh.svg) no-repeat center / 20px; }
li.today i { background: url(../image/time_wh.svg) no-repeat center / 20px; }
li.otherday i { background: url(../image/time_wh.svg) no-repeat center / 20px; }
li.holiday i { background: url(../image/holiday_wh.svg) no-repeat center / 20px; }
li.workdata i { background: url(../image/file_wh.svg) no-repeat center / 20px; }
li.carfarelist i { background: url(../image/file_wh.svg) no-repeat center / 20px; }
li.reviewlist i { background: url(../image/file_wh.svg) no-repeat center / 20px; }
li.commitlist i {
  margin: 0 26px;
  width: 30px;
  height: 30px;
  background: url(../image/approve_wh.svg) no-repeat top left / 22px, url(../image/stamp_wh.svg) no-repeat bottom 2px right / 22px;
}
@media screen and (max-width: 1000px) {
  body > section nav {
    display: none;
    position: absolute;
    z-index: 10;
  }
}
@media screen and (max-width: 799px) {
  body > section {
    padding: 60px 0 0;
  }
}
/*----------------------------------------------------------------------------------
section > div
------------------------------------------------------------------------------------*/
body > section > div {
  width: 100%;
  position: relative;
}
div.tab > ul {
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 60px;
  background: var(--line-color);
}
div.tab > ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  width: 100px;
  height: 34px;
  border-radius: 6px 6px 0 0;
  background: rgb(201 203 255 / 72%);
  color: var(--font-color);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
div.tab > ul li:hover {
  background: rgb(201 203 255 / 82%);
}
div.tab > ul li.current {
  background: #efefef;
}
div.page {
  display: none;
  padding: 20px 20px;
  min-width: 1000px;
  background-color: #efefef;
}
div.page.current {
  display: block;
}
div.page > div {
  padding: 0 10px;
  min-height: calc(100vh - 88px - 100px);
  max-height: calc(100vh - 88px - 100px);
  overflow-y: scroll;
}
div.content > div.page > div {
  min-height: calc(100vh - 88px - 40px);
  max-height: calc(100vh - 88px - 40px);
  background-color: #ffffff;
}
div.page h2 {
  display: block;
  margin: 30px 0 20px 0;
  height: 20px;
  font-size: 14px;
}
div.page h2 + div table {
  margin: 0 !important;
}
div.page > div.split {
  padding: 0;
  min-height: initial;
  max-height: initial;
  overflow: initial;
}
div.page > div.split > div {
  padding: 0 10px;
  min-height: calc(100vh - 88px - 60px - 110px);
  max-height: calc(100vh - 88px - 60px - 110px);
  overflow-y: scroll;
  border: 1px solid;
  background-color: #ffffff;
}
div.page > div.split > div.split2 {
  padding: 0 10px;
  min-height: calc((100vh - 88px - 60px - 180px) / 2);
  max-height: calc((100vh - 88px - 60px - 180px) / 2);
  overflow-y: scroll;
}
/*div.page > div.split > div::-webkit-scrollbar {
  width: 10px;
}*/
div.page dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
div.page div:not(.split) > dl {
  margin-top: 10px;
}
div.page dl dt {
  display: flex;
  align-items: center;
}
div.page dl dd {
  display: flex;
  align-items: center;
}
div.page dl dt > *:nth-child(n+2) {
  margin-left: 20px;
  font-weight: 600;
}
div.page dl dd > *:nth-child(n+2) {
  margin-left: 30px;
}
div.page div.range dl:nth-child(n+2) {
  margin-top: 10px;
}
div.page div.range dl dt > label:first-child {
  width: 150px;
  font-weight: 600;
}
div.file_view_parent,
div.iframe_view_parent {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  display: none;
  overflow: hidden !important;
  padding: 0 !important;
  min-height: auto !important;
  max-height: 100% !important;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5) !important;
  cursor: pointer;
}
div.file_view_parent div.file_view,
div.iframe_view_parent div.iframe_view {
  position: absolute;
  top: 50%;
  left: 50%;
  overflow-y: scroll;
  max-width: 80%;
  width: auto;
  height: 80%;
  border: 5px solid #000000;
  background: #ffffff;
  box-shadow: 0 0 20px rgba(0,0,0,1);
  cursor: default;
  transform: translate(-50%, -50%);
}
div.iframe_view_parent div.iframe_view {
  width: 80%;
}
div.file_view_parent div.file_view img {
  object-fit: fill;
}
div.iframe_view_parent div.iframe_view iframe {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  border: none;
}
p.alert {
  margin: 10px 0 0;
  padding: 20px !important;
  background: #ffea9f;
  color: #ff7600;
}
div.tablewrap {
  margin: 0;
  position: relative;
}
div.tablewrap > a {
  position: absolute;
  top: 35px;
  right: 0;
}
.pager {
  margin-top: 30px;
}
.pager a {
  font-size: 24px;
  font-family: cursive;
}
.pager a.off {
  color: #ccc;
  pointer-events: none;
}
table.list {
  margin-top: 30px;
  width: 100%;
  border-spacing: 0 5px;
}
.pager + table.list {
  margin-top: 0;
}
table.list tr td {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
*:not(.tablewrap) > table.list thead {
  position: sticky;
  top: 0;
  border-radius: 0;
  background-color: rgb(255 255 255 / 90%);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
table.list thead tr td {
  padding: 10px;
  color: var(--font-color);
  font-weight: 600;
  font-size: 14px;
}
table.list thead tr td:first-child {
  border-left: 1px solid #fff;
}
table.list thead tr td:last-child {
  border-right: 1px solid #fff;
}
table.list tbody tr td {
  padding: 10px;
  border-top: 1px solid var(--line-color);
  border-bottom: 1px solid var(--line-color);
  color: #000;
  height: 58px;
}
table.list tbody tr td:first-child {
  border-left: 1px solid var(--line-color);
  border-radius: 6px 0 0 6px;
}
table.list tbody tr td:last-child {
  border-right: 1px solid var(--line-color);
  border-radius: 0 6px 6px 0;
}
table.list tbody tr.current td,
table.list tbody tr:hover td {
  background: rgb(0 102 179 / 5%);
}
table.list tbody tr td.state0,
table.list tbody tr td.state1 {
  font-weight: 600;
  color: var(--font-color);
}
table.list tbody tr td.state2 {
  font-weight: 600;
  color: #ff0000;
}
table.list tbody tr td div {
  white-space: initial;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  cursor: default;
}
table.list tbody tr td i {
  cursor: pointer;
}
table.list td span {
  color: var(--line-color);
  cursor: pointer;
}
table.list a.button {
  display: inline-block;
  width: 70px;
  height: 36px;
  line-height: 36px;
  text-align: center;
}
table.list a.button:nth-child(n+2) {
  margin-left: 10px;
}
table.list tbody.ui-sortable tr {
  cursor: move;
}
table + div.message p {
  padding: 10px;
}
@media screen and (max-width: 799px) {
  div.page {
    padding: 0;
    min-width: initial;
  }
  div.content > div.page > div {
    padding: 30px 10px;
    min-height: calc(100vh - 60px);
    max-height: initial;
  }
}
/*----------------------------------------------------------------------------------
process
------------------------------------------------------------------------------------*/
div.process {
  display: flex;
  flex-direction: column;
  margin: 0 !important;
  padding: 0 !important;
  width: 500px;
  height: 200px;
  min-height: 200px !important;
  border: 4px solid var(--line-color);
  border-radius: 20px;
  background: #fff;
  overflow: initial !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
div.process header {
  padding: 15px 30px;
  height: 50px;
  position: relative
}
div.process header label {
  color: var(--font-color);
  font-size: 15px;
  font-weight: 600;
}
div.process header a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: rgb(0 102 179 / 45%);
  position: absolute;
  top: 10px;
  right: 10px;
}
div.process header a:hover {
  color: rgb(0 102 179 / 70%);
}
div.process > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 30px;
  height: calc(100% - 65px);
}
div.process > div p {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  height: calc(100% - 36px);
  font-size: 15px;
  line-height: 20px;
}
/*----------------------------------------------------------------------------------
dialog
------------------------------------------------------------------------------------*/
div.dialog {
  display: none;
  width: 420px;
  border: 4px solid var(--line-color);
  border-radius: 20px;
  background: #fff;
  position: absolute;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.dialog header {
  padding: 15px 30px;
  height: 50px;
  position: relative
}
.dialog header p {
  color: var(--font-color);
  font-size: 15px;
  font-weight: 600;
}
.dialog.login header {
  padding: 10px 0 0;
  height: auto;
}
.dialog.login header p {
  display: block;
  margin: 40px auto 0;
  width: 176px;
  height: 58px;
  background: url(../image/title.png) no-repeat center / 100%;
}
.dialog header a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: rgb(0 102 179 / 45%);
  position: absolute;
  top: 10px;
  right: 10px;
}
.dialog header a:hover {
  color: rgb(0 102 179 / 70%);
}
.dialog section {
  margin-bottom: 15px;
  padding: 0 30px;
  max-height: calc(100vh - 65px - 20px);
  overflow-y: auto;
}
.dialog section form {
  padding: 50px 20px 35px;
}
.dialog div.upload {
  margin: 0;
  width: 220px;
  min-height: 270px;
}
@media screen and (max-width: 799px) {
  div.dialog {
    overflow: hidden;
    max-width: calc(100% - 20px);
    max-height: calc(100vh - 100px);
  }
  div.dialog.login {
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
  }
  .dialog section {
    padding: 0 0 30px;
    max-height: calc(100vh - 150px);
  }
  .dialog section form {
    padding: 20px 15px;
  }
}
/*----------------------------------------------------------------------------------
form
------------------------------------------------------------------------------------*/
form.card {
  margin-top: 30px;
  padding: 30px 50px;
  border: 4px solid var(--line-color);
  border-radius: 20px;
}
form dl {
  display: flex;
  flex-direction: column;
}
form dl dt {
  padding: 10px 0;
  font-weight: 600;
}
form ul {
  display: flex;
  flex-direction: column;
}
form ul li {
  display: flex;
  margin-bottom: 20px;
}
form ul li:last-child {
  margin: 0;
}
form ul > div {
  margin-bottom: 20px;
}
form ul li > label {
  display: flex;
  align-items: center;
  min-width: 120px;
  color: var(--font-color);
  font-weight: 600;
}
form ul li > div {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}
form ul li > div > * {
  margin-right: 20px;
}
form ul li > div > *:last-child {
  margin-right: 0;
}
form ul li > div label {
  font-weight: 600;
}
form ul li.column2 {
  justify-content: space-between;
}
form ul li.column2 > div {
  width: calc(100% / 2 - 10px);
}
form ul li a:hover {
  color: #0091ff;
}
form > p {
  padding: 30px 0 0;
  text-align: center;
}
form > p:first-child {
  margin: 0;
  padding: 0 0 30px;
}
form > div {
  display: flex;
  justify-content: space-around;
  margin-top: 80px;
}
.dialog form > div {
  margin-top: 40px;
}
form.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
form.flex > * {
  width: 50%;
}
form.flex div.center {
  width: 100%;
}
form.upload {
  display: none;
}
div.upload {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 10px;
  width: 300px;
  min-height: 400px;
  border: 2px dashed #b3b3b3;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
div.upload i {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}
div.upload p {
  padding: 0 20px;
  color: #adadad;
}
div.upload img {
  max-height: 100%;
}
input[type="text"], input[type="password"], input[type="date"], input[type="number"], textarea, select {
  padding: 5px 10px;
  width: 100%;
  height: 36px;
  -webkit-appearance: none;
  border: 2px solid var(--line-color);
  border-radius: 6px;
  background: #fff;
  outline: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}
select {
  padding: 5px 30px 5px 10px;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="date"]:focus, input[type="number"]:focus, textarea:focus, select:focus {
  box-shadow: 0 0 2px 2px #fff, 0 0 1px 3px rgb(0 102 179 / 42%);
}
input[type="text"]:read-only, input[type="password"]:read-only, input[type="date"]:read-only, input[type="number"]:read-only, textarea:read-only, select.read-only {
  background-color: #ffea9f;
  pointer-events: none;
}
div.passwd input {
  padding: 5px 40px 5px 10px;
}
input + a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
input[type="password"] + a {
  background: url(../image/eye_close.svg) no-repeat center / 100%;
}
input[type="text"] + a {
  background: url(../image/eye_open.svg) no-repeat center / 100%;
}
div.search {
  position: relative;
}
div.search input[type="text"] {
  padding-right: 30px;
}
div.search input[type="text"]::-webkit-calendar-picker-indicator {
  margin: 0;
  padding: 0;
  width: 0;
  opacity: 0;
}
div.search input[type="text"] + a {
  background: url(../image/search.svg) no-repeat center / 70%;
}
div.pdf {
  position: relative;
}
div.pdf input[type="text"] {
  padding-right: 30px;
}
div.pdf input[type="text"] + a {
  background: url(../image/pdf.svg) no-repeat center / 100%;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  background: transparent;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 2px;
  right: 1px;
  z-index: 1;
}
input[type="number"] {
  width: 80px;
  text-align: center;
}
input + span {
  margin-left: 5px;
  line-height: 34px;
  color: var(--font-color);
  font-weight: 600;
}
input[type="radio"] {
  display: none;
}
input[type="radio"] + label {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 30px;
  min-width: 100px;
  font-weight: 600;
  position: relative;
}
input[type="radio"] + label:before {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid var(--line-color);
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
input[type="radio"]:checked + label:after {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  background: rgb(0 102 179 / 42%);
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
}
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"] + label {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 60px;
  min-width: 100px;
  font-weight: 600;
  position: relative;
}
input[type="checkbox"] + label:before {
  display: inline-block;
  content: "";
  width: 46px;
  height: 16px;
  border: 2px solid #ababab;
  background: #ababab;
  border-radius: 18px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
input[type="checkbox"] + label:after {
  display: inline-block;
  content: "";
  width: 16px;
  height: 16px;
  background: rgb(255 255 255 / 42%);
  border-radius: 16px;
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  transition: 0.3s;
}
input[type="checkbox"]:checked + label:before {
  background: var(--line-color);
  border: 2px solid var(--line-color);
}
input[type="checkbox"]:checked + label:after {
  background: #fff;
  left: 30px;
}
select {
  appearance: none;
}
.select {
  position:relative;
}
.date {
  width: 160px;
  position:relative;
}
.select:after {
  content: '';
  width: 12px;
  height: 12px;
  background: url(../image/arrow_down.svg) no-repeat center / 100%;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.date:after {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../image/date.svg) no-repeat center / 100%;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.select + span {
  margin-left: 10px!important;
  color: var(--font-color);
  font-weight: 600;
}
a.button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 3px;
  width: 120px;
  height: 36px;
  background: var(--line-color);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
a.button.check {
  width: 100px;
  height: 32px;
  border: 2px solid var(--line-color);
  background: #fff;
  color: var(--line-color);
}
button {
  width: 120px;
  height: 36px;
  border: none;
  background: var(--line-color);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
a.button:hover, button:hover {
  box-shadow: 0 0 2px 2px #fff, 0 0 1px 3px rgb(0 102 179 / 42%);
}
a.button.readonly,
a.button.readonly:hover {
  background: gray!important;
  box-shadow: initial!important;
}
a.button.remove {
  background: #db5100;
}
a.button.remove:hover {
  box-shadow: 0 0 2px 2px #fff, 0 0 1px 3px rgb(179 84 0 / 42%);
}
a.button.orange {
  background: var(--button-orange);
}
a.button.orange:hover {
  box-shadow: 0 0 2px 2px #fff, 0 0 1px 3px rgb(179 84 0 / 42%);
}
a.button.green {
  background: var(--button-green);
}
a.button.green:hover {
  box-shadow: 0 0 2px 2px #fff, 0 0 1px 3px rgb(80 167 0 / 42%);
}
@media screen and (max-width: 799px) {
  form.card {
    padding: 30px 15px;
  }
  div.page form ul {
    padding: 30px 0px !important;
  }
  form ul li {
    flex-wrap: wrap;
  }
  form ul li > label {
    margin-bottom: 20px;
    padding: 10px;
    width: 100%;
    background: rgb(0 102 179 / 42%);
    border-radius: 6px;
  }
  form ul li > div {
    margin-bottom: 20px;
    padding: 0 6px;
    min-width: initial !important;
    max-width: initial !important;
  }
  form.flex {
    flex-direction: column;
  }
  form.flex > * {
    width: 100% !important;
  }
  div.passwd input {
    padding: 5px 40px 5px 10px;
  }
  input + a {
    right: 20px;
  }
  .date:after {
    right: 20px;
  }
}
/*----------------------------------------------------------------------------------
ranking, movie
------------------------------------------------------------------------------------*/
div.ranking {
  margin: 0 auto 40px;
  max-width: 1200px;
}
div.ranking h2 {
  margin: 10px 0;
  padding: 10px 0;
  font-size: 24px;
  font-size: min(5vw, 24px);
  text-align: center;
  position: relative;
}
div.ranking h2 span {
  font-size: 13px;
  font-weight: 400;
  color: #000;
  position: absolute;
  bottom: 0;
  right: 0;
}
div.recruit {
  margin: 0 auto 50px;
  max-width: 1200px;
}
div.recruit h2 {
  display: flex;
  flex-direction: column;
  background: #000;
  padding: 5px 0;
  color: #fff;
  text-align: center;
}
div.recruit h2 span {
  line-height: 24px;
  font-size: 22px;
  font-weight: 600;
}
div.recruit h2 span:last-child {
  line-height: 28px;
  font-size: 18px;
  font-weight: 500;
}
div.recruit h2 + p {
  padding: 20px;
  line-height: 28px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-align: center;
}
div.recruit > div {
  display: flex;
  flex-wrap: wrap;
}
div.recruit > div article {
  margin-bottom: 20px;
  width: calc(50% - 10px);
}
div.recruit > div article:nth-child(odd) {
  margin-right: 10px;
}
div.recruit > div article:nth-child(even) {
  margin-left: 10px;
}
div.recruit > div article h3 {
  background-image: linear-gradient(70deg, rgba(57, 157, 229, 1), rgba(0, 102, 179, 1) 48%, rgba(0, 57, 101, 1));
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  padding: 10px;
}
div.recruit > div article h3 p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
div.recruit > div article ul {
  margin-top: 10px;
  max-height: 500px;
  overflow-y: auto;
}
/*div.recruit > div article ul::-webkit-scrollbar {
  width: 15px;
}*/
div.recruit > div article ul li {
  display: flex;
  margin: 7px 0 0;
}
div.recruit > div article ul li:first-child {
  margin-top: 0;
}
div.recruit > div article ul li label {
  display: flex;
  flex-direction: column;
  padding: 5px;
  font-weight: 500;
  width: 100px;
  color: #fff;
  background: rgba(0, 102, 179, 1);
}
div.recruit > div article ul li div {
  padding: 5px 10px;
  width: calc(100% - 100px);
  font-weight: 500;
  color: #000;
  background: rgb(209, 228, 241);
}
div.recruit > div article ul li:nth-child(-n+4) div {
  height: 50px;
}
div.recruit > div article ul li:nth-child(-n+4) p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
div.recruit dl.message {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  padding: 3px;
  background: rgb(236, 161, 49);
}
div.recruit dl.message dt {
  padding: 12px;
  background: rgb(236, 161, 49);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
  text-align: center;
}
div.recruit dl.message dd {
  padding: 30px 10px;
  background: #fff;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5em;
}
div.recruit dl.notice {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  padding: 20px 0;
  background: #f0f8fc;
}
div.recruit dl.notice dt {
  padding: 12px;
  color: #ff0000;
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
  text-align: center;
}
div.recruit dl.notice dd {
  padding: 15px 10px;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5em;
}
:root {
  --flow-height: 100px;
  --flow2-color: #7dc1f1;
  --flow3-color: #81df70;
  --flow4-color: #fdd513;
  --flow5-color: #ffa64b;
}
div.flow ul li.f2 > div,
div.flow ul li.f2 > s + s,
div.flow ul li.f2 > u + u,
div.flow ul li.f2 > i + i {
  background: var(--flow2-color)!important;
}
div.flow ul li.f3 > div,
div.flow ul li.f3 > s + s,
div.flow ul li.f3 > u + u,
div.flow ul li.f3 > i + i {
  background: var(--flow3-color)!important;
}
div.flow ul li.f4 > div,
div.flow ul li.f4 > s + s,
div.flow ul li.f4 > u + u,
div.flow ul li.f4 > i + i {
  background: var(--flow4-color)!important;
}
div.flow ul li.f5 > div,
div.flow ul li.f5 > s + s,
div.flow ul li.f5 > u + u,
div.flow ul li.f5 > i + i {
  background: var(--flow5-color)!important;
}
div.flow ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  list-style: none;
  margin-top: 20px;
}
div.flow ul li {
  display: flex;
  margin-right: 50px;
  width: 20%;
  height: var(--flow-height);
  position: relative;
}
div.flow ul li:last-child {
  margin-right: 40px;
}
div.flow ul li > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 2px solid #000000;
  border-right: 0;
  background: #8fb1ff;
  color: #000;
  font-size: 18px;
  font-size: min(1.6vw, 18px);
  font-weight: 500;
}
div.flow ul li:nth-child(n+2) > div {
  border-left: 0;
}
div.flow ul li > div > div {
  display: flex;
  flex-direction: column;
}
div.flow ul li i {
  width: 40px;
  height: var(--flow-height);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  background: #000000;
  position: absolute;
  right: -40px;
  top: 0;
}
div.flow ul li i + i {
  background: #8fb1ff;
  position: absolute;
  right: -38px;
  top: 0;
}
div.flow ul li s {
  width: 40px;
  height: var(--flow-height);
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(50% + 2px));
  background: #000000;
  position: absolute;
  left: -40px;
  top: 0;
}
div.flow ul li s + s {
  background: #8fb1ff;
  position: absolute;
  left: -36px;
  top: 2px;
}
div.flow ul li u {
  width: 40px;
  height: var(--flow-height);
  clip-path: polygon(100% calc(50% - 2px), 0% 100%, 100% 100%);
  background: #000000;
  position: absolute;
  left: -40px;
  bottom: 0;
}
div.flow ul li u + u {
  background: #8fb1ff;
  position: absolute;
  left: -36px;
  bottom: 2px;
}
div.flow > div {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  width: 100%;
}
div.flow > div > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(40% - 46px);
  height: 60px;
  border: 2px solid #000;
  border-radius: 6px;
  background: #2969e1;
  color: #fff;
  font-size: 18px;
  font-size: min(1.6vw, 18px);
  font-weight: 500;
}
div.flow > div > div.next {
  width: calc(60% + 36px);
  background: #ff950c;
}
div.flow.sp {
  display: none;
}
div.movie {
  margin: 0 auto;
  max-width: 1200px;
}
div.movie:nth-child(n+2) {
  margin-top: 20px;
}
div.movie > h2 {
  background: #000;
  color: #fff;
  line-height: 40px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
div.movie > div {
  display: flex;
  flex-wrap: wrap;
}
div.movie article {
  margin-top: 10px;
  margin-right: 10px;
  width: calc((100% - 20px) / 3);
}
div.movie article:nth-child(3n) {
  margin-right: 0;
}
div.movie h3 {
  padding: 10px;
  background: var(--line-color);
  color: #fff;
}
div.movie h3 span {
  display: -webkit-box;
  font-size: 14px;
  font-weight: 400;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
div.movie iframe {
  width: 100%;
  height: 160px;
  border: none;
}
div.movie p {
  display: -webkit-box;
  color: #000;
  font-size: 13px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
div.movie.category article {
  display: flex;
  margin-top: 10px;
  margin-right: 10px!important;
  width: calc((100% - 10px) / 2);
}
div.movie.category article:nth-child(2n) {
  margin-right: 0!important;
}
div.movie.category a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100px;
}
@media screen and (max-width: 799px) {
  div.ranking {
    display: none;
  }
  div.recruit > div {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  div.recruit > div article {
    margin: 0 0 20px;
    width: 100%;
  }
  div.recruit > div article h3 {
    font-size: 15px;
  }
  div.recruit dl.message dt {
    text-align: left;
    line-height: 1.2;
  }
  div.recruit dl.message dd {
    text-align: left;
  }
  div.recruit dl.notice dt {
    text-align: left;
    line-height: 1.2;
  }
  div.recruit dl.notice dd {
    text-align: left;
  }
  div.flow.pc {
    display: none;
  }
  div.flow.sp {
    display: block;
  }
  :root {
    --flow-height: 20px;
  }
  div.flow.sp ul {
    flex-direction: column;
  }
  div.flow.sp ul:last-of-type {
    margin-top: 40px;
  }
  div.flow.sp ul li {
    margin: 0 auto 25px;
    width: 60%;
    height: 60px;
  }
  div.flow.sp ul li > div {
    padding-top: 15px;
    border: 2px solid #000000;
    border-top: 0;
    font-size: 15px;
    font-size: min(4.0vw, 15px);
  }
  div.flow.sp ul li.f1 > div {
    border-top: 2px solid #000000;
  }
  div.flow.sp ul li i {
    width: 100%;
    height: var(--flow-height);
    clip-path: polygon(0% 0%, 100% 0%, 50% calc(100% - 1px));
    position: absolute;
    left: 0px;
    top: initial;
    bottom: -20px;
  }
  div.flow.sp ul li i + i {
    background: #8fb1ff;
    position: absolute;
    left: 0px;
    top: initial;
    bottom: -18px;
  }
  div.flow ul li s {
    width: 100%;
    height: var(--flow-height);
    clip-path: polygon(0% 0%, calc(50% + 5px) 100%, 0% 100%);
    background: #000000;
    position: absolute;
    left: 0;
    top: -20px;
  }
  div.flow ul li s + s {
    background: #8fb1ff;
    position: absolute;
    left: 2px;
    top: -18px;
  }
  div.flow ul li u {
    width: 100%;
    height: var(--flow-height);
    clip-path: polygon(calc(50% - 5px) 100%, 100% 0%, 100% 100%);
    background: #000000;
    position: absolute;
    left: initial;
    right: 0;
    top: -20px;
    bottom: initial;
  }
  div.flow ul li u + u {
    background: #8fb1ff;
    position: absolute;
    left: initial;
    right: 2px;
    top: -18px;
    bottom: initial;
  }
  div.flow.sp > div > div {
    padding: 5px 10px;
    width: 100%;
    height: auto;
    min-height: 80px;
    font-size: 15px;
    font-size: min(4.2vw, 15px);
  }
  div.movie > div {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  div.movie article {
    width: 100% !important;
  }
}

/* =====追加分===== */
/* 非表示要素 */
.hide_elements {
  display: none !important;
}
/* 出勤区分の(?)マーク */
#work_status_link {
  margin-left: 5px;
  color: red;
  font-weight: bold;
  font-size: 18px;
}
/* ロック日 */
#tm_lock {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #000000;
  font-size: 10px;
  line-height: normal;
}
/* select2ライブラリ */
.select2-container--default .select2-selection--single {
  border: 2px solid #0066b3;
  border-radius: 6px;
}
.select2-container .select2-selection--single {
  height: 36px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 32px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-right: 30px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none;
}
/* はてなマークに吹き出し */
.dli-question-circle {
  position: relative;
  display: inline-block;
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-radius: 50%;
  vertical-align: middle;
  line-height: 1;
  cursor: help !important;
}
.dli-question-circle > span {
  position: relative;
  position: absolute;
  top: 9%;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0.1em;
  height: 0.1504em;
  border-radius: 0.05em 0 0.025em 0.025em;
  background: currentColor;
  cursor: help !important;
}
.dli-question-circle > span::before {
  position: absolute;
  bottom: calc(100% - 0.1em);
  left: 0.05em;
  box-sizing: content-box;
  width: 0.168em;
  height: 0.168em;
  border: 0.1em solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
  content: "";
  transform: translateX(-50%) rotate(-45deg);
}
.dli-question-circle > span::after {
  position: absolute;
  top: calc(100% + 0.06667em);
  left: 0;
  width: inherit;
  height: 0.1em;
  border-radius: 50%;
  background: currentColor;
  content: "";
}
/* テーブルの行を赤く強調 */
div.page table tr.highlight_red {
  background-color: #ffb6b6;
}
