@import url("reset.css");
/* common */
.dosp {
  display: none;
}
: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;
  --color-fh-green: #17dbd1;
  --color-fh-blue: #05a0d6;
  --color-em-brown: #774b40;
  --gradient-1: linear-gradient(45deg, #815347, #3F2219);
  --gradient-2: linear-gradient(45deg, #d909dc, #16a7de);
}
.errorBg {
  background: #ffbaba;
}
.infoBg {
  background: #bae2ff;
}
.remarkBg {
  background: #fffdba;
}
.successBg {
  background: #baffbc;
}
.colGradient1 {
  background: var(--gradient-1);
}
.colGradient2 {
  background: var(--gradient-2);
}
body {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-gray);
  background-size: auto 100%;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
select,
input[type="text"],
input[type="date"],
input[type="number"],
input[type="password"] {
  border: solid 1px #ccc;
  border-radius: 3px;
  padding: 3px;
  margin-bottom: 3px;
  margin-right: 5px;
  background-color: #fff;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  height: 33px;
  font-size: 16px;
}
textarea {
  border: solid 1px #ccc;
  border-radius: 3px;
  padding: 3px;
  margin-bottom: 3px;
  margin-right: 5px;
  background-color: #fff;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
}
input[type="submit"] {
  border: solid 1px #ccc;
}
:focus {
  outline: none;
}
/* navi */
#navi .headLogo {
  font-weight: bold;
  margin: 10px;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}
