@charset "UTF-8";

.personalServicesIndex__el_anchor {
    background-color: transparent;
  }
  .personalServicesIndex__anchor_list {
    flex-wrap: wrap;
    gap: 40px 0;
  }
  .personalServicesIndex__anchor_item {
    width: 25%;
    background-color: #f3f3f3;
  }
  @media screen and (min-width:769px) {
    .personalServicesIndex__anchor_item:nth-child(4n + 1) {
      border-radius: 18px 0 0 18px;
    }
    .personalServicesIndex__anchor_item:nth-child(4n + 4) {
      border-radius:0 18px 18px 0;
    }
    .personalServicesIndex__anchor_item:nth-child(4)::after {
      content: none;
    }
  }
  @media screen and (max-width: 767px) {
    .el_anchor_item:nth-child(even) {
      border: none;
    }
    .el_anchor_item:nth-child(n+3) {
      border: none;
    }
    .personalServicesIndex__anchor_list {
      gap: 0;
    }
    .personalServicesIndex__anchor_item {
      width: 50%;
    }
    .personalServicesIndex__anchor_item:nth-child(odd) {
      border-bottom: var(--color-grayC) solid 2px;
      border-right: var(--color-grayC) solid 2px;
    }
    .personalServicesIndex__anchor_item:nth-child(even) {
      border-bottom: var(--color-grayC) solid 2px;
    }
    .personalServicesIndex__anchor_item:first-child {
      border-radius: 8px 0 0 0;
    }
    .personalServicesIndex__anchor_item:nth-child(2) {
      border-radius:0 8px 0 0;
    }
    .personalServicesIndex__anchor_item:nth-last-child(2) {
      border-radius:0 0  0 8px;
      border-bottom: none;
    }
    .personalServicesIndex__anchor_item:last-child {
      border-radius:0 0  8px 0;
      border-bottom: none;
    }
  }