/*デフォルトは非表示のお知らせ表示*/
/* 表示「block」、非表示「none」 */
.alert-text {
  display: none;
}
/* テキスト入力 */
.alert-text::after {
  content: "アラートメッセージ表示。書き換え可能です。";
}

/* ヘッダーの背景と下線 */
header {
  width: 100%;
  background-color: #f9e9e9;
  border-bottom: solid 7px #e6000d;
}

/* メインタイトル「個体識別番号・ロット番号検索」の左線 */
.main-title {
  border-left: solid 7px #e6000d;
}

/* タグの外枠と幅指定 */
.imgTag {
  border: solid 1px black;
  border-radius: 5px;
  width: 100%;
}

/* タイトル内アンダーバー（黄色） */
h2 span {
  /* yellowを他の色に変更 */
  background: linear-gradient(transparent 70%, yellow 70%);
}
