/*
Theme Name: CF7 Live Studio Child
Theme URI: https://CF7LiveStudio.com
Description: Twenty Twenty-Four child theme for SaaS style.
Author: Your Name
Template: twentytwentyfour
Version: 1.0.0
*/

/* 2026-03-08 14:00:00 - UI/UX Foundation */

/* メインボタンの発光エフェクト */
.is-style-glow-button {
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
    transition: all 0.3s ease;
}

.is-style-glow-button:hover {
    box-shadow: 0 0 35px rgba(0, 102, 255, 0.6);
    transform: translateY(-2px);
}

/* テキストの発光（ロゴ用） */
.has-neon-glow {
    text-shadow: 0 0 10px rgba(0, 163, 255, 0.5);
}

/* ブログカードのホバー演出 */
.wp-block-post {
    transition: border 0.3s ease;
    border: 1px solid transparent;
}

.wp-block-post:hover {
    border: 1px solid rgba(0, 102, 255, 0.3) !important;
}