@charset "UTF-8";
/* CSS Document */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

/* 通常のselectの文字色 */
select.mySelect {
	color: #000 ;
    border: 1px solid #dddddd;
    padding: 6px;
    border-radius: 4px;
}

/* placeholder 状態のselectの文字色 */
::-moz-placeholder {
  color: #ccc;
}

select.mySelect.placeholder, ::placeholder {
  color: #ccc;
}

input[type=date], input[type=tel], input[type=number], input[type=text] {
  color: #727272;	
}
input[type="date"] {
    width: 100%;
}
input[type="text"] {
    width: 100%;
}
select {
    width: 100%;
}
a {
	color: #5A5A5A ;
	text-decoration: underline;
}
a:hover {
	color: #00AA2B ;
}
.b-100vh {
  height: 100vh;
}

.flex-ce {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-end {
  justify-content: flex-end;
}

.pa-t-10 {
  padding-top: 10px;
}

.pa-t-50 {
  padding-top: 50px;
}

.pa-t-70 {
  padding-top: 70px;
}
.w-62 {
  width: 62px !important;
}

.min-w1400 {
  min-width: 1400px !important;
}

.min-w-none {
  min-width: unset !important;
}

.width-none {
  width: unset !important;
}

.pc {
  display: block;
}
.nondata {
	text-align: center;
	padding: 50px 0 ;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

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

.br-sp_580 {
  display: none;
}
@media screen and (max-width: 580px) {
  .br-sp_580 {
    display: block;
  }
}

.fff {
  color: #fff;
}
.fff:hover {
  color: #333;
}

.is-empty {
  color: #757575;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #727272;
  color: #fff;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 480px) {
  header {
    flex-direction: column;
    justify-content: center;
    padding: 5px;
  }
}
header .logo {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  header .logo {
    font-size: 14px;
  }
}
header .nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  header .nav-menu {
    font-size: 12px;
  }
}
header .nav-menu .nav-item {
  position: relative;
  cursor: pointer;
}
header .nav-menu .nav-item:hover .dropdown {
  display: block;
}
header .nav-menu .nav-item a {
  color: #fff;
  text-decoration: none;
}
header .nav-menu .nav-item .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #727272;
  padding: 5px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border: 1px solid #ddd;
  color: #fff;
  min-width: 150px;
  z-index: 1000;
}
header .nav-menu .nav-item .dropdown a {
  display: block;
  margin: 5px 0;
  color: #fff;
  display: block;
  padding: 5px;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.3s;
}
header .nav-menu .nav-item .dropdown a:hover {
  color: #333;
}
@media screen and (max-width: 480px) {
	header .nav-menu {
        font-size: 11px;
    }
	header .nav-menu {
		gap: 5px;
	}
	
}
.dashboard-container {
  padding: 20px;
  width: 90%;
  max-width: 1200px;
  margin: 0px auto 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .dashboard-container {
    width: 94%;
    margin: 0 auto 20px;
  }
}
.dashboard-container h1 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 768px) {
  .dashboard-container h1 {
    font-size: 16px;
    margin-bottom: 5px;
  }
}

.tablebox {
  overflow-x: auto;
}
.tablebox .tableinbox {
  min-width: 1000px;
  width: 100%;
  margin-inline: auto;
  border-collapse: collapse;
}
.tablebox .tableinbox table {
  width: 100%;
  border-collapse: collapse;
}
.tablebox .tableinbox table tr:nth-child(even) {
  background-color: #f9f9f9;
}
.tablebox .tableinbox table tr:hover {
  background-color: #f1f1f1;
}
.tablebox .tableinbox table tr th, .tablebox .tableinbox table tr td {
  border: 1px solid #ddd;
  padding: 5px;
  font-size: 13px;
}
@media screen and (max-width: 480px) {
  .tablebox .tableinbox table tr th, .tablebox .tableinbox table tr td {
    font-size: 12px;
    line-height: 1.2;
  }
}
.tablebox .tableinbox table tr th {
  background-color: #f2f2f2;
  color: #333;
  vertical-align: middle;
}
.tablebox .tableinbox .ta-a {
  margin-top: 20px;
}
.tablebox .tableinbox .ta-a tr th.wid-01 {
  width: 215px;
}
.tablebox .tableinbox .ta-a input {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}
.tablebox .tableinbox .ta-a input[readonly] {
  background-color: #e9ecef;
  cursor: not-allowed;
}

.body05 .tablebox .tableinbox {
  min-width: 580px;
}
.body05 .tablebox .tableinbox table tr th:nth-child(11) {
  width: unset;
}
.body05 .tablebox .tableinbox table tr th:first-child, .body05 .tablebox .tableinbox table tr th:last-child {
  width: unset;
}
.body11 .tablebox .tableinbox {
  min-width: 700px;
}
.body11 .tablebox .tableinbox table tr th {
  /*&:nth-child(11) {
      width: 150px;
  }
  &:first-child,&:last-child {
      width: 150px;
  }*/
}
.body11 .tablebox .tableinbox table tr td {
  width: calc(50% - 150px);
}

