/* Training / 講座LP — extends nomura-veco.css (DESIGN.md準拠 · Noto Sans統一) */

/* Hero extensions (hero-dark 内) */
.hero-dark .hero-meta {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-bottom: 32px; padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-dark .hero-meta .v { font-size: 20px; font-weight: 900; }
.hero-dark .hero-meta .l { font-size: 11px; opacity: 0.7; }
.hero-dark .hero-note { font-size: 12px; opacity: 0.7; margin-top: 14px; max-width: 560px; }

/* 研修カタログ cards */
.catalog-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 28px;
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  box-shadow: var(--shadow);
}
.catalog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-color: var(--line);
}
.catalog-card h3 {
  font-size: 17px; font-weight: 900; color: var(--accent);
  margin-bottom: 10px; line-height: 1.45;
}
.catalog-card p { font-size: 14px; color: var(--muted); flex: 1; }
.catalog-card .meta,
.meta { font-size: 12px; color: var(--muted); margin: 16px 0; }
.btn-link {
  display: inline-block; margin-top: 8px;
  color: var(--cta); font-weight: 700; font-size: 14px;
}
.tag-pill,
.tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em; padding: 4px 12px; border-radius: 999px;
  margin-bottom: 12px; width: fit-content;
}
.tag-mfg { background: rgba(27, 42, 74, 0.08); color: var(--accent); }
.tag-general { background: rgba(58, 125, 92, 0.12); color: var(--green); }
.tag-sharoushi { background: rgba(94, 42, 86, 0.1); color: var(--accent-2); }

/* Empathy / problem */
.empathy-box {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 32px;
  box-shadow: var(--shadow);
}
.empathy-box p { font-size: 15px; margin-bottom: 14px; color: var(--ink-2); }
.empathy-box p:last-child { margin-bottom: 0; }
.empathy-box .quote {
  font-weight: 700; color: var(--accent);
  border-left: 4px solid var(--gold);
  padding-left: 16px; margin: 20px 0;
}

/* Split now / later */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.split-box { border-radius: var(--radius-sm); padding: 24px; border: 1px solid var(--line-soft); }
.split-box h3 { font-size: 15px; margin-bottom: 12px; font-weight: 900; color: var(--accent); }
.split-box.now { background: rgba(58, 125, 92, 0.08); border-color: rgba(58, 125, 92, 0.25); }
.split-box.now h3 { color: var(--green); }
.split-box.later { background: var(--surface2); }
.split-box ul { padding-left: 18px; font-size: 14px; color: var(--ink-2); }
.split-box li { margin-bottom: 6px; }

/* Tabs + program cards (ai-3tools) */
.tab-nav {
  display: flex; gap: 0; border-bottom: 2px solid var(--line-soft);
  margin-bottom: 36px; overflow-x: auto;
}
.tab-btn {
  flex: 1; min-width: 140px; padding: 16px 20px; background: none; border: none;
  font-family: var(--f-ui); font-size: 14px; font-weight: 700; color: var(--muted);
  cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: color 0.2s; white-space: nowrap;
}
.tab-btn:hover { color: var(--accent); }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--cta); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.train-card {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm); padding: 24px;
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--shadow);
}
.train-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.train-card h3 { font-size: 16px; font-weight: 700; color: var(--accent); margin-bottom: 10px; line-height: 1.45; }
.train-card p { font-size: 13px; color: var(--muted); flex: 1; line-height: 1.7; }
.train-card .more { font-size: 12px; color: var(--cta); font-weight: 700; margin-top: 14px; }
.tag-day1 { background: rgba(58, 125, 92, 0.12); color: var(--green); }
.tag-day2 { background: rgba(27, 42, 74, 0.08); color: var(--accent); }
.tag-both { background: var(--gold-dim); color: var(--gold); }
.tag-who { background: var(--surface2); color: var(--accent); }
.tag-format { background: rgba(208, 74, 66, 0.08); color: var(--cta); }
.tools-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin: 32px 0; }
.tool-badge {
  padding: 10px 24px; border-radius: 999px; font-weight: 700; font-size: 14px; border: 2px solid;
}
.tool-badge.chatgpt { border-color: var(--green); color: var(--green); background: rgba(58, 125, 92, 0.08); }
.tool-badge.gemini { border-color: var(--accent); color: var(--accent); background: rgba(27, 42, 74, 0.06); }
.tool-badge.nlm { border-color: var(--cta); color: var(--cta); background: rgba(208, 74, 66, 0.06); }

/* Timeline */
.timeline { max-width: 800px; }
.tl-item { display: flex; gap: 24px; margin-bottom: 28px; }
.tl-day, .tl-time {
  flex: 0 0 80px; font-size: 13px; font-weight: 900; color: var(--cta);
  padding-top: 4px; text-align: right;
}
.tl-body {
  flex: 1; border-left: 3px solid var(--line-soft); padding-left: 24px; position: relative;
}
.tl-body::before {
  content: ''; position: absolute; left: -8px; top: 8px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--accent); border: 2px solid var(--surface);
  box-shadow: 0 0 0 2px var(--line-soft);
}
.tl-body h4 { font-size: 16px; color: var(--accent); margin-bottom: 6px; font-weight: 900; }
.tl-body p, .tl-body ul { font-size: 14px; color: var(--muted); }
.tl-body ul { margin-top: 8px; padding-left: 18px; }
.tl-body li { margin-bottom: 4px; }

/* Deliverables / price (training) */
.deliver-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px;
}
.deliver-item {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm); padding: 20px;
  display: flex; gap: 14px; align-items: flex-start;
}
.deliver-item strong { display: block; color: var(--accent); margin-bottom: 4px; font-size: 14px; }
.deliver-item span { font-size: 13px; color: var(--muted); }
.deliver-num {
  flex: 0 0 32px; height: 32px; background: var(--accent); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900;
}
.price-table {
  width: 100%; border-collapse: collapse; background: var(--surface);
  border: 1px solid var(--line-soft); border-radius: var(--radius-sm); overflow: hidden;
}
.price-table th, .price-table td {
  padding: 16px 20px; text-align: left; font-size: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.price-table th { background: var(--accent); color: #fff; font-weight: 700; }
.price-table td.price { text-align: right; font-weight: 900; font-size: 16px; color: var(--accent); white-space: nowrap; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr.rec td { background: var(--gold-dim); }
.price-table tr.rec td:first-child::before { content: '★ '; color: var(--cta); }
.price-note { font-size: 13px; color: var(--muted); margin-top: 16px; }

@media print {
  header, .tab-nav, .cta-band { display: none; }
  .tab-panel { display: block !important; }
}

/* Hero gradient variants */
.hero-bg-sharoushi { background: linear-gradient(135deg, var(--accent-2) 0%, #4a2044 100%); }

/* Content box */
.content-box {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm); padding: 28px; max-width: 720px;
  box-shadow: var(--shadow);
}
.content-box p { font-size: 15px; margin-bottom: 12px; color: var(--ink-2); }
.content-box p:last-child { margin-bottom: 0; }

.ref-note { font-size: 13px; color: var(--muted); margin-top: 20px; }
.ref-note a { color: var(--accent); text-decoration: underline; }

@media (max-width: 640px) {
  .split-grid { grid-template-columns: 1fr; }
  .tl-item { flex-direction: column; gap: 8px; }
  .tl-day, .tl-time { text-align: left; }
  .tab-btn { font-size: 12px; padding: 14px 12px; min-width: 110px; }
}
