@import url("reset.css");
@import url(https://fonts.googleapis.com/css?family=Exo:100,200,400);

.dosp {
  display: none;
}
/* common */
:root {
  --color-pink: #ff9191;
  --color-blue: #91dbff;
  --color-blue2: #91ebff;
  --color-orange: #ffa591;
  --color-purple: #cb91ff;
  --color-yellow: rgb(253, 255, 130);
  --color-green: rgb(180, 255, 130);
  --color-gray: #777;
}
.bgYellow {
  background: var(--color-yellow) !important;
}
.bgBlue {
  background: var(--color-blue2) !important;
}
.fontL {
  font-size: 20px;
}
.fontXL {
  font-size: 24px;
}
.tac {
  text-align: center;
}
body {
  /* font-family: 'Noto Sans JP', sans-serif; */
  font-family: "メイリオ", "Meiryo", sans-serif;
  font-size: 14px;
  font-weight: 300;
  /* color: var(--color-gray); */
  color: #cbcbcb;
  /* background-color: #f5f5f5; */
  background-color: #0e1122;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* 水平スクロールを防ぐ */
  position: relative; /* 絶対配置の基準点 */
}
a:hover {
  color:#fff;
  text-shadow: 0 0 5px #00fffb;;
}
#wrapper {
  /* background: #dfdfdf; */
}
main {
  width: calc(100% - 10px);
  padding: 10px;
  min-height: 100vh;
}
aside {
  /* float: left; */
  width: 240px;
  height: 100vh;
  position: fixed;
  background: rgb(255 255 255 / 5%);
  background: -moz-linear-gradient(top, #1d1d26, #312f4c);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  height: 100vh;
  overflow-y: overlay;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

main .title {
  font-size: 18px;
  border-left: solid 5px #cccccc;
  color: CBCBCB;
  line-height: 30px;
  padding: 8px 5px 5px 10px;
  margin: 13px 0;
  font-weight: 400;
  position: relative;
}
main .title i {
  margin-right: 5px;
}

main .headinfo {
  position: relative;
  width: 100%;
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
}
main .headinfo .title {
  font-size: 18px;
  border-left: solid 5px #c0ff00;
  color: #cbcbcb;
  line-height: 14px;
  padding: 5px 5px 5px 5px;
  margin: 10px 0;
  height: 27px;
  font-weight: 400;
}
main .headinfo .title i {
  margin-right: 5px;
}

main .headinfo .loginName {
  color: #fff;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  text-align: center;
  padding: 0 10px;
  border-radius: 20px;
}

.mode2 main .headinfo .loginName {
  background: #dd1010;
  color: #fff;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  text-align: center;
  padding: 0 10px;
  border-radius: 20px;
}

article::after {
  content: "";
  display: block;
  clear: both;
}
.clear::before,
.clear::after {
  content: "";
  display: block;
  clear: both;
}
#modal .title {
  position: relative;
  font-size: 18px;
  border-left: solid 5px #c0ff00;
  color: #cbcbcb;
  line-height: 20px;
  padding: 8px 5px 5px 10px;
  margin: 13px 0;
  font-weight: 400;
  font-weight: bold;
  flex-wrap: wrap;
}
#modal .title .recentCallData {
  font-size: 12px;
  width: 100%;
  text-align: right;
}
footer #copyRight {
  text-align: center;
  color: var(--color-pink);
  background-color: #0e1122;
  font-size: 12px;
  line-height: 16px;
}
form {
  margin: 0;
}

input {
  color-scheme: dark;
  height: 30px;
  border: solid 1px #277c95;
  border-radius: 4px;
  transition: all 0.5s ease;
  background: #141523;
}
input[type="text"]:hover,
input[type="number"]:hover,
input[type="tel"]:hover,
select:hover {
  border: solid 1px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
  color: #fff;
  cursor: pointer;
}
input[type="text"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
select:focus {
  border: solid 1px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
  color: #fff;
  cursor: pointer;
}
input[type="checkbox"] {
  margin: 0 3px 0 0;
  appearance: auto;
  height: 15px;
  width: 15px;
  position: relative;
  top: 3px;
}
input[type="radio"] {
  margin: 0 6px 0 0;
  appearance: auto;
}
select {
  background: #141523;
  color-scheme: dark;
  border: solid 1px #277c95;
  border-radius: 4px;
  appearance: auto;
  transition: all 0.5s ease;
  height: 30px;
  padding: 0px;
  /* margin: 5px; */
}
select:focus {
  border: solid 1px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
}
textarea {
  color-scheme: dark;
  background: #282b3a;
  padding: 3px;
  transition: all 0.5s ease;
}
textarea:focus {
  border: solid 1px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
}
:focus {
  outline: none;
}
tbody {
  /* background-color: var(--theme-dark-color2); */
}

.table {
  width: 100%;
  margin-bottom: 20px;
}

.table th,
.table td {
  padding: 8px;
  line-height: 20px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #676b85;
}

input[type="tel"]::-webkit-outer-spin-button,
input[type="tel"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="tel"] {
  -moz-appearance: textfield;
}
input[readonly] {
  pointer-events: none;
  opacity: 0.5;
}
.bgw {
  background-color: #0e1122;
}
/* navi */
#navi .headLogo {
  padding: 10px;
  font-size: 17px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 0 5px #00fffb;
  font-family: "M PLUS Rounded 1c";
  text-align: center;
}
#navi .headLogo img {
  width: 200px;
  margin: 10px auto;
}

.mode2 #navi .headLogo {
  padding: 10px;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0;
  background: #dd1010;
  font-family: "M PLUS Rounded 1c";
  text-align: center;
}
#navi .headLogo span {
  font-size: 10px;
  padding-left: 4px;
}
#navi .loginName {
  background: #282b3a;
  color: #fff;
  /* height: 20px; */
  /* line-height: 20px; */
  font-size: 14px;
  text-align: center;
  padding: 5px 0;
}
#navi .trialRemainDay {
  text-align: center;
  font-size: 11px;
  background: #c6c8d1;
  color: #282b3a;
}
#navi ul:nth-child(1) {
  margin-top: 40px;
  border-bottom: solid 1px #efefef;
}
#navi ul {
  /* font-size: 18px; */
  justify-content: flex-start;
  /* margin-top: 20px; */
}
#navi ul li {
  width: 100%;
  padding: 5px;
  border-bottom: 1px solid #676b85;
}
#navi ul li a {
  transition: all 0.5s ease;
}
.mode2 #navi ul li a {
  color: #fff;
  text-shadow: 0 0 5px #00fffb;
}
#navi ul li i {
  width: 30px;
  text-align: center;
}
#navi ul li.current {
  background-color: #0e1122;
  background: #282b3a;
  /* border-left: solid 5px var(--color-pink); */
  border-left: solid 5px #ffffff;
}
#navi ul li.current a {
  color: #fff;
  font-weight: bold;
  text-shadow: 0px 1px 0px #282b3a;
}
#navi .title {
  font-size: 16px;
  color: #cbcbcb;
  line-height: 20px;
  padding: 5px;
  margin-top: 10px;
  font-weight: bold;
}
.mode2 #navi ul li.current {
  background-color: #0e1122;
  background: #fb6b6b;
  /* border-left: solid 5px var(--color-pink); */
  border-left: solid 5px #dd1010;
}
.mode2 #navi ul li.current a {
  color: #fff;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 5px #00fffb;
}
#navi .rockClearBtn {
  background: rgb(238, 65, 65);
  margin: 5px;
}

/* commonHeader */
#commonHeader {
  font-size: 22px;
  font-weight: 500;
  border-bottom: solid 3px var(--color-gray);
}
#commonHeader li {
  margin: 10px;
  line-height: 40px;
}
#commonHeader li span {
  position: relative;
  font-size: 30px;
  line-height: 20px;
  color: #fff;
  text-shadow: 0 0 5px #00fffb;
  margin-left: 10px;
  padding: 0 10px;
}
/* index */
#index table,
#index th,
#index td {
  border: none;
}
#index th {
  font-weight: 400;
}
#index th label {
  background: #164551;
  text-align: left;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  position: relative;
  /* top: -2px; */
  width: 100%;
  display: inline-block;
  border-radius: 3px;
}
#index.mode2 th label {
  background: #8d5a5a;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  position: relative;
  top: -2px;
  border-radius: 3px;
}

#index td {
  text-align: left;
}
#index table {
  width: 90%;
  margin: 0 5%;
}
#index #panel {
  font-family: "Exo", sans-serif;
  width: 400px;
  height: auto;
  background-color: #0e1122;
  padding: 20px;
  /* border: solid 1px #ccc; */
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  position: fixed;
  top: calc(50% - 135px);
  left: calc(50% - 200px);
  /* box-shadow: 0px 5px 10px #ccc; */
  border: solid 1px #83bbcb;
  border-radius: 3px;
}
#index #indexLogo {
  margin: 30px auto 10px;
  width: 200px;
}
#index input[type="text"],
#index input[type="password"] {
  width: 100%;
  height: 38px;
  width: 200px;
  margin: 5px;
  border-width: 0px;
  border-style: None;
  background-color: var(--theme-dark-color1);
  color: #fff;
  outline: none;
  padding: 0 5px;
  color-scheme: dark;
  border: solid 1px #277c95;
  border-radius: 4px;
  font-size: 18px;
  font-family: "Exo", sans-serif;
  /* transition: box-shadow 0.5s ease; */
}
#index input[type="text"]:focus,
#index input[type="password"]:focus {
  border: solid 1px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  font-size: 18px;
  font-family: "Exo", sans-serif;
  outline: none;
}
#index input[type="submit"] {
  font-family: "Exo", sans-serif;
  width: 200px;
  height: 40px;
  text-align: center;
  font-weight: bold;
  margin: 5px;
  border: 1px solid #191f61;
  border-radius: 4px;
  cursor: pointer;
  border-radius: 2px;
  font-family: "Exo", sans-serif;
  font-size: 16px;
  margin-top: 10px;
  transition: all 0.5s ease;
}
#index input[type="submit"]:hover {
  color: #fff;
  text-shadow: 0 0 5px #fff;
  letter-spacing: 3px;
  text-indent: 3px;
  border: 1px solid #fff;
  box-shadow: inset 0 0 5px #fff, inset 20px 0 40px #f0f,
    inset -20px 0 40px #0ff, inset 20px 0 200px #f0f, inset -20px 0 200px #0ff,
    0 0 20px #fff, -10px 0 40px #f0f, 10px 0 40px #0ff;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
  transition: background-color 0s 600000s, color 0s 600000s;
}
input:autofill,
input:autofill:focus {
  transition: background-color 0s 600000s, color 0s 600000s;
}

textarea {
  border: 1px solid #277c95;
  border-radius: 4px;
  background: #141523;
  margin: 5px;
}
/*
.login input[type=button]:hover {
  opacity: 0.8;
}

.login input[type=button]:active {
  opacity: 0.6;
}
.login input[type=button]:focus {
  outline: none;
}
*/
::-webkit-input-placeholder {
  /* color: rgba(255, 255, 255, 0.6); */
}

::-moz-input-placeholder {
  /* color: rgba(255, 255, 255, 0.6); */
}
#index #loginbtn {
  width: 50%;
  margin: 10px 25%;
  border: none;
  color: #fff;
  background: #1c2d43;
  line-height: 35px;
  height: 40px;
  border-radius: 100vh;
}
#index.mode2 #loginbtn {
  background: #f01d1d;
  width: 50%;
  margin: 10px 25%;
  border: none;
  color: #fff;
  line-height: 40px;
  height: 40px;
  border-radius: 100vh;
}
.error {
  color: #fff;
  /* box-shadow: 0px 3px 5px #ccc; */
  margin-bottom: 5px;
  font-size: 12px;
  text-align: center;
  background: #ff386a;
  /* height: 20px; */
  border-radius: 3px;
  padding: 5px;
}
/* top */

/* tableCommon */
table {
  border: solid 1px #ccc;
  border-collapse: collapse;
  background-color: #0e1122;
}
thead {
  font-weight: bold;
  background: #282b3a;
  color: #fff;
}
th,
td {
  border: solid 1px #676b85;
  border-collapse: collapse;
  border-spacing: 0;
  padding: 6px 3px;
}
.w100 {
  width: 100%;
}

.dataBox th,
.dataBox .head {
  background: #282b3a;
  color: #fff;
  text-align: left;
}
.mode2 .dataBox th,
.dataBox .head {
  background: #8d5a5a;
  color: #fff;
  text-align: left;
}

.dataBox td {
  padding: 6px 6px;
}

@keyframes flash {
  50% {
    opacity: 1;
  }
}
tr.active {
  color: #fff;
  background: #ff9191;
  font-weight: bold;
  cursor: pointer;
}
/* .btn */
.btn {
  display: inline-block;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  font-weight: bold;
  color-scheme: dark;
  padding: 5px;
  margin: 5px;
  border: solid 1px #277c95;
  border-radius: 4px;
  transition: all 0.5s ease;
  background: #141523;
  font-size: 15px;
  line-height: 23px;
}
.btn:hover {
  border: solid 1px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
  color: #fff;
  cursor: pointer;
}
.btn-mini {
  padding: 0 6px;
  font-size: 10.5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.btn.inline {
  display: inline-block;
  padding: 0 5px;
  float: right;
}
.title .btn {
  display: inline-block;
  margin-left: 10px;
  height: 30px;
  line-height: 29px;
  font-size: 16px;
  padding: 0 8px;
  position: relative;
  top: -6px;
}
td .btn:nth-child(n + 2) {
  margin-top: 5px;
}
.btn.edit {
  /* background: var(--color-green); */
}
.mode2 .btn.edit {
  /* background: var(--color-green); */
  background: #dd1010;
}
.btn.disabled {
  /* background: var(--color-green); */
  background: #cccccc52;
}
#modalUsageListWrapper .btn.disabled {
  /* background: var(--color-green); */
  background: #ccc;
  display: none;
}
.btn.delete {
  background: var(--color-pink);
  height: 30px;
  font-size: 14px;
  padding: 0 20px;
}
.btn.add {
  height: 30px;
  font-size: 14px;
  padding: 0 20px;
}
.mode2 .btn.add {
  background: #dd1010;
  height: 30px;
  font-size: 14px;
  padding: 0 20px;
}
.btn.reload {
  background: var(--color-purple);
}
.btn.saveBtn {
  /* background: #0e1122; */
  border: solid 1px #277c95;
  font-size: 14px;
}
.btn.usageAdd {
  /* background: #0e1122; */
  border: solid 1px #277c95;
  font-size: 14px;
}
.footerInfoArea {
  margin-left: auto;
  font-weight: bold;
  padding-right: 10px;
}
.footerInfoArea .lastEditor {
  color: #adff71;
}
.footerInfoArea .recentCallData {
  color: #ff53b1;
}
.footerInfoArea .recentCallData .recentCallShopName {
  font-size: 12px;
  font-weight: normal;
  line-height: 2px;
}
#usageData .footer .recentCallData {
  position: relative;
  /* float: right; */
}
.dataDelete {
  background: #3b1117;
  border: solid 1px #950a0a;
  padding: 0 10px;
  margin-top: 10px;
  display: inline-block;
}
/* #latest */
#latestList tbody tr:hover {
  background: #613310 !important;
  cursor: pointer;
}
#latestList th:nth-child(1) {
  width: 35px;
}
#latestList th.col1 {
  width: 35px;
}
#latestList th.col2 {
  width: 165px;
}
#latestList th.col3 {
  width: 70px;
}
#latestList th.col4 {
  width: 160px;
}
#latestList th.col5 {
  width: 125px;
}
#latestList th.col6 {
}
tbody tr.current {
  position: relative;
  opacity: 1;
  /* background-color: #004973; */
  /* box-shadow: #00fffb 0 0 5px 1px inset; */
  /* animation: flash 1.5s infinite linear; */
}
/* #history */
#historyList tbody tr:hover {
  background: #12dadb26 !important;
  cursor: pointer;
  font-weight: bold;
}
#historyList tbody tr.current {
  position: relative;
}
#historyList tbody tr.current {
  background: #27769563;
  text-shadow: 0 0 5px #fff;
  color: #ffffff;
  font-weight: bold;
  box-shadow: 0 0 10px #9de3fb inset, 0 0 10px #9de3fb;
}
/* history */
#searchBox {
  width: 100%;
  background: #282b3a;
  border: 1px solid #676b85;
  border-radius: 10px;
  padding: 10px;
  position: relative;
}
#searchBox ul {
  padding: 0;
  align-items: center;
}
#searchBox ul:nth-child(2) {
  border: none;
}
#searchBox li {
  margin: 5px 5px;
}
#searchBox .searchBtn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 12px;
  border-radius: 3px;
  line-height: 32px;
  padding: 0 20px;
  color: #fff;
  font-weight: 600;
  /* background-image: -webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%); */
  background-image: -o-linear-gradient(top, #f0ad4e 0, #eb9316 100%);
  /* background-image: -webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316)); */
  /* background-image: linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%); */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background: #3f200d;
  background-repeat: repeat-x;
  border-color: #e38d13;
  border: 1px solid #eb961e;
  cursor: pointer;
}
#searchBox .resetBtn {
  position: absolute;
  bottom: 10px;
  right: 98px;
  font-size: 12px;
  border-radius: 3px;
  line-height: 32px;
  padding: 0 20px;
  color: #a7a7a7;
  /* background: #ebedee; */
  /* background: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#ebedee)); */
  /* background: -webkit-linear-gradient(top, #fdfbfb 0%, #ebedee 100%); */
  /* background: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%); */
  /* -webkit-box-shadow: inset 1px 1px 1px #fff; */
  /* box-shadow: inset 1px 1px 1px #fff; */
  cursor: pointer;
}

#searchBox #startDate,
#searchBox #endDate,
#searchBox #operationDate {
  width: 120px;
}
#searchBox #startTime,
#searchBox #endTime {
  width: 50px;
}
#searchBox .mr10 {
  margin-right: 10px;
}
#searchBox #customerId {
  width: 80px;
}
#searchBox #customerName {
  width: 150px;
}
#searchBox #tel {
  width: 115px;
}
#searchBox #address {
  width: 300px;
}
#searchBox #girl {
  width: 150px;
}
#searchBox #nominateType {
  width: 50px;
}
#searchBox #freeWord {
  width: 500px;
}
#searchBox .configured {
  background: #00353b;
  text-shadow: 0 0 5px #fff;
}
/* 
#historyList th:nth-child(1) {
  width: 35px;
}
#historyList th:nth-child(2) {
  width: 35px;
}
#historyList th:nth-child(3) {
  width: 165px;
}
#historyList th:nth-child(4) {
  width: 70px;
}
#historyList th:nth-child(5) {
  width: 160px;
}
#historyList th:nth-child(6) {
  width: 125px;
}
#historyList th:nth-child(7) {
} */

/* #usage */
#usage table {
  width: 100%;
}
/*
#usageList th:nth-child(1) {
  width: 35px;
}
#usageList th:nth-child(2) {
  width: 142px;
}
#usageList th:nth-child(3) {
  width: 70px;
}
#usageList th:nth-child(4) {
  width: 200px;
}
#usageList th:nth-child(5) {
  width: 125px;
}
#usageList th:nth-child(6) {
  width: 100px;
}
#usageList th:nth-child(7) {
  width: 85px;
}
#usageList th:nth-child(8) {
  width: 40px;
}
#usageList th:nth-child(9) {
  width: 65px;
}
#usageList th:nth-child(10) {
}
#usageList th:nth-child(11) {
  width: 70px;
}
*/
#usage table tbody tr:hover {
  background: #12dadb26 !important;
}
#usage table tbody tr.current {
  background: #12dadb26 !important;
  text-shadow: 0 0 5px #fff;
  color: #ffffff;
  font-weight: bold;
  box-shadow: 0 0 10px #9de3fb inset, 0 0 10px #9de3fb;
}
#reservationCounter {
  font-size: 12px;
  text-align: center;
}
#reservationCounter li {
  height: 35px;
  cursor: pointer;
  margin: 0 3px;
  border: solid 1px #676b85;
  border-radius: 3px;
  padding: 4px;
  display: block;
}
#reservationCounter li.sat {
    background: #10486b;
}
#reservationCounter li.sun {
    background: #612b33;
}
#reservationCounter .todayCount {
    color: #ccc;
    height: 13px;
    line-height: 13px;
    font-weight: bold;
}
#reservationCounter .schedule-count {
  color: #f00085;
}
#reservationCounter .reservation-count {
  color: #00b7f0;
}
/* ホバー時の表示も調整 */
#reservationCounter li.today-highlight:hover {
  background-color: #5a6088;
}
/* 選択されている日付のスタイル */
#reservationCounter li.current {
  background-color: #fff !important;
  color: #333 !important;
  font-weight: bold;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); /* 少し影をつける */
  position: relative; /* 疑似要素のために必要 */
}

/* current クラスのホバー時は色を変えない */
#reservationCounter li.current:hover {
  color: #ccc;
}
/* #usage table td:nth-child(8) {
  text-align: right;
}
#usage table td:nth-child(9) {
  text-align: right;
} */
/* #customer */
#customer table {
  width: 100%;
}
/*
#customerList th:nth-child(1) {
  width: 70px;
}
#customerList th:nth-child(2) {
  width: 225px;
}
#customerList th:nth-child(3) {
  width: 165px;
}
#customerList th:nth-child(4) {
  width: 70px;
}
#customerList th:nth-child(5) {
  width: 125px;
}
#customerList th:nth-child(6) {
}
#customerList th:nth-child(7) {
  width: 70px;
}
*/
#customer table tbody tr:hover {
  background: #613310 !important;
}
#customer.mode2 table tbody tr:hover {
  background: #fbe5e5 !important;
}
#customerAddBtn {
    color: #fff;
    height: 30px;
    font-size: 14px;
    padding: 0 20px;
    margin-left: auto;
    top: 0px;
    position: relative;
}
.commonButton {
  color: #fff;
  height: 30px;
  font-size: 14px;
  padding: 0 20px;
  border: 0;
  line-height: 30px;
}
.mode2 #customerAddBtn {
  background: #dd1010;
  color: #fff;
  height: 30px;
  font-size: 14px;
  padding: 0 20px;
}
.mode2 .commonButton {
  background: #dd1010;
  color: #fff;
  height: 30px;
  font-size: 14px;
  padding: 0 20px;
  border: 0;
}
.mode2 #customer table tbody tr:hover {
  background: #fbe5e5 !important;
  cursor: pointer;
}

