@charset "UTF-8";
/* ---------------------------------------------
*   202510_コーポレートサイト_検索周り改修
--------------------------------------------- */
/*  search-equipment
--------------------------------------------- */
#search-equipment {
  padding-top: 90px;
  margin-top: -90px;
}
@media screen and (max-width: 750px) {
  #search-equipment {
    padding-top: 120px;
    margin-top: -120px;
  }
}

/*  p-products-list
--------------------------------------------- */
.p-products-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
}
@media screen and (max-width: 750px) {
  .p-products-list {
    display: block;
  }
}
.p-products-list__item {
  position: relative;
  width: 100%;
  aspect-ratio: 346/195;
  background: center center no-repeat;
  background-size: cover;
  transition: opacity 0.3s;
}
@media screen and (max-width: 750px) {
  .p-products-list__item {
    margin-top: 6.25vw;
  }
  .p-products-list__item:first-of-type {
    margin-top: 0;
  }
}
@media screen and (min-width: 751px) {
  .p-products-list__item:has(.p-products-list__link:hover) {
    opacity: 0.8;
  }
}
.p-products-list__item--equipment {
  background-image: url("/img/products/bg_link_equipment.jpg");
}
.p-products-list__item--components {
  background-image: url("/img/products/bg_link_components.jpg");
}
.p-products-list__item--materials {
  background-image: url("/img/products/bg_link_materials.jpg");
}
.p-products-list__link {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}
.p-products-list__txt {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  display: inline-block;
  padding-right: 34px;
  color: #fff;
  font-weight: 400;
  font-size: 24px;
  line-height: 1 !important;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 750px) {
  .p-products-list__txt {
    left: 5.9375vw;
    padding-right: 11.25vw;
    font-size: 6.875vw;
  }
}
.p-products-list__txt::after {
  content: "";
  position: absolute;
  top: 56%;
  right: 16px;
  transform: translateY(-50%);
  width: 9px;
  height: 17px;
  background: url("/img/common/icon_arrow_white.png") center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 750px) {
  .p-products-list__txt::after {
    right: 5.9375vw;
    width: 2.03125vw;
    height: 3.4375vw;
  }
}
.p-products-list__txt-sub {
  display: inline-block;
  margin-top: 13px;
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .p-products-list__txt-sub {
    margin-top: 3.28125vw;
    font-size: 4.375vw;
  }
}

/*  p-equipment-keyword
--------------------------------------------- */
.p-equipment-keyword {
  position: relative;
  width: 550px;
  height: 50px;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-equipment-keyword {
    width: 100%;
    height: 11.875vw;
  }
}
.p-equipment-keyword__input {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-inline: 1em 50px;
  border-radius: 4px;
  border: 1px solid rgb(191, 196, 200);
  background-color: rgb(239, 240, 241);
  font-size: 1em;
}
@media screen and (max-width: 750px) {
  .p-equipment-keyword__input {
    padding-inline: 1em 11.875vw;
  }
}
.p-equipment-keyword__btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  border-radius: 0 4px 4px 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: #007bbb url("/img/common/icon_search_white.png") 50% 50%/12px auto no-repeat;
  transition: opacity 0.3s;
}
@media screen and (max-width: 750px) {
  .p-equipment-keyword__btn {
    width: 11.875vw;
    background-size: 3.75vw auto;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-equipment-keyword__btn:hover {
    opacity: 0.8;
  }
}

/*  p-equipment-box
--------------------------------------------- */
.p-equipment-box {
  display: flex;
  -moz-column-gap: 70px;
       column-gap: 70px;
  padding: 50px 60px;
  border-radius: 4px;
  background-color: rgba(28, 125, 205, 0.102);
}
@media screen and (max-width: 750px) {
  .p-equipment-box {
    display: block;
    padding: 12.5vw 4.6875vw;
  }
}
.p-equipment-box__inner--applications {
  width: calc(54.6875% - 35px);
}
@media screen and (max-width: 750px) {
  .p-equipment-box__inner--applications {
    width: 100%;
  }
}
.p-equipment-box__inner--category {
  position: relative;
  width: calc(45.3125% - 35px);
}
@media screen and (max-width: 750px) {
  .p-equipment-box__inner--category {
    width: 100%;
    margin-top: 12.5vw;
    padding-top: 12.5vw;
  }
}
.p-equipment-box__inner--category::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -35px;
  width: 1px;
  height: calc(100% - 60px);
  background-color: #333;
}
@media screen and (max-width: 750px) {
  .p-equipment-box__inner--category::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
  }
}
.p-equipment-box__body {
  display: grid;
}
.p-equipment-box__inner--applications .p-equipment-box__body {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 10px;
}
@media screen and (max-width: 750px) {
  .p-equipment-box__inner--applications .p-equipment-box__body {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.125vw 1.5625vw;
  }
}
.p-equipment-box__inner--category .p-equipment-box__body {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 10px;
}
@media screen and (max-width: 750px) {
  .p-equipment-box__inner--category .p-equipment-box__body {
    gap: 3.125vw 1.5625vw;
  }
}

