@charset "UTF-8";
/*sass 変数*/
/*sass function*/
/* reset */
body, main, article, section, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, li, dd, dt, figure, img, a {
  padding: 0;
  margin: 0;
  font-family: "游ゴシック", YuGoshic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}

li {
  list-style: none;
}

html, body {
  height: 100%;
  box-sizing: border-box;
}

body {
  background-color: #f2f2f2;
}

.button {
  background-color: #2b7cb6;
  color: #fff;
  padding: 0.5rem 1rem;
  text-align: center;
  transition: 0.5s;
}

a.button {
  color: #fff;
  text-decoration: none;
}

a.button:visited {
  color: #fff;
}

.button:hover {
  opacity: 0.7;
  transition: 0.5s;
}

#login {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#login section {
  max-width: 480px;
  width: 100%;
}
#login section h1 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
#login section div {
  box-sizing: border-box;
  margin: auto;
  padding: 1.5rem;
  background-color: #fff;
}
#login section div h2 {
  text-align: center;
  margin-bottom: 1rem;
}
#login section div form ul li {
  width: 80%;
  display: block;
  margin: 1rem auto;
}
#login section div form ul li label {
  display: block;
  width: 100%;
  font-weight: 500;
}
#login section div form ul li input {
  display: block;
  width: 100%;
  line-height: 1.5;
  padding: 0.5rem;
}
#login section div form .error_text {
  color: #f00;
  text-align: center;
  font-weight: bold;
}
#login section div form button {
  display: block;
  margin: 2.5rem auto 1rem;
  border: none;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  color: #fff;
  background-color: #2b7cb6;
  width: 180px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  /*box-shadow: 0px 1px 3px 1px #fff;*/
}
header figure img {
  width: 2rem;
}
header a {
  color: #fff;
  text-decoration: none;
}
header a:visited {
  color: #fff;
}
header article {
  box-sizing: border-box;
  width: 100%;
  background-color: #2b7cb6;
  color: #fff;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.5rem;
}
header article nav ul {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
header article nav ul li {
  margin-left: 2rem;
}
header article nav ul li figure {
  text-align: center;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-content: center;
  font-size: 14px;
}
header article nav ul li figure img {
  display: block;
  margin: auto;
}
header article nav ul li dl {
  position: relative;
}
header article nav ul li dl dt {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0.5rem 2rem;
  font-size: 13px;
}
header article nav ul li dl dt figure {
  margin-right: 0.5rem;
}
header article nav ul li dl dt figure img {
  width: 25px;
}
header article nav ul li dl dt .logout {
  opacity: 0;
  z-index: -1;
  background: #fff;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  left: 50%;
  top: 100%;
  color: #000;
  transition: 0.5s;
}
header article nav ul li dl dt .logout:hover {
  cursor: pointer;
}
header article nav ul .login_info:hover .logout {
  opacity: 1;
  z-index: 10;
  transition: 0.5s;
}

main {
  height: inherit;
  box-sizing: border-box;
}
main #main_content {
  padding-top: 90px;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
}

#left_navi {
  overflow: hidden;
  position: relative;
  border-top: 1px solid #f2f2f2;
}
#left_navi a {
  color: #fff;
  text-decoration: none;
}
#left_navi a:visited {
  color: #fff;
}
#left_navi nav {
  position: fixed;
  box-sizing: border-box;
  padding: 1rem;
  background-color: #2b7cb6;
  color: #fff;
  width: 250px;
  height: 100%;
  z-index: 90;
}
#left_navi nav section {
  box-sizing: border-box;
  padding-top: 1rem;
}
#left_navi nav section h3 {
  border-bottom: 1px solid #fff;
  width: 100%;
}
#left_navi nav section ul {
  margin-top: 1rem;
  margin-bottom: 2rem;
}
#left_navi nav section ul li {
  box-sizing: border-box;
  padding: 0.5rem;
  margin-bottom: 1rem;
}
#left_navi nav section ul li a {
  display: flex;
  align-items: center;
  transition: 0.3s;
}
#left_navi nav section ul li a img {
  width: 25px;
  vertical-align: baseline;
  margin-right: 10px;
}
#left_navi nav section ul li a:hover {
  opacity: 0.7;
  transform: translateX(0.7rem);
}

#content {
  box-sizing: border-box;
  padding-left: 250px;
  position: relative;
  height: calc(100% - 5px);
}

#dashboard {
  box-sizing: border-box;
  padding: 2rem;
}
#dashboard h3 {
  color: #2b7cb6;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}
