/* =======================================
   staging.css (最終CSSテスト: 画像の垂直配置修正)
   ======================================= */

/* H1との重なり対策（念のため残す） */
.c_item_wrp {
    clear: both !important;
}

/* item内の画像を囲む要素の垂直位置を強制的にトップに設定 */
.c_item_wrp .item .img {
    /* インライン要素のずれを防ぐための定番 */
    display: block !important;
    vertical-align: top !important;
}

/* 画像自体にも適用 */
.c_item_wrp .item .img img {
    vertical-align: top !important;
}

.no_hover_wrapper .item:hover, 
.no_hover_wrapper .item a:hover {
    opacity: 1 !important; /* 不透明度変化を無効化 */
    transition: none !important; /* 遷移効果を無効化 */
    cursor: default; /* カーソルをデフォルトに戻す（必要な場合） */
}

/* past-archives 系統のカテゴリ見出しに対するホバー無効化の対応 */
.no_hover_wrapper .headline .title a:hover .icon_arw:before,
.no_hover_wrapper .headline .title a:hover .icon_arw:after {
    animation: none; /* headline のアニメーションを無効化 [5] */
}