@import url("reset.css");
.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: #000;
    /* background-color: #f5f5f5; */
    background-color: #fff;
}
#wrapper {
    /* background: #dfdfdf; */
}
main {
    float: right;
    width: calc(100% - 280px);
    margin-right: 20px;
    min-height: 100vh;
    margin-bottom: 80px;
}
aside {
  float: left;  
  width: 240px;
  height: 100vh;
  /* background: #424242; */
  background: #fafafa;
  position: fixed;
}
aside #logoutBtn {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 60px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px #666;
    padding: 5px 0 0;
    text-align: center;
    display: block;
    transition: all 0.5s;
}
aside #logoutBtn img {
    width: 30px;
    margin: 0 auto;
}
aside #logoutBtn:hover {
  background: #d1ffc6;
  text-decoration: none;
  color: #111;
}
aside #logoutBtn span {
    font-size: 10px;
    font-weight: bold;
}
main .title {
    font-size: 18px;
    border-left: solid 5px #cccccc;
    color:#333;
    line-height: 30px;
    padding: 8px 5px 5px 10px;
    margin: 13px 0;
    font-weight: 400;
}
main .title i {
  margin-right: 5px;
}


main .headinfo {
    width:100%;
    display:flex;
    justify-content: space-between;
    align-items: center;
}
main .headinfo .title {
    font-size: 18px;
    border-left: solid 5px #cccccc;
    color:#333;
    line-height: 30px;
    padding: 8px 5px 5px 10px;
    margin: 13px 0;
    font-weight: 400;
}
main .headinfo .title i {
  margin-right: 5px;
}

main .headinfo .loginName {
    background: #1d9bf0;
    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 #cccccc;
    color:#333;
    line-height: 30px;
    padding: 8px 5px 5px 10px;
    margin: 13px 0;
    font-weight: 400;
}
footer #copyRight {
  text-align: center;
  color: var(--color-pink);
  background: #fff;
  font-size: 12px;
  line-height: 16px;
}
form {
  margin: 0;
}
select, input[type="text"], input[type="tel"], input[type="password"], textarea {
    border: solid 1px #ccc;
    border-radius: 3px;
    padding: 3px;
    /* margin-bottom: 5px; */
    margin-right: 5px;
    background-color: #fff;
    text-align: left;
    box-sizing: border-box;
    outline: none;
    height: 32px;
}
input[type="text"]:disabled {
  color: #ccc;
}
select:focus, input[type="text"]:focus, input[type="tel"]:focus, input[type="password"]:focus, textarea:focus {
    border-color: dodgerBlue;
    box-shadow: 0 0 8px 0 dodgerBlue;
}
select[multiple] {
    height: 30px;
}
.mode2 select:focus, .mode2 input[type="text"]:focus, .mode2 input[type="tel"]:focus, .mode2 input[type="password"]:focus, .mode2 textarea:focus {
    border-color: #ff1e1e;
    box-shadow: 0 0 8px 0 #ff1e1e;
}
.mode2 .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #fb5858;
    color: white;
}


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;
  background: #fff !important;
}
.bgw {
  background: #fff;
}
/* navi */
#navi .headLogo {
  padding: 10px;
  font-size: 17px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0;
  background: #1d9bf0;
  font-family: "M PLUS Rounded 1c";
  text-align: center;
}
.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: #45659a;
    color: #fff;
    height: 20px;
    line-height: 20px;
    font-size: 10px;
    text-align: center;
}
#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: 10px;
  border-bottom: 1px solid #e0e5e7;
}
#navi ul li a {
  color:#1d9bf0;
}
.mode2 #navi ul li a {
  color:#dd1010;
}
#navi ul li i {
  width: 30px;
  text-align: center;
}
#navi ul li.current {
  background: #fff;
  background: #6bc9fb;
  /* border-left: solid 5px var(--color-pink); */
  border-left: solid 5px #1d9bf0;
}
#navi ul li.current a {
  color:#fff;
  font-weight: bold;
  text-shadow: 0px 1px 0px #1d9bf0;
}

