/* ----------------------------------------------------------------              
  2. 見出し装飾（H2/H3）
----------------------------------------------------------------- */

/* --- H2: 重厚なベースライン（縦線スタイル） --- */
.single .entry-content h2 {
    position: relative;
    padding: 0.5em 0 0.5em 20px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0f0f0;
    border-bottom: none;
    /* 8pxの太い縦線でセクションを明示（サーモンピンク） */
    border-left: 8px solid #E9967A; 
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin-top: 2em;
}

.single .entry-content h2::after {
    display: none;
}

/* --- H3: ガラスのような質感 --- */
.single .entry-content h3 {
    display: flex;
    align-items: center;
    padding: 0.8em 12px;
    font-size: 1.45rem;
    font-weight: 600;
    color: #e0e0e0;
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    /* 5pxの縦線でH2との親子関係を構築（サーモンピンク） */
    border-left: 5px solid #E9967A; 
    border-radius: 2px;
    margin-top: 1.5em;
}

/* --- タイトル周りのクリーンアップ（線は出さない） --- */
.entry-title::after,
.entry-header::after {
    display: none !important;
    content: none !important;
}

.entry-title {
    border: none !important;
    padding: 0 !important;
}
/* --- H4: 控えめな境界線 --- */
h4 {
    padding: 0.6em 0 0.6em 15px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #cccccc;
    border-left: 1px solid #E9967A;
    /* ドット状のアンダーラインで精密感を出す */
    background-image: linear-gradient(to right, #333 70%, rgba(255,255,255,0) 0%);
    background-position: bottom;
    background-size: 10px 1px;
    background-repeat: repeat-x;
}

/* --- H5: ターミナル風のミニマリズム --- */
h5 {
    padding: 0.5em 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
}

h5::before {
    content: '→'; /* 矢印で進行方向を示す */
    margin-right: 10px;
    color: #E9967A;
    font-family: 'JetBrains Mono', monospace;
}