/* 「ようこそ」見出しを非表示 */
.Header__searchTitle {
  display: none !important;
}

/* 説明文を非表示（必要に応じて） */
.Header__description {
  display: none !important;
}

/* バナー背景画像を無効化（背景色は任意） */
#headerContent.Header__searchSection {
  background: none !important;        /* background-image を含めてリセット */
  background-color: #ffffff !important;/* 白にしたい場合。任意の色に変更可 */
}
``
/* ① バナーの背景画像だけをオフ（白に） */
#headerContent.Header__searchSection {
  background-image: none !important;
  background: none !important;         /* 念のため */
  background-color: #ffffff !important; /* 白背景 */
}

/* ② 検索入力の「黒いふち」を明示。背景は白のまま */
#headerContent.Header__searchSection input[type="search"],
#headerContent.Header__searchSection input[type="text"],
#headerContent .Header__container input[type="search"],
#headerContent .Header__container input[type="text"] {
  border: 1px solid #000 !important;   /* 黒い枠線 */
  background-color: #fff !important;   /* 背景を白で固定（透明化対策） */
  color: #333;
  border-radius: 4px;                   /* 角丸不要なら 0 に */
  box-shadow: none !important;          /* テーマの影を打ち消す */
  outline: none;
  height: 38px;                         /* ボタンと高さを合わせやすく */
  padding: 0 12px;
}

/* ③ フォーカス時も黒を維持（視認性を少し追加） */
#headerContent.Header__searchSection input[type="search"]:focus,
#headerContent.Header__searchSection input[type="text"]:focus,
#headerContent .Header__container input[type="search"]:focus,
#headerContent .Header__container input[type="text"]:focus {
  border-color: #000 !important;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.08);
}

/* ④ 検索ボタンの高さを揃える（必要なら） */
#headerContent.Header__searchSection button,
#headerContent .Header__container button {
  height: 38px;
  line-height: 38px;
}

.My_Overdue_Tickets,.Team_Overdue_Tickets,.CC_d_Overdue_Tickets {
  display:none;
}
