/* 共通スタイル */
* { -webkit-tap-highlight-color: transparent; }
body { font-family: "Noto Sans JP", -apple-system, sans-serif; }

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* スクロールバー */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }

/* コラム本文用装飾 */
.prose-content h2 {
  font-size: 1.15rem;
  font-weight: 900;
  color: #1a5a77;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
  border-left: 4px solid #2AA9D6;
}
.prose-content p { margin-bottom: 0.75rem; }
.prose-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 0.75rem; }
.prose-content li { margin-bottom: 0.25rem; }

/* フェードイン */
.job-card { animation: fadeIn 0.3s ease-in; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