/* config */
#config .configBox li {
  width: 100%;
  line-height: 30px;
  font-weight: bold;
}
#config .fa-eye {
  color: #fff;
  text-shadow: 0 0 5px #00fffb;
}
#config .fa-eye-slash {
  opacity: 0.5;
}
/* modal */
#modal {
  position: relative;
  padding: 30px;
  width: 100%;
  max-width: 850px;
}
#modal #modalClose {
  position: absolute;
  font-size: 40px;
  right: 10px;
  top: 0;
  height: 40px;
  line-height: 40px;
}
#modal table {
  width: 100%;
  background-color: #0e1122;
}

#slipListWrapper {

}
#slipListWrapper .footer {
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 0px 5px;
  width: calc(100%);
  position: relative;
  top: 0px;
}
#slipListWrapper .footer .saveBtn {
  /* height: 40px; */
  line-height: 15px;
}
#slipListWrapper li {
  vertical-align: middle;
  line-height: 20px;
}
#customerDataList textarea {
  width: 100%;
  height: 80px;
  margin-bottom: 0;
}
#customerData form {
  display: inline;
}
#customerData .add {
  color: #fff;
}
#customerData #customerPointBox th:first-child {
  background: #ee0000;
}
#customerData #customerPointBox span {
  color: #ee0000;
  font-weight: bold;
  padding: 5px;
  font-size: 20px;
  line-height: 0px;
}
#customerData #customerPointBox .pointEdit {
  display: inline;
  height: 20px;
  font-size: 14px;
  padding: 2px 6px;
  position: relative;
  top: -3px;
}
#usageStatistics th {
  width: 80px;
  font-weight: 400;
  background: #282b3a;
  color: #fff;
}
#usageStatistics td {
  font-weight: 600;
}

#usageCastList ul {
  width: 100%;
  background-color: #0e1122;
  border-radius: 6px;
  padding: 10px;
  position: relative;
  box-shadow: 0 0 5px #277c95 inset;
  border: 1px solid #277c95;
}
#usageCastList ul li {
  margin-right: 10px;
}
#usageCastList ul li.honshiExist {
  color: #ff5d74;
  font-weight: bold;
}

#usageCastList .title .col1 {
  font-size: 14px;
  color: #ff5d74;
}
#usageList .point {
  color: #23b943;
  font-weight: bold;
  text-align: right;
}
.slipList {
  padding: 10px 10px 0px 10px;
  position: relative;
}
.slipList.current {
  background: #004973;
}
.slipList ul {
  margin-bottom: 5px;
}
.slipList ul:last-child {
  border: none;
  margin-bottom: 0;
}
.slipList ul:first-child li:nth-last-child(2) {
  font-weight: bold;
  line-height: 29px;
}
.slipList ul:first-child li:last-child {
  /* margin-left: auto; */
  font-weight: bold;
  line-height: 34px;
}
/*
.slipList ul:nth-child(4) li:last-child {
    margin-left: auto;
    font-weight: bold;
}
.slipList ul:nth-child(4) li:last-child span {
    color: #dd1010;
    font-weight: bold;
    font-size: 22px;
    display: inline-block;
    margin: 0 5px;
    position: relative;
    top: 3px;
    line-height: 0px;
}
*/
.slipList ul:nth-child(3) li:last-child {
  /* margin-left: auto; */
  font-weight: bold;
}
.slipList ul.optionBox {
}

.slipList ul.otherList {
}

.slipList li {
  margin: 0 5px;
  line-height: 32px;
  height: 32px;
}
.slipList li label.slipnum {
  background: #282b3a;
  color: #fff;
  padding: 2px 5px;
  position: relative;
  top: 3px;
}
.slipList .optionBox li {
  margin-bottom: 5px;
}
.slipList li .startDate {
  width: 140px;
}
.slipList li .startTime {
  width: 55px;
}
.slipList li .girlName {
  width: 150px;
}
.slipList li .nominate {
  width: 115px;
}
.slipList li .course {
  width: 55px;
}
.slipList li .price {
  width: 85px;
}
.slipList li .address {
  width: 320px;
}
.slipList li .roomNumber {
  width: 50px;
}
.slipList li textarea {
  margin: 0;
  padding: 5px;
  width: 820px;
  height: 105px;
}
.slipList #pointEditBox li {
  /* width: calc(50% - 10px); */
}
#pointEdit .slipList #pointEditBox li {
  width: 100%;
}
#pointEdit #remark {
  width: 760px;
}
.slipList .fwb {
  font-weight: bold;
}
.slipList #pointEditBox #calcPrice {
  font-weight: bold;
  font-size: 30px;
  position: relative;
  top: 6px;
  padding: 5px;
  height: 38px;
  line-height: 30px;
  display: inline-block;
  border: solid 1px #4381c9;
  margin-right: 5px;
  border-radius: 3px;
  color: #4381c9;
}
.slipList #pointEditBox #pointAdd {
  font-weight: bold;
  font-size: 30px;
  position: relative;
  top: 6px;
  padding: 5px;
  height: 38px;
  line-height: 30px;
  display: inline-block;
  border: solid 1px #23b943;
  margin-right: 5px;
  border-radius: 3px;
  color: #23b943;
}
.slipList #pointEditBox #pointResult {
  font-weight: bold;
  font-size: 30px;
  position: relative;
  top: 6px;
  padding: 5px;
  height: 38px;
  line-height: 30px;
  display: inline-block;
  border: solid 1px #ff8239;
  margin-right: 5px;
  border-radius: 3px;
  color: #ff8239;
}
.slipList #pointEditBox #pointScore {
  font-weight: bold;
  font-size: 30px;
  padding: 5px;
  height: 38px;
  line-height: 30px;
  border: solid 1px #23b943;
  margin-right: 5px;
  border-radius: 3px;
  overflow: hidden;
  color: #23b943;
  width: 100px;
  position: relative;
  top: 6px;
  padding-top: 8px;
  text-align: right;
}
.slipList #pointEditBox #pointScore.minus {
  border: solid 1px #ee0000;
  color: #ee0000;
}
.slipList #currentTimeRegister {
  background: #f6f6f6;
  border: solid 1px #ccc;
  padding: 3px;
  border-radius: 3px;
  cursor: pointer;
}
.slipList #currentTimeRegister:hover {
  background: #f8ffda;
}
.slipList .recentCallData {
  background: none;
  border: 0;
  top: 3px;
}
.slipList hr {
  margin: 0;
}
#staffPassword {
  width: 53px;
  margin: 0 10px;
}
.select2-container .select2-selection--single {
  height: 31px !important;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 31px !important;
}
.select2-results__options {
  display: block;
}
.select2-results__option {
  width: 100%;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 30px !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  margin-left: -4px !important;
  margin-top: -4px !important;
}
/* pager */
.pager {
  margin-top: 10px;
  position: relative;
  min-height: 30px;
}

.pager ul {
  width: 300px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.pager ul li {
  width: 30px;
  height: 30px;
  margin: 0 1px;
  padding: 0;
  text-align: center;
  line-height: 30px;
}

.pager ul li span,
.pager ul li a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 18px;
}

.pager ul li a {
  color: #666;
  text-decoration: none;
}

.pager ul li a.current {
  color: #fff;
}

.mode2 .pager ul li a.current {
  background: #dd1010;
  color: #fff;
}
.pager .counter {
  position: absolute;
  bottom: 0;
  left: 10px;
  border-bottom: solid 2px #d9d9d9;
}
/* stickey */
thead th {
  background: #282b3a;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  /* tbody内のセルより手前に表示する */
  z-index: 1;
}
/* stickey */
.mode2 thead th {
  background: #8d5a5a;
  /* 縦スクロール時に固定する */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  /* tbody内のセルより手前に表示する */
  z-index: 1;
}

/* loader */
.loading {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  height: 100vh;
  top: 0;
  width: 100vw;
  z-index: 9999;
  display: none;
}
.modalLoading {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  height: 100vh;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 9999;
  display: none;
}
.spinner {
  position: fixed;
  width: 50px;
  height: 50px;
  top: calc(50% - 50px / 2);
  left: calc(50% - 50px / 2);
}
.spinner .cube1,
.spinner .cube2 {
  background-color: #fff;
  box-shadow: #00fffb 0 0 5px;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: cubemove 1.8s infinite ease-in-out;
  animation: cubemove 1.8s infinite ease-in-out;
}
.spinner .cube2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.mode2 .spinner {
  position: fixed;
  width: 50px;
  height: 50px;
  top: calc(50% - 50px / 2);
  left: calc(50% - 50px / 2);
}
.mode2 .spinner .cube1,
.mode2 .spinner .cube2 {
  background-color: #f01d1d;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: cubemove 1.8s infinite ease-in-out;
  animation: cubemove 1.8s infinite ease-in-out;
}
.mode2 .spinner .cube2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes cubemove {
  25% {
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
    transform: translateX(42px) rotate(-90deg) scale(0.5);
  }
  50% {
    -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
    transform: translateX(42px) translateY(42px) rotate(-179deg);
  }
  50.1% {
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
    transform: translateX(42px) translateY(42px) rotate(-180deg);
  }
  75% {
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg)
      scale(0.5);
    transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes cubemove {
  25% {
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
    transform: translateX(42px) rotate(-90deg) scale(0.5);
  }
  50% {
    -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
    transform: translateX(42px) translateY(42px) rotate(-179deg);
  }
  50.1% {
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
    transform: translateX(42px) translateY(42px) rotate(-180deg);
  }
  75% {
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg)
      scale(0.5);
    transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

/* config */
#colorPickerBox {
  position: relative;
  top: 5px;
  height: 30px;
}
#sequenceSettingList {
  margin-bottom: 20px;
  background-color: #0e1122;
  width: 600px;
}
#sequenceSettingList li {
  width: calc((100% - 24px) / 6);
  border: solid 1px #ccc;
  margin: 2px;
  cursor: pointer;
}
#sequenceSettingList li label {
  display: block;
  cursor: pointer;
}
#mediaSettingList {
  margin-bottom: 20px;
  background-color: #0e1122;
  width: 600px;
}
#mediaSettingList li {
  width: calc((100% - 24px) / 2);
  border: solid 1px #ccc;
  margin: 2px;
  cursor: pointer;
}
#mediaSettingList li.disabled1 {
  opacity: 0.5;
}
#mediaSettingList li.disabled1 .mediaDelete {
  background: #ccc;
}
#mediaSettingList li label {
  display: block;
  cursor: pointer;
}
/* datepicker */
.ui-datepicker td {
  width: calc(100% / 7);
}
/* select2 */
.select2-container--default .select2-results > .select2-results__options {
  max-height: 528px;
  overflow-y: auto;
}
/* 20220715 */
#shopDisplayModeInfo {
  float: right;
  font-size: 12px;
  color: #666;
  position: relative;
  top: 15px;
  right: 10px;
}
#shopDisplayModeInfo i {
  color: #23b943;
}
/* 20220726 */
#config .subTitle {
  font-weight: bold;
  margin: 10px 0;
}
#pointConfig #pointList li {
  width: 100%;
}
#staffConfig #staffRegistList li {
  position: relative;
  width: 100%;
}
#staffConfig #staffRegistList li .remark {
  position: absolute;
  left: 198px;
  font-size: 12px;
}
#staffConfig #staffList {
  margin-top: 30px;
}
#staffConfig #staffList caption {
  text-align: left;
  font-weight: bold;
  font-size: 16px;
}
#staffConfig #staffList tr.disabled {
  background: #ccc;
}
#staffConfig #staffList .disabled {
  background: #111;
}
#staffConfig #staffList .enabled {
}
#staffConfig #staffList tr.rocked {
  background: rgb(255 195 195);
}
#staffConfig #staffList .rocked {
  background: rgb(238, 65, 65);
}
#staffConfig #staffList .statusChangeBtn.rocked {
  pointer-events: none;
}
#staffConfig #masterPassword {
  text-align: center;
  border: solid 1px #ccc;
}
#pointList th:nth-child(1) {
  width: 145px;
  text-align: center;
}
#pointList th:nth-child(2) {
  width: 150px;
}
#pointList th:nth-child(3) {
  width: 80px;
  background: #23b943;
}
#pointList th:nth-child(4) {
  width: 80px;
  background: #ff5d74;
}
#pointList td:nth-child(3) {
  color: #23b943;
  text-align: right;
  font-weight: bold;
}
#pointList td:nth-child(4) {
  color: #ff5d74;
  text-align: right;
  font-weight: bold;
}
#pointUse,
#pointRatio {
  width: 75px;
}
#calcPrice,
#pointAdd {
  width: 135px;
  text-align: right;
}
.config-tabs {
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.tab-nav {
  display: flex;
  margin: 0;
  list-style: none;
  border-bottom: 1px solid #676b85; /* ダークモードに合わせて変更 */
  flex-wrap: wrap;
}

.tab-nav-item {
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  background: #141523; /* ダークモードに合わせて変更 */
  transition: all 0.3s ease;
  color: #cbcbcb; /* ダークモードに合わせて変更 */
  font-size: 14px;
  border: 1px solid #277c95; /* ダークモードに合わせて変更 */
}

.tab-nav-item:hover {
  border: solid 1px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
}

.tab-nav-item.active {
  color: #fff;
  background: #0ecaf6c2;
  border: none;
  box-shadow: 0 0 5px #6de3ff;
  text-shadow: 0 0 5px #fff;
}
#pricing .configBox {
  width: 100%;
}
/*courseUpdate*/

/*customer data*/
#weekSettingList td:has(input[type="checkbox"]:checked) {
  background: #e8f1ff;
}
#weekSettingList tr:nth-child(7) td:has(input[type="checkbox"]:checked) {
  background: #e8ffed;
}
#weekSettingList tr:nth-child(8) td:has(input[type="checkbox"]:checked) {
  background: #ffece8;
}
#weekSettingList tr:nth-child(9) td:has(input[type="checkbox"]:checked) {
  background: #fff7e8;
}
#weekSettingList td.selected {
  background: #e8f1ff;
}
#weekSettingList tr:nth-child(7) td.selected {
  background: #e8ffed;
}
#weekSettingList tr:nth-child(8) td.selected {
  background: #ffece8;
}
#weekSettingList tr:nth-child(9) td.selected {
  background: #fff7e8;
}
#weekSettingBox {
  margin-top: 10px;
  border-top: solid #ccc 1px;
  padding-top: 10px;
}
#settingBoxShowBtn {
  font-weight: bold;
  padding: 2px;
  font-size: 12px;
  margin-left: 5px;
  color: #cbcbcb;
  border-radius: 3px;
  padding: 2px 5px;
  border: solid 1px #333;
  cursor: pointer;
}
#settingBoxShowBtn.enabled {
  background: #f59d5f;
  color: #fff;
  border: solid 1px #c39371;
}
#settingBoxNow.enabled {
  background: #f01d88;
  font-weight: bold;
  padding: 2px;
  font-size: 12px;
  color: #fff;
  border-radius: 3px;
  padding: 2px 5px;
  border: solid 1px #b5256e;
  cursor: pointer;
}
#settingBoxNow input {
  position: relative;
  top: 2px;
  left: 5px;
}
#settingBoxNow.enabled::after {
  content: "中";
}
#isAvailableCallNow {
  background: #23b943;
  font-weight: bold;
  padding: 2px;
  font-size: 12px;
  margin-right: 5px;
  color: #ff0;
  border-radius: 3px;
  padding: 2px 5px;
  border: solid 1px #1b7a2f;
  cursor: pointer;
}
#searchBox .select2-selection__rendered {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  line-height: 25px;
}
#searchBox .select2-selection__rendered .select2-selection__choice {
  color: #fff;
  padding: 2px 5px 2px 22px;
  height: 26px;
  line-height: 22px;
  margin: 2px 2px 0 2px;
}
#searchBox
  .select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove {
  color: #fff;
  height: 30px;
  line-height: 24px;
}
.select2-results__option[aria-selected="true"] {
  background: #b5e1ff;
}
#searchBox .select2-selection--multiple {
  border: solid 1px #ccc;
  min-height: 32px;
  padding-bottom: 2px;
}
#searchBox .select2-selection--multiple li {
  margin: 0;
  line-height: 24px;
}
#searchBox .select2-container--default.select2-container--focus {
  border: solid 1px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
  color: #fff;
  cursor: pointer;
}
#searchBox
  .select2-container--default
  .select2-selection--multiple
  .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 7px;
  margin-top: 3px;
  position: absolute;
  right: 0;
  /* padding: 1px; */
}
#castLatestUpdate {
  color: #fff;
  margin: 10px;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  height: 35px;
  line-height: 35px;
}
#castLatestUpdate.disabled {
  pointer-events: none;
  opacity: 0.8;
}
.mode2 #castLatestUpdate {
  background: #dd1010;
  color: #fff;
}
.updateSpinner {
  width: 20px;
  display: inline;
  position: relative;
  top: 5px;
  left: 2px;
}
.girlList li {
  cursor: pointer;
  padding: 10px;
  border: solid 1px #ccc;
  margin: 5px;
}
.girlList li.hidden {
  color: 333;
  background-color: #f5f5f5;
}
/* board */
:root {
  --scheduleListHeaderWidth: 200px;
}
#boardListsWrapper {
  position: relative;
  background: #fff;
  color: #111;
  width: 100%;
  height: calc(100vh - 140px); /* board_topの高さ分を引く */
  overflow-y: auto;
  overflow-x: auto;
  margin: 0;
  padding: 0;
}
#boardSizeChanger {
  position: absolute;
  bottom: -32px;
  right: 5px;
  padding: 0;
  z-index: 51;
  font-size: 20px;
}
#boardSizeChanger li {
  opacity: 0.3;
  width: 24px;
  cursor: pointer;
}
#boardSizeChanger li.active {
  opacity: 1;
}
#board {
  margin: 0;
  padding: 0;
  height: calc(100vh - 20px);
  display: flex;
  flex-direction: column;
}

#boardListInner {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  min-height: fit-content;
  margin: 0;
  padding: 0;
}

#boardListInner ul {
  border-bottom: solid 1px #ccc;
}

#boardListInner .dragging {
  background-color: #f0f0f0;
  border: 2px dashed #666;
}

#boardListInner .drop-target {
  background: #f8f1ff;
  border: dashed 3px #dfbfff;
  height: 60px;
}
#nowLine {
  position: absolute;
  background: #f00;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 51;
}
.nowLineHead {
  position: absolute;
  background: #f00;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.boardHead {
  width: 200px;
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 1;
}
#driverDock {
  position: relative;
  padding: 2px;
  margin: 3px;
  border-radius: 3px;
  background: #fff;
}
#driverDock::after {
  content: "ドライバー待機枠";
  display: block;
  width: calc(100% - 10px);
  top: calc(50% - 10px);
  height: 20px;

  position: absolute;
  text-align: center;
  font-weight: bold;
}
.drag-helper {
  list-style: none;
}
#driverDock .driverPlate {
  width: auto;
  padding: 0;
  z-index: 1;
  cursor: move;
  margin: 2px;
  background: #fff;
}
.driverPlate {
  height: 20px;
  min-width: 20px;
  background: #ffffff;
  border: solid 1px #013c23;
  border-radius: 3px;
  font-weight: bold;
  padding: 0 2px;
  line-height: 20px;
  color: #013c23;
  cursor: move;
}
.driverPlate .deleteBtn {
  display: none;
  color: #ff0000;
  cursor: pointer;
}
.driverPlate:hover .deleteBtn {
  display: inline-block;
}
.driverHolder {
  position: absolute;
  bottom: 0px;
  left: -10px;
  height: 20px;
  min-width: 20px;
  background: #ffffff;
  box-shadow: 0 0 3px #013c23 inset;
  border-radius: 3px;
  font-weight: bold;
  /* padding: 0 2px; */
  line-height: 20px;
  color: #013c23;
  z-index: 100;
}
.driverHolder.out {
  left: auto;
  right: -10px;
}
.driverHolder::after {
  position: absolute;
  top: 0;
  content: "入";
  display: block;
  width: 20px;
  text-align: center;
  opacity: 0.2;
}
.driverHolder.out::after {
  position: absolute;
  top: 0;
  content: "迎";
  display: block;
  width: 20px;
  text-align: center;
  opacity: 0.2;
}

.ui-draggable-dragging {
  z-index: 9999;
  opacity: 0.5;
}
.ui-droppable-hover {
  background-color: #0E9EC3;
  z-index: 100;
}
.timeLists li {
  position: relative;
}
.timeLists li .timeLabel {
  position: absolute;
  top: 10px;
  left: -10px;
  background: #fff;
  border-radius: 30px;
}
.timeLists {
  height: 40px;
  display: flex;
  flex-wrap: wrap;
}
.timeLists li {
  border-right: solid 1px #ccc;
}
.timeLists li:first-child {
  border-left: solid 1px #ccc;
}
.timeLists li:last-child {
  border: none;
}
.scheduleHead {
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 10;
  width: 200px;
  height: 85px;
  font-weight: bold;
  font-size: 12px;
  /* background: #99abf1; */
  box-shadow: 5px 0px 10px #ccc;
}
.scheduleHead .scheduleBack {
  position: absolute;
  top: 0;
  height: 100%;
  background: #c5f3ff;
  /* left: 5px!important; */
}
.scheduleHead .scheduleBack .startTime,
.scheduleHead .scheduleBack .endTime {
  background: #fff;
  position: absolute;
  top: -8px;
  height: 16px;
  width: 16px;
  line-height: 16px;
  text-align: center;
  border-radius: 16px;
  border: solid 1px #ccc;
  font-weight: 100;
  font-size: 11px;
}
.scheduleHead .scheduleBack .startTime {
  left: -5px;
}
.scheduleHead .scheduleBack .endTime {
  right: -5px;
}
.scheduleHead.outService {
  background: #ffb1b1;
  opacity: 1;
}