.mode2 #navi ul li.current {
  background: #fff;
  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;
  text-shadow: 0px 1px 0px #dd1010;
}
#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: var(--color-pink);
    margin-left: 10px;
    padding: 0 10px;
    background: #fff;
    border-radius: 3px;
    border: solid 1px #ccc;
}
/* index */
#index table,#index th,#index td {
  border: none;
}
#index th {
  font-weight: 400;
}
#index th label {
background: #45659a;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    position: relative;
    top: -2px;
    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 {
    width: 400px;
    height: auto;
    background: #fff;
    padding: 20px;
    border: solid 1px #ccc;
    position: fixed;
    top: calc(50% - 135px);
    left: calc(50% - 200px);
    box-shadow: 0px 5px 10px #ccc;
    border-radius: 3px;
}
#index #indexLogo {
    margin: 0 auto 10px;
}
#index #loginbtn {
    background: #1d9bf0;
    width: 50%;
    margin: 10px 25%;
    border: none;
    color: #fff;
    line-height: 40px;
    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;
}
/* top */

/* tableCommon */
table {
    border: solid 1px #ccc;
    border-collapse:collapse;
    margin-top: 10px;
    background: #fff;
}
thead {
    font-weight: bold;
    background: #45659a;
    color: #fff;
}
th,td {
    border: solid 1px #e0e5e7;
    border-collapse:collapse;
    border-spacing: 0;
    padding: 6px 6px;
}
.w100 {
  width: 100%;
}
.dataBox th, .dataBox .head  {
    background: #45659a;
    color:#fff;
    text-align: left;
}
.mode2 .dataBox th, .dataBox .head  {
    background: #8d5a5a;
    color:#fff;
    text-align: left;
}

.dataBox td {
    padding: 6px;
}

@keyframes flash {
  50% {
    opacity: 1;
  }
}
tr.active {
  color: #fff;
  background: #ff9191;
  font-weight: bold;
  cursor: pointer;
}
/* .btn */
.btn {
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
    height: 24px;
    line-height: 24px;
    font-weight: 400;
    font-size: 12px;
    color:#fff;
    letter-spacing: .1em;
}
.btn.inline {
    display: inline-block;
    padding: 0 5px;
    float: right;
}
.btn:hover {
  color: #fff;
}
.title .btn {
    display: inline-block;
    margin-left: 10px;
    height: 30px;
    line-height: 29px;
    font-size: 16px;
    padding: 0 8px;
    position: relative;
    top: -2px;
}
td .btn:nth-child(n+2) {
  margin-top: 5px;
}
.btn.edit {
  /* background: var(--color-green); */
  background: #1d9bf0;
}
.mode2 .btn.edit {
  /* background: var(--color-green); */
  background: #dd1010;
}
.btn.disabled {
  /* background: var(--color-green); */
  background: #ccc;
}
.btn.delete {
  background: var(--color-pink);
  height: 30px;
  font-size: 14px;
  padding: 0 20px;
}
.btn.add {
  background: #1d9bf0;
  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: #23b943;
    border: 0;
    font-size: 14px;
}
.recentCallData {
    display: inline-block;
    margin-left: 10px;
    background: #fff;
    padding: 0 10px;
    border-radius: 3px;
    position: absolute;
    top: 5px;
    right: 0px;
    border: solid 1px #ccc;
    box-sizing: border-box;
    height: 32px;
    line-height: 31px;
    font-weight: bold;
    color: #ff5d74;
}
.recentCallData .recentCallShopName {
    font-size: 12px;
    font-weight: normal;
    line-height: 2px;
    text-align: right;
}
#usageData .footer .recentCallData {
  position: relative;
  float: right;
}
.dataDelete {
    background: #ff5d74;
    padding: 0 10px;
    margin-top: 10px;
    display: inline-block;
}
/* #latest */
#latestList tbody tr:hover {
  background: #e5f3fb !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: #e5f3fb !important;
  /* animation: flash 1.5s infinite linear; */
}
/* #history */
#historyList tbody tr:hover {
  background: #e5f3fb !important;
  cursor: pointer;
}
#historyList tbody tr.current {
  position: relative;
}
#historyList tbody tr.current {
    opacity: 1;
    background-color: #e5f3fb !important;
    /* animation: flash 1.5s infinite linear; */
}
/* history */
#searchBox {
  width: 100%;
  background: #f8f8f8;
  border-bottom: 2px solid rgb(224, 229, 231);
  border-radius: 10px;
  padding:20px 20px 10px;
  position: relative;
}
#searchBox ul {
  padding: 0;
}
#searchBox ul:nth-child(2) {
  border: none;
}
#searchBox li {
  margin: 5px 0;
}
#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-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;
    border: 1px solid #ccc;
    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: #fffdce;
}
#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: #e5f3fb !important;
}
#usage.mode2 table tbody tr:hover {
    background: #fbe5e5 !important;
}

