@charset "UTF-8";
@media screen and (max-width: 640px) {
  html {
    min-width: 640px;
  }
}
/**
 * Remove focus styles for non-keyboard focus.
 */
:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

.container {
  max-width: 100%;
}

.result {
  background-color: #FAFAFA;
  padding: 15px;
  box-sizing: border-box;
  display: none;
  white-space: pre-line;
  overflow-x: auto;
}
.result > .col-lg-6,
.result > .col-lg-12 {
  overflow: hidden;
}
.result > .col-lg-6 iframe,
.result > .col-lg-12 iframe {
  transform-origin: 0 0;
}
.result > .col-lg-6 {
  padding: 0 10px;
}
.result > .col-lg-6 iframe {
  width: 200%;
  /* 100% / (size/size_custom) => 100% * (1/0.5) */
  transform: scale(0.5);
}
.result > .col-lg-12 iframe {
  width: 125%;
  /* 100% / (size/size_custom) => 100% * (1/0.8) */
  transform: scale(0.8);
}
.result.show {
  display: block;
}
.result.compare {
  padding: 0;
  display: flex;
}
.result.two-column {
  display: flex;
  flex-flow: row wrap;
  padding: 15px 0;
}
.result .same-content {
  width: 100%;
  padding: 10px;
  margin-bottom: 0;
}

.button-group {
  padding-top: 2rem;
}

.diff-wrapper.diff thead th {
  width: 50%;
  text-align: center;
  font-weight: 700;
}
.diff-wrapper.diff tbody th {
  white-space: nowrap;
  padding: 0 5px;
}
.diff-wrapper.diff td {
  padding: 0 5px;
}

.view {
  display: flex;
  flex-flow: row wrap;
  border: 1px solid #dee2e6;
}

iframe {
  width: 100%;
  border: none;
}

.btn-clear {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  color: #ced4da;
  transition: all 0.4s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  box-shadow: none;
}
.btn-clear:active, .btn-clear:hover, .btn-clear:focus {
  outline: none;
  box-shadow: none;
}
.btn-clear:hover {
  color: #AAA;
}

.group-btn .btn {
  margin: 0.25rem 0.125rem;
}

.modal {
  z-index: 9999;
}

.modal-backdrop {
  z-index: 9998;
}

.btn-info-modal {
  color: #000000;
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.btn-info-modal img {
  margin-right: 5px;
}

.modal-content {
  border-radius: 0;
}
.modal-footer {
  justify-content: center;
}
.modal-backdrop.show {
  opacity: 0.8;
}

.loader {
  background-color: rgba(0, 0, 0, 0.92);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1200;
}
.loader p {
  word-break: break-all;
}
.loader-text {
  color: #FFF;
  position: absolute;
  top: 45%;
  left: 50%;
  width: 100%;
  height: 80px;
  text-align: center;
  transform: translate(-50%, -45%);
  pointer-events: none;
  padding: 0 15px;
}
.loader-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 2s linear infinite;
}
.loader-text p {
  margin-bottom: 0;
}
.loader-text p:first-child {
  padding-top: 100px;
}
.loader-dot {
  position: relative;
}
.loader-dot:after {
  margin-left: 5px;
  content: ".";
  animation: dots 1s steps(5, end) infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes dots {
  0%, 20% {
    color: rgba(0, 0, 0, 0);
    text-shadow: 0.3em 0 0 rgba(0, 0, 0, 0), 0.6em 0 0 rgba(0, 0, 0, 0);
  }
  40% {
    color: white;
    text-shadow: 0.3em 0 0 rgba(0, 0, 0, 0), 0.6em 0 0 rgba(0, 0, 0, 0);
  }
  60% {
    text-shadow: 0.3em 0 0 white, 0.6em 0 0 rgba(0, 0, 0, 0);
  }
  80%, 100% {
    text-shadow: 0.3em 0 0 white, 0.6em 0 0 white;
  }
}
.tab-content {
  padding: 15px;
  border-left: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 30px;
}

.diff-wrapper.diff {
  border-color: #ddd;
  background-image: linear-gradient(-45deg, rgba(34, 34, 34, 0.2) 12.5%, #FFF 12.5%, #FFF 50%, rgba(34, 34, 34, 0.2) 50%, rgba(34, 34, 34, 0.2) 62.5%, #FFF 62.5%, #FFF 100%);
  background-size: 8px 8px;
}
.diff-wrapper.diff > :not(:first-child) {
  border-top-width: 1px;
}
.diff-wrapper.diff td {
  word-break: break-all;
}
.diff-wrapper.diff.diff-html .change del {
  text-decoration: line-through;
}
.diff-wrapper.diff thead th {
  background: #f7f7f7;
  border-bottom-color: #d8d8d8;
}
.diff-wrapper.diff tbody th {
  color: #2b91af;
  background: #fff;
  border-color: #eee;
}
.diff-wrapper.diff tbody th.n-new {
  border-left: 1px solid #eee;
}
.diff-wrapper.diff.diff-combined td {
  white-space: pre-wrap !important;
}
.diff-wrapper.diff.diff-side-by-side tbody th.n-old, .diff-wrapper.diff.diff-side-by-side tbody th.n-new {
  width: 5%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.diff-wrapper.diff.diff-side-by-side tbody td {
  width: 45%;
}
.diff-wrapper.diff.diff-side-by-side tbody td:not(.user-select) {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.table-responsive,
.table-responsive-sm,
.table-responsive-md,
.table-responsive-lg,
.table-responsive-xl {
  width: 100%;
  overflow-y: auto;
}

table {
  width: 100%;
}
table.dataTable {
  width: 100% !important;
  max-width: 100% !important;
  border-collapse: collapse !important;
}
table.dataTable tr th,
table.dataTable tr td {
  font-size: 14px;
  line-height: 1.4;
  word-break: break-word;
}
table.dataTable tr td {
  vertical-align: top !important;
}
table.dataTable thead .sorting:before, table.dataTable thead .sorting::after {
  font-weight: 300;
  top: 50%;
  bottom: inherit;
  transform: translateY(-50%);
}
table.dataTable thead tr th:nth-child(1) {
  width: 4.329004329%;
}
table.dataTable thead tr th:nth-child(2) {
  width: 35.3535353535%;
}
table.dataTable thead tr th:nth-child(3) {
  width: 33.6219336219%;
}
table.dataTable thead tr th:nth-child(4) {
  width: 8.658008658%;
}
table.dataTable thead tr th:nth-child(5), table.dataTable thead tr th:nth-child(6) {
  width: 5.772005772%;
}
table.dataTable thead tr th:nth-child(7) {
  width: 6.4935064935%;
}

.ocr-group-btn {
  position: fixed;
  right: 0;
  bottom: 30px;
  padding: 10px 10px 10px 35px;
  background-color: #FFF;
  z-index: 100;
  display: flex;
}
.ocr-group-btn input {
  margin-right: 10px;
}

#infoResultModal {
  --bs-modal-margin: 4rem;
}
#infoResultModal .modal-body {
  padding: 38px;
}
#infoResultModal .modal-dialog {
  --bs-modal-width: 700px;
}
#infoResultModal .modal-title {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #000;
}
#infoResultModal .btn-close {
  position: absolute;
  cursor: pointer;
  top: -2.5rem;
  right: 0;
  width: 2.314em;
  height: 2.314em;
  padding: 0;
  opacity: 1;
  background: url("/images/icons/icon-close.png") center center/contain no-repeat;
}
