{"version":3,"file":"R16LVJYqr.CigvqPWm.mjs","names":["__legacyOverrideHOC_DataObserverContext","_jsx","React.Fragment","__FramerMetadata__","localizedValues","React.useContext","React.useMemo","React.Fragment","useRef","React.useId"],"sources":["https:/framerusercontent.com/modules/PhLlPMrM1XxnoFxBevpP/7bw6hQiZLo6QA43pLd1D/contactOverrides.js","https:/framerusercontent.com/modules/Q9pjmjDSI6zfhy2h74v9/S1wvHy4XKaV1gPmXZxFb/R16LVJYqr-0.js","https:/framerusercontent.com/modules/Q9pjmjDSI6zfhy2h74v9/S1wvHy4XKaV1gPmXZxFb/R16LVJYqr.js","https:/framerusercontent.com/modules/DA0WEuNsiRBI6Lj3DQqm/K6s5HitZA7P39MVLyULZ/R16LVJYqr.js"],"sourcesContent":["// /overrides/contactOverrides.ts\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect}from\"react\";import{sendGAEvent}from\"https://framerusercontent.com/modules/zuzxz0e21R6OLq3m9w7P/NmSuEHa3M94RGZKsSXh0/common.js\";// --- Meta Pixel送信用（任意） ---\nfunction sendFbPixelEvent(eventName){if(window.fbq){window.fbq(\"track\",eventName);console.log(`✅ fbq sent: ${eventName}`);}}// --- 各入力欄の onBlur イベントで入力検知（GA4） ---\nexport function TrackNameInput(){return{id:\"input-name\",onBlur:()=>sendGAEvent(\"form_field_interacted\",\"Name\")};}export function TrackEmailInput(){return{id:\"input-email\",onBlur:()=>sendGAEvent(\"form_field_interacted\",\"Email\")};}export function TrackPhoneInput(){return{id:\"input-phone\",onBlur:()=>sendGAEvent(\"form_field_interacted\",\"Phone\")};}export function TrackCompanyInput(){return{id:\"input-company\",onBlur:()=>sendGAEvent(\"form_field_interacted\",\"Company\")};}export function TrackMessageInput(){return{id:\"input-message\",onBlur:()=>sendGAEvent(\"form_field_interacted\",\"Message\")};}// --- 送信ボタンの onClick イベントで送信状況を判定 ---\nexport function TrackFormSubmission(){return{id:\"contact-submit-button\",onClick:()=>{const name=document.getElementById(\"input-name\")?.value?.trim();const email=document.getElementById(\"input-email\")?.value?.trim();const phone=document.getElementById(\"input-phone\")?.value?.trim();const company=document.getElementById(\"input-company\")?.value?.trim();const message=document.getElementById(\"input-message\")?.value?.trim();const consent=document.getElementById(\"checkbox-consent\")?.checked;const isEmpty=!name||!email||!company||!message;const isConsentUnchecked=!consent;if(isEmpty&&isConsentUnchecked){sendGAEvent(\"contact_submit_error\",\"Missing Fields & Consent\");}else if(isEmpty){sendGAEvent(\"contact_submit_error\",\"Missing Fields\");}else if(isConsentUnchecked){sendGAEvent(\"contact_submit_no_consent\",\"Consent Unchecked\");}else{sendGAEvent(\"contact_submit_success\",\"Form Submission\");sendFbPixelEvent(\"Lead\")// Meta Pixel送信\n;}}};}// --- 改善済：サンキューメッセージ監視＋ID設定 ---\nexport function ObserveFormSuccessAndSetID(){useEffect(()=>{// FramerでThank youテキストのブロックを特定\nconst target=Array.from(document.querySelectorAll(\"div\")).find(el=>el.textContent?.trim()===\"Thank you\");if(!target){console.warn(\"⚠️ Thank You block not found. Skipping observer.\");return;}// IDを付与（任意）\ntarget.id=\"thank-you-message\";console.log(\"✅ Thank You block found and ID set.\");const observer=new MutationObserver(()=>{const isVisible=window.getComputedStyle(target).display!==\"none\";if(isVisible){sendGAEvent(\"contact_submit_success\",\"Observed\");sendFbPixelEvent(\"Lead\");console.log(\"✅ Form submission success observed!\");observer.disconnect();}});observer.observe(target,{attributes:true,attributeFilter:[\"style\",\"class\"]});},[]);return{};}import{useContext as __legacyOverrideHOC_useContext}from\"react\";import{DataObserverContext as __legacyOverrideHOC_DataObserverContext}from\"framer\";export function withTrackNameInput(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...TrackNameInput(props)});};}withTrackNameInput.displayName=\"TrackNameInput\";export function withTrackEmailInput(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...TrackEmailInput(props)});};}withTrackEmailInput.displayName=\"TrackEmailInput\";export function withTrackPhoneInput(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...TrackPhoneInput(props)});};}withTrackPhoneInput.displayName=\"TrackPhoneInput\";export function withTrackCompanyInput(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...TrackCompanyInput(props)});};}withTrackCompanyInput.displayName=\"TrackCompanyInput\";export function withTrackMessageInput(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...TrackMessageInput(props)});};}withTrackMessageInput.displayName=\"TrackMessageInput\";export function withTrackFormSubmission(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...TrackFormSubmission(props)});};}withTrackFormSubmission.displayName=\"TrackFormSubmission\";export function withObserveFormSuccessAndSetID(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...ObserveFormSuccessAndSetID(props)});};}withObserveFormSuccessAndSetID.displayName=\"ObserveFormSuccessAndSetID\";\nexport const __FramerMetadata__ = {\"exports\":{\"withTrackFormSubmission\":{\"type\":\"reactHoc\",\"name\":\"withTrackFormSubmission\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"TrackPhoneInput\":{\"type\":\"override\",\"name\":\"TrackPhoneInput\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"TrackEmailInput\":{\"type\":\"override\",\"name\":\"TrackEmailInput\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withTrackPhoneInput\":{\"type\":\"reactHoc\",\"name\":\"withTrackPhoneInput\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"TrackCompanyInput\":{\"type\":\"override\",\"name\":\"TrackCompanyInput\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ObserveFormSuccessAndSetID\":{\"type\":\"override\",\"name\":\"ObserveFormSuccessAndSetID\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withTrackEmailInput\":{\"type\":\"reactHoc\",\"name\":\"withTrackEmailInput\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"TrackFormSubmission\":{\"type\":\"override\",\"name\":\"TrackFormSubmission\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withTrackMessageInput\":{\"type\":\"reactHoc\",\"name\":\"withTrackMessageInput\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"TrackNameInput\":{\"type\":\"override\",\"name\":\"TrackNameInput\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withObserveFormSuccessAndSetID\":{\"type\":\"reactHoc\",\"name\":\"withObserveFormSuccessAndSetID\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"TrackMessageInput\":{\"type\":\"override\",\"name\":\"TrackMessageInput\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withTrackCompanyInput\":{\"type\":\"reactHoc\",\"name\":\"withTrackCompanyInput\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withTrackNameInput\":{\"type\":\"reactHoc\",\"name\":\"withTrackNameInput\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./contactOverrides.map","import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Send\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Send\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Send\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (5b26096)\nimport*as localizedValues from\"./R16LVJYqr-0.js\";const valuesByLocaleId={GvUY3NnSY:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (5b26096)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{withObserveFormSuccessAndSetID}from\"https://framerusercontent.com/modules/PhLlPMrM1XxnoFxBevpP/7bw6hQiZLo6QA43pLd1D/contactOverrides.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/Q9pjmjDSI6zfhy2h74v9/S1wvHy4XKaV1gPmXZxFb/R16LVJYqr.js\";const MotionDivWithFX=withFX(motion.div);const MotionButtonWithObserveFormSuccessAndSetID176u6m3=withCodeBoundaryForOverrides(motion.button,{nodeId:\"F3yA4BSri\",override:withObserveFormSuccessAndSetID,scopeId:\"R16LVJYqr\"});const enabledGestures={F3yA4BSri:{hover:true,pressed:true}};const cycleOrder=[\"F3yA4BSri\",\"qBYvY56NJ\",\"bymTsSZ9I\",\"Yzx7A4Pyb\",\"qO6aXVZep\"];const serializationHash=\"framer-bFKcp\";const variantClassNames={bymTsSZ9I:\"framer-v-yiz4l0\",F3yA4BSri:\"framer-v-176u6m3\",qBYvY56NJ:\"framer-v-xymbsz\",qO6aXVZep:\"framer-v-di1nw0\",Yzx7A4Pyb:\"framer-v-e9fj7f\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"F3yA4BSri\",Disabled:\"bymTsSZ9I\",Error:\"qO6aXVZep\",Loading:\"qBYvY56NJ\",Success:\"Yzx7A4Pyb\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"F3yA4BSri\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"F3yA4BSri\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"qBYvY56NJ\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"qBYvY56NJ\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(MotionButtonWithObserveFormSuccessAndSetID176u6m3,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-176u6m3\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"F3yA4BSri\",ref:refBinding,style:{backgroundColor:\"rgb(34, 34, 34)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05)\",opacity:1,...style},variants:{\"F3yA4BSri-hover\":{backgroundColor:\"var(--token-a8a1fca6-4a09-4638-a518-7f5770c5b648, rgb(255, 183, 0))\",opacity:1},\"F3yA4BSri-pressed\":{backgroundColor:\"rgba(17, 17, 17, 0.9)\",opacity:1},bymTsSZ9I:{opacity:.5},qO6aXVZep:{backgroundColor:\"rgba(255, 34, 68, 0.15)\",opacity:1},Yzx7A4Pyb:{opacity:1}},...addPropertyOverrides({\"F3yA4BSri-hover\":{\"data-framer-name\":undefined},\"F3yA4BSri-pressed\":{\"data-framer-name\":undefined},bymTsSZ9I:{\"data-framer-name\":\"Disabled\"},qBYvY56NJ:{\"data-framer-name\":\"Loading\"},qO6aXVZep:{\"data-framer-name\":\"Error\"},Yzx7A4Pyb:{\"data-framer-name\":\"Success\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"送信する\"})}),className:\"framer-1v21ut2\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"onEPBeBhZ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{qO6aXVZep:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({qO6aXVZep:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Something went wrong\"})}),fonts:[\"Inter-SemiBold\"]},Yzx7A4Pyb:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Thank you\"})}),fonts:[\"Inter-SemiBold\"]}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i2dmin\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"cqwtE2d1H\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-188ulep\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"bZC_P2kCd\",style:{background:\"conic-gradient(from 180deg at 50% 50%, rgb(68, 204, 255) 0deg, rgb(68, 204, 255) 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{qBYvY56NJ:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s7fqf1\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"b5a6wuILl\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bFKcp.framer-1ax4du2, .framer-bFKcp .framer-1ax4du2 { display: block; }\",\".framer-bFKcp.framer-176u6m3 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 50px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-bFKcp .framer-1v21ut2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-bFKcp .framer-1i2dmin { aspect-ratio: 1 / 1; flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 19px); overflow: hidden; position: relative; width: 19px; }\",\".framer-bFKcp .framer-188ulep { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-bFKcp .framer-1s7fqf1 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\".framer-bFKcp.framer-v-xymbsz.framer-176u6m3, .framer-bFKcp.framer-v-yiz4l0.framer-176u6m3, .framer-bFKcp.framer-v-e9fj7f.framer-176u6m3, .framer-bFKcp.framer-v-di1nw0.framer-176u6m3 { cursor: unset; }\",\".framer-bFKcp.framer-v-xymbsz .framer-188ulep { overflow: hidden; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"qBYvY56NJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"bymTsSZ9I\":{\"layout\":[\"fixed\",\"fixed\"]},\"Yzx7A4Pyb\":{\"layout\":[\"fixed\",\"fixed\"]},\"qO6aXVZep\":{\"layout\":[\"fixed\",\"fixed\"]},\"bK0aMv0SN\":{\"layout\":[\"fixed\",\"fixed\"]},\"ivKDprgZ7\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerR16LVJYqr=withCSS(Component,css,\"framer-bFKcp\");export default FramerR16LVJYqr;FramerR16LVJYqr.displayName=\"Button\";FramerR16LVJYqr.defaultProps={height:50,width:240};addPropertyControls(FramerR16LVJYqr,{variant:{options:[\"F3yA4BSri\",\"qBYvY56NJ\",\"bymTsSZ9I\",\"Yzx7A4Pyb\",\"qO6aXVZep\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerR16LVJYqr,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerR16LVJYqr\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"50\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qBYvY56NJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bymTsSZ9I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Yzx7A4Pyb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qO6aXVZep\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bK0aMv0SN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ivKDprgZ7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"240\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}