@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ - show-zeet.com customized
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.2.0
*/

/* ============================================================
   B) CSS Variables - Design System
   ============================================================ */
:root {
  --color-bg-primary: #FFFFFF;
  --color-bg-section: #F8F9FA;
  --color-bg-pale: #F1F3F5;
  --color-border-light: #D1D5DB;
  --color-text-primary: #1F2937;
  --color-text-secondary: #6B7280;
  --color-text-meta: #9CA3AF;
  --color-accent-navy: #0A2540;
  --color-accent-gold: #D4A437;
  --color-up: #DC2626;
  --color-down: #2563EB;

  --font-serif: 'Hiragino Mincho ProN', 'Yu Mincho', 'YuMincho', serif;
  --font-sans: 'Hiragino Sans', 'Yu Gothic', 'YuGothic', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SF Mono', 'Courier New', Consolas, monospace;

  --radius-card: 8px;
  --transition-base: 0.2s ease;
}

/* ============================================================
   C) Base & Typography
   ============================================================ */
html { background: var(--color-bg-primary); }

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.entry-title,
.article h1,
.article h2,
.article h3,
.article h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--color-text-primary);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

h1 { font-size: 2.0rem; margin: 1.6rem 0 1.2rem; }
h2 { font-size: 1.6rem; margin: 2.4rem 0 1.0rem; }
h3 { font-size: 1.3rem; margin: 1.8rem 0 0.8rem; }
h4 { font-size: 1.1rem; margin: 1.4rem 0 0.6rem; }

p {
  line-height: 1.9;
  color: var(--color-text-primary);
  margin: 0 0 1.2em;
}

/* N) Links */
a, a:visited {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}
a:hover, a:focus {
  color: var(--color-accent-gold);
  text-decoration: none;
}

/* Numerals */
.date, .post-date, time, .updated, .published,
.comment-count, .view-count, .number,
.entry-card-meta, .post-meta,
.copyright, .copyright-message {
  font-family: var(--font-mono);
  font-size: 0.85em;
  color: var(--color-text-meta);
}

/* ========================================
   D) NEW HEADER - Single Row Layout
   ======================================== */

/* Cocoon標準ヘッダーを完全に隠す（保険：万が一親テーマ要素が出力された場合用） */
html body .header-container,
html body #header-container,
html body .header,
html body #header:not(.show-zeet-header),
html body header.header,
html body header[role="banner"]:not(.show-zeet-header),
html body #navi,
html body .navi,
html body .navi-in,
html body .navi-menu-content,
html body .menu-button,
html body .menu-icon-button,
html body .navi-menu-button {
    display: none !important;
}

/* モバイル下部固定ナビを完全非表示 */
.mobile-menu-buttons,
.navi-footer,
#navi-footer,
.footer-mobile-menu-buttons {
    display: none !important;
}

/* 新ヘッダー */
html body .show-zeet-header {
    position: relative !important;
    width: 100% !important;
    background: #FFFFFF !important;
    border-bottom: 0.5px solid #D1D5DB !important;
    z-index: 1000 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    visibility: visible !important;
}

html body .show-zeet-header-inner {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 16px 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 32px !important;
}

/* ロゴ */
html body .show-zeet-logo {
    font-family: 'Hiragino Mincho ProN', 'Yu Mincho', serif !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #1F2937 !important;
    text-decoration: none !important;
    flex-shrink: 0 !important;
}

html body .show-zeet-logo:hover {
    color: #D4A437 !important;
}

/* ナビゲーション */
html body .show-zeet-nav {
    display: flex !important;
    align-items: center !important;
}

html body .show-zeet-menu,
html body ul.show-zeet-menu {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

html body .show-zeet-menu li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

html body .show-zeet-menu li a {
    font-size: 13px !important;
    color: #6B7280 !important;
    text-decoration: none !important;
    transition: color 0.2s !important;
}

html body .show-zeet-menu li a:hover,
html body .show-zeet-menu li.current-menu-item a {
    color: #1F2937 !important;
    font-weight: 500 !important;
}

/* ハンバーガー（PC非表示、モバイル表示） */
html body .show-zeet-hamburger {
    display: none !important;
    background: none !important;
    border: none !important;
    padding: 8px !important;
    cursor: pointer !important;
    flex-direction: column !important;
    gap: 4px !important;
}

html body .show-zeet-hamburger span {
    display: block !important;
    width: 22px !important;
    height: 1.5px !important;
    background: #1F2937 !important;
    transition: all 0.3s !important;
}

html body .show-zeet-hamburger.is-active span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg) !important;
}
html body .show-zeet-hamburger.is-active span:nth-child(2) {
    opacity: 0 !important;
}
html body .show-zeet-hamburger.is-active span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg) !important;
}

/* モバイル */
@media (max-width: 1023px) {
    html body .show-zeet-header-inner {
        padding: 12px 16px !important;
    }

    html body .show-zeet-logo {
        font-size: 16px !important;
    }

    html body .show-zeet-hamburger {
        display: flex !important;
    }

    html body .show-zeet-nav {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: #FFFFFF !important;
        border-bottom: 0.5px solid #D1D5DB !important;
        padding: 16px !important;
        display: none !important;
    }

    html body .show-zeet-nav.is-open {
        display: block !important;
    }

    html body .show-zeet-menu {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: flex-start !important;
    }
}

