body { font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif; }

.why-card { position: relative; }
.why-card::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: -0.75rem;
  height: 0.75rem;
  width: 2px;
  background: #93c5fd;
}
.why-card:first-child::before { display: none; }

textarea { resize: vertical; }

@media print {
  .no-print { display: none !important; }
  body { background: white !important; }
  .print-area { box-shadow: none !important; }
}

.spinner {
  border: 3px solid #dbeafe;
  border-top-color: #2563eb;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
