@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@1,500&display=swap');
:root {
  --button-color: #f1f3f4;
  --button-hover: #dee1e6;
  --font-color: #000;
  --base-color: #25bb00;
  --line-color: #d0dbe3;
  --menu: #166f00;
  --menu-icon: rgb(75, 75, 75);
  --menu-hover: #f1f3f4;
  --menu-current: #ace59e;
}
::-webkit-scrollbar {
  width: 5px;
  height: 15px;
}
::-webkit-scrollbar-thumb {
  background-color: rgb(205 205 205);
  border-radius: 6px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px var(--line-color);
  border-radius: 6px;
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
body {
  padding: 3px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  background: var(--line-color);
  color: var(--font-color);
}
ul {
  list-style: none;
}
a, button {
  cursor: pointer;
  text-decoration: none;
  color: var(--font-color);
}
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;
}
/*----------------------------------------------------------------------------------
header:not(#global)
------------------------------------------------------------------------------------*/
body > header:not(#global):not(#global) {
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  width: 100%;
  height: 60px;
  background: #f0f0f0;
  border-radius: 6px;
}
body > header:not(#global) h1 {
  width: 176px;
  height: 60px;
  line-height: 60px;
  font-family: 'Fira Sans', sans-serif;
}
body > header:not(#global) ul {
  display: flex;
  align-items: center;
}
body > header:not(#global) ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  cursor: pointer;
}
body > header:not(#global) ul li:nth-child(n+2) {
  margin-left: 20px;
}
body > header:not(#global) ul li.user i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgb(255 255 255 / 62%);
  border-radius: 15px;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  color: #166f00;
}
body > header:not(#global) ul li.icon i {
  display: block;
  width: 30px;
  height: 30px;
  background: no-repeat center / 100%;
  border-radius: 15px;
  text-indent: -9999px;
  overflow: hidden;
}
body > header:not(#global) ul li.icon.menu i {
  background-image: url(../image/menu.svg);
  background-size: 20px;
}
body > header:not(#global) ul li:hover,
body > header:not(#global) ul li.user:hover i {
  background: var(--menu-hover);
  xbox-shadow: 0 0 7px 0 rgb(190 255 141);
}
/*----------------------------------------------------------------------------------
section
------------------------------------------------------------------------------------*/
body > section {
  display: flex;
  padding: 0;
  width: 100%;
}
body > section nav {
  padding: 20px;
  min-width: 360px;
  margin-top: 3px;
  height: calc(100vh - 69px);
  background: #fff;
  border-radius: 6px;
}
body > section nav > div {
  height: calc(100vh - 103px);
  overflow-y: scroll;
}
body > section main {
  margin: 3px 0 0 3px;
  padding: 20px;
  width: 100%;
  height: calc(100vh - 69px);
  background: #fff;
  border-radius: 6px;
  position: relative;
}
body > section main > div {
  width: 100%;
  height: calc(100vh - 103px);
  overflow-y: scroll;
}
/*----------------------------------------------------------------------------------
section nav
------------------------------------------------------------------------------------*/
body > section nav ul li {
  display: flex;
  align-items: center;
  margin-right: 10px;
  width: calc(100% - 10px);
  height: 44px;
  text-indent: 50px;
  cursor: pointer;
  position: relative;
}
body > section nav ul li::after {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
body > section nav ul li:hover {
  background: var(--menu-hover);
}
body > section nav ul li.current {
  background: var(--menu-current);
  color: var(--menu);
}
body > section nav ul li.current::before {
  display: block;
  content: "";
  width: 5px;
  height: 44px;
  background: var(--base-color);
  position: absolute;
  left: 0;
  top: 0;
}
body > section nav ul li.customer::after {
  background-image: url(../image/customer.svg);
}
body > section nav ul li.customer.current::after {
  background-image: url(../image/customer2.svg);
}
body > section nav ul li.estimate::after {
  background-image: url(../image/estimate.svg);
}
body > section nav ul li.estimate.current::after {
  background-image: url(../image/estimate2.svg);
}
body > section nav ul li.receive::after {
  background-image: url(../image/receive.svg);
}
body > section nav ul li.receive.current::after {
  background-image: url(../image/receive2.svg);
}
body > section nav ul li.invoice::after {
  background-image: url(../image/invoice.svg);
}
body > section nav ul li.invoice.current::after {
  background-image: url(../image/invoice2.svg);
}
body > section nav ul li.schedule::after {
  background-image: url(../image/schedule.svg);
}
body > section nav ul li.schedule.current::after {
  background-image: url(../image/schedule2.svg);
}
/*----------------------------------------------------------------------------------
input
------------------------------------------------------------------------------------*/
div.dialog {
  display: flex;
  width: 600px;
  height: 300px;
  max-height: calc(100vh - 50px);
  flex-direction: column;
  background: var(--line-color);
  border-radius: 6px;
  box-shadow: 0 0 10px 0 #ccc, 0 0 2px 1px #fff;
  position: absolute;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
div.dialog header:not(#global) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  height: 36px;
  background: var(--base-color);
  border-radius: 6px 6px 0 0;
  text-shadow: 1px 1px 1px rgb(116 116 116 / 18%);
  color: #fff;
}
div.dialog header:not(#global) a {
  font-size: 14px;
  color: #fff;
}
div.dialog header:not(#global) a:hover {
  font-size: 15px;
}
div.dialog > div {
  display: flex;
  flex-direction: column;
  padding: 20px;
  height: calc(100% - 36px);
  border: 2px solid var(--line-color);
  border-top: none;
  border-radius: 0 0 6px 6px;
  background: #fff;
}
div.dialog form {
  width: 100%;
  height: calc(100% - 36px);
  padding-right: 20px;
  overflow-y: scroll;
}
div.dialog footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  height: 56px;
}
/*----------------------------------------------------------------------------------
center
------------------------------------------------------------------------------------*/
div.center {
  padding: 50px;
  width: 600px;
  height: auto;
  background: #f0f0f0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
div.center form > div {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
div.center a.button {
  width: 120px;
}
/*----------------------------------------------------------------------------------
input
------------------------------------------------------------------------------------*/
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(--base-color);
  border-radius: 6px;
  background: #fff;
  outline: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}
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: 500;
  position: relative;
}
input[type="radio"] + label:before {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid var(--base-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: var(--menu-current);
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
}
textarea {
  min-height: 94px;
  resize: vertical;
}
.select {
  position: relative;
}
.select:after {
  content: '';
  width: 12px;
  height: 12px;
  background: url(../image/down.svg) no-repeat center / 100%;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
select {
  padding: 5px 30px 5px 10px;
  min-width: 80px;
}
a.button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 36px;
  background: var(--base-color);
  border: 1px solid var(--base-color);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  text-shadow: 1px 1px 1px rgb(116 116 116 / 18%);
  color: #fff;
}
a.button:hover {
  border-color: var(--menu-current);
}
div.pager {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
  padding: 0 20px 0 0;
  color: var(--menu);
}
div.pager > div {
  display: flex;
  align-items: center;
}
div.pager > div *:nth-child(n+2) {
  margin-left: 10px;
}
div.pager a.prev,
div.pager a.next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--base-color);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  border: 1px solid var(--base-color);
  border-radius: 6px;
  color: #fff;
  text-indent: -9999px;
  overflow: none;
}
div.pager a.prev {
  background-image: url(../image/prev.svg);
}
div.pager a.next {
  background-image: url(../image/next.svg);
}
div.pager a.prev:hover,
div.pager a.next:hove {
  border-color: var(--menu-current);
}
div.pager a.off {
  background-color: var(--line-color);
  border-color: #fff;
}
div.pager a.off:hover {
  background-color: var(--line-color);
  border-color: #fff;
}
div.table {
  margin: 10px 0;
  padding: 0 20px 0 0;
  max-height: calc(100vh - 140px);
  border-radius: 3px;
  overflow-x: hidden;
  position: relative;
}
div.table p.info {
  background: var(--menu-current);
  padding: 10px;
  font-size: 13px;
  color: var(--menu);
}
table {
  border-collapse: separate;
  border-spacing: 0px 2px;
  width: 100%;
}
table thead tr td {
  background: var(--base-color);
  border: 1px solid #24b500;
  border-left: none;
  padding: 5px 10px;
  color: #fff;
  font-weight: 400;
  font-size: 13px;
  text-shadow: 1px 1px 1px rgb(116 116 116 / 18%);
  text-align: center;
  position: relative;
  top: 0;
}
table thead tr td:first-child {
  border-left: 1px solid #24b500;
  border-radius: 6px 0 0 0;
}
table thead tr td:last-child {
  border-radius: 0 6px 0 0;
}
table tbody tr td {
  background: #f5f5f5;
  border: 1px solid rgb(227 227 227);
  border-left: none;
  padding: 7px 5px;
  position: relative;
}
table tbody tr td:first-child {
  border-left: 1px solid rgb(227 227 227);
}
table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 6px;
}
table tbody tr:last-child td:last-child {
  border-radius: 0 0 6px 0;
}
table tbody tr.current td,
table tbody tr:hover td {
  background: var(--menu-current);
}
form ul li {
  display: flex;
  align-items: center;
}
form ul li:nth-child(n+2) {
  margin-top: 20px;
}
form ul li > label {
  min-width: 120px;
  font-weight: 500;
  color: var(--menu);
}
form ul li > div {
  display: flex;
  width: 100%;
}
form ul li > div > *:nth-child(n+2) {
  margin-left: 10px;
}
form ul li > div.post input {
  width: 100px;
}
form ul li > div.addr {
  flex-direction: column;
}
form ul li > div.addr > *:nth-child(n+2) {
  margin: 5px 0 0 0;
}