/* ==========================================
   運用代行ボタン - 右上固定
   ========================================== */

.agency-button {
    position: fixed;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 3px 15px rgba(74, 144, 226, 0.4);
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.agency-button:hover {
    background: linear-gradient(135deg, #357abd 0%, #2868a8 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.6);
}

.agency-button i {
    font-size: 14px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .agency-button {
        top: 10px;
        right: 10px;
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .agency-button i {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .agency-button {
        padding: 7px 12px;
        font-size: 11px;
    }
}
