@charset "UTF-8";
/* CSS Document */
/*
$red:rgb(229,0,68);


$orange:rgb(255,69,0);
$l_green:rgb(215,233,148);
$catch_color:rgb(122,106,86);
$text_color:rgb(87,77,79);
$table_color:rgb(176,224,230);
$closing_color:rgb(246,197,189);
*/
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
}

img {
  border-width: 0;
}

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  margin: 0 auto;
  color: #000;
  font: 1.0rem/1.5 'Noto Sans JP', sans-serif;
  background: #eee;
  font-weight: 300;
  height: 100%;
}

.menu {
  font-size: 1.6rem;
  margin: 0 10px;
}
.menu::after {
  content: "";
  display: block;
  clear: both;
}
.menu .l {
  float: left;
}
.menu .r {
  float: right;
}

#login {
  position: absolute;
  left: 0;
  right: 0;
  top: 50px;
  padding: 10px;
  font-size: 1.6rem;
  width: 480px;
  max-width: 100%;
  margin: auto;
  display: inline-block;
}
#login h1 {
  font-size: 2rem;
  padding: .5em;
}
#login p {
  clear: both;
  padding: 0 10px;
  margin: 0 auto;
  display: block;
  text-align: left;
}
#login form {
  padding: 40px 10px;
}
#login input {
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  appearance: none;
  display: block;
  color: #636363;
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #757575;
}
#login input:focus {
  outline: none;
}
#login label {
  color: #999;
  font-size: 1.8rem;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: all 0.2s ease;
}
#login input:focus ~ label, #login input.used ~ label {
  top: -20px;
  transform: scale(0.85);
  left: -2px;
  color: #4a89dc;
}
#login .error {
  color: #c00;
  font-weight: bold;
}
#login button {
  margin: 0 auto;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  display: block;
}

.group {
  position: relative;
  margin-bottom: 45px;
}

/* Underline */
.bar {
  position: relative;
  display: block;
  width: 100%;
}
.bar::before, .bar::after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #4a89dc;
  transition: all 0.2s ease;
}
.bar::before {
  left: 50%;
}
.bar::after {
  right: 50%;
}

/* active */
#login input:focus ~ .bar:before, #login input:focus ~ .bar:after {
  width: 50%;
}

/* Highlight */
.highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* active */
#login input:focus ~ .highlight {
  animation: inputHighlighter 0.3s ease;
}

/* Animations */
@keyframes inputHighlighter {
  from {
    background: #4a89dc;
  }
  to {
    width: 0;
    background: transparent;
  }
}
#tabs {
  clear: both;
}

/* 写真+ボタン */
.file {
  display: block !important;
  overflow: hidden !important;
  position: relative !important;
  clear: both;
  width: 10em;
  margin: 0 10px 0 0;
}

.file input[type="file"] {
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.handle {
  font-size: 2em;
  cursor: move;
  text-align: center;
}

.handle span {
  background: rgba(0, 0, 0, 0) url("../img/narabikae.png") no-repeat scroll center center/20px auto;
  cursor: move;
  display: block;
  height: 20px;
  margin: 0 auto;
  text-indent: -9999px;
  width: 30px;
}

.handle:before {
  font-family: 'LigatureSymbols';
  text-rendering: optimizeLegibility;
  font-smoothing: antialiased;
}

.handle:before {
  content: attr(title);
  font-size: 130%;
}

.color_1 td {
  background: #def !important;
}

.help h2 {
  padding: 5px 10px;
}
.help table {
  margin: 0 auto 10px;
  width: calc(100% - 20px);
}
.help table th {
  padding: 5px;
  width: 12em;
  text-align: left;
}
.help table td {
  padding: 5px;
}

.answer_check {
  background: #CD0003;
  padding: 3px;
  color: #FFFFFF;
}

#array_plus, #result_plus, .time_plus {
  padding: 5px 0;
  margin-left: 10px;
}

.delete_map, .delete_photo, .trim {
  clear: both;
  float: left;
  margin: 5px 0 0;
}

.pager {
  clear: both;
  margin: 10px 0;
}

