{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/pzjGBffEeZsuvpyzWiew/HlgO2yBo3w7i6OrvnPSG/rXVh_pyTC.js", "ssg:https://framerusercontent.com/modules/jdGPjb34USYBLmYGIQ1p/JanSHPBagqU6I5uoyij8/UWOUl9QNY.js", "ssg:https://framerusercontent.com/modules/b4vGUwrL6FU3fX4i4TDs/jbbbc9K64qGdfjHxG2T6/TgRQXJ_3B.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={GtZadr8MK:{hover:true},mVw1ChXZi:{hover:true}};const cycleOrder=[\"mVw1ChXZi\",\"uKDBIIQsr\",\"GtZadr8MK\"];const serializationHash=\"framer-qrkJQ\";const variantClassNames={GtZadr8MK:\"framer-v-pcqtjn\",mVw1ChXZi:\"framer-v-14uob6m\",uKDBIIQsr:\"framer-v-1o7uwy8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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={\"Variant 1\":\"mVw1ChXZi\",\"Variant 3 - Slim\":\"GtZadr8MK\",Phone:\"uKDBIIQsr\"};const getProps=({height,id,link,title,width,...props})=>{return{...props,KHhIjFoHd:title??props.KHhIjFoHd??\"\u8A73\u3057\u304F\u8AAD\u3080\",kmJ9Xo_ei:link??props.kmJ9Xo_ei,variant:humanReadableVariantMap[props.variant]??props.variant??\"mVw1ChXZi\"};};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,KHhIjFoHd,kmJ9Xo_ei,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mVw1ChXZi\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"GtZadr8MK-hover\")return true;if(baseVariant===\"GtZadr8MK\")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__*/_jsx(Link,{href:kmJ9Xo_ei,motionChild:true,nodeId:\"mVw1ChXZi\",openInNewTab:false,scopeId:\"rXVh_pyTC\",...addPropertyOverrides({GtZadr8MK:{smoothScroll:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-14uob6m\",className,classNames)} framer-vceyzc`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"mVw1ChXZi\",ref:refBinding,style:{backgroundColor:\"var(--token-d0661a69-ee5b-47ac-a2d6-5c7706a2b849, rgb(227, 82, 97))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"0px 0px 9px 0px rgba(189, 180, 212, 0.3199999928474426)\",...style},variants:{\"GtZadr8MK-hover\":{backgroundColor:\"var(--token-7a68549b-1ccd-4d71-ae76-e618112057a0, rgb(207, 74, 87))\",boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(20, 18, 18, 0.43193), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(20, 18, 18, 0.38134), 0px 10px 10px -3.75px rgba(20, 18, 18, 0.15)\"},\"mVw1ChXZi-hover\":{backgroundColor:\"var(--token-7a68549b-1ccd-4d71-ae76-e618112057a0, rgb(207, 74, 87))\",boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(20, 18, 18, 0.43193), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(20, 18, 18, 0.38134), 0px 10px 10px -3.75px rgba(20, 18, 18, 0.15)\"},GtZadr8MK:{boxShadow:\"none\"}},...addPropertyOverrides({\"GtZadr8MK-hover\":{\"data-framer-name\":undefined},\"mVw1ChXZi-hover\":{\"data-framer-name\":undefined},GtZadr8MK:{\"data-framer-name\":\"Variant 3 - Slim\"},uKDBIIQsr:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\u8A73\u3057\u304F\u8AAD\u3080\"})}),className:\"framer-o0z4fc\",\"data-framer-name\":\"\u8A73\u3057\u304F\u8AAD\u3080\",fonts:[\"FS;Plus Jakarta Sans-bold\"],layoutDependency:layoutDependency,layoutId:\"lxqE0tug7\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},text:KHhIjFoHd,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({GtZadr8MK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\u8A73\u3057\u304F\u8AAD\u3080\"})}),fonts:[\"GF;Plus Jakarta Sans-500\"]},uKDBIIQsr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\u8A73\u3057\u304F\u8AAD\u3080\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-vhvri7\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"JVmvJaDWr\",style:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40,rotate:90},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ifesrf\",\"data-framer-name\":\"arrow_right\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"LlcAj2Ni3\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15 14\"><path d=\"M 6.813 0.219 C 6.938 0.062 7.188 0.062 7.343 0.219 L 13.875 6.75 C 13.949 6.818 13.992 6.915 13.992 7.015 C 13.992 7.116 13.949 7.213 13.875 7.281 L 7.344 13.813 C 7.187 13.969 6.937 13.969 6.812 13.813 L 6.187 13.219 C 6.031 13.063 6.031 12.813 6.187 12.688 L 11.031 7.812 L 0.375 7.812 C 0.275 7.816 0.177 7.778 0.106 7.707 C 0.035 7.636 -0.004 7.538 0 7.438 L 0 6.563 C 0.003 6.357 0.169 6.191 0.375 6.188 L 11.031 6.188 L 6.187 1.345 C 6.031 1.22 6.031 0.97 6.187 0.813 L 6.813 0.22 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9050950515,withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qrkJQ.framer-vceyzc, .framer-qrkJQ .framer-vceyzc { display: block; }\",\".framer-qrkJQ.framer-14uob6m { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 20px 40px 20px 40px; position: relative; text-decoration: none; width: min-content; }\",\".framer-qrkJQ .framer-o0z4fc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-qrkJQ .framer-vhvri7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 29px; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 29px; }\",\".framer-qrkJQ .framer-1ifesrf { flex: none; height: 14px; position: relative; width: 15px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qrkJQ.framer-14uob6m, .framer-qrkJQ .framer-vhvri7 { gap: 0px; } .framer-qrkJQ.framer-14uob6m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-qrkJQ.framer-14uob6m > :first-child { margin-left: 0px; } .framer-qrkJQ.framer-14uob6m > :last-child { margin-right: 0px; } .framer-qrkJQ .framer-vhvri7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-qrkJQ .framer-vhvri7 > :first-child { margin-top: 0px; } .framer-qrkJQ .framer-vhvri7 > :last-child { margin-bottom: 0px; } }\",\".framer-qrkJQ.framer-v-1o7uwy8.framer-14uob6m { cursor: unset; padding: 10px 20px 10px 20px; }\",\".framer-qrkJQ.framer-v-pcqtjn.framer-14uob6m { padding: 8px 15px 8px 20px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 69\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"uKDBIIQsr\":{\"layout\":[\"auto\",\"auto\"]},\"GtZadr8MK\":{\"layout\":[\"auto\",\"auto\"]},\"h0067wwxV\":{\"layout\":[\"auto\",\"auto\"]},\"kB01vf_Xq\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"KHhIjFoHd\":\"title\",\"kmJ9Xo_ei\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrXVh_pyTC=withCSS(Component,css,\"framer-qrkJQ\");export default FramerrXVh_pyTC;FramerrXVh_pyTC.displayName=\"Primary Button\";FramerrXVh_pyTC.defaultProps={height:69,width:200};addPropertyControls(FramerrXVh_pyTC,{variant:{options:[\"mVw1ChXZi\",\"uKDBIIQsr\",\"GtZadr8MK\"],optionTitles:[\"Variant 1\",\"Phone\",\"Variant 3 - Slim\"],title:\"Variant\",type:ControlType.Enum},KHhIjFoHd:{defaultValue:\"\u8A73\u3057\u304F\u8AAD\u3080\",displayTextArea:false,title:\"Title\",type:ControlType.String},kmJ9Xo_ei:{title:\"Link\",type:ControlType.Link}});addFonts(FramerrXVh_pyTC,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AJVGEOXGB2ALQKAZEK2LDOLCVBCMCOIT/LDEP4R7SNNABDEG433DCQGM2A7YCBHLU/OWABOLGBAKFVLPZ756IYS6EKYKU54K3I.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NTxXUEKi4Rw.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrXVh_pyTC\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"69\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uKDBIIQsr\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"GtZadr8MK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"h0067wwxV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kB01vf_Xq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"KHhIjFoHd\\\":\\\"title\\\",\\\"kmJ9Xo_ei\\\":\\\"link\\\"}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rXVh_pyTC.map", "// Generated by Framer (7f69244)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-piOkZ\";const variantClassNames={fdQJ1Gvcz:\"framer-v-nt1604\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?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 getProps=({cSMiniBrand,cSMiniImagePNG,cSMiniName,height,id,width,...props})=>{var _ref,_ref1,_ref2;return{...props,OJ7DAlaKH:(_ref=cSMiniImagePNG!==null&&cSMiniImagePNG!==void 0?cSMiniImagePNG:props.OJ7DAlaKH)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/aHw6pFpIXcmpR6l3LeKRkBHFbU.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/aHw6pFpIXcmpR6l3LeKRkBHFbU.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/aHw6pFpIXcmpR6l3LeKRkBHFbU.jpg?scale-down-to=2048 1366w,https://framerusercontent.com/images/aHw6pFpIXcmpR6l3LeKRkBHFbU.jpg?scale-down-to=4096 2733w,https://framerusercontent.com/images/aHw6pFpIXcmpR6l3LeKRkBHFbU.jpg 3514w\"},sJDVIkl02:(_ref1=cSMiniBrand!==null&&cSMiniBrand!==void 0?cSMiniBrand:props.sJDVIkl02)!==null&&_ref1!==void 0?_ref1:\"rgba(140, 113, 63, 0.3)\",Tr0wD6ueV:(_ref2=cSMiniName!==null&&cSMiniName!==void 0?cSMiniName:props.Tr0wD6ueV)!==null&&_ref2!==void 0?_ref2:\"Project Name here\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Tr0wD6ueV,OJ7DAlaKH,sJDVIkl02,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"fdQJ1Gvcz\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-nt1604\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"fdQJ1Gvcz\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-a3969f0d-428c-4cc3-82ae-1c3ffa8bfa9c, rgb(255, 255, 255))\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,boxShadow:\"0px -0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px -2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px -10px 10px -3.75px rgba(0, 0, 0, 0.0625)\",...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-i0i01a\",layoutDependency:layoutDependency,layoutId:\"z73gwwbN9\",style:{backgroundColor:sJDVIkl02},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lrvmj2\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"YHs3iUElv\",style:{\"--border-bottom-width\":\"5px\",\"--border-color\":\"rgba(34, 34, 34, 0.2)\",\"--border-left-width\":\"5px\",\"--border-right-width\":\"5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"5px\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:668,intrinsicWidth:1222,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0)-147+5),pixelHeight:1336,pixelWidth:2444,sizes:\"227px\",...toResponsiveImage(OJ7DAlaKH)},className:\"framer-erlfsh\",\"data-framer-name\":\"Screenshot_2023_10_02_at_22_20_48\",layoutDependency:layoutDependency,layoutId:\"h8jV3sXa_\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd2e86e5-3dff-4025-8137-255b6cab7e8e, rgb(35, 37, 48)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Project Name here\"})})}),className:\"framer-1pnpclf\",fonts:[\"GF;Plus Jakarta Sans-regular\",\"GF;Plus Jakarta Sans-700\"],layoutDependency:layoutDependency,layoutId:\"xXgYZe6km\",style:{\"--extracted-r6o4lv\":\"var(--token-fd2e86e5-3dff-4025-8137-255b6cab7e8e, rgb(35, 37, 48))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Tr0wD6ueV,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-piOkZ.framer-3v33p5, .framer-piOkZ .framer-3v33p5 { display: block; }\",\".framer-piOkZ.framer-nt1604 { height: 200px; overflow: hidden; position: relative; width: 300px; will-change: var(--framer-will-change-override, transform); }\",\".framer-piOkZ .framer-i0i01a { bottom: 0px; flex: none; position: absolute; right: 0px; top: 0px; width: 239px; }\",\".framer-piOkZ .framer-1lrvmj2 { align-content: flex-start; align-items: flex-start; bottom: -6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 153px; justify-content: flex-start; overflow: visible; padding: 5px; position: absolute; right: -110px; width: 280px; }\",\".framer-piOkZ .framer-erlfsh { flex: none; height: 143px; overflow: visible; position: relative; width: 227px; }\",\".framer-piOkZ .framer-1pnpclf { bottom: 21px; flex: none; height: 126px; left: 21px; position: absolute; white-space: pre-wrap; width: 206px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-piOkZ .framer-1lrvmj2 { gap: 0px; } .framer-piOkZ .framer-1lrvmj2 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-piOkZ .framer-1lrvmj2 > :first-child { margin-left: 0px; } .framer-piOkZ .framer-1lrvmj2 > :last-child { margin-right: 0px; } }\",'.framer-piOkZ[data-border=\"true\"]::after, .framer-piOkZ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Tr0wD6ueV\":\"cSMiniName\",\"OJ7DAlaKH\":\"cSMiniImagePNG\",\"sJDVIkl02\":\"cSMiniBrand\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUWOUl9QNY=withCSS(Component,css,\"framer-piOkZ\");export default FramerUWOUl9QNY;FramerUWOUl9QNY.displayName=\"CS Mini\";FramerUWOUl9QNY.defaultProps={height:200,width:300};addPropertyControls(FramerUWOUl9QNY,{Tr0wD6ueV:{defaultValue:\"Project Name here\",displayTextArea:true,title:\"CS Mini Name\",type:ControlType.String},OJ7DAlaKH:{__defaultAssetReference:\"data:framer/asset-reference,aHw6pFpIXcmpR6l3LeKRkBHFbU.jpg?originalFilename=photo-1692544552858-1ca853c0eb67%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfGFsbHwxMHx8fHx8fDJ8fDE2OTYyOTg1MzJ8%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"CS Mini Image (PNG)\",type:ControlType.ResponsiveImage},sJDVIkl02:{defaultValue:\"rgba(140, 113, 63, 0.3)\",title:\"CS Mini Brand\",type:ControlType.Color}});addFonts(FramerUWOUl9QNY,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NTxXUEKi4Rw.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNTxXUEKi4Rw.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUWOUl9QNY\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"300\",\"framerIntrinsicHeight\":\"200\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"Tr0wD6ueV\\\":\\\"cSMiniName\\\",\\\"OJ7DAlaKH\\\":\\\"cSMiniImagePNG\\\",\\\"sJDVIkl02\\\":\\\"cSMiniBrand\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UWOUl9QNY.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import PrimaryButton from\"https://framerusercontent.com/modules/pzjGBffEeZsuvpyzWiew/HlgO2yBo3w7i6OrvnPSG/rXVh_pyTC.js\";import CSMini from\"https://framerusercontent.com/modules/jdGPjb34USYBLmYGIQ1p/JanSHPBagqU6I5uoyij8/UWOUl9QNY.js\";const CSMiniFonts=getFonts(CSMini);const TickerFonts=getFonts(Ticker);const PrimaryButtonFonts=getFonts(PrimaryButton);const cycleOrder=[\"QBZJcbTnU\",\"D_KiaIaua\",\"qDI4IsQ_V\",\"F4PcAxWEJ\",\"IyTsaAtsZ\"];const serializationHash=\"framer-fM5Pr\";const variantClassNames={D_KiaIaua:\"framer-v-18rne6o\",F4PcAxWEJ:\"framer-v-zl51m8\",IyTsaAtsZ:\"framer-v-cih63l\",QBZJcbTnU:\"framer-v-1iqxcr6\",qDI4IsQ_V:\"framer-v-qry6fl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};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={\"Desktop - Case Study\":\"qDI4IsQ_V\",\"Phone 2025\":\"IyTsaAtsZ\",\"Phone CS\":\"F4PcAxWEJ\",Desktop:\"QBZJcbTnU\",Phone:\"D_KiaIaua\"};const getProps=({cMSProject,height,id,link,width,...props})=>{return{...props,NlVQnMZYM:cMSProject??props.NlVQnMZYM??\"Project Name\",RklSEeLsv:link??props.RklSEeLsv,variant:humanReadableVariantMap[props.variant]??props.variant??\"QBZJcbTnU\"};};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,NlVQnMZYM,RklSEeLsv,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QBZJcbTnU\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"IyTsaAtsZ\")return false;return true;};const isDisplayed1=()=>{if([\"D_KiaIaua\",\"F4PcAxWEJ\",\"IyTsaAtsZ\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"qDI4IsQ_V\",\"F4PcAxWEJ\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"qDI4IsQ_V\",\"F4PcAxWEJ\"].includes(baseVariant))return true;return false;};const textContent=suffix(NlVQnMZYM,\"\u306E\u3088\u3046\u306A\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u306B\u3054\u8208\u5473\u306E\u3042\u308B\u65B9\u306F\u3001\u305C\u3072\u3054\u9023\u7D61\u304F\u3060\u3055\u3044\u3002\");return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1iqxcr6\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"QBZJcbTnU\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-9c4f1732-991e-41c5-ae4b-53329db6ba12, rgba(205, 205, 205, 0.3))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.0833333333333333px rgba(0, 0, 0, 0.15798), 0px 2.288533303243457px 2.288533303243457px -2.1666666666666665px rgba(0, 0, 0, 0.14534), 0px 10px 10px -3.25px rgba(0, 0, 0, 0.0875)\",...style},variants:{D_KiaIaua:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},F4PcAxWEJ:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},IyTsaAtsZ:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({D_KiaIaua:{\"data-framer-name\":\"Phone\"},F4PcAxWEJ:{\"data-framer-name\":\"Phone CS\"},IyTsaAtsZ:{\"data-framer-name\":\"Phone 2025\"},qDI4IsQ_V:{\"data-framer-name\":\"Desktop - Case Study\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wm0nqc\",layoutDependency:layoutDependency,layoutId:\"A4wM5ixbi\",style:{backgroundColor:\"var(--token-7f63de53-5325-4fd7-bc40-935e2c5677d7, rgb(230, 235, 236))\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-icl6xu-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"WPyrHPohP-container\",nodeId:\"WPyrHPohP\",rendersWithMotion:true,scopeId:\"TgRQXJ_3B\",style:{rotate:30},variants:{IyTsaAtsZ:{rotate:0}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:25,height:\"100%\",hoverFactor:1,id:\"WPyrHPohP\",layoutId:\"WPyrHPohP\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1o91280-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Kkug3gx2R-container\",nodeId:\"Kkug3gx2R\",rendersWithMotion:true,scopeId:\"TgRQXJ_3B\",children:/*#__PURE__*/_jsx(CSMini,{height:\"100%\",id:\"Kkug3gx2R\",layoutId:\"Kkug3gx2R\",OJ7DAlaKH:addImageAlt({src:\"https://framerusercontent.com/images/NTeL7RF1PFZPPBavd45HkmEnn0.png\",srcSet:\"https://framerusercontent.com/images/NTeL7RF1PFZPPBavd45HkmEnn0.png?scale-down-to=512 512w,https://framerusercontent.com/images/NTeL7RF1PFZPPBavd45HkmEnn0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NTeL7RF1PFZPPBavd45HkmEnn0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NTeL7RF1PFZPPBavd45HkmEnn0.png 2444w\"},\"\"),sJDVIkl02:\"rgba(140, 113, 63, 0.3)\",style:{height:\"100%\",width:\"100%\"},Tr0wD6ueV:\"Explore  \u3000 Japan  \u3000\u3000\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gt5509-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"gpKfYgZLP-container\",nodeId:\"gpKfYgZLP\",rendersWithMotion:true,scopeId:\"TgRQXJ_3B\",children:/*#__PURE__*/_jsx(CSMini,{height:\"100%\",id:\"gpKfYgZLP\",layoutId:\"gpKfYgZLP\",OJ7DAlaKH:addImageAlt({src:\"https://framerusercontent.com/images/bqzu3mItMRRlpX6vxT83GTM6LsY.png\",srcSet:\"https://framerusercontent.com/images/bqzu3mItMRRlpX6vxT83GTM6LsY.png?scale-down-to=512 512w,https://framerusercontent.com/images/bqzu3mItMRRlpX6vxT83GTM6LsY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bqzu3mItMRRlpX6vxT83GTM6LsY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bqzu3mItMRRlpX6vxT83GTM6LsY.png 2442w\"},\"\"),sJDVIkl02:\"rgba(22, 94, 227, 0.3)\",style:{height:\"100%\",width:\"100%\"},Tr0wD6ueV:\"Picchio Wildlife\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12v599y-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"B7P60D1wM-container\",nodeId:\"B7P60D1wM\",rendersWithMotion:true,scopeId:\"TgRQXJ_3B\",children:/*#__PURE__*/_jsx(CSMini,{height:\"100%\",id:\"B7P60D1wM\",layoutId:\"B7P60D1wM\",OJ7DAlaKH:addImageAlt({src:\"https://framerusercontent.com/images/Bqu96ZrwVU0WRx2JYwz2wGE1uE.png\",srcSet:\"https://framerusercontent.com/images/Bqu96ZrwVU0WRx2JYwz2wGE1uE.png?scale-down-to=512 512w,https://framerusercontent.com/images/Bqu96ZrwVU0WRx2JYwz2wGE1uE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Bqu96ZrwVU0WRx2JYwz2wGE1uE.png 1800w\"},\"\"),sJDVIkl02:\"rgba(15, 125, 92, 0.3)\",style:{height:\"100%\",width:\"100%\"},Tr0wD6ueV:\"Visit \u3000\u3000Suruga\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12debbj-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Dy6tJNjj7-container\",nodeId:\"Dy6tJNjj7\",rendersWithMotion:true,scopeId:\"TgRQXJ_3B\",children:/*#__PURE__*/_jsx(CSMini,{height:\"100%\",id:\"Dy6tJNjj7\",layoutId:\"Dy6tJNjj7\",OJ7DAlaKH:addImageAlt({src:\"https://framerusercontent.com/images/MLIbrUenKig1l7rNoIwLmDBLqnk.png\",srcSet:\"https://framerusercontent.com/images/MLIbrUenKig1l7rNoIwLmDBLqnk.png?scale-down-to=512 512w,https://framerusercontent.com/images/MLIbrUenKig1l7rNoIwLmDBLqnk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MLIbrUenKig1l7rNoIwLmDBLqnk.png 2024w\"},\"\"),sJDVIkl02:\"rgba(0, 234, 255, 0.3)\",style:{height:\"100%\",width:\"100%\"},Tr0wD6ueV:\"Sustainable Tokyo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1j26lfu-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"zawnpPlfy-container\",nodeId:\"zawnpPlfy\",rendersWithMotion:true,scopeId:\"TgRQXJ_3B\",children:/*#__PURE__*/_jsx(CSMini,{height:\"100%\",id:\"zawnpPlfy\",layoutId:\"zawnpPlfy\",OJ7DAlaKH:addImageAlt({src:\"https://framerusercontent.com/images/SU9fA89IP5uQDRg5awXzNtYBIU.jpg\",srcSet:\"https://framerusercontent.com/images/SU9fA89IP5uQDRg5awXzNtYBIU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SU9fA89IP5uQDRg5awXzNtYBIU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SU9fA89IP5uQDRg5awXzNtYBIU.jpg 1500w\"},\"\"),sJDVIkl02:\"rgba(78, 150, 0, 0.3)\",style:{height:\"100%\",width:\"100%\"},Tr0wD6ueV:\"Aomori \u3000Travel\",width:\"100%\"})})})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({D_KiaIaua:{gap:45,speed:60},IyTsaAtsZ:{gap:13,padding:0,paddingBottom:0,paddingLeft:0,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:true},speed:60}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hhk18t-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"d5yrscKAT-container\",nodeId:\"d5yrscKAT\",rendersWithMotion:true,scopeId:\"TgRQXJ_3B\",style:{rotate:30},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:25,height:\"100%\",hoverFactor:1,id:\"d5yrscKAT\",layoutId:\"d5yrscKAT\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gt5509-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"gpKfYgZLP-container\",nodeId:\"gpKfYgZLP\",rendersWithMotion:true,scopeId:\"TgRQXJ_3B\",children:/*#__PURE__*/_jsx(CSMini,{height:\"100%\",id:\"gpKfYgZLP\",layoutId:\"gpKfYgZLP\",OJ7DAlaKH:addImageAlt({src:\"https://framerusercontent.com/images/bqzu3mItMRRlpX6vxT83GTM6LsY.png\",srcSet:\"https://framerusercontent.com/images/bqzu3mItMRRlpX6vxT83GTM6LsY.png?scale-down-to=512 512w,https://framerusercontent.com/images/bqzu3mItMRRlpX6vxT83GTM6LsY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bqzu3mItMRRlpX6vxT83GTM6LsY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bqzu3mItMRRlpX6vxT83GTM6LsY.png 2442w\"},\"\"),sJDVIkl02:\"rgba(22, 94, 227, 0.3)\",style:{height:\"100%\",width:\"100%\"},Tr0wD6ueV:\"Picchio Wildlife\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-c895uk-container\",\"data-framer-name\":\"Magcul\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"FBBDmF7h0-container\",name:\"Magcul\",nodeId:\"FBBDmF7h0\",rendersWithMotion:true,scopeId:\"TgRQXJ_3B\",children:/*#__PURE__*/_jsx(CSMini,{height:\"100%\",id:\"FBBDmF7h0\",layoutId:\"FBBDmF7h0\",name:\"Magcul\",OJ7DAlaKH:addImageAlt({src:\"https://framerusercontent.com/images/es0KQsPGfPKN3rEhpxflgP2EzY.png\"},\"\"),sJDVIkl02:\"rgba(227, 22, 115, 0.3)\",style:{height:\"100%\",width:\"100%\"},Tr0wD6ueV:\"Kanagawa Magcul\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1y66h3g-container\",\"data-framer-name\":\"Fks\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"tukQRile_-container\",name:\"Fks\",nodeId:\"tukQRile_\",rendersWithMotion:true,scopeId:\"TgRQXJ_3B\",children:/*#__PURE__*/_jsx(CSMini,{height:\"100%\",id:\"tukQRile_\",layoutId:\"tukQRile_\",name:\"Fks\",OJ7DAlaKH:addImageAlt({src:\"https://framerusercontent.com/images/MGhwiWL3Iv1Rz9RJmhmE3nlHS0.png\",srcSet:\"https://framerusercontent.com/images/MGhwiWL3Iv1Rz9RJmhmE3nlHS0.png?scale-down-to=512 512w,https://framerusercontent.com/images/MGhwiWL3Iv1Rz9RJmhmE3nlHS0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MGhwiWL3Iv1Rz9RJmhmE3nlHS0.png 1790w\"},\"\"),sJDVIkl02:\"rgba(42, 172, 83, 0.3)\",style:{height:\"100%\",width:\"100%\"},Tr0wD6ueV:\"Fukushima Travel\",width:\"100%\"})})})],speed:0,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({D_KiaIaua:{gap:45,speed:20}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-35b5bk-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"J0LOh35L_-container\",nodeId:\"J0LOh35L_\",rendersWithMotion:true,scopeId:\"TgRQXJ_3B\",style:{rotate:30},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:25,height:\"100%\",hoverFactor:1,id:\"J0LOh35L_\",layoutId:\"J0LOh35L_\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1o91280-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Kkug3gx2R-container\",nodeId:\"Kkug3gx2R\",rendersWithMotion:true,scopeId:\"TgRQXJ_3B\",children:/*#__PURE__*/_jsx(CSMini,{height:\"100%\",id:\"Kkug3gx2R\",layoutId:\"Kkug3gx2R\",OJ7DAlaKH:addImageAlt({src:\"https://framerusercontent.com/images/NTeL7RF1PFZPPBavd45HkmEnn0.png\",srcSet:\"https://framerusercontent.com/images/NTeL7RF1PFZPPBavd45HkmEnn0.png?scale-down-to=512 512w,https://framerusercontent.com/images/NTeL7RF1PFZPPBavd45HkmEnn0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NTeL7RF1PFZPPBavd45HkmEnn0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NTeL7RF1PFZPPBavd45HkmEnn0.png 2444w\"},\"\"),sJDVIkl02:\"rgba(140, 113, 63, 0.3)\",style:{height:\"100%\",width:\"100%\"},Tr0wD6ueV:\"Explore  \u3000 Japan  \u3000\u3000\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5bpfcs-container\",\"data-framer-name\":\"Hidden\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Bong38nK5-container\",name:\"Hidden\",nodeId:\"Bong38nK5\",rendersWithMotion:true,scopeId:\"TgRQXJ_3B\",children:/*#__PURE__*/_jsx(CSMini,{height:\"100%\",id:\"Bong38nK5\",layoutId:\"Bong38nK5\",name:\"Hidden\",OJ7DAlaKH:addImageAlt({src:\"https://framerusercontent.com/images/VoTYko4W33Xuvf1ovupLithnMZY.svg\"},\"\"),sJDVIkl02:\"rgba(255, 128, 0, 0.3)\",style:{height:\"100%\",width:\"100%\"},Tr0wD6ueV:\"Off-\\nscreen\",width:\"100%\"})})})],speed:0,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:(componentViewport?.y||0)+227,...addPropertyOverrides({IyTsaAtsZ:{height:69,y:(componentViewport?.y||0)+((componentViewport?.height||350)*.5000000000000002-34.5)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mshc5d-container\",layoutDependency:layoutDependency,layoutId:\"hp_87CBfZ-container\",nodeId:\"hp_87CBfZ\",rendersWithMotion:true,scopeId:\"TgRQXJ_3B\",transformTemplate:transformTemplate1,...addPropertyOverrides({IyTsaAtsZ:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",id:\"hp_87CBfZ\",KHhIjFoHd:\"\u4ECA\u3059\u3050\u76F8\u8AC7\",kmJ9Xo_ei:RklSEeLsv,layoutId:\"hp_87CBfZ\",style:{height:\"100%\"},variant:\"mVw1ChXZi\",width:\"100%\",...addPropertyOverrides({F4PcAxWEJ:{KHhIjFoHd:\"\u76F8\u8AC7\u3059\u308B\"},IyTsaAtsZ:{variant:\"uKDBIIQsr\"},qDI4IsQ_V:{KHhIjFoHd:\"\u76F8\u8AC7\u3059\u308B\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l90ew\",layoutDependency:layoutDependency,layoutId:\"uW1zXECiU\",style:{backgroundColor:\"var(--token-a3969f0d-428c-4cc3-82ae-1c3ffa8bfa9c, rgb(255, 255, 255))\",boxShadow:\"0px 0.8002510761181474px 4.001255380590737px -0.25px rgba(0, 0, 0, 0.03972), 0px 2.1792961931685566px 10.896480965842784px -0.5px rgba(0, 0, 0, 0.04355), 0px 4.784945682594844px 23.924728412974222px -0.75px rgba(0, 0, 0, 0.05079), 0px 10.621486890826201px 53.10743445413101px -1px rgba(0, 0, 0, 0.067), 0px 27px 135px -1.25px rgba(0, 0, 0, 0.1125)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x33nht\",layoutDependency:layoutDependency,layoutId:\"Nsr6byQ8T\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd2e86e5-3dff-4025-8137-255b6cab7e8e, rgb(35, 37, 48)))\"},children:\"\u30A4\u30F3\u30D0\u30A6\u30F3\u30C9\u96C6\u5BA2\u306A\u3089\u3001\u78BA\u304B\u306A\u5B9F\u7E3E\u30FB\u4FE1\u983C\u3068\u71B1\u610F\u306E\u3042\u308B\u79C1\u305F\u3061\u306B\u304A\u4EFB\u305B\u304F\u3060\u3055\u3044\uFF01\"})}),className:\"framer-1spa5q3\",\"data-framer-name\":\"\u30A4\u30F3\u30D0\u30A6\u30F3\u30C9\u696D\u754C\u306E\u8981\u671B\u3092\u6E80\u305F\u3057\u3066\u3044\u304F\",fonts:[\"FS;Plus Jakarta Sans-bold\"],layoutDependency:layoutDependency,layoutId:\"qAnt3VIXI\",style:{\"--extracted-r6o4lv\":\"var(--token-fd2e86e5-3dff-4025-8137-255b6cab7e8e, rgb(35, 37, 48))\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({D_KiaIaua:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd2e86e5-3dff-4025-8137-255b6cab7e8e, rgb(35, 37, 48)))\"},children:\"\u30A4\u30F3\u30D0\u30A6\u30F3\u30C9\u96C6\u5BA2\u306A\u3089\u3001\u78BA\u304B\u306A\u5B9F\u7E3E\u30FB\u4FE1\u983C\u3068\u71B1\u610F\u306E\u3042\u308B\u79C1\u305F\u3061\u306B\u304A\u4EFB\u305B\u304F\u3060\u3055\u3044\uFF01\"})})},IyTsaAtsZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd2e86e5-3dff-4025-8137-255b6cab7e8e, rgb(35, 37, 48)))\"},children:\"\u30A4\u30F3\u30D0\u30A6\u30F3\u30C9\u96C6\u5BA2\u306A\u3089\u3001\u78BA\u304B\u306A\u5B9F\u7E3E\u30FB\u4FE1\u983C\u3068\u71B1\u610F\u306E\u3042\u308B\u79C1\u305F\u3061\u306B\u304A\u4EFB\u305B\u304F\u3060\u3055\u3044\uFF01\"})})}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oun20q\",layoutDependency:layoutDependency,layoutId:\"n5lTri8EC\",children:isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d47mi\",layoutDependency:layoutDependency,layoutId:\"yZYze8SSt\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd2e86e5-3dff-4025-8137-255b6cab7e8e, rgb(35, 37, 48)))\"},children:\"Project Name\"})}),className:\"framer-19pnt6o\",\"data-framer-name\":\"Top Title\",fonts:[\"GF;Plus Jakarta Sans-700\"],layoutDependency:layoutDependency,layoutId:\"UVCG7jH5u\",style:{\"--extracted-r6o4lv\":\"var(--token-fd2e86e5-3dff-4025-8137-255b6cab7e8e, rgb(35, 37, 48))\"},text:NlVQnMZYM,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({F4PcAxWEJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd2e86e5-3dff-4025-8137-255b6cab7e8e, rgb(35, 37, 48)))\"},children:\"Project Name?\"})}),text:textContent},qDI4IsQ_V:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd2e86e5-3dff-4025-8137-255b6cab7e8e, rgb(35, 37, 48)))\"},children:\"JA-CHECK-Project Name\u307F\u305F\u3044\u306A\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u3092\u3092\u6C17\u8EFD\u306B\u76F8\u8AC7\u3057\u3088\u3046\"})}),text:textContent}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd2e86e5-3dff-4025-8137-255b6cab7e8e, rgb(35, 37, 48)))\"},children:\"?\"})}),className:\"framer-t7wizx\",\"data-framer-name\":\"Top Title\",fonts:[\"GF;Plus Jakarta Sans-700\"],layoutDependency:layoutDependency,layoutId:\"S6auhsK9z\",style:{\"--extracted-r6o4lv\":\"var(--token-fd2e86e5-3dff-4025-8137-255b6cab7e8e, rgb(35, 37, 48))\",opacity:0},verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||800)-704),pixelHeight:2e3,pixelWidth:3e3,sizes:\"1110px\",src:\"https://framerusercontent.com/images/VNO8Mjt7c3CRMY4rzRRr7h70o.png\",srcSet:\"https://framerusercontent.com/images/VNO8Mjt7c3CRMY4rzRRr7h70o.png?scale-down-to=512 512w,https://framerusercontent.com/images/VNO8Mjt7c3CRMY4rzRRr7h70o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VNO8Mjt7c3CRMY4rzRRr7h70o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VNO8Mjt7c3CRMY4rzRRr7h70o.png 3000w\"},className:\"framer-xcztaw\",\"data-framer-name\":\"jt_pasokon\",layoutDependency:layoutDependency,layoutId:\"D7MBVr71d\",style:{rotate:-9},...addPropertyOverrides({D_KiaIaua:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+119.9979),pixelHeight:2e3,pixelWidth:3e3,sizes:\"718px\",src:\"https://framerusercontent.com/images/VNO8Mjt7c3CRMY4rzRRr7h70o.png\",srcSet:\"https://framerusercontent.com/images/VNO8Mjt7c3CRMY4rzRRr7h70o.png?scale-down-to=512 512w,https://framerusercontent.com/images/VNO8Mjt7c3CRMY4rzRRr7h70o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VNO8Mjt7c3CRMY4rzRRr7h70o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VNO8Mjt7c3CRMY4rzRRr7h70o.png 3000w\"}},F4PcAxWEJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||800)*.4562500000000002-167.5)),pixelHeight:2e3,pixelWidth:3e3,sizes:\"502px\",src:\"https://framerusercontent.com/images/VNO8Mjt7c3CRMY4rzRRr7h70o.png\",srcSet:\"https://framerusercontent.com/images/VNO8Mjt7c3CRMY4rzRRr7h70o.png?scale-down-to=512 512w,https://framerusercontent.com/images/VNO8Mjt7c3CRMY4rzRRr7h70o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VNO8Mjt7c3CRMY4rzRRr7h70o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VNO8Mjt7c3CRMY4rzRRr7h70o.png 3000w\"},transformTemplate:transformTemplate2}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fM5Pr.framer-1v28c98, .framer-fM5Pr .framer-1v28c98 { display: block; }\",\".framer-fM5Pr.framer-1iqxcr6 { height: 800px; overflow: hidden; position: relative; width: 1122px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fM5Pr .framer-1wm0nqc { bottom: 0px; flex: none; height: 545px; left: 0px; overflow: hidden; position: absolute; right: 0px; }\",\".framer-fM5Pr .framer-icl6xu-container { bottom: 81px; flex: none; height: 237px; left: -105px; position: absolute; width: 1155px; }\",\".framer-fM5Pr .framer-1o91280-container, .framer-fM5Pr .framer-1gt5509-container, .framer-fM5Pr .framer-12v599y-container, .framer-fM5Pr .framer-12debbj-container, .framer-fM5Pr .framer-1j26lfu-container, .framer-fM5Pr .framer-c895uk-container, .framer-fM5Pr .framer-1y66h3g-container, .framer-fM5Pr .framer-5bpfcs-container { height: 200px; position: relative; width: 300px; }\",\".framer-fM5Pr .framer-1hhk18t-container { bottom: 13px; flex: none; height: 230px; left: -410px; position: absolute; width: 1122px; }\",\".framer-fM5Pr .framer-35b5bk-container { bottom: -207px; flex: none; height: 230px; left: -478px; position: absolute; width: 1122px; }\",\".framer-fM5Pr .framer-mshc5d-container { flex: none; height: 56px; left: 50%; position: absolute; top: 227px; width: auto; z-index: 10; }\",\".framer-fM5Pr .framer-l90ew { flex: none; height: 255px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-fM5Pr .framer-1x33nht { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-fM5Pr .framer-1spa5q3 { flex: none; height: 122px; position: relative; white-space: pre-wrap; width: 808px; word-break: break-word; word-wrap: break-word; }\",\".framer-fM5Pr .framer-1oun20q { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 8px; height: 200px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-fM5Pr .framer-d47mi { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 308px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-fM5Pr .framer-19pnt6o, .framer-fM5Pr .framer-t7wizx { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-fM5Pr .framer-xcztaw { aspect-ratio: 1.5 / 1; bottom: -36px; flex: none; height: var(--framer-aspect-ratio-supported, 740px); overflow: visible; position: absolute; right: -246px; width: 1110px; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fM5Pr .framer-1x33nht, .framer-fM5Pr .framer-1oun20q, .framer-fM5Pr .framer-d47mi { gap: 0px; } .framer-fM5Pr .framer-1x33nht > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-fM5Pr .framer-1x33nht > :first-child, .framer-fM5Pr .framer-1oun20q > :first-child, .framer-fM5Pr .framer-d47mi > :first-child { margin-left: 0px; } .framer-fM5Pr .framer-1x33nht > :last-child, .framer-fM5Pr .framer-1oun20q > :last-child, .framer-fM5Pr .framer-d47mi > :last-child { margin-right: 0px; } .framer-fM5Pr .framer-1oun20q > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-fM5Pr .framer-d47mi > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",\".framer-fM5Pr.framer-v-18rne6o.framer-1iqxcr6, .framer-fM5Pr.framer-v-zl51m8.framer-1iqxcr6 { width: 390px; will-change: unset; }\",\".framer-fM5Pr.framer-v-18rne6o .framer-icl6xu-container { bottom: 22px; left: -171px; right: -561px; width: unset; }\",\".framer-fM5Pr.framer-v-18rne6o .framer-1hhk18t-container { bottom: -161px; left: -340px; right: -392px; width: unset; }\",\".framer-fM5Pr.framer-v-18rne6o .framer-mshc5d-container { z-index: 1; }\",\".framer-fM5Pr.framer-v-18rne6o .framer-1x33nht { bottom: unset; height: 122px; padding: 0px 25px 0px 25px; right: unset; top: 52px; width: 100%; z-index: 1; }\",\".framer-fM5Pr.framer-v-18rne6o .framer-1spa5q3 { width: 100%; }\",\".framer-fM5Pr.framer-v-18rne6o .framer-xcztaw { bottom: unset; height: var(--framer-aspect-ratio-supported, 479px); right: -302px; top: 120px; width: 718px; }\",\".framer-fM5Pr.framer-v-qry6fl .framer-l90ew { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; }\",\".framer-fM5Pr.framer-v-qry6fl .framer-1x33nht { bottom: unset; flex-direction: column; height: 120px; left: unset; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-fM5Pr.framer-v-qry6fl .framer-1oun20q { flex: none; flex-direction: column; gap: 0px; height: min-content; order: 0; width: 100%; }\",\".framer-fM5Pr.framer-v-qry6fl .framer-d47mi { flex: none; flex-wrap: wrap; height: min-content; order: 0; padding: 0px 25px 0px 25px; width: 100%; }\",\".framer-fM5Pr.framer-v-qry6fl .framer-19pnt6o { flex: 1 0 0px; max-width: 64%; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fM5Pr.framer-v-qry6fl .framer-l90ew, .framer-fM5Pr.framer-v-qry6fl .framer-1x33nht, .framer-fM5Pr.framer-v-qry6fl .framer-1oun20q { gap: 0px; } .framer-fM5Pr.framer-v-qry6fl .framer-l90ew > *, .framer-fM5Pr.framer-v-qry6fl .framer-1x33nht > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fM5Pr.framer-v-qry6fl .framer-l90ew > :first-child, .framer-fM5Pr.framer-v-qry6fl .framer-1x33nht > :first-child, .framer-fM5Pr.framer-v-qry6fl .framer-1oun20q > :first-child { margin-top: 0px; } .framer-fM5Pr.framer-v-qry6fl .framer-l90ew > :last-child, .framer-fM5Pr.framer-v-qry6fl .framer-1x33nht > :last-child, .framer-fM5Pr.framer-v-qry6fl .framer-1oun20q > :last-child { margin-bottom: 0px; } .framer-fM5Pr.framer-v-qry6fl .framer-1oun20q > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-fM5Pr.framer-v-zl51m8 .framer-icl6xu-container { bottom: 39px; left: -115px; right: -617px; width: unset; }\",\".framer-fM5Pr.framer-v-zl51m8 .framer-1hhk18t-container { bottom: -133px; left: -292px; right: -440px; width: unset; }\",\".framer-fM5Pr.framer-v-zl51m8 .framer-l90ew { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: space-evenly; padding: 0px; }\",\".framer-fM5Pr.framer-v-zl51m8 .framer-1x33nht { bottom: unset; flex-direction: column; height: min-content; justify-content: flex-start; left: unset; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-fM5Pr.framer-v-zl51m8 .framer-1oun20q { flex: none; gap: 0px; height: min-content; order: 0; padding: 0px 25px 0px 25px; width: 100%; }\",\".framer-fM5Pr.framer-v-zl51m8 .framer-d47mi { align-content: flex-start; align-items: flex-start; height: min-content; order: 1; }\",\".framer-fM5Pr.framer-v-zl51m8 .framer-19pnt6o { max-width: 285px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-fM5Pr.framer-v-zl51m8 .framer-xcztaw { bottom: unset; height: var(--framer-aspect-ratio-supported, 335px); right: -195px; top: 46%; width: 502px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fM5Pr.framer-v-zl51m8 .framer-l90ew, .framer-fM5Pr.framer-v-zl51m8 .framer-1x33nht, .framer-fM5Pr.framer-v-zl51m8 .framer-1oun20q { gap: 0px; } .framer-fM5Pr.framer-v-zl51m8 .framer-l90ew > *, .framer-fM5Pr.framer-v-zl51m8 .framer-l90ew > :first-child, .framer-fM5Pr.framer-v-zl51m8 .framer-l90ew > :last-child { margin: 0px; } .framer-fM5Pr.framer-v-zl51m8 .framer-1x33nht > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fM5Pr.framer-v-zl51m8 .framer-1x33nht > :first-child { margin-top: 0px; } .framer-fM5Pr.framer-v-zl51m8 .framer-1x33nht > :last-child { margin-bottom: 0px; } .framer-fM5Pr.framer-v-zl51m8 .framer-1oun20q > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-fM5Pr.framer-v-zl51m8 .framer-1oun20q > :first-child { margin-left: 0px; } .framer-fM5Pr.framer-v-zl51m8 .framer-1oun20q > :last-child { margin-right: 0px; } }\",\".framer-fM5Pr.framer-v-cih63l.framer-1iqxcr6 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 350px; justify-content: center; padding: 0px; width: 390px; will-change: unset; }\",\".framer-fM5Pr.framer-v-cih63l .framer-1wm0nqc { bottom: unset; height: 255px; left: unset; order: 1; position: relative; right: unset; width: 100%; }\",\".framer-fM5Pr.framer-v-cih63l .framer-icl6xu-container { bottom: 22px; height: 139px; left: -48px; right: -149px; width: unset; }\",\".framer-fM5Pr.framer-v-cih63l .framer-mshc5d-container { height: auto; left: unset; order: 2; right: 0px; top: 50%; z-index: 1; }\",\".framer-fM5Pr.framer-v-cih63l .framer-l90ew { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: unset; order: 0; padding: 0px; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-fM5Pr.framer-v-cih63l .framer-1x33nht { bottom: unset; height: min-content; left: unset; padding: 0px 25px 0px 25px; position: relative; right: unset; top: unset; width: 100%; z-index: 1; }\",\".framer-fM5Pr.framer-v-cih63l .framer-1spa5q3 { flex: 1 0 0px; height: auto; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fM5Pr.framer-v-cih63l.framer-1iqxcr6, .framer-fM5Pr.framer-v-cih63l .framer-l90ew { gap: 0px; } .framer-fM5Pr.framer-v-cih63l.framer-1iqxcr6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-fM5Pr.framer-v-cih63l.framer-1iqxcr6 > :first-child { margin-top: 0px; } .framer-fM5Pr.framer-v-cih63l.framer-1iqxcr6 > :last-child { margin-bottom: 0px; } .framer-fM5Pr.framer-v-cih63l .framer-l90ew > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-fM5Pr.framer-v-cih63l .framer-l90ew > :first-child { margin-left: 0px; } .framer-fM5Pr.framer-v-cih63l .framer-l90ew > :last-child { margin-right: 0px; } }\",'.framer-fM5Pr[data-border=\"true\"]::after, .framer-fM5Pr [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 1122\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"D_KiaIaua\":{\"layout\":[\"fixed\",\"fixed\"]},\"qDI4IsQ_V\":{\"layout\":[\"fixed\",\"fixed\"]},\"F4PcAxWEJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"IyTsaAtsZ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"NlVQnMZYM\":\"cMSProject\",\"RklSEeLsv\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTgRQXJ_3B=withCSS(Component,css,\"framer-fM5Pr\");export default FramerTgRQXJ_3B;FramerTgRQXJ_3B.displayName=\"Global CTA v2\";FramerTgRQXJ_3B.defaultProps={height:800,width:1122};addPropertyControls(FramerTgRQXJ_3B,{variant:{options:[\"QBZJcbTnU\",\"D_KiaIaua\",\"qDI4IsQ_V\",\"F4PcAxWEJ\",\"IyTsaAtsZ\"],optionTitles:[\"Desktop\",\"Phone\",\"Desktop - Case Study\",\"Phone CS\",\"Phone 2025\"],title:\"Variant\",type:ControlType.Enum},NlVQnMZYM:{defaultValue:\"Project Name\",displayTextArea:false,title:\"CMS Project\",type:ControlType.String},RklSEeLsv:{title:\"Link\",type:ControlType.Link}});addFonts(FramerTgRQXJ_3B,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AJVGEOXGB2ALQKAZEK2LDOLCVBCMCOIT/LDEP4R7SNNABDEG433DCQGM2A7YCBHLU/OWABOLGBAKFVLPZ756IYS6EKYKU54K3I.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNTxXUEKi4Rw.woff2\",weight:\"700\"}]},...CSMiniFonts,...TickerFonts,...PrimaryButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTgRQXJ_3B\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1122\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"D_KiaIaua\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qDI4IsQ_V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"F4PcAxWEJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IyTsaAtsZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"NlVQnMZYM\\\":\\\"cMSProject\\\",\\\"RklSEeLsv\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"800\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "KHhIjFoHd", "kmJ9Xo_ei", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "Link", "u", "RichText2", "SVG", "css", "FramerrXVh_pyTC", "withCSS", "rXVh_pyTC_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "cSMiniBrand", "cSMiniImagePNG", "cSMiniName", "height", "id", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "Tr0wD6ueV", "OJ7DAlaKH", "sJDVIkl02", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerUWOUl9QNY", "withCSS", "UWOUl9QNY_default", "addPropertyControls", "ControlType", "addFonts", "CSMiniFonts", "getFonts", "UWOUl9QNY_default", "TickerFonts", "Ticker", "PrimaryButtonFonts", "rXVh_pyTC_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "transformTemplate1", "_", "transformTemplate2", "suffix", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "cMSProject", "height", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "NlVQnMZYM", "RklSEeLsv", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "textContent", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerTgRQXJ_3B", "withCSS", "TgRQXJ_3B_default", "addPropertyControls", "ControlType", "addFonts"]
}
