.used-pc-redirect-txt{
  color: #041C50;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 20px;
  padding: 20px 40px;
  text-align: center;
}

.external-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 48px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #c6000f;
  border-radius: 32px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.external-link-btn:hover {
  background-color: #c6404a;
}

.external-link-btn:active {
  transform: scale(0.98);
}

.external-link-note {
  color: #041C50;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  margin: 12px 0 40px;
}

/* スマホ幅で全幅に */
@media (max-width: 480px) {
  .external-link-btn {
    width: 85%;
    justify-content: center;
    padding:16px 0;
  }
  .external-link-note{
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}