html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  color: #333;
  background: whitesmoke;
}

h3 {
  margin-bottom: 10px;
  padding: 5px;
  border-bottom: 2px solid #eee;
  background: #ddd;
  font-size: 1.25rem;
  font-weight: bold;
}

.content-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

footer {
  border-top: 1px solid #ddd;
  background: whitesmoke;
  text-align: center;
  font-size: 0.875rem;
  height: 20px;
}

input[type=text],
input[type=email],
input[type=number],
input[type=url],
input[type=tel],
input[type=date],
input[type=time],
input[type=password],
select {
  width: 100%;
  box-sizing: border-box;
  padding: 8px;
  border: 1px solid #aaf;
  border-radius: 4px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=url]:focus,
input[type=tel]:focus,
input[type=date]:focus,
input[type=time]:focus,
input[type=password]:focus,
select:focus {
  border-color: #4CAF50;
  outline: none;
}

input[type=date],
input[type=time] {
  width: auto;
}

input[type=radio],
input[type=checkbox] {
  margin-right: 3px;
}

select {
  width: auto;
}

textarea {
  width: 100%;
  height: 150px;
  box-sizing: border-box;
  padding: 8px;
  border: 1px solid #aaf;
  border-radius: 4px;
}
textarea:focus {
  border-color: #4CAF50;
  outline: none;
}

label {
  margin: 0;
  padding: 8px;
  padding-left: 5px;
}

.sub-form {
  display: inline-block;
}

button {
  min-width: 300px;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  white-space: nowrap;
  word-break: nowrap;
}
button:hover {
  background-color: #45a049;
}

a.submit-button {
  box-sizing: border-box;
  width: 80%;
  display: inline-block;
  text-align: center;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  white-space: nowrap;
  word-break: nowrap;
}
a.submit-button:hover {
  background-color: #45a049;
  text-decoration: none;
}

a.submit-button,
button[type=submit] {
  font-weight: bold;
  box-sizing: border-box;
  width: 80%;
}
a.submit-button.register-button,
button[type=submit].register-button {
  font-weight: bold;
  background: #007BFF;
}
a.submit-button.register-button:hover,
button[type=submit].register-button:hover {
  background-color: rgb(0, 110.7, 229.5);
}
a.submit-button.caution-button,
button[type=submit].caution-button {
  color: black;
  font-weight: bold;
  background: #FFC107;
}
a.submit-button.caution-button:hover,
button[type=submit].caution-button:hover {
  background-color: rgb(235.8, 176.85, 0);
}
a.submit-button.danger-button,
button[type=submit].danger-button {
  font-weight: bold;
  background: #DC3545;
}
a.submit-button.danger-button:hover,
button[type=submit].danger-button:hover {
  background-color: rgb(209.4151898734, 36.2848101266, 52.8721518987);
}
a.submit-button.invalid-button,
button[type=submit].invalid-button {
  background: #888;
}
a.submit-button.invalid-button:hover,
button[type=submit].invalid-button:hover {
  background-color: rgb(122.4, 122.4, 122.4);
}
a.submit-button.sub-button,
button[type=submit].sub-button {
  display: inline-block;
  min-width: auto;
  width: 100px;
  padding: 2px;
  margin: 0 5px;
  background: #888888;
  font-size: 0.875rem;
}
a.submit-button.sub-button:hover,
button[type=submit].sub-button:hover {
  background-color: rgb(122.4, 122.4, 122.4);
}

.submit-box {
  text-align: center;
  margin: 20px 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100vw;
  height: 60px;
  background: white;
}
header .header-info-area {
  display: flex;
  align-items: center;
}
header .header-info-area h1 {
  margin-right: 10px;
  margin-bottom: 0;
  padding-right: 10px;
  border-right: 1px solid #aaa;
  font-size: 1.5rem;
}
header .header-info-area .nav-breadcrumbs {
  list-style-type: none;
  padding: 4px 8px 0;
  font-size: 0.75rem;
}
header .header-info-area .nav-breadcrumbs ul {
  margin: 0;
  padding: 0;
}
header .header-info-area .nav-breadcrumbs ul li {
  display: inline-block;
}
header .header-info-area .nav-breadcrumbs ul li a {
  text-decoration: none;
}
header .header-info-area .nav-breadcrumbs ul li a:hover {
  text-decoration: underline;
}
header .header-info-area .page-title {
  margin: 0;
  padding: 0px 8px 4px;
  font-size: 1.25rem;
  font-weight: bold;
}
header .header-logout-area {
  margin: 0;
  padding: 4px 10px 0;
  text-align: center;
}
header .header-logout-area .logout-button {
  margin: 0;
  padding: 0;
}
header .header-logout-area .logout-button a {
  display: inline-block;
  color: #333;
}
header .header-logout-area .logout-button i {
  font-size: 2rem;
}
header .header-logout-area .logout-button span {
  display: block;
  font-size: 0.5rem;
}