.scheduleWrapper li textarea {
  border: solid 1px #ccc;
  font-size: 12px;
  border-radius: 0;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #111;
  width: 100%;
  box-sizing: border-box;
  /* height: calc(100% - 18px); */
}
.scheduleWrapper li textarea:focus {
  text-shadow: none;
  box-shadow: none;
}
/* グラデーション */
.scheduleWrapper.shopCol1 .scheduleHead {
  background: hsl(120, 100%, 90%);
}
.scheduleWrapper.shopCol2 .scheduleHead {
  background: hsl(150, 100%, 90%);
}
.scheduleWrapper.shopCol3 .scheduleHead {
  background: hsl(180, 100%, 90%);
}
.scheduleWrapper.shopCol4 .scheduleHead {
  background: hsl(210, 100%, 90%);
}
.scheduleWrapper.shopCol5 .scheduleHead {
  background: hsl(240, 100%, 90%);
}
.scheduleWrapper.shopCol6 .scheduleHead {
  background: hsl(270, 100%, 90%);
}
.scheduleWrapper.shopCol7 .scheduleHead {
  background: hsl(300, 100%, 90%);
}
.scheduleWrapper.shopCol8 .scheduleHead {
  background: hsl(330, 100%, 90%);
}
.scheduleWrapper.shopCol9 .scheduleHead {
  background: hsl(0, 100%, 90%);
}
.scheduleWrapper.shopCol10 .scheduleHead {
  background: hsl(30, 100%, 90%);
}
.scheduleWrapper.shopCol11 .scheduleHead {
  background: hsl(60, 100%, 90%);
}
.scheduleWrapper.shopCol12 .scheduleHead {
  background: hsl(90, 100%, 90%);
}
.outService {
  background: #f5f5f5;
  color: #7d7d7d;
}
.outService .girlRemark {
  background: #f7f7f7;
}

.scheduleLists > div:first-child {
  border-left: solid 1px #ccc;
}
.scheduleLists {
  height: 85px;
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  position: relative;
}
.scheduleLists > div {
  border-right: solid 1px #ccc;
}
.scheduleLists > div:last-child {
  border: none;
}
.scheduleLists > div:hover {
  box-shadow: 0 0 2px #124755 inset;
}
.scheduleLists.outService {
  background: #f5f5f5;
}
.scheduleLists .inServiceBg {
  position: absolute;
  background: rgb(0 210 255 / 20%);
  height: 85px;
  border-left: 0 !important;
  pointer-events: none;
}
.girlNameSchedule {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.girlNameSchedule .schedule {
  float: right;
  position: absolute;
  right: 0;
  top: 0;
}
.outService .girlNameSchedule .schedule {
  float: right;
  background: #f5f5f5;
}

.schedule-content {
  display: flex;
  align-items: flex-start;
  margin: 5px;
  position: relative;
}

.main-content {
  flex: 1;
  min-width: 0; /* Flexboxでの収縮を許可 */
  line-height: 10px;
}

.staff-name-age {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #333;
  font-size: 13px;
  position: relative;
  z-index: 1000;
}

/* アクティブ時はさらにz-indexを上げる */
.staff-name-age.active {
  z-index: 1500;
}

.age {
  font-size: 12px;
  color: #333;
}

/* 出勤時間 */
/* .schedule-time {
  color: #333;
  font-size: 14px;
  white-space: nowrap;
} */

/* 身長・スリーサイズ */
.staff-body-info {
  /* margin: 4px 0; */
}

.body-data-list {
  display: flex;
  /* gap: 8px; */
  margin: 0;
  align-items: center;
  color: #333;
}

.body-data-item {
  display: flex;
  align-items: center;
  font-size: 12px;
}

.body-data-item dd {
  margin: 0;
}

.cup {
  /* font-size: 12px; */
  /* margin-left: 1px; */
}

/* 区切り記号を疑似要素で追加 */
.body-data-item:not(:first-child)::before {
  content: "/";
  /* margin-right: 8px; */
  color: #666;
}

/* board.php スタッフタグ */
.staff-tags {
  display: grid;
  grid-auto-flow: column; /* 折り返し時の流れを列方向に */
  grid-template-rows: repeat(auto-fill,16px); /* 行の高さを16pxで自動的に折り返し */
  grid-template-columns: repeat(3, 16px); /* 3列に設定 */
  gap: 5px;
  max-width: 65px; /* 3列分の幅を確保 */
  max-height: 85px; /* 最大の高さを制限 */
  position: absolute;
  right: -73px;
  top: -5px;
  padding: 3px;
  border-radius: 3px;
}

.staff-tag-icon {
  font-size: 12px; /* アイコンサイズを少し小さく */
  cursor: help;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
}

/* ツールチップの調整 */
.staff-tag-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  padding: 4px 8px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease;
  margin-left: 8px;
  z-index: 1000;
}

.staff-tag-icon:hover::after {
  visibility: visible;
  opacity: 1;
}

/* タイプ表示用のスタイル */
.staff-type {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #666;
  /* margin-top: 2px; */
}

.type-icon {
  font-size: 16px;
  cursor: help;
  position: relative;
  bottom: 2px;
}

/* タイプごとの色分け */
.type-icon[data-type-text="1"] {
  color: #ff69b4; /* ピンク */
}
.type-icon[data-type-text="1"]::after {
  content: "カワイイ系";
}

.type-icon[data-type-text="2"] {
  color: #4169e1; /* ブルー */
}
.type-icon[data-type-text="2"]::after {
  content: "キレイ系";
}

.type-icon[data-type-text="3"] {
  color: #32cd32; /* グリーン */
}
.type-icon[data-type-text="3"]::after {
  content: "ロリ系";
}

.type-icon[data-type-text="4"] {
  color: #ffd700; /* ゴールド */
}

.type-icon[data-type-text="4"]::after {
  content: "人妻系";
}

/* ツールチップのスタイル */
.type-icon::after {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  padding: 4px 8px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease;
  margin-left: 8px;
  z-index: 1000;
}

/* ホバー時の表示 */
.type-icon:hover::after {
  visibility: visible;
  opacity: 1;
}

.staff-name-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 170px;
  min-width: 0;
  position: relative;
  height: 20px;
  line-height: 20px;
  margin-left: auto;
}

/* 名前部分のスタイル */
.staff-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: calc(100% - 45px); /* 年齢分の幅を引く */
  display: inline-block;
  height: 20px; /* 名前部分も同じ高さに */
  line-height: 20px; /* 行の高さも合わせる */
}

/* 年齢のスタイル */
.age {
  white-space: nowrap;
  margin-left: auto; /* 右寄せ */
  flex-shrink: 0; /* 収縮しないように */
}

.staff-options {
  position: absolute;
  left: 100%; /* 親要素の右端から開始 */
  top: 0; /* 上端に揃える */
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1500;
  display: none;
  width: 300px; /* 幅を固定 */
  max-height: 300px;
  overflow-y: auto;
  left: 0 !important; /* 親要素の左端から */
  top: 100% !important; /* 親要素の下から */
}


.options-content {
  /* padding: 5px; */
  /* width: 800px; */
}

.staff-options .options-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid; /* flexからgridに変更 */
  grid-template-columns: repeat(5, 1fr); /* 5列固定 */
  gap: 8px; /* アイテム間の間隔 */
  border-bottom: none !important;
}

.option-item {
  font-size: 13px;
  color: #333;
  padding: 6px 4px;
  text-align: center;
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.option-item:hover {
  background-color: #f0f0f0;
}

/* アクティブ状態 */
.staff-name-age.active .staff-options {
  display: block;
}

/* 当日用メモ */
/* 共通のベーススタイル */
.quick-memo,
.board-memo {
  width: 100%;
  margin-top: 1px;
}

/* 入力欄の共通スタイル */
.quick-memo-input, .board-memo-input {
  color-scheme: dark;
  height: 22px;
  border: solid 1px #277c95;
  border-radius: 4px;
  transition: all 0.5s ease;
  background: #141523;
  width: 100%;
  padding: 0 6px;
  font-size: 12px;
  z-index: 1;
  position: relative;
  /* margin: 7px 6px; */
}

/* ホバー・フォーカス時のスタイル */
.quick-memo-input:hover,
.quick-memo-input:focus,
.board-memo-input:hover,
.board-memo-input:focus {
  border: solid 1px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
  color: #fff;
}

/* 2つのメモ欄の間隔 */
.board-memo {
  /* margin-top: 1px; */
}

/* ポップアップ表示位置 */
/* #girlInfoList {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 5px;
  height: 125px;
  flex-wrap: nowrap;
  z-index: 51;
} */



#girlInfoList:empty {
  display: none;
}

/* ポップアップ部分 */
.staff-options-popup {
  position: fixed;
  background: white;
  border: 1px solid #ccc;
  /* border-radius: 8px; */
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 9999;
  /* max-width: 300px; */
  min-width: 250px;
  color: black;
  padding: 5px;
}

.staff-options-popup::marker {
  display: none !important;
}

.staff-options-popup::before {
  display: none !important;
}

/* ドラッグハンドル用のスタイル */
.staff-options-popup .girlHeader {
  cursor: move !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  background: #f8f9fa;
}

.staff-options-popup .girlHeader:hover {
  background: #e9ecef;
}



.staff-options-popup .girlHeader .girl_name {
  font-size: 16px;
  font-weight: bold;
}

/* ヘッダー部分のスタイル */
.staff-options-popup .options-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid #eee;
  margin-bottom: 5px;
  flex-wrap: wrap;
  line-height: normal;
  cursor: move !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  padding: 5px;
}

.staff-options-popup .options-header:hover {
  background: #f8f9fa;
}

/* スケジュール情報のスタイル */
.staff-options-popup .schedule-list {
  background-color: #f8f8f8;
  border-radius: 3px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px;
}

.staff-options-popup .schedule_time {
  font-weight: bold;
  color: #0056b3;
}

.staff-options-popup .schedule_flg,
.staff-options-popup .attendance_flg {
  color: white;
  padding: 2px 2px;
  font-size: 11px;
}

.staff-options-popup .schedule_flg {
  background-color: #0056b3;
}

.staff-options-popup .attendance_flg {
  background-color: #ff0085;
}

/* オプションリストのレイアウト */
.staff-options-popup .options-list,
.staff-options-popup .freeTag-list {
  gap: 3px;
}

/* リスト項目のサイズ調整 */
.staff-options-popup .options-list li,
.staff-options-popup .freeTag-list li {
  padding: 2px;
  font-size: 12px;
}

/* オプションとフリータグの色分け */
.staff-options-popup .options-list li {
  background-color: #e3f2fd;
  color: #0056b3;
}

.staff-options-popup .freeTag-list li {
  background-color: #fce4ec;
  color: #d81b60;
}

/* 閉じるボタン */
.staff-options-popup .popup-close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  background: #ff778a;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
  z-index: 1;
}
.girlRemark {
  font-weight: normal;
}

.usageDataView {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 3px;
  background: #deffd9;
  z-index: 2;
  font-size: 12px;
  line-height: 14px;
  cursor: pointer;
  box-shadow: 0 0 5px #ccc inset;
}
.usageDataFreeView {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 3px;
  background: #deffd9;
  z-index: 1;
  font-size: 12px;
  line-height: 14px;
  cursor: pointer;
  box-shadow: 0 0 5px #ccc inset;
}
/* .new-customer {
  background: #fffed9;
} */
.panel-nomination {
  background: #f6d9ff;
}
.repeat-nomination {
  background: #d9eeff;
}
.free-time {
  background: #cbcbcb;
}
/* .usageDataView:hover */
.slipControlBox {
  opacity: 0;
  transition: all 1s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.slipControlBox:hover {
  opacity: 1;
}
.slipControlBox .controlIcon {
  font-size: 22px;
  background: #fff;
  padding: 10px;
  border-radius: 100%;
  box-shadow: 0 0 5px #333;
  margin: 5px;
}
#freeSlipLists .slipControlBox .controlIcon {
  font-size: 14px;
  background: #fff;
  padding: 5px;
  border-radius: 100%;
  box-shadow: 0 0 5px #333;
  margin: 5px;
}
.slipControlBox .controlIcon.play i {
  position: relative;
  left: 2px;
  color: #00c2ff;
}
.slipControlBox .controlIcon.pause i {
  position: relative;
  color: #777777;
}
.slipControlBox .controlIcon.stop i {
  position: relative;
  color: #ff0080;
}
/* テキストのスタイル */
.usage_data_container .usageDataView .usageTime {
  font-weight: bold;
  margin-bottom: 3px;
  display: block;
}
.usageDataFreeView .usageTime {
  font-weight: bold;
}
/*configBox*/
.configBoxWrap {
}
.configBox {
  margin-right: 20px;
}
.configBox.staffBox {
}
.configBox table {
  border-collapse: collapse;
}
.configBox table tbody {
}
.configBox table tbody tr {
}
.configBox table input[type="text"] {
  width: 100px;
  padding: 5px;
  box-sizing: border-box;
}


.ui-sortable td input:nth-child(2) {
  width: 150px;
}



.ui-sortable-helper {
  background: #f0fff4;
}
.configBox .configData {
  font-size: 16px;
  border: solid 1px #676b85;
  padding: 5px;
}
.configBox .configData ul {
  margin-bottom: 10px;
}
.configBox .configData ul li {
  padding: 5px;
  font-weight: bold;
  border-bottom: solid 3px #e5d8cd;
  line-height: 12px;
}
.configBox .configData ul li.label {
  font-weight: normal;
  font-size: 14px;
  border-bottom: none;
}
.configBox .configData ul:last-child {
  margin-bottom: 0;
}
.configBox .configData ul:last-child li {
}
.configBox .disabledBtn {
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
  width: 55px;
}
.configBox .addBtn {
  background: #144e5f;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  height: 30px;
  line-height: 10px;
  padding: 10px;
  margin-left: 10px;
  color: #fff;
  float: right;
  text-shadow: 0 0 5px white;
}
.configBox .courseUpdateBtn {
  background: #144e5f;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  height: 30px;
  line-height: 10px;
  padding: 10px;
  margin-left: 10px;
  color: #fff;
  float: right;
  text-shadow: 0 0 5px white;
}
.configBox .disabled input {
  pointer-events: none;
  opacity: 0.5;
}
.configBox table td input {
  text-align: right;
}
.configBox table td:first-child input {
  width: 200px;
  text-align: left;
}
table.dataTable tbody tr {
  background-color: #0e1122 !important;
}
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
  color: #f5f5f5 !important;
}
/* dayReport */
#dayReportSummary input[type="text"] {
  width: 80px;
  text-align: right;
}
#summaryBox {
  line-height: 32px;
}
#summaryBox li:nth-child(odd) {
  font-size: 14px;
}
#summaryBox li:nth-child(even) {
  font-size: 24px;
  text-shadow: 0 0 5px #00fffb;
  font-weight: 500;
  color: #fff;
  margin: 0 5px;
}

#summaryBox .costList li:nth-child(even) {
  font-size: 14px;
  text-shadow: none;
  font-weight: 300;
  color: #cbcbcb;
}

#summaryBox li.caption,
#dayReportSummary caption {
  font-size: 16px;
  border-left: solid 5px #cccccc;
  color: #fff;
  line-height: 18px;
  padding: 6px;
  margin: 10px 0px 0px 0px;
  font-weight: 600;
  text-align: left;
}
#dayReportSummary caption form {
  display: inline-block;
}
#slipListShowBtn {
  cursor: pointer;
  border: solid 1px #676b85;
  color: #fff;
  text-shadow: 0 0 5px #00fffb;
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
}
#slipListHideBtn {
  cursor: pointer;
  background: #233047;
  border: solid 1px #676b85;
  color: #fff;
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
  padding: 6px;
  border-radius: 5px;
  font-size: 14px;
}
#dayReportSummary table td:first-child {
  font-weight: bold;
  color: #fff;
}
#dayReportSummary .wHalf {
}
#dayReportSummary #costSummary {
  float: left;
}
#dayReportSummary #mediaCount {
  float: left;
  margin-left: 10px;
}
#dayReportEdit caption {
  text-align: left;
  font-weight: bold;
  font-size: 16px;
  padding: 5px;
  border-bottom: solid 2px #bfcaff;
  margin-top: 10px;
}
.table-wrapper {
  margin-top: 10px;
  width: 100%;
  max-height: 500px;
  overflow: auto;
}
.table-wrapper table {
  width: max-content !important;
  min-width: 100%;
}
#reportTab {
  font-weight: bold;
  font-size: 16px;
}
#reportTab li {
  display: inline-block;
  line-height: 32px;
  margin: 0 5px;
}
#reportTab li span {
  padding: 2px 10px 0;
  border-radius: 3px;
  background: #ffffff;
  color: #0e1122;
}
#reportTab li a {
  padding: 2px 10px 0;
  border-radius: 3px;
  background: #4a4d61;
}
.tableWrapper {
  overflow: auto;
  position: relative;
}
.printView {
  display: none;
}
#monthlyReport .tableWrapper {
  margin-top: 20px;
}
#monthlyReport table {
  margin: 0;
  width: 2000px;
  text-align: right;
}
#monthlyReport table thead {
  position: sticky;
}
#monthlyReport table th {
  text-align: center;
}
#monthlyReport table th:first-child,
#monthlyReport table td:first-child {
  position: sticky;
  left: 0;
  background: #282b3a;
  z-index: 10;
  text-align: center;
  font-weight: bold;
}
.girlSummaryBox {
  line-height: 32px;
}
.girlSummaryBox li.label {
  font-size: 14px;
  text-shadow: none;
  color: #fbe5e5;
}
.girlSummaryBox li {
  font-size: 24px;
  text-shadow: 0 0 5px #00fffb;
  font-weight: 500;
  color: #fff;
  margin: 0 5px;
}
.agentFeeCalc,
.sbFeeCalc {
  text-shadow: 0 0 5px #00fffb;
  color: #fff;
  border: solid 1px #277c95;
  border-radius: 3px;
  padding: 2px 6px;
  position: relative;
  top: -1px;
}
.scoutData {
  line-height: 32px;
}
.scoutData li.label {
  font-size: 14px;
  text-shadow: none;
  color: #fbe5e5;
}
.scoutData li {
  font-size: 24px;
  text-shadow: 0 0 5px #00fffb;
  font-weight: 500;
  color: #fff;
  margin: 0 5px;
}
.staffData {
  line-height: 32px;
}
.staffData li.label {
  font-size: 14px;
  text-shadow: none;
  color: #fbe5e5;
}
.staffData li {
  font-size: 24px;
  text-shadow: 0 0 5px #00fffb;
  font-weight: 500;
  color: #fff;
  margin: 0 5px;
}
#usageData input[readonly] {
  font-size: 24px;
  text-shadow: 0 0 5px #00fffb;
  border: none;
  font-weight: 500;
  color: #fff;
  margin: 0 5px;
  opacity: 1;
}
#usageData .optionBox li {
    line-height: 20px;
    height: 16px;
    font-size: 12px;
}
/* timermodal */
.timerModalGroup {
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
}
#startTimerModal {
  text-align: center;
}
#startTimerModal #startTimeSetting {
  text-align: center;
}
#scheduleEditModal #scheduleSetting {
  text-align: center;
}
#scheduleEditModal #scheduleSetting #startScheduleTime {
  margin-right: 5px;
}
#endTimerModal,
#editTimerModal {
  display: none;
  width: 315px;
}
#alarmModal {
  display: none;
}
.timerModal {
  width: 345px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.timerModal .caption {
  text-align: center;
  margin: 10px;
  font-weight: bold;
  font-size: 18px;
  color: var(--color-pink);
  margin: 10px 0;
}
.timerModal .buttonGroup {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}
.timerModal .buttonGroup li {
  padding: 5px;
  background: #ccc;
  font-size: 14px;
  border-radius: 5px;
  width: 84px;
  text-align: center;
  height: 40px;
  line-height: 30px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}
.timerModal .buttonGroup li:nth-child(1) {
  margin-right: 10px;
}
.timerModal .buttonGroup li#timerStart {
  background: #6eafff;
}
.timerModal .buttonGroup li#timerCancel {
  background: #383838;
  color: #fff;
  margin-right: 10px;
  width: 115px;
}
.timerModal .buttonGroup li#timerEnd {
  background: #ff8c8c;
}
.timerModal .buttonGroup li#timerEditExecute {
  background: #6ad560;
  margin-right: 10px;
}
.timerModal .buttonGroup li#timerEdit {
  background: #6ad560;
}
.timerModal .buttonGroup li#scheduleEdit {
  background: #6ad560;
}
.timerModal .buttonGroup li#timerInit {
  background: #ae8cff;
  margin-right: 10px;
}
.timerModal .buttonGroup li#timerResume {
  background: #6ad560;
}
.timerModal .buttonGroup li#timerCancelResume {
  background: #fffc3a;
  color: #111;
}
.timerModal .buttonGroup li#alarmStop {
  background: #ae8cff;
  width: auto;
  margin-right: 0;
}
.timerModal .buttonGroup li#alarmStop.over {
  background: #ff4d86;
  width: auto;
}
.remainTime {
  position: absolute;
  top: 0px;
  right: -20px;
  font-size: 19px;
  background: #2ba2de;
  height: 26px;
  /* width: 40px; */
  /* border-radius: 100%; */
  line-height: 24px;
  text-align: center;
  color: #fff;
  padding: 0 5px;
  border-radius: 3px;
}
.remainTime.mode1 {
}
.remainTime.mode2 {
  /* width: 36px; */
  /* height: 36px; */
  background: #fff;
  color: #ff0085;
  /* border: solid 2px #ff0085; */
  /* line-height: 38px; */
  box-shadow: 0 2px 0 inset, 0 -2px 0 inset, 2px 0 0 inset, -2px 0 0 inset;
}
.remainTime.mode3 {
  background: #ff0085;
}
.remainTime .statusDate {
  font-weight: bold;
  background: #fff;
  color: #111;
  position: absolute;
  font-size: 12px;
  bottom: -13px;
  left: -3px;
  width: 45px;
  text-align: center;
  border-radius: 3px;
  height: 17px;
  line-height: 17px;
  border: solid 1px #c7c7c7;
  padding: 0 3px;
}

#callHistoryTableWrapper .precautions p {
  color: #ff0085;
}

/* usageData.php オプション代金*/
.optionPriceBox {
  font-weight: bold; /* 強調 */
  margin-top: 10px; /* 上に余白 */
  margin-bottom: 10px; /* 下に余白 */
  font-size: 16px; /* テキストサイズ調整 */
  display: flex;
  align-items: center;
}

.optionPriceBox input {
  margin-left: 10px; /* テキストと入力欄の間に余白 */
}

