.LogInDetailsContainer__userDetailLogout {
    display: none;
}
.Icon__plusIcon {
    display: none;
}
.LocalePopup__localePopup {
    display: none;
}

.Header__brandName {
  position: relative;
  visibility: hidden; /* 元のテキストを非表示にしてもDOM上には残す */
}

.Header__brandName::after {
  content: "シンクロヘルプ";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 30px; /* 必要に応じて調整 */
  color: #ffffff;
  visibility: visible; /* 疑似要素の文字は表示 */
  white-space: nowrap;
}

/* フォロー機能全体を非表示 */
.KBArticleRightContainer__userFollowOption {
  display: none !important;
}


/* 目次のテキストを変更する */
.TOCContainer__tocHeading {
  position: relative;
  visibility: hidden; /* 元の「目次」を非表示 */
}

.TOCContainer__tocHeading::after {
  content: "目次"; /* ここに新しいテキストを指定 */
  position: absolute;
  left: 0;
  top: 0;
  visibility: visible; /* 新しいテキストを表示 */
  white-space: nowrap;
  font-size: 18px;
}

/* サイト全体の目次（カテゴリー見出し）のテキストを変更する */
.CategoriesContainer__solutionListHeading {
  position: relative;
  visibility: hidden; /* 元の「目次」を非表示 */
}

.CategoriesContainer__solutionListHeading::after {
  content: "カテゴリーから探す"; /* ここに新しいテキストを指定 */
  position: absolute;
  left: 0;
  top: 0;
  visibility: visible; /* 新しいテキストを表示 */
  white-space: nowrap;
  font-size: 18px;
}  
  
/* 記事のタイトルのフォントサイズを小さくする */
.ArticleHeader__articleDetailHeader {
  font-size: 32px !important; 
}
