@charset "utf-8";

/* コラム記事（single post）の追従CTA：お問い合わせ・無料デモお申込み
   PC=右下 / SP=下部。テキストは中央寄せ、「>」は右側に配置。
   H1を一定量スクロールで通過したら .is-visible でフェードイン。 */
.wcta-fab {
    position: fixed;
    z-index: 9998;
    right: 24px;
    bottom: 24px;
    min-width: 260px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #66b5ea 0%, #2f80c2 55%, #1f6aa8 100%);
    color: #fff;
    font-weight: 700;
    line-height: 1.35;
    font-size: 16px;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .28);
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity .35s ease, transform .35s ease, box-shadow .2s;
}

.wcta-fab.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wcta-fab.is-visible:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .32);
    color: #fff;
}

/* テキスト：中央寄せ */
.wcta-fab__txt {
    text-align: center;
}

/* 矢印：テキストの右側（ボタン右端）に配置。円の中央に「>」を描画 */
.wcta-fab__arw {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
}

.wcta-fab__arw::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(-58%, -50%) rotate(45deg);
}

@media (max-width: 767px) {
    .wcta-fab {
        right: 12px;
        left: 12px;
        bottom: 12px;
        min-width: 0;
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 12px;
    }
}
