/* 下層ページメインビジュアル */
.page_mv {
  height: 545px;
  @media screen and (max-width: 767px) {
    height: auto;
    padding-bottom: 45px;
  }
}
.technology_lead {
  color: #fff;
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .page_mv--img img {
    object-position: right;
  }
}

/* めっきとは */
.plating_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-20);
  margin-top: var(--space-75);
  counter-reset: num 0;
}
.plating_list--item {
  max-width: calc(100% / 3 - 40px / 3);
  width: 100%;
  line-height: 2;
  text-align: center;
  position: relative;
  &::before {
    counter-increment: num 1;
    content: '0' counter(num);
    font-size: 6.4rem;
    font-weight: 900;
    list-style: 1;
    text-align: center;
    color: rgba(22, 224, 253, 0.4);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    transform: translateY(-60%);
    margin-inline: auto;
  }
  @media screen and (max-width: 767px) {
    max-width: calc(50% - 5px);
    margin-top: 2em;
  }
}
.plating_list--name {
  padding: 0.75em 0 0.5em;
  font-size: var(--font-24);
  text-align: center;
}