
.cta {
	  color: var(--colorBlack);
    border: 0.1rem solid var(--colorBlack);
    max-width: 40.7rem;
    width: 100%;
    margin-left: auto;
    height: 7rem;
    &::after {
      	background: url(../../img/common/arrow_right_blue.svg) no-repeat center center / contain;
    }
}

#page__mv {
    & .page__mvWrap {
        .page__mvTextarea {
            min-width: 22.5rem;
        }
    }
}



#quality-firstSection::after {
    /* content: ""; */
    width: 26vw;
    height: 34vw;
    /* background-position: center;
    background-repeat: no-repeat;
    background-size: cover; */
    /* background-image: url("/asset/img/service/bg_hexa_7.png"); */
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
  }
.table-container {
    padding: 5rem;
    width: 100%;
    margin: 6rem auto 0;
    background-color: #fff;
    position: relative;
    z-index: 100;

    .spec-table {
        width: 100%;
        border-collapse: collapse;
        text-align: left;

        td,
        th {
            padding: 1.5rem 2.5rem;
            border-bottom: 1px solid #CCC;
        }

        th {
            color: #0060DD;
        }

        td:first-child {
            text-align: center;
            border-right: 1px solid #CCC;
            vertical-align: middle;
        }

        /* tr:last-child td {
            border-bottom: none;
        } */
    }
}

  
#produsts {
    width: 100%;
    padding-bottom: 15rem;
    position: relative;
    
    &::before {
      content: "";
      width: 41vw;
      height: 50vw;
      background: url("../../img/service/bg_hexa_8.png");
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      position: absolute;
      bottom: 0;
      left: 0;
    }
    &::after {
      content: "";
      background-color: #E6F4FF;
      width: 100%;
      height: calc(100% - 25rem);
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
    }
    &:has(.cta) {
      &::after {
        height: calc(100% - 40rem);
      }
    }
    .relative-box {
      position: relative;
      margin-top: 6rem;
       @media screen and (max-width: 767px)  {
        margin-top: 4rem;
       }
    }

    .card_block {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
      gap: 3rem;
    }

  .card {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
    gap: 0;

  }

  .card_img {
    aspect-ratio: 380 / 235;
    overflow: hidden;
    position: relative;

  }
  .card_img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    transition: transform .4s;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .card_content {
    background: #fff;
    height: auto;
    padding: 4rem;
  }

  .card_content h4 {
    font-size: 2.2rem;
    color: #0060DD;
    font-weight: bold;
    line-height: 2.2;
  }
  .card_content p {
    margin-top: 2rem;
    line-height: 1.6;
    font-size: 2rem;
  }
  .button {
    display: block;
    max-width: 40.7rem;
    border: 1px solid #0F1419;
    font-weight: 700;
    margin-left: auto;
    position: relative;
    
    &::after {
      content: "";
      background: url(../../img/common/arrow_right_blue.svg) no-repeat center center / contain;
      width: 1.2rem;
      height: 1.4rem;
      display: inline-block;
      position: absolute;
      right: 1.5rem;
      top: 50%;
      transform: translateY(-50%);
    }
    span {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      height: 7rem;
      padding: 0 6.7rem 0 6rem;
    }
  }
  .cta {
    margin-top: 8rem;
  }

  @media screen and (max-width: 767px) {
    .card_content {
      gap: 2rem;
      padding: 1.6rem;
      p {
        margin-top: 0;
        }
    }
    .button {
      span {
        font-size: 1.8rem;
      }
    }
    .card_block {
      gap: 4rem;
    }
    &::after {
      height: calc(100% - 21rem);
    }
    &:has(.cta) {
      &::after {
        height: calc(100% - 32rem);
      }
    }
    .cta {
      margin-top: 5rem;
    }
  }
  @media screen and (max-width: 640px) {
    .card_block {
      grid-template-columns: 1fr;
    }
  }
}
