/* オーバーレイ（常に画面中央） */
.submit-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* スピナー */
.loading-spinner {
  width: 70px;
  height: 70px;
  border: 8px solid #f8cdd3;
  border-top: 8px solid #e9495e; /* 指定カラー */
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
