@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.0.0
*/

/* =========================================================
   00. カラー設計（引き継ぎしやすいよう変数化）
   - KEY:      サイトの主役色（ボタン/見出し/アクセント）
   - KEY_DARK: ホバー/強調
   - KEY_SOFT: 淡い背景（ゼブラ/バナー）
   - KEY_HOV:  テーブルやカードのホバー
   ========================================================= */
:root{
  --key:      #00BC8B;
  --key-dark: #009B72;
  --key-soft: #E6FAF4;
  --key-hov:  #CCF4E8;

  --text:     #222222;
  --text-sub: #444444;
  --muted:    #666666;
  --line:     #E0E0E0;
  --bg-soft:  #F7F7F7;
}

/* =========================================================
   01. Webフォント
   - @import はできるだけ上部にまとめる（後から探しやすい）
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Gothic&display=swap');

/* =========================================================
   02. レスポンシブ（必要になったらここに追記）
   ========================================================= */
/* 1023px以下 */
@media screen and (max-width: 1023px){
  /* TODO: 必要なら追記 */
}

/* 834px以下 */
@media screen and (max-width: 834px){
  /* TODO: 必要なら追記 */
}

/* 480px以下 */
@media screen and (max-width: 480px){
  /* TODO: 必要なら追記 */
}

/* =========================================================
   03. ヘッダー／メニュー
   ========================================================= */

/* メニュー同士の間隔 */
#navi .navi-in > ul > li > a {
  padding: 0 0.5em;
}

.menu-header.menu-pc > li:first-child {
  border-left: none;
}

/* モバイルメニュー：ボタンを右寄せ */
.navi-menu-button.menu-button {
  margin-left: auto; /* 右寄せ */
  order: 2;          /* 表示順 */
}

.mobile-menu-buttons {
  justify-content: flex-end; /* ボタンを右寄せ */
}

/* スマホのヘッダーロゴ（サイト名）を左寄せ */
.mobile-menu-buttons .menu-button.logo-menu-button {
  justify-content: flex-start;
  text-align: left;
}

/* サイト名フォント（PC／スマホ共通） */
.site-name-text,
.logo-menu-button .menu-button-in {
  font-family: 'Sawarabi Gothic', 'Noto Sans JP', sans-serif;
}

/* スマホ：サイト名の位置と太さ調整 */
.logo-menu-button .menu-button-in {
  text-align: left;
  padding-left: 15px;
  font-weight: 400; /* 300～500で好みの細さに */
}

/* スライドインメニュー：右から出す */
.navi-menu-content {
  left: auto;
  right: 0;
  transform: translateX(105%);
  transition: transform 0.3s ease-in;
  background-color: rgb(240, 240, 240); /* 透過にしたい場合はrgbaに */
}

/* スライドインメニュー：開いたとき */
#navi-menu-input:checked ~ .navi-menu-content {
  transform: translateX(0);
  transition: transform 0.3s ease-out;
}

/* ドロワーメニュー：リンク見た目 */
.menu-drawer a {
  color: #333333;
  font-size: 1.1em;
  height: 3em;
}

.menu-drawer a:hover {
  color: rgba(255, 255, 255, 0.7);
  background-color: rgba(30, 124, 209, 0);
}

/* ドロワーメニュー項目：インデント＆文字サイズ */
.menu-drawer .menu-item a {
  padding-left: 28px !important;
  font-size: 14px !important;
}

/* =========================================================
   04. アピールエリア
   ========================================================= */

/* PC：アピールエリア高さ（比率指定） */
#appeal {
  height: calc(100vw * (800 / 1920));
}

/* スマホ：アピールエリア高さ */
@media (max-width: 767px){
  #appeal {
    height: 100vw;
  }
}

/* =========================================================
   05. パスワード画面（独自フォーム）
   ========================================================= */

.yayoicho-password-form {
  width: 100%;
  max-width: 360px;
  margin: 20px 0;
  display: flex;
  flex-direction: row; /* 常に横並び */
  gap: 8px;
}

/* 入力 */
.yayoicho-password-form input[type="password"] {
  flex: 1;
  max-width: 230px;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

/* ボタン */
.yayoicho-password-form button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  background-color: #333333;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.yayoicho-password-form button:hover {
  background-color: #707070;
}