/* ========================================
   E) HERO VIDEO - Full Width
   ======================================== */

html body .show-zeet-hero {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
    background: #F1F3F5 !important;
    z-index: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    aspect-ratio: unset !important;
}

@media (max-width: 767px) {
    html body .show-zeet-hero {
        height: 240px !important;
        max-height: 240px !important;
        min-height: 240px !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    html body .show-zeet-hero {
        height: 360px !important;
        max-height: 360px !important;
        min-height: 360px !important;
    }
}

@media (min-width: 1024px) {
    html body .show-zeet-hero {
        height: 420px !important;
        max-height: 420px !important;
        min-height: 420px !important;
    }
}

@media (min-width: 1280px) {
    html body .show-zeet-hero {
        height: 480px !important;
        max-height: 480px !important;
        min-height: 480px !important;
    }
}

html body .show-zeet-hero-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 35% !important;
    opacity: 0.8 !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* メインエリアの上余白除去 */
html body #main.show-zeet-main-area,
html body .show-zeet-main-area {
    margin-top: 0 !important;
    padding-top: 32px !important;
}

body.home #main,
body.home .main { padding-top: 0 !important; }

/* ============================================================
   F) Entry Card
   ============================================================ */
.entry-card,
.related-entry-card,
.a-wrap,
.front-page-type-index .entry-card-wrap {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-card);
  box-shadow: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  overflow: hidden;
  margin-bottom: 1.5rem;
  padding: 0;
}

.entry-card:hover,
.related-entry-card:hover,
.a-wrap:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 37, 64, 0.08);
}

.entry-card-thumb,
.related-entry-card-thumb,
.card-thumb {
  border-radius: 0;
  overflow: hidden;
}

.entry-card-thumb img,
.related-entry-card-thumb img {
  border-radius: 0;
  display: block;
  width: 100%;
  height: auto;
}

.entry-card-content,
.related-entry-card-content,
.card-content {
  padding: 1.2rem 1.4rem 1.4rem;
}

.entry-card-title,
.related-entry-card-title,
.card-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--color-text-primary);
  margin: 0.4rem 0 0.6rem;
}

.entry-card-snippet,
.card-snippet {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.cat-label,
.entry-card-categories .cat-link,
.cat-link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-accent-navy);
  background: var(--color-bg-pale);
  border: none;
  padding: 0.25em 0.7em;
  border-radius: 999px;
  text-transform: uppercase;
}

.entry-card-meta,
.card-meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-text-meta);
  margin-top: 0.6rem;
}
.entry-card-meta a,
.card-meta a { color: var(--color-text-meta); }

/* ========================================
   G) SIDEBAR - 「しっかり情報型」
   ======================================== */

#sidebar {
    font-size: 14px;
}

.widget,
.sidebar > .widget {
    background: #FFFFFF !important;
    border: 0.5px solid #D1D5DB !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin: 0 0 16px 0 !important;
    box-shadow: none !important;
}

.widget-title,
.widget h3 {
    font-family: 'Hiragino Sans', sans-serif !important;
    font-size: 11px !important;
    color: #9CA3AF !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: none !important;
    padding: 0 0 12px 0 !important;
    margin: 0 0 12px 0 !important;
    background: none !important;
    border-bottom: 0.5px solid #D1D5DB !important;
    font-weight: 500 !important;
}

.widget ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.widget li {
    padding: 8px 0 !important;
    border-bottom: 0.5px solid #F1F3F5 !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
}

.widget li:last-child {
    border-bottom: none !important;
}

.widget li a {
    color: #1F2937 !important;
    text-decoration: none !important;
    transition: color 0.2s !important;
}

.widget li a:hover {
    color: #D4A437 !important;
}

/* プロフィールウィジェット用 */
.widget_profile-box,
.author-box {
    text-align: center;
}

.widget_profile-box img,
.author-thumb {
    border-radius: 50% !important;
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 12px !important;
}

/* 検索ウィジェット */
.search-form,
.widget_search input[type="search"] {
    width: 100% !important;
    padding: 8px 12px !important;
    border: 0.5px solid #D1D5DB !important;
    border-radius: 4px !important;
    font-size: 13px !important;
}

/* Popular posts ranking */
#sidebar .popular-entry-cards,
.sidebar .popular-entry-cards { counter-reset: popular-rank; }

#sidebar .popular-entry-card,
.sidebar .popular-entry-card,
#sidebar .widget_popular_posts li,
.sidebar .widget_popular_posts li {
  counter-increment: popular-rank;
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 0.9rem;
  border: none;
  background: transparent;
  min-height: 1.8rem;
  list-style: none;
}

#sidebar .popular-entry-card::before,
.sidebar .popular-entry-card::before,
#sidebar .widget_popular_posts li::before,
.sidebar .widget_popular_posts li::before {
  content: counter(popular-rank);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.7rem;
  height: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  background: var(--color-bg-pale);
  border-radius: 50%;
}

