/* ────────────────
   H2デザイン（赤ライン）
──────────────── */
.single-post h2 {
  position: relative;
  background: linear-gradient(to bottom, #f9f9f9 0%, #fff 100%);
  padding: 0.5em 0.8em;
  font-weight: bold;
  margin-bottom: 1em;
}
.single-post h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: red;
}

/* ────────────────
   H3デザイン（水色棒＋下線）
──────────────── */
.single-post h3 {
  position: relative;
  background: #fff;
  padding: 0.5em 0.8em;
  font-weight: bold;
  margin-bottom: 1em;
  border: none !important;
}
.single-post h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #33ccff;
}
.single-post h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: linear-gradient(to right, #66d9ff, transparent);
}

/* ────────────────
   H4デザイン（グレー棒）
──────────────── */
.single-post h4 {
  position: relative;
  background: #fff;
  padding: 0.4em 0.8em;
  margin: 1.2em 0 0.8em;
  font-weight: 600;
  font-size: 1.05em;
  border: none !important;
}
.single-post h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #999;
}

/* ────────────────
   スマホ専用（768px以下）
──────────────── */
@media screen and (max-width: 768px) {
  .eye-catch, h1.entry-title, #content.content.cf, main#main.main {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .seminar-banner-top {
    padding: 10px 6px;
    font-size: 13px;
  }

  .seminar-banner-top p {
    font-size: 13px;
    line-height: 1.4;
  }

  .seminar-banner-top a {
    font-size: 13px;
    padding: 6px 14px;
  }
}

/* ────────────────
   page-id-11（専用LP用）
──────────────── */
@media (max-width: 1023px) {
  body.page-id-11 #header,
  body.page-id-11 #header-container,
  body.page-id-11 .site-header,
  header.article-header.entry-header {
    display: none !important;
  }
  body.page-id-11 .entry-content {
    padding-top: 28px !important;
  }
  body.page-id-11 h1.entry-title {
    margin-top: 30px !important;
  }
}