/* 480px以下：幅だけ広げる（横並びは維持） */
@media (max-width: 480px) {
  .yayoicho-password-form {
    max-width: 100%;
  }
}

/* =========================================================
   06. 町会だより一覧：PDF一覧
   ========================================================= */

.newsletter-pdf-list {
  list-style: none;
  padding: 0 !important;
  margin: 0 0 24px !important;
  /* max-width: 640px; */
}

.newsletter-pdf-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0 !important;
  margin-left: 0 !important;
  border-bottom: 1px solid var(--line);
}

.pdf-icon {
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

.pdf-title {
  flex: 1;
  font-size: 15px;
  color: var(--text);
}

/* PDFボタン（キー色） */
.pdf-btn {
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background-color: var(--key);
  color: #fff !important;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  text-align: center;
  white-space: nowrap;
  min-width: 110px;
}

.pdf-btn small {
  font-size: 11px;
  font-weight: 400;
  margin-top: 2px;
}

.pdf-btn:hover {
  background-color: var(--key-dark);
}

/* 号ごとの見出し */
h2.newsletter-issue-title {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 0 6px 0 !important;

  border-bottom: 2px solid #00BC8B !important;
  font-size: 16px !important;
  /* max-width: 640px; */
}

/* スマホ */
@media (max-width: 480px) {
  .pdf-title {
    font-size: 13px;
  }
  .pdf-btn {
    font-size: 12px;
    padding: 6px 16px;
    min-width: 90px;
  }
}

/* =========================================================
   07. イベントカレンダー
   ========================================================= */

.event-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  margin-top: 16px;
}

.event-table th,
.event-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.event-table thead th {
  background-color: var(--key);
  color: #fff;
  font-weight: 600;
}

/* ゼブラ：淡いキー色 */
.event-table tbody tr:nth-child(even) {
  background-color: var(--key-soft);
}

/* ホバー：さらに少し濃い淡色 */
.event-table tbody tr:hover {
  background-color: var(--key-hov);
  transition: background-color 0.2s ease;
}

/* 列幅の目安 */
.event-table .col-date      { width: 120px; white-space: nowrap; }
.event-table .col-name      { width: auto; }
.event-table .col-place     { width: 160px; }
.event-table .col-organizer { width: 100px; }

/* 行見出し（th） */
.event-table tbody th {
  background-color: var(--key);
  color: #ffffff;
  font-weight: 600;
}

