@charset "UTF-8";
/**
 * 要素共通スタイル
 */
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  font-size: 16px;
  background-color: #f4f4f4;
  color: #3B4043;
}

main {
  padding: 0 1rem;
  width: 1380px;
}

.page--returned-samples main {
  width: 1800px;
}

.page--index main {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin: 0 0 50px 0;
}

h1 {
  font-weight: bold;
  font-size: 28px;
  margin: 0;
}

h2 {
  font-weight: normal;
  font-size: 1.2rem;
  white-space: nowrap;
  color: #3B4043;
}

h3 {
  font-weight: normal;
  font-size: 1.1rem;
  white-space: nowrap;
  color: #3B4043;
}

input {
  color: #3B4043;
}

label {
  color: #3B4043;
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

select {
  display: none;
}

/** 汎用スタイル */
.hide {
  display: none !important;
}

i.hint-icon {
  position: relative;
  top: -0.5rem;
  left: 0.2rem;
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
}

.row--align-items-center {
  align-items: center;
}

.row--justify-content-center {
  justify-content: center;
}

/** 代替セレクトボックス */
.select_box {
  color: #3B4043;
}

button, .button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
button:hover, .button:hover {
  opacity: 0.8;
}

/**
 * .side-menu
 */
.aside-menu {
  position: -webkit-sticky;
  position: sticky;
  top: -20px;
  z-index: 30;
  left: 0;
}

.side-menu {
  left: 0;
  margin: 1rem 1rem 0 -1rem;
  padding-left: 1rem;
  background-color: white;
  overflow-y: scroll;
  height: 100vh;
}
.side-menu__carpet {
  box-shadow: 3px 3px 0 0 rgba(144, 144, 144, 0.4);
  width: 320px;
  height: 100%;
  border: 1px solid #EEE8AA;
}
.side-menu .side-menu-item {
  padding: 1rem;
  max-width: 100%;
  background-color: white;
}
.side-menu .side-menu-item__title {
  text-align: center;
}
.side-menu .side-menu-item__buttons {
  margin-top: 1rem;
}
.side-menu .side-menu-item:first-child {
  border-bottom: solid #EEE8AA 1px;
}

/**
 * search-constraints
 */
.search-constraints input[type=checkbox] {
  display: none;
}
.search-constraints .control_name {
  font-size: 0.9rem;
}
.search-constraints .form_control::placeholder {
  color: #CDD6DD;
}
.search-constraints .form-control {
  height: auto;
  padding: 0.1rem 0;
}
.search-constraints .form-control.sample-name {
  padding: 0.1rem 0.75rem;
}
.search-constraints .form-group.row {
  margin-bottom: 0;
}
.search-constraints .form-group.row:not(:first-child) {
  margin-top: 1rem;
}
.search-constraints .form-group.row ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.search-constraints .form-group.row ul li {
  margin-right: 1.4rem;
  margin-bottom: 0.4rem;
}
.search-constraints .slide-name, .search-constraints .slide-room, .search-constraints .slide-label, .search-constraints .slide-allocation,
.search-constraints .slide-form, .search-constraints .slide-category, .search-constraints .slide-phase, .search-constraints .slide-distributionLabel {
  display: none;
}
.search-constraints .sub-samples {
  border-bottom: solid #EEE8AA 1px;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

/**
 * select要素
 */
.select_box {
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
}

/**
 * チェックボックス
 */
input[type=checkbox].default + label {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.9rem;
  cursor: pointer;
}
input[type=checkbox].default + label:before {
  content: "";
  position: absolute;
  top: 0.15rem;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  border: 1px solid #CDD6DD;
  border-radius: 4px;
  background-color: #FFF;
}
input[type=checkbox].default:checked + label:after {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 0.2rem;
  border-bottom: 2px solid #004BB1;
  border-left: 2px solid #004BB1;
  width: 0.8rem;
  height: 0.5rem;
  transform: rotate(-45deg);
}
input[type=checkbox].default:disabled + label {
  color: lightgray;
  cursor: inherit;
}
input[type=checkbox].default:checked:disabled + label:after {
  border-left-color: lightgray;
  border-bottom-color: lightgray;
}

input[type=checkbox].search_param {
  display: none;
}
input[type=checkbox].search_param + label:before {
  content: "";
  display: inline-block;
  background-image: url(../img/slide_down.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 1.2rem;
  height: 1.2rem;
  border: none;
}
input[type=checkbox].search_param:checked + label:before {
  transform: rotate(90deg);
}
input[type=checkbox].search_param:checked + label:after {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 0.2rem;
  border: none;
}

/**
 * ボタン
 */
button {
  border-radius: 8px;
  width: 100%;
  font-weight: bold;
}
button.submit {
  position: relative;
  height: 4rem;
  background-color: #131D7A;
  color: white;
  font-size: 1.2rem;
}
button.submit:before {
  content: "";
  position: absolute;
  top: 1.4rem;
  left: 2.2rem;
  border: 3px solid white;
  border-radius: 15px;
  width: 15px;
  height: 15px;
}
button.submit:after {
  content: "";
  position: absolute;
  top: 1.7rem;
  left: 3.1rem;
  border-bottom: 3px solid white;
  transform: rotate(45deg);
  width: 9px;
  height: 13px;
}
button.reset, button.reset-cols {
  margin-top: 0.5rem;
  border: 1px solid #131D7A;
  height: 2rem;
  color: #131D7A;
  font-weight: bold;
}
button#all-open-close {
  width: auto;
  margin-bottom: 1.5rem;
  margin-right: 579px;
}

.returned {
  background-color: lightgray !important;
}

/* タブ */
.nav-tabs {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 20;
  width: 3640px;
  background-color: #f4f4f4;
}
.nav-tabs .nav-item {
  font-size: 1.2rem;
  text-align: center;
}
.nav-tabs .nav-item--search {
  width: 280px;
}
.nav-tabs .nav-item--cart {
  width: 280px;
}
.nav-tabs .nav-item .nav-link {
  border-bottom: none;
  background-color: white;
  color: inherit;
}
.nav-tabs .nav-item .nav-link.active {
  background-color: #EEE8AA;
  border-top: 2px solid #DDD6A1;
  border-left: 2px solid #DDD6A1;
  border-right: 2px solid #DDD6A1;
}
.nav-tabs .nav-item img {
  display: inline-block;
  margin-top: -1px;
  margin-right: 1rem;
  width: 1.6rem;
  height: auto;
}
.nav-tabs .nav-item .cart-item-count {
  position: absolute;
  top: 3px;
  left: 460px;
  padding: 1px 1px 0 1px;
  border-radius: 50%;
  min-width: 1.4rem;
  height: 1.4rem;
  background-color: darkorange;
  font-size: 1rem;
  line-height: 1.3rem;
  color: white;
  z-index: 10;
}

#side-menu-toggle {
  position: absolute;
  background-color: white;
  top: 30px;
  left: 305px;
  width: 25px;
  height: 25px;
  border: 1px #DDD6A1 solid;
  border-radius: 20px;
  box-shadow: 2px 2px 0 0 rgba(144, 144, 144, 0.4);
  line-height: 0;
  margin-right: -20px;
}
#side-menu-toggle:hover {
  cursor: pointer;
}
#side-menu-toggle img {
  margin: 4px;
}

