@charset "UTF-8";
html, body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-weight: 300;
}

input[type=text]::-moz-placeholder {
  color: #ccc;
}

input[type=text]::placeholder {
  color: #ccc;
}

.form-control[readonly] {
  background: #fff;
}

h2 {
  color: #333;
  font-size: 1.6rem;
  font-weight: 700;
}

h3 {
  color: #333;
  font-size: 1.3rem;
  font-weight: 500;
}

.relative {
  position: relative;
}

footer {
  height: 20vh;
}

.footerbtn {
  position: fixed;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: auto;
  padding: 0 1rem;
}

.footerbtn a {
  display: block;
  width: 100%;
  max-width: 100%;
}

.qrcode {
  position: fixed;
  bottom: 2%;
  right: 2%;
  width: 120px;
  height: auto;
  text-align: center;
}
.qrcode img {
  width: 100%;
}

.form-veryshort {
  width: 70px;
  display: inline;
}

.form-short {
  width: 100px;
  display: inline;
}

.form-short2 {
  width: 120px;
  display: inline;
}

.form-normal {
  width: 180px;
  display: inline;
}

.form-h160 {
  height: 160px;
}

.form-label {
  font-size: 0.8rem;
  padding: 0.4rem 0;
}

.table th {
  min-width: 60px;
  white-space: nowrap;
  font-weight: 500;
}
.table tr {
  transition: 0.5s;
}
.table tr.hoveraction:hover {
  background: rgb(253, 255, 226);
}
.table tr td.nowrap {
  white-space: nowrap;
}
.table tr td.bikou {
  min-width: 300px;
}
.table tr td .pdflink {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.1rem;
  z-index: 100;
}

.sorttext {
  font-size: 0.8rem;
  margin-right: 0.3rem;
}

.clientbox {
  position: relative;
  width: 100%;
  height: auto;
}
.clientbox .icon {
  position: absolute;
  top: 0;
  right: 0;
}
.clientbox .area {
  background: #aaa;
  color: #fff;
  padding: 0.2rem 0.4rem;
  margin-right: 0.3rem;
  font-size: 0.8rem;
  border-radius: 5px;
}
.clientbox img {
  padding: 0.5rem 0;
}

.status {
  padding: 0.3rem 0.5rem;
  border-radius: 10px;
  white-space: nowrap;
}

.status0 {
  color: #fff;
  background: rgb(46, 46, 46);
}

.status1 {
  color: #fff;
  background: rgb(189, 0, 0);
}

.status2 {
  color: #fff;
  background: rgb(6, 127, 0);
}

.status3 {
  color: #fff;
  background: rgb(22, 27, 61);
}

.typeicon {
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
  min-width: 150px;
  padding: 0.5rem 0;
  text-align: center;
}
.typeicon.typeicon1 {
  background: rgb(165, 3, 3);
}
.typeicon.typeicon2 {
  background: rgb(3, 73, 165);
}
.typeicon.typeicon3 {
  background: rgb(6, 127, 0);
}

/*ポップアップ*/
#popup {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 2000;
  width: 300px;
  max-width: 90%;
  height: auto;
  display: none;
}
#popup p {
  text-align: center;
  color: rgb(255, 255, 255);
  background: rgba(0, 0, 0, 0.7);
  margin: 0;
  padding: 1rem;
  line-height: 1.2;
  border-radius: 10px;
}

#editpdf {
  max-width: 100%;
  width: 700px;
  height: auto;
}
@media screen and (min-width: 992px) {
  #editpdf {
    height: 400px;
  }
}

/*画像アップロードモーダル設定*/
#dropArea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 100px 0 0;
  border: 2px dashed #494949;
  background: rgba(22, 165, 191, 0);
  transition: all 0.25s cubic-bezier(0.21, 0.51, 0.51, 1);
}

#dropArea.dragover {
  border: 2px solid #16a5bf;
  background: rgba(22, 165, 191, 0.6);
}

#preview {
  position: relative;
  width: 100%;
  height: 400px;
}
#preview #pdf_view {
  position: absolute;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 400px;
}

#uploadFile {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: block;
  width: 100%;
  height: 80px;
  opacity: 0;
}

#inputFileWrap {
  position: relative;
  display: block;
  margin: 0 auto;
}

#btnInputFile,
#btnChangeFile {
  display: block;
  width: 100%;
  text-align: center;
}

#btnChangeFile {
  display: none;
}

#btnInputFile span,
#btnChangeFile span {
  position: relative;
  z-index: 2;
  display: inline-block;
  border: 1px solid #333;
  border-radius: 4px;
  background: #333;
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  font-weight: bold;
  vertical-align: middle;
}

#upFileWrap.selected #btnInputFile {
  display: none;
}

#upFileWrap.selected #btnChangeFile {
  display: table;
}

.modal-content {
  color: #333;
}

.modal-title {
  font-family: "DotGothic16", sans-serif;
}

#login {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: #eee;
}/*# sourceMappingURL=style.css.map */