@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  font-family: "Noto Sans JP", sans-serif, "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 100%; /* -> 10px */
}

body {
  background-color: #fff;
}

a {
  color: #000;
  text-decoration: none;
}

main {
  background-color: #fcfcfc;
  height: 100vh;
}

.ma-se {
  height: 98vh;
}

/* =============================
   Login Page
   ============================= */
.login {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 24px 16px;
}
.login_card {
  width: 100%;
  max-width: 560px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  padding: 40px 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.login_title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #1f2937;
  text-align: center;
}
.login_subtitle {
  margin-top: 6px;
  font-size: 14px;
  color: #6b7280;
  text-align: center;
}
.login_form {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 12px;
}
.login_label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
  padding: 0;
  border: 0;
}
.login_input {
  appearance: none;
  width: 100%;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  height: 44px;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 14px;
  color: #111827;
  transition: box-shadow 0.2s, border-color 0.2s, background-color 0.2s;
}
.login_input::placeholder {
  color: #9ca3af;
}
.login_input:focus {
  outline: none;
  background: #fff;
  border-color: #93c5fd;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}
.login_button {
  margin-top: 8px;
  height: 44px;
  border-radius: 10px;
  background: #3b82f6;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: filter 0.2s, transform 0.02s;
}
.login_button:active {
  transform: translateY(1px);
}
.login_button:hover {
  filter: brightness(1.03);
}
.login_divider {
  margin: 16px 0 12px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 12px;
  color: #9ca3af;
  font-size: 12px;
}
.login_divider::before, .login_divider::after {
  content: "";
  height: 1px;
  background: #e5e7eb;
  display: block;
}
.login_oauth {
  height: 44px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.login_oauth:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}
.login_oauthIcon {
  display: inline-flex;
}
.login_help {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: #6b7280;
}
.login_help a {
  color: #1f2937;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.login_help a:hover {
  border-color: #9ca3af;
}
.login_helpArrow {
  margin-left: 6px;
  color: #9ca3af;
}
.login_info {
  width: 100%;
  max-width: 960px;
  background: #fff;
  border-radius: 10px;
  border: 4px solid #e5e7eb;
  padding: 40px 24px;
  text-align: center;
}
.login_infoTitle {
  font-size: 28px;
  font-weight: 800;
  color: #1f2937;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.12);
}
.login_infoText {
  margin-top: 16px;
  color: #6b7280;
}

/* =============================
   Member Master Management (MD3-like)
   ============================= */
.appHeader {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 1px 1px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid #e5e7eb;
}
.appHeader .appHeader_inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.appHeader .appHeader_title {
  display: grid;
  gap: 2px;
}
.appHeader .appHeader_title h1 {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.01em;
}
.appHeader .appHeader_title .appHeader_sub {
  color: #4b5563;
  font-size: 12px;
}
.appHeader .appHeader_actions {
  margin-left: auto;
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}

.appFooter {
  position: sticky;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.04);
}
.appFooter .appFooter_inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: flex-end;
}
.appFooter .appFooter_actions {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}

.master-page {
  height: 100vh;
  min-height: 100%;
  min-width: 1000px;
  background: #ffffff;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 0;
  font-size: 1.6rem;
}

.master-page_content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 20px 24px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 左40% / 右60% */
  gap: 20px;
  align-items: start;
}

.panel {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 1px 1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.panel .panel_header {
  padding: 12px 14px;
  border-bottom: 1px solid #e5e7eb;
  background: #f7f8fa;
}
.panel .panel_header h2 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.panel .panel_body {
  padding: 12px 14px;
}

.panel--primary {
  border-color: #e5e7eb;
}

.panel--tabs {
  min-height: 520px;
}

.tabs {
  display: flex;
  gap: 6px;
  padding: 8px 8px 0;
  border-bottom: 1px solid #e5e7eb;
}

.tab {
  appearance: none;
  border: none;
  background: transparent;
  color: #4b5563;
  padding: 10px 12px;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  font-weight: 700;
}

.tab.is-active {
  background: #ffffff;
  color: #1f2937;
  box-shadow: 0 -2px 0 #4A90E2 inset;
}

.tabpanels {
  padding: 12px 14px;
}

.tabpanel {
  display: none;
}

.tabpanel.is-active {
  display: block;
}

.form {
  display: grid;
  gap: 10px;
}

.form--dense {
  row-gap: 10px;
}

.form_row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.form_row--cols2 {
  grid-template-columns: 1fr 1fr;
}

.form_row--cols3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.form_field {
  display: grid;
  gap: 6px;
  align-content: start;
  min-width: 0;
}

.form_divider {
  height: 1px;
  background: #e5e7eb;
  margin: 4px 0;
}

.form_label {
  font-size: 12px;
  color: #4b5563;
}

.form_input {
  appearance: none;
  width: 100%;
  height: 40px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0 12px;
  font-size: 14px;
  transition: box-shadow 0.2s, border-color 0.2s, background-color 0.2s;
}

.form_input:focus {
  outline: none;
  border-color: rgb(117.9571428571, 170.9571428571, 233.0428571429);
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.15);
  background: #fff;
}

