@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;
  --side-nav-close-width: 5rem;
  --side-nav-open-width: 23rem;
  --header-height: 4rem;
  --header-btn-width: 4rem;
  --footer-height: 2rem;
  --table-row-height: 2.25rem;
  --default-transition: all 0.2s ease-in-out;
  --transition-target: all;
  --transition-delay: 0.2s;
  --table-sticky-low-z-index: 1000;
  --table-sticky-middle-z-index: 2000;
  --table-sticky-high-z-index: 3000;
  --table-sticky-top-z-index: 4000;
  --body-layer-z-index: 5000;
  --body-layer-front-z-index: 5500;
  --side-nav-overlay-z-index: 6000;
  --side-nav-z-index: 7000;
  --form-overlay-z-index: 8000;
  --form-layer-z-index: 9000;
  --overlay-z-index: 10000;
  --layer-z-index: 11000;
  --normal-dialog-z-index: 14000;
  --check-dialog-z-index: 15000;
  --confirm-dialog-z-index: 16000;
  --loading-dialog-z-index: 17000;
  --most-z-index: 18000;
  --main-key-color: #3f6091;
  --sub-key-color: #02929c;
  --default-font-color: #222222;
  --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: #476ca3;
  --btn-default-font-color: #ffffff;
  --btn-result-search-back-color: #6caba7;
  --btn-result-search-font-color: #ffffff;
  --btn-apply-back-color: #517ea9;
  --btn-apply-font-color: white;
  --btn-cancel-back-color: #c46262;
  --btn-cancel-font-color: white;
  --table-header-back-color: #dee6f1;
  --table-header-sub-back-color: #fae6dd;
  --table-header-reference-back-color: #ececec;
  --input-back-color: #fff;
  --input-font-color: #111;
  --hover-back-color: #e7f4f4;
  --change-back-color: #f6ebe5;
  --layer-close-btn-back-color: #d02121;
  --layer-close-btn-font-color: #ffffff;
  --layer-title-back-color: #3a477b;
  --layer-title-font-color: #111;
  --saturday-font-color: #6781c0;
  --sunday-font-color: #cc7979;
  --row-even-back-color: #f0f3f8;
  --error-font-color: #e84d4d;
}

@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: 75%;
  color: var(--default-font-color);
}

html.middle-font-size {
  font-size: 87.5%;
}

html.large-font-size {
  font-size: 100%;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  border-bottom: 1px solid var(--main-key-color);
  background-color: var(--main-key-color);
  padding: 0 1rem;
}

header h1 {
  color: white;
}

header > div {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-btn, .header-text-btn {
  background-color: transparent;
  width: 4rem;
  height: 100%;
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border: 0;
  outline: 0 !important;
}
.header-btn i, .header-text-btn i {
  transform: translateY(0.2rem);
}

.header-text-btn {
  width: inherit;
  padding: 0 1rem;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.2rem;
  height: 100%;
  background-color: var(--body-back-color);
}

.body-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 1 auto;
  padding: 2rem;
}
main.main-single-page {
  display: flex;
  flex-direction: column;
  height: 1px;
}

.body-split-container {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: nowrap;
}

.body-split-content-container {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.main-title-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.main-title-container button {
  font-size: calc(1em + 0.2rem);
  padding: 0.25rem 1rem;
}

h1 {
  font-size: 2.2rem;
  font-weight: 600;
}

h2 {
  font-size: 1.8rem;
  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: white;
  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 #8e8e8e;
  min-height: 2.5rem;
  box-sizing: border-box;
  color: var(--default-font-color);
}

input[type=color] {
  height: 100%;
}

input[type=color]:not([disabled]) {
  background-color: transparent;
  cursor: pointer;
}

input[type=date] {
  width: 9.5rem;
}

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;
}

:focus:not([type=file]),
:focus-visible:not([type=file]) {
  outline: #6a6a6a auto 1px;
}

input:not([disabled]):hover,
input:not([disabled]):focus,
select:not([disabled]):hover,
select:not([disabled]):focus,
textarea:not([disabled]):hover,
textarea:not([disabled]):focus,
label:not([disabled]):hover,
label:not([disabled]):focus {
  background-color: var(--hover-back-color);
}

