@charset "UTF-8";
/* web font */
/* text align */
/* object fit */
.products-container {
  padding-bottom: 1.6rem;
}
@media (width <= 767px) {
  .products-container {
    padding: 0 0.3rem 0.8rem;
  }
}
.products-container .products-category-nav {
  margin-bottom: 1.4rem;
}
@media (width > 767px) {
  .products-container .products-category-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 0.25rem;
  }
  .products-container .products-category-nav:not(:has(li:nth-child(6))) {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .products-container .products-category-nav li {
    width: calc((100% - 1rem) / 5);
  }
}
@media (width <= 767px) {
  .products-container .products-category-nav {
    margin-bottom: 1rem;
  }
  .products-container .products-category-nav li + li {
    margin-top: 0.08rem;
  }
}
.products-container .products-category-nav a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1rem;
  padding-bottom: 0.05rem;
  text-align: center;
  text-decoration: none;
  font-size: 0.18rem;
  line-height: 1.33;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #cccccc;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}
.products-container .products-category-nav a::after {
  content: "";
  position: absolute;
  bottom: 0.14rem;
  right: 0;
  left: 0;
  width: 0.12rem;
  height: 0.12rem;
  margin: auto;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../img/common/link_ico_arrow.svg);
          mask-image: url(../img/common/link_ico_arrow.svg);
  background: var(--bc_black);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.no-touchevents .products-container .products-category-nav a:hover {
  border-color: var(--bc_blue2);
}
.no-touchevents .products-container .products-category-nav a:hover::after {
  background-color: var(--bc_blue2);
}
@media (width <= 767px) {
  .products-container .products-category-nav a {
    display: block;
    height: auto;
    text-align: left;
    font-size: 0.16rem;
    padding-block: 0.12rem;
    padding-right: 0.2rem;
  }
  .products-container .products-category-nav a::after {
    top: 0;
    bottom: 0;
    left: auto;
  }
}
.products-container .products-1st-category + .products-1st-category {
  margin-top: 1.8rem;
}
@media (width <= 767px) {
  .products-container .products-1st-category + .products-1st-category {
    margin-top: 1.2rem;
  }
}
.products-container .products-2nd-category + .products-2nd-category {
  margin-top: 0.8rem;
}
@media (width <= 767px) {
  .products-container .products-2nd-category + .products-2nd-category {
    margin-top: 0.6rem;
  }
}
.products-container .products-1st-category-title {
  margin-bottom: 0.56rem;
  text-align: center;
}
.products-container .products-1st-category-title::after {
  content: "";
  display: block;
  width: 1rem;
  height: 0.05rem;
  margin: 0.3rem auto 0;
  border-radius: 0.05rem;
  background-color: var(--bc_blue2);
}
@media (width <= 767px) {
  .products-container .products-1st-category-title {
    margin-bottom: 0.4rem;
    font-size: 0.28rem !important;
    line-height: 1.3 !important;
  }
  .products-container .products-1st-category-title::after {
    margin-top: 0.2rem;
  }
}
.products-container .products-2nd-category-title {
  position: relative;
  display: block;
  margin-bottom: 0.56rem;
  padding: 0.15rem 0.5rem;
  background-color: var(--bc_gray1);
  border-bottom: 1px solid var(--bc_gray2);
}
.products-container .products-2nd-category-title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.3rem;
  border-top: 1px solid var(--bc_blue2);
}
@media (width <= 767px) {
  .products-container .products-2nd-category-title {
    margin-bottom: 0.4rem;
    padding: 0.12rem 0.2rem;
    font-size: 0.23rem !important;
    line-height: 1.2 !important;
  }
  .products-container .products-2nd-category-title::after {
    width: 0.1rem;
  }
}
.products-container .product-card-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem;
}
@media (width <= 767px) {
  .products-container .product-card-container {
    gap: 0.4rem 0.08rem;
  }
}
.products-container .product-card-container .product-card {
  width: calc((100% - 2.4rem) / 4);
}
@media (width <= 767px) {
  .products-container .product-card-container .product-card {
    width: calc((100% - 0.08rem) / 2);
  }
}
.products-container .product-card-container .product-card .ph {
  position: relative;
  overflow: hidden;
  margin-bottom: 0.2rem;
  border: 1px solid #F5F7F9;
  border-radius: 0.1rem;
  aspect-ratio: 1;
}
.products-container .product-card-container .product-card .ph a {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.no-touchevents .products-container .product-card-container .product-card .ph a:hover {
  opacity: 0.7;
}
.products-container .product-card-container .product-card .ph img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.products-container .product-card-container .product-card .ph.-noimage {
  background-color: var(--bc_gray1);
}
.products-container .product-card-container .product-card .ph.-noimage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../img/common/header_logo.svg) no-repeat 50%;
  background-size: 80%;
}
@media (width <= 767px) {
  .products-container .product-card-container .product-card .ph {
    margin-bottom: 0.1rem;
    border-radius: 0.04rem;
  }
  .products-container .product-card-container .product-card .ph ~ * {
    margin-inline: 0.04rem;
  }
}
.products-container .product-card-container .product-card .product-title {
  margin-bottom: 0.2rem;
  line-height: 1.6;
}
@media (width <= 767px) {
  .products-container .product-card-container .product-card .product-title {
    margin-bottom: 0.1rem;
    font-size: 0.13rem !important;
  }
}
.products-container .product-card-container .product-card .pickup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.08rem;
  margin-bottom: 0.1rem;
}
@media (width <= 767px) {
  .products-container .product-card-container .product-card .pickup {
    gap: 0.04rem;
    margin-bottom: 0.05rem;
  }
}
.products-container .product-card-container .product-card .pickup a {
  display: block;
  min-width: 1.06rem;
  text-align: center;
  padding: 0.04rem 0.1rem;
  border: 1px solid var(--bc_gray2);
  border-radius: 1rem;
  color: var(--bc_blue1);
  font-weight: 700;
  font-size: 0.13rem;
  line-height: 1.3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (width <= 767px) {
  .products-container .product-card-container .product-card .pickup a {
    min-width: 0.6rem;
    padding: 0.02rem 0.05rem;
    font-size: 0.09rem;
  }
}
.products-container .product-card-container .product-card .keyword {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  margin-bottom: 0.1rem;
  font-weight: 700;
  font-size: 0.13rem;
  line-height: 1.5;
}
@media (width <= 767px) {
  .products-container .product-card-container .product-card .keyword {
    margin-bottom: 0.08rem;
    font-size: 0.09rem;
  }
}
.products-container .product-card-container .product-card .keyword dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.products-container .product-card-container .product-card .keyword ul li {
  display: inline;
}
.products-container .product-card-container .product-card .keyword ul li:not(:last-child)::after {
  content: "／";
}
.products-container .product-card-container .product-card .buttons-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.05rem;
}
@media (width <= 767px) {
  .products-container .product-card-container .product-card .buttons-grid {
    gap: 0.04rem;
  }
}
.products-container .product-card-container .product-card .buttons-grid li {
  width: calc((100% - 0.05rem) / 2);
}
@media (width <= 767px) {
  .products-container .product-card-container .product-card .buttons-grid li {
    width: calc((100% - 0.04rem) / 2);
  }
}
.products-container .product-card-container .product-card .buttons-grid li:has(.wide) {
  width: 100%;
}
.products-container .product-card-container .product-card .buttons-grid a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  background: var(--bc_navy1);
  color: #fff;
  font-size: 0.14rem;
  text-decoration: none;
  padding-block: 0.07rem;
  padding-right: 0.07rem;
  text-align: center;
  font-weight: 700;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.products-container .product-card-container .product-card .buttons-grid a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.1rem;
  width: 0.09rem;
  height: 0.09rem;
  margin: auto;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../img/common/link_ico_arrow.svg);
          mask-image: url(../img/common/link_ico_arrow.svg);
  background: var(--bc_white);
}
.no-touchevents .products-container .product-card-container .product-card .buttons-grid a:hover {
  opacity: 0.7;
}
@media (width <= 767px) {
  .products-container .product-card-container .product-card .buttons-grid a {
    font-size: 0.11rem;
    padding-right: 0.12rem;
    padding-left: 0.04rem;
  }
  .products-container .product-card-container .product-card .buttons-grid a::before {
    right: 0.03rem;
  }
}
.products-container .product-card-container .product-card .links {
  margin-top: 0.16rem;
  border-top: 1px solid var(--bc_black);
}
@media (width <= 767px) {
  .products-container .product-card-container .product-card .links {
    margin-top: 0.08rem;
  }
}
.products-container .product-card-container .product-card .links li {
  border-bottom: 1px solid var(--bc_black);
}
.products-container .product-card-container .product-card .links a {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 0.11rem 0.12rem 0.11rem 0;
  color: #1B3280;
  font-size: 0.16rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: 700;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.products-container .product-card-container .product-card .links a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 0.12rem;
  height: 0.12rem;
  margin: auto;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../img/common/link_ico_arrow.svg);
          mask-image: url(../img/common/link_ico_arrow.svg);
  background: var(--bc_black);
}
.no-touchevents .products-container .product-card-container .product-card .links a:hover {
  opacity: 0.7;
}
@media (width <= 767px) {
  .products-container .product-card-container .product-card .links a {
    padding: 0.08rem 0.1rem 0.08rem 0;
    font-size: 0.11rem;
    line-height: 1.4;
  }
  .products-container .product-card-container .product-card .links a::before {
    width: 0.09rem;
    height: 0.09rem;
  }
}
.products-container .product-card-container .product-card .contact-btn {
  margin-top: 0.16rem;
}
@media (width <= 767px) {
  .products-container .product-card-container .product-card .contact-btn {
    margin-top: 0.08rem;
  }
}
.products-container .product-card-container .product-card .contact-btn a {
  position: relative;
  display: block;
  background: #1B3280;
  color: #fff;
  padding: 0.18rem 0.18rem 0.18rem 0;
  font-weight: bold;
  font-size: 0.14rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-decoration: none;
  text-align: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.products-container .product-card-container .product-card .contact-btn a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.2rem;
  width: 0.12rem;
  height: 0.12rem;
  margin: auto;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../img/common/link_ico_arrow.svg);
          mask-image: url(../img/common/link_ico_arrow.svg);
  background: var(--bc_white);
}
.no-touchevents .products-container .product-card-container .product-card .contact-btn a:hover {
  opacity: 0.7;
}
@media (width <= 767px) {
  .products-container .product-card-container .product-card .contact-btn a {
    padding: 0.06rem 0.06rem 0.06rem 0;
    font-size: 0.11rem;
    line-height: 1.4;
  }
  .products-container .product-card-container .product-card .contact-btn a::before {
    right: 0.1rem;
    width: 0.09rem;
    height: 0.09rem;
  }
}
.products-container .product-card-container .product-card .notes {
  margin-top: 0.16rem;
  font-size: 0.12rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media (width <= 767px) {
  .products-container .product-card-container .product-card .notes {
    margin-top: 0.08rem;
    font-size: 0.09rem;
    line-height: 1.4;
  }
}
.products-container .category_body {
  margin-inline: 0.5rem;
}
.products-container .category_body.-top {
  margin-bottom: 0.8rem;
}
.products-container .category_body.-bottom {
  margin-top: 0.8rem;
}
@media (width <= 767px) {
  .products-container .category_body {
    margin-inline: 0;
  }
  .products-container .category_body.-top {
    margin-bottom: 0.6rem;
  }
  .products-container .category_body.-bottom {
    margin-top: 0.6rem;
  }
}

.products-list {
  padding-bottom: 1rem;
}
@media (width > 767px) {
  .products-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0.8rem 0;
  }
  .products-list .products-list-item {
    width: 5.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 0.24rem;
  }
  .products-list .products-list-item .img {
    width: 2.5rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .products-list .products-list-item .content {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media (width <= 767px) {
  .products-list {
    padding: 0 0.3rem 0.8rem;
  }
  .products-list .products-list-item + .products-list-item {
    margin-top: 0.6rem;
  }
}
.products-list .img img {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
}
.products-list h2 {
  margin-top: -0.2rem;
  margin-bottom: 0.2rem;
}
@media (width <= 767px) {
  .products-list h2 {
    margin-top: 0;
  }
}
.products-list h2 a {
  position: relative;
  display: block;
  padding-block: 0.2rem;
  border-bottom: 1px solid var(--bc_black);
  color: #000;
  font-size: 0.24rem;
  line-height: 1.4583333333;
  font-weight: 700;
  color: var(--bc_blue1);
  letter-spacing: 0.05em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.products-list h2 a .s {
  display: block;
  margin-top: 0.05rem;
  font-size: 0.2rem;
}
.products-list h2 a::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 0.06rem);
  width: 0.08rem;
  height: 0.12rem;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url("../img/common/link_ico_arrow.svg");
          mask-image: url("../img/common/link_ico_arrow.svg");
  background: var(--bc_black);
}
.no-touchevents .products-list h2 a:hover {
  opacity: 0.7;
}
@media (width <= 767px) {
  .products-list h2 a {
    font-size: 0.22rem;
  }
}
.products-list .category {
  line-height: 1.6;
}
.products-list .category li + li {
  margin-top: 0.08rem;
}
.products-list .category a::before {
  content: none;
}
.products-list .category a::after {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}
.products-list .category a span::before {
  bottom: -0.02rem;
}

.service_bnr {
  margin-bottom: 1.6rem;
}
@media (width > 767px) {
  .service_bnr {
    max-width: 7.2rem;
    margin-inline: auto;
  }
}
@media (width <= 767px) {
  .service_bnr {
    margin: 0 0.3rem 0.8rem;
  }
}
.service_bnr a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--bc_navy1);
  color: var(--bc_ff);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (width <= 767px) {
  .service_bnr a {
    display: block;
  }
}
.service_bnr a:hover {
  opacity: 0.7;
}
.service_bnr a .ph_wrap {
  width: 100%;
  max-width: 3.56rem;
  height: 2rem;
}
@media (width <= 767px) {
  .service_bnr a .ph_wrap {
    max-width: 100%;
    height: 28.2vw;
  }
}
.service_bnr a .txt_box {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-left: 0.4rem;
}
@media (width <= 767px) {
  .service_bnr a .txt_box {
    width: 100%;
    padding: 0.2rem 0.3rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    text-align: left;
  }
}
.service_bnr a .txt_box .ttl_wrap .-jp {
  font-size: 0.28rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: block;
}
@media (width <= 767px) {
  .service_bnr a .txt_box .ttl_wrap .-jp {
    font-size: 0.24rem;
  }
}
.service_bnr a .txt_box .ttl_wrap .-en {
  padding-top: 0.1rem;
  font-size: 0.16rem;
  display: block;
}
@media (width <= 767px) {
  .service_bnr a .txt_box .ttl_wrap .-en {
    font-size: 0.16rem;
    padding-top: 0;
    line-height: 2.125;
  }
}
.service_bnr a .txt_box .more_txt {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0.1rem;
  padding-right: 0.2rem;
  display: block;
}
.service_bnr a .txt_box .more_txt::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 0.06rem);
  width: 0.07rem;
  height: 0.12rem;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url("../img/common/link_ico_arrow.svg");
          mask-image: url("../img/common/link_ico_arrow.svg");
  background: var(--bc_ff);
}
@media (width <= 767px) {
  .service_bnr a .txt_box .more_txt {
    margin-top: 0.08rem;
    font-size: 0.13rem;
  }
}

