.entry-content h2 {
  display: block !important;           /* 表示を強制 */
  font-size: 24px !important;          /* h2サイズ */
  font-weight: bold !important;        /* 太字 */
  margin: 1em 0 !important;            /* 上下スペース */
  background-color: #f0f8ff !important; /* Aタブ選択風背景 */
  padding: 0.2em 0.4em !important;     /* タブ感の内側余白 */
  border-left: 4px solid #3399ff !important; /* 左ラインでタブ感 */
  border-radius: 3px;                  /* 少し丸めて柔らかく */
}

.entry-content h3 {
  display: block !important;
  font-size: 20px !important;          /* h3サイズ */
  font-weight: bold !important;
  margin: 0.8em 0 !important;
  background-color: #f5f5f5 !important;
  padding: 0.15em 0.3em !important;
  border-left: 3px solid #66ccff !important;
  border-radius: 2px;
}

/* マウスオーバーでAタブ押した風のハイライト */
.entry-content h2:hover, 
.entry-content h3:hover {
  background-color: #d0e7ff !important;
  cursor: pointer;
}