#sidebar .popular-entry-card:nth-child(1)::before,
.sidebar .popular-entry-card:nth-child(1)::before,
#sidebar .widget_popular_posts li:nth-child(1)::before,
.sidebar .widget_popular_posts li:nth-child(1)::before {
  background: var(--color-accent-gold);
  color: #FFFFFF;
}

/* ============================================================
   H) Footer
   ============================================================ */
#footer,
.footer {
  background: var(--color-bg-section);
  border-top: 1px solid var(--color-border-light);
  color: var(--color-text-secondary);
  padding: 3rem 1.2rem 2rem;
  margin-top: 4rem;
}

#footer .footer-in,
.footer-in {
  max-width: 1200px;
  margin: 0 auto;
}

#footer .logo-text,
.footer .logo-text,
.footer-bottom-logo {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--color-accent-navy);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 1rem;
}

.footer-widgets,
#footer-widgets {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 1024px) {
  .footer-widgets,
  #footer-widgets {
    grid-template-columns: repeat(3, 1fr);
  }
}

#footer .widget-title,
.footer .widget-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-meta);
  margin-bottom: 0.8rem;
}

.copyright,
.copyright-message,
.footer-bottom .copyright,
#copyright {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-text-meta);
  text-align: center;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--color-border-light);
}

/* ============================================================
   I) Article Page
   ============================================================ */
.article {
  font-family: var(--font-sans);
  color: var(--color-text-primary);
}

.article h1,
.article .entry-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.95rem;
  line-height: 1.5;
  margin: 0.8rem 0 1.5rem;
  letter-spacing: 0.02em;
}

.article h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.55rem;
  position: relative;
  padding: 0 0 0.6rem;
  margin: 3rem 0 1.4rem;
  border: none;
  background: transparent;
}
.article h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--color-accent-gold);
}

.article h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
  border: none;
  border-left: 3px solid var(--color-accent-gold);
  padding-left: 0.8rem;
  background: transparent;
}

.article h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.08rem;
  margin: 1.5rem 0 0.8rem;
  color: var(--color-text-primary);
  border: none;
  background: transparent;
}

.article p {
  line-height: 1.95;
  margin: 0 0 1.4em;
  color: var(--color-text-primary);
}

.article blockquote,
.article .blockquote {
  background: var(--color-bg-section);
  border: none;
  border-left: 3px solid var(--color-accent-gold);
  padding: 1.2rem 1.4rem;
  margin: 1.6rem 0;
  color: var(--color-text-secondary);
  font-style: normal;
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}
.article blockquote p:last-child { margin-bottom: 0; }

.article .eye-catch,
.article .eyecatch,
.article .post-thumbnail img,
.article .eye-catch img {
  border-radius: var(--radius-card);
  overflow: hidden;
  display: block;
  width: 100%;
  height: auto;
}

.article ul, .article ol {
  margin: 0 0 1.4em;
  padding-left: 1.4rem;
  line-height: 1.95;
}
.article li { margin-bottom: 0.4em; }

.article a {
  color: var(--color-accent-navy);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-base), color var(--transition-base);
}
.article a:hover {
  color: var(--color-accent-gold);
  border-bottom-color: var(--color-accent-gold);
}

/* ============================================================
   J) Archive / Category Page
   ============================================================ */
.archive .archive-title,
.category .archive-title,
.tag .archive-title {
  display: none;
}

.archive-header,
.category-header,
.tag-header {
  text-align: center;
  padding: 3rem 1rem 2rem;
  background: var(--color-bg-section);
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 2rem;
}

.archive-header::before,
.category-header::before,
.tag-header::before {
  content: "CATEGORY";
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-accent-gold);
  margin-bottom: 0.8rem;
}

.tag-header::before { content: "TAG"; }
.archive:not(.category):not(.tag) .archive-header::before { content: "ARCHIVE"; }

.archive-title,
.archive-header h1,
.category-header h1 {
  font-family: var(--font-serif) !important;
  font-weight: 500;
  font-size: 2rem;
  color: var(--color-text-primary);
  margin: 0;
  display: block !important;
}

.archive-meta,
.archive-count {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-text-meta);
  margin-top: 0.5rem;
}

/* ============================================================
   K) Breadcrumb
   ============================================================ */
#breadcrumb,
.breadcrumb,
.breadcrumb-list {
  background: var(--color-bg-pale);
  border: none;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  color: var(--color-text-meta);
  margin: 0 0 1.2rem;
  border-radius: var(--radius-card);
}
#breadcrumb a,
.breadcrumb a {
  color: var(--color-text-secondary);
}

/* ============================================================
   L) Hide Cocoon Defaults
   ============================================================ */
.sns-follow,
.follow-box,
.follow-message,
.feed-btn,
.feedly-btn,
.rss-btn,
.author-info,
.author-box-bottom,
.author-content + .sns-follow,
.entry-footer .author-info {
  display: none !important;
}

.home .article-header,
.home .entry-header,
.home .post-update,
.home .post-date,
.home .breadcrumb,
.home #breadcrumb,
.home .sns-share,
.home .sns-share-buttons,
.home .entry-title,
.home h1.entry-title,
.home article > h1 {
  display: none !important;
}