#dashboard section {
  padding: 0.5rem;
  margin-bottom: 1rem;
}
#dashboard section table {
  box-sizing: border-box;
  width: 100%;
  margin: auto;
}
#dashboard section table thead tr th {
  background-color: #2b7cb6;
  color: #fff;
}
#dashboard section table tbody tr td {
  border: 1px solid #ccc;
  text-align: center;
}
#dashboard section table tbody tr td figure {
  display: flex;
  justify-content: center;
  align-items: center;
}
#dashboard section table tbody tr td figure img {
  width: 1.2rem;
  height: 1.2rem;
  padding: 0.35rem;
  background: #2b7cb6;
  border-radius: 5px;
}
#dashboard section table tbody tr td .not_input {
  color: #f00;
  font-weight: bold;
}
#dashboard .menu {
  max-width: 980px;
}
#dashboard .menu div {
  display: flex;
  flex-flow: row;
  justify-content: space-around;
  align-items: center;
}
#dashboard .menu div .button {
  max-width: 15rem;
  width: 30%;
  font-size: 1.2rem;
  display: inline-flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
#dashboard .menu div .button img {
  margin-right: 1rem;
  flex-shrink: 0;
  width: 2rem;
}
#dashboard section .unregistered {
  box-sizing: border-box;
  background-color: #fff;
  max-width: 980px;
  width: 100%;
  padding: 1rem;
}
#dashboard section .unregistered strong {
  color: #f00;
  font-size: 1.5rem;
}
#dashboard section .history {
  box-sizing: border-box;
  background-color: #fff;
  max-width: 980px;
  width: 100%;
  padding: 1rem;
}

#search {
  box-sizing: border-box;
  padding: 2rem;
}
#search #search_criteria {
  background: #fff;
  padding: 2rem;
  max-width: 1080px;
}
#search #search_criteria .console {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: flex-start;
  box-sizing: border-box;
  height: 40px;
  margin: 0.5rem;
}
#search #search_criteria .console label {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: #2b7cb6;
  color: #fff;
  line-height: 1.5;
  padding: 0.5rem;
  width: 8rem;
  height: 100%;
}
#search #search_criteria .console select {
  box-sizing: border-box;
  height: 100%;
  padding: 0.5rem;
  border: #2b7cb6 1px solid;
}
#search #search_criteria .console input {
  box-sizing: border-box;
  height: 100%;
  padding: 0.5rem;
  border: #2b7cb6 1px solid;
}
#search #search_criteria .console input[type=text] {
  width: 16rem;
}
#search #search_criteria .console input[type=date] {
  width: 8rem;
}
#search #search_criteria .console > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
}
#search #search_criteria .button_row {
  text-align: center;
  margin: 2rem auto 1rem;
}
#search #search_criteria button {
  border: none;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
#search #search_criteria button img {
  width: 20px;
  margin-right: 0.5rem;
}
#search #search_result_list {
  margin-top: 2rem;
  box-sizing: border-box;
}
#search #search_result_list .inner {
  box-sizing: border-box;
  padding: 1rem;
  width: 100%;
  background-color: #fff;
}
#search #search_result_list .inner table {
  box-sizing: border-box;
  width: 100%;
  margin: auto;
}
#search #search_result_list .inner table thead tr th {
  background-color: #2b7cb6;
  color: #fff;
}
#search #search_result_list .inner table tbody tr td {
  border: 1px solid #ccc;
  text-align: center;
}
#search #search_result_list .inner table tbody tr td figure {
  display: flex;
  justify-content: center;
  align-items: center;
}
#search #search_result_list .inner table tbody tr td figure img {
  width: 1.2rem;
  height: 1.2rem;
  padding: 0.35rem;
  background: #2b7cb6;
  border-radius: 5px;
}

#drop_parts {
  width: 100%;
  height: 100%;
  background-color: #333;
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
}

#upload {
  position: relative;
  height: 100%;
  box-sizing: border-box;
}
#upload #upload_file {
  width: 100%;
  height: 100%;
  overflow: scroll;
  box-sizing: border-box;
}
#upload #upload_console {
  position: fixed;
  right: 0;
  width: 250px;
  height: 100%;
  background: #fff;
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.25;
}
#upload #upload_console .console {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: flex-start;
  box-sizing: border-box;
  height: 36px;
  margin: 0.5rem;
}
#upload #upload_console .console label {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: #2b7cb6;
  color: #fff;
  padding: 0.2rem;
  width: 6rem;
  height: 100%;
}
#upload #upload_console .console select {
  box-sizing: border-box;
  height: 100%;
  padding: 0.5rem;
  border: #2b7cb6 1px solid;
}
#upload #upload_console .console input {
  box-sizing: border-box;
  height: 100%;
  padding: 0.5rem;
  border: #2b7cb6 1px solid;
}
#upload #upload_console .console input[type=number] {
  width: 6rem;
}
#upload #upload_console .console input[type=text] {
  width: 6rem;
}
#upload #upload_console .console input[type=date] {
  width: 6rem;
}
#upload #upload_console .console > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
}
#upload #upload_console .button_row {
  text-align: center;
  margin: 2rem auto 1rem;
}
#upload #upload_console button {
  border: none;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
#upload #upload_console button img {
  width: 20px;
  margin-right: 0.5rem;
}

#file_document {
  width: calc(100% - 250px);
  border: none;
  height: 100%;
}/*# sourceMappingURL=style.css.map */