#navi .loginName {
  background: #666666;
  color: #fff;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
}
#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 {
  padding: 5px;
}
#navi ul li a {
  color: #fff;
}
#navi ul li i {
  width: 30px;
  text-align: center;
}
#navi ul li.current {
  background: #fff;
  border-left: solid 5px var(--color-pink);
}
#navi ul li.current a {
  color: #424242;
  font-weight: bold;
}
/* .btn */
.btn {
  border-radius: 3px;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  height: 24px;
  line-height: 17px;
  font-weight: 400;
  text-decoration: none;
  padding: 3px 6px;
  color: #111;
  /* transition: all 2s; */
}
.btn.edit,
.btn.back {
  background: var(--color-green);
}
.btn.delete {
  background: var(--color-orange);
}
.btn.add {
  background: var(--color-blue);
}
.btn.reload {
  background: var(--color-purple);
}
.btn.reset {
  background: #adadad;
}
#loading {
  display: none;
  z-index: 9999;
  position: absolute;
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgb(255 255 255 / 80%);
  text-align: center;
  color: #97c5ff;
  font-size: 60px;
  padding-top: calc(25% - 30px);
  animation: rainbow 10s infinite;
  -webkit-animation: rainbow 10s infinite;
}
#loading i {
}
@keyframes rainbow {
  12% {
    color: #ff5353;
  }
  24% {
    color: #ffcf53;
  }
  36% {
    color: #e8ff53;
  }
  48% {
    color: #53ff5d;
  }
  60% {
    color: #53ffbc;
  }
  72% {
    color: #5393ff;
  }
  84% {
    color: #ca53ff;
  }
  100% {
    color: #ff5353;
  }
}
@-webkit-keyframes rainbow {
  12% {
    color: #ff5353;
  }
  24% {
    color: #ffcf53;
  }
  36% {
    color: #e8ff53;
  }
  48% {
    color: #53ff5d;
  }
  60% {
    color: #53ffbc;
  }
  72% {
    color: #5393ff;
  }
  84% {
    color: #ca53ff;
  }
  100% {
    color: #ff5353;
  }
}
.tac {
  text-align: center;
}
.tar {
  text-align: right;
}
.gm {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
/* チェックボックス01 */
input[type=checkbox] {
    display: none;
}
.checkboxLabel {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 5px 5px 25px;
    position: relative;
    width: auto;
    line-height: 21px;
}
.checkboxLabel::before {
    background: #fff;
    border: 1px solid #AAAAAA;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.checkboxLabel::after {
    border-right: 2px solid #16abdc;
    border-bottom: 3px solid #16abdc;
    content: '';
    display: block;
    height: 12px;
    left: 11px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 5px;
}
input[type=checkbox]:checked + .checkboxLabel::after {
    opacity: 1;
}

/* ラジオボタン01 */
input[type=radio] {
    display: none;
}
.radioLabel {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 5px 5px 25px;
    position: relative;
    width: auto;
    line-height: 21px;
}
.radioLabel::before {
    background: #fff;
    border: 1px solid #AAAAAA;
    border-radius: 50%;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.radioLabel::after {
    background: #16abdc;
    border-radius: 50%;
    content: '';
    display: block;
    height: 10px;
    left: 9px;
    margin-top: -4px;
    opacity: 0;
    position: absolute;
    top: 50%;
    width: 10px;
}
input[type=radio]:checked + .radioLabel::after {
    opacity: 1;
}
/* index */
#indexWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100dvh;
}
#indexPanel {
  width: 260px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
#indexPanel .noticeBox {
    font-size: 14px;
    text-align: center;
    background: #ffd3d3;
    line-height: 24px;
    height: 24px;
    border-radius: 3px;
    margin-bottom: 5px;
}
#indexPanel ul {
  display: flex;
  flex-wrap: wrap;
}
#indexPanel ul li {
  width: 100%;
}
#indexPanel ul li:nth-child(1) img {
  width: 90%;
  display: block;
  margin: 0 auto;
}
#indexPanel ul li:nth-child(2) {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin: 10px;
}
#indexPanel ul li:nth-child(3),
#indexPanel ul li:nth-child(5) {
  width: 50%;
}
#indexPanel ul li:nth-child(4),
#indexPanel ul li:nth-child(6) {
  width: 50%;
}
#indexPanel .btn {
  color: #fff;
  background: var(--gradient-1);
  margin-top: 20px;
  padding: 15px;
  line-height: 0;
  border: solid 1px #774b40;
}
/* nav */
nav {
  display: none;
  width: 200px;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  height: 100dvh;
  border: 1px solid rgba(255, 255, 255, 0.18);
  float: left;
  position: fixed;
  z-index: 9999;
  transition: all 0.5s;
}
nav .inner {
  padding: 10px;
}
nav #logo {
  width: 100%;
}
nav #sysName {
  font-size: 12px;
  font-weight: bold;
}
nav ul {
  margin: 10px 0;
}
nav ul li {
  padding: 5px;
  transition: all 0.5s;
}
nav ul li a {
  cursor: pointer;
  display: block;
}
nav ul li:hover {
  background: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  color: #fff;
  border-left: 5px solid #bea587;
  background: var(--gradient-1);
}
nav .listHead {
  background: #dddddd;
  padding: 5px;
  font-weight: 500;
}
nav #neworderBtn {
  color: #fff;
  background: var(--gradient-1);
  margin: 10px;
  display: block;
  height: 30px;
  padding: 5px;
  line-height: 18px;
  border: solid 1px #774b40;
}
nav #neworderBtn i {
  margin-right: 3px;
}
nav #logOut {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  background: #777;
  width: calc(100% - 20px);
  margin: 10px;
  display: block;
  height: 30px;
  padding: 5px;
  line-height: 18px;
  border: solid 1px #ccc;
}
nav.active {
  display: block;
}
/* main */
main {
  height: 100dvh;
  width: 100vw;
}
main#modalMain {
  padding: 10px;
}
main .block {
  background: rgba(255, 255, 255, 0.25);
  padding: 20px;
}
main .blockTitle {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}
main .caption {
  padding: 5px;
  border: solid 1px #ccc;
  border-radius: 5px;
  font-size: 14px;
}
main .blockTitle::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gradient-1);
}
main .blockTitle .btn {
    position: relative;
    top: -3px;
    margin-left: 10px;
    font-size: 15px;
    padding: 3px 10px;
}
/* commonTable */
.commonTableWrapper {
  overflow: hidden;
  border-radius: 5px;
  border: solid 1px #ccc;
  margin: 10px 0;
  overflow: auto;
  max-height: calc(100dvh - 261px);
}
.commonTable {
  /* table-layout: fixed; */
  position: relative;
  width: 100%;
  background: #fff;
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}
.commonTable thead th {
  /* 縦スクロール時に固定する */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  /* tbody内のセルより手前に表示する */
  z-index: 1;
}
.commonTable th {
  border-bottom: solid 1px #ccc;
  border-right: solid 1px #ccc;
  background: #ededed;
  padding: 2px;
  font-weight: 500;
  text-align: center;
}
.commonTable th:last-child {
  border-right: none;
}
.commonTable td {
  border-top: solid 1px #ccc;
  border-right: solid 1px #ccc;
  padding: 2px;
}
.commonTable td:last-child {
  border-right: none;
}
.commonTable tr.disabled {
  background: #c5c5c5;
}
.commonTable input:disabled {
  background: #c5c5c5;
}
/* 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: #0BD8B9;
	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;
}
.counter span {
  border-bottom: solid 2px #ccc;
  padding-top: 5px;
  margin: 0px;
  display: inline-block;
}
/* form */
.formWrapper {
  margin: 50px;
}
.formList {
  display: flex;
  flex-wrap: wrap;
}
.formList li {
  margin: 10px;
  line-height: 24px;
}
.formList li.label {
  font-weight: 500;
  line-height: 32px;
}
.formList li.w100 {
  width: 100%;
}
.formWrapper .saveBtn {
  color: #fff;
  background: var(--gradient-1);
  margin: 30px auto;
  display: block;
  height: 50px;
  padding: 5px;
  line-height: 0px;
  border: solid 1px #774b40;
  font-size: 26px;
  padding: 0 30px;
}
/* reader */
#canvasWrap {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    margin-bottom: 10px;
}
video {
  width: 100%;
  height: 100%;
}
#modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 275px;
    /* background: rgba(0, 0, 0, 0.8); */
    z-index: 2;
}
#cancelTxt {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  margin-top: 1rem;
  color: #fff;
  text-align: center;
}
#editBtn {
  color: #fff;
  background: var(--gradient-1);
  margin: 30px auto;
  display: block;
  height: 50px;
  padding: 5px;
  line-height: 0px;
  border: solid 1px #774b40;
  font-size: 26px;
  padding: 0 30px;
}
#openModal {
  color: #fff;
  background: var(--gradient-2);
  margin: 30px auto;
  display: block;
  height: 50px;
  padding: 5px;
  line-height: 0px;
  border: solid 1px #774b40;
  font-size: 20px;
  padding: 0 20px;
}
#camArea {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
}
#price {
  width: 70%;
}
/* select2 */
.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;
}
.select2-dropdown {
  top: -30px;
}
.infoLabel {
    display: none;
    color: #111;
    border: solid 2px #ccc;
    text-align: center;
    height: 30px;
    line-height: 26px;
    border-radius: 5px;
    margin: 5px;
}
.disabledBtn {
  /* pointer-events: none; */
  opacity:0.5
}
#makerAddBtn,#genreAddBtn {
  display: none;
}
#makerSelector input,#genreSelector input {
  width: 80%;
}
#makerSelector .btn,#genreSelector .btn {
    width: 20%;
    padding: 6px;
    letter-spacing: 4px;
    position: relative;
    top: -1px;
    text-align: center;
}
/* searchBox */
#searchBox {
  padding-top: 8px;
  position: relative;
}
#searchBox ul {
}
#searchBox li.label {
  font-weight: bold;
  line-height: 30px;
  padding: 0 10px;

}
#searchBox input[type="text"] {
  width: 200px;
}
#searchBox .btn {
    margin-left: 10px;
    height: 32px;
    padding: 0 20px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--gradient-1);
    color: #fff;
}
/* makerList */
#makerList thead th:nth-child(1){
  width: 50px;
}
#makerList thead th:nth-child(2){
  width: 120px;
}
#makerList thead th:nth-child(5){
  width: 155px;
  text-align: center;
}
#makerList thead th:nth-child(6){
  width: 155px;
  text-align: center;
}
#makerList thead th:nth-child(7){
  width: 85px;
  text-align: center;
}
/* genreList */
#genreList thead th:nth-child(1){
  width: 50px;
}
#genreList thead th:nth-child(2){
  width: 120px;
}
#genreList thead th:nth-child(5){
  width: 155px;
  text-align: center;
}
#genreList thead th:nth-child(6){
  width: 155px;
  text-align: center;
}
#genreList thead th:nth-child(7){
  width: 85px;
  text-align: center;
}
/* productList */
#productList thead th:nth-child(1){
  width: 50px;
}
#productList thead th:nth-child(2){
  width: 128px !important;
}
#productList thead th:nth-child(3){
  width: 300px;
}
#productList thead th:nth-child(4){
  width: 200px;
}
#productList thead th:nth-child(5){
  width: 300px;
}
#productList thead th:nth-child(6){
  width: 300px;
}
#productList thead th:nth-child(7){
  width: 70px;
  text-align: center;
}
#productList thead th:nth-child(8){
  width: 70px;
  text-align: center;
}
#productList thead th:nth-child(9){
  width: 30px;
  text-align: center;
}
#productList thead th:nth-child(10){
  width: 155px;
  text-align: center;
}
#productList thead th:nth-child(11){
  width: 155px;
  text-align: center;
}
#productList thead th:nth-child(12){
  width: 85px;
  text-align: center;
}
#modalWrap {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    display: none;
    justify-content: center;
    align-items: center;
}
#modalWrap #modalContent {
  width: 100%;
  height: 500px;
  background: #fff;
  position: relative;
}
#modalWrap #modalContent.product {
  width: 100%;
  height: 80%;
}
#modalWrap #modalContent #closeBtn {
    position: absolute;
    top: -55px;
    right: -40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}
