@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600&display=swap");
:root {
  --breakpoint-sp-min: 320px;
  --breakpoint-sp-max: 608px;
  --breakpoint-tab-max: 1024px;
  --default-font-color: #222222;
  --default-border-color: #8e8e8e;
  --a-color: #4f81bd;
  --a-hover-color: #ffffff;
  --a-hover-back-color: #4f81bd;
  --header-back-color: var(--main-key-color);
  --header-font-color: #ffffff;
  --body-back-color: #efefef;
  --btn-default-back-color: #dddddd;
  --btn-default-font-color: #000000;
  --btn-apply-back-color: #517ea9;
  --btn-apply-font-color: white;
  --btn-cancel-back-color: #c46262;
  --btn-cancel-font-color: white;
  --error-font-color: #e84d4d;
  --blue-font-color: #0000ff;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../font/NotoSansJP-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 600;
  src: url("../font/NotoSansJP-Bold.woff2") format("woff2");
}
/* 共通部分 */
html {
  font-size: 100%;
  color: var(--default-font-color);
}

html.middle-font-size {
  font-size: 125%;
}

html.large-font-size {
  font-size: 150%;
}

.replace-date-select {
  color: red;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 3rem;
  border-bottom: 1px solid var(--main-key-color);
  background-color: var(--main-key-color);
  padding: 0 0.5rem;
}

header h1 {
  color: white;
}

.body-container header {
  height: 1.5rem;
  padding: 0 0.25rem;
}
.body-container header h1 {
  font-size: calc(1em - 0.2rem);
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  height: 100%;
  background-color: var(--body-back-color);
}

.body-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100dvh;
}

main {
  flex: 1 1 auto;
  padding: 2rem;
}

h1 {
  font-size: 1.8rem;
  font-weight: 600;
}