.form_input[aria-invalid=true], .form_input.is-error {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

/* コード検索ダイアログの名称表示欄(readonly)。編集可能な入力欄と区別できるよう
   薄いブルーにする（.md3-btn--tonalと同系色でアクセントカラーとトーンを揃えている） */
.form_input:read-only {
  background: #e9f2fd;
  color: rgb(34.3857142857, 117.3857142857, 214.6142857143);
  cursor: default;
}

/* 日付欄・検索条件の範囲(from〜to)欄は横幅100%だと間延びするため、
   10文字程度(ch単位=その等幅での文字数分)まで固定幅に絞る */
.form_input--date {
  width: 16ch;
  flex: 0 0 auto;
}

.form_input--narrow {
  width: 20ch;
  flex: 0 0 auto;
}

/* 大分類CD(MBUN.BUNCD)・機種CD(MKSYU.KSYUCD)は実データの最大桁数(2026-07-12調査:
   BUNCD最大9999=4桁、KSYUCD最大99=2桁)+2chで固定幅にする */
.form_input--buncd {
  width: 11ch;
  flex: 0 0 auto;
}

.form_input--ksyucd {
  width: 8ch;
  flex: 0 0 auto;
}

/* 担当者CD(MTAN.TANCD)・営業所CD(MEIG.EIGCD)は実データの最大桁数(2026-07-13確認:
   TANCD最大98=2桁、EIGCD最大9=1桁)を基準にした幅。OJY020(kensaku)・OJYZKanri(zankanri)で共用 */
.form_input--tancd {
  width: 8ch;
  flex: 0 0 auto;
}

.form_input--eigcd {
  width: 6ch;
  flex: 0 0 auto;
}

/* 発注区分・表示順は複数画面（OJYIchiran/OJYZKanri/OJY020）で共用する幅(2026-07-13統一)。
   完了区分/取消区分はOJYIchiran専用 */
.form_input--hachukbn {
  width: 10ch;
  flex: 0 0 auto;
}

.form_input--periodkind {
  width: 16ch;
  flex: 0 0 auto;
}

.form_input--kanryo {
  width: 16ch;
  flex: 0 0 auto;
}

.form_input--cancelkbn {
  width: 16ch;
  flex: 0 0 auto;
}

.form_input--order {
  width: 20ch;
  flex: 0 0 auto;
}

/* OJY020(受注検索)の検索条件欄 */
.form_input--kensaku-juchuno {
  width: 10ch;
  flex: 0 0 auto;
}

.form_input--kensaku-toricd {
  width: 12ch;
  flex: 0 0 auto;
}

.form_input--kensaku-chumonno {
  width: 20ch;
  flex: 0 0 auto;
}

.form_input--kensaku-zuban {
  width: 20ch;
  flex: 0 0 auto;
}

.form_input--kensaku-shocd {
  width: 10ch;
  flex: 0 0 auto;
}

.field-range {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  min-width: 0;
}

.field-range .range-sep {
  color: #6b7280;
}

.form_checkbox, .form_radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #1f2937;
}

.form_field--checkbox {
  display: flex;
  align-items: end;
}

.fieldset {
  border: 1px dashed #cfd3d9;
  border-radius: 8px;
  padding: 8px 10px;
}

.fieldset > legend {
  font-size: 12px;
  color: #4b5563;
  padding: 0 6px;
}

.md3-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: transparent;
  color: #1f2937;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: filter 0.2s, transform 0.02s, background-color 0.2s, border-color 0.2s, color 0.2s;
}