#modalContent iframe {
  width: 100%;
  height: 100%;
}
.rowEditBtn {
  text-decoration: underline;
  cursor: pointer;
  color: #16a7de;
}

#affiliatorList {
  appearance: menulist-button;
}
.dateSelect {
  appearance: textfield;
}
/* menuBtn */
#menuBtn {
  background: #f1f1f1;
  width: 60px;
  height: 60px;
  font-size: 30px;
  text-align: center;
  line-height: 60px;
  position: fixed;
  top: 10px;
  right: 10px;
  border-radius: 3px;
  z-index: 9999;
}
/** navToggle **/

#navToggle {
  display: block;
}
#menuBtn span,
#menuBtn span:before,
#menuBtn span:after {
  display: inline-block;
  width: 30px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
#menuBtn span {
  position: absolute;
  top: 20px;
  right: 15px;
  color: #00000040;
}
#menuBtn span:before,
#menuBtn span:after {
  content: "";
  display: block;
  clear: both;
}
#menuBtn span:before {
  position: absolute;
  top: 10px;
  right: 0;
}
#menuBtn span:after {
  position: absolute;
  top: 20px;
  right: 0;
}
#menuBtn.active span {
  position: absolute;
  top: 30px;
  right: 15px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
}
#menuBtn.active span:before {
  content: "";
  clear: both;
  position: absolute;
  top: 0px;
  right: 0px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  opacity: 0;
}
#menuBtn.active span:after {
  content: "";
  display: block;
  clear: both;
  position: absolute;
  top: 0px;
  left: 0px;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
}