/* usageData.php トータル代金*/
.totalPriceBox {
  font-weight: bold; /* 強調 */
  margin-top: 10px; /* 上に余白 */
  margin-bottom: 10px; /* 下に余白 */
  font-size: 16px; /* テキストサイズ調整 */
  display: flex;
  align-items: center;
}

.totalPriceBox input {
  margin-left: 10px; /* テキストと入力欄の間に余白 */
}

.slipList .remarks textarea {
  margin: 0;
  padding: 5px;
  width: 100%;
  box-sizing: border-box;
  height: 60px;
}
.slipList .remarks #remarkList {
  display: flex;
}
.slipList .remarks #remarkList li:nth-child(1) {
  height: auto;
  width: calc(70% - 10px);
}
.slipList .remarks #remarkList li:nth-child(2) {
  height: auto;
  width: calc(30% - 10px);
}
/* select2 */
.select2-results,
.select2-results__options {
  background-color: #0e1122;
}

.select2-results__option[aria-selected="true"] {
  background: #277c95;
}

.select2-search--dropdown {
  background-color: #0e1122;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #277c95 !important;
}

.select2-container--default .select2-selection--single {
  background-color: #0e1122 !important;
  border: 1px solid #277c95 !important;
  border-radius: 4px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #fff !important;
}

/*----- レポートの表を変更 -----*/

/* Common styles for all pages */
.dashboard-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 20px;
}

.dashboard-section {
  background-color: #4a4d61;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.report-section-title {
    display: block!important;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #8b8b8b;
    /* border-left: 5px solid; */
    line-height: 30px;
    /* padding: 8px 5px 5px 10px; */
    color: #ffffff;
}
.section-total {
    float: right;
    background: #fff;
    color: #4da9cd;
    border-radius: 5px;
    font-size: 16px;
    padding: 0 5px;
}

.data-group {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  grid-template-columns: repeat(auto-fit, max-content);
}

.data-item {
  background-color: white;
  padding: 5px 5px 0px 5px;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  min-width: fit-content
}

.data-label {
  color: #555;
  font-size: 14px;
  line-height: 18px;
}

.data-value {
  font-weight: bold;
  font-size: 16px;
  color: #a97ecf;
  word-break: break-word;
  display: flex;
  justify-content: flex-end;
}

/* Layout styles */
.sales-section,
.course-section,
.details-section,
.costs-section {
  display: flex;
  gap: 20px;
}

.sales-section .dashboard-section,
.course-section .dashboard-section,
.left-column,
.right-column {
  flex: 1;
}

.sales-section .dashboard-section {
    /* background-color: #5f9ea0; */
    background: none;
    border: solid 1px #4a4d61;
}
.sales-section .data-item {
    background: none;
    border-right: solid 1px #ffffff;
    padding: 0 20px;
    border-radius: 0;
}
.sales-section .data-label {
  color: #fff;
}
.sales-section .data-value {
    color: #fff;
    font-size: 20px;
    text-shadow: 0 0 5px #00fffb;
}
.sales-section .data-item:nth-child(5) {
  margin-left: auto;
}
.sales-section .data-item:last-child {
  border: none;
}
.sales-section .dashboard-section .data-group {
  grid-template-columns: repeat(6, 1fr);
}
/* コース別本数 for totalRecalc.php  20250130追加*/


.course-section .dashboard-section .data-group{
  grid-template-columns: repeat(4, 1fr);
}
/* /.コース別本数 for totalRecalc.php  20250130追加*/


/* Specific styles for monthlyReport.php */
.details-section .dashboard-section {
  flex: 1 1 calc(33.333% - 14px);
  min-width: 300px;
}

.salary-info .data-group,
.expense-info .data-group {
  grid-template-columns: repeat(2, 1fr);
}

.costs-section {
  flex-wrap: wrap;
}

.costs-section .dashboard-section {
  flex: 1 1 calc(33.333% - 14px);
  min-width: 300px;
}

.costs-section .data-item-full-width {
  grid-column: 1 / -1;
  background-color: #f0f8ff;
  border-top: 2px solid #277c95;
  margin-top: 10px;
  padding-top: 20px;
}

.costs-section .data-item-full-width .data-label {
  font-size: 1.1em;
  color: #277c95;
}

.costs-section .data-item-full-width .data-value {
  font-size: 1.2em;
  font-weight: bold;
}
.deduction-payment-section {
  margin-top: 10px;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.deduction-payment-section .data-item {
  font-size: 0.9em;
}

.deduction-payment-section .data-label {
  font-size: 0.85em;
  color: #666;
}

.subsection {
    margin-top: 5px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.subsection .data-item {
    background: color(srgb 0.05 0.07 0.13);
    margin: 0 3px;
    color: #fff;
}
.subsection .data-label {
  color: #cfcfcf;
}
.subsection.cost .data-value{
  color: #ff007f;
}
.subsection.payment .data-value{
  color: #adff2f;
}
.subsection-title {
    font-size: 0.9em;
    font-weight: bold;
    width: 100%;
}
.data-value input {
    width: 100%;
    padding: 5px;
    border: none;
    border-radius: 4px;
    font-size: 0.9em;
    background: #edeaff;
    border: solid 1px #777;
    color: #0e1122;
    margin: 5px;
    width: 100px;
    text-align: right;
}
/* Input styles */
.fixed-cost-input input,
.costs-section input[type="text"] {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.9em;
}

/* Responsive design */
@media (max-width: 1400px) {
  .details-section .dashboard-section,
  .costs-section .dashboard-section {
    flex: 1 1 calc(50% - 10px);
  }
  .costs-section .data-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1200px) {
  .attendance-info .data-group {
    grid-template-columns: repeat(2, 1fr);
  }
  .salary-info .data-group,
  .expense-info .data-group {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .sales-section,
  .details-section,
  .costs-section {
    flex-direction: column;
  }
  .data-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .details-section .dashboard-section,
  .costs-section .dashboard-section {
    flex: 1 1 100%;
  }
  .attendance-info .data-group {
    grid-template-columns: repeat(3, 1fr);
  }
  .salary-info .data-group,
  .expense-info .data-group,
  .costs-section .data-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .data-group,
  .attendance-info .data-group,
  .salary-info .data-group,
  .expense-info .data-group,
  .costs-section .data-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .data-group,
  .attendance-info .data-group,
  .salary-info .data-group,
  .expense-info .data-group,
  .costs-section .data-group {
    grid-template-columns: 1fr;
  }
}

/* 伝票集計 */
#slipListArea.slip #slipSummary {
  width: 100%;
}

.container {
  /* display: flex; */
  width: 100%;
}
.column {
  padding: 10px;
}
.left-column {
  width: 100%;
}
.right-column {
  width: 100%;
}
.full-width {
  width: 100%;
}

/* ボードの伝票新規起票ボタン */
#usageDataFreeBtn {
  color: #fff;
  height: 30px;
  font-size: 14px;
  padding: 0 20px;
}

/* 基本設定/女の子バックのデザイン変更 */

.horizontal-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.girl-group {
  /* width: calc(33.33% - 20px); */
  /* margin-bottom: 20px; */
}
.girl-group table {
  width: 100%;
  border: solid 1px #676b85;
  border-collapse: collapse;
}
.girl-group th,
.girl-group td {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border-right: solid 1px #676b85;
}

.girl-group select {
  width: 100%;
}

.girl-group tr {
  display: flex;
}

.girl-group td:first-child {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 基本設定/ボックス群を横並びにする*/
#config-settings-wrapper {
  margin-top: 20px;
}

#config-settings-wrapper .configBoxWrap h2 {
  font-size: 20px;
  font-weight: bold;
  color: #0e1122;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #f9f9f9;
}

#config-settings-wrapper .configBoxWrap .configRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

#config-settings-wrapper .configBoxWrap .configRow .configBox {
  /* width: calc(33.33% - 10px); */
  padding: 20px;
  background-color: #282b3a;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-right: 10px;
}

#config-settings-wrapper
  .configBoxWrap
  .configRow
  .configBox
  table
  td:first-child
  input {
  width: 100px;
  text-align: left;
}

#config-settings-wrapper
  .configBoxWrap
  .configRow
  .configBox
  .configData
  ul
  li.label {
  color: #f9f9f9;
}

/* 基本設定/料金システムデータに横スクロール*/
.table-container {
  width: 100%;
  overflow-x: auto;
}

/* 基本設定/料金システム 並び替え*/
.sortableTable .handle {
  cursor: move;
  user-select: none;
}

.sortableTable tbody tr:hover {
  /* background-color: #f5f5f5; */
  background-color: #ffffff61 !important;
}

.ui-sortable-helper {
  display: table;
}

/* ドライバーページ/3分割 */
.staffSummaryBoxWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}

.staffSummaryBox {
  width: calc(30% - 30px);
  margin-bottom: 30px;
  margin-left: 20px; /* 全ての要素に左マージンを追加 */
  box-sizing: border-box;
}

.staffSummaryBoxWrap .staffData .staffName {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
}

.staffNameContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}
.staffName {
  flex-grow: 1;
}
.printDriverSalary {
  /* padding: 0px 10px; */
  border: 1px solid #007bff;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  width: 100px;
  text-align: center;
}
.printDriverSalary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

/* ボードの高さを変更 */
.scheduleLists .usageDataView {
  /* height: 85%; */
}
.scheduleLists .textWrapper {
  height: 100%;
  overflow: hidden;
}
.scoutData {
  width: 600px;
}

.scoutData ul {
  margin-bottom: 10px;
}

.scoutSummaryBox .scoutData h2 {
  font-size: 16px;
  font-weight: bold;
  color: #0e1122;
  margin-bottom: 10px;
  padding: 5px;
  background-color: #f9f9f9;
}

.scoutData ul.top {
  justify-content: space-between;
}

.scoutData ul li.print {
  border: 1px solid #fff;
  padding: 0px 10px;
  font-size: 20px;
}

/* ショップセレクター */
.shop-selector-container {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.shop-selector {
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #0e1122;
  color: #ffffff;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s ease;
  /* セレクターの矢印をカスタマイズ */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FFF' d='M10.293 3.293 6 7.586 1.707 3.293A1 1 0 0 0 .293 4.707l5 5a1 1 0 0 0 1.414 0l5-5a1 1 0 1 0-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

.shop-selector:hover {
  background-color: #1a2440; /* 少し明るい色 */
}

.shop-selector:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
  outline: none;
}

/* 開閉ボタンの追加 */
#navi {
  width: 250px;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  /* background-color: #f1f1f1; */
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}
#navi.collapsed {
  transform: translateX(-250px);
}
#content, #wrap-schedule, #wrap-girllist {
  margin-left: 255px;
  transition: margin-left 0.3s ease-in-out;
  width: calc(100% - 255px);
  box-sizing: border-box;
}
#content.expanded,
#wrap-schedule.expanded,
#wrap-girllist.expanded {
  margin-left: 0;
  width: 100%;
}
#toggleBtn {
  position: fixed;
  left: 229px;
  bottom: 20px;
  z-index: 1001;
  transition: all 0.5s;
  background-color: #1a1d2d;
  border: solid 1px #277c95;
  color: white;
  text-shadow: 0 0 5px #00fffb;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 2px 5px rgba(0,0,0,0.2); */
}
#toggleBtn:hover {
  border: solid 1px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
  color: #fff;
  cursor: pointer;
}
#toggleBtn.moved {
  left: 10px;
}

#toggleBtn i {
  transition: transform 0.3s ease-in-out;
}
#toggleBtn.moved i {
  transform: rotate(180deg);
}

/* ボードトップの大枠のスタイル */
.board_top {
  display: flex;
  flex-direction: column;
  min-height: fit-content;
  box-sizing: border-box;
  position: relative;
}

.selector_box {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center; /* 中央揃え */
}

/* ボードに日付追加 */
.date-selector {
  display: flex;
  justify-content: center; /* 中央揃え */
  align-items: center;
  font-family: Arial, sans-serif;
}

/* ボードにショップ選択追加 */
.date-button {
  background-color: #f0f0f0;
  border: none;
  padding: 2px 15px;
  margin: 0 5px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
  text-align: center;
  min-width: 60px;
  border: solid 1px #277c95;
  transition: all 0.5s ease;
  color: #727272;
}
.date-button:hover {
  border: solid 1px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
  color: #fff;
  cursor: pointer;
}

.date-button:hover {
  background-color: #e0e0e0;
}

.date-button.today {
  background-color: #ffffff;
  color: #1a1d2d;
  font-weight: bold;
  box-shadow: 0 0 5px #fff, 0 0 10px #fff;
  border: none;
}

.date-button.today:hover {
  background-color: #dcf8ff;
  text-shadow: none;
}

.date-button.selected {
  background-color: #2196f3;
  color: white;
}

.date-button.selected:hover {
  background-color: #1e87db;
}
.date-button .todayCount {
    color: #ccc;
    height: 13px;
    line-height: 13px;
}
.date-button .schedule-count {
  color: #f00085;
}
.date-button .reservation-count {
  color: #00b7f0;
}
.syncButton {
  height: 42px;
  line-height: 32px;
  background-color: #fb5858;
}
/* フィルター部分のスタイル */
.filter-container {
  width: 100%;
  display: flex;
  gap: 10px;
}

.filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0;
}

.filter-item label {
  white-space: nowrap;
  font-size: 14px;
}

.filter-item input,
.filter-item select {
  /* border: 1px solid #ddd; */
  border-radius: 4px;
  font-size: 13px;
}

.filter-item input {
  width: 150px;
}

.filter-item select {
  width: 100px;
}

.button-group {
  display: flex;
  gap: 10px;
}

.filter-item .search-button {
  border-radius: 3px;
  line-height: 28px;
  padding: 0 10px;
  color: #fff;
  font-weight: 600;
  background: #0ecaf6c2;
  border: none;
  box-shadow: 0 0 5px #6de3ff;
  text-shadow: 0 0 5px #fff;
  cursor: pointer;
}

.filter-item .reset-button {
  border-radius: 3px;
  line-height: 28px;
  padding: 0px 10px;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  background: #0ecaf6c2;
  background-color: #6c757d;
  color: white;
  border: none;
  cursor: pointer;
}
.reset-button:hover {
  background-color: #5a6268;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .filter-item {
    width: calc(50% - 7.5px); /* 2列表示 */
  }
}

@media (max-width: 480px) {
  .filter-item {
    width: 100%; /* 1列表示 */
  }
}

/* 出勤登録画面 */
#wrap-schedule {
  margin-left: 255px;
}

/* 女の子一覧画面 */
#main {
  margin-left: 255px;
}

/*====================================
  girlDate.php(女の子登録画面)
====================================*/
/* モーダル全体のスタイル */
#girlData #modal {
  padding: 20px;
  max-width: 810px;
  margin: 0 auto;
}

/* タイトル部分 */
.title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #f3f3f3;
}
/* #girlData #mypageData {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
} */
#girlData #mypageData input {
  width: 100px;
}
/* グリッドレイアウト */
.staff-grid {
  display: flex;
  gap: 10px; /* ギャップをさらに縮小 */
  margin-bottom: 0px;
  /* justify-content: center; */
  padding: 0px 0px 0px 20px;
}

/* 2025/01/10女の子画面に本名、生年月日、電話番号、住所を追加時に追加 */
.staff-item {
  padding: 0 20px;
  width: 100%;
}

.input-field {
  margin-bottom: 15px;
}

.input-field label {
  display: block;
  margin-bottom: 5px;
  color: #cbcbcb;
  font-size: 14px;
}

.input-field input {
  width: 100%;
  padding: 8px;
  border: 1px solid #277c95;
  border-radius: 4px;
  background: #141523;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.input-field input:hover,
.input-field input:focus {
  border: solid 1px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
}

/* 横並びの行のスタイル */
.input-row {
  display: flex;
  gap: 15px;
  margin-bottom: 0px;
}

/* 横並びの各項目の幅を均等に */
.input-row .input-field {
  flex: 1;
  margin-bottom: 0;
}

/* 住所入力欄は100%幅 */
.input-field input[name="address"] {
  width: 100%;
}
/* 2025/01/10女の子画面に本名、生年月日、電話番号、住所を追加時に追加 */

/* 入力フィールド */
.input-field {
  margin-bottom: 10px;
}

.input-field input[type="text"] {
  width: 100%;
  padding: 8px;
  border-radius: 4px;
  font-size: 14px;
}

.input-field input[type="text"]::placeholder {
  color: #999;
}

/* 画像アップロード部分 */
.image-upload {
  position: relative;
  margin-top: 10px;
  width: 230px;
}

.image-upload input[type="file"] {
  display: none;
}

.upload-label {
  display: block;
  cursor: pointer;
}

.preview-area {
  width: 230px;
  height: 307px; /* アスペクト比3:4を保持（230px × 4/3） */
  border: 2px dashed #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 14px;
  background: #f9f9f9;
  transition: all 0.3s ease;
  object-fit: cover;
}

.preview-area:hover {
  border-color: #999;
  background: #f0f0f0;
}

.preview-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ボタン */
.form-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.submit-btn,
.cancel-btn {
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn {
  background: #141523;
  color: white;
  border: solid 1px #277c95;
}

.submit-btn:hover {
  border: solid 1px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
}

.cancel-btn {
  background: #3b1117;
  border: solid 1px #950a0a;
  color: white;
}

.cancel-btn:hover {
  border: solid 1px #950a0a;
  box-shadow: 0 0 8px #ff0000, 0 0 8px #ff0000 inset;
  text-shadow: 0 0 5px #950a0a;
}



.saveBtn {
  /* background: #2196F3; */
  color: white;
  border: none;
  margin-left: 15px;
  padding: 8px 20px;
}

.saveBtn:hover {
  /* background: #0b7dda; */
}

/* ユーティリティ */
.clear {
  clear: both;
}

/* レスポンシブ対応 */
@media (max-width: 780px) {
  .staff-grid {
    flex-direction: column;
    align-items: center;
  }

  .staff-item {
    width: 230px;
  }
}

/* 共通項目セクション全体 */
.common-section {
  margin-top: 0px;
  padding: 0 20px;
  background: #0e1122;
  border-radius: 4px;
  color: #f5f5f5;
}

.section-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  border-left: 5px solid;
  line-height: 30px;
  padding: 8px 5px 5px 10px;
  color: #ffffff;
}

#customerData .section-title {
  color: #cbcbcb;
}

.section-label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
}

/* 年齢と身長のセクション */
.basic-info {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  align-items: flex-end;
  width: 100%;
  justify-content: space-between;
}

.form-group {
}

.form-group label {
  display: block;
  margin: 10px 0 5px;
  font-size: 18px;
  /* color: #333; */
  font-weight: bold;
  white-space: nowrap;
}
.form-group input[type="text"],
.form-group input[type="number"],
.form-group select {
  width: 100%;
  height: 36px;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}
.form-group input[type="text"] {
  padding: 0 5px;
  /* background-color: #ffffff; */
}

/* セレクトボックス固有のスタイル */
.form-group select {
  padding: 0 20px 0 5px;
  /* background-color: #ffffff; */
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 12px;
}



/* ホバー効果 */
.form-group input[type="text"]:hover {
  border-color: #999;
}

.form-group select:hover {
  border-color: #999;
  /* background-color: #ffffff; */
}

/* フォーカス効果 */
.form-group input[type="text"]:focus {
  border-color: #2196f3;
  outline: none;
  box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.1);
}

.form-group select:focus {
  border-color: #2196f3;
  outline: none;
  box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.1);
  /* background-color: #ffffff; */
}

/* プレースホルダーのスタイル */
.form-group input[type="text"]::placeholder {
  color: #999;
}

/* スタッフタグ、タイプ、オプション共通スタイル */
.tag-section,
.option-section {
  /* margin-bottom: 25px; */
}

.tag-group,
.option-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}


/* タイプ、特別指名料のスタイル */
.form-flex-container {
  display: flex;
  justify-content: space-between;
  gap: 20px; /* 要素間の間隔 */
}


/* タイプのプルダウン選択 */
.type-section {
  margin-bottom: 25px;
  width: 300px;
}


/* 特別指名料のプルダウン選択 */
.nomination-section {
  margin-bottom: 25px;
  width: 300px;
}

.type-group {
  width: 100%;
}

.type-select {
  width: 100%;
  background: #141523;
  color-scheme: dark;
  border: solid 1px #277c95;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.5s ease;
}

.type-select:hover,
.type-select:focus {
  border: solid 1px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
  color: #fff;
}





/* オプションのスタイル */
.type-select option {
  background: #141523;
  color: #fff;
  padding: 8px;
}

/* 行のスタイル */
.tag-row,
.type-row,
.option-row {
  display: flex;
  gap: 10px;
  margin-bottom: 0px;
}

/* アイテムの基本スタイル */
.tag-item {
  flex: 1;
  min-width: 0; /* フレックスアイテムの縮小を許可 */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap; /* テキストの折り返しを防ぐ */
  overflow: hidden; /* はみ出た部分を隠す */
  text-overflow: ellipsis; /* はみ出た部分を...で表示 */
  color: white;
  background: #1b351c;
  border-color: #4caf50;
  box-shadow: 0 0 5px #4caf50;
  opacity: 0.7;
}

.option-item {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: white;
  background: #2a1b35;
  border-color: #9c27b0;
  box-shadow: 0 0 5px #9c27b0;
  opacity: 0.7;
}

/* チェックボックスを非表示 */
.tag-item input[type="checkbox"],
.type-item input[type="checkbox"],
.option-item input[type="checkbox"],
.special-item input[type="checkbox"] {
  display: none;
}

/* タグ用のスタイル */
.tag-text {
  font-size: 14px;
  /* color: #333; */
  text-align: center;
}

.option-text {
  font-size: 14px;
  /* color: #333; */
  text-align: center;
  width: 100%;
  position: relative;
  transition: transform 0.3s;
}

/* テキストが親要素をはみ出す場合のホバーアニメーション */
.option-item:hover .option-text {
  animation: scrollText 4s linear infinite;
}

/* スクロールアニメーションの定義 */
@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(0);
  }
  90% {
    transform: translateX(calc(-50%));
  }
  100% {
    transform: translateX(0);
  }
}

.needs-scroll {
  animation: none !important; /* テキストが収まる場合はアニメーション無効 */
}



/* チェックボックス選択時のスタイル */
.tag-item input[type="checkbox"]:checked + .tag-text,
.type-item input[type="checkbox"]:checked + .type-text,
.option-item input[type="checkbox"]:checked + .option-text {
  /* color: #fff; */
}