/* カートに試料が入った時のアニメーション */
.bound-animation {
  -webkit-animation: bound-animation 0.8s linear 0s 1;
  animation: bound-animation 0.8s linear 0s 1;
}

@-webkit-keyframes bound-animation {
  0% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    -webkit-transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    -webkit-transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  50% {
    -webkit-transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  70% {
    -webkit-transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
  }
}
@keyframes bound-animation {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  50% {
    transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  70% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
/**
view_type = table、tree
 */
.search-result--table .add-to-cart, .search-result--tree .add-to-cart {
  width: 80px;
}
.search-result--table .add-to-cart input[type=checkbox], .search-result--tree .add-to-cart input[type=checkbox] {
  cursor: pointer;
}

/**
view_type = thumbnail
 */
.search-result--thumbnail {
  display: flex;
  flex-wrap: wrap;
}
.search-result--thumbnail__box {
  position: relative;
  margin-bottom: 1rem;
  text-align: center;
}
.search-result--thumbnail__sample-name {
  margin-bottom: 0;
  text-align: center;
}
.search-result--thumbnail a {
  display: inline-block;
}
.search-result--thumbnail img {
  display: inline-block;
  max-width: 100%;
}
.search-result--thumbnail .remove-from-cart {
  color: white;
}
.search-result--thumbnail .sample_content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.search-result--thumbnail .image_box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-result--thumbnail--small li {
  width: calc(25% - 1rem / 4);
  min-height: 155px;
  margin-right: calc(1rem / 4);
}
.search-result--thumbnail--small li.not-for-loaning input:after {
  top: -8px;
  font-size: 17px;
}
.search-result--thumbnail--small li .remove-from-cart {
  top: -10px !important;
  font-size: 1.8rem;
}
.search-result--thumbnail--small li .image_box img {
  max-height: 200px;
}
.search-result--thumbnail--medium li {
  width: calc(33.33% - 1rem / 3);
  min-height: 236px;
  margin-right: calc(1rem / 3);
}
.search-result--thumbnail--medium li.not-for-loaning input:after {
  top: -9px;
  font-size: 18px;
}
.search-result--thumbnail--medium li .remove-from-cart {
  top: -12px !important;
  font-size: 2.2rem;
}
.search-result--thumbnail--medium li .image_box img {
  max-height: 250px;
}
.search-result--thumbnail--large li {
  width: calc(50% - 1rem / 2);
  min-height: 354px;
  margin-right: calc(1rem / 2);
}
.search-result--thumbnail--large li.not-for-loaning input:after {
  top: -10px;
  font-size: 20px;
}
.search-result--thumbnail--large li .remove-from-cart {
  top: -14px !important;
  font-size: 2.6rem;
}
.search-result--thumbnail--large li .image_box img {
  max-height: 400px;
}
.search-result--thumbnail li.not-for-loaning input:after {
  content: "×";
  display: inline-block;
  position: relative;
  left: 1px;
  color: gray;
}
.search-result--thumbnail li .search-result--thumbnail-picker {
  display: inline-block;
  position: absolute;
  top: 1%;
  left: 1%;
  cursor: pointer;
}

.jsdragtable-contents .search-result th, #search_result .search-result th {
  line-height: 1rem;
  text-align: center;
}
.jsdragtable-contents .search-result th .column_name, #search_result .search-result th .column_name {
  display: flex;
  justify-content: center;
  align-items: center;
}
.jsdragtable-contents .search-result th .sort_buttons, #search_result .search-result th .sort_buttons {
  display: flex;
  flex-direction: column;
  width: 18px;
  height: 23px;
  margin-left: 5px;
}
.jsdragtable-contents .search-result th .sort_buttons .sort_up, #search_result .search-result th .sort_buttons .sort_up {
  background-image: url(../img/sort_up.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px 16px;
  height: 13px;
}
.jsdragtable-contents .search-result th .sort_buttons .sort_up:hover, #search_result .search-result th .sort_buttons .sort_up:hover {
  background-image: url(../img/sorted_up.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px 16px;
  height: 13px;
}
.jsdragtable-contents .search-result th .sort_buttons .sorted_up, #search_result .search-result th .sort_buttons .sorted_up {
  background-image: url(../img/sorted_up.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px 16px;
  height: 13px;
}
.jsdragtable-contents .search-result th .sort_buttons .sort_down, #search_result .search-result th .sort_buttons .sort_down {
  background-image: url(../img/sort_down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px 16px;
  height: 13px;
}
.jsdragtable-contents .search-result th .sort_buttons .sort_down:hover, #search_result .search-result th .sort_buttons .sort_down:hover {
  background-image: url(../img/sorted_down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px 16px;
  height: 13px;
}
.jsdragtable-contents .search-result th .sort_buttons .sorted_down, #search_result .search-result th .sort_buttons .sorted_down {
  background-image: url(../img/sorted_down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px 16px;
  height: 13px;
}
.jsdragtable-contents .search-result th .hide_col_button, #search_result .search-result th .hide_col_button {
  margin-bottom: 0;
  cursor: pointer;
}

