@charset "UTF-8";
body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  padding: 10px;
}

.container {
  max-width: 90%;
  margin: 30px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.required-label::after {
  content: "必須";
  color: #d00;
  font-size: 0.9em;
  margin-left: 0.3em;
  background-color: #ffecec;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
}

/* 初期状態：非表示 js制御⇒cls制御にするため*/
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

/* 表示状態 */
.loading-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loading-text {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
}

/* ヘッダー */
.menu-header {
  background: #004080;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  position: sticky; /*上部固定*/
  top: 0;
  z-index: 1000;
}
.menu-header .right {
  min-width: max-content;
}

.header-menu-button {
  background: #f5f5f5;
  color: #004080;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  min-width: max-content;
  display: inline-flex; /* button と a でズレが出たので以下追加 */
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1.4;
  box-sizing: border-box; /* button と a の差を消す */
  appearance: none; /* iOS のボタン初期スタイルを消す */
  -webkit-appearance: none;
  vertical-align: middle;
}

.is-disabled-button {
  background-color: #ccc !important;
  border-color: #aaa !important;
  color: #666 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

@media (max-width: 767px) {
  input, select {
    font-size: 16px;
    height: 44px;
    background-color: #fff;
  }
  textarea {
    font-size: 16px;
    background-color: #fff;
  }
  input[type=date] {
    background-color: #fff;
    color: #000;
    appearance: none;
    -webkit-appearance: none;
  }
  select {
    background-color: #fff;
    color: #000;
    appearance: none;
    -webkit-appearance: none;
  }
}
@media (min-width: 768px) and (max-width: 1366px) {
  input, select {
    font-size: 24px;
    height: 52px;
    padding: 8px 12px;
  }
  textarea {
    font-size: 24px !important;
    padding: 8px 12px;
  }
  input[type=date] {
    background-color: #fff;
    color: #000;
    appearance: none;
    -webkit-appearance: none;
  }
  select {
    background-color: #fff;
    color: #000;
    appearance: none;
    -webkit-appearance: none;
  }
  .header-menu-button {
    font-size: 20px !important;
    padding: 14px 24px !important;
  }
  .staff-info {
    font-size: 20px !important;
  }
}/*# sourceMappingURL=common.css.map */