h2 {
  font-size: 1.6rem;
  font-weight: 600;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

a {
  color: var(--a-color);
  text-decoration: none;
}

a:hover,
a:focus {
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

li > a:hover,
li > a:focus {
  background-color: var(--a-hover-back-color);
  color: white;
}

button {
  padding: 0;
  background-color: var(--btn-default-back-color);
  color: var(--btn-default-font-color);
  font-weight: 600;
  cursor: pointer;
  border: 0;
  font-family: inherit;
}
button:hover, button:focus {
  opacity: 0.8;
}
button a {
  background-color: inherit;
  color: inherit;
}
button a:hover {
  background-color: inherit;
  color: inherit;
  text-decoration: none;
}
button i {
  margin-right: 0.25rem;
}

input {
  font-size: 1em;
  padding: 0.25rem;
  font-family: inherit;
  box-sizing: border-box;
  border-radius: 0;
  border: 1px solid var(--default-border-color);
  box-sizing: border-box;
  color: var(--default-font-color);
}

input[type=date] {
  width: 10rem;
}

input[type=date][disabled] {
  color: transparent;
}

input[type=date][disabled]::-webkit-calendar-picker-indicator {
  display: none;
}

input[type=date]:not([disabled]) {
  background-color: white;
}

input[type=time] {
  width: 7.5rem;
}

input[type=time][disabled][value=""] {
  color: transparent;
}

input[type=file] {
  padding: 0.25rem 0;
  border: 0;
  cursor: pointer;
}

input.disabled-placeholder:not([disabled])::-moz-placeholder {
  color: transparent;
}

input.disabled-placeholder:not([disabled])::placeholder {
  color: transparent;
}

select {
  height: 100%;
  font-size: 1em;
  padding: 0 0.25rem;
  cursor: pointer;
  font-family: inherit;
  box-sizing: border-box;
  background-color: white;
  border-radius: 0;
  color: var(--default-font-color);
}

textarea {
  padding: 0.5rem;
  font-family: inherit;
  box-sizing: border-box;
  color: var(--default-font-color);
}

label {
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  gap: 0.5rem;
  cursor: pointer;
}
label input[type=radio] {
  transform: translateY(0.1rem);
  cursor: pointer;
  margin: 0;
}
label input[type=checkbox] {
  cursor: pointer;
  margin: 0;
}

ul {
  list-style: none;
}

button[disabled] {
  background-color: #cccccc;
}

select[disabled] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

[disabled] {
  background-color: #cccccc;
  cursor: auto;
  pointer-events: none;
}

table {
  border-collapse: separate;
  height: 1px;
}

table thead tr:first-of-type th,
table thead tr:first-of-type td {
  border-top: 1px solid var(--default-border-color);
}

table tr {
  height: 2.25rem;
}

tr > th:first-child,
tr > td:first-child {
  border-left: 1px solid var(--default-border-color);
}

tr > th:first-child + td {
  border-left: none;
}

tr > td:first-child + th {
  border-left: none;
}

table th {
  vertical-align: middle;
  background-color: var(--table-header-back-color);
  position: relative;
  border-right: 1px solid var(--default-border-color);
  border-bottom: 1px solid var(--default-border-color);
}

table th.hidden-cell {
  visibility: hidden;
  border: 0;
}

table td {
  height: 1px;
  vertical-align: middle;
  border-right: 1px solid var(--default-border-color);
  border-bottom: 1px solid var(--default-border-color);
}

table td.hidden-cell {
  border: 0;
  visibility: hidden;
}

table label {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

table input {
  width: 100%;
  height: 100%;
  padding: 0 0.5rem;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

table input[type=checkbox] {
  width: 1.2rem;
  height: 1.2rem;
  cursor: pointer;
}

table select {
  width: 100%;
  height: 100%;
  border: 0;
}

table button {
  width: 100%;
  height: 100%;
  border: 0;
}

table tfoot td {
  border-top: 0;
}

dl dt,
dl dd {
  display: flex;
  align-items: center;
}

p {
  line-height: 1.25;
}

[data-error] {
  color: var(--error-font-color);
  font-weight: 600;
  margin: 0.5rem 0;
}

footer {
  height: 2rem;
}

.disp-none {
  display: none !important;
}

.page-vertical-split {
  flex: 1 1 auto;
}

.date-text {
  width: 5.75rem;
  background-color: white;
  padding: 0.25rem;
}

.flex-column-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.flex-row {
  display: flex;
}

.flex-row > div {
  min-height: 1.5rem;
  padding: 0.25rem;
}

.flex-row-title {
  color: var(--blue-font-color);
}

.flex-auto {
  margin: auto;
}

.flex-spacing-container {
  flex: 1 1 auto;
}

.delivery-date-container {
  gap: 0.25rem;
}

div.staff-nm {
  background-color: white;
}

.add-container-btn {
  width: 4.5rem;
  margin-left: auto;
  color: var(--blue-font-color);
  font-weight: 400;
  border: 1px solid gray;
  border-top: 0;
  font-size: calc(1em - 4px);
}

div.delivery-route {
  height: 0.8rem;
  padding: 0;
  font-size: calc(1em - 0.2rem);
  min-height: initial;
}

div.installer-cd {
  height: 0.8rem;
  padding: 0;
  margin-left: auto;
  font-size: calc(1em - 0.2rem);
  min-height: initial;
}

.delivery-area-container {
  gap: 0.25rem;
}

.delivery-area-nm {
  flex: 1 1 auto;
  background-color: white;
  color: var(--blue-font-color);
}

.exchange-method {
  width: 4.5rem;
  background-color: white;
}

.order-capacity {
  width: 2.25rem;
  background-color: white;
  color: var(--blue-font-color);
}

.full-exchange-order {
  width: 1.5rem;
  background-color: white;
  color: #ff0000;
}

.installer-address {
  flex: 1 1 auto;
  background-color: white;
}

div.installer-nm {
  min-height: 2rem;
  font-size: calc(1em + 0.6rem);
  flex: 1 1 auto;
  background-color: white;
  color: var(--blue-font-color);
}

.phone-no {
  font-size: calc(1em - 0.1rem);
}

.current-staff {
  display: flex;
  align-items: center;
  font-size: calc(1em - 0.2rem);
  margin-left: auto;
  background-color: white;
}

.slip-no-row {
  height: 2rem;
}

.slip-no {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1 1 auto;
  height: 100%;
  align-self: center;
  background-color: white;
}

.slip-no-btn {
  width: 2rem;
  font-size: 1em;
  border: 1px solid gray;
  border-bottom: 0;
}

.slip-no-ipt {
  width: 2.5rem;
  background-color: white;
  border-left: 0;
  border-bottom: 0;
  border-right: 0;
}

.page-footer-container {
  display: flex;
  flex-direction: column;
  border-top: 2px solid gray;
  border-bottom: 2px solid gray;
}
.page-footer-container div {
  display: flex;
}
.page-footer-container > div:not(:first-of-type) {
  border-top: 2px solid gray;
}
.page-footer-container div > button:not(:first-of-type) {
  border-left: 2px solid gray;
}
.page-footer-container button {
  flex: 1 1 0;
  height: 3.5rem;
  white-space: nowrap;
  font-size: calc(1em + 0.4rem);
}

.date-text-picker {
  min-width: 10rem;
  height: 100%;
  position: relative;
}
.date-text-picker input[type=date] {
  width: 2.5rem;
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
}
.date-text-picker input::-webkit-datetime-edit {
  display: none;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.ipt-count {
  text-align: right;
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
}

.require {
  position: relative;
}
.require::after {
  content: "*";
  color: red;
  position: absolute;
  top: 0;
  right: -1rem;
}

.layer {
  display: none;
  position: absolute;
  background-color: #fff;
  margin: 0;
  padding: 1em;
  border-radius: 0.5rem;
  box-shadow: 2px 4px 8px 2px rgba(80, 80, 80, 0.4);
  border: 0;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  overflow: hidden;
  z-index: 11000;
}
.layer.open {
  display: flex;
  flex-direction: column;
  opacity: 1;
  pointer-events: inherit;
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 10000;
}
.overlay.open {
  display: block;
}

.footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: gray;
  color: white;
}

.center-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: var(--breakpoint-sp-max);
  margin: 0 auto;
}
.center-container h2 {
  display: block;
  margin-bottom: 2rem;
}

.form-container dl {
  margin-bottom: 3rem;
}
.form-container dl > div:not(:last-of-type) {
  margin-bottom: 1rem;
}
.form-container dt {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  margin-bottom: 1rem;
  font-weight: 600;
}
.form-container dd {
  border-radius: 5px;
  border-color: var(--default-border-color);
  white-space: nowrap;
}
.form-container dd input {
  width: 100%;
  height: inherit;
  font-size: 1.75rem;
  padding: 0.75rem 0.5rem;
  border: 1px solid var(--default-border-color);
  border-radius: 5px;
}
.form-container dd input[type=checkbox] {
  width: initial;
}

.message-container {
  text-align: center;
  margin-top: 2em;
}
.message-container h2 {
  display: inline-block;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.message-container a {
  padding: 0.25rem 0.5rem;
}

.flex {
  display: flex;
}

.flex-auto {
  flex: 1 1 auto;
}

.inline-flex {
  display: inline-flex;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.gap-0 {
  gap: 0rem;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-7 {
  gap: 1.75rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-9 {
  gap: 2.25rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-11 {
  gap: 2.75rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-13 {
  gap: 3.25rem;
}

.gap-14 {
  gap: 3.5rem;
}

.gap-15 {
  gap: 3.75rem;
}

.gap-16 {
  gap: 4rem;
}

.w-0 {
  width: 0rem;
}

.w-1 {
  width: 0.25rem;
}

.w-2 {
  width: 0.5rem;
}

.w-3 {
  width: 0.75rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-7 {
  width: 1.75rem;
}

.w-8 {
  width: 2rem;
}

.w-9 {
  width: 2.25rem;
}

.w-10 {
  width: 2.5rem;
}

.w-11 {
  width: 2.75rem;
}

.w-12 {
  width: 3rem;
}

.w-13 {
  width: 3.25rem;
}

.w-14 {
  width: 3.5rem;
}

.w-15 {
  width: 3.75rem;
}

.w-16 {
  width: 4rem;
}

.w-17 {
  width: 4.25rem;
}

.w-18 {
  width: 4.5rem;
}

.w-19 {
  width: 4.75rem;
}

.w-20 {
  width: 5rem;
}

.w-21 {
  width: 5.25rem;
}

.w-22 {
  width: 5.5rem;
}

.w-23 {
  width: 5.75rem;
}

.w-24 {
  width: 6rem;
}

.w-25 {
  width: 6.25rem;
}

.w-26 {
  width: 6.5rem;
}

.w-27 {
  width: 6.75rem;
}

.w-28 {
  width: 7rem;
}

.w-29 {
  width: 7.25rem;
}

.w-30 {
  width: 7.5rem;
}

.w-31 {
  width: 7.75rem;
}

.w-32 {
  width: 8rem;
}

.w-33 {
  width: 8.25rem;
}

.w-34 {
  width: 8.5rem;
}

.w-35 {
  width: 8.75rem;
}

.w-36 {
  width: 9rem;
}

.w-37 {
  width: 9.25rem;
}

.w-38 {
  width: 9.5rem;
}

.w-39 {
  width: 9.75rem;
}

.w-40 {
  width: 10rem;
}

.w-41 {
  width: 10.25rem;
}

.w-42 {
  width: 10.5rem;
}

.w-43 {
  width: 10.75rem;
}

.w-44 {
  width: 11rem;
}

.w-45 {
  width: 11.25rem;
}

.w-46 {
  width: 11.5rem;
}

.w-47 {
  width: 11.75rem;
}

.w-48 {
  width: 12rem;
}

.w-49 {
  width: 12.25rem;
}

.w-50 {
  width: 12.5rem;
}

.w-51 {
  width: 12.75rem;
}

.w-52 {
  width: 13rem;
}

.w-53 {
  width: 13.25rem;
}

.w-54 {
  width: 13.5rem;
}

.w-55 {
  width: 13.75rem;
}

.w-56 {
  width: 14rem;
}

.w-57 {
  width: 14.25rem;
}

.w-58 {
  width: 14.5rem;
}

.w-59 {
  width: 14.75rem;
}

.w-60 {
  width: 15rem;
}

.w-61 {
  width: 15.25rem;
}

.w-62 {
  width: 15.5rem;
}

.w-63 {
  width: 15.75rem;
}

.w-64 {
  width: 16rem;
}

.w-65 {
  width: 16.25rem;
}

.w-66 {
  width: 16.5rem;
}

.w-67 {
  width: 16.75rem;
}

.w-68 {
  width: 17rem;
}

.w-69 {
  width: 17.25rem;
}

.w-70 {
  width: 17.5rem;
}

.w-71 {
  width: 17.75rem;
}

.w-72 {
  width: 18rem;
}

.w-73 {
  width: 18.25rem;
}

.w-74 {
  width: 18.5rem;
}

.w-75 {
  width: 18.75rem;
}

.w-76 {
  width: 19rem;
}

.w-77 {
  width: 19.25rem;
}

.w-78 {
  width: 19.5rem;
}

.w-79 {
  width: 19.75rem;
}

.w-80 {
  width: 20rem;
}

.w-81 {
  width: 20.25rem;
}

.w-82 {
  width: 20.5rem;
}

.w-83 {
  width: 20.75rem;
}

.w-84 {
  width: 21rem;
}

.w-85 {
  width: 21.25rem;
}

.w-86 {
  width: 21.5rem;
}

.w-87 {
  width: 21.75rem;
}

.w-88 {
  width: 22rem;
}

.w-89 {
  width: 22.25rem;
}

.w-90 {
  width: 22.5rem;
}

.w-91 {
  width: 22.75rem;
}

.w-92 {
  width: 23rem;
}

.w-93 {
  width: 23.25rem;
}

.w-94 {
  width: 23.5rem;
}

.w-95 {
  width: 23.75rem;
}

.w-96 {
  width: 24rem;
}

.w-97 {
  width: 24.25rem;
}

.w-98 {
  width: 24.5rem;
}

.w-99 {
  width: 24.75rem;
}

.w-100 {
  width: 25rem;
}

.w-full {
  width: 100%;
}

.h-0 {
  height: 0rem;
}

.h-1 {
  height: 0.25rem;
}

.h-2 {
  height: 0.5rem;
}

.h-3 {
  height: 0.75rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-7 {
  height: 1.75rem;
}

.h-8 {
  height: 2rem;
}

.h-9 {
  height: 2.25rem;
}

.h-10 {
  height: 2.5rem;
}

.h-11 {
  height: 2.75rem;
}

.h-12 {
  height: 3rem;
}

.h-13 {
  height: 3.25rem;
}

.h-14 {
  height: 3.5rem;
}

.h-15 {
  height: 3.75rem;
}

.h-16 {
  height: 4rem;
}

.h-17 {
  height: 4.25rem;
}

.h-18 {
  height: 4.5rem;
}

.h-19 {
  height: 4.75rem;
}

.h-20 {
  height: 5rem;
}

.h-21 {
  height: 5.25rem;
}

.h-22 {
  height: 5.5rem;
}

.h-23 {
  height: 5.75rem;
}

.h-24 {
  height: 6rem;
}

.h-25 {
  height: 6.25rem;
}

.h-26 {
  height: 6.5rem;
}

.h-27 {
  height: 6.75rem;
}

.h-28 {
  height: 7rem;
}

.h-29 {
  height: 7.25rem;
}

.h-30 {
  height: 7.5rem;
}

.h-31 {
  height: 7.75rem;
}

.h-32 {
  height: 8rem;
}

.h-33 {
  height: 8.25rem;
}

.h-34 {
  height: 8.5rem;
}

.h-35 {
  height: 8.75rem;
}

.h-36 {
  height: 9rem;
}

.h-37 {
  height: 9.25rem;
}

.h-38 {
  height: 9.5rem;
}

.h-39 {
  height: 9.75rem;
}

.h-40 {
  height: 10rem;
}

.h-41 {
  height: 10.25rem;
}

.h-42 {
  height: 10.5rem;
}

.h-43 {
  height: 10.75rem;
}

.h-44 {
  height: 11rem;
}

.h-45 {
  height: 11.25rem;
}

.h-46 {
  height: 11.5rem;
}

.h-47 {
  height: 11.75rem;
}

.h-48 {
  height: 12rem;
}

.h-49 {
  height: 12.25rem;
}

.h-50 {
  height: 12.5rem;
}

.h-51 {
  height: 12.75rem;
}

.h-52 {
  height: 13rem;
}

.h-53 {
  height: 13.25rem;
}

.h-54 {
  height: 13.5rem;
}

.h-55 {
  height: 13.75rem;
}

.h-56 {
  height: 14rem;
}

.h-57 {
  height: 14.25rem;
}

.h-58 {
  height: 14.5rem;
}

.h-59 {
  height: 14.75rem;
}

.h-60 {
  height: 15rem;
}

.h-61 {
  height: 15.25rem;
}

.h-62 {
  height: 15.5rem;
}

.h-63 {
  height: 15.75rem;
}

.h-64 {
  height: 16rem;
}

.h-65 {
  height: 16.25rem;
}

.h-66 {
  height: 16.5rem;
}

.h-67 {
  height: 16.75rem;
}

.h-68 {
  height: 17rem;
}

.h-69 {
  height: 17.25rem;
}

.h-70 {
  height: 17.5rem;
}

.h-71 {
  height: 17.75rem;
}

.h-72 {
  height: 18rem;
}

.h-73 {
  height: 18.25rem;
}

.h-74 {
  height: 18.5rem;
}

.h-75 {
  height: 18.75rem;
}

.h-76 {
  height: 19rem;
}

.h-77 {
  height: 19.25rem;
}

.h-78 {
  height: 19.5rem;
}

.h-79 {
  height: 19.75rem;
}

.h-80 {
  height: 20rem;
}

.h-81 {
  height: 20.25rem;
}

.h-82 {
  height: 20.5rem;
}

.h-83 {
  height: 20.75rem;
}

.h-84 {
  height: 21rem;
}

.h-85 {
  height: 21.25rem;
}

.h-86 {
  height: 21.5rem;
}

.h-87 {
  height: 21.75rem;
}

.h-88 {
  height: 22rem;
}

.h-89 {
  height: 22.25rem;
}

.h-90 {
  height: 22.5rem;
}

.h-91 {
  height: 22.75rem;
}

.h-92 {
  height: 23rem;
}

.h-93 {
  height: 23.25rem;
}

.h-94 {
  height: 23.5rem;
}

.h-95 {
  height: 23.75rem;
}

.h-96 {
  height: 24rem;
}

.h-97 {
  height: 24.25rem;
}

.h-98 {
  height: 24.5rem;
}

.h-99 {
  height: 24.75rem;
}

.h-100 {
  height: 25rem;
}

.h-full {
  height: 100%;
}

.p-0 {
  padding: 0rem;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-7 {
  padding: 1.75rem;
}

.p-8 {
  padding: 2rem;
}

.p-9 {
  padding: 2.25rem;
}

.p-10 {
  padding: 2.5rem;
}

.p-11 {
  padding: 2.75rem;
}

.p-12 {
  padding: 3rem;
}

.p-13 {
  padding: 3.25rem;
}

.p-14 {
  padding: 3.5rem;
}

.p-15 {
  padding: 3.75rem;
}

.p-16 {
  padding: 4rem;
}

.pt-0 {
  padding-top: 0rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pt-7 {
  padding-top: 1.75rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-9 {
  padding-top: 2.25rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pt-11 {
  padding-top: 2.75rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pt-13 {
  padding-top: 3.25rem;
}

.pt-14 {
  padding-top: 3.5rem;
}

.pt-15 {
  padding-top: 3.75rem;
}

.pt-16 {
  padding-top: 4rem;
}

.pl-0 {
  padding-left: 0rem;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.pl-7 {
  padding-left: 1.75rem;
}

.pl-8 {
  padding-left: 2rem;
}

.pl-9 {
  padding-left: 2.25rem;
}

.pl-10 {
  padding-left: 2.5rem;
}

.pl-11 {
  padding-left: 2.75rem;
}

.pl-12 {
  padding-left: 3rem;
}

.pl-13 {
  padding-left: 3.25rem;
}

.pl-14 {
  padding-left: 3.5rem;
}

.pl-15 {
  padding-left: 3.75rem;
}

.pl-16 {
  padding-left: 4rem;
}

.pr-0 {
  padding-right: 0rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pr-5 {
  padding-right: 1.25rem;
}

.pr-6 {
  padding-right: 1.5rem;
}

.pr-7 {
  padding-right: 1.75rem;
}

.pr-8 {
  padding-right: 2rem;
}

.pr-9 {
  padding-right: 2.25rem;
}

.pr-10 {
  padding-right: 2.5rem;
}

.pr-11 {
  padding-right: 2.75rem;
}

.pr-12 {
  padding-right: 3rem;
}

.pr-13 {
  padding-right: 3.25rem;
}

.pr-14 {
  padding-right: 3.5rem;
}

.pr-15 {
  padding-right: 3.75rem;
}

.pr-16 {
  padding-right: 4rem;
}

.pb-0 {
  padding-bottom: 0rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-7 {
  padding-bottom: 1.75rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pb-9 {
  padding-bottom: 2.25rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pb-11 {
  padding-bottom: 2.75rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pb-13 {
  padding-bottom: 3.25rem;
}

.pb-14 {
  padding-bottom: 3.5rem;
}

.pb-15 {
  padding-bottom: 3.75rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.m-0 {
  margin: 0rem;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 0.75rem;
}

.m-4 {
  margin: 1rem;
}

.m-5 {
  margin: 1.25rem;
}

.m-6 {
  margin: 1.5rem;
}

.m-7 {
  margin: 1.75rem;
}

.m-8 {
  margin: 2rem;
}

.m-9 {
  margin: 2.25rem;
}

.m-10 {
  margin: 2.5rem;
}

.m-11 {
  margin: 2.75rem;
}

.m-12 {
  margin: 3rem;
}

.m-13 {
  margin: 3.25rem;
}

.m-14 {
  margin: 3.5rem;
}

.m-15 {
  margin: 3.75rem;
}

.m-16 {
  margin: 4rem;
}

.mt-0 {
  margin-top: 0rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-7 {
  margin-top: 1.75rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-9 {
  margin-top: 2.25rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-11 {
  margin-top: 2.75rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-13 {
  margin-top: 3.25rem;
}

.mt-14 {
  margin-top: 3.5rem;
}

.mt-15 {
  margin-top: 3.75rem;
}

.mt-16 {
  margin-top: 4rem;
}

.ml-0 {
  margin-left: 0rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.ml-4 {
  margin-left: 1rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.ml-7 {
  margin-left: 1.75rem;
}

.ml-8 {
  margin-left: 2rem;
}

.ml-9 {
  margin-left: 2.25rem;
}

.ml-10 {
  margin-left: 2.5rem;
}

.ml-11 {
  margin-left: 2.75rem;
}

.ml-12 {
  margin-left: 3rem;
}

.ml-13 {
  margin-left: 3.25rem;
}

.ml-14 {
  margin-left: 3.5rem;
}

.ml-15 {
  margin-left: 3.75rem;
}

.ml-16 {
  margin-left: 4rem;
}

.mr-0 {
  margin-right: 0rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mr-5 {
  margin-right: 1.25rem;
}

.mr-6 {
  margin-right: 1.5rem;
}

.mr-7 {
  margin-right: 1.75rem;
}

.mr-8 {
  margin-right: 2rem;
}

.mr-9 {
  margin-right: 2.25rem;
}

.mr-10 {
  margin-right: 2.5rem;
}

.mr-11 {
  margin-right: 2.75rem;
}

.mr-12 {
  margin-right: 3rem;
}

.mr-13 {
  margin-right: 3.25rem;
}

.mr-14 {
  margin-right: 3.5rem;
}

.mr-15 {
  margin-right: 3.75rem;
}

.mr-16 {
  margin-right: 4rem;
}

.mb-0 {
  margin-bottom: 0rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-7 {
  margin-bottom: 1.75rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-9 {
  margin-bottom: 2.25rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-11 {
  margin-bottom: 2.75rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-13 {
  margin-bottom: 3.25rem;
}

.mb-14 {
  margin-bottom: 3.5rem;
}

.mb-15 {
  margin-bottom: 3.75rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  margin: 0;
  padding: 1em;
  border-radius: 0.5rem;
  box-shadow: 2px 4px 8px 2px rgba(80, 80, 80, 0.4);
  border: 0;
  outline: 0 !important;
}

dialog form {
  text-align: right;
}

dialog p {
  text-align: left;
  line-height: 1.5;
}

dialog button {
  flex: 1 1 auto;
  padding: 1em 2em;
  text-align: center;
  box-shadow: 0 1px 2px 0 rgba(80, 80, 80, 0.2);
}

.normal-dialog {
  z-index: 14000;
}

.check-dialog {
  z-index: 15000;
}

.confirm-dialog {
  z-index: 16000;
}

.confirm-dialog input {
  margin-top: 1em;
  width: 100%;
}

.confirm-dialog button {
  width: 50%;
}

.loading-dialog {
  text-align: center;
  z-index: 17000;
}

.loading-dialog p {
  color: #828b90;
  text-align: center;
  animation: loading-text-blink 1s ease-in-out infinite alternate;
}

.dialog-btn-container {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1em;
}

.dialog-apply-btn {
  background-color: var(--btn-apply-back-color);
  color: var(--btn-apply-font-color);
  padding-left: 0;
  padding-right: 0;
}

.dialog-cancel-btn {
  background-color: transparent;
  color: gray;
  padding-left: 0;
  padding-right: 0;
  border: 2px solid gray;
}

@keyframes loading-text-blink {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.search-layer {
  position: fixed;
  inset: 0;
  border-radius: 0;
  padding: 0;
}

.search-layer-header-container {
  display: flex;
  padding: 0.25rem;
  background-color: var(--main-key-color);
  color: #fff;
  gap: 1rem;
  font-size: calc(1em + 0.4rem);
}

.search-layer-close-btn {
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-layer-title {
  display: flex;
  align-items: center;
}

.search-layer-body-container {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 0.5rem;
  background-color: #eee;
}

.search-layer-condition-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  background-color: #fff;
}
.search-layer-condition-list > div {
  display: flex;
  flex-direction: column;
}
.search-layer-condition-list dt {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.search-layer-condition-list dd input {
  width: 100%;
}

.search-layer-reuslt-container {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 0.5rem;
  background: #fff;
}

.search-layer-result-title {
  font-weight: 600;
  font-size: calc(1em - 0.2rem);
  margin-bottom: 0.5rem;
}

.search-layer-result-list-container {
  flex: 1 1 auto;
  overflow-x: hidden;
  overflow-y: scroll;
  height: 1px;
  border: 1px solid gray;
}
.search-layer-result-list-container ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.search-layer-result-list-container li {
  display: flex;
  align-items: center;
  height: 2.5rem;
  padding: 0.25rem;
  border-bottom: 1px solid gray;
}
.search-layer-result-list-container .search-layer-result-list-item-text-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: calc(100% - 2.5rem);
  overflow: hidden;
}
.search-layer-result-list-container .search-layer-result-list-item-text-container div:last-of-type {
  font-size: calc(1em - 0.2rem);
  white-space: nowrap;
}
.search-layer-result-list-container .search-layer-result-list-item-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 100%;
  color: var(--main-key-color);
}

.login-page .login-page-header {
  height: 3rem;
  border-bottom: 0;
  box-shadow: 0.5rem 0.25rem rgba(0, 0, 0, 0.075);
}
.login-page .login-page-header h1 {
  font-size: calc(1em + 0.4rem);
  letter-spacing: 1em;
  text-indent: 1em;
  margin: auto;
}

.login-btn, .register-btn {
  background-color: var(--main-key-color);
  color: white;
  font-size: 1.8rem;
  margin-bottom: 3rem;
  border-radius: 5px;
  height: 5rem;
}

.login-forget-text {
  margin-bottom: 1rem;
}

.register-btn {
  border: 0;
}
.register-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: white;
  color: var(--main-key-color);
  border: 1px solid var(--main-key-color);
  border-radius: 5px;
}

.login-page-version {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.logout-page {
  background-color: var(--body-back-color);
}

.logout-auto-login-off-container {
  width: 48rem;
  margin: auto;
  margin-top: 4rem;
}

.logout-auto-login-off-message {
  margin: 2rem;
  font-weight: 600;
  line-height: 1.4;
  font-size: 1.4rem;
}

.logout-auto-login-off-btn {
  margin-bottom: 2rem;
  font-size: 1.4rem;
  padding: 1rem;
  background-color: var(--main-key-color);
  color: white;
}

.logout-auto-login-off-btn:hover {
  opacity: 0.8;
}

.main-page {
  background-color: #f8dfdf;
}
.main-page .search-installer-btn {
  margin-left: auto;
  padding: 0 0.25rem;
  border-left: 1px solid gray;
  border-bottom: 1px solid gray;
  cursor: pointer;
}
.main-page .installer-list-container {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  background-color: #ffe94e;
  border-top: 1px solid gray;
  height: 1px;
  overflow-y: scroll;
}
.main-page .installer-list-container::-webkit-scrollbar {
  width: 0.5rem;
}
.main-page .installer-list-container::-webkit-scrollbar-track {
  background-color: #eee;
  border-left: 1px solid gray;
  border-right: 1px solid gray;
}
.main-page .installer-list-container::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-left: 1px solid gray;
  border-right: 1px solid gray;
}
.main-page .installer-list-container li {
  display: flex;
  align-items: center;
  height: 2.5rem;
  outline: 1px solid #888;
  font-weight: 600;
  padding: 0 0.25rem;
  cursor: pointer;
}
.main-page .installer-list-container li span:nth-of-type(1) {
  width: 1.75rem;
  text-align: right;
}
.main-page .installer-list-container li span:nth-of-type(2) {
  width: 2.5rem;
}
.main-page .installer-list-container li span:nth-of-type(3) {
  width: 2.5rem;
  text-align: right;
}
.main-page .installer-list-container li span:nth-of-type(4) {
  width: 1rem;
}
.main-page .installer-list-container li span:nth-of-type(5) {
  width: 1px;
  flex: 1 1 auto;
  font-size: calc(1em - 0.1rem);
  white-space: nowrap;
}
.main-page .installer-list-container li.select {
  background-color: #0909bc;
  color: white;
}

.delivery-page {
  background-color: #cbf3f8;
}
.delivery-page .delivery-mater-container {
  display: flex;
  margin-top: 0.25rem;
}
.delivery-page .delivery-mater-detail-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.delivery-page .delivery-mater-detail-row {
  display: flex;
  gap: 0.25rem;
  height: 1.5rem;
}
.delivery-page .delivery-mater-detail-row-current-reading {
  height: 3rem;
}
.delivery-page .delivery-mater-detail-row > div {
  background-color: white;
}
.delivery-page .delivery-mater-detail-row-title {
  width: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.delivery-page .delivery-mater-detail-row-date {
  width: 4.5rem;
  display: flex;
  align-items: center;
  padding: 0.25rem;
}
.delivery-page div.delivery-mater-detail-row-calc {
  background-color: transparent;
}
.delivery-page .delivery-mater-detail-row-order {
  width: 5.25rem;
  border: 0;
  padding: 0.25rem;
  text-align: right;
}
.delivery-page input[name=current_reading]:focus {
  background-color: #ffff00;
}
.delivery-page .delivery-mater-button-container {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 0.25rem;
  margin: 0 0.25rem;
}
.delivery-page .delivery-mater-button-container button {
  font-size: calc(1em + 0.05rem);
  height: 2.5rem;
  border: 1px solid gray;
  font-weight: 400;
  color: var(--blue-font-color);
}
.delivery-page .delivery-youki-container {
  display: flex;
  flex: 1 1 auto;
  gap: 0.25rem;
  margin: 0.25rem 0;
}
.delivery-page .delivery-youki-edit-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.delivery-page .delivery-youki-edit-alphabet-button-container {
  display: flex;
  gap: 0.25rem;
  margin-left: 1.75rem;
}
.delivery-page .delivery-youki-edit-alphabet-button-container button {
  flex: 1 1 auto;
  padding: 0.25rem 0;
}
.delivery-page .delivery-youki-edit-default-button-container {
  display: flex;
  gap: 0.25rem;
  margin-left: 1.5rem;
  margin-right: 0.75rem;
}
.delivery-page .delivery-youki-edit-default-button-container button {
  flex: 1 1 auto;
  padding: 0.25rem 0;
  border: 1px solid gray;
  font-weight: 400;
  color: var(--blue-font-color);
  font-size: calc(1em - 2px);
}
.delivery-page .delivery-youki-edit-list-container {
  display: flex;
  flex: 1 1 auto;
  gap: 0.25rem;
  overflow-y: scroll;
  height: 1px;
  padding: 2px 0.25rem 2px 0;
}
.delivery-page .delivery-youki-edit-list-container::-webkit-scrollbar {
  width: 0.5rem;
}
.delivery-page .delivery-youki-edit-list-container::-webkit-scrollbar-track {
  background-color: #eee;
}
.delivery-page .delivery-youki-edit-list-container::-webkit-scrollbar-thumb {
  background-color: #bbb;
}
.delivery-page .delivery-youki-edit-no-list,
.delivery-page .delivery-youki-edit-installer-list,
.delivery-page .delivery-youki-edit-pickup-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.delivery-page .delivery-youki-edit-no-list li div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.delivery-page .delivery-youki-edit-no-list li div,
.delivery-page .delivery-youki-edit-installer-list li,
.delivery-page .delivery-youki-edit-pickup-list li {
  height: 1.5rem;
}
.delivery-page .delivery-youki-edit-no-list li {
  width: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.delivery-page .delivery-youki-edit-installer-list li,
.delivery-page .delivery-youki-edit-pickup-list li {
  display: flex;
  gap: 0.25rem;
}
.delivery-page .delivery-youki-edit-installer-list li input,
.delivery-page .delivery-youki-edit-pickup-list li input {
  width: 5rem;
}
.delivery-page .delivery-youki-edit-installer-list input:focus,
.delivery-page .delivery-youki-edit-pickup-list input:focus {
  background-color: #ffff00;
}
.delivery-page .delivery-youki-pickup-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1 1 auto;
  padding-right: 0.25rem;
}
.delivery-page .delivery-youki-pickup-list-container {
  background-color: #ffffc0;
  flex: 1 1 auto;
  overflow-y: scroll;
  height: 1px;
}
.delivery-page .delivery-youki-pickup-list-container::-webkit-scrollbar {
  width: 0.5rem;
}
.delivery-page .delivery-youki-pickup-list-container::-webkit-scrollbar-track {
  background-color: #eee;
}
.delivery-page .delivery-youki-pickup-list-container::-webkit-scrollbar-thumb {
  background-color: #bbb;
}
.delivery-page .delivery-youki-pickup-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.25rem;
}
.delivery-page .delivery-youki-pickup-list li {
  font-size: calc(1em - 0.3rem);
}
.delivery-page .delivery-scan-result {
  background-color: white;
  height: 2rem;
}
.delivery-page .delivery-youki-description {
  font-size: calc(1em - 0.55rem);
  color: var(--blue-font-color);
  padding-left: 0.2rem;
}

.inspect-page {
  background-color: #ffc4cd;
}
.inspect-page .inspect-item-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.25rem;
}
.inspect-page .inspect-item-container button {
  width: 3rem;
  font-size: calc(1em + 0.1rem);
  padding: 0.25rem 0;
  border: 1px solid gray;
  font-weight: 400;
}
.inspect-page .inspect-item-row {
  display: flex;
}
.inspect-page .inspect-item-name {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  font-size: calc(1em + 0.1rem);
}
.inspect-page .inspect-item-name select {
  width: 100%;
  font-size: calc(1em - 0.4rem);
  pointer-events: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ffffe1;
  border: 0;
}
.inspect-page .inspect-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  background-color: #ffffe1;
  font-size: calc(1em + 0.1rem);
}
.inspect-page .inspect-item select {
  width: 100%;
  font-size: calc(1em - 0.4rem);
  pointer-events: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ffffe1;
  border: 0;
}
.inspect-page .inspect-item-result-title {
  width: 3rem;
  padding: 0.25rem 0.5rem;
  background-color: #dfdfdf;
}
.inspect-page .inspect-item-result {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  background-color: #ffffe1;
  padding: 0.25rem;
}
.inspect-page .inspect-item-result span {
  display: inline-block;
  width: 1rem;
}
.inspect-page .inspect-item-result span:nth-of-type(6) {
  margin-right: 0.25rem;
}

.setting-page {
  background-color: #ffe1c2;
}
.setting-page .setting-replace-date-container button {
  border: 1px solid gray;
  border-left: 0;
  border-right: 0;
}
.setting-page .replace-date {
  flex: 1 1 auto;
  pointer-events: none;
}/*# sourceMappingURL=common.css.map */