.pager a, .pager span {
  display: inline-block;
  padding: 0 1px;
  margin: 0 2px 0;
  min-width: 2em;
  height: 2em;
  line-height: 2em;
  background: #eee;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
}

.pager span.now, .pager a:hover {
  background: #0070AC;
  color: #fff;
}

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

.flex .box {
  width: 46%;
  min-width: 300px;
  margin: 10px;
  border-radius: 10px;
}

.flex .box h2 {
  border-bottom: 1px solid #ddd;
  padding: 10px;
  color: #20549e;
}

.flex .box h2 a {
  text-decoration: none;
  color: #20549e;
}

.flex .box p {
  padding: 5px 10px;
  font-size: 1.4rem;
}

.box {
  background: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  padding: 0 0 10px;
}

.radius {
  border-radius: 4px;
}

tr[data-flg="1"] td span {
  color: red;
}

tr[data-flg="2"] td span {
  color: grey;
}

tr[data-flg="3"] td span {
  color: green;
}

tr[data-flg="3"] {
  background: #f0f0f0;
  color: #ccc;
}

.hide, .hide2, .hide3 {
  display: none;
}

.edit_flex {
  display: flex;
}
.edit_flex .edit_table {
  width: 50%;
}

.edit_table {
  margin: 10px;
  border-radius: 4px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  background: #fff;
}
.edit_table h2 {
  font-size: 1.6rem;
  padding: 10px;
}
.edit_table table {
  border-top: 1px solid #ccc;
}
.edit_table th {
  vertical-align: top;
}

table {
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.6rem;
  padding: 0;
  width: 100%;
}
table tr {
  border-bottom: 1px solid #ccc;
}
table thead tr {
  border-bottom: 3px double #ccc;
}
table thead tr th {
  text-align: left;
  position: relative;
  background: #e7f3ff;
  border: 1px solid #ddd;
}
table td {
  position: relative;
  padding: 5px;
  border: 1px solid #ddd;
}
table th {
  padding: 5px;
  font-weight: normal;
  border: 1px solid #ddd;
}
table tbody tr td {
  border: 1px solid #ddd;
}
table tfoot th, table tfoot td {
  padding: 5px;
  position: relative;
  font-size: 1.2rem;
}
table tfoot td::before {
  border-left: 1px solid #ddd;
  position: absolute;
  content: '';
  height: 70%;
  height: calc(100% - 10px);
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

table ul {
  list-style-type: none;
}

input[type="text"] {
  width: 100%;
}

.inline input[type="text"] {
  width: auto;
}

.data_list p {
  border-bottom: 1px solid #ccc;
  font-weight: bold;
}
.data_list ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.data_list ul li {
  display: inline-block;
  margin-right: 5px;
}

#update {
  font-size: 1.6rem;
}

#search, #search_view {
  font-size: 1.4rem;
  margin: 10px;
  border-radius: 4px;
}

.radio_btn {
  display: flex;
}

.radio_btn input {
  display: none;
}

.radio_btn label {
  align-content: stretch;
  display: block;
  cursor: pointer;
  width: 100%;
  margin: 0 1em 1em 0;
  padding: .7em .5em;
  border: 2px solid #aaa;
  background-image: linear-gradient(top, #f0f0f0, #cccccc);
  color: #555e64;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
  transition: .2s;
  border-radius: 4px;
}

.radio_btn label:hover {
  border: 2px solid #009afb;
}

.radio_btn input[type="radio"]:checked + label {
  border: 2px solid #009afb;
  background-image: linear-gradient(top, #a1dafe, #ddf1fd);
  color: #333;
}

/*radio*/
.radio input {
  display: none;
}

.radio label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-left: 20px;
  padding: 10px 20px;
  border-radius: 2px;
  color: #3e4956;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
}

.radio label:before {
  position: absolute;
  content: "";
  top: 50%;
  left: -10px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: #bdc3c7;
  border-radius: 50%;
}

.radio input[type="radio"]:checked + label:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: #009afb;
}

.radio input[type="radio"]:disabled + label {
  color: #ddd;
}

.radio input[type="radio"]:disabled + label:before {
  background: #eee;
}

.radio input[type="radio"]:disabled + label:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: #fafafa;
}