.globalmenu {
  position: fixed;
  top: 60px;
  left: 0;
  box-sizing: border-box;
  border-right: 1px solid #ddd;
  height: calc(100vh - 60px);
  width: 170px;
  background: white;
}
.globalmenu nav {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  box-sizing: border-box;
  padding: 20px 0;
  height: calc(100vh - 80px);
}
.globalmenu nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0 10px;
}
.globalmenu nav ul li {
  margin-bottom: 10px;
}
.globalmenu nav ul li a {
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.5s ease;
}
.globalmenu nav ul li a:hover {
  text-decoration-color: currentColor;
}
.globalmenu nav ul li a span {
  box-sizing: border-box;
  display: inline-block;
  margin-right: 8px;
  padding: 0 5px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 25px;
  color: white;
  background: #333;
}
@media (max-width: 769px) {
  .globalmenu {
    display: none;
  }
}

.nav-sp {
  display: none;
}
@media (max-width: 768px) {
  .nav-sp {
    display: block;
  }
}

.global-active {
  font-weight: bold;
}
.global-active span {
  background-color: #4CAF50 !important;
}

.main-content-area {
  box-sizing: border-box;
  min-height: calc(100vh - 25px);
  padding: 20px;
  padding-top: 80px;
}
@media (min-width: 769px) {
  .main-content-area {
    margin-left: 170px;
  }
}
.main-content-area > section {
  box-sizing: border-box;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.tokenflag .main-content-area {
  max-width: 700px;
  margin: 0 auto !important;
}

table {
  width: 100%;
}
table th, table td {
  padding: 5px 10px;
  border-bottom: 1px dotted #ddd;
  text-align: left;
}
table th {
  width: 150px;
}
table tr:last-child th, table tr:last-child td {
  border-bottom: none;
}

.list-table {
  table-layout: fixed;
  border: 1px solid #ddd;
}
.list-table th {
  border-right: 1px solid #ddd;
  background: whitesmoke;
}
.list-table td {
  border-right: 1px solid #ddd;
}
.list-table .table-checkbox {
  width: 30px;
  text-align: center;
}
.list-table .table-checkbox input[type=checkbox] {
  display: flex;
  align-items: center;
  width: 20px;
  height: 20px;
}
.list-table tr.disabled-row {
  background: #f5f5f5;
  color: #aaa;
}

button.table-sub-submit {
  min-width: auto;
  max-width: auto;
  box-sizing: border-box;
  width: 100%;
  padding: 8px;
  background-color: #4CAF50;
}

.input-memo {
  display: block;
  font-size: 0.875rem;
  color: #333;
}

.result-message {
  display: inline-block;
  color: #4CAF50;
  font-weight: bold;
}

.caution-message {
  display: inline-block;
  color: #FFC107;
  font-weight: bold;
}

.error-message {
  display: inline-block;
  color: #DC3545;
  font-weight: bold;
}

.noresult-message {
  display: block;
  margin: 5px;
  text-align: center;
  color: #DC3545;
  font-weight: bold;
}

.pager-list {
  list-style-type: none;
  padding: 10px 0;
}
.pager-list li {
  box-sizing: border-box;
  display: inline-block;
  margin-right: 5px;
  border: 1px solid #007BFF;
  width: 30px;
  line-height: 30px;
  text-align: center;
}
.pager-list li.pager-current {
  font-weight: bold;
  color: white;
  background: #007BFF;
}
.pager-list li a {
  text-decoration: none;
}
.pager-list li a:hover {
  text-decoration: underline;
}
.pager-list .pager-prev,
.pager-list .pager-next {
  width: auto;
  border: none;
}/*# sourceMappingURL=base.css.map */