.btn-box-center {
  display: flex;
  justify-content: center;
  gap: 25px;
  width: 100%;
  margin: 0;
}

.btn-box-center-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: calc((100% - (25px * 2)) / 3);
}

.btn-contact-name {
  color: var(--color);
  font-size: calc(var(--fs-base) - 1px);
  font-weight: 600;
}

.btn-note {
  margin-inline: 4px;
  font-size: var(--fs-note);

  > span {
    font-size: var(--fs-base);
  }
}

@media screen and (min-width: 1px) and (max-width: 743px) {
  .btn-box-center {
    flex-direction: column;
    width: 100%;
  }

  .btn-box-center-item {
    align-items: center;
    gap: 0;
    width: 100%;

    > .button {
      width: 60%;
      margin-bottom: 1rem;
    }
  }

  .btn-contact-name {
    font-size: calc(var(--fs-lg) - 1px);
    margin-bottom: 0.5rem;
  }

  .btn-note {
    text-align: center;

    > span {
      font-size: var(--fs-lg);
    }
  }
}