/* 主催バッジ */
.org-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.org-yayoi { background-color: var(--key); }
.org-other { background-color: #D0A900; } /* その他：視認性優先で継続 */

/* =========================================================
   08. ボタン（ブロックボタン）
   ========================================================= */

.wp-block-button__link {
  background-color: var(--key);
  color: #ffffff !important;
  border: 2px solid var(--key);
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.wp-block-button__link:hover {
  background-color: transparent !important;
  color: var(--key) !important;
  border-color: var(--key);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  text-decoration: none;
}

/* =========================================================
   Cocoonボタン：矢印つき（.btn-arrow）
   - 通常：アウトライン
   - hover：べた塗り＋白文字
   - 矢印：大きめに右へスライド
   ========================================================= */

/* 通常時（ホバーしていない状態）の見た目 */
.btn-arrow a.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 32px !important;

  /* 右側に矢印を置くための余白 */
  padding-right: 54px !important;

  /* 枠線を細く */
  border-width: 1px !important;

  /* 色（キー色は var(--key) があればそれを使用） */
  background-color: #ffffff !important;
  color: var(--key, #00bc8b) !important;
  border-color: var(--key, #00bc8b) !important;

  /* 影・浮き上がりを完全に無効化 */
  box-shadow: none !important;
  transform: none !important;

  /* 変化は色だけ（シンプルに） */
  transition: background-color 0.18s ease, color 0.18s ease;
}

/* 矢印の横線（::before） */
.btn-arrow a.btn::before {
  background-color: var(--key, #00bc8b);
  position: absolute;
  top: 50%;
  right: 18px;
  width: 12px;
  height: 1px;
  margin-top: 0px;
  content: "";
  transition: right 0.18s ease, background-color 0.18s ease;
}

/* 矢印の山形（::after） */
.btn-arrow a.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 7px;
  height: 7px;
  margin-top: -4px;
  transform: rotate(45deg);
  border-top: 1px solid var(--key, #00bc8b);
  border-right: 1px solid var(--key, #00bc8b);
  display: inline-block;
  transition: right 0.18s ease, border-color 0.18s ease;
}

/* ホバー時：べた塗り＋白文字（影・浮きはなし） */
.btn-arrow a.btn:hover {
  background-color: var(--key, #00bc8b) !important;
  color: #ffffff !important;
  border-color: var(--key, #00bc8b) !important;

  /* 念のためホバー時も無効化 */
  box-shadow: none !important;
  transform: none !important;
}

/* ホバー時：矢印を右に動かす */
.btn-arrow a.btn:hover::before,
.btn-arrow a.btn:hover::after {
  right: 12px;
}

/* ホバー時：矢印を白に */
.btn-arrow a.btn:hover::before {
  background-color: #ffffff;
}

.btn-arrow a.btn:hover::after {
  border-color: #ffffff;
}

/* PC：50%指定を無効化して、自然な幅＋上限にする */
@media (min-width: 768px) {
  .btn-arrow a.btn {
    padding-left: 40px !important;
    padding-right: 72px !important;
  }
}

/* =========================================================
   09. FAQ
   ========================================================= */

.faq-category {
  font-size: 17px;
  font-weight: bold;
  color: var(--key);
  border-bottom: 2px solid var(--key);
  padding-bottom: 6px;
  margin: 40px 0 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  display: block !important; /* Cocoonのflex干渉をリセット */
  flex-direction: unset !important;
}

.faq-item .faq-q,
.faq-item .faq-a {
  display: grid !important;
  grid-template-columns: 36px 1fr !important;
  align-items: start !important;
  gap: 0 8px !important;
  width: 100% !important;
  flex-direction: unset !important;
}

.faq-item .faq-q { margin-bottom: 8px; }

.faq-item .faq-badge {
  grid-column: 1 !important;
  padding-top: 2px;
  display: block !important;
}

.faq-badge-q,
.faq-badge-a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
}

.faq-badge-q { background-color: var(--key); color: #fff; }
.faq-badge-a { background-color: var(--key-soft); color: var(--key-dark); }

.faq-item .faq-text {
  grid-column: 2 !important;
  font-size: 14px !important;
  line-height: 1.8;
  color: var(--text-sub);
  display: block !important;
  width: auto !important;
}

.faq-item .faq-q .faq-text {
  font-weight: bold;
  font-size: 16px !important;
  color: var(--text);
}

.cta-banner {
  margin-top: 48px;
  padding: 24px 28px 10px;
  background-color: var(--key-soft);
  border-radius: 6px;
  display: block !important;
}

.cta-banner p { margin: 0 0 12px; }

.cta-title {
  font-weight: bold;
  font-size: 16px;
  color: var(--key);
}

/* =========================================================
   10. ドロワー内：検索フォーム
   ========================================================= */

.drawer-search-wrap {
  padding: 12px 0;
  margin: 0 20px 12px; /* 下余白もここで統一 */
  border-bottom: 1px solid var(--line);
}

.drawer-search-wrap form {
  display: flex;
  gap: 6px;
  width: 100%;
}

.drawer-search-wrap input[type="search"] {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  min-width: 0;
}

.drawer-search-wrap input[type="search"]:focus {
  border-color: var(--key);
  box-shadow: 0 0 0 2px rgba(0, 188, 139, 0.2);
}

.drawer-search-wrap button {
  padding: 8px 14px;
  background-color: var(--key);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.drawer-search-wrap button:hover {
  background-color: var(--key-dark);
}

/* =========================================================
   10-2. サイドバー：検索フォーム
   - ドロワー内検索（.drawer-search-wrap）と色使いを統一
   ========================================================= */

/* 入力欄 */
.widget_search .wp-block-search__input {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.widget_search .wp-block-search__input:focus {
  border-color: var(--key);
  box-shadow: 0 0 0 2px rgba(0, 188, 139, 0.2);
}

/* 検索ボタン */
.widget_search .wp-block-search__button {
  padding: 8px 14px;
  background-color: var(--key);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.widget_search .wp-block-search__button:hover {
  background-color: var(--key-dark);
}

/* =========================================================
   11. お知らせ一覧：リスト形式
   ========================================================= */

.news-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: 800px;
}

.news-list-item {
  border-bottom: 1px solid var(--line);
}

.news-list-link {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 14px 8px;
  text-decoration: none !important;
  color: var(--text) !important;
  transition: background-color 0.2s ease;
}

.news-list-link:hover {
  background-color: #F3FBF8; /* キー色に寄せた薄い背景 */
  text-decoration: none !important;
}

.news-date {
  flex-shrink: 0;
  font-size: 14px;
  color: #888;
  white-space: nowrap;
  min-width: 80px;
}

.news-badge {
  flex-shrink: 0;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
  width: 100px;
  text-align: center;
}

/* カテゴリー別カラー（キー色に合わせて微調整）
   - NEWS: キー色
   - 他カテゴリは視認性重視で維持（必要なら後で合わせる）
*/
.cat-news       { background-color: var(--key); color: #fff; }
.cat-newsletter { background-color: #2B7BB8; color: #fff; }
.cat-event      { background-color: #E08A2E; color: #fff; }
.cat-report     { background-color: #8B74C8; color: #fff; }
.cat-default    { background-color: #8E98A3; color: #fff; }

.news-title {
  flex: 1;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .news-list-link {
    display: grid !important;
    grid-template-columns: auto auto 1fr;
    grid-template-rows: auto auto;
    gap: 6px 8px;
    padding: 12px 6px;
  }

  .news-date {
    grid-column: 1;
    grid-row: 1;
    font-size: 13px;
    align-self: center;
  }

  .news-badge {
    grid-column: 2;
    grid-row: 1;
    font-size: 11px;
    width: 100px;
  }

  .news-title {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 14px;
    padding-left: 2px;
  }
}

/* =========================================================
   12. 検索結果ページ
   ========================================================= */

/* 検索結果：アイキャッチ非表示 */
.search-results .entry-card-thumb,
.search-results figure.entry-card-thumb {
  display: none !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.search-results .entry-card {
  display: block !important;
}

/* 検索結果ページ：特定ウィジェット非表示（ウィジェットIDは環境依存） */
.search-results #custom_html-2 {
  display: none !important;
}

/* =========================================================
   13. 見出し（h2 / h3）
   - サイト全体に影響するため、変更時は慎重に
   ========================================================= */

h2 {
  background: none !important;
  border: none !important;
  border-bottom: 2px solid var(--key) !important;
  padding: 0.3em 0 0.4em 0.2em !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--key) !important;
  margin-top: 2em !important;
  margin-bottom: 1em !important;
  letter-spacing: 0.05em !important;
  border-radius: 0 !important;
}

h3 {
  background: none !important;
  border: none !important;
  border-left: 3px solid var(--key) !important;
  padding: 0.2em 0 0.2em 0.7em !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: var(--key) !important;
  margin-top: 1.5em !important;
  margin-bottom: 1.4em !important;
  letter-spacing: 0.04em !important;
  border-radius: 0 !important;
}

/* =========================================================
   14. メタ情報（更新日など）
   ========================================================= */
.entry-meta {
  text-align: right;
}

/* =========================================================
   15. Contact Form 7（CF7）
   - label内包型フォームの見た目調整
   - 送信成功メッセージの非表示
   - Turnstileの余白
   ========================================================= */

.wpcf7 form {
  max-width: 480px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 各項目ブロック間 */
.wpcf7 form p {
  margin: 0 0 1.35em !important;
  padding: 0 !important;
}

/* labelを見出し扱いにする */
.wpcf7 form p > label {
  display: block !important;
  margin: 0 !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}

/* label内の入力欄 */
.wpcf7 form p > label .wpcf7-form-control {
  display: block !important;
  margin-top: 0.45em !important;
}

/* label外に出るラジオ（例：申請種別） */
.wpcf7 form p .wpcf7-radio {
  display: block !important;
  margin-top: 0.45em !important;
}

/* 余計なbrを無効化 */
.wpcf7 form br {
  display: none !important;
}

/* 入力欄：submitは除外して100% */
.wpcf7 input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]),
.wpcf7 textarea,
.wpcf7 select {
  width: 100% !important;
  padding: 10px 14px !important;
  border: 1.5px solid var(--key) !important;
  border-radius: 6px !important;
  background-color: #F9FAF7 !important;
  color: #333 !important;
  font-size: 14px !important;
  box-sizing: border-box !important;
  outline: none !important;
}

/* フォーカスリング（視認性UP） */
.wpcf7 input:not([type="submit"]):focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus{
  border-color: var(--key-dark) !important;
  box-shadow: 0 0 0 2px rgba(0, 188, 139, 0.2);
}

/* ラジオ横並び余白 */
.wpcf7 .wpcf7-radio .wpcf7-list-item {
  margin-right: 1.2em !important;
}

/* 送信ボタン */
.wpcf7 input[type="submit"] {
  width: auto !important;
  min-width: 140px !important;
  padding: 10px 24px !important;
  background-color: transparent !important;
  color: var(--key) !important;
  border: 1.5px solid var(--key) !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  cursor: pointer !important;
  display: inline-block !important;
  margin-top: 0.2em !important;
}

.wpcf7 input[type="submit"]:hover {
  background-color: var(--key) !important;
  color: #fff !important;
}

/* 成功メッセージ：成功時のみ非表示 */
.wpcf7 form.sent .wpcf7-response-output {
  display: none !important;
}

/* Turnstile：下余白 */
.wpcf7 .wpcf7-turnstile,
.wpcf7 .cf-turnstile {
  margin-bottom: 18px !important;
}

/* =========================================================
   16. フッターメニュー（スマホ）：2列 → 縦1列（中央寄せ）
   ========================================================= */
@media (max-width: 480px) {

  #navi-footer .menu-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin: 0 auto;
  }

  #navi-footer .menu-footer > li {
    width: 100% !important;
    max-width: 320px;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    display: block !important;
    line-height: 1.2 !important;
  }

  #navi-footer .menu-footer > li > a {
    display: block;
    text-align: center;
    padding: 5px 12px !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    border-radius: 8px;
    text-decoration: none;
    min-height: 0 !important;
  }
}

/* コピーライトはスマホ全体（767px以下）に適用 */
@media (max-width: 767px) {
  #navi-footer {
    margin-bottom: 0 !important;
  }
  #footer .source-org.copyright {
    margin-top: 24px !important;
    display: block !important;
  }
}

/* =========================================================
   17. 目次（TOC）
   ========================================================= */

#main .entry-content .toc {
  background: var(--key-soft);
  border: none;
  display: block;
  border-top: 4px solid var(--key);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  padding: 20px 25px;
}

/* 目次タイトル */
#main .entry-content .toc .toc-title {
  text-align: left;
  margin: 0 20px 20px -10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--key);
}

/* 目次タイトルのアイコン */
#main .entry-content .toc .toc-title:before {
  top: 0;
  left: -45px;
  width: 50px;
  height: 50px;
  font-family: "Font Awesome 5 Free";
  content: "\f03a";
  font-size: 18px;
  margin-right: 8px;
  color: #fff;
  background-color: var(--key);
  border-radius: 50%;
  padding: 13px;
}

/* 目次リスト */
#main .entry-content .toc .toc-content ol {
  padding: 0 0.5em;
  position: relative;
}

#main .entry-content .toc .toc-content ol li {
  line-height: 1.5;
  padding: 0.7em 0 0.5em 1.4em;
  border-bottom: dashed 1px var(--line);
  list-style-type: none !important;
}

/* 各項目の先頭アイコン */
#main .entry-content .toc .toc-content ol li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  position: absolute;
  left: 0.5em;
  color: var(--key);
  font-weight: bold;
}

#main .entry-content .toc .toc-content ol li:last-of-type {
  border-bottom: none;
}

/* h2：太文字 */
#main .entry-content .toc .toc-content .toc-list li {
  font-weight: 700;
}

/* h3以降：通常ウェイト */
#main .entry-content .toc .toc-content .toc-list li li {
  font-weight: normal;
}
