@charset "utf-8";
/* CSS Document */
.under_mv{
  background: url(../img/mv.png) no-repeat center;
  background-size: cover;
}


.product{
  margin-top: 50px;
  padding: 50px 0;
  position:relative;
  background: #f2f2f2;
}
.pro_inner{
  max-width: 1024px;
  width: 90%;
  margin: auto;
  position: relative;
}
.pro_intro{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:10px;
  padding: 20px 5%;
  width: 100%;
  margin-top: 10px;
  background: #fff;
  > p{
    font-weight: bold;
    color: #009BE4;
    text-align: center;
  }
}
.pro_search {
  display: flex;
  align-items: center;
  padding: 15px;
  padding-right: 55px;
  background: #0071BD;
  max-width: 676px;
  width: 100%;
  justify-content: center;
  font-size: var(--fs-24);
  color: #fff;
  font-weight: bold;
  gap: 10px;
}
.pro_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.pro_card{
  background: #fff;
  display: block;
  width: calc((100% / 3) - (40px / 3));
}
.pro_plate{
  padding: 20px 15px;
}
.pro_name{
  font-size: var(--fs-18);
  font-weight: bold;
  color: var(--blue);
}
.pro_tags {
  display: flex;
  gap: 7px 4px;
  flex-wrap: wrap;
  margin: 10px 0;
}
.pro_tag{
  --tag-color:#666;
  font-size: var(--fs-14);
  font-weight: bold;
  padding: 3px 8px;
  list-style: 1px;
  border-radius: 6px;
  color: var(--tag-color);
  border: 2px solid var(--tag-color);
  &[data-txt="中水"]{--tag-color:#C326E1;}
  &[data-txt="工業用水"]{--tag-color:#8357FF;}
  &[data-txt="冷温水"]{--tag-color:#14A83B;}
  &[data-txt="冷却水"]{--tag-color:#51318F;}
  &[data-txt="消火"]{--tag-color:#FF6600;}
  &[data-txt="空気"]{--tag-color:#0099FF;}
  &[data-txt="ガス"]{--tag-color:#FF66CC;}
  &[data-txt="蒸気"]{--tag-color:#FF9900;}
  &[data-txt="油"]{--tag-color:#009999;}
  &[data-txt="給水"]{--tag-color:#0066FF;}
  &[data-txt="水"]{--tag-color:#0066FF;}
  &[data-txt="給湯"]{--tag-color:#FF0000;}
}

.pro_card--large{
  width: calc(50% - 10px);
  .pro_name{
    font-size: var(--fs-24);
  }
}
@media screen and ( max-width: 1023px ) {

}
@media screen and ( max-width: 767px ) {
  .pro_list {
    gap: 10px;
  }
  .pro_plate {
    padding: 10px 5%;
  }
  .pro_card {
    width: calc(50% - 5px);
    .pro_tag{
      font-size: 1.2rem;
      padding: 2px 4px;
    }
    .pro_com{
      font-size: 1.4rem;
    }
  }

  .pro_card--large {
    width: 100%;
    .pro_tag{
      font-size: 1.4rem;
    }
  }
}