/*  p-equipment-checkbox
--------------------------------------------- */
.p-equipment-checkbox {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.p-equipment-checkbox__input {
  position: absolute;
  pointer-events: none;
  opacity: 0;
}
.p-equipment-checkbox__txt {
  position: relative;
  display: inline-block;
  padding-left: 24px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .p-equipment-checkbox__txt {
    padding-left: 7.03125vw;
    font-size: 3.75vw;
  }
}
.p-equipment-checkbox__txt::before, .p-equipment-checkbox__txt::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  display: inline-block;
}
.p-equipment-checkbox__txt::before {
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid rgb(191, 196, 200);
  border-radius: 4px;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .p-equipment-checkbox__txt::before {
    top: 0.625vw;
    width: 4.6875vw;
    height: 4.6875vw;
  }
}
.p-equipment-checkbox__txt::after {
  top: 6px;
  left: 6px;
  width: 5px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotateZ(45deg);
  opacity: 0;
}
@media screen and (max-width: 750px) {
  .p-equipment-checkbox__txt::after {
    top: 1.25vw;
    left: 1.5625vw;
    width: 1.5625vw;
    height: 3.125vw;
    border-width: 0.625vw;
  }
}
.p-equipment-checkbox__input:checked + .p-equipment-checkbox__txt::before {
  border-color: #333;
  background-color: #333;
}
.p-equipment-checkbox__input:checked + .p-equipment-checkbox__txt::after {
  opacity: 1;
}

/*  p-equipment-result
--------------------------------------------- */
.p-equipment-result {
  position: relative;
}

/*  p-equipment-loading
--------------------------------------------- */
.p-equipment-loading-outer {
  display: flex;
  align-items: center;
  height: 100%;
}

.p-equipment-loading {
  margin: 0 auto;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  animation: loading 1.1s infinite ease;
  transform: translateZ(0);
}