body.home .main,
body.home #main {
  padding-top: 0 !important;
}

/* ========================================
   M) RESPONSIVE LAYOUT - 2:1 Grid System
   ======================================== */

/* デフォルト（モバイル）: 1カラム */
.body-wrap,
.main-wrap,
#content {
    width: 100%;
}

#main {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

#sidebar {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 32px;
}

/* タブレット (768-1023px): 1カラム維持、余白広め */
@media (min-width: 768px) and (max-width: 1023px) {
    .show-zeet-home-content,
    .article-wrap {
        max-width: 720px;
        margin: 0 auto;
        padding: 0 24px;
    }
}

/* デスクトップ (1024px+): grid 2fr 1fr */
@media (min-width: 1024px) {
    /* Cocoon の wrapper: #content-in.content-in.wrap, .main-wrap, .body-wrap */
    .main-wrap,
    #content-in,
    .content-in.wrap {
        display: grid !important;
        grid-template-columns: 2fr 1fr !important;
        gap: 32px !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 32px 24px !important;
        align-items: flex-start !important;
        box-sizing: border-box;
    }

    #main {
        flex: none !important;
        min-width: 0 !important;
        max-width: none !important;
        width: 100% !important;
        margin: 0 !important;
        float: none !important;
    }

    #sidebar {
        flex: none !important;
        max-width: none !important;
        width: 100% !important;
        position: sticky;
        top: 80px;
        height: fit-content;
        margin-top: 0 !important;
        float: none !important;
    }

    /* ヒーローはフル幅 */
    .show-zeet-hero {
        max-width: 100%;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        width: 100vw;
    }

    body.home .show-zeet-home-content {
        max-width: none !important;
        margin: 0 !important;
        padding: 32px 0 !important;
    }

    /* show-zeet-section-bg を main 幅一杯に */
    body.home .show-zeet-section-bg {
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 8px;
    }
}

/* モバイル: タイポ調整 */
@media screen and (max-width: 767px) {
  body { font-size: 0.95rem; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.15rem; }
  .article h1, .article .entry-title { font-size: 1.55rem; }
  .article h2 { font-size: 1.3rem; margin: 2.2rem 0 1.1rem; }
  .article h3 { font-size: 1.1rem; }
  .archive-header,
  .category-header { padding: 2rem 1rem 1.4rem; }
  .archive-title,
  .archive-header h1,
  .category-header h1 { font-size: 1.5rem; }
  #footer { padding: 2rem 1rem 1.5rem; }
  .footer-widgets,
  #footer-widgets { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
  .entry-card-content,
  .related-entry-card-content,
  .card-content { padding: 1rem 1.1rem 1.2rem; }
}

/* ワイド (1280px+): さらに余裕を持たせる */
@media (min-width: 1280px) {
    .main-wrap {
        max-width: 1280px;
        gap: 40px;
        padding: 0 32px;
    }
}

/* ============================================================
   O) Home Page Main Content (cocoon_main_after injected)
   ============================================================ */

/* ヘッダー直下の余白圧縮 */
body.home #content,
body.home .content { padding-top: 0 !important; }
body.home #content-in,
body.home .content-in { padding-top: 0 !important; }
.show-zeet-hero { margin-top: 0 !important; }

.show-zeet-home-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 16px;
    font-family: var(--font-sans);
}
@media (min-width: 1024px) {
    .show-zeet-home-content { padding: 60px 32px; }
}

.show-zeet-section { margin-bottom: 48px; }

.show-zeet-section-bg {
    background: #F8F9FA;
    border-top: 0.5px solid #D1D5DB;
    border-bottom: 0.5px solid #D1D5DB;
    padding: 40px 16px;
    margin-left: -16px;
    margin-right: -16px;
}
@media (min-width: 1024px) {
    .show-zeet-section-bg {
        padding: 60px 32px;
        margin-left: -32px;
        margin-right: -32px;
    }
}

.show-zeet-section-title {
    font-family: 'Hiragino Mincho ProN', 'Yu Mincho', serif !important;
    font-size: 22px !important;
    font-weight: 500 !important;
    color: #1F2937 !important;
    margin: 0 0 4px 0 !important;
    border: none !important;
    background: none !important;
    padding: 0 !important;
}

.show-zeet-section-line {
    width: 32px;
    height: 1px;
    background: #D4A437;
    margin-bottom: 24px;
}

@media (min-width: 1024px) {
    .show-zeet-section-title { font-size: 28px !important; }
}

/* 記事カード - 横並びレイアウト */
.show-zeet-article-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.show-zeet-card {
    background: #FFFFFF;
    border: 0.5px solid #D1D5DB;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}
.show-zeet-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}
.show-zeet-card-link,
.show-zeet-card a {
    text-decoration: none !important;
    color: inherit !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 16px !important;
    align-items: stretch;
}