.md3-btn:hover {
  filter: brightness(1.02);
}

.md3-btn:active {
  transform: translateY(1px);
}

.md3-btn--primary {
  background: transparent;
  color: #4A90E2;
  border-color: #4A90E2;
}

.md3-btn--filled {
  background: #4A90E2;
  color: #ffffff;
}

.md3-btn--tonal {
  background: #e9f2fd;
  color: rgb(34.3857142857, 117.3857142857, 214.6142857143);
}

.md3-btn--error {
  background: rgb(248.3333333333, 213.6666666667, 213.6666666667);
  color: #dc2626;
  border-color: rgba(220, 38, 38, 0.2);
}

.md3-btn--text {
  background: transparent;
  color: #4A90E2;
  padding: 0 8px;
  height: 30px;
}

/* コード検索ダイアログを開く小さな虫眼鏡ボタン（入力欄の横に添える用） */
.md3-btn--icon {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 8px;
  flex: 0 0 auto;
}

.md3-btn:disabled,
.md3-btn[disabled] {
  background: #e5e7eb;
  color: #9ca3af;
  border-color: #d1d5db;
  opacity: 1;
  filter: none;
  cursor: not-allowed;
}

.toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0 8px;
}

.toolbar_hint {
  font-size: 12px;
  color: #4b5563;
}

.tableWrap {
  width: 100%;
  overflow: auto;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.table thead th {
  position: sticky;
  top: 0;
  background: #f7f8fa;
  color: #4b5563;
  text-align: left;
  font-weight: 700;
  padding: 10px 12px;
  border-bottom: 1px solid #e5e7eb;
}

.table tbody td {
  padding: 10px 12px;
  border-bottom: 1px solid #e5e7eb;
  color: #1f2937;
}

.table tbody tr:hover {
  background: #fafbfc;
}

.modal {
  border: none;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.2);
}

.modal_card {
  padding: 16px;
  min-width: 560px;
}

.modal_title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal_actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
}

/* Dashboard layout fit 16:9 */
.dashboard-grid {
  display: block;
}

.dash-main {
  min-width: 0;
}

.chart-panel {
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
}

.chart-panel canvas {
  width: 100% !important;
  height: 90% !important;
  padding: 20px 0;
  display: block;
}

.chart-panel--wide canvas {
  height: 90% !important;
}

.chart-tabs {
  display: inline-flex;
  gap: 6px;
}

.chart-tab {
  appearance: none;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #374151;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
}

.chart-tab.is-active {
  border-color: #4A90E2;
  color: #4A90E2;
  background: #e9f2fd;
}

@media (max-width: 1280px) {
  .dashboard-grid {
    grid-template-columns: 1fr 320px;
  }
}
@media (max-width: 1024px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .dash-side {
    position: static;
    height: auto;
  }
}
/* =============================
   Responsive
   ============================= */
@media (max-width: 1000px) {
  .page_content {
    padding: 12px 16px 20px;
  }
  .grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 12px;
  }
  .appHeader_inner {
    padding: 10px 16px;
  }
  .appFooter_inner {
    padding: 8px 16px;
  }
}
/* =============================
   main.html specific styles (extracted from embedded <style>)
   ============================= */
:root {
  --accent-color: #4A90E2;
}

body.main-page {
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Yu Gothic UI", meiryo, sans-serif;
  background-color: #F5F5F5;
}

.main-container {
  max-width: 1440px;
  margin: 0 auto;
}

.card {
  background-color: #FFF;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dashboard-graph {
  padding: 30px 20px 0 20px;
  height: 400px;
}

.table-container {
  background-color: #FFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.table thead th {
  background-color: #4A90E2;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 16px;
  text-align: left;
}
.table tbody tr {
  border-bottom: 1px solid #EEEEEE;
}
.table tbody tr:last-child {
  border-bottom: none;
}
.table tbody td {
  padding: 12px 16px;
  font-size: 16px;
  color: #212121;
}
.table tbody td.secondary-text {
  color: #757575;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
}

.status-completed {
  background-color: #4A90E2;
  color: #fff;
}

