@charset "UTF-8";
:root {
  --app-bg: #f1f5f9;
  --chart-color-packs: #8fb6c3;
  --chart-color-sales: var(--bs-info-border-subtle);
  --chart-color-usage: var(--bs-warning-border-subtle);
  --chart-color-success: var(--bs-success);
  --chart-color-neutral: var(--bs-gray-400);
  --font-size-h1: 1.75rem;
  --font-size-h2: 1.5rem;
  --font-size-h3: 1.25rem;
  --font-size-h4: 1.2rem;
  --font-size-h5: 1.1rem;
  --font-size-h6: 1rem;
}

.material-icons {
  font-size: 1.2em;
  vertical-align: text-bottom;
}

#page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex: 1;
  background-color: var(--app-bg);
}

.site-header .nav-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #656E81;
}
.site-header .nav-title a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.site-header .logo-image {
  max-height: 40px;
  width: auto;
  display: inline-block;
}
.site-header .nav-header {
  border-bottom: 1px solid var(--bs-border-color);
  padding: 0.75rem 0;
}
.site-header .nav-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer {
  background-color: #1e293b;
  text-align: center;
  color: #fff;
}

/* 管理画面全般 */
.page-back {
  margin-bottom: 1.5rem;
}

.page-header {
  margin-bottom: 1.5rem;
}
.page-header .page-title {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: var(--font-size-h1);
}
.page-header .page-subtitle {
  color: var(--bs-gray-600);
}

.section {
  margin-bottom: 3rem;
}

.section-title {
  font-weight: 600;
  font-size: var(--font-size-h2);
  margin-bottom: 0.5rem;
}

.has-actions {
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
}
.has-actions .page-title, .has-actions .sectio-title {
  margin-bottom: 0;
}
.has-actions .header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.box {
  padding: calc(var(--bs-border-radius) * 2);
  background-color: #fff;
  border-radius: var(--bs-border-radius);
}

.table--detail {
  border: 1px solid var(--bs-border-color);
}
.table--detail tbody th {
  --bs-table-bg: var(--bs-info-bg-subtle);
  --bs-table-color: var(--bs-info-text-emphasis);
}

.table--list {
  border-top: 1px solid var(--bs-border-color);
  border-bottom: 1px solid var(--bs-border-color);
}
.table--list > thead > tr > th, .table--list > thead > tr > td, .table--list > tbody > tr > th, .table--list > tbody > tr > td {
  vertical-align: middle;
  border: 1px solid var(--bs-border-color);
  border-top-width: 0;
  border-bottom-width: 0;
}
.table--list > thead > tr {
  text-align: center;
  --bs-table-bg: var(--bs-info-bg-subtle);
  --bs-table-color: var(--bs-info-text-emphasis);
}
.table--list > tbody > tr:nth-child(even) {
  --bs-table-bg: var(--bs-light);
}

td.buttons {
  white-space: nowrap;
  text-align: center;
}

.table-responsive .table--list th, .table-responsive .table--list td {
  white-space: nowrap;
}

.submenu-tab {
  background-color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}
.submenu-tab .navbar {
  justify-content: flex-start;
  gap: 0 1ex;
  padding-left: 1ex;
  padding-right: 1ex;
}
.submenu-tab .navbar .nav-link.active {
  background-color: #fff;
}

/* ダッシュボードカード */
.dashboard-card {
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  background-color: white;
  height: 100%;
}

.dashboard-card-header {
  margin-bottom: 1rem;
}

.dashboard-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
}

.dashboard-card-value {
  font-size: 2rem;
  font-weight: 700;
  color: #206E87;
}

.dashboard-card-label {
  font-size: 0.875rem;
  color: #6b7280;
}

/* == Home == */
.chart-container {
  height: 300px;
  position: relative;
}

/* == 詳細 == */
.dl-details dt {
  color: var(--bs-gray-600);
  font-weight: 400;
}
.dl-details dd + dt {
  margin-top: 1.5rem;
}

.dl-details--large dd {
  font-weight: 700;
  font-size: 1.5rem;
}

.ticket-calc-output {
  padding: 1rem;
  margin: 1rem 0;
  background-color: var(--bs-gray-100);
  border-radius: var(--bs-border-radius);
}
.ticket-calc-output dl {
  max-width: 15em;
}

.form-label {
  font-size: 100%;
}

.asteriskField {
  display: inline-flex;
  align-items: center;
  color: rgba(0, 0, 0, 0);
}
.asteriskField::after {
  content: attr(title);
  font-size: 75%;
  font-weight: 600;
  background-color: var(--bs-warning);
  color: #FFFFFF;
  padding: 0 1ex;
  border-radius: 3px;
}

.form-field--validity-period .field-wrapper {
  display: flex;
  gap: 1ex;
}
.form-field--validity-period .field-wrapper > * {
  flex-shrink: 1;
  flex-grow: 0;
}
.form-field--validity-period .field-wrapper > :nth-child(1) {
  width: 10em;
  appearance: none;
}
.form-field--validity-period .field-wrapper > :nth-child(2) {
  width: min-content;
}

body.auth .auth-form {
  margin: 3rem auto;
  max-width: 440px;
  width: 100%;
}

/*# sourceMappingURL=styles.css.83f05be4eabc.map */
