﻿@charset "utf-8";

.maru-num {
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	line-height: 1.5em;
	border: 1px solid #333;
	border-radius: 50%;
	text-align: center;
	font-weight: bold;
}

#toc {
	width: 100%;
	max-width: 600px;background: #f9f9f9;
	border: 1px solid #ccc;
	padding: 10px;
	border-radius: 8px;
}

.toc-title {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 8px;
  color: #ff6600;  /* オレンジ系で目立たせる */
}

/* 目次タイトル */
#toc h2 {
	margin-top: 0;
	font-size: 1.2em;
	border-bottom: 1px solid #ccc;
	padding-bottom: 5px;
}

/* リスト全体 */
#toc ul {
	list-style: none;         /* デフォルトの点を消す */
	padding-left: 0;
	margin: 10px 0 0 0;
}

/* 大見出し */
#toc > ul > li {
	margin: 8px 0;
	font-weight: bold;
}

/* 小見出し（入れ子） */
#toc ul ul li {
	margin: 5px 0 5px 20px;  /* インデント */
	font-weight: normal;
	font-size: 0.95em;
}

/* リンクスタイル */
#toc a {
	text-decoration: none;
	color: #333;
	transition: color 0.2s;
}

/* ホバー時の色変化 */
#toc a:hover {
	color: #007BFF;
}

/* スムーズスクロール */
html {
	scroll-behavior: smooth;
}