.sidebar-nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  color: #49454F;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.sidebar-nav-link.active, .sidebar-nav-link:hover {
  background-color: #E3F2FD;
  color: var(--accent-color);
}
.sidebar-nav-link.is-disabled {
  color: #B0B0B5;
  cursor: default;
}
.sidebar-nav-link.is-disabled:hover {
  background-color: transparent;
  color: #B0B0B5;
}
.sidebar-nav-link .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
.sidebar-nav-link.active .material-symbols-outlined {
  font-variation-settings: "FILL" 1;
}

/* Collapsible sidebar */
/* Sidebar base width */
.sidebar {
  width: 280px; /* widened */
  flex-shrink: 0;
  transition: width 0.2s ease;
}
.sidebar.is-collapsed {
  width: 72px;
}

.sidebar.is-collapsed .sidebar-nav-link {
  justify-content: center;
}
.sidebar.is-collapsed .sidebar-nav-link .sidebar-label {
  display: none;
}

/* Hover temporary expand when collapsed */
.sidebar.is-collapsed:hover {
  width: 240px;
}

.sidebar.is-collapsed:hover .sidebar-nav-link {
  justify-content: flex-start;
}

.sidebar.is-collapsed:hover .sidebar-nav-link .sidebar-label {
  display: inline;
}

/* Responsive: auto collapse on small screens (default) */
@media (max-width: 1024px) {
  .sidebar {
    width: 72px;
  }
  .sidebar .sidebar-nav-link {
    justify-content: center;
  }
  .sidebar .sidebar-nav-link .sidebar-label {
    display: none;
  }
  .sidebar:not(.is-collapsed):hover {
    width: 220px;
  }
  .sidebar:hover .sidebar-nav-link {
    justify-content: flex-start;
  }
  .sidebar:hover .sidebar-nav-link .sidebar-label {
    display: inline;
  }
}
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .panel--tabs {
    min-height: auto;
  }
  .tabs {
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .tabs::-webkit-scrollbar {
    height: 6px;
  }
  .tabs::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 999px;
  }
  .form_row--cols3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .appHeader_inner {
    gap: 10px;
  }
  .appHeader_actions {
    gap: 6px;
  }
  .md3-btn {
    height: 34px;
    padding: 0 12px;
  }
  .panel_header {
    padding: 10px 12px;
  }
  .panel_body {
    padding: 10px 12px;
  }
  .tab {
    padding: 8px 10px;
  }
  .form_input {
    height: 38px;
  }
  .form_row--cols2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  html, body {
    font-size: 15px;
  }
  .form_row--cols3 {
    grid-template-columns: 1fr;
  }
  .appHeader_title h1 {
    font-size: 16px;
  }
  .appHeader_sub {
    display: none;
  }
  .appFooter_actions {
    gap: 6px;
  }
  .modal_card {
    min-width: 0;
    width: 100%;
    max-width: 100vw;
    padding: 12px;
    border-radius: 12px;
  }
  .table thead th, .table tbody td {
    padding: 8px 10px;
  }
}
/* =============================
   Search Page Styles (extracted from search.html)
   ============================= */
/* CSS Variables for search page */
:root {
  --md-ref-palette-primary40: #4A90E2;
  --md-sys-color-primary: #4A90E2;
  --md-sys-color-surface: #F8F9FA;
  --md-sys-color-on-surface: #1C1B1F;
  --md-sys-color-on-surface-variant: #49454F;
  --md-sys-color-surface-container-highest: #E6E0E9;
  --md-sys-color-outline: #79747E;
}

.search-header .header-left {
  padding-left: 10%;
  gap: 10px;
}
.search-header nav a {
  font-size: 1.8rem;
  font-weight: 600;
}
.search-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
}
.search-header .relative span {
  display: inline-block;
  padding: 0;
}
.search-header .relative input {
  display: inline-block;
  margin: 10px;
}

.search-main {
  max-width: 90%;
  font-size: 1.6rem;
  margin: 0 auto;
}
.search-main h1 {
  font-size: 2.4rem;
  font-weight: 700;
}
.search-main p {
  font-size: 1.6rem;
  font-weight: 400;
}
.search-main .mb-4 .relative {
  font-size: 1.6rem;
  font-weight: 400;
}
.search-main .mb-4 .relative .container {
  margin-left: 0;
  width: 70%;
  min-width: 600px;
}
.search-main table tr {
  height: 48px;
  font-size: 2rem;
}
.search-main table tr th {
  line-height: 48px;
}
.search-main .t-under {
  padding: 30px 0;
}
.search-main .search-box1 {
  display: flex;
  width: 300px;
  margin: 0 0 0 auto;
  position: relative;
}
.search-main .search-box1 span {
  display: inline-block;
  position: absolute;
  left: 120px;
  top: 12px;
}

