/* 目次に太いライン */
.entry-content .table-of-contents {
    position: relative;
    margin: 0;
    padding: 1em 1.2em 1em;
    background: #f9f9f9; /* 背景色を薄いグレーに変更 */
    font-size: 100%;
    border-top: solid 40px #E6D1A3;
    border-right: solid 3px #E6D1A3;
    border-bottom: solid 3px #E6D1A3;
    border-left: solid 3px #E6D1A3;
    border-radius: 4px;
    max-width: 300px;
    width: 90%;
}

/* 目次の左寄せ位置を調整 */
.wrapper .entry-content .table-of-contents {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 300px;
}

.entry-content .table-of-contents::before {
    content: "目次";
    position: absolute;
    top: -33px;
    left: 20px;
    margin: 0 0 .8rem;
    padding: 0 0 .4rem;
    color: #fff;
    border: none;
    font-size: 120%;
    background-color: #E6D1A3; /* 目次のタイトル背景色を緑に変更 */
    padding: 5px 10px; /* タイトルのpaddingを調整 */
    border-radius: 3px; /* タイトルの角を丸くする */
}

.entry-content .table-of-contents li {
    margin: .2em 0 1em 1em;
    list-style-type: decimal;
    line-height: 1.6em;
}

.entry-content .table-of-contents li ul {
    margin: 0 0 1em .5em;
    padding: 0;
}

.entry-content .table-of-contents li ul li {
    margin: .2em 0 0 1em;
    list-style-type: disc;
}

.entry-content .table-of-contents li ul li ul li a {
    line-height: 1.6em;
    color: #454545; /* リンク色をグレーに変更 */
}

.entry-content .table-of-contents a {
    color: #454545;
    text-decoration: underline;
}

/* スマホ表示などで横幅を調整 */
@media (max-width: 480px) {
    .entry-content .table-
}

/* リンク押下しスクロール時ヘッダー分のズレを調整 */

html {
  scroll-padding-top: 80px; /* ヘッダーの高さに合わせて調整 */
}

/* または既存のスタイルに追加 */
.table-of-contents a {
  display: inline-block;
  /* 既存のスタイル */
}

  /* ページTOPへのリンク */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #333;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s;
  z-index: 1000;
}

#back-to-top:hover {
  opacity: 1;
}

.arrow-up {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  margin-bottom: 5px;
}

#back-to-top span {
  font-size: 12px;
  font-weight: bold;
}