/* 各セクションの選択時の背景色 */
.tag-item:has(input[type="checkbox"]:checked) .tag-text {
  /* color: #fff; */
}

.type-item input[type="checkbox"]:checked + .type-text {
  /* background: #2196f3; */
}

.option-item input[type="checkbox"]:checked + .option-text {
  /* background: #9c27b0; */
}

/* チェックボックス選択時の親要素スタイル */
.tag-item:has(input[type="checkbox"]:checked) {
  background: #1b351c;
  border-color: #4caf50;
  box-shadow: 0 0 5px #4caf50;
  opacity: 1.0;
  text-shadow: 0 0 5px #fff;
}

.type-item:has(input[type="checkbox"]:checked) {
  background: #2196f3;
  border-color: #2196f3;
}

.option-item:has(input[type="checkbox"]:checked) {
  background: #2a1b35;
  border-color: #9c27b0;
  box-shadow: 0 0 5px #9c27b0;
  opacity: 1.0;
  text-shadow: 0 0 5px #fff;
}

/* ホバー効果 */
.tag-item:hover,
.type-item:hover,
.option-item:hover {
  /* background: #e0e0e0; */
}

.tag-item:hover{
  background: #368e39;
}


.option-item:hover {
  background: #6b0f82;
}




/* ホバー効果 */
.tag-item:hover {
  /* background: #e0e0e0; */
}

/* 選択済み項目のホバー効果 */
.tag-item:has(input[type="checkbox"]:checked):hover {
  background: #368e39;
}

.type-item:has(input[type="checkbox"]:checked):hover {
  /* background: #1976d2; */
}

.option-item:has(input[type="checkbox"]:checked):hover {
  background: #6b0f82;
}

/* 備考欄（ボード用） */
.board_remarks-section {
  margin-bottom: 15px;
}

.board_remarks-section .section-label {
  display: block;
  /* font-size: 12px; */
  /* color: #CBCBCB; */
  margin-bottom: 5px;
}

.board_remarks-section textarea {
  width: 100%;
  padding: 4px 6px;
  border: 1px solid #277c95;
  border-radius: 3px;
  /* resize: none; */
  min-height: 60px;
  font-size: 12px;
  background: #141523;
  color: #fff;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.board_remarks-section textarea:hover,
.board_remarks-section textarea:focus {
  border: solid 1px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
  color: #fff;
  outline: none;
}

/* 備考欄 */
.remarks-section {
  margin-bottom: 25px;
}

.remarks-section textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #277c95;
  border-radius: 4px;
  resize: vertical;
  min-height: 100px;
  font-size: 14px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .basic-info {
    flex-direction: column;
    gap: 15px;
  }

  .tag-item,
  .type-item,
  .option-item {
    flex: 1 1 calc(50% - 10px);
  }

  .type-row,
  .option-row {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/*====================================
  girlList.php(女の子一覧画面)
====================================*/
/* ヘッダーコントロール全体 */
.header-controls {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

/* 左側のコントロール */
.controls-left {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* 表示コントロール */
.display-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* 検索コントロール */
.search-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ソートコントロール */
.sort-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ボタンの共通スタイル */
.btn {
  padding: 5px 12px;
  border-radius: 4px;
  /* border: none; */
  cursor: pointer;
  /* font-size: 14px; */
  white-space: nowrap;
}
/*
.girlEdit {
  background: #4CAF50;
  color: white;
}

.girlGet {
  background: #804caf;
  color: white;
}
*/
#sequenceEditBtn {
  /* background: #2196F3; */
  color: white;
  border: none;
  /* padding: 6px 12px; */
  border-radius: 4px;
  cursor: pointer;
  margin: 7px;
}

/* 検索ボックスのスタイル */
#girlName {
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  width: 150px;
}

/* カウント表示 */
.count-display {
  white-space: nowrap;
}

.col1 {
  color: #ff0000;
}

/* ソートテキスト */
.sort-text {
  white-space: nowrap;
}

/* リセットボタン */
#resetBtn {
  background: #ff778a;
  color: white;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
  .header-controls {
    flex-wrap: wrap;
    gap: 10px;
  }

  .controls-left,
  .display-controls,
  .search-controls,
  .sort-controls {
    flex: 1 1 auto;
  }
}

/* 検索ボタン */
#searchBtn {
  background: #4caf50;
  color: white;
}

/* ホバー効果 */
.btn:hover,
#sequenceEditBtn:hover,
#searchBtn:hover {
  opacity: 0.9;
}

/*====================================
  schedule.php(スケジュール画面)
====================================*/

.table-container {
  position: relative;
  width: 100%;
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: auto;
}

.girlcell {
  position: sticky;
  left: 0;
  background: #0e1122;
  z-index: 1;
  min-width: 120px;
  padding: 8px;
}

.schedulecell {
  min-width: 100px;
  padding: 8px;
}
.schedulecell select {
  width: 100%;
  margin-bottom: 5px;
}
/* テーブルのヘッダーセルにも固定スタイルを適用 */
th.girlcell {
  position: sticky;
  left: 0;
  background: white;
  z-index: 2;
}

/* スクロールバーのスタイリング
.table-container::-webkit-scrollbar {
  height: 15px;
}

.table-container::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.table-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
  background: #555;
} */

.schDel {
  background: #3b1117;
  border: solid 1px #950a0a;
  padding: 0 10px;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
}
.schDel:hover {
  box-shadow: 0 0 8px #ff0000, 0 0 8px #ff0000 inset;
  text-shadow: 0 0 5px #950a0a;
}
/*====================================
  board_room.php(ルームタイプのボード)
====================================*/
/* ルームタイプのボード */

/* グリッドレイアウト */

.room_grid {
  display: flex;
  gap: 0px;
  padding: 0px;
  flex-wrap: wrap;
}

/* カード基本スタイル */
.room_card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  width: 300px;
  height: auto;
  min-height: 300px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 5px;
  margin: 5px;
  overflow: hidden;
}

/* 上部情報エリア */
.staff_info {
  margin-bottom: 5px; /* マージンを小さく */
}

/* ルーム名と名前の行 */
.info_row_1,
.info_row_2 {
  padding: 5px 0; /* パディングを小さく */
}

.room_name {
  flex: 0 0 100px; /* 縮まない、伸びない、初期値100px */
}

.room_name .room_select {
  width: 100px;
  padding: 5px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  background-color: #0e1122;
  color: white;
  cursor: pointer;
}

.room_name .room_select:focus {
  outline: none;
  border-color: #4a90e2;
}
#board_room .scheduleLists {
  display: none;
}
/* board end */
.staff-name-age {
  flex: 1; /* 残りのスペースを全て使用 */
  min-width: 0; /* flexboxでの収縮を許可 */
  overflow: hidden; /* はみ出し防止 */
  text-overflow: ellipsis; /* 長いテキストを省略 */
  white-space: nowrap; /* 改行させない */
}

.staff-name {
  font-weight: bold;
  margin-right: 5px;
}

.info_row_1 {
  display: flex;
  gap: 10px; /* プルダウンと名前の間隔 */
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
  width: 100%; /* 親要素の幅いっぱいに */
}

/* 時間と3サイズの行 */
.info_row_2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}

.schedule-time {
  color: #333;
}

.staff-body-info {
  text-align: right;
  font-size: 10px;
}

.body-data-list {
  display: flex;
  /* gap: 10px; */
  margin: 0;
}

.body-data-item {
  color: #333;
}

.body-data-item dd {
  margin: 0;
}





/* スケジュールエリア全体 */
.schedule_area {
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* スケジュールリスト（タイムグリッド） */
.scheduleLists.room_schedule_list {
  width: 100% !important;
  height: 40px !important;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: 0;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

/* 時間グリッド */
.scheduleLists.room_schedule_list .timeGrid {
  height: 100%;
  border-right: 1px solid #e0e0e0;
  position: relative;
  width: auto !important;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 出勤時間の背景 */
.scheduleLists.room_schedule_list .inServiceBg {
  position: absolute;
  background: rgba(0, 208, 255, 0.4);
  height: 100% !important;
  z-index: 1;
  pointer-events: none;
}

/* オプション：時間を表示する場合 */
.scheduleLists.room_schedule_list .timeGrid::after {
  content: attr(data-time);
  position: absolute;
  font-size: 9px;
  color: #666;
}

#board_room .scheduleLists .inServiceBg {
  height: 50px;
}

/* スクロールバーのカスタマイズ */
.scheduleLists::-webkit-scrollbar {
  width: 6px;
}

.scheduleLists::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.scheduleLists::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

/* 追加ボタン */
.schedule_area .add_button {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

/* アイコンのサイズ調整 */
.schedule_area .add_button i {
  font-size: 20px;
}

/* ホバー効果 */
.schedule_area .add_button:hover {
  background: #357abd;
  /* transform: translateY(-1px); */
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

/* クリック時の効果 */
.schedule_area .add_button:active {
  /* transform: scale(0.95); */
}

/* 状態による表示 */
.outService {
  opacity: 0.6;
}

/* board_room専用のスタイル */
.room_schedule_list .usageDataView {
  width: 100% !important;
  /* position: relative !important; */
  left: auto !important;
  margin-bottom: 5px;
  padding: 8px;
  border-radius: 4px;
  position: absolute !important;
  top: 50px;
}

.room_schedule_list .slipControlBox {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

/* パネル指名などの背景色を維持 */
.room_schedule_list .usageDataView.panel-nomination {
  background: #f6d9ff;
}

.room_schedule_list .usageDataView.new-customer {
  background: #fffed9;
}

.room_schedule_list .usageDataView.repeat-nomination {
  background: #d9eeff;
}

.room_schedule_list .usageDataView.free-time {
  background: #cbcbcb;
}

/* 接客データコンテナ */
.usage_data_container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 10px 0;
}

/* 接客データ表示 */
.usage_data_container .usageDataView {
  width: 100% !important;
  position: relative !important;
  left: auto !important;
  padding: 8px;
  margin-bottom: 5px;
  border-radius: 4px;
}
/* フリー枠 */
#freeSlipLists {
  position: relative;
  background: #fff;
  color: var(--color-gray);
  margin-bottom: 5px;
  overflow: auto;
  padding: 2px;
}
#freeSlipLists::before {
  content: "フリー伝票";
  display: block;
  position: absolute;
  font-size: 29px;
  font-weight: bold;
  /* margin-bottom: 5px; */
  left: calc(50% - 100px);
  /* top: 10px; */
  width: 200px;
  height: 40px;
  color: #d1d1d1;
  text-align: center;
}
#freeSlipLists .usageDataView {
  position: relative;
  margin: 2px;
  height: 35px;
  width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#freeSlipLists li:last-child {
  margin-right: 0;
}
#freeSlipCreate {
  background: #0e1122;
  color: #fff;
  margin: 5px;
  width: 188px;
  height: 29px;
  text-align: center;
  line-height: 29px;
  border-radius: 3px;
  transition: all 0.5s ease;
}
#freeSlipCreate:hover {
  text-shadow: #fff 0 0 5px;
  font-weight: bold;
  cursor: pointer;
}

/*====================================
  girlList.php
====================================*/

/* Girl List Container */
#order_list {
  display: flex;
  /* padding: 10px; */
  /* max-width: 1600px; */
  margin: 0 auto;
}

/* Girl Item Card */
.girl-item {
  background: #282b3a;
  margin: 5px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  /* color: black; */
  width: 250px;
}
.girl-item b {
  margin-left: 5px;
}
.girl-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Image Container */
.girl-item .img-container {
  position: relative;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  overflow: hidden;
}

.girl-item img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info Section */
.girl-item .info {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.girl-item .name {
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.girl-item hr {
  margin: 0;
  border: none;
  border-top: 1px solid #e5e7eb;
}

/* Measurements */
.girl-item .measurements {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.75rem;
}

/* Action Buttons */
.girl-item .actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}
.girl-item .glist {
  padding: 5px;
}
/* .btn {
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-align: center;
  white-space: nowrap;
} */
/*
.girlEdit {
  background-color: #10b981;
  color: white;
}

.girlEdit:hover {
  background-color: #059669;
}

.listBtn {
  background-color: #6b7280;
  color: white;
}

.listBtn:hover {
  background-color: #4b5563;
}

.delbtn {
  background-color: #ef4444;
  color: white;
}

.delbtn:hover {
  background-color: #dc2626;
}
*/
.delbtn {
  background: #3b1117;
  border: solid 1px #950a0a;
}
.delbtn:hover {
  border: solid 1px #950a0a;
  box-shadow: 0 0 8px #ff0000, 0 0 8px #ff0000 inset;
  text-shadow: 0 0 5px #950a0a;
}
/* Status Icons */
.mo {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 10;
  background: white;
  padding: 0.25rem;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mo img {
  width: 20px;
  height: 20px;
}

/* Hidden Status */
.girl-item[style*="background: #b6b6b6"] {
  opacity: 0.8;
}

.girl-item[style*="background: #b6b6b6"]::before {
  content: "非表示";
  position: absolute;
  top: 3rem;
  left: 1rem;
  background: #f43f5e;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
  z-index: 20;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  #order_list {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    padding: 0.5rem;
  }

  .girl-item .info {
    padding: 0.75rem;
  }

  .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
  }
}

/* Additional Utility Classes */
.checkflg {
  background-color: #9ca3af !important;
}

/*====================================
  schedule.php
====================================*/

#wrap-schedule .notice {
  color: #ff778a;
}
.imeDisabled {
  ime-mode: disabled !important;
  -webkit-ime-mode: disabled !important;
  -moz-ime-mode: disabled !important;
  -o-ime-mode: disabled !important;
  -ms-ime-mode: disabled !important;
}
/*====================================
  navi.php(お問い合わせのモーダルとログアウトボタン)
====================================*/

/* サイドバーボタン共通のスタイル */
aside #logoutBtn,
.request-link,
.release-link,
.twitter-link {
  position: absolute;
  bottom: 10px;
  width: 60px;
  background-color: #fff;
  color: #333;
  border-radius: 5px;
  box-shadow: 0 0 5px #666;
  padding: 5px 0 0;
  text-align: center;
  display: block;
  transition: all 0.5s;
}

/* 各ボタンの位置 */
aside #logoutBtn {
  left: 10px;
}

.request-link {
  left: 75px;
}

/* .release-link {
  left: 140px;
} */

.twitter-link {
  left: 140px;
}

/* ボタンのアイコン */
aside #logoutBtn img,
.request-link img,
.release-link img,
.twitter-link img {
  width: 30px;
  margin: 0 auto;
}

/* ボタンのテキスト */
aside #logoutBtn span,
.request-link span,
.release-link span,
.twitter-link span {
  font-size: 10px;
  font-weight: bold;
}

/* ホバー効果 */
aside #logoutBtn:hover,
.request-link:hover,
.release-link:hover,
.twitter-link:hover {
  background: #d1ffc6;
  text-decoration: none;
  color: #111;
}


/* 店舗セレクトボックス */
.title-with-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  padding: 0 10px;
}

.title-with-select .title {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 44px;
  font-size: 14px;
}

.shop-select {
  padding: 6px 8px;
  border-radius: 4px;
  border: 1px solid #277c95;
  font-size: 14px;
  /* min-width: 140px; */
  height: 32px;
  margin-left: 10px;
  background: #141523;
  color: #fff;
  width: 140px;
}

.shop-select:hover {
  border: solid 1px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
}


/* お問い合わせモーダル */
.inquiry-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  justify-content: center;
  align-items: center;
}

.inquiry-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}


.inquiry-modal-content {
  background-color: #fff;
  padding: 20px;
  width: 500px;
  border-radius: 5px;
  position: relative;
}

/* 閉じるボタン */
.inquiry-close {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #666;
}

/* フォームのタイトル */
.inquiry-modal h2 {
  font-size: 16px;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  color: #14181f;
}

/* フォーム要素 */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.inquiry-form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: #14181f;
}

.inquiry-form-group input,
.inquiry-form-group select,
.inquiry-form-group textarea {
  width: 100%;
  padding: 8px;
  border: none;
  border-radius: 3px;
  background-color: #14181f;
  color: #fff;
  font-size: 14px;
  height: auto;
}

.inquiry-form-group input[readonly] {
  background-color: #666;
}

.inquiry-form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.inquiry-required {
  color: #ff4444;
  margin-left: 3px;
}

/* 送信ボタン */
.inquiry-button-group {
  text-align: center;
  margin-top: 10px;
}

.inquiry-button-group button {
  padding: 8px 30px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
}

.inquiry-button-group button:hover {
  background-color: #f5f5f5;
}

/* お問い合わせボタン */
aside div.request-link {
  position: absolute;
  bottom: 10px;
  width: 60px;
  background-color: #fff;
  color: #333;
  border-radius: 5px;
  box-shadow: 0 0 5px #666;
  padding: 5px 0 0;
  text-align: center;
  display: block;
  transition: all 0.5s;
  left: 75px;
  cursor: pointer;
}

aside div .request-icon {
  font-size: 31px;
  display: block;
  margin-top: -1px;
}

/* お知らせボタン */
aside div .release-icon{
  font-size: 31px;
  display: block;
  margin-top: -1px;
}

/* Xへのリンク */
aside div.twitter-link {
  position: absolute;
  bottom: 10px;
  width: 60px;
  background-color: #fff;
  color: #333;
  border-radius: 5px;
  box-shadow: 0 0 5px #666;
  padding: 5px 0 0;
  text-align: center;
  display: block;
  transition: all 0.5s;
  left: 140px;
  cursor: pointer;
}

aside div .twitter-icon {
  font-size: 31px;
  display: block;
  margin-top: -1px;
}




.complete-message {
  text-align: center;
  padding: 40px 20px;
  color: #fff;
}

.complete-icon {
  font-size: 60px;
  color: #4CAF50;
  margin-bottom: 20px;
}

.complete-message h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #676b85;
}

.complete-message p {
  font-size: 16px;
  line-height: 1.6;
  color: #676b85;
}


/*====================================
  release.php(お知らせ情報)
====================================*/

.release-list {
  margin-top: 20px;
}

.release-item {
  border: 1px solid rgba(203, 203, 203, 0.2);
  border-radius: 4px;
  margin-bottom: 15px;
  padding: 15px;
}

.release-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.label {
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 14px;
}

/* ラベルの色分け */
.feature {
  background-color: #4CAF50;
  color: white;
}

.spec-change {
  background-color: #2196F3;
  color: white;
}

.bug-fix {
  background-color: #FF5722;
  color: white;
}

.emergency {
  background-color: #ff778a;
  color: white;
}

.other {
  background-color: #9E9E9E;
  color: white;
}

.release-date {
  color: #8e8e8e;
}

.target-page {
  margin-bottom: 10px;
  font-size: 16px;
}

.release-content {
  line-height: 1.5;
}


/* Twitterのモーダル */
.twitter-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.twitter-modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  width: 80%;
  max-width: 600px;
  position: relative;
  border-radius: 5px;
}

.twitter-modal h2 {
  font-size: 20px;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  color: #14181f;
}

.twitter-close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
  color: #14181f;
}

.twitter-timeline-container {
  height: 600px;
  overflow-y: auto;
}

.twitter-modal.active {
  display: block;
}

/* ATTENDA POP用会員データ画面（customerDataForPop.php） */
.usageDataList .addBtn{
    background: #144e5f;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    height: 30px;
    line-height: 10px;
    padding: 10px;
    margin-left: 10px;
    color: #fff;
    text-shadow: 0 0 5px white;
}

.dashboard-text {
  font-size: 14px;
  color: #fff;
  /* margin-bottom: 10px; */
  margin-left: 20px;
}

.dashboard-text span {
  font-weight: bold;
  color: #fb5858;
}

.usageDelete {
  background: #3b1117;
  border: solid 1px #950a0a;
  padding: 5px 10px;
  margin-top: 10px;
  display: inline-block;
}

/*====================================
  スタッフの閲覧権限付与機能（2025/02/12）
====================================*/

.check-all-btn {
  margin-left: 10px;
  padding: 4px 8px;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  cursor: pointer;
}

.check-all-btn:hover {
  background-color: #e8e8e8;
}

/* メニュー選択、基本設定選択共通スタイル */
.menu-section,
.config-section,
.modal-section {
  margin-bottom: 25px;
}

.menu-group,
.config-group 
.modal-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

/* 行のスタイル */
.menu-row,
.config-row,
.modal-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

/* アイテムの基本スタイル */
.menu-item{
  flex: 1;
  min-width: 0; /* フレックスアイテムの縮小を許可 */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 10px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: white;
  background: #1b351c;
  border-color: #4caf50;
  box-shadow: 0 0 5px #4caf50;
  opacity: 0.7;
}

.config-item {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 10px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: white;
  background: #2a1b35;
  border-color: #9c27b0;
  box-shadow: 0 0 5px #9c27b0;
  opacity: 0.7;
}

.modal-item {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 10px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: white;
  background: #7b7037;
  border-color: #d5c15d;
  /* box-shadow: 0 0 5px #9c27b0; */
  opacity: 0.7;
}

/* チェックボックスを非表示 */
.menu-item input[type="checkbox"],
.config-item input[type="checkbox"], 
.modal-item input[type="checkbox"] {
  display: none;
}

/* タグ用のスタイル */
.menu-text,
.modal-text {
  font-size: 14px;
  /* color: #333; */
  text-align: center;
}

.config-text {
  font-size: 14px;
  /* color: #333; */
  text-align: center;
  width: 100%;
  position: relative;
  transition: transform 0.3s;
}

/* スクロールアニメーションの定義 */
@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(0);
  }
  90% {
    transform: translateX(calc(-50%));
  }
  100% {
    transform: translateX(0);
  }
}

.needs-scroll {
  animation: none !important; /* テキストが収まる場合はアニメーション無効 */
}

/* 選択時のスタイル */
.menu-item:has(input[type="checkbox"]:checked) {
  background: #1b351c;
  border-color: #4caf50;
  box-shadow: 0 0 5px #4caf50;
  opacity: 1.0;
  text-shadow: 0 0 5px #fff;
}

/* チェックボックス選択時のスタイル */
.menu-item input[type="checkbox"]:checked + .menu-text,
.config-item input[type="checkbox"]:checked + .config-text, 
.modal-item input[type="checkbox"]:checked + .modal-text {
  color: #fff;
}

