/**
 * note便利ツール集 共通デザイントークン
 * 白/生成り背景・深緑・やわらかいオレンジ・スマホ優先・余白多め・サイバー感なし。
 * 各ツールはこのファイルを読み込むか、同じ変数値をコピーして使う。
 * 第1号（profile/）は既存の style.css を単独で持つため、このファイルには依存していない。
 */
:root {
  --nt-bg: #faf6ee;
  --nt-surface: #ffffff;
  --nt-ink: #2a2a24;
  --nt-ink-soft: #6b6a5f;
  --nt-green: #234d3a;
  --nt-green-dark: #163529;
  --nt-orange: #f0a75c;
  --nt-orange-dark: #d98a3d;
  --nt-border: #e6ded0;
  --nt-radius: 16px;
  --nt-max-w: 560px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--nt-bg);
  color: var(--nt-ink);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  -webkit-tap-highlight-color: transparent;
}

a { color: inherit; }

.nt-shell {
  max-width: var(--nt-max-w);
  margin: 0 auto;
  min-height: 100vh;
  padding: 0 20px 24px;
}

.nt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 16px 22px;
  min-height: 52px;
  font-family: inherit;
  text-decoration: none;
}

.nt-btn-primary {
  background: var(--nt-green);
  color: #fff;
}

.nt-btn-primary:hover { background: var(--nt-green-dark); }

.nt-card {
  background: var(--nt-surface);
  border: 2px solid var(--nt-border);
  border-radius: var(--nt-radius);
  padding: 20px;
}

/* ---- トップページ（一覧）専用 ---- */
.nt-header {
  padding: 28px 0 8px;
  text-align: center;
}

.nt-header h1 {
  font-size: 24px;
  color: var(--nt-green-dark);
  margin: 0 0 10px;
}

.nt-header p {
  font-size: 15px;
  color: var(--nt-ink-soft);
  line-height: 1.8;
  margin: 0;
}

.nt-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.nt-tool-card h2 {
  font-size: 18px;
  color: var(--nt-green-dark);
  margin: 0 0 8px;
}

.nt-tool-card p {
  font-size: 14px;
  color: var(--nt-ink);
  line-height: 1.8;
  margin: 0 0 14px;
}

.nt-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.nt-badge-ready {
  background: #eef5f0;
  color: var(--nt-green-dark);
}

.nt-badge-soon {
  background: #f2efe6;
  color: var(--nt-ink-soft);
}

.nt-tool-card.nt-soon {
  opacity: 0.7;
}

.nt-footer {
  text-align: center;
  padding: 24px 0 8px;
  font-size: 11px;
  color: #a19f92;
  line-height: 1.6;
}