.action {
  text-align: right;
  padding-right: 5%;
}

.md-input {
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 10px 12px;
  transition: all 0.3s;
}

.md-input:focus {
  outline: none;
  border-color: #6200ee;
  background-color: #fff;
  box-shadow: 0 0 0 2px rgba(98, 0, 238, 0.2);
}

.md-select {
  width: 180px;
  max-width: 100%;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 10px 12px;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 1em;
}

.md-select:focus {
  outline: none;
  border-color: #6200ee;
  background-color: #fff;
  box-shadow: 0 0 0 2px rgba(98, 0, 238, 0.2);
}

.md-button {
  background-color: #6200ee;
  width: 180px;
  color: white;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 4px;
  transition: background-color 0.3s, box-shadow 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.0892857143em;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.md-button:hover {
  background-color: #3700b3;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}

.md-button:disabled {
  background-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.38);
  box-shadow: none;
  cursor: not-allowed;
}

.search-box {
  background-color: #fff;
  width: 50%;
  padding: 0 30px;
}

.search-footer {
  padding: 30px 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.search-footer .footer-text {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  background-color: #fff;
}
.search-footer .search-footer-btn {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  column-gap: 50px;
  margin: 0 auto;
  color: white;
  font-weight: 500;
  padding: 10px 24px;
}
@media screen and (max-width: 1200px) {
  .search-footer .search-footer-btn {
    padding: 10px 5%;
  }
}
.search-footer .search-footer-btn button {
  background-color: #006ab6;
  min-width: 240px;
  padding: 20px 0;
  border-radius: 4px;
  transition: background-color 0.3s, box-shadow 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.0892857143em;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1200px) {
  .search-footer .search-footer-btn button {
    min-width: 180px;
  }
}
.search-footer .search-footer-btn button:hover {
  background-color: #fff;
  color: #827a74;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px;
}

.header-add {
  background-color: #fff;
  padding: 0 32px;
}
.header-add .nav-add {
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5%;
}
.header-add .nav-add a {
  /* 増加: メニューリンクを読みやすくする */
  font-weight: 600;
  border-bottom: 2px solid transparent;
  display: inline-flex;
  align-items: center;
}
.header-add .nav-add a.active {
  border-bottom-color: var(--accent-color);
}

@media screen and (max-width: 1200px) {
  .header-add .nav-add a {
    font-weight: 600;
  }
}

@media screen and (max-width: 1200px) {
  .header-add a {
    font-weight: 600;
  }
}

.title {
  display: flex;
  align-items: center;
  text-align: center;
  font-weight: 600; /* 読みやすさ向上 */
}

.title::before,
.title::after {
  content: "";
  flex: 1;
  border-bottom: 0.5px dashed #333;
}

.title::before {
  margin-right: 0.75em;
}

.title::after {
  margin-left: 0.75em;
}

.title span {
  white-space: nowrap; /* 長いタイトルでも改行しないように */
}

.dash-border {
  border-bottom: 0.5px dashed #333;
}/*# sourceMappingURL=style.css.map */

/* ===== マスタ一覧: 検索ツールバー・ページング（2026-07-12追加） ===== */
.search-toolbar {
  flex-wrap: wrap;
}

.search-toolbar .search-input {
  width: 180px;
  height: 34px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 0 10px;
  font-size: 14px;
}

.search-toolbar .search-input:focus {
  outline: none;
  border-color: #76abe9;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
}

.search-toolbar .per-select {
  height: 34px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 0 8px;
  font-size: 13px;
  margin-left: 4px;
}

.toolbar_spacer {
  margin-left: auto;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0;
}

.pagination_info {
  font-size: 12px;
  color: #4b5563;
}

.pagination_links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pagination_page,
.pagination_current,
.pagination_ellipsis {
  min-width: 28px;
  padding: 4px 6px;
  text-align: center;
  font-size: 13px;
  border-radius: 6px;
}

.pagination_page {
  color: #2563eb;
}

.pagination_page:hover {
  background: #eff6ff;
}

.pagination_current {
  background: #2563eb;
  color: #fff;
  font-weight: bold;
}