.show-zeet-card-image {
    flex: 0 0 240px !important;
    aspect-ratio: 16/9 !important;
    background: linear-gradient(135deg, #6B7280 0%, #9CA3AF 100%);
    background-size: cover;
    background-position: center;
    align-self: stretch;
}

.show-zeet-card-body {
    flex: 1 !important;
    padding: 16px 20px 16px 0 !important;
    min-width: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.show-zeet-card-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #DC2626;
    margin-bottom: 8px;
    text-transform: uppercase;
    background: #FEF2F2;
    padding: 2px 8px;
    border-radius: 3px;
    align-self: flex-start;
}

.show-zeet-card-title {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #1F2937 !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.5 !important;
    padding: 0 !important;
    border: none !important;
    font-family: var(--font-serif) !important;
}

.show-zeet-card-excerpt {
    font-size: 12px !important;
    color: #6B7280 !important;
    line-height: 1.6 !important;
    margin: 0 0 8px 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.show-zeet-card-date {
    font-size: 11px;
    color: #9CA3AF;
    font-family: 'SF Mono', 'Courier New', monospace;
}

.show-zeet-empty {
    text-align: center;
    padding: 40px 16px;
    color: #6B7280;
    font-size: 14px;
    grid-column: 1 / -1;
}

/* モバイル: カードを縦積みに戻す */
@media (max-width: 767px) {
    .show-zeet-card-link,
    .show-zeet-card a {
        flex-direction: column !important;
        gap: 0 !important;
    }
    .show-zeet-card-image {
        flex: 0 0 auto !important;
        width: 100% !important;
    }
    .show-zeet-card-body {
        padding: 14px 16px 16px !important;
    }
    .show-zeet-card-excerpt {
        display: none !important;
    }
}

/* カテゴリーリスト */
.show-zeet-category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.show-zeet-cat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 12px;
    background: #FFFFFF;
    border: 0.5px solid #D1D5DB;
    border-radius: 6px;
    text-decoration: none !important;
    color: #1F2937 !important;
    transition: all 0.2s;
}
.show-zeet-cat-item:hover {
    border-color: #1F2937;
    transform: translateX(2px);
}
.show-zeet-cat-name {
    font-size: 14px;
    font-weight: 500;
    color: #1F2937;
    margin-bottom: 2px;
}
.show-zeet-cat-desc {
    font-size: 11px;
    color: #6B7280;
}
.show-zeet-cat-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}
.show-zeet-cat-count {
    font-family: 'SF Mono', monospace;
    font-size: 12px;
    color: #9CA3AF;
}
.show-zeet-cat-arrow { color: #9CA3AF; }

/* 運営者 */
.show-zeet-author {
    background: #FFFFFF;
    border: 0.5px solid #D1D5DB;
    border-radius: 8px;
    padding: 24px;
}
.show-zeet-author-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.show-zeet-author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #F1F3F5;
    border: 0.5px solid #D1D5DB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1F2937;
    font-family: 'Hiragino Mincho ProN', serif;
    font-size: 24px;
    font-weight: 500;
    flex-shrink: 0;
}
.show-zeet-author-name {
    font-size: 16px;
    font-weight: 500;
    color: #1F2937;
}
.show-zeet-author-title {
    font-size: 12px;
    color: #6B7280;
}
.show-zeet-author-desc {
    font-size: 13px !important;
    color: #1F2937 !important;
    line-height: 1.7 !important;
    margin: 0 0 16px 0 !important;
}
.show-zeet-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 0.5px solid #1F2937;
    border-radius: 4px;
    color: #1F2937 !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}
.show-zeet-btn:hover {
    background: #1F2937;
    color: #FFFFFF !important;
}

/* ============================================================
   Q) カスタムサイドバー（5枠）
   ============================================================ */

/* Cocoon の no-mobile-sidebar による mobile sidebar 非表示を強制解除 */
body.no-mobile-sidebar #sidebar,
body.no-mobile-sidebar .sidebar {
    display: block !important;
}

/* サイドバー全体: 不要な block を非表示（保険） */
#sidebar #block-3,
#sidebar #block-4,
#sidebar #block-8,
#sidebar #block-9,
#sidebar #block-11,
#sidebar #block-12,
#sidebar #sidebar-scroll,
#sidebar-scroll {
    display: none !important;
}

/* モバイルサイドバー見出し */
.show-zeet-sidebar-mobile-heading {
    display: block;
    margin-bottom: 24px;
}
@media (min-width: 1024px) {
    .show-zeet-sidebar-mobile-heading { display: none !important; }
}

/* カスタムウィジェット共通 */
.show-zeet-widget {
    background: #FFFFFF !important;
    border: 0.5px solid #D1D5DB !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin: 0 0 16px 0 !important;
    box-shadow: none !important;
    list-style: none !important;
}

.show-zeet-widget .widget-title {
    font-family: 'Hiragino Sans', sans-serif !important;
    font-size: 11px !important;
    color: #9CA3AF !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: none !important;
    padding: 0 0 12px 0 !important;
    margin: 0 0 12px 0 !important;
    background: none !important;
    border-bottom: 0.5px solid #D1D5DB !important;
    font-weight: 500 !important;
    text-align: left !important;
}