.login-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 400px;
  text-align: center;
}
.login-container h1 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #333;
}
.login-container .form-group {
  margin-bottom: 15px;
  text-align: left;
}

.login-container .form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
  color: #555;
}
.login-container .form-group input {
  width: 100%;
  padding: 10px;
  font-size: 13px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}
.login-container .form-group input:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 4px rgba(0, 123, 255, 0.5);
}

.form-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .form-container {
    width: 94%;
  }
}
.form-container h1 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .form-container h1 {
    margin-bottom: 3px;
    font-size: 16px;
  }
}
.form-container .form-group {
  margin-bottom: 10px;
  width: calc((100% - 75px) / 4);
}
@media screen and (max-width: 768px) {
  .form-container .form-group {
    width: calc((100% - 50px) / 3);
  }
}
@media screen and (max-width: 480px) {
  .form-container .form-group {
    width: calc((100% - 25px) / 2);
  }
}
.form-container .form-group label {
  display: block;
  font-size: 13px;
  line-height: 1;
  margin-bottom: 3px;
  color: #555;
  margin-top: 5px;
}
.form-container .form-group input, .form-container .form-group textarea, .form-container .form-group select {
  width: 100%;
  padding: 8px 10px 6px;
  font-size: 13px;
  line-height: 1.2;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}
.form-container .form-group textarea {
  resize: vertical;
}
.form-container .form-group input:focus, .form-container .form-group textarea:focus, .form-container .form-group select:focus {
  width: 100%;
  padding: 7px 10px 7px;
  font-size: 13px;
  line-height: 1.2;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}
.form-container .form-grid {
  display: flex;
  gap: 0px 25px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.form-container .g-t-a {
  grid-template-columns: 1fr 1fr;
}
.form-container .g-t-b {
  grid-template-columns: repeat(5, 1fr);
}
.form-container .result-table {
  min-width: 100%;
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.form-container .result-table th, .form-container .result-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
.form-container .result-table th {
  background-color: #f4f4f4;
  color: #333;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .form-container .result-table th {
    font-size: 13px;
  }
}
.form-container .result-table td {
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .form-container .result-table td {
    font-size: 12px;
  }
}

.body01 .form-container {
  max-width: 800px;
}
.body01 .form-container .form-group {
  width: 100%;
}

.table-container {
  padding: 10px 20px 20px;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.table-container h1 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}
.table-container table {
  width: 100%;
  border-collapse: collapse;
}
.table-container table th, .table-container table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}
.table-container table th {
  background-color: #f4f4f4;
}

.filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  margin-bottom: 20px;
}
.filter-container div {
  width: calc((100% - 75px) / 4);
}
@media screen and (max-width: 768px) {
  .filter-container div {
    width: calc((100% - 50px) / 3);
  }
}
@media screen and (max-width: 480px) {
  .filter-container div {
    width: calc((100% - 25px) / 2);
  }
}
.filter-container div:last-child {
  width: 100%;
}
.filter-container label {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .filter-container label {
    font-size: 12px;
  }
}
.filter-container input {
  padding: 5px;
  font-size: 13px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .filter-container input {
    font-size: 12px;
  }
}

.form-container1200 {
  padding: 20px;
  width: 90%;
  max-width: 1200px;
  margin: 20px auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 13px;
}
.form-container1200 h1 {
  font-size: 20px;
  font-weight: 700;
}

/*ログアウトボタン*/
.logout {
  background-color: #dc3545;
  padding: 5px 10px;
  border: none;
  font-size: 13px;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .logout {
    padding: 3px 5px 2px 7px;
  }
}
.logout:hover {
  background-color: #c82333;
}
.logout img {
  width: 20px;
}
@media screen and (max-width: 768px) {
  .logout img {
    width: 18px;
  }
}

/* 停止ボタン */
.stopbtn {
  background-color: #dc3545;
  padding: 5px 10px;
  border: none;
  font-size: 13px;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .stopbtn {
    padding: 3px 5px 2px 7px;
  }
}
.stopbtn:hover {
  background-color: #c82333;
}
.stopbtn img {
  width: 20px;
}
@media screen and (max-width: 768px) {
  .stopbtn img {
    width: 18px;
  }
}

/* 有効ボタン */
.enablebtn {
  background-color: #6ec62c;
  padding: 5px 10px;
  border: none;
  font-size: 13px;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .enablebtn {
    padding: 3px 5px 2px 7px;
  }
}
.enablebtn:hover {
  background-color: #48a800;
}
.enablebtn img {
  width: 20px;
}
@media screen and (max-width: 768px) {
  .enablebtn img {
    width: 18px;
  }
}

