.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--azure-46);
  color: var(--white);
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 22.5px;
  padding: 13px 26px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: var(--azure-38);
  box-shadow: 0px 8px 12px rgba(30, 114, 206, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--azure-46);
  color: var(--azure-46);
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 22.5px;
  padding: 15px 28px;
  border-radius: 8px;
  white-space: nowrap;
  background: transparent;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--azure-46);
  color: var(--white);
}