/**
検索結果表示部分
 */
#search_result {
  margin-top: 1.2rem;
  width: calc(100% - 320px - 1rem);
}
#search_result .search-result {
  width: 100%;
}
#search_result .search-result.draggable th {
  cursor: grab;
}
#search_result .search-result.draggable.grabbing * {
  cursor: grabbing !important;
}
#search_result .search-result.sticky th {
  position: -webkit-sticky;
  position: sticky;
  top: 133px;
  z-index: 10;
  box-shadow: 0 3px 0 0 rgba(144, 144, 144, 0.4);
  background-color: white;
}
#search_result .search-result th {
  position: relative;
  border-bottom: 1px solid #707F89;
  padding: 6px 20px 6px 20px;
}
#search_result .search-result th .column_name {
  display: flex;
  justify-content: center;
  align-items: center;
}
#search_result .search-result th .hide_col_button {
  margin-bottom: 0;
  cursor: pointer;
}
#search_result .search-result tbody tr {
  cursor: pointer;
}
#search_result .search-result tbody tr:hover, #search_result .search-result tbody tr:active, #search_result .search-result tbody tr.highlight {
  background-color: #EEE8AA;
}
#search_result .search-result tbody tr.matched {
  border-top: 2px solid darkblue;
  border-bottom: 2px solid darkblue;
  box-shadow: inset -1.5px 0 0 0 darkblue, inset 1.5px 0 0 0 darkblue;
}
#search_result .search-result td[data-col-name=sample_name] {
  text-align: left;
  font-weight: bold;
}
#search_result .search-result td.remove-from-cart {
  font-size: 2rem;
}
#search_result .search-result td {
  border-bottom: 1px dotted #707F89;
  text-align: center;
  padding: 4px 1.5rem;
}
#search_result .search-result td.shipping_sample {
  width: 250px;
}
#search_result .search-result td .show_by_tree_view_icon {
  display: inline-block;
  position: relative;
  top: 1px;
  left: 8px;
  width: 14px;
  height: 14px;
  background: url(../img/tree.svg) no-repeat;
  background-size: 14px;
  transform: rotate(-90deg);
}
#search_result .search-result td.request {
  font-size: 38px;
}
#search_result .search-result td img {
  display: inline-block;
}
#search_result .search-result td img.img--small {
  max-height: 200px;
  max-width: 200px;
}
#search_result .search-result td img.img--medium {
  max-height: 443px;
  max-width: 443px;
}
#search_result .search-result td.level1, #search_result .search-result td.level2, #search_result .search-result td.level3 {
  text-align: left;
  padding-left: 10px;
}
#search_result .search-result td.level2 {
  padding-left: 50px;
}
#search_result .search-result td.level3 {
  padding-left: 90px;
}
#search_result .search-result .link_download, #search_result .search-result .references {
  text-align: left;
  white-space: nowrap;
}
#search_result .search-result .link_download ul, #search_result .search-result .references ul {
  list-style: circle;
  padding-left: 20px;
}
#search_result .search-result .hierarchy_depth {
  display: inline-block;
  position: relative;
  top: -3px;
  margin-right: 14px;
  border-left: 3px solid black;
  border-bottom: 3px solid black;
  width: 20px;
  height: 18px;
}
#search_result .search-result a.has_children {
  position: relative;
}
#search_result .search-result a.has_children:before {
  position: absolute;
  content: "";
  transform: rotate(-45deg);
  top: 5px;
  left: 20px;
  border-left: 3px solid #98A6B5;
  border-bottom: 3px solid #98A6B5;
  width: 10px;
  height: 10px;
}
#search_result .scroll-to-top {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  outline: none;
  color: #3B4043;
  cursor: pointer;
  font-size: 18px;
  text-align: center;
}
#search_result .search-result--tree td[data-col-name=name] {
  text-align: left;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/******************************************************************
.header
*******************************************************************/
.header {
  background-color: #040000;
  height: 100px;
  width: 4000px;
  overflow: hidden;
}
.header__inner .header__left {
  float: left;
  width: 300px;
  box-sizing: border-box;
}
.header__inner .header__left img {
  margin-top: -30px;
  transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  width: 300px;
}
.header__inner .header__center {
  float: left;
  padding: 10px;
  width: 580px;
  box-sizing: border-box;
}
.header__inner .header__center__upper {
  text-align: center;
}
.header__inner .header__center__upper a {
  font-family: sans-serif;
  color: gainsboro;
}
.header__inner .header__center__lower ul {
  margin: auto;
  margin-top: 10px;
  width: 700px;
  display: flex;
  justify-content: space-between;
}
.header__inner .header__center__lower li {
  font-size: 16px;
  color: white;
  cursor: pointer;
}
.header__inner .header__center__lower li:not(:first-child) {
  margin-left: 20px;
}
.header__inner .header__center__lower li a {
  color: inherit;
}
.header__inner .header__right {
  float: right;
  margin-right: 10px;
  width: 390px;
  box-sizing: border-box;
}
.header__inner .header__right a {
  display: inline-block;
  float: right;
  margin-right: 45px;
  height: 100px;
  line-height: 100px;
  vertical-align: middle;
}
.header__inner .header__right a:first-child {
  margin-right: 30px;
}
.header__inner .header__right a img {
  width: 80px;
}
.header__inner .header__right:after {
  content: " ";
  visibility: hidden;
  height: 0;
  clear: both;
}
.header__inner:after {
  content: " ";
  visibility: hidden;
  height: 0;
  clear: both;
}