/*checkbox*/
.checkbox input {
  display: none;
}

.checkbox label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-left: 20px;
  padding: 10px 20px;
  border-radius: 2px;
  color: #3e4956;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.2;
}

.checkbox label:before {
  position: absolute;
  content: "";
  top: 50%;
  left: -10px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: #bdc3c7;
  border-radius: 10%;
}

.checkbox input[type="checkbox"]:disabled + label {
  color: #ddd;
}

.checkbox input[type="checkbox"]:disabled + label:before {
  background: #eee;
}

.checkbox input[type="checkbox"]:disabled + label:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
}

.checkbox input[type="checkbox"]:checked:disabled + label::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -4px;
  width: 6px;
  height: 10px;
  margin-top: -9px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
}

.checkbox input[type="checkbox"]:checked + label::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -4px;
  width: 6px;
  height: 10px;
  margin-top: -9px;
  border-right: 3px solid #009afb;
  border-bottom: 3px solid #009afb;
  transform: rotate(45deg);
}

.select {
  margin-bottom: 20px;
}

.select select {
  font-size: 1.4rem;
  padding: .5em 2em .5em .5em;
  appearance: none;
  border: 2px solid #009afb;
  border-radius: 4px;
  line-height: 1;
  background: #a1dafe;
  background: url(../img/select-box-arrow.png) right 50% no-repeat, linear-gradient(to bottom, #fff 0%, #efebe1 100%);
  background-size: 20px, 100%;
}

.c {
  text-align: center;
}

.r {
  text-align: right;
}

.ui-widget.ui-widget-content {
  font-size: 1.4rem;
}

.output {
  float: right;
}

div.sorter_div {
  overflow: auto;
  width: 100%;
  height: 100%;
  position: relative;
  /* max-width: calc(100vw - 300px);*/
}
div.sorter_div table {
  width: calc(100% - 10px);
}
div.sorter_div .mCSB_container {
  margin-right: 3px;
}

div.scroll_div {
  overflow: auto;
  width: 100%;
}

.head {
  white-space: nowrap;
  width: 10em;
  padding: 0 3px;
  background: #fafafa;
}

.view thead th {
  white-space: nowrap;
}

.close {
  display: none;
  background: #fafafa;
}

.close table, .close p {
  margin-left: 5%;
  width: 95%;
}

.close table tbody tr {
  background: #fff;
}

p.acc {
  cursor: pointer;
  text-align: center;
  border-radius: 4px;
  width: 1.5em;
  height: 1.5em;
  margin: auto;
}

p.acc:hover {
  background: #fafafa;
}

.tblttl {
  font-size: 1.4rem;
  padding: 10px;
  margin: 10px;
  border-radius: 4px;
}

#save input {
  width: 30vw;
}

#basedpay_list img {
  width: 48%;
  max-width: 120px;
}

#basedpay_list header a {
  display: block;
  float: left;
  width: 50%;
  padding: 0;
  text-align: center;
  background: #ddd;
  color: #999;
  height: 65px;
  vertical-align: middle;
  line-height: 65px;
  font-family: 'Lato', arial;
  font-size: 15px;
  transition: all 0.3s ease;
}

#basedpay_list header a.active {
  background: #fff;
  color: #777;
}

#basedpay_list table {
  table-layout: fixed;
}

.tabs li span {
  font-size: 80%;
}

.tabs h2 {
  border-bottom: 1px solid #333;
  position: relative;
}

.tabs h2 span {
  position: absolute;
  left: 7em;
  top: -8px;
  font-size: 1.4rem;
}

.tabs h3 {
  margin: 10px 0;
  padding: 0;
}

.tabs .list_input {
  width: 30%;
}

.tabs .tab_area {
  position: relative;
}

.tabs .input_area {
  height: 70vh;
  overflow: auto;
  position: relative;
}

.tabs .tab_area button {
  position: absolute;
  right: 1.4em;
  top: 5px;
}

.tabs table input {
  width: 2em;
}

.tabs table input[type='number'] {
  width: 3em;
}

#affiliation_data table thead th {
  width: 3em;
}

#affiliation_data table thead th:first-child {
  width: auto;
}