/* 各セクションの選択時の背景色 */
.menu-item:has(input[type="checkbox"]:checked) .menu-text {
  /* color: #fff; */
}

.config-item input[type="checkbox"]:checked + .config-text {
  /* background: #9c27b0; */
}

.config-item:has(input[type="checkbox"]:checked) {
  background: #2a1b35;
  border-color: #9c27b0;
  box-shadow: 0 0 5px #9c27b0;
  opacity: 1.0;
  text-shadow: 0 0 5px #fff;
}

.modal-item:has(input[type="checkbox"]:checked) {
  background: #7b7037;
  border-color: #d5c15d;
  box-shadow: 0 0 5px #afac4c;
  opacity: 1.0;
  text-shadow: 0 0 5px #fff;
}

/* チェックボックス選択時の親要素スタイル */
.menu-item:has(input[type="checkbox"]:checked) {
  background: #2c692f;
  border-color: #4caf50;
}

.config-item:has(input[type="checkbox"]:checked) {
  background: #9c27b0;
  border-color: #9c27b0;
}

/* .modal-item:has(input[type="checkbox"]:checked) {
  background: #9c27b0;
  border-color: #9c27b0;
} */

/* ホバー効果 */
.menu-item:hover {
  border: solid 1px #4caf50;
  box-shadow: 0 0 8px #4caf50, 0 0 8px #4caf50 inset;
  text-shadow: 0 0 5px #fff;
}
/* ホバー効果 */
.config-item:hover {
  border: solid 1px #9c27b0;
  box-shadow: 0 0 8px #9c27b0, 0 0 8px #9c27b0 inset;
  text-shadow: 0 0 5px #fff;
}

.modal-item:hover {
  /* border: solid 1px #9c27b0;
  box-shadow: 0 0 8px #9c27b0, 0 0 8px #9c27b0 inset;
  text-shadow: 0 0 5px #fff; */
}

/* 選択済み項目のホバー効果 */
.menu-item:has(input[type="checkbox"]:checked):hover {
  background: #45a049;
}

.config-item:has(input[type="checkbox"]:checked):hover {
  background: #7b1fa2;
}

.modal-item:has(input[type="checkbox"]:checked):hover {
  /* background: #7b1fa2; */
}


/*=================================================================
  スタッフの閲覧権限付与機能追加に伴うnavi.phpの処理を追加（2025/02/13）
===================================================================*/

#navi .hidden{
  display: none;
}

#config .hidden{
  display: none;
}

/*=================================================================
  スタッフの編集（設定）権限付与機能追加（2025/02/14）
===================================================================*/
/* 在籍管理 */


/*=================================================================
  店舗タブのcssをファイルに直書きしてたものを移動（2025/02/14）
===================================================================*/
/* 在籍管理 */
.shop-tabs {
  border-radius: 5px;
}

.tab-list {
  display: flex;
  gap: 10px;
  padding: 0 5px;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}

.tab-item {
    padding: 5px 10px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    background: #282b3a;
    border-radius: 5px;
}

.tab-item a {
  color: #ccc;
  text-decoration: none;
}

.tab-item:hover {
}

.tab-item.active {
  border: solid 1px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
  background: none;
  font-weight: bold;
}

.tab-item.active a {
  color: #fff;
}

/* 出勤登録 */
body#schedule tr.girl-row {
  transition: all 0.3s ease;
}
body#schedule tr.girl-row:hover {
  background-color: #474a5b !important;
}
body#schedule tr.girl-row:hover .girlcell{
  background-color: #474a5b !important;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 5px #00fffb;
}
#searchFormWrapper {
  display: inline-block;
}
#searchFormWrapper .searchBtn {
  border: solid 1px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
  background: none;
  font-weight: bold;
  color: #fff;
  font-weight: bold;
}
#scheduleList {
  margin-top: 10px;
}
/*=================================================================
  選択時のスタイルを追加（2025/02/21）
===================================================================*/

/* ネオンブルー */
.menu-item.neon_Blue:has(input[type="checkbox"]:checked) {
  background: #1b2435;
  border-color: #4a9eff;
  box-shadow: 0 0 5px #4a9eff;
  opacity: 0.7;
}

/* ネオンパープル */
.menu-item.neon_Purple:has(input[type="checkbox"]:checked) {
  background: #2a1b35;
  border-color: #a14aff;
  box-shadow: 0 0 5px #a14aff;
  opacity: 0.7;
}

/* ネオンレッド */
.menu-item.neon_Red:has(input[type="checkbox"]:checked) {
  background: #351b1b;
  border-color: #ff4a4a;
  box-shadow: 0 0 5px #ff4a4a;
  opacity: 0.7;
}

/* ネオンゴールド */
.menu-item.neon_Gold:has(input[type="checkbox"]:checked) {
  background: #353022;
  border-color: #ffd700;
  box-shadow: 0 0 5px #ffd700;
  opacity: 0.7;
}

/* テーブルソート用のスタイル */
.sort-header {
  cursor: pointer;
  user-select: none;
}

.sort-header .sort-icon {
  display: inline-block;
  opacity: 0.5;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.sort-header:hover .sort-icon {
  opacity: 1;
}

.sort-header[data-sort="asc"] .sort-icon {
  transform: rotate(180deg);
}

/* ボードにスケジュールフラグ追加 */
.main-content .schedule-data-item_1{
  background-color: #0056b3;
  color: #fff;
  padding: 2px;
  font-size: 10px;
  margin-left: 2px;
}

.main-content .schedule-data-item_2{
  background-color: #ff0085;
  color: #fff;
  padding: 2px;
  font-size: 10px;
  margin-left: 2px;
}

/* スケジュールページのデザイン変更 */
#scheduleList .schedulecell .schedulecell-inner-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #676b85;
  gap: 5px;
  padding-bottom: 5px;
}

#scheduleList .schedulecell select {
  font-size: 11px;
  margin-bottom: 5px;
}

#scheduleList .schedulecell .schedulecell-inner-Under {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  margin-bottom: 0px;
}

#scheduleList .schedulecell {
  min-width: 100px;
  padding: 10px;
}

#scheduleList .schedulecell .schDel {
  background: #3b1117;
  border: solid 1px #950a0a;
  padding: 4px 10px;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
}

#scheduleList .schedulecell select.statusChange,
#scheduleList .schedulecell select.atendanceChange {
  margin-bottom: 1px;
}
#scheduleList .startchange, #scheduleList .endchange {
  width: 58px;
  font-size: 14px;
  text-align: center;
}

.table-container {
  position: relative;
  max-height: calc(100vh - 210px); /* 表示領域の高さを設定 */
  overflow-y: auto; /* 縦スクロールを有効化 */
}

#scheduleList thead th {
  position: sticky;
  top: -1px;
  z-index: 10;
  background-color: #282B3A; /* 背景色 - 実際のデザインに合わせて変更してください */
  /* borderの問題を解決するためのスタイル追加 */
  box-shadow: 0 1px 0 0 #ddd, /* 下のborder */
              0 0 0 1px #ddd; /* 左右のborder */
}

/* 女の子セルも固定する場合 */
#scheduleList th.girlscell, 
#scheduleList td.girlcell {
  position: sticky;
  left: -1px;
  z-index: 5;
  background-color: #282B3A; /* 背景色 - 実際のデザインに合わせて変更してください */
  /* borderの問題を解決するためのスタイル追加 */
  box-shadow: 1px 0 0 0 #ddd; /* 右のborder */
}

/* 両方固定されるコーナーセルは高いz-indexが必要 */
#scheduleList th.girlscell {
  z-index: 15;
  /* コーナーセルのborder問題を解決 */
  box-shadow: 1px 1px 0 0 #ddd;
}

/* 土日の背景色がある場合、それも適切に反映させる */
#scheduleList th.Sat {
  background-color: #376f85; /* 土曜日の背景色 */
}

#scheduleList th.Sun {
  background-color: #853757; /* 日曜日の背景色 */
}
/* 選択されたセルのスタイル */
.schedulecell.selected {
  background-color: rgba(0, 123, 255, 0.2);
  border: solid 2px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
}

/* 一括設定関連のスタイル */
.time-picker-global {
    width: 65px;
}
/* 時間設定モード時のカーソル表示 */
body.time-set-mode .schedulecell {
  cursor: pointer;
}

/* 更新時の視覚的フィードバック */
.schedulecell.updated {
  background-color: rgba(40, 167, 69, 0.3);
  transition: background-color 0.5s;
}
/* スケジュールページャーのスタイル */
.schedule-pager {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.pager-btn {
  display: inline-block;
  padding: 5px 12px;
  border: solid 1px #277C95;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  margin: 0 5px;
  transition: background-color 0.2s;
}

.pager-btn:hover {
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
  color: white;
  text-decoration: none;
}

.today-btn {
  border: solid 1px #277C95;
  color: white;
}

.today-btn:hover {
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
  color: white;
}

.current-period {
    font-weight: bold;
    margin: 0px 10px;
    font-size: 14px;
    color: #c7c7c7;
}
#applyTimeBtn {
  margin-left: 10px;
  padding: 3px 10px;
  font-size: 13px;
}
/*====================================
  attendance.php 出勤人数一覧 20250226追加
====================================*/

/* ヘッダー部分 */
/* .attendance_header {
  background-color: #fff;
  padding: 15px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
} */

.attendance_headinfo {
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
}

/* .attendance_title {
  font-size: 24px;
  font-weight: bold;
} */

.attendance_current_date {
  font-size: 16px;
  /* color: #666; */
}

/* メインコンテナ */
.attendance_container {
  display: flex;
  margin: 0px auto;
  gap: 5px;
  padding: 0 20px;
  color: #0e1122;
}

/* 左側セクション */
.attendance_left_section {
  flex: 0 0 260px;
}

/* 店舗別出勤数 */
.attendance_store_summary {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 10px 10px;
}

.attendance_store_summary h3 {
  margin: 0px 0 5px;
  padding-bottom: 0px;
  /* border-bottom: 2px solid #eee; */
}

/* 店舗グループをフレックスコンテナに */
.attendance_store_group {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  /* margin-bottom: 10px; */
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

.attendance_store {
  flex: 1;
  padding: 5px;
  border-radius: 4px;
  text-align: center;
}
/* 店舗名と人数を横並びに */
.attendance_store_inner {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: space-between;
}

.attendance_store_name {
  font-size: 14px;
}

.attendance_staff_count {
  font-weight: bold;
  font-size: 16px;
}
.attendance_store_a {
  background: hsl(120, 100%, 90%);
}
.attendance_store_b {
  background: hsl(150, 100%, 90%);
}
.attendance_store_c {
  background: hsl(180, 100%, 90%);
}
.attendance_store_d {
  background: hsl(210, 100%, 90%);
}
.attendance_store_e {
  background: hsl(240, 100%, 90%);
}
.attendance_store_f {
  background: hsl(270, 100%, 90%);
}
.attendance_store_g {
  background: hsl(300, 100%, 90%);
}
.attendance_store_h {
  background: hsl(330, 100%, 90%);
}
.attendance_store_i {
  background: hsl(0, 100%, 90%);
}
.attendance_store_j {
  background: hsl(30, 100%, 90%);
}
.attendance_store_k {
  background: hsl(60, 100%, 90%);
}
.attendance_store_l {
  background: hsl(90, 100%, 90%);
}
.attendance_staff_count {
  font-weight: bold;
}

/* 右側セクション */

.attendance_daily_schedule{
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.attendance_schedule_card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 15px 10px;
  width: 250px;
}

/* スケジュールカードのヘッダー部分 */
.attendance_schedule_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  padding-bottom: 0px;
  border-bottom: 2px solid #eee;
}

.attendance_schedule_date {
  font-size: 14px;
  font-weight: bold;
}

.attendance_total_staff {
  color: #666;
}

.attendance_schedule_list {
  max-height: 500px;
  overflow-y: auto;
}

.attendance_schedule_item {
  display: flex;
  justify-content: space-between;
  padding: 2px 5px;
  margin-bottom: 2px;
  border-radius: 4px;
  transition: background-color 0.2s;
  align-items: center;
}

.attendance_time {
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 8px;
}

.attendance_staff_name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}

/* カレンダー部分 */
.attendance_calendar {
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin-bottom: 5px;
}

.attendance_calendar_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 5px;
  /* margin-bottom: 10px; */
}

.attendance_calendar_header h2 {
  margin: 0;
  font-size: 20px;
  color: #f0f0f0;
}

.attendance_prev_month, .attendance_next_month {
  cursor: pointer;
  padding: 5px 10px;
  background-color: #f0f0f0;
  border-radius: 4px;
  user-select: none;
}

.attendance_prev_month:hover, .attendance_next_month:hover {
  background-color: #e0e0e0;
}

.attendance_calendar_grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background-color: #e0e0e0;
  border: 1px solid #e0e0e0;
}

.calendar-day-header {
  text-align: center;
  padding: 10px;
  background-color: #f8f8f8;
  font-weight: bold;
}

.calendar-day {
  min-height: 35px;
  background-color: white;
  padding: 3px;
  text-align: right;
  position: relative;
}

.calendar-day.other-month {
  background-color: #f5f5f5;
  color: #aaa;
}

.calendar-day.today {
  background-color: #fffde7;
}

.calendar-day-number {
  display: block;
  margin-bottom: 5px;
}

.calendar-day.sunday .calendar-day-number {
  color: red;
}

.calendar-day.saturday .calendar-day-number {
  color: blue;
}


.calendar-day.selected-day {
  background-color: #e3f2fd;
  border: 2px solid #2196F3;
}

/* カレンダー全体のスタイル調整 */
.calendar-day {
  cursor: pointer;
  transition: background-color 0.2s;
}

.calendar-day:hover {
  background-color: #f0f7ff;
}

/* 日付表示のスタイル */
.attendance_current_date {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-left: 15px;
}


/*====================================
  waiting.php 待ち時間一覧 20250226追加
====================================*/
/* メインコンテナ */
.waiting_container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0 15px;
  color: #ccc;
  width: 100%;
  margin: 0 auto;
  align-items: start;
}

/* または、より明示的に各テーブルの高さを自動にする場合 */
.waiting_container .staff-table {
  height: auto; /* 追加：テーブルの高さを内容に応じて自動調整 */
}


.waiting_container table {
  border-collapse: collapse;
  width: 450px;
  table-layout: fixed;
  height: 100%;
  background: #fff;
  color: #333;
}

.waiting_container tr {
  height: 20px; /* すべての行で一定の高さを確保 */
}

.waiting_container th, 
.waiting_container td {
  border: 1px solid #ddd;
  padding: 0;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
  box-sizing: border-box; /* パディングとボーダーを高さに含める */
  height: 20px; /* セル自体の高さも固定 */
  line-height: 20px; /* テキストを垂直中央に配置 */
}


/* 列幅の設定 */
.waiting_container th:nth-child(1),
.waiting_container td:nth-child(1) {
}

.waiting_container th:nth-child(2),
.waiting_container td:nth-child(2),
.waiting_container th:nth-child(3),
.waiting_container td:nth-child(3) {
  width: 20px;
}
.waiting_container th:nth-child(4),
.waiting_container td:nth-child(4) {
  width: 40px;
}
.waiting_container th:nth-child(5),
.waiting_container td:nth-child(5){
  width: 100px;
}

.waiting_container th:nth-child(6),
.waiting_container td:nth-child(6) {
  width: 55px;
}

.waiting_container th:nth-child(7),
.waiting_container td:nth-child(7) {
  width: 55px;
}

.waiting_container th:nth-child(8),
.waiting_container td:nth-child(8) {
  width: 75px;
}



.waiting_container td {
  /* color: #dddddd; */
}

.waiting_container th {
  background-color: #f2f2f2;
  font-weight: bold;
}

.waiting_container tr.nameInner td.waitName:hover {
}

.waiting_container tr:hover td.waitName:hover {
  color: #ff68ba;
}

.waiting_container tr.nameInner td input{
  height: 20px!important;
  width: 100%;
}


.waiting_container .header {
  background-color: #4472C4;
  color: #0e1122;
  height: 20px;
}

.waiting_container tr:not(.header) {
  height: 20px; /* データ行の高さを固定 */
}

.waiting_container tr.empty-row td {
  background-color: transparent !important; /* 背景を透明に */
  border-color: transparent !important; /* 境界線を透明に */
}

.waiting_container tr.empty-row:hover {
  background-color: transparent !important;
}
.waiting_container input:hover,
.waiting_container input:focus,
.waiting_container input:active,
.waiting_container select {
  background-color: #fff;
  color: #333;
  text-shadow: none;
  box-shadow: none;
}
.waiting_container select {
  height: 20px;
  border: solid 1px #277c95;
  padding: 0;
}
.waiting_container input {
  background-color: #fff;
  color: #333;
}
.waiting_container select.attendance-change {
  width: 65px !important;
}
/* ステータス凡例のスタイル */
.status-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.color-box {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.legend-text {
  color: #ccc;
  font-size: 0.9em;
}

/* 個別のステータススタイル */

/* 出勤確認済 */
.status-confirmed {
  background-color: #ffcc99; 
  color: #000000;
}

/* 出勤中 */
.status-working {
  background-color: #ff99cc;
  color: #000000;
}

/* 予約完売 */
.status-sold-out {
  background-color: #ff6666;
  color: #111;
}

/* 終了 */
.status-ended {
  background-color: #4b4b4b;
  color: #FFFFFF;
}

/* 要確認 */
.status-confirmation {
  background-color: #FFAA01;
  color: #000000;
}

/* 当欠 */
.status-absent {
  background-color: #111;
  color: #FF00AA;
}

/* 無欠 */
.status-unauthorized-absence {
  background-color: #203a10;
  color: #FFFFFF;
}

.status-confirmed .waitName:hover,
.status-working .waitName:hover,
.status-sold-out .waitName:hover,
.status-ended .waitName:hover,
.status-confirmation .waitName:hover,
.status-absent .waitName:hover,
.status-unauthorized-absence .waitName:hover {
  color: #fff!important;
}




/* ステータスプルダウンのスタイル */
.status-select {
  width: 95px !important;
  padding: 2px 4px;
  font-size: 11px;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box;
}
#waiting #content {
  position: relative;
}

/* ポップアップ表示位置 */
#girlInfoList {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 5px;
  width: calc(100% - 10px);
  height: auto;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  z-index: 1000;
}

#girlInfoList:empty {
  display: none;
}

/* ポップアップ部分 */
.staff-options-popup {
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  overflow-x: hidden;
  color: #333;
  font-size: 13px;
  padding: 3px;
  max-width: 50%;
  position: relative;
}

/* ヘッダー部分のスタイル */
.staff-options-popup .options-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid #eee;
  margin-bottom: 5px;
  flex-wrap: wrap;
  line-height: normal;
}

.staff-options-popup .girl_name {
  font-size: 16px;
  font-weight: bold;
}

/* スケジュール情報のスタイル */
.staff-options-popup .schedule-list {
  background-color: #f8f8f8;
  border-radius: 3px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px;
}

.staff-options-popup .schedule_flg,
.staff-options-popup .attendance_flg {
  color: white;
  padding: 2px 2px;
  font-size: 11px;
}

.staff-options-popup .schedule_flg {
  background-color: #0056b3;
}

.staff-options-popup .attendance_flg {
  background-color: #ff0085;
}

/* オプションリストのスタイル */
.staff-options-popup .options-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  width: 480px;
}

/* オプションリストのレイアウト */
.staff-options-popup .options-list,
.staff-options-popup .fleeTag-list {
  gap: 3px;
}

/* リスト項目のサイズ調整 */
.staff-options-popup .options-list li,
.staff-options-popup .freeTag-list li {
  padding: 2px;
  font-size: 12px;
}

/* オプションとフリータグの色分け */
.staff-options-popup .options-list li {
  background-color: #e3f2fd;
  color: #0056b3;
}

.staff-options-popup .fleeTag-list li {
  background-color: #fce4ec;
  color: #d81b60;
}

/* 閉じるボタン */
.staff-options-popup .popup-close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  background: #f44336;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
}

.staff-options-popup .popup-close:hover {
  background: #d32f2f;
}

.staff-options-popup.ui-draggable-dragging {
  opacity: 0.8;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* 他・本が0の場合の点滅アニメーション */
.zero-bookings {
  animation: yellowBlinkSlow 4s ease-in-out infinite;
  will-change: background-color;
  color: #111;
}

@keyframes yellowBlinkSlow {
  0%, 85% {
    background-color: transparent;
  }
  15%, 70% {
    background-color: #ecff3b;
  }
}

/* ステータス変更のスタイル */
.status-select {
  width: 100%;
  padding: 2px;
  font-size: 12px;
}

.ajax-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ajax-loading {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px 30px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
}
.excel-buttons {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin: 4px 0px;
}
.excel-btn {
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  padding: 5px;
}
.excel-btn:hover {
}
.date-selector label {
  font-size: 12px;
}
/*====================================
  girlData.php デザイン変更 20250304追加
====================================*/
#girlData #modal{
  max-width: 1800px!important;
}
#customerData .modal-body{
  /* display: flex; */
}

#customerData .modal-body .staff-registration-left{
  width: 40%;
  padding: 10px;
}

#customerData .modal-body .staff-registration-center{
  width: 40%;
  padding: 10px;
}

#customerData .modal-body .staff-registration-right{
  width: 20%;
  padding: 10px;
}

.staff-grid{
  padding: 0px;
}

.board_remarks-section textarea{
  margin: 0px;
}

.remarks-section textarea{
  margin: 0px;
}

.remarks-section .section-label{
  margin-bottom: 5px;
}

.remarks-section textarea{
  height: 66px;
  min-height: 50px;
}

#customerData .form-actions{
  margin-top: 0px;
}


#customerData .modal-body .staff-registration-left .staff-grid .staff-item{
  padding: 0px;
}

#customerData .modal-body .staff-registration-left .common-section{
  padding: 0px;
}

.special-item {
  flex: 1;
  min-width: 0; /* フレックスアイテムの縮小を許可 */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap; /* テキストの折り返しを防ぐ */
  overflow: hidden; /* はみ出た部分を隠す */
  text-overflow: ellipsis; /* はみ出た部分を...で表示 */
  color: white;
  background: #7b7037;
  border-color: #d5c15d;
  /* box-shadow: 0 0 5px #4caf50; */
  opacity: 0.7;
  margin-bottom: 5px;
}

