@media screen and (min-width: 960px) {
  /* PC */
  /* ----------  ---------- */
  a.contact-icon-link {
    min-width: 30px;
    min-height: 30px;
    aspect-ratio: 1 / 1;

    padding: 12.5px;

    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease;

    background-color: #b94047;
    cursor: pointer;
  }

  a.contact-icon-link svg {
    width: fit-content;
    height: fit-content;

    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 1 / 1;

    fill: #ffffff;
  }

}

@media screen and (max-width: 959px) {
  /* Tablet and Mobile */
  /* ----------  ---------- */
  a.contact-icon-link {
    min-width: 30px;
    min-height: 30px;
    aspect-ratio: 1 / 1;

    padding: 10px;

    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease;

    background-color: #b94047;
    cursor: pointer;
  }

  a.contact-icon-link svg {
    width: fit-content;
    height: fit-content;

    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 1 / 1;

    fill: #ffffff;
  }
}