#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: #e5f3fb !important;
}
#customer.mode2 table tbody tr:hover {
    background: #fbe5e5 !important;
}
#customerAddBtn {
    background: #1d9bf0;
    color: #fff;
    height: 30px;
    font-size:14px;
    padding: 0 20px;
}
.commonButton {
    background: #1d9bf0;
    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 li {
    width: calc(90% / 4);
    margin-right: 10px;
}
/* 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: #fff;
}

#slipListWrapper {
}
#slipListWrapper .footer {
  padding: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100%);
}
#slipListWrapper .footer .saveBtn {
  height: 40px;
  line-height: 40px;
}
#customerDataList textarea {
  width: 100%;
  height: 80px;
  margin-bottom:0;
}
#customerData form {
  display: inline;
}
#customerData .add {
  border: none;
  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 {
    background: #1d9bf0;
    display: inline;
    height: 20px;
    font-size: 14px;
    padding: 2px 6px;
    position: relative;
    top: -3px;
}
#usageStatistics th {
  width: 80px;
  font-weight: 400;
  background: #45659a;
  color: #fff;
}
#usageStatistics td {
  font-weight: 600;
}

#usageCastList ul {
    width: 100%;
    background: #fff;
    border-radius: 6px;
    padding: 10px;
    position: relative;
    box-shadow: 0 0 5px #1d9bf0 inset;
    border: 1px solid #1d9bf0;
}
#usageCastList ul li {
  margin-right: 10px;
}
#usageCastList ul li.honshiExist {
  color: #ee0000;
  font-weight: bold;
}

#usageCastList .title .col1 {
  font-size: 14px;
  color: #ee0000;
}
#usageList .point {
  color: #23b943;
  font-weight: bold;
  text-align: right;
}
.slipList {
  padding: 10px;
}
.slipList.current {
  background: #e5f3fb;
}
.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;
    color: #45659a;
}
/*
.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:nth-child(3) 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 li {
    margin: 0 5px;
    line-height: 32px;
    height: 32px;
}
.slipList li label.slipnum {
    background: #45659a;
    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: 655px;
}
.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 {
    background: #e5e5e5;
    color: #666;
    text-decoration: none;
}

.pager ul li a.current {
	background: #1D9BF0;
	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: #45659A;
  /* 縦スクロール時に固定する */
  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(255,255,255,0.5);
    position: fixed;
    height: 100vh;
    top: 0;
    left: 240px;
    width: 100vw;
    z-index: 9999;
    display: none;
}
.modalLoading {
    background: rgba(255,255,255,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: #1D9BF0;
    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: #fff;
  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: #fff;
  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;
}
/*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: #333;
    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 {
    background: #1d9bf0;
    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: none;
}
#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 {
  background: #1d9bf0;
  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;
}