.special-item:has(input[type="checkbox"]:checked) {
  background: #7b7037;
  border-color: #d5c15d;
  box-shadow: 0 0 5px #afac4c;
  opacity: 1.0;
  text-shadow: 0 0 5px #fff;
}


.ui-timepicker-wrapper{
  width: 5.0em!important;
}


/*====================================
  settingGrant.php,userGrant.php 20250305追加
====================================*/
#customerData .modal-body.authority-modal{
  display: block;
}


/*====================================
  girlSalaryList.php 20250317追加
====================================*/
.dataTables_wrapper .dataTables_length select {
  background-color: #0e1122!important;
}

/* 2025/03/27 日報に追加 */
/* 2025/04/17 女子、スタッフの雑費、支給を共通化 */
/* 女子、スタッフ雑費 */
.cost-container {
  position: relative;
  min-height: 25px;
}

.cost-row {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.cost-row select {
  margin-right: 5px;
}

.add-cost-btn, .remove-cost-btn {
  cursor: pointer;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background-color: #f8f8f8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  padding: 0;
}

.add-cost-btn {
  cursor: pointer;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background-color: #f8f8f8;
  display: block;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  padding: 0;
  margin: 5px auto;
  position: relative;
}

.remove-cost-btn {
  margin-left: 5px;
}

.add-cost-btn:hover, .remove-cost-btn:hover {
  background-color: #e0e0e0;
}

/* 女子、スタッフ支給 */
.payment-container {
  position: relative;
  min-height: 25px;
}

.payment-row {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.payment-row select {
  margin-right: 5px;
}

.add-payment-btn, .remove-payment-btn {
  cursor: pointer;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background-color: #f8f8f8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  padding: 0;
}

.add-payment-btn {
  display: block;
  margin: 5px auto;
  position: relative;
}

.remove-payment-btn {
  margin-left: 5px;
}

.add-payment-btn:hover, .remove-payment-btn:hover {
  background-color: #e0e0e0;
}

/*====================================
  board.php 時間部分を追従式に変更
  20250414追加
====================================*/
.board-fixed-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #fff;
  display: flex;
  width: 100%;
}
.board-fixed-header .boardHead {
  width: 200px;
  flex-shrink: 0;
}

.board-fixed-header .timeLists {
  flex-grow: 1;
}


.usageTime {
  FONT-WEIGHT: BOLD;
  FONT-SIZE: 12PX;
  LETTER-SPACING: -0.5PX;
}

/*====================================
  board.php 予約数を表示
  20250416追加
====================================*/

/* 日報タブ用のスタイル */
.report-tabs {
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.report-tabs .tab-nav {
  display: flex;
  gap: 5px;
  padding: 15px;
  margin: 0;
  list-style: none;
  border-bottom: 1px solid #676B85;
  flex-wrap: wrap;
}

.report-tabs .tab-nav-item {
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 6px;
  background: #141523;
  transition: all 0.3s ease;
  color: #CBCBCB;
  font-size: 14px;
  border: 1px solid #277c95;
}

.report-tabs .tab-nav-item:hover {
  border: solid 1px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
}

.report-tabs .tab-nav-item.active {
  background: #1a73e8;
  color: #fff;
  border-color: #1a73e8;
}

.tab-content {
  padding: 20px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.stats-card {
  background: #1a1a2e;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stats-card h4 {
  margin: 0 0 10px 0;
  color: #CBCBCB;
  font-size: 16px;
}

.stats-value {
  font-size: 24px;
  font-weight: bold;
  color: #1a73e8;
}

/* customer data */
/* フレックスレイアウトのための顧客データスタイル */
.customer-data-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-family: sans-serif;
  gap: 0px;
  color: #ffffff; /* 白テキスト */
  padding: 15px;
  border-radius: 4px;
}

.customer-row {
  display: flex;
  width: 100%;
  gap: 5px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.customer-row-compact {
  display: flex;
  width: 100%;
  gap: 0px; /* 項目間の間隔を適度に調整 */
  align-items: center;
  padding: 4px 0; /* 8px → 4px に縮小 */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: space-between;
}

.customer-row-compact .customer-field {
  display: flex;
  align-items: center;
  margin-right: 10px; /* 次の項目との間隔 */
  flex: 0 0 auto; /* 自動拡張を無効にして必要最小限の幅に */
}


.customer-label {
  font-weight: bold;
  color: #ddd;
}

.customer-field {
  flex: 1;
  display: flex;
  align-items: center;
}

.customer-field-wide {
  flex: 2;
}

.customer-field-wide input[type="text"]{
  width: 200px!important;
}

.customer-field-full {
}
#modal #name {
  width: 200px;
}
#modal #kana {
  width: 100px;
}
/* フォーム要素のスタイル */
.customer-data-container input[type="text"],
.customer-data-container input[type="tel"],
.customer-data-container select,
.customer-data-container textarea {
  width: 100%;
  box-sizing: border-box;
}
.customer-data-container #rating {
  width: 100px;
}
.customer-data-container textarea {
  min-height: 80px;
  width: 100%;
  resize: vertical;
}

/* 住所入力のスタイル */
.address-container {
  display: flex;
  width: 100%;
  gap: 10px;
  align-items: center;
}

.address-container input[name="address"] {
  flex: 1;
  min-width: 300px;
}

.address-container .room-number {
  flex: 0 0 55px;
  width: 55px;
}

/* 誕生日入力のスタイル */
.birthday-container {
  display: flex;
  align-items: center;
  gap: 5px;
}

.birthday-container select {
  flex: 0 0 auto;
}

/* チェックボックスのスタイル改善 */
.customer-data-container input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
#clear-search {
  border: solid 1px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
  color: #fff;
  background-color: #141523;
  font-size: 12px;
  padding: 0 9px;
  border-radius: 3px;
  cursor: pointer;
}
#castBoard .filter-container {
  display: flex;
  gap: 5px;
}
#castBoard .board-memo{
  width: 201px;
  height: 100%;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 5px;
  resize: none;
  

}
/* information */
#information #order_list {
  display: block;
  margin: 0 auto;
}

.info-item {
  position: relative;
  border: 1px solid #277c95;
  padding: 5px;
  margin: 5px;
  border-radius: 5px;
  cursor: grab;
}
.info-item.disabled {
  background-color: #f5f5f5;
}
.info-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.info-title {
  font-size: 18px;
  font-weight: bold;
}
.info-date {
  color: #898989;
  font-size: 12px;
  clear: both;
  text-align: right;
}
.info-content {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.info-actions {
  display: flex;
  gap: 10px;
}
.info-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-right: 15px;
  float: left;
}

.badge-disabled {
  display: inline-block;
  padding: 3px 8px;
  background-color: #dc3545;
  color: white;
  border-radius: 3px;
  margin-left: 10px;
  font-size: 12px;
}



/* informationEdit */
#informationEdit textarea {
  width: 100%;
  box-sizing: border-box;
}
#informationEdit .dropify-wrapper {
  width: 100%;
  height: 300px;
}
/* 画像プレビューを中央に配置し、高さいっぱいに表示 */
#informationEdit .dropify-wrapper .dropify-preview {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#informationEdit .dropify-wrapper .dropify-preview .dropify-render img {
  -webkit-transform: translate(0, 0);
}
#informationEdit .info-form {
  width: 100%;
}
#informationEdit .image-preview {
  max-width: 300px;
  margin-top: 10px;
}
#informationEdit .checkbox-group {
  margin-top: 10px;
}
#informationEdit .form-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
#informationEdit .required {
  color: #dc3545;
}
/* CKEditor自体のコンテナ部分 */
.cke_chrome {
  border: 1px solid #d1d1d1 !important;
}

/* CKEditorの中身 */
.cke_contents {
  background-color: #ffffff !important;
}

/* テキストエリアにCKEditorが適用される前の状態でも背景を白に */
#informationEdit textarea {
  background-color: #ffffff !important;
  color: black;
}



/*====================================
  usage.php デザイン変更20250521追加
====================================*/
table#usageList {
  table-layout: fixed;
  width: 100%;
}

#usageList tbody td{
  padding: 3px;
}
#usageList tbody .deleted{
  color: #898989;
  background-color: rgba(255, 0, 0, 0.1);
  opacity: 0.7;
}

#usageList th.usageRemarks,
#usageList td.usageRemarks {
  width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#usageList th.usageExtension,
#usageList td.usageExtension,
#usageList th.usagePointSearch,
#usageList td.usagePointSearch {
  width: 50px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#usageList td.usagePointSearch .pointSearchBtn{
  display: flex;
  text-align: center;
  justify-content: center;
}


#usageList th.usageNominationType,
#usageList td.usageNominationType {
  width: 80px;
}

#usageList th.usageHistory,
#usageList td.usageHistory {
  width: 70px;
}

#usageList th.usageSerialNumber,
#usageList td.usageSerialNumber {
  width: 50px;
  text-align: right;
}

#usageList th.usageReservationDate,
#usageList td.usageReservationDate {
  width: 100px;
}

#usageList th.usageTotalMoney,
#usageList td.usageTotalMoney {
  width: 70px;
  text-align: right;
}

#usageList tbody tr.current {
  position: relative;
  opacity: 1;
  /* background-color: none !important;
  box-shadow: none!important; */
}


#usageList tbody td.customerName:hover {
  background-color: #ff35352e;
}

.customerName.edit.customerEdit.inline {
  cursor: pointer;
  position: relative;
}

.customerName.edit.customerEdit.inline:hover:after {
  content: "クリックで顧客編集";
  position: absolute;
  background: #333;
  color: white;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 100;
  bottom: 100%; /* 上に表示するために100%に変更 */
  left: 0;
  margin-bottom: 5px; /* 要素との間に少し余白を設ける */
}

/*====================================
  customer.php デザイン変更20250521追加
====================================*/
#customerList tbody td.customerName:hover {
  background: #27769563;
  text-shadow: 0 0 5px #fff;
  color: #ffffff;
  font-weight: bold;
  box-shadow: 0 0 10px #9de3fb inset, 0 0 10px #9de3fb;
}
#customerList tbody td.customerName.active {
  background: #27769563;
  text-shadow: 0 0 5px #fff;
  color: #ffffff;
  font-weight: bold;
  box-shadow: 0 0 10px #9de3fb inset, 0 0 10px #9de3fb;
}

/*====================================
  usageData.php ボードへリンクボタン20250524追加
====================================*/

/* ボードへリンクボタンのスタイル */
.boardLinkBtn {
  background-color: #007bff;
  color: #ffffff;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-weight: 500;
}

.boardLinkBtn:hover {
  background-color: #0056b3;
}

.boardLinkBtn:active {
  background-color: #004085;
  transform: translateY(1px);
}

.boardLinkBtn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* ボタンが無効化された場合のスタイル */
.boardLinkBtn:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
  opacity: 0.6;
}

/* viewBoardコンテナのスタイル */
.viewBoard {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}


/*====================================
  usageData.php 顧客情報表示ボタン20250524追加
====================================*/

/* 顧客情報表示ボタンのスタイル */
.customerInfoBtn {
  background-color: #28a745;
  color: #ffffff;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-weight: 500;
}

.customerInfoBtn:hover {
  background-color: #218838;
}

.customerInfoBtn:active {
  background-color: #1e7e34;
  transform: translateY(1px);
}

.customerInfoBtn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.25);
}

/* ボタンが無効化された場合のスタイル */
.customerInfoBtn:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
  opacity: 0.6;
}

/* viewCustomerコンテナのスタイル */
.viewCustomer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/*====================================
  月間出勤情報ボタン20250524追加
====================================*/

/* 月間出勤情報ボタンのスタイル */
.monthlyAttendanceBtn {
  opacity: 0.8;
  background: #f5f5f5;
  color: #282b3a;
  border: none;
  padding: 2px 6px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.8s ease;
  font-weight: 400;
  margin-top: 10px;
  display: block;
  white-space: nowrap;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.monthlyAttendanceBtn:hover {
  opacity: 1;
  transform: translateY(1px);
}

.monthlyAttendanceBtn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(111, 66, 193, 0.25);
}

/* ボタンが無効化された場合のスタイル */
.monthlyAttendanceBtn:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
  opacity: 0.6;
}

/* girlcellの調整（必要に応じて） */
.girlcell {
  text-align: center;
  vertical-align: middle;
  padding: 8px 4px;
}


/*====================================
  girlData.php デザイン変更20250530追加
====================================*/
/* girlDataページ専用のタブスタイル */
.girlData_modal .tab-container {
  width: 100%;
  margin-bottom: 20px;
}

.girlData_modal .tab-nav {
  display: flex;
  border-bottom: 2px solid #333;
  background: #2a2a2a;
  margin: 0;
  padding: 0;
}

.girlData_modal .tab-button {
  flex: 1;
  padding: 15px 20px;
  background: #3a3a3a;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
  border-right: 1px solid #555;
}

.girlData_modal .tab-button:last-child {
  border-right: none;
}

.girlData_modal .tab-button:hover {
  background: #4a4a4a;
  color: #fff;
}

.girlData_modal .tab-button.active {
  background: #277c95;
  color: #fff;
}


#girlData .mypage-account {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: start;
  font-size: 12px;
  margin-bottom: 10px;
}


.girlData_modal .tab-content {
  display: none;
  padding: 20px 0;
  animation: fadeIn 0.3s ease-in;
}

.girlData_modal .tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.girlData_modal .input-row{
  margin-bottom: 20px;
}


.girlData_modal #age,
.girlData_modal #height,
.girlData_modal #bsize,
.girlData_modal #wsize,
.girlData_modal #hsize {
  width: 100px;
}



/*====================================
  scheduleMonthly.php 月間出勤情報20250602追加
====================================*/
/* 月間カレンダー専用スタイル */
.scheduleMonthly_calendar-table {
  width: 995px;
  border-collapse: collapse;
  border: 1px solid #ddd;
}


.scheduleMonthly_calendar-table th
.scheduleMonthly_calendar-table td {
  width: 145px;
}
.scheduleMonthly_input-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.scheduleMonthly_date-number {
  font-weight: bold;
  line-height: 30px;
  width: 21px;
  margin-right: 5px;
  text-align: center;
  color: #c0ff00;
  font-size: 16px;
}
.scheduleMonthly_status-select {
  margin-top: 3px;
}
.scheduleMonthly_schedule-status-inputs select {
  width: 58px;
}
#scheduleList .schedulecell .scheduleMonthly_input-wrapper .scheduleMonthly_delete-btn {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  padding: 0;
  transition: all 0.8s ease;
}
#scheduleList .schedulecell .scheduleMonthly_input-wrapper:hover .scheduleMonthly_delete-btn {
  opacity: 1;
}
.bulkInput {
  font-size: 14px;
  margin-right: auto;
  margin-left: 10px;
}
.scheduleMonthly_current-month {
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 5px #00fffb;
  margin: 0 10px;
  font-size: 22px;
}
/*====================================
  usage.php 予約のみボタンを追加 20250609
====================================*/
/* 予約のみチェックボックスのボタン風スタイル */
.reservation-only-wrapper {
  display: inline-block;
  position: relative;
  top: 5px;
}

/*====================================
  usage.php 合計金額の表示 20250609
====================================*/
.reservation-total-amount {
  margin: 10px 0;
  padding: 8px 12px;
  background-color: #2d3748;
  border-radius: 4px;
  display: inline-block;
}

.total-label {
  color: #a0aec0;
  font-size: 14px;
  margin-right: 8px;
}

.total-amount {
  color: #ffffff;
  text-shadow: 0 0 5px #00fffb;
  font-size: 16px;
  font-weight: bold;
}

/*====================================
  girlData.php 新人チェックボックスのスタイル 20250618
====================================*/

/* チェックボックス専用スタイル */
.checkbox-field {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 80px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
  gap: 5px;
}

.input-field.checkbox-field .checkbox-label input[type="checkbox"] {
  width: auto !important;
  padding: 0;
  margin: 0;
  top: 0;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  cursor: pointer;
  vertical-align: middle;
}

.checkbox-text {
  font-size: 14px;
  user-select: none;
  vertical-align: middle;
}

.input-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}

.input-field {
  flex: 1;
}

/* チェックボックス用フィールドは幅を固定 */
.input-field.checkbox-field {
  flex: 0 0 auto;
}


/*====================================
  usageData.php 備考欄 20250623
====================================*/
.reserveRemark{
  margin: 0 5px;
}

.usageData_card .remarks .reserveRemark textarea#reserve_remark {
  height: 100px;
  background-color: #555454;
  color: #a1a1a1;
}

/*====================================
  usage_monthly.php 月間予約ページを追加 20250624
====================================*/
/* ベースリセット */
#monthly_usage_wrapper * {
  box-sizing: border-box;
}

/* メインラッパー */
#monthly_usage_wrapper {
  min-height: 100vh;
  background: #1a1d29;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  padding: 0;
  margin: 0;
}

/* メインコンテナ */
#monthly_usage_main {
  padding: 20px 15px;
  max-width: 100%;
}

/* ヘッダー情報エリア */
.monthly_usage_headinfo {
  margin-bottom: 20px;
}

/* タイトル */
.monthly_usage_title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  color: #ffffff;
  position: relative;
}

/* 店舗選択フォーム */
.monthly_usage_shop_form {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
}

.monthly_usage_shop_select {
  background: #2c3142;
  color: #ffffff;
  border: 1px solid #404040;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 14px;
  height: 35px;
  position: relative;
  bottom: 5px;
}

/* 月間合計金額表示 */
.monthly_usage_total_amount {
  text-align: center;
  background: #2c3142;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #404040;
}

.monthly_usage_total_label {
  font-size: 16px;
  color: #cccccc;
  display: block;
  margin-bottom: 5px;
}

.monthly_usage_total_value {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 0 5px #00fffb;
}

/* 月の切り替えナビゲーション */
.monthly_usage_month_navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background: #2c3142;
  border-radius: 8px;
  border: 1px solid #404040;
}

.monthly_usage_nav_btn {
  background: #277c95;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.2s;
  min-width: 80px;
  text-align: center;
}

.monthly_usage_nav_btn:hover {
  background: #0056b3;
}

.monthly_usage_current_month {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
}

/* テーブル */
#monthly_usage_table {
  width: 100%;
  border-collapse: collapse;
  background: #2c3142;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* テーブルヘッダー */
#monthly_usage_table thead {
  background: #1e2130;
}

#monthly_usage_table th {
  padding: 15px 8px;
  text-align: center;
  font-weight: bold;
  color: #ffffff;
  border-bottom: 2px solid #404040;
  font-size: 16px;
}

/* カラム幅設定 */
.monthly_usage_date_column {
  width: 30%;
}

.monthly_usage_count_column {
  width: 20%;
}

.monthly_usage_amount_column {
  width: 30%;
}

/* テーブル行 */
.monthly_usage_row {
  border-bottom: 1px solid #404040;
  transition: background-color 0.2s;
}

.monthly_usage_row:hover {
  background: #3a3f5a;
}

/* テーブルセル */
#monthly_usage_table td {
  padding: 12px 8px;
  text-align: center;
  color: #ffffff;
  font-size: 15px;
}

/* 週末スタイル */
.monthly_usage_sun {
  background: #4a2c2c !important;
}

.monthly_usage_sat {
  background: #436285 !important;
}

/* 今日のハイライト */
.monthly_usage_today {
  border: solid 2px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
}

/* 合計行 */
.monthly_usage_total_row {
  background: #1e2130 !important;
  border-top: 3px solid #277c95;
  font-weight: bold;
}

.monthly_usage_total_row td {
  padding: 15px 8px;
  font-size: 16px;
  color: #4CAF50;
}

/* 金額の色分け */
.monthly_usage_amount_column {
  color: #4CAF50;
  font-weight: bold;
}

/* レスポンシブ対応 */
@media (max-width: 480px) {
  /* スマホでさらに最適化 */
  #monthly_usage_main {
    padding: 15px 10px;
  }
  
  .monthly_usage_title {
    font-size: 20px;
  }
  
.monthly_usage_shop_select {
    width: 100%;
    margin-bottom: 10px;
  }


  .monthly_usage_shop_form {
    position: static;
    text-align: center;
    margin-top: 10px;
  }
  
  .monthly_usage_total_value {
    font-size: 24px;
  }
  
  .monthly_usage_nav_btn {
    padding: 10px 15px;
    font-size: 14px;
    min-width: 60px;
  }
  
  .monthly_usage_current_month {
    font-size: 18px;
  }
  
  #monthly_usage_table th,
  #monthly_usage_table td {
    padding: 10px 5px;
    font-size: 14px;
  }
  
  .monthly_usage_total_row td {
    font-size: 15px;
  }
}

/* PC表示時の最大幅制限 */
@media (min-width: 768px) {
  #monthly_usage_main {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
  }
  
  .monthly_usage_title {
    font-size: 28px;
  }
  
  .monthly_usage_total_value {
    font-size: 32px;
  }
  
  #monthly_usage_table th,
  #monthly_usage_table td {
    padding: 15px 12px;
    font-size: 16px;
  }
}

/*====================================
  usage.php カレンダー入力フィールドのスタイル 20250624
====================================*/
/* 既存サイトのデザインを保護 */
.ui-widget {
  font-family: inherit !important;
  font-size: inherit !important;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: inherit !important;
  font-size: inherit !important;
}

/* カレンダー入力フィールドのスタイル */
#targetDate {
  cursor: pointer !important;
  padding-right: 35px !important;
  width: 180px !important;
}

#targetDate:disabled {
  cursor: not-allowed !important;
  background-color: #f5f5f5 !important;
}

/* jQuery UI Datepicker カスタムスタイル - サイズアップ */
.ui-datepicker,
#ui-datepicker-div {
  font-family: inherit !important;
  font-size: 14px !important;
  background: #fff !important;
  border: none;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3) !important;
  z-index: 99999 !important;
  position: fixed !important;
  opacity: 1 !important;
  visibility: visible !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  min-width: 370px !important;
  border-radius: 8px !important;
  padding: 15px !important;
}



/* ヘッダー部分を横並びに */
.ui-datepicker-header {
  background: #282b3a !important;
  color: white !important;
  border: none !important;
  padding: 15px !important;
  text-align: center !important;
  border-radius: 6px 6px 0 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 15px !important;
  margin: -15px -15px 15px -15px !important;
}

