/* 「はじめての板芸」シリーズ専用スタイル
   手芸本・料理本のような作り方記事の見た目にするための追加クラス。
   style.css の共通クラスに影響しないよう、このシリーズだけで読み込む。 */

.hangei-greeting {
  font-size: 1.15rem;
  color: var(--color-text-muted, #64748b);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed var(--color-border, #e2e0dc);
}

.hangei-toc {
  background: #f8f7f4;
  border: 1px solid var(--color-border, #e2e0dc);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0 3rem;
}
.hangei-toc__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.9rem;
  color: var(--color-text, #1e293b);
}
.hangei-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: hangei-toc-counter;
}
.hangei-toc__list li {
  counter-increment: hangei-toc-counter;
  margin-bottom: 0.6rem;
  padding-left: 1.9rem;
  position: relative;
}
.hangei-toc__list li::before {
  content: counter(hangei-toc-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--color-accent, #6b5344);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hangei-toc__list a {
  text-decoration: none;
}
.hangei-toc__list a:hover {
  text-decoration: underline;
}

.hangei-materials {
  background: #fdfcfa;
  border: 1px solid var(--color-border, #e2e0dc);
  border-left: 4px solid var(--color-accent, #6b5344);
  border-radius: 4px;
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
}
.hangei-materials__title {
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}
.hangei-materials ul {
  margin: 0 0 0 0.2rem;
  list-style: none;
}
.hangei-materials li {
  margin-bottom: 0.5rem;
  padding-left: 1.6rem;
  position: relative;
}
.hangei-materials li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.9rem;
  height: 0.9rem;
  border: 2px solid var(--color-accent, #6b5344);
  border-radius: 3px;
}

.hangei-next {
  margin-top: 3rem;
  padding: 1.5rem 1.75rem;
  background: #f8f7f4;
  border-radius: 8px;
  text-align: center;
}
.hangei-next__label {
  font-size: 0.85rem;
  color: var(--color-text-muted, #64748b);
  margin-bottom: 0.3rem;
}