.btn {
  padding: 5px 10px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-edit {
  background-color: #28a745;
  color: #fff;
}
.btn-edit:hover {
  background-color: #218838;
}

.btn-stop {
  background-color: #dc3545;
  color: #fff;
}
.btn-stop:hover {
  background-color: #c82333;
}

.login-button {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.login-button:hover {
  background-color: #0056b3;
}

.submit-button {
  padding: 5px;
  font-size: 14px;
  background-color: #007bff;
  color: #fff;
  text-align: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.submit-button:hover {
  background-color: #0056b3;
}

.search-button {
  grid-column: span 2;
  padding: 5px 10px;
  font-size: 13px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.search-button:hover {
  background-color: #0056b3;
}

.action-button {
  padding: 5px 10px;
  font-size: 13px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #ddd;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}
@media screen and (max-width: 768px) {
  .action-button {
    font-size: 12px;
  }
}
.action-button:hover {
  background-color: #f4f4f4;
  border-color: #bbb;
}

.action-buttons {
  display: flex;
  gap: 10px;
}

.delete-button {
  background-color: #fff;
  border: 1px solid #dc3545;
  color: #dc3545;
}
.delete-button:hover {
  background-color: #f8d7da;
  border-color: #c82333;
  color: #c82333;
}

.update-button {
  grid-column: span 2;
  padding: 10px;
  font-size: 13px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.update-button:hover {
  background-color: #0056b3;
}

.save-button {
  background-color: #007bff;
}
.save-button:hover {
  background-color: #0056b3;
}

.cancel-button {
  background-color: #dc3545;
}
.cancel-button:hover {
  background-color: #c82333;
}

.sales-button {
  background-color: #000;
}

.edit-button {
  background-color: #007bff;
  color: #fff;
}
.edit-button:hover {
  background-color: #0056b3;
}

.button {
  padding: 10px 20px;
  font-size: 13px;
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .button {
    font-size: 12px;
  }
}
.button:hover {
  background-color: #218838;
}

.search-box {
  margin-bottom: 20px;
}
.search-box label {
  margin-right: 10px;
  font-weight: bold;
}
.search-box input {
  margin-right: 10px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.btn_bukken {
  padding: 2px;
  font-size: 11px;
  margin-left: 5px;
}

/* 親コンテナを横並びに配置 */
.csv-buttons {
  display: flex;
  justify-content: end;
  align-items: baseline;
  gap: 20px;
  margin-top: -10px;
}

/* 共通のボタンスタイル */
.csv-button {
  width: 40px; /* お好みの幅に調整 */
  height: 40px; /* お好みの高さに調整 */
  border: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  outline: none;
}

/* インポートボタンの背景画像 */
.import-button {
  background-image: url("./img/in.png");
}

/* エクスポートボタンの背景画像 */
.export-button {
  background-image: url("./img/ex.png");
}

.status-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 30px 0;
}

.status-container .status-box {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.status-container h2 {
  background-color: #f4f4f4;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
}

.status-container .status-list {
  list-style: none;
  padding: 0;
}

.status-container .status-list li {
  display: flex;
  justify-content: space-between;
      flex-wrap: wrap;
  padding: 5px 10px;
  border-bottom: 1px solid #ddd;
  width: 22%;
  display: inline-flex;
  margin-right: 2%;
}

.status-container .status-label {
  flex: 1;
}

.status-container .status-count {
  width: 50px;
  text-align: right;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .status-container .status-box {
    width: 100%;
    margin-bottom: 15px;
  }
	
  .status-container .status-list li {
	  width: 45%;
	  margin-right: 4%;
  }
}/*# sourceMappingURL=style.css.map */

.error-message {
	color: #C70000 ;
	font-size: 0.9rem ;
}
input.disabled {
	background-color: #e0e0e0;
	pointer-events: none;
	color: #888;
}
/* チェックボックスのデフォルトスタイルを維持 */
input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  display: inline-block;
  width: auto;
  height: auto;
  margin-right: 5px;
  vertical-align: middle;
}

/* ラベルと一緒に使いやすく */
label {
  font-size: 11px;
  cursor: pointer;
  user-select: none;
}

/* 2025-7-22 */
.pagination {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  margin-top: 20px;
  gap: 6px;
  flex-wrap: wrap;
}

.pagination a {
  color: #007bff;
  padding: 8px 14px;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.pagination a.active {
  background-color: #007bff;
  color: white;
  border: 1px solid #007bff;
}

.pagination a:hover:not(.active) {
  background-color: #f0f0f0;
}

/* 2025-7-23 */

a.jinushi_link {
    background: #000;
    color: #fff;
    padding: 3px 8px;
    text-decoration: none;
}
a.jinushi_link:hover {
    background: #424242;
}
.form-group label {
    font-weight: bold;
}
.owner-item {
    display: inline-block;
    width: 49%;
    font-size: 0;
}
.owner-group {
    padding: 20px 10px 0 10px;
    border-bottom: 5px solid #ffffff;
    background: #efefef;
}
input {
    background: #fff;
}
textarea {
    background: #fff;
	width: 100%;
  box-sizing: border-box;
}
button.add-btn, button.remove-btn {
    font-size: 14px;
}
button.add-chg-btn {
    background: #fff;
    padding: 1px 3px;
    border: 1px solid #424242;
}
input.chuden-futan_title {
	width: 67% ;
}
img.arr_window {
    width: 100%;
    max-width: 20px;
}