/* DVTV Button Editor - Frontend Styles */

/* 基本ボタンスタイル */
.dvtv-button {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
    line-height: 1.5;
    vertical-align: middle;
}

.dvtv-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.3);
}

/* ホバーエフェクト用JavaScript */
