@charset "UTF-8";
/*
Theme Name: Yushinoke Base
Author: 株式会社ゆしのけデザイン
Description: 業種別デモサイト・ワークフレーム集
Version: 1.4
*/

/* 基本設定 */
body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    background-color: #f4f7f6;
}

/* --- LINEボタンを【右下】に強制固定 --- */
.line-float-btn {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important; /* ここで右側に固定しています */
    left: auto !important;  /* 左側の設定を解除 */
    z-index: 999999 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: linear-gradient(135deg, #06c755 0%, #05b34c 100%) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 16px 28px !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    box-shadow: 0 10px 30px rgba(6, 199, 85, 0.4) !important;
    transition: all 0.4s ease !important;
    animation: y-pulse 2s infinite !important;
}

/* ボタン横の光るドット */
.line-float-btn::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
}

.line-float-btn:hover {
    transform: scale(1.1) translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(6, 199, 85, 0.6) !important;
}

/* アニメーション */
@keyframes y-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* スマホ対応 */
@media (max-width: 768px) {
    .line-float-btn {
        bottom: 20px !important;
        right: 20px !important;
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
}