.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;
}