.ui-datepicker-title {
  color: white !important;
  font-weight: bold !important;
  font-size: 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

/* 前月・翌月ボタンを非表示 */
.ui-datepicker-prev,
.ui-datepicker-next {
  display: none !important;
}

/* ボタンパネル（今日・閉じるボタン）を非表示 */
.ui-datepicker-buttonpane {
  display: none !important;
}

/* カレンダーのテーブル */
.ui-datepicker table {
  width: 100% !important;
  margin: 0 !important;
  border-collapse: separate !important;
  border-spacing: 2px !important;
}

.ui-datepicker th,
.ui-datepicker td {
  border: none !important;
  padding: 3px !important;
  text-align: center !important;
}

.ui-datepicker th {
  background: #f8f9fa !important;
  color: #333 !important;
  font-weight: bold !important;
  font-size: 13px !important;
  padding: 8px 3px !important;
  border-radius: 4px !important;
}

.ui-datepicker td a {
  display: block !important;
  text-align: center !important;
  padding: 10px !important;
  border: 1px solid transparent !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  color: #333 !important;
  background: #fff !important;
  cursor: pointer !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  min-width: 30px !important;
  min-height: 30px !important;
  line-height: 1.2 !important;
  transition: all 0.2s ease !important;
}

.ui-datepicker td a:hover {
  background: #e8f5e8 !important;
  border-color: #4CAF50 !important;
  color: #2e7d32 !important;
  transform: scale(1.05) !important;
}

.ui-datepicker .ui-state-active,
.ui-datepicker .ui-state-active:hover {
  background: #4CAF50 !important;
  color: white !important;
  border-color: #45a049 !important;
  font-weight: bold !important;
  transform: scale(1.05) !important;
}

/* 月・年のセレクトボックスを大きく */
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  background: rgba(255, 255, 255, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 4px !important;
  padding: 5px 8px !important;
  margin: 0 3px !important;
  font-size: 14px !important;
  color: white !important;
  font-weight: bold !important;
  min-width: 80px !important;
}

.ui-datepicker select.ui-datepicker-month option,
.ui-datepicker select.ui-datepicker-year option {

  color: black !important;
}

/* 他の月の日付 */
.ui-datepicker .ui-datepicker-other-month {
  color: #bbb !important;
}

.ui-datepicker .ui-datepicker-other-month a {
  color: #bbb !important;
  background: #f8f9fa !important;
}

/* 週末の色 */
.ui-datepicker .ui-datepicker-week-end a {
  color: #d32f2f !important;
}

/* 今日の日付 */
.ui-datepicker .ui-datepicker-today a {
  background: #fff3cd !important;
  border-color: #ffc107 !important;
  color: #856404 !important;
  font-weight: bold !important;
}

.ui-datepicker .ui-datepicker-today.ui-state-active a {
  background: #4CAF50 !important;
  color: white !important;
}

/* 非表示状態 */
.ui-datepicker.ui-helper-hidden-accessible {
  display: none !important;
}

/* レスポンシブ対応 */
@media (max-width: 480px) {
  .ui-datepicker,
  #ui-datepicker-div {
    min-width: 280px !important;
    max-width: 300px !important;
    padding: 10px !important;
  }
  
  .ui-datepicker-header {
    padding: 10px !important;
    margin: -10px -10px 10px -10px !important;
  }
  
  .ui-datepicker td a {
    padding: 8px !important;
    font-size: 13px !important;
  }
}

/*====================================
  schedule.php 出退勤が入っている場合のスタイル 20250624
====================================*/
/* 入力フィールドの背景色も調整 */
.schedulecell.has-attendance {
  background-color: #376f85a8 !important;
  box-shadow: 0 0 5px #c1eeff;
}

.schedulecell.has-attendance select {
  /* background-color: rgba(255, 255, 255, 0.9); */
}


/*====================================
  scheduleMonthly.php 出退勤が入っている場合のスタイル 20250624
====================================*/
/* 月間スケジュール用 - 出勤情報が入力されているセルの背景色 */
.scheduleMonthly_date-cell.has-attendance {
  background-color: #376f85a8 !important;
  box-shadow: 0 0 5px #c1eeff;
}

/* 入力フィールドの背景色も調整 */
.scheduleMonthly_date-cell.has-attendance input[type="text"] {
  /* background-color: rgba(255, 255, 255, 0.9); */
}

.scheduleMonthly_date-cell.has-attendance select {
  /* background-color: rgba(255, 255, 255, 0.9); */
}
/*====================================
  scheduleMonthly.php 月間出勤数のスタイル 20250624
====================================*/
/* 月間出勤数表示のスタイル */
.attendance-summary {
  margin: 10px 20px 10px 0;
  padding: 8px 12px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  display: inline-block;
}

.attendance-count {
  font-size: 14px;
  color: #495057;
}

.attendance-count strong {
  color: #007bff;
  font-size: 16px;
}

/*====================================
  girlList.php
  schedule.php 新人マークを追加 20250625
====================================*/
/* 新人マーク用スタイル - CSS若葉マーク */
.newface-mark {
  position: relative;
  display: inline-block;
  width: 0.8em;
  height: 1.0em;
  vertical-align: middle;
  margin-left: 5px;
  margin-right: .2em;
  animation: none;
  bottom: 2px;
}

.newface-mark::before,
.newface-mark::after {
  position: absolute;
  top: 0;
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  border: .1em solid #333;
  border-bottom-width: .15em;
  box-sizing: border-box;
}

.newface-mark::before {
  left: 0;
  background: #ff0; /* 黄色 */
  transform: skewY(45deg);
  border-radius: .3em 0 0 .1em;
  border-right: none;
}

.newface-mark::after {
  right: 0;
  background: #390; /* 緑色 */
  transform: skewY(-45deg);
  border-radius: 0 .3em .1em 0;
  border-left: none;
}

.newface-mark.mono::before {
  background: #c7c5c5;
}
.newface-mark.mono::after {
  background: #4bb133;
}

/*====================================
  navi.php 未承認予約件数バッジのスタイル 20250627
====================================*/
/* 未承認予約件数バッジのスタイル */
.badge {
  background-color: #dc3545;
  color: white;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 5px;
  display: inline-block;
  min-width: 16px;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

#navi ul li a .badge {
  position: relative;
  top: -1px;
}

#navi ul li a:hover .badge {
  background-color: #c82333;
}

/* アニメーション効果 */
.badge.updated {
  animation: pulse 0.6s ease-in-out;
}

.badge.new {
  animation: slideIn 0.5s ease-out;
}

@keyframes pulse {
  0% { transform: scale(1); background-color: #dc3545; }
  50% { transform: scale(1.15); background-color: #ff4757; }
  100% { transform: scale(1); background-color: #dc3545; }
}

@keyframes slideIn {
  0% { transform: translateX(-10px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/*====================================
  usageData.php 起票画面のデザイン変更 20250628
====================================*/
.usageData_basic {
  background-color: #363755;
  padding: 10px;
}
.usageData_left{
  background-color: #1c1c1c;
  padding: 10px;
}

.usageData_right{
  background-color: #261616;
  padding: 10px;
}
.payment-inner{
  background-color: #000000;
  padding: 10px;
}

.remarks-inner{
  background-color: #212f0f;
  padding: 10px;
}

.usageData_flex {
  display: flex;
  gap: 10px;
}
.usageData_left{
  flex: 1;
  min-width: 300px;
}

.usageData_right{
  flex: 1;
  min-width: 300px;
}

.usageData_right_inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 2px solid #858585;
  padding: 10px;
}
.usageData_right_inner .option-title {
  color: #fff;
  padding: 5px;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  text-align: center;
}


/* 各行のli要素をフレックスボックスに */
.usageData_left li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  width: 100%;
}

/* 左側の要素（ラベル+select）をまとめるコンテナ */
.usageData_left li .left-content {
  display: flex;
  align-items: center;
  flex: 1;
}

/* フォームラベルの統一 */
.form-label {
  display: inline-block;
  width: 85px;
  margin-right: 10px;
  flex-shrink: 0;
}

/* select要素の幅調整 */
.usageData_left select {
  width: 200px;
}
/* 媒体の幅 */
.usageData_left select.mediaSelector {
  width: 140px;
}
.usageData_left select.nominate{
  width: 200px;
}

/* 女性選択のselectのみ幅を300pxに */
.usageData_shopGirl .girl-row select {
  width: 300px;
  min-width: 300px;
  max-width: 300px;
}

/* 女性選択のSelect2ドロップダウンの高さを調整 */
.girl-dropdown .select2-results,
.girl-dropdown .select2-results__options {
  max-height: 600px !important;
}

.girl-dropdown .select2-dropdown {
  max-height: 650px !important;
}

/* 備考部分を横3つ並びに */
.remarks-inner .remarks ul {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.remarks-inner .remarks ul li {
  flex: 1;
  min-width: 0;
}

.remarks-inner .remarkTitle {
  margin-bottom: 5px;
  font-weight: bold;
  white-space: nowrap;
}

.remarks-inner textarea {
  width: 100%;
  height: 80px;
  resize: vertical;
  box-sizing: border-box;
}

/* スタッフ備考とキャスト備考の高さを150pxに */
.slipList .remarks .staff-remark textarea,
.slipList .remarks .cast-remark textarea,
.slipList .remarks .reserve-remark textarea {
  height: 100px !important;
}


/* 料金表示部分のスタイル */
.price-display {
  color: #00ff00; /* 緑色で表示 */
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
  min-width: 100px; /* 最小幅を設定 */
  text-align: right; /* 右寄せ */
}


/*====================================
  girlList.php 女性一覧に画像を追加 20250706
====================================*/
.girl-item-inner {
  display: flex;
  align-items: flex-start;
  gap: 0px;
  /* padding: 10px; */
  border: 1px solid #ddd;
  border-radius: 8px;
  /* background-color: #fff; */
  /* margin-bottom: 10px; */
}

.girl-image {
  flex-shrink: 0;
  width: 90px;
  height: 130px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #eee;
}

.girl-image .main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
}

.girl-info {
  flex: 1;
  min-width: 0; /* フレックスアイテムの縮小を許可 */
}

.girl-info .btn {
  margin-right: 0px;
  margin-bottom: 5px;
  padding: 6px 12px;
  border: 1px solid #ccc;
  /* background-color: #f8f9fa; */
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 32px;
}

.girl-item-inner .girl-info .glist{
  padding: 3px;
  font-size: 13px;
  width: 100%;
  display: block;
}

/*====================================
  board.php ステータスによる色分け 20250706
====================================*/
/* 完売 */
.scheduleLists.sold-out {
  background-color: #f79f9fc7 !important;
}
/* 当欠 */
.scheduleLists.absence {
  background-color: #22222399 !important;
}

/*====================================
  usageData.php 金額部分を左寄せ 20250717
====================================*/
.payment-inner ul.payment-list{
  justify-content: flex-end;
  gap: 3px;
}



/* 店舗変更ダイアログのカスタムスタイル */
.shop-change-dialog {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.shop-change-title {
  color: #e74c3c !important;
  font-size: 24px !important;
  font-weight: bold !important;
}

.shop-change-content {
  text-align: left !important;
}

.shop-change-content ul {
  background: #fff5f5;
  border: 1px solid #fed7d7;
  border-radius: 8px;
  padding: 15px;
  margin: 10px 0;
}

.shop-change-content ul li {
  margin: 8px 0;
  padding-left: 5px;
}

/* SweetAlert2のボタンカスタマイズ */
.swal2-confirm {
  font-size: 16px !important;
  padding: 12px 24px !important;
  font-weight: bold !important;
}

.swal2-cancel {
  font-size: 16px !important;
  padding: 12px 24px !important;
}

/*====================================
  board.php ボード選択タブのスタイル 20250723
====================================*/
#boardSelectTab {
  font-weight: bold;
  font-size: 16px;
  border-bottom: none;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
}
#boardSelectTab li {
  border-radius: 10px;
  font-size: 16px !important;
  display: inline-block;
  line-height: 48px;
  text-align: center;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0 10px;
}
#boardSelectTab li.active {
  background: #27769563;
  text-shadow: 0 0 5px #fff;
  color: #ffffff;
  font-weight: bold;
  display: block;
  /* text-shadow: none; */
  height: 100%;
  box-shadow: 0 0 10px #9de3fb inset,0 0 10px #9de3fb;
}
#boardSelectTab li#castSelector.active {
  background: #95275e63;
  text-shadow: 0 0 5px #fff;
  color: #ffffff;
  font-weight: bold;
  box-shadow: 0 0 10px #fb9df8 inset, 0 0 10px #f69dfb;
  cursor: pointer;
}
#historySelector .selected {
  color: #C0FF00;
}
#historySelector.active .selected {
  color: #ffffff;
}
#castSelector .selected {
  color: #ff00c6;
}
#castSelector.active .selected {
  color: #ffffff;
}
.salesData {
  margin-left: auto;
}
.salesData .data-value {
  font-size: 16px;
}
#boardMain{
  margin-top: 10px;
  height: calc(100vh - 80px);
}
.boardElement {
  display: none;
  height: 100%;
}
.boardElement.active {
  display: block;
}
.boardElement iframe{
  width: 100%;
  height: 100%;
}
#boardMain {
  position: relative;
}
#customerDataModal {
  display: none;
  position: fixed;
  top: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px #111;
  right: 0;
  transform: translateX(50%);
  width: calc(100% - 600px);
  height: calc(100vh - 30px);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  transition: all 0.5s ease;
}
#customerDataModal.active {
  display: block;
}


#customerDataModal.hover-active {
  transform: translateX(0);
}

#customerDataModal:hover {
  transform: translateX(0);
}



#customerDataModal iframe{
  width: 100%;
  height: 100%;
  border: none;
}
/* #customerDataModalClose {
  position: absolute;
  top: 0;
  left: -30px;
  font-size: 30px;
}
#customerDataModalClose:hover {
  position: absolute;
  top: 0;
  left: -30px;
  font-size: 30px;
  text-shadow: 0 0 5px #00fffb;
  color: #fff;
  transition: all 0.5s ease;
} */
#customerDataWrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px;
}
#customerDataWrapper .left {
  width: 50%;
}
#customerDataWrapper .right {
  margin-left: 10px;
  width: calc(50% - 10px);
}
#customerDataWrapper .customer-row {
  flex-wrap: wrap;
}
/* カスタマーデータラッパーのレスポンシブ対応 */
@media screen and (max-width: 800px) {
  #customerDataWrapper .left,
  #customerDataWrapper .right {
    width: 100%;
    margin-left: 0;
  }
}
#customerDataWrapper .title {
  position: relative;
  font-size: 18px;
  border-left: solid 5px #c0ff00;
  color: #cbcbcb;
  line-height: 20px;
  padding: 8px 5px 5px 10px;
  margin: 13px 0;
  font-weight: 400;
  font-weight: bold;
  flex-wrap: wrap;
  justify-content: left;
}
#customerDataWrapper .title .recentCallData {
  font-size: 12px;
  width: 55%;
  text-align: right;
}
#customerDataWrapper .title .customerSaveBtn {
  margin-left: auto;
  background: #27769563;
  text-shadow: 0 0 5px #fff;
  color: #ffffff;
  font-weight: bold;
  display: block;
  font-size: 17px;
  line-height: 40px;
  padding: 0 15px;
  height: 40px;
}
#customerDataWrapper .title .ticketBtn{
  background: #27769563;
  text-shadow: 0 0 5px #fff;
  color: #ffffff;
  font-weight: bold;
  display: block;
  font-size: 17px;
  line-height: 40px;
  padding: 0 15px;
  height: 40px;
}

#customerDataWrapper .title .closeModalBtn {
  background: #27769563;
  text-shadow: 0 0 5px #fff;
  color: #ffffff;
  font-weight: bold;
  display: block;
  font-size: 17px;
  line-height: 40px;
  padding: 0 15px;
  height: 40px;
}

#customerDataWrapper .title #cast-search {
  margin-left: auto;
  width: 200px;
}
#customerDataWrapper .title #clear-search {
  height: 28px;
}

#customerDataWrapper .right #usageCastList ul{
  height: 100px;
  overflow-y: auto;
  box-sizing: border-box;
}

#modalUsageListWrapper {
  height: calc(100vh - 180px);
  overflow-y: auto;
}
/* customerdata girlhistorylist */
.girlSelector:hover {
  background: #95275e63;
  text-shadow: 0 0 5px #fff;
  color: #ffffff;
  font-weight: bold;
  box-shadow: 0 0 10px #fb9df8 inset, 0 0 10px #f69dfb;
  cursor: pointer;
}
#scheduleBoard.active ~ #customerDataModal,
#castBoard.active ~ #customerDataModal {
    display: none;
}

/*====================================
  トースター通知のカスタムスタイル 20250526
====================================*/
/* トースト通知の共通アイコン設定 */
#toast-container .toast-call,
#toast-container .toast-call-general,
#toast-container .toast-call-warning,
#toast-container .toast-call-banned,
#toast-container .toast-call-staff {
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj4gIDxwYXRoIGZpbGw9IiNmZmZmZmYiIGQ9Ik00OTMuNCAyNC42bC0xMDQtMjRjLTExLjMtMi42LTIyLjkgMy4zLTI3LjUgMTMuOWwtNDggMTEyYy00LjIgOS44LTEuNCAyMS4zIDYuOSAyOGw2MC42IDQ5LjZjLTM2IDc2LjctOTguOSAxNDAuNS0xNzcuMiAxNzcuMmwtNDkuNi02MC42Yy02LjgtOC4zLTE4LjItMTEuMS0yOC02LjlsLTExMiA0OEMzLjkgMzY2LjUtMiAzNzguMS42IDM4OS40bDI0IDEwNEMyNy4xIDUwNC4yIDM2LjcgNTEyIDQ4IDUxMmMyNTYuMSAwIDQ2NC0yMDcuNSA0NjQtNDY0IDAtMTEuMi03LjctMjAuOS0xOC42LTIzLjR6Ii8+PC9zdmc+")!important;
  background-size: 24px 24px;
}

/* ランク別背景色設定 */
/* 一般・優良：緑色 */
#toast-container .toast-call-general {
  background-color: #00B900;
}

/* 注意：黄色 */
#toast-container .toast-call-warning {
  background-color: #FFA500;
}

/* 出禁：赤色 */
#toast-container .toast-call-banned {
  background-color: #DC3545;
}

/* スタッフ・業者・その他：青色 */
#toast-container .toast-call-staff {
  background-color: #007BFF;
}

/* デフォルト（一般） */
#toast-container .toast-call {
  background-color: #00B900;
}

/* 既存のクラスも念のため修正 */
#toast-container .toast-call-new {
  background-color: #00B900;
}

/* 店舗名 */
#toast-container .shop-name {
  font-size: 0.95em;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.95);
  display: inline-block;
  margin-right: 8px;
}

/*====================================
検索ボタンにフォーカス効果 20250725
====================================*/
#searchBox .searchBtn:focus,
#searchBox .resetBtn:focus {
  outline: none !important;
  transition: all 0.3s ease !important;
  transform: translateY(-2px);
}

#searchBox .searchBtn:focus {
  border: 2px solid #007bff !important;
  background-color: #0056b3 !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4) !important;
}

#searchBox .resetBtn:focus {
  border: 2px solid #dc3545 !important;
  background-color: #dc3545 !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4) !important;
}

#searchBox select#castName:hover {
  width: 200px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  color: #333;
  font-size: 14px;
  transition: all 0.3s ease;
}
#searchBox select#castName option:focus {
  border: solid 1px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
  color: #fff;
  cursor: pointer;
}

/*====================================
Select2スタイル修正 20250725
====================================*/
/* Select2の選択状態（ハイライト）スタイル */
.select2-container--default .select2-results__option--highlighted {
  border: solid 1px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
  color: #fff;
  cursor: pointer;
  color: white !important;
}

/* Select2の選択済みアイテムのスタイル */
.select2-container--default .select2-results__option--selected {
  /* background-color: #ddd !important; */
  color: white !important;
}

/* Select2のドロップダウンのスタイル調整 */
.select2-container--default .select2-results__option {
  padding: 6px 12px;
  /* background-color: #fff; */
  color: white !important;
}

/* ホバー時のスタイル */
.select2-container--default .select2-results__option:hover {
  /* background-color: #f0f0f0 !important; */
  color: white !important;
}

/* フォーカス時のスタイル強化 */
.select2-container--default .select2-results__option--highlighted:hover {
  border: solid 1px #83bbcb;
  box-shadow: 0 0 8px #7ebdcf, 0 0 8px #7ebdcf inset;
  text-shadow: 0 0 5px #00fffb;
  color: #fff;
  cursor: pointer;
  color: white !important;
}

/* Select2コンテナ全体の調整 */
.select2-container {
  width: 300px !important;
}

/* ドロップダウンの境界線 */
.select2-container--default .select2-dropdown {
  border: 1px solid #aaa;
  border-radius: 4px;
}

/* 検索ボックスのスタイル */
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 4px 6px;
}

/*====================================
  usage.php 日付範囲選択機能追加　20250801
====================================*/
#searchBox input[type="radio"] {
  top: 10px;
  position: relative;
}

/*====================================
  usageDate.php 伝票キャンセルボタンを追加　20250804
====================================*/
/* キャンセルボタンのスタイル */
.usageData_footer .cancelBtn {
  background: #dc3545 !important;
  color: white !important;
  border: 1px solid #dc3545 !important;
  margin-right: 10px;
}

.usageData_footer .cancelBtn:hover {
  background: #c82333 !important;
  border-color: #bd2130 !important;
}

.usageData_footer .cancelBtn:disabled {
  background: #6c757d !important;
  border-color: #6c757d !important;
  cursor: not-allowed;
}

/* 復旧ボタンのスタイル */
.usageData_footer .restoreBtn {
  background: #28a745 !important;
  color: white !important;
  border: 1px solid #28a745 !important;
  margin-right: 10px;
}

.usageData_footer .restoreBtn:hover {
  background: #218838 !important;
  border-color: #1e7e34 !important;
}

.usageData_footer .restoreBtn:disabled {
  background: #6c757d !important;
  border-color: #6c757d !important;
  cursor: not-allowed;
}

/*====================================
  castBoard.php スケジュールフラグのスタイル 20250808
====================================*/
.staff-date-count .schedule-flag{
  background-color: #0056b3;
  color: #fff;
}


/*====================================
  girlData.php 画像枚数追加　20250821
====================================*/
.image-upload-wrapper{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}