/* ------------------------------
   ベーススタイル
------------------------------ */
:root {
  --bg: #f7f7f9;
  --text: #222;
  --text-light: #555;
  --border: #e5e7eb;
  --accent: #2563eb;
  --radius: 12px;
  --card-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  line-height: 1.6;
}

/* ------------------------------
   アクセシビリティ
------------------------------ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ------------------------------
   ヘッダー
------------------------------ */
.site-header {
  background: var(--accent);
  color: #fff;
  padding: 20px 16px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-title {
  font-size: 24px; /* 18px → 20px → 24px に拡大 */
  font-weight: 600;
  margin: 0;
}

.site-tagline {
  margin: 4px 0 0;
  font-size: 13px;
  opacity: 0.9;
}

/* ------------------------------
   メイン
------------------------------ */
.site-main {
  max-width: 720px;
  padding: 20px 16px;
  margin: 0 auto;
}

.section-title {
  font-size: 20px;
  margin: 32px 0 12px;
  font-weight: 600;
}

/* ------------------------------
   カード
------------------------------ */
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  margin-bottom: 16px;
}

.card--accent {
  border-left: 6px solid var(--accent);
}

/* カテゴリ見出しカード */
.card--category h3 {
  font-size: 18px; /* 16 → 18 */
  margin: 0 0 6px;
  font-weight: 600;
}

.category-desc {
  margin: 0;
  font-size: 14px;
  color: var(--text-light);
}

/* ------------------------------
   ノート・強調
------------------------------ */
.lead {
  font-size: 15px;
}

.note {
  font-size: 14px;
  color: var(--text-light);
}

/* ------------------------------
   ツール一覧グリッド
------------------------------ */
.tool-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.tool-card {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--card-shadow);
  transition: background 0.2s;
}

.tool-card:hover {
  background: #f0f4ff;
}

.tool-card-body {
  width: calc(100% - 48px);
}

.tool-title {
  margin: 0 0 6px;
  font-size: 15px; /* 14 → 15 */
  font-weight: 600;
}

.tool-desc {
  margin: 0;
  font-size: 13px;
  color: var(--text-light);
}

/* PC 専用カードの見た目強調（任意で追加） */
.tool-card--pc {
  border-left: 6px solid #ff6b6b;
}

/* 「開く」ラベル */
.tool-link-label {
  align-self: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

/* ------------------------------
   ボタン
------------------------------ */
.btn {
  display: inline-block;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* ------------------------------
   プライバシーセクション調整
------------------------------ */
#section-privacy {
  margin-top: 40px; /* カード間隔を広げる改善 */
}

/* ------------------------------
   フッター
------------------------------ */
.site-footer {
  margin-top: 40px;
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  padding-bottom: 24px;
}