/******************************************************************
.footer
*******************************************************************/
.footer {
  clear: both;
  font-size: 0.9rem;
}
.footer__links {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.footer__links li {
  margin: 0 10px;
}
.footer__links li a {
  color: inherit;
}
.footer__title-copyright {
  text-align: center;
}

/******************************************************************
.result-header
*******************************************************************/
.result-header {
  position: -webkit-sticky;
  position: sticky;
  top: 45px;
  z-index: 20;
  padding: 4px 0 1rem 0;
  background-color: #f4f4f4;
  width: 3640px;
}
.result-header__title {
  margin-top: 0.6rem;
  margin-right: 1rem;
}
.result-header__symbol {
  display: inline-block;
  margin-right: 0.4rem;
  width: 2rem;
  height: auto;
}
.result-header__inner {
  display: flex;
  justify-content: start;
}
.result-header__information {
  font-size: 0.9rem;
  width: 780px;
}
.result-header__information th,
.result-header__information td {
  padding: 0 0.5rem;
  text-align: left;
}
.result-header__information th {
  width: 20px;
}
.result-header__information .total .total-count {
  width: 80px;
}
.result-header__information .total .result-count {
  width: 142px;
}
.result-header__information .result-constraints p {
  margin-bottom: 0;
}
.result-header__information .result-constraints__constraint {
  display: inline-block;
  color: darkorange;
  font-weight: bold;
}
.result-header__information .result-constraints__constraint:first-child {
  margin-left: 0;
}
.result-header__menus {
  display: flex;
}
.result-header__sub-menu {
  display: flex;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
}
.result-header__sub-menu > a,
.result-header__sub-menu > button {
  position: relative;
  display: inline-block;
  margin-left: 0.5rem;
  padding-top: 0.5rem;
  width: 68px;
  height: 68px;
  line-height: 1.1rem;
  text-decoration: none;
  color: inherit;
}
.result-header__sub-menu > a span,
.result-header__sub-menu > button span {
  display: inline-block;
  margin-top: 2px;
  font-size: 0.9rem;
}
.result-header__sub-menu-img {
  display: inline-block;
  width: 32px;
}
.result-header__sub-menu .print-results,
.result-header__sub-menu .download,
.result-header__sub-menu .request-template {
  margin-right: 0;
}
.result-header__sub-menu .show-cart {
  background-color: #131D7A;
  border-radius: 4px;
  color: white;
}
.result-header__sub-menu .show-cart img {
  position: relative;
  left: -2px;
}

.show-cart .result-header h2 {
  width: 176px;
}

/******************************************************************
.result-menu
*******************************************************************/
.result-menu .side-menu-item__content > * {
  margin-top: 1rem;
}

/******************************************************************
.change-view-type
*******************************************************************/
.change-view-type {
  display: flex;
  justify-content: space-evenly;
}
.change-view-type .view_type {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33%;
}
.change-view-type .view_type.active {
  color: #007bff;
  cursor: default;
}
.change-view-type .view_type a {
  color: inherit;
  text-decoration: none;
  text-align: center;
}
.change-view-type .view_type img {
  width: 2rem;
}
.change-view-type .view_type p {
  margin-bottom: 0;
}
.change-view-type .view_type--tree img {
  transform: rotate(-90deg);
}

/******************************************************************
.item-per-page
*******************************************************************/
.change-hidden_columns {
  margin-top: 1.4rem;
  background-color: white;
}
.change-hidden_columns__text {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.change-hidden_columns__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.change-hidden_columns__links > p {
  margin-bottom: 0;
}
.change-hidden_columns__links a:not(.active) {
  color: gray;
}
.change-hidden_columns__buttons {
  margin-top: 1rem;
}

/******************************************************************
.modal
*******************************************************************/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  cursor: default;
  text-align: left;
  display: flex;
  width: 100%;
  height: 100%;
  z-index: 999;
}
.modal .close_menu {
  margin: 20px 0;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.modal a {
  color: #707F89;
  text-decoration: none;
}
.modal h2 {
  padding: 0;
}
.modal > div {
  margin: 0;
}
.modal input[type=text] {
  color: #707F89;
  width: 90%;
  padding: 0 10px;
}
.modal textarea {
  resize: none;
  color: #707F89;
  height: 220px;
  width: 90%;
  padding: 10px;
}
.modal_mask {
  position: fixed;
  z-index: -1;
  background-color: #000;
  opacity: 0.3;
  width: 100%;
  height: 100%;
  margin: 0;
}
.modal_template_body {
  background-color: #FFF;
  border: 1px solid #EEE8AA;
  border-radius: 15px;
  width: 950px;
  margin: auto !important;
  padding: 25px;
}

/******************************************************************
.toast
*******************************************************************/
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  font-size: 1.2rem;
  background-color: darkorange;
  color: white;
  z-index: 100;
}

/******************************************************************
#sample_request_mail_template
*******************************************************************/
#sample_request_mail_template {
  font-weight: normal;
}
#sample_request_mail_template .modal_template_body {
  margin-top: 10%;
  height: 100%;
  max-height: 80%;
  position: relative;
}
#sample_request_mail_template #sample_request_mail_template_body_wrapper {
  position: relative;
  overflow-y: auto;
  max-height: calc(100% - 40px);
}
#sample_request_mail_template #sample_request_mail_template__samples.no_sample {
  list-style: none;
}
#sample_request_mail_template h2 {
  margin-top: 2rem;
  display: block;
  width: auto;
  font-weight: bold;
}
#sample_request_mail_template h2:first-child {
  margin-top: 0;
}
#sample_request_mail_template hr + h2 {
  margin-top: 0;
}
#sample_request_mail_template h3 {
  font-weight: bold;
}
#sample_request_mail_template div.subsection {
  margin-top: 2rem;
}
#sample_request_mail_template ul {
  padding-left: 1.5rem;
  list-style: disc;
}
#sample_request_mail_template #sample_request_mail_template__samples {
  list-style: none;
  display: inline-flex;
  margin-top: 0.3em;
}
#sample_request_mail_template #sample_request_mail_template__samples li {
  margin-left: 0.5em;
}
#sample_request_mail_template ol {
  list-style: decimal;
  padding-left: 1.5rem;
}
#sample_request_mail_template hr {
  margin-top: 3rem;
}

