:root {
  --sf-label-w: 120px;
  --sf-label-size: 1.1em;
  --sf-input-margin: 30px;
  --sf-input-h: 30px;
  --sf-evne-bg: #fafafa;
}
@media screen and (min-width: 900px) {
  :root {
    --sf-label-size: 1.2em;
    --sf-label-w: 150px;
    --sf-input-h: 40px;
  }
}

form.bl_searchForm {
  max-width: 700px;
  margin-inline: auto;
}

.bl_formItem {
  display: flex;
  align-items: center;
}
.bl_formItem + .bl_formItem {
  margin-top: var(--sf-input-margin);
}
.bl_searchRresult_form .bl_formItem {
  flex-direction: column;
}

.bl_formItem_label {
  font-weight: 700;
  width: var(--sf-label-w);
  font-size: var(--sf-label-size);
}
.bl_searchRresult_form .bl_formItem_label {
  width: 100%;
}

.bl_formItem_input {
  width: calc(100% - var(--sf-label-w));
}
.bl_searchRresult_form .bl_formItem_input {
  width: 100%;
}
.bl_formItem_input input,
.bl_formItem_input select {
  width: 100%;
  height: var(--sf-input-h);
}
.bl_formItem_input input {
  border-color: #767676;
}

.bl_formItem.bl_formItem_freeWord {
  border-top: 1px solid rgb(204, 204, 204);
  padding-top: var(--sf-input-margin);
  position: relative;
}
.bl_formItem.bl_formItem_freeWord:before {
  content: "OR";
  margin-top: -28px;
  background-color: #fff;
  padding: 5px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 25%);
}

.bl_button_submit {
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  display: block;
  margin-top: var(--sf-input-margin);
}
.bl_button_submit:disabled {
  opacity: 0.5;
  pointer-events: none;
}

button.bl_button_clear {
  display: block;
  margin-inline: auto;
  margin-top: 20px;
  background-color: transparent;
  color: #0071bf;
  width: auto;
  padding: 0;
  border-radius: 0;
}

@media screen and (min-width: 900px) {
  .ly_searchResult {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
  }
}

.bl_searchRresult_form {
  --sf-label-size: 1em;
  --sf-input-margin: 10px;
  --sf-input-h: 30px;
}
@media screen and (min-width: 900px) {
  .bl_searchRresult_form {
    --sf-label-size: 1em;
    --sf-input-margin: 10px;
    --sf-input-h: 35px;
    order: 2;
  }
}
.bl_searchRresult_form h3 {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.bl_searchRresult_form h3::after {
  content: "";
  border-bottom: 4px solid #0071bf;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 65px;
}
.bl_searchRresult_form .bl_formItem.bl_formItem_freeWord {
  margin-top: 20px;
}

.bl_searchResult_content table + h2 {
  margin-top: 2em;
}
@media screen and (min-width: 900px) {
  .bl_searchResult_content {
    order: 1;
  }
}

.bl_searchResultTable {
  width: 100%;
  min-width: 600px;
}
.bl_searchResultTable thead {
  background-color: #0071bf;
  color: #fff;
  font-weight: bold;
}
.bl_searchResultTable thead th {
  border: none;
  line-height: 1.1;
}
.bl_searchResultTable tbody td {
  border-style: none none solid;
  border-color: #f5f5f5;
  line-height: 1.1;
  padding: 0;
}
.bl_searchResultTable tbody td a {
  display: block;
  padding: 8px 10px;
}
.bl_searchResultTable tbody tr:nth-child(even) {
  background-color: var(--sf-evne-bg);
}
.bl_searchResultTable tbody tr:hover {
  background-color: #b1e0ff;
}

@media screen and (max-width: 899px) {
  .bl_searchResultTable_wrapper {
    margin-right: -15px;
    position: relative;
  }
  .bl_searchResultTable_wrapper::after {
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    right: 0;
    display: block;
    position: absolute;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  }
  .bl_searchResultTable_wrapper > div {
    overflow: scroll;
    width: 100%;
  }
}

.bl_notFound,
.bl_serarhNotice {
  text-align: center;
  font-size: 1.3em;
  font-weight: 700;
  margin-block: 2em;
}

.bl_productData {
  width: 100%;
}
.bl_productData th,
.bl_productData td {
  line-height: 1.1;
  font-weight: normal;
}
.bl_productData th {
  width: 200px;
}
.bl_productData tr:nth-child(even) {
  background-color: var(--sf-evne-bg);
}

.bl_techNote h3 {
  border-bottom: 1px solid #ccc;
  position: relative;
  padding-bottom: 6px;
}
.bl_techNote h3::after {
  content: "";
  border-bottom: 4px solid #0071bf;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 65px;
}

.bl_poductBackButton {
  margin-top: 2em;
  text-align: center;
}
.bl_poductBackButton .button {
  width: 100%;
  max-width: 300px;
}/*# sourceMappingURL=style.css.map */