@charset "UTF-8";
@media screen and (max-width: 767px) {
  /* 目次全体のコンテナ */
  .custom-toc-mobile {
    position: relative;
    z-index: 9999;
    overflow: hidden;
  }
  /* 「目次」ヘッダー部分 */
  #page-toc-toggle {
    position: fixed;
    right: 0;
    top: 50%;
    width: 84px;
    height: 52px;
    background: #FFBEBA;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    font-size: 14px;
    column-gap: 8px;
    border-radius: 30px 0 0 30px;
    z-index: 0;
  }
  #page-toc-toggle svg {
    width: 20px;
  }
  #page-toc-toggle span {
    color: #fff !important;
  }
  /* リストを包むラッパー（初期は非表示） */
  #page-toc-content {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70vh;
    padding-bottom: 80px;
    background-color: #fff;
    z-index: 1;
    overflow: scroll;
    pointer-events: none;
    opacity: 0;
    transform: translateY(400px);
    transition: all 0.2s ease-out;
    border-radius: 20px 20px 0 0;
  }
  #page-toc-content.is-open {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
  }
  /* 見出し */
  .page-toc-header {
    position: sticky;
    top: 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    height: 58px;
    padding-inline: 20px;
    color: #FF9FA8;
    font-size: 20px;
    column-gap: 12px;
    border-bottom: 1px solid #FFD1D4;
  }
  .page-toc-header svg path {
    stroke: #FF9FA8;
  }
  /* リスト本体 */
  #page-toc-list {
    list-style: none;
    padding: 0 40px;
    margin: 0;
  }
  /* 各項目（h2/h3共通） */
  .toc-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f9f9f9;
    cursor: pointer;
    font-size: 15px;
    color: #6A6A6A;
    min-height: 46px;
    margin-top: 7px;
  }
  .toc-item:last-child {
    border-bottom: none;
  }
  /* H2 */
  .toc-item:not(.is-h3) {
    font-weight: bold;
  }
  /* H3 */
  .toc-item.is-h3 {
    margin-left: 15px;
    font-size: 14px;
  }
  /* 閉じるボタン */
  #page-toc-close {
    display: none;
    position: fixed;
    right: 27px;
    bottom: 27px;
    width: 43px;
    height: 43px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    background: #FFBEBA;
    border-radius: 50%;
    z-index: 2;
  }
  #page-toc-close.is-open {
    display: flex;
  }
  h2, h3 {
    scroll-margin-top: 80px;
  }
}
@media screen and (min-width: 768px) {
  .custom-toc-mobile {
    display: none;
  }
}