/******************************************************************
#pager
*******************************************************************/
#pager {
  margin-top: 20px;
}
#pager .pagination .page-item-icon {
  margin: 0 10px;
}
#pager .pagination .page-link {
  border: none;
  width: 32px;
  background-color: white;
  text-align: center;
  color: #004BB1;
}
#pager .pagination .page-item:not(.page-item-icon) a {
  background-color: inherit;
}
#pager .pagination .page-item:not(.page-item-icon) a:not(.active) {
  color: #98A6B5;
}
#pager .current-and-total {
  margin-top: 4px;
  margin-left: 0.7rem;
}

/******************************************************************
.item-per-page
*******************************************************************/
.item-per-page {
  display: flex;
  margin: 4px 28px;
}
.item-per-page__info {
  margin-bottom: 0;
}
.item-per-page__lists {
  display: flex;
}
.item-per-page__list {
  margin: 0 10px;
}
.item-per-page__list a:not(.active) {
  color: gray;
}

/******************************************************************
.result-count
*******************************************************************/
.total {
  font-size: 1rem;
  text-align: center;
}

/******************************************************************
.change-item-per-page
.change-img-size
.change-thumbnail-size
.change-thumbnail-img
*******************************************************************/
.change-item-per-page,
.change-img-size,
.change-thumbnail-size,
.change-thumbnail-img {
  margin-top: 1.4rem;
  background-color: white;
  /* for old Edge (EdgeHTML). Old Edge does not support the value 'space-evenly'. */
}
.change-item-per-page__text,
.change-img-size__text,
.change-thumbnail-size__text,
.change-thumbnail-img__text {
  margin-bottom: 0;
  font-size: 0.9rem;
}
.change-item-per-page__links,
.change-img-size__links,
.change-thumbnail-size__links,
.change-thumbnail-img__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.change-item-per-page__links > p,
.change-img-size__links > p,
.change-thumbnail-size__links > p,
.change-thumbnail-img__links > p {
  margin-bottom: 0;
}
.change-item-per-page__links a:not(.active),
.change-img-size__links a:not(.active),
.change-thumbnail-size__links a:not(.active),
.change-thumbnail-img__links a:not(.active) {
  color: gray;
}
.change-item-per-page _:-ms-lang(x)::backdrop, .change-item-per-page__links,
.change-img-size _:-ms-lang(x)::backdrop,
.change-img-size__links,
.change-thumbnail-size _:-ms-lang(x)::backdrop,
.change-thumbnail-size__links,
.change-thumbnail-img _:-ms-lang(x)::backdrop,
.change-thumbnail-img__links {
  justify-content: space-around;
}