/* PROFILE */
.show-zeet-sidebar-profile {
    text-align: center;
    padding: 8px 0 4px;
}
.show-zeet-sidebar-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #F1F3F5;
    border: 0.5px solid #D1D5DB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1F2937;
    font-family: 'Hiragino Mincho ProN', serif;
    font-size: 24px;
    font-weight: 500;
    margin: 0 auto 12px;
}
.show-zeet-sidebar-name {
    font-size: 15px;
    font-weight: 500;
    color: #1F2937;
    margin-bottom: 6px;
    font-family: 'Hiragino Mincho ProN', serif;
}
.show-zeet-sidebar-desc {
    font-size: 12px;
    color: #6B7280;
    line-height: 1.6;
}

/* SEARCH */
.show-zeet-search-form {
    display: flex;
    gap: 6px;
    align-items: stretch;
}
.show-zeet-search-input {
    flex: 1;
    padding: 8px 10px !important;
    border: 0.5px solid #D1D5DB !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    background: #FFFFFF !important;
    min-width: 0;
}
.show-zeet-search-btn {
    padding: 8px 16px !important;
    background: #0A2540 !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    cursor: pointer;
    white-space: nowrap;
}
.show-zeet-search-btn:hover {
    background: #1F2937 !important;
}

/* POPULAR */
.show-zeet-popular-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.show-zeet-popular-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 0.5px solid #F1F3F5;
}
.show-zeet-popular-item:last-child {
    border-bottom: none;
}
.show-zeet-popular-rank {
    flex: 0 0 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'SF Mono', 'Courier New', monospace;
    font-size: 11px;
    font-weight: 600;
    background: #F1F3F5;
    color: #6B7280;
}
.show-zeet-popular-rank.rank-1 {
    background: #D4A437 !important;
    color: #FFFFFF !important;
}
.show-zeet-popular-title {
    font-size: 12px !important;
    color: #1F2937 !important;
    line-height: 1.5 !important;
    text-decoration: none !important;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.show-zeet-popular-title:hover {
    color: #D4A437 !important;
}

/* CATEGORY */
.show-zeet-sidebar-cats {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.show-zeet-sidebar-cat-item {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 8px 0 !important;
    border-bottom: 0.5px solid #F1F3F5 !important;
    border-top: none !important;
    font-size: 13px !important;
}
.show-zeet-sidebar-cat-item:last-child {
    border-bottom: none !important;
}
.show-zeet-sidebar-cat-item a {
    color: #1F2937 !important;
    text-decoration: none !important;
    font-size: 13px !important;
    flex: 1;
}
.show-zeet-sidebar-cat-item a:hover {
    color: #D4A437 !important;
}
.show-zeet-sidebar-cat-count {
    font-family: 'SF Mono', monospace;
    font-size: 12px;
    color: #9CA3AF;
}

/* ARCHIVE */
.show-zeet-archive-select {
    width: 100%;
    padding: 8px 12px;
    border: 0.5px solid #D1D5DB;
    border-radius: 4px;
    font-size: 13px;
    background: #FFFFFF;
    color: #1F2937;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

/* ============================================================
   R) カスタムフッター（2カラム）+ Cocoonデフォルト隠蔽
   ============================================================ */
#footer,
.footer-container {
    display: none !important;
}

.show-zeet-footer {
    background: #F8F9FA;
    border-top: 0.5px solid #D1D5DB;
    padding: 40px 16px 24px;
    margin-top: 60px;
    color: #6B7280;
}
.show-zeet-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.show-zeet-footer-brand {
    margin-bottom: 24px;
}
.show-zeet-footer-logo {
    font-family: 'Hiragino Mincho ProN', serif;
    font-size: 17px;
    font-weight: 500;
    color: #0A2540;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.show-zeet-footer-tag {
    font-size: 11px;
    color: #9CA3AF;
}
.show-zeet-footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 24px;
}
@media (min-width: 1024px) {
    .show-zeet-footer {
        padding: 48px 32px 24px;
    }
    .show-zeet-footer-cols {
        gap: 64px;
        max-width: 480px;
    }
}
.show-zeet-footer-heading {
    font-family: 'Hiragino Sans', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em !important;
    color: #9CA3AF !important;
    text-transform: uppercase !important;
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
    border: none !important;
}
.show-zeet-footer-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.show-zeet-footer-list li {
    padding: 4px 0 !important;
    border: none !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
}
.show-zeet-footer-list a {
    color: #1F2937 !important;
    text-decoration: none !important;
    font-size: 13px !important;
}
.show-zeet-footer-list a:hover {
    color: #D4A437 !important;
}
.show-zeet-footer-copy {
    font-family: 'SF Mono', 'Courier New', monospace;
    font-size: 11px;
    color: #9CA3AF;
    border-top: 0.5px solid #D1D5DB;
    padding-top: 16px;
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.show-zeet-footer-rights {
    color: #9CA3AF;
}

/* ============================================================
   P) 目次絶対非表示（ホームのみ・強化版）
   ============================================================ */
body.home .toc,
body.home .toc-list,
body.home #toc,
body.home .toc-widget-box,
body.home .toc-widget,
body.home div[class*="toc"],
body.front-page .toc,
body.front-page .toc-list,
body.front-page #toc,
body.front-page div[class*="toc"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* ============================================================
   S) FIX - Section Title (二重線対策)
   ============================================================ */

/* Cocoon親テーマ + 子テーマの .article h2 装飾を完全無効化（保険） */
html body article h2,
html body .article h2,
html body .entry-content h2,
html body main h2,
html body .show-zeet-home-content h2 {
    border-bottom: none !important;
    border-top: none !important;
    background: none !important;
    padding-bottom: 4px !important;
    padding-top: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 16px !important;
    position: relative !important;
}

/* 親テーマ・子テーマの h2 ::before / ::after を消す（.article h2::after の48pxゴールド線が二重線の原因） */
html body article h2::before,
html body article h2::after,
html body .article h2::before,
html body .article h2::after,
html body .entry-content h2::before,
html body .entry-content h2::after,
html body main h2::before,
html body main h2::after,
html body .show-zeet-home-content h2::before,
html body .show-zeet-home-content h2::after {
    display: none !important;
    content: none !important;
    border: none !important;
    background: none !important;
}

/* 自前のセクションタイトル装飾（金色の1本線） */
html body .show-zeet-section-title {
    font-family: 'Hiragino Mincho ProN', 'Yu Mincho', serif !important;
    font-size: 22px !important;
    font-weight: 500 !important;
    color: #1F2937 !important;
    margin: 0 0 24px 0 !important;
    padding: 0 0 8px 0 !important;
    border: none !important;
    background: none !important;
    position: relative !important;
}

/* 自前の ::after で金色の短い線を1本だけ描画 */
html body .article h2.show-zeet-section-title::after,
html body h2.show-zeet-section-title::after {
    content: '' !important;
    display: block !important;
    width: 32px !important;
    height: 1px !important;
    background: #D4A437 !important;
    margin-top: 8px !important;
    border: none !important;
    position: static !important;
}

/* ::before は使わない */
html body .show-zeet-section-title::before {
    display: none !important;
    content: none !important;
}

/* 既存の .show-zeet-section-line div は ::after に置き換えたので非表示（二重線防止） */
html body .show-zeet-section-line {
    display: none !important;
}

@media (max-width: 767px) {
    html body .show-zeet-section-title {
        font-size: 18px !important;
        margin-bottom: 16px !important;
    }
    html body .article h2.show-zeet-section-title::after,
    html body h2.show-zeet-section-title::after {
        width: 28px !important;
    }
}

/* ============================================================
   T) FIX - Profile Detail Button (切れ対策)
   ============================================================ */

/* 運営者カードの overflow を visible に（ボタンが切れないように） */
html body .show-zeet-author-card,
html body .show-zeet-author {
    overflow: visible !important;
    padding: 24px !important;
}

/* プロフィール詳細ボタン（.show-zeet-btn 含む全パターン） */
html body .show-zeet-author .show-zeet-btn,
html body .show-zeet-author a.show-zeet-btn,
html body .show-zeet-author-link,
html body .show-zeet-profile-button,
html body .show-zeet-author a[href*="/about"] {
    display: inline-block !important;
    padding: 12px 24px !important;
    border: 1px solid #1F2937 !important;
    border-radius: 4px !important;
    color: #1F2937 !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    margin-top: 16px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
    transition: all 0.2s !important;
}

html body .show-zeet-author .show-zeet-btn:hover,
html body .show-zeet-author a.show-zeet-btn:hover,
html body .show-zeet-author-link:hover {
    background: #1F2937 !important;
    color: #FFFFFF !important;
}

/* ============================================================
   U) FIX - PC Hero Video Final
   ============================================================ */

@media (min-width: 1024px) {
    html body .show-zeet-hero {
        height: 380px !important;
        min-height: 380px !important;
        max-height: 380px !important;
    }
    html body .show-zeet-hero-video {
        object-fit: cover !important;
        object-position: center 30% !important;
    }
}

@media (min-width: 1280px) {
    html body .show-zeet-hero {
        height: 440px !important;
        min-height: 440px !important;
        max-height: 440px !important;
    }
}

/* ============================================================
   V) FIX - SNS Complete Removal (全固定ページ保険)
   ============================================================ */

html body .sns-share,
html body .sns-share-buttons,
html body .sns-share-top,
html body .sns-share-bottom,
html body .sns-follow,
html body .sns-follow-buttons,
html body .sns-follow-message,
html body .follow-box,
html body .follow-message,
html body .author-box,
html body .author-info,
html body .sns-icons,
html body .footer-sns,
html body .header-sns,
html body div[class*="sns-share"],
html body div[class*="sns-follow"],
html body section[class*="sns-share"],
html body section[class*="sns-follow"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* show-zeet-* の自前クラスは除外（保険） */
html body .show-zeet-widget,
html body .show-zeet-widget-profile,
html body .show-zeet-profile-link,
html body .show-zeet-footer,
html body .show-zeet-footer-list {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
}

/* ============================================================
   W) Sidebar PROFILE 刷新 (新HTML構造用CSS)
   ============================================================ */

html body .show-zeet-widget-profile .show-zeet-widget-body {
    text-align: center !important;
    padding: 4px 0 0 !important;
}

html body .show-zeet-profile-avatar {
    width: 72px !important;
    height: 72px !important;
    border-radius: 50% !important;
    background: #F1F3F5 !important;
    border: 1px solid #D1D5DB !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 12px !important;
}

html body .show-zeet-profile-initial {
    font-family: 'Hiragino Mincho ProN', serif !important;
    font-size: 28px !important;
    font-weight: 500 !important;
    color: #1F2937 !important;
    line-height: 1 !important;
}

html body .show-zeet-profile-name {
    font-family: 'Hiragino Mincho ProN', serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #1F2937 !important;
    margin-bottom: 4px !important;
    text-align: center !important;
}

html body .show-zeet-profile-sub {
    font-size: 12px !important;
    color: #6B7280 !important;
    margin-bottom: 12px !important;
    text-align: center !important;
}

html body .show-zeet-profile-desc {
    font-size: 12px !important;
    color: #1F2937 !important;
    line-height: 1.7 !important;
    margin: 0 0 16px 0 !important;
    text-align: left !important;
}

html body .show-zeet-profile-link {
    display: inline-block !important;
    color: #D4A437 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: opacity 0.2s !important;
    text-align: center !important;
}

html body .show-zeet-profile-link:hover {
    opacity: 0.7 !important;
}

/* ============================================================
   X) About Page (page-id-7) - Layout
   ============================================================ */

html body.page-id-7 .entry-content {
    max-width: 720px !important;
    margin: 0 auto !important;
    padding: 32px 0 !important;
}

html body.page-id-7 .entry-content h2 {
    font-family: 'Hiragino Mincho ProN', 'Yu Mincho', serif !important;
    font-size: 24px !important;
    font-weight: 500 !important;
    color: #1F2937 !important;
    margin: 32px 0 16px 0 !important;
    padding: 0 0 8px 0 !important;
    border: none !important;
    background: none !important;
    position: relative !important;
}

html body.page-id-7 .entry-content h2::after {
    content: '' !important;
    display: block !important;
    width: 32px !important;
    height: 1px !important;
    background: #D4A437 !important;
    margin-top: 8px !important;
    border: none !important;
    position: static !important;
}

html body.page-id-7 .entry-content h2::before {
    display: none !important;
    content: none !important;
}

html body.page-id-7 .entry-content h3 {
    font-family: 'Hiragino Mincho ProN', 'Yu Mincho', serif !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #1F2937 !important;
    margin: 24px 0 12px 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
}

html body.page-id-7 .entry-content h3::after,
html body.page-id-7 .entry-content h3::before {
    display: none !important;
    content: none !important;
}

html body.page-id-7 .entry-content p {
    font-size: 15px !important;
    line-height: 1.9 !important;
    color: #1F2937 !important;
    margin: 0 0 16px 0 !important;
}

html body.page-id-7 .entry-content ul {
    margin: 0 0 24px 0 !important;
    padding-left: 24px !important;
    list-style: disc !important;
}

html body.page-id-7 .entry-content ul li {
    font-size: 14px !important;
    line-height: 1.9 !important;
    color: #1F2937 !important;
    margin-bottom: 8px !important;
}

html body.page-id-7 .entry-content hr.wp-block-separator {
    border: none !important;
    border-top: 0.5px solid #D1D5DB !important;
    margin: 32px 0 !important;
    background: none !important;
    height: auto !important;
}

html body.page-id-7 .entry-content a {
    color: #D4A437 !important;
    text-decoration: none !important;
    border-bottom: 1px solid #D4A437 !important;
    transition: opacity 0.2s !important;
}

html body.page-id-7 .entry-content a:hover {
    opacity: 0.7 !important;
}

html body.page-id-7 .entry-content strong {
    font-weight: 600 !important;
    color: #1F2937 !important;
}

html body.page-id-7 .entry-content .has-small-font-size {
    font-size: 12px !important;
    color: #6B7280 !important;
}

@media (max-width: 767px) {
    html body.page-id-7 .entry-content {
        padding: 16px !important;
    }
    html body.page-id-7 .entry-content h2 {
        font-size: 20px !important;
    }
    html body.page-id-7 .entry-content h3 {
        font-size: 16px !important;
    }
}

/* ========================================
   Z) Single Article - Section Headings (H2 redesign 2026-04-29)
   ======================================== */
html body.single-post article .entry-content h2,
html body.single .entry-content h2 {
    background: #F8F9FA !important;
    border-left: 3px solid #D4A437 !important;
    padding: 12px 16px !important;
    margin: 32px 0 20px 0 !important;
    font-family: 'Hiragino Mincho ProN', 'Yu Mincho', serif !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #1F2937 !important;
    border-bottom: none !important;
    border-top: none !important;
    border-right: none !important;
}
html body.single-post article .entry-content h2::after,
html body.single .entry-content h2::after,
html body.single-post article .entry-content h2::before,
html body.single .entry-content h2::before {
    display: none !important;
}
@media (max-width: 767px) {
    html body.single-post article .entry-content h2,
    html body.single .entry-content h2 {
        font-size: 16px !important;
        padding: 10px 12px !important;
        margin: 24px 0 16px 0 !important;
    }
}
