/* =====================================================
   COMIC AGORA Header Title Style
   - Twenty Twenty-Five 上書き専用
   - 全ページ共通ヘッダ
   ===================================================== */

/* ヘッダ全体の余白（左余白を確保） */
#header {
  padding-left: 24px;
}

/* タイトル本体 */
#headerimg h1 {
  margin: 0;
  padding: 0;
}

/* タイトルリンク */
#headerimg h1 a {
  font-size: 22px !important;   /* ← 指定どおり 22px */
  font-weight: 500;
  color: #000;
  text-decoration: none !important;

  position: relative;
  display: inline-block;

  padding: 6px 0;               /* 文字と線の距離のベース */
}

/* 上下ライン 共通 */
#headerimg h1 a::before,
#headerimg h1 a::after {
  content: "";
  display: block;
  width: 100%;                  /* 文字幅ぴったり */
  height: 1px;
  background-color: #999;
}

/* 上ライン */
#headerimg h1 a::before {
  margin-bottom: 6px;           /* ← 詰めすぎず離れすぎない */
}

/* 下ライン */
#headerimg h1 a::after {
  margin-top: 6px;
}

/* ホバー時（見た目は変えない） */
#headerimg h1 a:hover {
  color: #000;
  text-decoration: none;
}