.change-thumbnail-img__links {
  flex-direction: column;
}

.table_column_selectors .table_column_selector > p {
  min-width: 118px;
  margin-bottom: 0;
  font-size: 0.9rem;
}
.table_column_selectors .table_column_selector > p .reset_hidden_columns {
  font-size: 0.9rem;
}
.table_column_selectors .table_column_selector ul {
  display: flex;
  flex-wrap: wrap;
}
.table_column_selectors .table_column_selector li {
  position: relative;
  margin: 3px 0;
  border: 1px solid #707F89;
  border-radius: 15px;
  padding: 0 8px 0 24px;
  font-size: 0.9rem;
  cursor: pointer;
}
.table_column_selectors .table_column_selector li:not(:last-child) {
  margin-right: 0.5rem;
}
.table_column_selectors .table_column_selector li:before {
  content: "＋";
  position: absolute;
  left: 7px;
  font-weight: bold;
}

/**
 * スライダー
 */
.range-slider__select {
  padding: 0 0 0 0.4rem;
}
.range-slider__slider-outer {
  margin-top: -0.4rem;
}
.range-slider__inputs {
  display: flex;
  align-items: center;
}
.range-slider__inputs-from, .range-slider__inputs-to {
  border: 1px solid #CDD6DD;
  text-align: center;
}
.range-slider__inputs-tilde {
  padding: 0 0.2rem;
}