button[disabled] {
  background-color: #ccc;
}

select[disabled] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

[disabled] {
  background-color: #eee;
  cursor: auto;
  pointer-events: none;
}

table {
  border-collapse: separate;
  height: 1px;
}

table tr {
  height: var(--table-row-height);
}

table th {
  vertical-align: middle;
  background-color: var(--table-header-back-color);
  position: relative;
  border-right: 1px solid gray;
  border-bottom: 1px solid gray;
}

table th.hidden-cell {
  visibility: hidden;
  border: 0;
}

table td {
  height: 1px;
  vertical-align: middle;
  border-right: 1px solid gray;
  border-bottom: 1px solid gray;
}

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: var(--footer-height);
}

.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;
}

.saturday-text {
  color: var(--saturday-font-color);
}

.sunday-text {
  color: var(--sunday-font-color);
}

.layer {
  display: none;
  position: absolute;
  padding: 3rem 2rem 2rem;
  border: 2px solid #e4e4e4;
  border-radius: 6px;
  z-index: var(--layer-z-index);
  background-color: white;
  box-shadow: 1px 1px 4px 2px rgba(80, 80, 80, 0.2);
  opacity: 0;
  transition: opacity var(--transition-delay);
  pointer-events: none;
  overflow: hidden;
  color: #444;
}
.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: var(--overlay-z-index);
}
.overlay.open {
  display: block;
}

.layer-description {
  padding: 0.5rem;
  line-height: 1.5;
  box-shadow: 2px 2px 4px rgba(80, 80, 80, 0.2);
}

.footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: gray;
  color: white;
}

.center-container, .center-wide-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-width: var(--breakpoint-sp-min);
  max-width: var(--breakpoint-sp-max);
  margin: 0 auto;
}
.center-container h2, .center-wide-container h2 {
  display: block;
  margin-bottom: 2rem;
}

.center-wide-container {
  width: var(--breakpoint-tab-max);
  max-width: var(--breakpoint-tab-max);
}
@media (max-width: 1024px) {
  .center-wide-container {
    max-width: 100%;
  }
}

.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: #b3b3b3;
  white-space: nowrap;
}
.form-container dd input {
  width: 100%;
  height: inherit;
  font-size: 1.75rem;
  padding: 0.75rem 0.5rem;
  border: 1px solid #ccc;
  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;
}

.edit-system-form-container {
  padding: 2rem 1rem;
}
.edit-system-form-container .edit-system-form-section-container {
  margin-bottom: 3rem;
}
.edit-system-form-container h3 {
  margin-bottom: 1rem;
}
.edit-system-form-container dl {
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
  gap: 1rem;
}
.edit-system-form-container dl div {
  display: flex;
  border: 1px solid gray;
  height: 3rem;
}
.edit-system-form-container dl div.edit-system-form-concat-row {
  gap: 2rem;
  border: 0;
}
.edit-system-form-container dl dt {
  width: 12rem;
  justify-content: center;
  background-color: var(--table-header-back-color);
  border-right: 1px solid gray;
  padding: 0.5rem;
  font-weight: 600;
}
.edit-system-form-container dl dd {
  flex: 1 1 auto;
  background-color: white;
  align-items: stretch;
}
.edit-system-form-container dl input, .edit-system-form-container dl select {
  width: 100%;
  border: 0;
}
.edit-system-form-container .edit-system-form-save-btn-container {
  display: flex;
  justify-content: center;
}
.edit-system-form-container .edit-system-form-save-btn-container button {
  width: 18rem;
  height: 4rem;
  font-size: 1.4rem;
}