@keyframes loading {
  0%, 100% {
    box-shadow: 0em -2.6em 0em 0em #dfe1e3, 1.8em -1.8em 0 0em rgba(223, 225, 227, 0.2), 2.5em 0em 0 0em rgba(223, 225, 227, 0.2), 1.75em 1.75em 0 0em rgba(223, 225, 227, 0.2), 0em 2.5em 0 0em rgba(223, 225, 227, 0.2), -1.8em 1.8em 0 0em rgba(223, 225, 227, 0.2), -2.6em 0em 0 0em rgba(223, 225, 227, 0.5), -1.8em -1.8em 0 0em rgba(223, 225, 227, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(223, 225, 227, 0.7), 1.8em -1.8em 0 0em #dfe1e3, 2.5em 0em 0 0em rgba(223, 225, 227, 0.2), 1.75em 1.75em 0 0em rgba(223, 225, 227, 0.2), 0em 2.5em 0 0em rgba(223, 225, 227, 0.2), -1.8em 1.8em 0 0em rgba(223, 225, 227, 0.2), -2.6em 0em 0 0em rgba(223, 225, 227, 0.2), -1.8em -1.8em 0 0em rgba(223, 225, 227, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(223, 225, 227, 0.5), 1.8em -1.8em 0 0em rgba(223, 225, 227, 0.7), 2.5em 0em 0 0em #dfe1e3, 1.75em 1.75em 0 0em rgba(223, 225, 227, 0.2), 0em 2.5em 0 0em rgba(223, 225, 227, 0.2), -1.8em 1.8em 0 0em rgba(223, 225, 227, 0.2), -2.6em 0em 0 0em rgba(223, 225, 227, 0.2), -1.8em -1.8em 0 0em rgba(223, 225, 227, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(223, 225, 227, 0.2), 1.8em -1.8em 0 0em rgba(223, 225, 227, 0.5), 2.5em 0em 0 0em rgba(223, 225, 227, 0.7), 1.75em 1.75em 0 0em #dfe1e3, 0em 2.5em 0 0em rgba(223, 225, 227, 0.2), -1.8em 1.8em 0 0em rgba(223, 225, 227, 0.2), -2.6em 0em 0 0em rgba(223, 225, 227, 0.2), -1.8em -1.8em 0 0em rgba(223, 225, 227, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(223, 225, 227, 0.2), 1.8em -1.8em 0 0em rgba(223, 225, 227, 0.2), 2.5em 0em 0 0em rgba(223, 225, 227, 0.5), 1.75em 1.75em 0 0em rgba(223, 225, 227, 0.7), 0em 2.5em 0 0em #dfe1e3, -1.8em 1.8em 0 0em rgba(223, 225, 227, 0.2), -2.6em 0em 0 0em rgba(223, 225, 227, 0.2), -1.8em -1.8em 0 0em rgba(223, 225, 227, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(223, 225, 227, 0.2), 1.8em -1.8em 0 0em rgba(223, 225, 227, 0.2), 2.5em 0em 0 0em rgba(223, 225, 227, 0.2), 1.75em 1.75em 0 0em rgba(223, 225, 227, 0.5), 0em 2.5em 0 0em rgba(223, 225, 227, 0.7), -1.8em 1.8em 0 0em #dfe1e3, -2.6em 0em 0 0em rgba(223, 225, 227, 0.2), -1.8em -1.8em 0 0em rgba(223, 225, 227, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(223, 225, 227, 0.2), 1.8em -1.8em 0 0em rgba(223, 225, 227, 0.2), 2.5em 0em 0 0em rgba(223, 225, 227, 0.2), 1.75em 1.75em 0 0em rgba(223, 225, 227, 0.2), 0em 2.5em 0 0em rgba(223, 225, 227, 0.5), -1.8em 1.8em 0 0em rgba(223, 225, 227, 0.7), -2.6em 0em 0 0em #dfe1e3, -1.8em -1.8em 0 0em rgba(223, 225, 227, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(223, 225, 227, 0.2), 1.8em -1.8em 0 0em rgba(223, 225, 227, 0.2), 2.5em 0em 0 0em rgba(223, 225, 227, 0.2), 1.75em 1.75em 0 0em rgba(223, 225, 227, 0.2), 0em 2.5em 0 0em rgba(223, 225, 227, 0.2), -1.8em 1.8em 0 0em rgba(223, 225, 227, 0.5), -2.6em 0em 0 0em rgba(223, 225, 227, 0.7), -1.8em -1.8em 0 0em #dfe1e3;
  }
}
/*  js-search-equipment
--------------------------------------------- */
.js-search-equipment__loading {
  display: none;
}

/*  js-hit-count
--------------------------------------------- */
.js-hit-count {
  padding-block: 50px;
}
@media screen and (max-width: 750px) {
  .js-hit-count {
    padding-block: 7.8125vw;
  }
}
.js-hit-count span {
  color: #1c7ccd;
  font-weight: bold;
  font-size: 1.5em;
}

/*  js-no-result
--------------------------------------------- */
.js-no-result {
  padding-block: 50px;
  font-weight: bold;
  font-size: 1.25em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .js-no-result {
    padding-block: 7.8125vw;
  }
}

/*  override
--------------------------------------------- */
.mod-section-lv2-wrapper .products-archive-cassette:not(:last-of-type) {
  border-bottom-style: dashed;
}

.js-search-equipment .products-archive-cassette:not(:has(.image-content__list-item)) {
  display: none;
}/*# sourceMappingURL=products.css.map */