/** スライダーのつまみ部分を変更 */
.irs--round .irs-handle {
  top: 23px;
  cursor: grab;
  width: 32px;
  height: 32px;
  border: none;
  background-size: cover;
  background-color: transparent;
  background-repeat: no-repeat;
  box-shadow: none;
}

.irs-handle.from {
  background-image: url(../img/ryuuguu.png);
}
.irs-handle.to {
  background-image: url(../img/hayabusa2.png);
  background-size: contain;
  background-position: center;
}

.irs--round .irs-handle.state_hover, .irs--round .irs-handle:hover {
  background-color: transparent;
}
.irs--round .irs-line {
  top: 32px;
  height: 13px;
}
.irs--round .irs-bar {
  top: 32px;
  background-color: #3B4043;
  height: 13px;
}

/** スライダーのグリッドを変更 */
.irs-grid {
  top: 0;
}

.irs-grid-pol {
  display: none;
}

.irs--round .irs-grid-text:before {
  content: "●";
  color: #3B4043;
  position: absolute;
  top: 17px;
}
.irs--round .irs-grid-text.js-grid-text-0:before {
  left: 3px;
}
.irs--round .irs-grid-text.js-grid-text-1:before {
  left: 6px;
}
.irs--round .irs-grid-text.js-grid-text-2:before, .irs--round .irs-grid-text.js-grid-text-3:before {
  left: 9px;
}
.irs--round .irs-grid-text.js-grid-text-4:before {
  left: 15px;
}

/******************************************************************
.page--all,
.page--all-tree,
.page--loan-history,
.page--returned-samples 共通
*******************************************************************/
.page--all .result-header,
.page--all-tree .result-header,
.page--gas .result-header,
.page--loan-history .result-header,
.page--returned-samples .result-header {
  position: initial;
}

/******************************************************************
.page--all
*******************************************************************/
.page--all #search_result {
  width: 100%;
}
.page--all #search_result table tbody tr {
  cursor: inherit;
}
.page--all #search_result table tbody tr:hover, .page--all #search_result table tbody tr:active, .page--all #search_result table tbody tr.highlight {
  background-color: transparent;
}
.page--all #search_result table td {
  padding: 0 0.5rem;
}

/******************************************************************
.page--all-tree
*******************************************************************/
.page--all-tree .hierarchy_depth {
  border-left: 2px solid black !important;
  border-bottom: 2px solid black !important;
}
.page--all-tree tbody tr {
  cursor: initial !important;
}
.page--all-tree tbody tr:hover, .page--all-tree tbody tr:active, .page--all-tree tbody tr.highlight {
  background-color: inherit !important;
}
.page--all-tree #search_result .search-result {
  width: auto;
}

/******************************************************************
.page--gas
*******************************************************************/
.page--gas #search_result {
  width: 100%;
}
.page--gas #search_result table tbody tr {
  cursor: inherit;
}
.page--gas #search_result table tbody tr:hover, .page--gas #search_result table tbody tr:active, .page--gas #search_result table tbody tr.highlight {
  background-color: transparent;
}
.page--gas #search_result table td {
  padding: 0 0.5rem;
}

/******************************************************************
.page--loan-history,
.page--returned-samples
*******************************************************************/
.page--loan-history #search_result,
.page--returned-samples #search_result {
  width: 100%;
}
.page--loan-history #search_result table tbody tr,
.page--returned-samples #search_result table tbody tr {
  cursor: inherit;
}
.page--loan-history #search_result table tbody tr:hover, .page--loan-history #search_result table tbody tr:active, .page--loan-history #search_result table tbody tr.highlight,
.page--returned-samples #search_result table tbody tr:hover,
.page--returned-samples #search_result table tbody tr:active,
.page--returned-samples #search_result table tbody tr.highlight {
  background-color: inherit;
}
.page--loan-history #search_result table tbody td,
.page--returned-samples #search_result table tbody td {
  padding: 0 4px;
}
.page--loan-history #search_result table tbody .shipping-photos img,
.page--returned-samples #search_result table tbody .shipping-photos img {
  display: inline-block;
  max-height: 200px;
  max-width: 200px;
}

