/* ============================================================
   Favicon Works 紹介ページ専用スタイル
   元: src/tools/favicon-works/index.njk と同じパターン (2026-05-21)
   レイアウト系の `--bg` `--ink` 等の変数は layout-page.njk が定義済み
   ============================================================ */

.th-tool-hero {
  text-align: center;
  margin-bottom: 30px;
}
.th-tool-figure {
  margin: 24px 0;
}
.th-tool-figure img {
  width: 100%;
  border: 1px solid var(--line);
}
.th-tool-figure figcaption {
  font-size: 0.82rem;
  color: var(--ink3);
  text-align: center;
  margin-top: 8px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: 0.04em;
}

/* CTA */
.th-cta {
  margin: 30px 0 40px;
  padding: 36px 28px;
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-warm) 100%);
  border: 1px solid var(--line);
  text-align: center;
  position: relative;
}
.th-cta__lead {
  font-size: 0.95rem;
  color: var(--ink);
  margin: 0 0 22px;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.th-cta__btn,
a.th-cta__btn,
.th-cta__btn:link,
.th-cta__btn:visited {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 22px 56px;
  background: var(--accent);
  color: #fff8ec;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  border: none;
  box-shadow: 0 10px 28px rgba(200,84,30,0.35),
              0 0 0 0 rgba(200,84,30,0.45);
  animation: thCtaPulse 2.4s ease-in-out infinite;
  font-family: -apple-system, "Segoe UI", "Yu Gothic UI", sans-serif;
}
.th-cta__btn::before {
  content: "▶";
  font-size: 0.78em;
  display: inline-block;
  transform: translateY(-1px);
}
.th-cta__btn:hover {
  background: #b04a18;
  color: #fff8ec;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(200,84,30,0.5);
  border-bottom: none;
  animation: none;
}
.th-cta__note {
  margin: 16px 0 0;
  font-size: 0.8rem;
  color: var(--ink3);
}
@keyframes thCtaPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(200,84,30,0.35), 0 0 0 0 rgba(200,84,30,0.45); }
  50%      { box-shadow: 0 10px 28px rgba(200,84,30,0.35), 0 0 0 14px rgba(200,84,30,0); }
}
@media (max-width: 768px) {
  .th-cta__btn {
    padding: 18px 36px;
    font-size: 0.98rem;
    letter-spacing: 0.12em;
  }
}

/* 使い方ヒント */
.th-usage-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}
.th-usage-item {
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
  padding: 16px 22px;
}
.th-usage-item__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
  padding: 0;
  border: none;
}
.th-usage-item__text {
  color: var(--ink2);
  font-size: 0.92rem;
  line-height: 1.75;
  margin: 0;
}
