@charset "UTF-8";

/* =========================================================
   トップページ 微調整
   ---------------------------------------------------------
   元デザインでは top_news_row は <div> だったが、
   WordPress 版では新着お知らせの各行を詳細記事への <a> に変更。
   リンク標準の下線・色を打ち消し、元の見た目を維持する。
========================================================= */
a.top_news_row {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
a.top_news_row:hover {
    opacity: 0.6;
}

/* お知らせが0件のときの簡易表示 */
.top_news_empty {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 300;
    font-size: 1.4rem;
    color: #1a1a1a;
}

/* =========================================================
   トップ実績カードのリンク化（動的版）
   元は <div> 構造だったカードを <a> でラップ。
   リンク標準装飾を打ち消し、カード全体をクリック可能に。
========================================================= */
a.top_project_link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

a.top_project_link:hover {
    opacity: 1;
}
