@charset "UTF-8";
@media (max-width: 600px) {
  .lower_fv .upper_b h1.ttl {
    font-size: 70px;
  }
}
@media (max-width: 480px) {
  .lower_fv .upper_b h1.ttl {
    font-size: 50px;
  }
}

.archive_products_sec {
  padding: 408px 0 120px;
  position: relative;
}
@media (max-width: 480px) {
  .archive_products_sec {
    padding-bottom: 65px;
  }
}
.archive_products_sec:before {
  position: absolute;
  top: 0;
  content: "";
  width: 1px;
  height: 100%;
  background: #eee;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.archive_products_sec .a_inner {
  width: 87%;
  margin: 0 auto;
}
@media (max-width: 1290px) {
  .archive_products_sec .a_inner {
    width: calc(100% - 90px);
  }
}
@media (max-width: 480px) {
  .archive_products_sec .a_inner {
    width: calc(100% - 60px);
  }
}

.archive_products_sec.life_science_ver {
  padding-top: 80px;
}
@media (max-width: 480px) {
  .archive_products_sec.life_science_ver {
    padding-top: 50px;
  }
}

.filter_box {
  padding: 24px 0 70px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
@media (max-width: 480px) {
  .filter_box {
    padding: 24px 0 50px;
  }
}

/* タブ */
.filter_tabs {
  display: flex;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}
@media (max-width: 510px) {
  .filter_tabs {
    gap: 14px;
  }
}
.filter_tabs .tab {
  background: none;
  border: none;
  font-size: 16px;
  padding: 5px 10px;
  cursor: pointer;
  font-family: "Zen Kaku Gothic New";
  font-weight: 500;
  position: relative;
}
@media (max-width: 510px) {
  .filter_tabs .tab {
    font-size: 14px;
  }
}
.filter_tabs .tab:after {
  position: absolute;
  width: 1px;
  height: 20px;
  content: "";
  background: #20272E;
  right: -20px;
  top: 9px;
}
@media (max-width: 480px) {
  .filter_tabs .tab:after {
    display: none;
  }
}
.filter_tabs .tab:last-of-type:after {
  display: none;
}
.filter_tabs .tab.is-active {
  background: -webkit-linear-gradient(right, #0068E2, #71A3DD);
  color: #fff;
}

/* コンテンツ */
.filter_content {
  display: none;
}
.filter_content.is-active {
  display: block;
}

.checkbox_list {
  display: flex;
  gap: 14px 24px;
  padding: 30px 0;
  flex-wrap: wrap;
}
.checkbox_list li {
  list-style: none;
}
.checkbox_list label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 16px;
}
.checkbox_list input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 24px;
  height: 24px;
  border: 1px solid #ccc;
  border-radius: 3px;
}
.checkbox_list input:checked {
  background: -webkit-linear-gradient(right, #0068E2, #71A3DD);
  position: relative;
}
.checkbox_list input:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: 2px solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* ボタン */
.filter_action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 16px;
}
@media (max-width: 480px) {
  .filter_action {
    display: block;
  }
}
.filter_action .btn_submit {
  position: relative;
  background: none;
  border: none;
  color: #2f6df6;
  font-size: 18px;
  padding-left: 28px;
  cursor: pointer;
}
@media (max-width: 480px) {
  .filter_action .btn_submit {
    font-size: 16px;
  }
}
.filter_action .btn_submit:hover:after {
  transform: translateY(5px);
}
.filter_action .btn_submit:before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(../img/search-btn-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
}
.filter_action .btn_submit:after {
  position: absolute;
  top: 11px;
  left: 7.5px;
  width: 5px;
  height: 7px;
  background-image: url(../img/search-btn-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  transition: 0.5s;
}
.filter_action .btn_reset {
  position: relative;
  color: #bfbfbf;
  font-size: 18px;
  text-decoration: none;
  display: flex;
  gap: 6px;
}
@media (max-width: 480px) {
  .filter_action .btn_reset {
    margin-top: 10px;
    font-size: 16px;
    margin-left: 30px;
  }
}
.filter_action .btn_reset:before {
  position: absolute;
  top: 4px;
  left: -30px;
  width: 20px;
  height: 20px;
  background-image: url(../img/search-reset-btn.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
}
.filter_action .btn_reset .icon {
  width: 16px;
  height: 16px;
  background: #ccc;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.result_list .result_ttl {
  border-top: 1px solid #0068E2;
  padding: 30px 0 60px;
  font-size: 28px;
}
@media (max-width: 480px) {
  .result_list .result_ttl {
    font-size: 22px;
    padding: 30px 0;
  }
}
.result_list .result_ttl span {
  font-size: 22px;
}

.rp_con .rp_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 3.8%;
}
@media (max-width: 800px) {
  .rp_con .rp_wrap {
    gap: 4%;
  }
}
@media (max-width: 480px) {
  .rp_con .rp_wrap {
    gap: 3%;
    justify-content: center;
    display: block;
  }
}
.rp_con .rp_wrap .rp_b {
  width: 30.8%;
  position: relative;
  z-index: 5;
  margin-bottom: 60px;
}
@media (max-width: 800px) {
  .rp_con .rp_wrap .rp_b {
    width: 48%;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .rp_con .rp_wrap .rp_b {
    width: 99.5%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
.rp_con .rp_wrap .rp_b:hover a .rp_thumb img {
  transform: scale(1.1);
}
.rp_con .rp_wrap .rp_b a .rp_thumb {
  margin-bottom: 20px;
  height: 26.52vw;
  overflow: hidden;
}
@media (max-width: 1290px) {
  .rp_con .rp_wrap .rp_b a .rp_thumb {
    height: 28.2vw;
  }
}
@media (max-width: 800px) {
  .rp_con .rp_wrap .rp_b a .rp_thumb {
    height: 38.6vw;
  }
}
@media (max-width: 480px) {
  .rp_con .rp_wrap .rp_b a .rp_thumb {
    height: 79.7vw;
  }
}
.rp_con .rp_wrap .rp_b a .rp_thumb img {
  width: 100%;
  height: 26.52vw;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
@media (max-width: 1290px) {
  .rp_con .rp_wrap .rp_b a .rp_thumb img {
    height: 28.2vw;
  }
}
@media (max-width: 800px) {
  .rp_con .rp_wrap .rp_b a .rp_thumb img {
    height: 38.6vw;
  }
}
@media (max-width: 480px) {
  .rp_con .rp_wrap .rp_b a .rp_thumb img {
    height: 79.7vw;
  }
}
.rp_con .rp_wrap .rp_b a .rp_ttl {
  font-size: 22px;
  margin-bottom: 20px;
}
.rp_con .rp_wrap .rp_b a .rp_txt {
  margin-bottom: 20px;
}
.rp_con .rp_wrap .rp_b a .profile_con .cat_wrap {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
@media (max-width: 1190px) {
  .rp_con .rp_wrap .rp_b a .profile_con .cat_wrap {
    display: block;
  }
}
.rp_con .rp_wrap .rp_b a .profile_con .cat_wrap .l_ttl {
  font-size: 13px;
  width: 30px;
  flex: 0 0 30px;
  position: relative;
  top: 5px;
}
@media (max-width: 1190px) {
  .rp_con .rp_wrap .rp_b a .profile_con .cat_wrap .l_ttl {
    margin-bottom: 5px;
    top: 0;
  }
}
.rp_con .rp_wrap .rp_b a .profile_con .cat_wrap .r_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rp_con .rp_wrap .rp_b a .profile_con .cat_wrap .r_wrap .r_b {
  font-size: 13px;
  border: 1px solid #707070;
  padding: 4px;
}
@media (max-width: 800px) {
  .rp_con .rp_wrap .rp_b a .profile_con .cat_wrap .r_wrap .r_b {
    font-size: 10px;
  }
}

.p_search {
  /* 入力欄 */
  /* プレースホルダー */
  /* 検索ボタン */
  /* ボタン画像 */
}
@media (max-width: 900px) {
  .p_search {
    margin-top: 142px;
  }
}
@media (max-width: 480px) {
  .p_search {
    margin-top: 114px;
  }
}
.p_search .search-form {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  border-radius: 0 4px 4px 0;
}
@media (max-width: 480px) {
  .p_search .search-form {
    height: 50px;
  }
}
.p_search .search-input {
  flex: 1;
  height: 100%;
  padding: 25px;
  font-size: 20px;
  border: none;
  outline: none;
  box-sizing: border-box;
  border-radius: 4px 0 0 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  min-width: 0;
  border: 1px solid #6DA1DD;
  margin-left: 1px;
}
@media (max-width: 480px) {
  .p_search .search-input {
    padding: 0;
    padding-left: 15px;
  }
}
.p_search .search-input::-moz-placeholder {
  color: rgba(0, 104, 226, 0.5); /* #0068E2 50% */
  font-size: 20px;
}
.p_search .search-input:-ms-input-placeholder {
  color: rgba(0, 104, 226, 0.5); /* #0068E2 50% */
  font-size: 20px;
}
.p_search .search-input::placeholder {
  color: rgba(0, 104, 226, 0.5); /* #0068E2 50% */
  font-size: 20px;
}
@media (max-width: 480px) {
  .p_search .search-input::-moz-placeholder {
    font-size: 16px;
    position: relative;
    top: -2px;
  }
  .p_search .search-input:-ms-input-placeholder {
    font-size: 16px;
    position: relative;
    top: -2px;
  }
  .p_search .search-input::placeholder {
    font-size: 16px;
    position: relative;
    top: -2px;
  }
}
.p_search .search-btn {
  width: 80px;
  height: 100%;
  border: none;
  background-color: #0068e2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0 4px 4px 0;
}
@media (max-width: 480px) {
  .p_search .search-btn {
    width: 50px;
  }
}
.p_search .search-btn img {
  width: 100%;
  height: auto;
  border-radius: 0 4px 4px 0;
}
@media (max-width: 480px) {
  .p_search .search-btn img {
    height: 50px;
  }
}

.product_tax_sec {
  width: 87%;
  margin: 0 auto;
}
@media (max-width: 1290px) {
  .product_tax_sec {
    width: calc(100% - 90px);
  }
}
@media (max-width: 480px) {
  .product_tax_sec {
    width: calc(100% - 60px);
    padding-top: 65px;
  }
}

.archive_lifesience_con {
  margin-top: -168px;
  position: relative;
  z-index: 3;
  padding-bottom: 80px;
  border-bottom: 1px solid #eee;
}
@media (max-width: 1290px) {
  .archive_lifesience_con {
    margin-top: -146px;
  }
}
@media (max-width: 480px) {
  .archive_lifesience_con {
    margin-top: -225px;
    margin-bottom: 50px;
  }
}
.archive_lifesience_con:before {
  position: absolute;
  top: 0;
  content: "";
  width: 1px;
  height: 100%;
  background: #eee;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.archive_lifesience_con .a_l_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3%;
}
.archive_lifesience_con .a_l_wrap .a_l_b {
  position: relative;
  width: 33.12%;
  height: 20vw;
  overflow: hidden;
  margin-bottom: 0.3%;
}
@media (max-width: 800px) {
  .archive_lifesience_con .a_l_wrap .a_l_b {
    width: 49.85%;
    height: 30vw;
  }
}
@media (max-width: 480px) {
  .archive_lifesience_con .a_l_wrap .a_l_b {
    width: 100%;
    height: 60vw;
  }
}
.archive_lifesience_con .a_l_wrap .a_l_b:nth-last-child(-n+3) {
  margin-bottom: 0;
}
.archive_lifesience_con .a_l_wrap .a_l_b:hover a img {
  transform: scale(1.1);
}
.archive_lifesience_con .a_l_wrap .a_l_b:hover .b_btn_b p:before {
  -webkit-animation: arrow-line-p 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86) 1 normal;
  animation: arrow-line-p 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86) 1 normal;
}
.archive_lifesience_con .a_l_wrap .a_l_b a {
  position: relative;
  width: 100%;
  height: 100%;
}
.archive_lifesience_con .a_l_wrap .a_l_b a:before {
  position: absolute;
  background-image: url(../img/product-cover-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 20vw;
  content: "";
  z-index: 1;
}
@media (max-width: 800px) {
  .archive_lifesience_con .a_l_wrap .a_l_b a:before {
    height: 30vw;
  }
}
@media (max-width: 480px) {
  .archive_lifesience_con .a_l_wrap .a_l_b a:before {
    height: 60vw;
  }
}
.archive_lifesience_con .a_l_wrap .a_l_b a img {
  width: 100%;
  transition: 0.5s;
  height: 100%;
}
.archive_lifesience_con .a_l_wrap .a_l_b .b_btn_b {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: inline-block;
  z-index: 3;
}
.archive_lifesience_con .a_l_wrap .a_l_b .b_btn_b p {
  display: block;
  position: relative;
  font-size: 18px;
  padding-left: 30px;
  color: #fff;
}
.archive_lifesience_con .a_l_wrap .a_l_b .b_btn_b p:before {
  content: "";
  background-image: url(../img/btn-hover-arrow.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 10px;
  height: 6px;
  position: absolute;
  left: 5px;
  z-index: 5;
  top: 11px;
}
.archive_lifesience_con .a_l_wrap .a_l_b .b_btn_b p:after {
  position: absolute;
  top: 4px;
  left: 0;
  background-image: url(../img/btn-hover-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  content: "";
  z-index: 4;
}
#moreBtn {
  position: relative;
  border: none;
  font-size: 18px;
  color: #0068E2;
  background: none;
  padding-left: 30px;
}
#moreBtn:before {
  position: absolute;
  top: 5px;
  left: 0;
  background-image: url(../img/more-btn-i.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 20px;
  height: 20px;
  content: "";
}

.more-item {
  display: none;
}

.more-btn-area {
  text-align: center;
  margin-top: 30px;
}

#closeBtn {
  display: none;
}

#closeBtn {
  position: relative;
  border: none;
  font-size: 18px;
  color: #0068E2;
  background: none;
  padding-left: 30px;
}
#closeBtn:before {
  position: absolute;
  top: 5px;
  left: 0;
  background-image: url(../img/close-btn-i.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 20px;
  height: 20px;
  content: "";
}

.l_btn_wrap {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding: 50px 0 35px;
}
@media (max-width: 820px) {
  .l_btn_wrap {
    display: block;
  }
}
.l_btn_wrap .text-button1 {
  width: 50%;
  border: 1px solid #eee;
  background: #fff;
  color: #20272e;
}
@media (max-width: 820px) {
  .l_btn_wrap .text-button1 {
    width: 100%;
  }
}
@media (max-width: 820px) {
  .l_btn_wrap .text-button1:last-of-type {
    margin-top: 30px;
  }
}
.l_btn_wrap .text-button1:hover {
  background: #20272e;
  color: #fff;
  border: 1px solid #20272e;
}

.filter_box {
  border-top: none;
}

.intern_cta {
  padding-top: 0;
}/*# sourceMappingURL=archive-electronic-glass.css.map */