.layer-edit {
  position: fixed;
  inset: 0;
  margin: auto;
  width: 44rem;
  padding: 1rem;
  opacity: 1;
}
.layer-edit.layer-edit-consumer {
  height: 40rem;
}
.layer-edit.layer-edit-staff {
  height: 29rem;
}
.layer-edit h3 {
  margin-bottom: 1em;
}
.layer-edit dl {
  margin-bottom: 1rem;
}
.layer-edit dl dt {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.layer-edit dl > div:not(:last-of-type) {
  margin-bottom: 1rem;
}
.layer-edit .layer-edit-check {
  border: 1px solid gray;
}
.layer-edit .layer-edit-check input {
  border-width: 0;
  border-right-width: 1px;
}
.layer-edit .layer-edit-btn-container {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
.layer-edit .layer-edit-btn-container button {
  width: 8rem;
  height: 2.75rem;
}

.list-table tbody tr:nth-of-type(2n) td {
  background-color: var(--row-even-back-color);
}

.flex {
  display: flex;
}

.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;
}

.search-condition-container dl {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 0;
}
.search-condition-container dl > div {
  display: flex;
  border: 1px solid gray;
}
.search-condition-container dl > div dt {
  background-color: var(--table-header-back-color);
  border-right: 1px solid gray;
  padding: 0.5rem;
  font-weight: 600;
}
.search-condition-container dl > div dd {
  background-color: white;
  align-items: stretch;
}
.search-condition-container dl > div input, .search-condition-container dl > div select {
  border: 0;
}
.search-condition-container dl > div button {
  border: 0;
  padding: 0 0.5rem;
}
.search-condition-container dl select {
  width: 25rem;
}
.search-condition-container dl .search-cd {
  width: 8rem;
}
.search-condition-container dl .search-address {
  min-width: 20rem;
}
.search-condition-container dl .search-tel {
  width: 12rem;
}
.search-condition-container dl .search-mail {
  min-width: 16rem;
}
.search-condition-container dl .search-radio-container {
  background-color: white;
}

.search-btn {
  width: 100%;
  height: 3rem;
  font-size: 1.6rem;
}

.list-mater-current-mater {
  display: flex;
  align-items: center;
}

.list-condition-container {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.list-pager-container {
  display: flex;
}

.list-limit-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.list-pager {
  display: flex;
  align-items: center;
  height: 2rem;
  padding: 0 1rem;
}
.list-pager i {
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: lightgray;
  outline: 1px solid gray;
}
.list-pager i:hover {
  opacity: 0.8;
}

.list-data-no {
  width: 3rem;
}

.list-mater-remove-password {
  width: 8rem;
  border-right: 1px solid gray;
}

.list-pager-no-container {
  display: flex;
  align-items: stretch;
  height: 100%;
  outline: 1px solid gray;
  background-color: #efefef;
}
.list-pager-no-container .current-page {
  min-height: inherit;
  text-align: center;
}
.list-pager-no-container > div {
  display: flex;
  align-items: center;
  padding: 0.25rem;
}

.list-limit {
  border: 0;
  border-bottom: 1px solid gray;
}

.list-pager-no-container input {
  width: 2rem;
  border: 0;
  background-color: white;
}
.list-pager-no-container input::-webkit-inner-spin-button {
  display: none;
}

.list-table-container {
  display: flex;
  position: relative;
  overflow-y: scroll;
  border: 1px solid gray;
}
.list-table-container table {
  width: 100%;
}
.list-table-container table tbody tr:first-of-type td {
  border-top: 1px solid gray;
}
.list-table-container table th {
  position: sticky;
  top: 0;
  border-top: 0;
}
.list-table-container table td {
  background-color: white;
}
.list-table-container table td:not(.p-0) {
  padding: 0.25rem;
}
.list-table-container table tr th:first-of-type,
.list-table-container table tr td:first-of-type {
  border-left: 0;
}
.list-table-container table tr:last-of-type td {
  border-bottom: 0;
}

.list-table-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  cursor: pointer;
}
.list-table-icon:hover {
  opacity: 0.8;
}
.list-table-icon i {
  font-size: 1.6rem;
  color: var(--main-key-color);
}
.list-table-icon .fa-trash {
  color: gray;
}

.list-table-status {
  background-color: #8c8c8c;
  color: white;
  padding: 0.5rem 0;
  font-weight: 600;
}

.list-table-status.mail {
  background-color: #00b9b9;
}

.list-table-status.pass {
  background-color: #4e8bcd;
}

dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 20rem;
  margin: 0;
  padding: 2rem;
  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.6;
  font-size: 1.6rem;
}

dialog button {
  margin-top: 1rem;
  padding: 0.75rem 3rem;
  text-align: center;
  box-shadow: 0 1px 2px 0 rgba(80, 80, 80, 0.2);
}

.normal-dialog {
  z-index: var(--normal-dialog-z-index);
}