/******************************************************************
.page--all-description
*******************************************************************/
.page--all-description main {
  width: auto;
}
.page--all-description .minimized {
  display: none;
}
.page--all-description #search_result {
  width: inherit;
}
.page--all-description #search_result section {
  margin-bottom: 30px;
}
.page--all-description #search_result section h1 {
  padding: 10px 15px;
  font-size: 1.5rem;
  font-weight: normal;
  background-color: lightgray;
  border-radius: 5px;
}
.page--all-description #search_result section img {
  vertical-align: middle;
  max-height: 250px;
  max-width: 250px;
}
.page--all-description #search_result section video {
  max-height: 250px;
  max-width: 250px;
}
.page--all-description #search_result section .subsection {
  margin-top: 10px;
  overflow-x: auto;
}
.page--all-description #search_result section table.search-result {
  width: max-content;
}
.page--all-description #search_result section table.search-result tr:hover {
  background-color: inherit;
  cursor: inherit;
}
.page--all-description #search_result section table.search-result tr.file > td {
  padding-left: 250px;
  overflow: visible;
}
.page--all-description #search_result section table.search-result tr.file > td h2 {
  text-align: left;
}
.page--all-description #search_result section table.search-result tr.border-none th, .page--all-description #search_result section table.search-result tr.border-none td {
  border: none;
}
.page--all-description #search_result section table.search-result .image-link:hover {
  text-decoration: none;
}
.page--all-description #search_result section table.search-result .open-close:hover {
  cursor: pointer;
}
.page--all-description #search_result section table.search-result .left {
  text-align: left;
  padding-left: 20px;
}
.page--all-description #search_result section table.search-result .secondline {
  padding-top: 1.5rem;
}

/******************************************************************
印刷時のスタイル
*******************************************************************/
.print-only {
  display: none;
}

@media print {
  @page {
    size: A3 landscape;
  }
  .print-only {
    display: inherit;
  }

  .no-print {
    display: none;
  }

  body {
    width: 420mm !important;
    height: 297mm !important;
    background-color: initial;
  }

  .header {
    background: none;
    height: auto;
    width: 100%;
    overflow: visible;
  }
  .header__inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .header__inner .logo {
    width: 60%;
    padding-bottom: 0;
    background: none;
  }
  .header__inner .logo__inner {
    width: 100%;
    justify-content: right;
  }
  .header__inner .logo__inner a.darts {
    filter: invert(100);
  }
  .header__inner .logo p {
    color: inherit;
  }
  .header__inner .title-and-nav {
    margin: 0;
    width: 40%;
  }
  .header__inner .title-and-nav .system-title {
    width: 100%;
  }
  .header__inner .title-and-nav .system-title h1 {
    font-size: 28px;
    color: #3B4043;
  }
  .header__inner .title-and-nav .nav {
    display: none;
  }
  .header a {
    color: inherit;
    text-decoration: inherit;
  }

  .nav-tabs {
    display: none;
  }

  .result-header {
    display: none;
  }

  .table_column_selectors {
    display: none;
  }

  main {
    margin: 10px;
    width: auto;
  }
  main .side-menu {
    display: none;
  }
  main #search_result {
    width: 100%;
  }
  main .search-result {
    word-break: break-all;
    word-wrap: break-word;
  }
  main .search-result .remove-from-cart,
main .search-result .sort_buttons,
main .search-result .hide_col_button {
    display: none;
  }
  main .search-result .add-to-cart,
main .search-result .add-or-remove {
    display: none;
  }

  .search-result--thumbnail {
    display: block;
    overflow: hidden;
  }
  .search-result--thumbnail__box {
    display: block;
    float: left;
    page-break-inside: avoid;
    break-inside: avoid;
  }
  .search-result--thumbnail__box:nth-of-type(4n+1) {
    clear: both;
  }
  .search-result--thumbnail .search-result--thumbnail-picker {
    display: none;
  }

  .footer__links {
    display: none;
  }

  .scroll-to-top {
    display: none !important;
  }

  #search_result {
    /* 検索結果の表を幅いっぱいに表示する */
  }
  #search_result .search-result.sticky th {
    position: static;
    top: 0;
  }
  #search_result > .row > .col-11 {
    width: 100%;
    max-width: 100%;
    flex: 100%;
  }

  .page--all *,
.page--gas * {
    white-space: nowrap;
  }

  #pager {
    display: none;
  }
}

/*# sourceMappingURL=app.css.map */
