/* =========================================
   全体の囲みエリア
========================================= */
.funnel-linker-wrap {
    margin: 50px 0;
    padding: 30px 20px;
    background-color: #f4f8fa; /* 記事本文と区別する薄いブルーグレー */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* ほんのり浮き出るシャドウ */
}

/* =========================================
   誘導テキスト（マイクロコピー）
========================================= */
.funnel-linker-title {
    font-weight: 700;
    font-size: 1.15em;
    color: #1a365d;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.5;
}

/* =========================================
   カードを並べるコンテナ
========================================= */
.funnel-linker-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* =========================================
   通常のリンクカード (Level 1 -> 2用)
========================================= */
.funnel-card {
    flex: 1;
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none !important; /* リンクの下線を強制リセット */
    color: #333333 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease; /* ふわっと動くアニメーション */
    border: 1px solid #e2e8f0;
}

/* ホバー（マウスオーバー）時の浮き上がり効果 */
.funnel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
    border-color: #3182ce;
}

/* サムネイル画像 */
.funnel-card-thumb img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 18px;
    flex-shrink: 0; /* 画像が潰れるのを防ぐ */
}

/* テキストエリア */
.funnel-card-text {
    font-size: 1em;
    font-weight: 600;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* 「記事を読む ＞」というテキストを自動追加（疑似要素） */
.funnel-card-text::after {
    content: "記事を読む ＞";
    font-size: 0.85em;
    color: #3182ce;
    font-weight: bold;
    margin-top: 5px;
}

/* =========================================
   ★ キラーページ用カード (Level 2 -> 3用) ★
========================================= */
.level3-card {
    border: 2px solid #dd6b20; /* 目立つオレンジの太枠 */
    background: #fffaf0; /* 背景もほんのりオレンジにして警戒心を解く */
    padding: 20px 15px; /* 通常より少し大きく見せる */
}

/* キラーページ用ホバー効果 */
.level3-card:hover {
    border-color: #c05621;
    transform: translateY(-4px);
}

/* キラーページ用の誘導テキスト変更 */
.level3-card .funnel-card-text::after {
    content: "詳細はこちら ＞";
    color: #dd6b20;
    background: #dd6b20;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
    text-align: center;
    margin-top: 8px;
    box-shadow: 0 2px 4px rgba(221, 107, 32, 0.3);
}

/* =========================================
   スマホ表示（レスポンシブ）の調整
========================================= */
@media (max-width: 600px) {
    .funnel-linker-cards {
        flex-direction: column; /* スマホでは縦並びに */
    }
    .funnel-card-thumb img {
        width: 80px;
        height: 80px;
    }
    .funnel-card-text {
        font-size: 0.95em;
    }
}