.check-dialog {
  z-index: var(--check-dialog-z-index);
}

.confirm-dialog {
  z-index: var(--confirm-dialog-z-index);
}

.loading-dialog {
  text-align: center;
  z-index: var(--loading-dialog-z-index);
}

.loading-dialog p {
  color: #828b90;
  text-align: center;
  animation: loading-text-blink 1s ease-in-out infinite alternate;
}

.confirm-dialog-btn-container {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.dialog-apply-btn {
  width: 10rem;
  background-color: var(--btn-apply-back-color);
  color: var(--btn-apply-font-color);
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 608px) {
  .dialog-apply-btn {
    width: 50%;
  }
}

.dialog-cancel-btn {
  width: 10rem;
  background-color: transparent;
  color: gray;
  padding-left: 0;
  padding-right: 0;
  border: 2px solid gray;
}
@media (max-width: 608px) {
  .dialog-cancel-btn {
    width: 50%;
  }
}

@keyframes loading-text-blink {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.side-nav {
  min-width: 4rem;
  max-width: 4rem;
  overflow: hidden;
  background-color: #363636;
  transition: all 0.3s ease;
}
.side-nav.open {
  min-width: 18rem;
  max-width: 18rem;
}
.side-nav.open .side-nav-opener i::before {
  content: "\f00d";
}

.side-nav li {
  display: flex;
  height: 4rem;
  white-space: nowrap;
}

.side-nav a {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  color: white;
  text-decoration: none;
}

.side-nav i {
  width: 4rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.layer-user-config {
  position: fixed;
  top: var(--header-height);
  right: 0;
  width: 30em;
  max-width: 100vw;
  padding: 1em;
  opacity: 1;
}
.layer-user-config h3 {
  margin-bottom: 1em;
}
.layer-user-config h4 {
  display: flex;
  align-items: center;
  padding: 0.5rem;
}
.layer-user-config h4 i {
  font-size: calc(1em + 0.6rem);
  transform: translateY(0.1rem);
  margin-right: 0.5rem;
}

.layer-user-config-row {
  display: flex;
  flex-wrap: nowrap;
  height: 3rem;
  overflow: hidden;
  background-color: #ebebeb;
  margin-bottom: 1rem;
  transition: height 0.3s ease;
}
.layer-user-config-row.open {
  height: 6rem;
}
.layer-user-config-row.open .fa-chevron-down {
  transform: rotate(180deg);
}
.layer-user-config-row > div {
  width: 100%;
}
.layer-user-config-row h4 {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  height: 3rem;
}

.layer-user-config-info {
  height: 4rem;
}
.layer-user-config-info i {
  width: 4rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: calc(1em + 1rem);
}
.layer-user-config-info .layer-user-config-info-list {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  font-weight: 600;
}
.layer-user-config-info .layer-user-config-info-list > div {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
}

.layer-user-config-font ul {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
  padding: 0.5rem 1rem 1rem;
}
.layer-user-config-font ul li {
  width: 25%;
  height: 2rem;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}
.layer-user-config-font ul li:hover {
  opacity: 0.8;
}
.layer-user-config-font ul li:hover, .layer-user-config-font ul li.select-font-size {
  background-color: #376cb8;
  color: white;
}

.layer-user-config-form {
  display: flex;
  padding: 0 0.5rem;
}
.layer-user-config-form input {
  flex: 1 1 auto;
  border: 0;
}
.layer-user-config-form button {
  width: 4rem;
  border: 0;
}

.layer-mater-csv-import {
  position: fixed;
  inset: 0;
  margin: auto;
  width: 30rem;
  height: 19.5rem;
  padding: 1rem;
  opacity: 1;
}
.layer-mater-csv-import h3 {
  margin-bottom: 1em;
}
.layer-mater-csv-import dl {
  margin-bottom: 1rem;
}
.layer-mater-csv-import dl dt {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.layer-mater-csv-import dl div:not(:last-of-type) {
  margin-bottom: 1rem;
}
.layer-mater-csv-import label {
  padding: 0.5rem;
}

.layer-mater-csv-import-btn-container {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
.layer-mater-csv-import-btn-container button {
  width: 8rem;
  height: 2.75rem;
}

.login-page-header {
  border-bottom: 0;
  box-shadow: 0.5rem 0.25rem rgba(0, 0, 0, 0.075);
}
.login-page-header h1 {
  text-indent: 1rem;
  margin: auto;
}
.login-page-header span {
  font-size: 1rem;
  margin-left: 1rem;
}

.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;
}

.login-failure-text {
  margin-bottom: 2rem;
}

.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;
}

.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;
}

.signup-page .form-container {
  display: none;
}

.signup-form-container dl {
  margin-bottom: 0;
}

.signup-identification-container dd {
  justify-content: center;
}

.signup-terms-container {
  height: 3rem;
  overflow: hidden;
  transition: height 0.3s ease;
  background-color: white;
  margin-bottom: 1rem;
}
.signup-terms-container.open {
  height: 23rem;
}
.signup-terms-container.open .fa-chevron-down {
  transform: rotate(180deg);
}
.signup-terms-container > div {
  width: 100%;
}
.signup-terms-container h4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  height: 3rem;
  padding: 0 1rem;
  border: 1px solid lightgray;
}
.signup-terms-container .singup-terms-title {
  flex: 1 1 auto;
  text-align: center;
  color: var(--main-key-color);
}
.signup-terms-container .signup-terms-detail {
  height: 20rem;
  overflow-y: scroll;
  padding: 1rem;
  border-left: 1px solid lightgray;
  border-right: 1px solid lightgray;
  border-bottom: 1px solid lightgray;
}
.signup-terms-container .signup-terms-detail h5 {
  margin-bottom: 0.5rem;
}
.signup-terms-container .signup-terms-detail p {
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.signup-terms-consent-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.signup-terms-check-text {
  font-size: 1rem;
}

.signup-next-btn {
  background-color: var(--main-key-color);
  color: white;
  font-size: 1.8rem;
  margin-bottom: 3rem;
  border-radius: 5px;
  width: 100%;
  height: 5rem;
}

.signup-identification-contianer dd label {
  margin: 0 auto;
}

.signup-password-policy {
  margin-bottom: 1rem;
}

.verifi-page .form-container,
.verifi-page .message-container {
  display: none;
}

.mater-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background-color: white;
  margin-bottom: 1rem;
}
.mater-info-list dt {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.mater-info-list dd {
  font-size: 2.6rem;
  font-weight: 900;
  justify-content: center;
}

.mater-year-month-select {
  font-size: 2rem;
  font-weight: 600;
}

.mater-detail-wrapper {
  display: flex;
  flex-direction: column;
}

.mater-detail-top-btn-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}
.mater-detail-top-btn-container button {
  background-color: transparent;
  color: var(--main-key-color);
  border: 0;
  outline: 0;
  width: 4rem;
  height: 2rem;
}
.mater-detail-top-btn-container button i {
  margin: 0.25rem;
}

.mater-detail-container {
  background-color: white;
  border: 1px solid gray;
  margin-bottom: 1rem;
}
.mater-detail-container h3 {
  padding: 1rem;
  background-color: var(--main-key-color);
  color: white;
}

.mater-detail-list {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
}
.mater-detail-list > div {
  display: flex;
  height: 2.5rem;
}
.mater-detail-list > div:nth-of-type(2n) dd {
  background-color: var(--row-even-back-color);
}
.mater-detail-list dt {
  min-width: 12rem;
  padding: 0 0.25rem;
  text-align: center;
  font-weight: 600;
  background-color: var(--main-key-color);
  color: white;
  border-top: 1px solid gray;
  border-left: 1px solid gray;
}
.mater-detail-list dd {
  flex: 1 1 auto;
  padding: 0 0.25rem;
  border-right: 1px solid gray;
  border-bottom: 1px solid gray;
  background-color: white;
  font-weight: 600;
}
.mater-detail-list dd:first-of-type {
  border-top: 1px solid gray;
}

.mater-detail-info {
  padding: 0 0.5rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1rem;
}

.mater-gas-price-list-detail {
  display: flex;
  flex-direction: column;
}
.mater-gas-price-list-detail span {
  display: inline-block;
  width: 33.3333333333%;
  max-width: 10rem;
}/*# sourceMappingURL=common.css.map */