.relaxia-title-wrapper {
  width: 100%;
  display: block;
  margin: 40px auto 24px auto;
}

.relaxia-title {
  background-color: #d8cfc4; /* ベージュ */
  color: #3d362f; /* 落ち着いたブラウン */
  font-weight: 700;
  font-size: 1.2rem !important; /* ←ここを調整。ちょうど読みやすくてスタイリッシュ */
  line-height: 1.6;
  text-align: center;
  padding: 16px 20px;
  position: relative;
  border-radius: 12px;
  width: 90%;
  max-width: 680px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: block;
}

.relaxia-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #d8cfc4 transparent transparent transparent;
}

/* --- RELAXIA風 高級目次ボックス --- */
#ez-toc-container {
  background-color: #f5f1eb; /* 上品なベージュ背景 */
  border: 1px solid #d6cbbf; /* 優しいベージュボーダー */
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  font-family: "Helvetica Neue", "Yu Gothic", sans-serif;
  margin: 32px 0;
}

/* --- タイトル部分（中央寄せ＋アイコン）--- */
#ez-toc-container .ez-toc-title {
  font-size: 18px;
  font-weight: bold;
  color: #5a4e3c;
  text-align: center !important;
  display: block !important;
  border-bottom: 2px solid #b8a889;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

#ez-toc-container .ez-toc-title::before {
  content: "📘";
  display: inline-block;
  margin-right: 8px;
  font-size: 18px;
}

/* --- 目次リスト --- */
#ez-toc-container ul,
#ez-toc-container ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

#ez-toc-container li {
  padding: 10px 0;
  border-bottom: 1px dotted #cfc6b9;
  font-size: 16px;
  color: #3e3e3e;
}

#ez-toc-container li:last-child {
  border-bottom: none;
}

/* --- リンクスタイル --- */
#ez-toc-container a {
  color: #3e3e3e;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

#ez-toc-container a:hover {
  color: #bc9d6a; /* RELAXIAゴールド系 */
  text-decoration: underline;
}