.products-local-nav {
  position: fixed;
  left: 0;
  top: 1.7rem;
  z-index: 10;
}
@media (width <= 767px) {
  .products-local-nav {
    display: none;
  }
}
.products-local-nav-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1.5rem;
  height: 0.4rem;
  background-color: var(--bc_blue1);
  font-size: 0.14rem;
  font-weight: 700;
  color: #fff;
  padding-right: 0.25rem;
  border-radius: 0 0.2rem 0.2rem 0;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}
.products-local-nav-title .line {
  position: absolute;
  top: calc(50% - 1px);
  right: 0.14rem;
  width: 0.15rem;
  border-top: 2px solid #fff;
}
.products-local-nav-title .line::before, .products-local-nav-title .line::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  left: 0;
  border-top: 2px solid #fff;
  -webkit-transform: translateY(-0.05rem);
          transform: translateY(-0.05rem);
}
.products-local-nav-title .line::after {
  -webkit-transform: translateY(0.05rem);
          transform: translateY(0.05rem);
}
.products-local-nav-container {
  position: absolute;
  top: -1.7rem;
  left: 0;
  width: 2.6rem;
  height: 100vh;
  -webkit-transform: translateX(-110%) translateX(-0.4rem);
          transform: translateX(-110%) translateX(-0.4rem);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  padding-top: 1.3rem;
  padding-bottom: 0.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.05);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.05);
  z-index: 2;
}
.products-local-nav-container.-show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.products-local-nav-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 3;
}
.products-local-nav-container .products-local-nav-intitle {
  position: relative;
  margin-bottom: 0.11rem;
  padding: 0 0.3rem;
  font-weight: 700;
  font-size: 0.18rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  z-index: 5;
}
.products-local-nav-container .products-local-nav-intitle .close {
  position: absolute;
  top: calc(50% - 0.2rem);
  left: 100%;
  width: 0.4rem;
  height: 0.4rem;
  background-color: var(--bc_blue1);
  border-radius: 0 0.2rem 0.2rem 0;
  cursor: pointer;
}
.products-local-nav-container .products-local-nav-intitle .close::before, .products-local-nav-container .products-local-nav-intitle .close::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.04rem;
  left: 0;
  margin-inline: auto;
  width: 0.14rem;
  border-top: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.products-local-nav-container .products-local-nav-intitle .close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.products-local-nav-container .products-local-nav-item::after {
  content: "";
  position: relative;
  display: block;
  margin-inline: 0.3rem;
  border-top: 1px solid #f2f2f2;
  z-index: 4;
}
.products-local-nav-container .products-local-nav-item > a {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 0.11rem 0.3rem;
  font-weight: 700;
  font-size: 0.14rem;
  line-height: 1.5384615385;
  letter-spacing: 0.05em;
  color: var(--bc_blue1);
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  z-index: 5;
}
.products-local-nav-container .products-local-nav-item > a .s {
  display: block;
  font-size: 0.12rem;
}
.no-touchevents .products-local-nav-container .products-local-nav-item > a:hover {
  background-color: #f5f5f5;
}
.products-local-nav-container .products-local-nav-item .category {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 1.3rem;
  background-color: rgba(242, 242, 242, 0.95);
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateX(-0.1rem);
          transform: translateX(-0.1rem);
  z-index: 1;
}
.products-local-nav-container .products-local-nav-item .category ul.abs {
  position: absolute;
  bottom: 0.4rem;
  left: 0;
  width: 100%;
}
.products-local-nav-container .products-local-nav-item .category a {
  display: block;
  font-size: 0.14rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding: 0.05rem 0.18rem;
}
.products-local-nav-container .products-local-nav-item .category a::after {
  content: "";
  display: inline-block;
  margin-left: 0.08rem;
  width: 0.08rem;
  height: 0.08rem;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../img/common/link_ico_arrow.svg);
          mask-image: url(../img/common/link_ico_arrow.svg);
  background: var(--bc_black);
}
.no-touchevents .products-local-nav-container .products-local-nav-item .category a:hover {
  text-decoration: underline;
}
.no-touchevents .products-local-nav-container .products-local-nav-item:hover > a {
  background-color: #f5f5f5;
}
.no-touchevents .products-local-nav-container .products-local-nav-item:hover .category {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.products-local-nav-container .-pickup {
  position: relative;
  margin-top: 0.18rem;
  z-index: 5;
}
.products-local-nav-container .-pickup dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0.2rem;
  margin-bottom: 0.14rem;
  height: 0.28rem;
  background-color: var(--bc_blue1);
  font-size: 0.14rem;
  font-weight: 700;
  color: #fff;
  padding-inline: 0.3rem;
  border-radius: 0 0.14rem 0.14rem 0;
  letter-spacing: 0.05em;
}
.products-local-nav-container .-pickup ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.07rem;
  padding: 0 0.3rem;
}
.products-local-nav-container .-pickup ul li {
  width: calc((100% - 0.07rem) / 2);
}
.products-local-nav-container .-pickup ul li a {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 0.05rem 0;
  border: 1px solid var(--bc_gray2);
  text-align: center;
  border-radius: 1rem;
  color: var(--bc_blue1);
  font-size: 0.12rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.no-touchevents .products-local-nav-container .-pickup ul li a:hover {
  background-color: #f5f5f5;
}
/*# sourceMappingURL=products.css.map */