#affiliation_data .ui-tabs .ui-tabs-nav li {
  height: 4em;
}

#affiliation_data .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  height: 100%;
}

.color_2 button {
  background: #B1EBA1;
}

.color_1 button {
  background: #FFF9A8;
}

.personal_table {
  margin: 10px;
  padding: 10px;
  border-radius: 4px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  background: #fff;
}

.personal_score {
  width: 70%;
  float: left;
}

.chart_area {
  width: 30%;
  float: right;
}

.chart_area canvas {
  width: 100%;
  height: 300px;
  display: block;
}

.chart_area::after {
  content: "";
  display: block;
  clear: both;
}

.chart_area_bar {
  width: 70%;
  min-height: 250px;
  float: left;
  position: relative;
}

.chart_area_bar canvas {
  position: absolute;
}

hr {
  clear: both;
}

.p_score .score {
  border: 1px solid #fff;
  width: 3em;
  display: inline-block;
  color: #000;
}

.p_score img {
  cursor: pointer;
  vertical-align: bottom;
}

.score_list {
  border: 1px solid #ccc;
  margin: 10px auto;
}

.score_list th {
  text-align: left;
  position: relative;
  background: #e7f3ff;
}

.score_list td {
  text-align: center;
}

#managerevaluation_data {
  position: relative;
}

#managerevaluation_data .auto_input {
  position: relative;
  font-size: 1.4rem;
  margin: 10px;
  height: 2em;
}

#managerevaluation_data .list_input {
  width: 30%;
}

#managerevaluation_data .input_area {
  height: 70vh;
  font-size: 1.4rem;
  overflow: auto;
  position: relative;
}

#managerevaluation_data button {
  position: absolute;
  right: 1.4em;
  top: 0;
}

.menu .setdays {
  clear: both;
  float: left;
}

.menu .setdays {
  clear: both;
  float: left;
}

.menu .setsort {
  float: left;
  padding: 5px 20px;
  border: 1px solid #ddd;
  background: #fff;
  margin: 0 10px;
  border-radius: 4px;
}

.menu .setdays a, .menu .setdays form {
  display: inline;
}

.menu .setdays input {
  width: 10em;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  vertical-align: middle;
}

.viewtype {
  float: right;
  margin-bottom: 5px;
}

.affiliation {
  float: right;
}

.viewtype .ui-checkboxradio-radio-label .ui-icon-background,
.viewtype .ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.viewtype .ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon,
.affiliation .ui-checkboxradio-radio-label .ui-icon-background,
.affiliation .ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.affiliation .ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
  width: 0;
  height: 0;
  border-width: 0;
}

.nonview {
  background: #eee;
}

#worker_area {
  margin: 10px;
  padding: 10px;
}

#worker_area select {
  float: right;
}

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

#salary_area {
  margin: 10px;
}

#salary_area table tfoot td {
  padding: 0;
  position: relative;
  font-size: 1.6rem;
  background: #e7f3ff;
}

#manager_area {
  margin: 10px;
}

#manager_area table {
  table-layout: fixed;
  border: 1px solid #ddd;
  margin: 0 0 10px;
}

#manager_area table thead th {
  text-align: center;
  font-size: 1.2rem;
}

#manager_area table tbody td {
  text-align: center;
}

.score_box {
  margin-bottom: 10px;
  padding: 10px;
}

.score_box h2 {
  font-size: 1.6rem;
}

.score_box p {
  font-size: 1.4rem;
}

.score_box dl {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  border: 1px solid #ccc;
}

.score_box dl + dl {
  border-top: 0 solid #ccc;
}

.score_box dt {
  padding: 5px;
  width: 4em;
  line-height: 1;
  text-align: center;
  background: #ddd;
}

.score_box dd {
  width: calc(100% - 4.5em);
}

.score_box dt span {
  display: block;
  font-size: 3rem;
}

table.score {
  table-layout: fixed;
}

table.score th {
  width: 3em;
}

table.score th:first-child {
  width: auto;
}

table.score td {
  text-align: center;
}

table.score td:first-child {
  text-align: left;
}

.red {
  color: red !important;
}

table tbody tr.even td {
  background: #f9f9f9;
}
