{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js", "ssg:https://framerusercontent.com/modules/247QOY3xg0ytG8EYpJuZ/lc63AeUEpCDrAWMPFoKo/b4OQsVBsC.js", "ssg:https://framerusercontent.com/modules/xkzULi5wdnzZlFUS5bor/bOVXnc61m2J9NoxOHYWB/rK_AHDjER.js", "ssg:https://framerusercontent.com/modules/5vnDE8GecJ4O63kwDs9l/tFr9OJI6cb7ddlE0gWpb/aFR96jTcg.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export function Video(props){const newProps=getProps(props);return /*#__PURE__*/ _jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{}) // It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===SrcType.Url)return srcUrl+fragment;if(srcType===SrcType.Video)return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasChildren=Children.count(slots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return slots.map(index=>/*#__PURE__*/createRef());},[slots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=slots.length-1;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[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\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);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=slots===null||slots===void 0?void 0:slots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:slots===null||slots===void 0?void 0:slots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */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}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(slots===null||slots===void 0?void 0:slots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},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\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},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},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},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;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (3104885)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={hQFm8qARZ:{hover:true,pressed:true}};const cycleOrder=[\"hQFm8qARZ\"];const serializationHash=\"framer-M3L3s\";const variantClassNames={hQFm8qARZ:\"framer-v-1iqqvr1\"};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={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};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(React.Fragment);const getProps=({height,id,title,width,...props})=>{var _ref;return{...props,Nl5LoIyur:(_ref=title!==null&&title!==void 0?title:props.Nl5LoIyur)!==null&&_ref!==void 0?_ref:\"\u767B\u9332\u30FB\u8CC7\u6599\u8ACB\u6C42\"};};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,Nl5LoIyur,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hQFm8qARZ\",enabledGestures,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__*/_jsx(motion.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1iqqvr1\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"hQFm8qARZ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",background:\"linear-gradient(287deg, hsl(337, 100%, 61%) 0%, hsl(36, 100%, 59%) 100%)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,boxShadow:\"none\",...style},variants:{\"hQFm8qARZ-hover\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(34, 34, 34, 0.4)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",background:\"linear-gradient(339deg, hsl(335, 94%, 48%) 0%, hsl(43, 98%, 52%) 100%)\",boxShadow:\"0px 0.6021873017743928px 2.0474368260329356px -1.25px hsla(48, 100%, 83%, 0.28796), 0px 2.288533303243457px 7.781013231027754px -2.5px hsla(48, 100%, 83%, 0.25423), 0px 10px 34px -3.75px hsla(48, 100%, 83%, 0.1)\"},\"hQFm8qARZ-pressed\":{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(34, 34, 34, 0.4)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(339deg, hsl(335, 94%, 48%) 0%, hsl(36, 100%, 50%) 100%)\"}},...addPropertyOverrides({\"hQFm8qARZ-hover\":{\"data-border\":true,\"data-framer-name\":undefined},\"hQFm8qARZ-pressed\":{\"data-border\":true,\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTcwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\u30A6\u30A7\u30A4\u30C6\u30A3\u30F3\u30B0\u30EA\u30B9\u30C8\u306B\u767B\u9332\u3059\u308B\"})}),className:\"framer-w9v7l\",fonts:[\"GF;Noto Sans JP-700\"],layoutDependency:layoutDependency,layoutId:\"lwYXIjaiX\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",textShadow:\"0px 1px 1px rgba(0, 0, 0, 0.15)\"},text:Nl5LoIyur,variants:{\"hQFm8qARZ-hover\":{textShadow:\"0px 2px 3px rgba(0, 0, 0, 0.25)\"},\"hQFm8qARZ-pressed\":{textShadow:\"0px 0px 1px rgba(0, 0, 0, 0.23)\"}},verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-M3L3s.framer-1d4cgq3, .framer-M3L3s .framer-1d4cgq3 { display: block; }\",\".framer-M3L3s.framer-1iqqvr1 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; padding: 20px 40px 20px 40px; position: relative; width: min-content; }\",\".framer-M3L3s .framer-w9v7l { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-M3L3s.framer-1iqqvr1 { gap: 0px; } .framer-M3L3s.framer-1iqqvr1 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-M3L3s.framer-1iqqvr1 > :first-child { margin-left: 0px; } .framer-M3L3s.framer-1iqqvr1 > :last-child { margin-right: 0px; } }\",'.framer-M3L3s[data-border=\"true\"]::after, .framer-M3L3s [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 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"AdNn9mACE\":{\"layout\":[\"auto\",\"auto\"]},\"PSHklFvLb\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"Nl5LoIyur\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerb4OQsVBsC=withCSS(Component,css,\"framer-M3L3s\");export default Framerb4OQsVBsC;Framerb4OQsVBsC.displayName=\"AI Btn-waitinglist July\";Framerb4OQsVBsC.defaultProps={height:200,width:200};addPropertyControls(Framerb4OQsVBsC,{Nl5LoIyur:{defaultValue:\"\u767B\u9332\u30FB\u8CC7\u6599\u8ACB\u6C42\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(Framerb4OQsVBsC,[{explicitInter:true,fonts:[{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFPYk757Y0rw-oME.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerb4OQsVBsC\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AdNn9mACE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"PSHklFvLb\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"Nl5LoIyur\\\":\\\"title\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./b4OQsVBsC.map", "// Generated by Framer (0c5492c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/9ma1j9RNTqHThD2PShMP/L15IKJuoyfmeMynbxeSU/L8WlPMxu2.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/LFM5FlFQwO2s8fgW60g6/pti6gxLWEM7ohZMzEdFu/Plhv5Vccy.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/cfxP4mZvEl8nEFtWujld/FJvR6KqGyKtRIJU1OK6e/Vkdknv1jR.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/jM906uxVFVYBxBDEzK9i/DE0ab8bRulsNyYszCpBp/WQQwIyMi_.js\";const MaterialFonts=getFonts(Material);const cycleOrder=[\"j2YwnOjuY\",\"BQocXg6Lk\",\"vPu2YS9pS\",\"I_8zaGBuO\",\"VI7jmz4Ib\",\"CThjOgx3u\"];const serializationHash=\"framer-TAK5T\";const variantClassNames={BQocXg6Lk:\"framer-v-mkp1h3\",CThjOgx3u:\"framer-v-57w8x\",I_8zaGBuO:\"framer-v-71psyo\",j2YwnOjuY:\"framer-v-tw7umk\",VI7jmz4Ib:\"framer-v-tjhdsh\",vPu2YS9pS:\"framer-v-17bb3yn\"};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 transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.98,skewX:0,skewY:0,transition:transition2};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition2};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate3=(_,t)=>`translateY(-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={\"Variant 1\":\"j2YwnOjuY\",\"Variant 2\":\"BQocXg6Lk\",\"Variant 3\":\"vPu2YS9pS\",\"Variant 4\":\"I_8zaGBuO\",\"Variant 5\":\"VI7jmz4Ib\",\"Variant 6\":\"CThjOgx3u\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"j2YwnOjuY\"};};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:\"j2YwnOjuY\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapgldsvt=activeVariantCallback(async(...args)=>{setVariant(\"j2YwnOjuY\");});const onTap1r58bkc=activeVariantCallback(async(...args)=>{setVariant(\"BQocXg6Lk\");});const onTap1iqjsp5=activeVariantCallback(async(...args)=>{setVariant(\"vPu2YS9pS\");});const onTap519poo=activeVariantCallback(async(...args)=>{setVariant(\"I_8zaGBuO\");});const onTapfq9qpj=activeVariantCallback(async(...args)=>{setVariant(\"VI7jmz4Ib\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"VI7jmz4Ib\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"I_8zaGBuO\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"BQocXg6Lk\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"CThjOgx3u\")return true;return false;};const isDisplayed4=()=>{if([\"BQocXg6Lk\",\"vPu2YS9pS\",\"I_8zaGBuO\",\"CThjOgx3u\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if(baseVariant===\"vPu2YS9pS\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"VI7jmz4Ib\")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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-tw7umk\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"j2YwnOjuY\",ref:refBinding,style:{...style},...addPropertyOverrides({BQocXg6Lk:{\"data-framer-name\":\"Variant 2\"},CThjOgx3u:{\"data-framer-name\":\"Variant 6\"},I_8zaGBuO:{\"data-framer-name\":\"Variant 4\"},VI7jmz4Ib:{\"data-framer-name\":\"Variant 5\"},vPu2YS9pS:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m5qel6\",layoutDependency:layoutDependency,layoutId:\"kNIJCEPyh\",style:{backgroundColor:\"rgba(204, 238, 255, 0)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-odevq7\",layoutDependency:layoutDependency,layoutId:\"pWO4OmQS6\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-450pg3\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"jdlOdIdyz\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 56, 132)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bedca2f6-f4cf-411a-853b-67e489b58af9, rgb(255, 56, 132))\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,boxShadow:\"2px 2px 2px 0px rgba(0, 0, 0, 0.25)\"},variants:{BQocXg6Lk:{backgroundColor:\"rgba(255, 56, 132, 0.1)\"},CThjOgx3u:{backgroundColor:\"rgba(226, 117, 15, 0.1)\"},I_8zaGBuO:{backgroundColor:\"rgba(255, 56, 132, 0.1)\"},VI7jmz4Ib:{backgroundColor:\"rgba(255, 56, 132, 0.1)\"},vPu2YS9pS:{backgroundColor:\"rgba(255, 56, 132, 0.1)\"}},whileTap:animation,...addPropertyOverrides({BQocXg6Lk:{\"data-highlight\":true,onTap:onTapgldsvt},I_8zaGBuO:{\"data-highlight\":true,onTap:onTapgldsvt},VI7jmz4Ib:{\"data-highlight\":true,onTap:onTapgldsvt},vPu2YS9pS:{\"data-highlight\":true,onTap:onTapgldsvt}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10gg8l2-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"CRrr86dJc-container\",nodeId:\"CRrr86dJc\",rendersWithMotion:true,scopeId:\"rK_AHDjER\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Cloud\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"CRrr86dJc\",layoutId:\"CRrr86dJc\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({BQocXg6Lk:{color:\"var(--token-bedca2f6-f4cf-411a-853b-67e489b58af9, rgb(255, 56, 132))\"},CThjOgx3u:{color:\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},I_8zaGBuO:{color:\"var(--token-bedca2f6-f4cf-411a-853b-67e489b58af9, rgb(255, 56, 132))\"},VI7jmz4Ib:{color:\"var(--token-bedca2f6-f4cf-411a-853b-67e489b58af9, rgb(255, 56, 132))\"},vPu2YS9pS:{color:\"var(--token-bedca2f6-f4cf-411a-853b-67e489b58af9, rgb(255, 56, 132))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"SaaS\u3000\u3000\u3000\u30DE\u30CD\u30B8\u30E1\u30F3\u30C8\"})}),className:\"framer-10lxvwp\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"phVlYOgHc\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,variants:{BQocXg6Lk:{\"--extracted-r6o4lv\":\"rgb(255, 56, 132)\"},CThjOgx3u:{\"--extracted-r6o4lv\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},I_8zaGBuO:{\"--extracted-r6o4lv\":\"var(--token-bedca2f6-f4cf-411a-853b-67e489b58af9, rgb(255, 56, 132))\"},VI7jmz4Ib:{\"--extracted-r6o4lv\":\"var(--token-bedca2f6-f4cf-411a-853b-67e489b58af9, rgb(255, 56, 132))\"},vPu2YS9pS:{\"--extracted-r6o4lv\":\"var(--token-bedca2f6-f4cf-411a-853b-67e489b58af9, rgb(255, 56, 132))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BQocXg6Lk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 56, 132))\"},children:\"SaaS\u3000\u3000\u3000\u30DE\u30CD\u30B8\u30E1\u30F3\u30C8\"})})},CThjOgx3u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15)))\"},children:\"SaaS\u3000\u3000\u3000\u30DE\u30CD\u30B8\u30E1\u30F3\u30C8\"})})},I_8zaGBuO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bedca2f6-f4cf-411a-853b-67e489b58af9, rgb(255, 56, 132)))\"},children:\"SaaS\u3000\u3000\u3000\u30DE\u30CD\u30B8\u30E1\u30F3\u30C8\"})})},VI7jmz4Ib:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bedca2f6-f4cf-411a-853b-67e489b58af9, rgb(255, 56, 132)))\"},children:\"SaaS\u3000\u3000\u3000\u30DE\u30CD\u30B8\u30E1\u30F3\u30C8\"})})},vPu2YS9pS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bedca2f6-f4cf-411a-853b-67e489b58af9, rgb(255, 56, 132)))\"},children:\"SaaS\u3000\u3000\u3000\u30DE\u30CD\u30B8\u30E1\u30F3\u30C8\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yml41q\",\"data-border\":true,\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"FgG4E5AcI\",onTap:onTap1r58bkc,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 56, 132)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 56, 132, 0.1)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,boxShadow:\"2px 2px 2px 0px rgba(0, 0, 0, 0.25)\"},variants:{BQocXg6Lk:{backgroundColor:\"rgb(255, 56, 132)\"}},whileTap:animation1,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1sa61hq-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"F84gUHm2L-container\",nodeId:\"F84gUHm2L\",rendersWithMotion:true,scopeId:\"rK_AHDjER\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(255, 56, 132)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Devices\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"F84gUHm2L\",layoutId:\"F84gUHm2L\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({BQocXg6Lk:{color:\"rgb(255, 255, 255)\"},I_8zaGBuO:{color:\"var(--token-bedca2f6-f4cf-411a-853b-67e489b58af9, rgb(255, 56, 132))\"},VI7jmz4Ib:{color:\"var(--token-bedca2f6-f4cf-411a-853b-67e489b58af9, rgb(255, 56, 132))\"},vPu2YS9pS:{color:\"var(--token-bedca2f6-f4cf-411a-853b-67e489b58af9, rgb(255, 56, 132))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 56, 132))\"},children:\"Device\"})}),className:\"framer-1k2944f\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"yqe9EmDof\",style:{\"--extracted-r6o4lv\":\"rgb(255, 56, 132)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,variants:{BQocXg6Lk:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BQocXg6Lk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Device\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7an8lv\",\"data-border\":true,\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"IpLOHAgSD\",onTap:onTap1iqjsp5,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 56, 132)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 56, 132, 0.1)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,boxShadow:\"2px 2px 2px 0px rgba(0, 0, 0, 0.25)\"},variants:{vPu2YS9pS:{backgroundColor:\"rgb(255, 56, 132)\"}},whileTap:animation1,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vtp8yv-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ZaQzDxMl1-container\",nodeId:\"ZaQzDxMl1\",rendersWithMotion:true,scopeId:\"rK_AHDjER\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(255, 56, 132)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Home\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"ZaQzDxMl1\",layoutId:\"ZaQzDxMl1\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({I_8zaGBuO:{color:\"var(--token-bedca2f6-f4cf-411a-853b-67e489b58af9, rgb(255, 56, 132))\"},VI7jmz4Ib:{color:\"var(--token-bedca2f6-f4cf-411a-853b-67e489b58af9, rgb(255, 56, 132))\"},vPu2YS9pS:{color:\"rgb(255, 255, 255)\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 56, 132))\"},children:\"Device\u3000\u3000\u5009\u5EAB\"})}),className:\"framer-1tgyhri\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"QCf8ekWn5\",style:{\"--extracted-r6o4lv\":\"rgb(255, 56, 132)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,variants:{vPu2YS9pS:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({vPu2YS9pS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Device\u3000\u3000\u5009\u5EAB\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xhw707\",\"data-border\":true,\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"JQqvN2yQS\",onTap:onTap519poo,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 56, 132)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 56, 132, 0.1)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,boxShadow:\"2px 2px 2px 0px rgba(0, 0, 0, 0.25)\"},variants:{I_8zaGBuO:{backgroundColor:\"rgb(255, 56, 132)\"}},whileTap:animation1,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-87ht59-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ZWgLF9QWq-container\",nodeId:\"ZWgLF9QWq\",rendersWithMotion:true,scopeId:\"rK_AHDjER\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(255, 56, 132)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Downloading\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"ZWgLF9QWq\",layoutId:\"ZWgLF9QWq\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({I_8zaGBuO:{color:\"rgb(255, 255, 255)\"},VI7jmz4Ib:{color:\"var(--token-bedca2f6-f4cf-411a-853b-67e489b58af9, rgb(255, 56, 132))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 56, 132))\"},children:[\"Admina\",/*#__PURE__*/_jsx(motion.br,{}),\"Vendor\"]})}),className:\"framer-d1nhk8\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"vP7__SaWA\",style:{\"--extracted-r6o4lv\":\"rgb(255, 56, 132)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,variants:{I_8zaGBuO:{\"--extracted-1w3ko1f\":\"var(--token-cb5fe9d4-4bc6-46d3-97c2-14a62b09f88d, rgb(255, 255, 255))\",\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({I_8zaGBuO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-cb5fe9d4-4bc6-46d3-97c2-14a62b09f88d, rgb(255, 255, 255)))\"},children:\"Admina\"}),/*#__PURE__*/_jsx(motion.br,{}),\"Vendor\"]})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wnewt\",\"data-border\":true,\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"rEjiLzQal\",onTap:onTapfq9qpj,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 56, 132)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 56, 132, 0.1)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,boxShadow:\"2px 2px 2px 0px rgba(0, 0, 0, 0.25)\"},variants:{VI7jmz4Ib:{backgroundColor:\"rgb(255, 56, 132)\"}},whileTap:animation1,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1yg0aj-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"BMNEDImpk-container\",nodeId:\"BMNEDImpk\",rendersWithMotion:true,scopeId:\"rK_AHDjER\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(255, 56, 132)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Groups\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"BMNEDImpk\",layoutId:\"BMNEDImpk\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({VI7jmz4Ib:{color:\"rgb(255, 255, 255)\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 56, 132))\"},children:\"Digital \u3000Workforce\"})}),className:\"framer-1uj9tph\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"eK6d9kg7e\",style:{\"--extracted-r6o4lv\":\"rgb(255, 56, 132)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,variants:{VI7jmz4Ib:{\"--extracted-r6o4lv\":\"var(--token-cb5fe9d4-4bc6-46d3-97c2-14a62b09f88d, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({VI7jmz4Ib:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cb5fe9d4-4bc6-46d3-97c2-14a62b09f88d, rgb(255, 255, 255)))\"},children:\"Digital \u3000Workforce\"})})}},baseVariant,gestureVariant)})]})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g9qp73\",\"data-border\":true,\"data-framer-name\":\"board\",layoutDependency:layoutDependency,layoutId:\"uuo24rId0\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(206, 206, 234)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,boxShadow:\"0px 3px 10px 0px rgba(0, 0, 0, 0.05)\"},children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n0jgtc\",layoutDependency:layoutDependency,layoutId:\"XuGafp0Fl\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cd0fes\",layoutDependency:layoutDependency,layoutId:\"k_NsWG8ad\",style:{backgroundColor:\"rgb(247, 247, 247)\",borderBottomLeftRadius:5,borderTopRightRadius:5,boxShadow:\"0px 3px 10px 0px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yhuCZDUnt\"},motionChild:true,nodeId:\"kikvhw7X7\",openInNewTab:false,scopeId:\"rK_AHDjER\",...addPropertyOverrides({BQocXg6Lk:{href:{webPageId:\"tWsxCG94L\"}},CThjOgx3u:{href:\"/jp/features/cloud-cost\"},I_8zaGBuO:{href:{webPageId:\"cHf5aDrfy\"}},vPu2YS9pS:{href:{webPageId:\"FpPqVsH3D\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ps29zp framer-7f5qk3\",layoutDependency:layoutDependency,layoutId:\"kikvhw7X7\",style:{background:\"linear-gradient(89deg, rgb(226, 117, 15) -25.120000000000005%, rgba(226, 117, 15, 0.75) 28.42060810810809%, rgb(255, 56, 132) 54.307432432432435%, rgb(255, 56, 132) 97.847134009009%)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\u7121\u6599\u3067\u8A66\u3059\"})}),className:\"framer-1dkalwl\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"FjdvHDDIr\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},transformTemplate:transformTemplate2,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({BQocXg6Lk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\u8A73\u7D30\u3092\u78BA\u8A8D\"})})},I_8zaGBuO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\u8A73\u7D30\u3092\u78BA\u8A8D\"})})},vPu2YS9pS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\u8A73\u7D30\u3092\u78BA\u8A8D\"})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uzhwh7\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"tgDaHbMpQ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(206, 206, 234)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t88yca\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"PcDytl1sG\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(206, 206, 234)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a46is1\",layoutDependency:layoutDependency,layoutId:\"YDDa22z0c\",style:{backgroundColor:\"rgb(248, 248, 252)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16wam8-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"xMhJb2kcJ-container\",nodeId:\"xMhJb2kcJ\",rendersWithMotion:true,scopeId:\"rK_AHDjER\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-bedca2f6-f4cf-411a-853b-67e489b58af9, rgb(255, 56, 132))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Cloud\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"xMhJb2kcJ\",layoutId:\"xMhJb2kcJ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({BQocXg6Lk:{iconSelection:\"Label\"},CThjOgx3u:{iconSelection:\"Money\"},I_8zaGBuO:{iconSelection:\"Search\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 45, 52))\"},children:\"SaaS\u306E\u5229\u7528\u72B6\u6CC1\u3092\u53EF\u8996\u5316\"})}),className:\"framer-1s5pvwa\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"s4HvvpnQx\",style:{\"--extracted-r6o4lv\":\"rgb(41, 45, 52)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BQocXg6Lk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 45, 52))\"},children:\"\u81EA\u7531\u306E\u9AD8\u3044\u30C7\u30D0\u30A4\u30B9\u7BA1\u7406\u9805\u76EE\"})})},CThjOgx3u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 45, 52))\"},children:\"\u5B8C\u5168\u6210\u679C\u5831\u916C\u578B\u3067\u5B89\u5FC3\"})})},I_8zaGBuO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 45, 52))\"},children:\"SaaS\u306E\u53EF\u8996\u5316\u3068\u524A\u6E1B\u3092\u5B9F\u73FE\"})})},vPu2YS9pS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 45, 52))\"},children:\"\u30C7\u30D0\u30A4\u30B9\u7BA1\u7406\u696D\u52D9\u3092\u30A2\u30A6\u30C8\u30BD\u30FC\u30B9\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13tanmc\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"PbhSdwKIc\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(206, 206, 234)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xa44gp\",layoutDependency:layoutDependency,layoutId:\"lEafWj_LZ\",style:{backgroundColor:\"rgb(248, 248, 252)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qc31ix-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"jSflqFYfe-container\",nodeId:\"jSflqFYfe\",rendersWithMotion:true,scopeId:\"rK_AHDjER\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-bedca2f6-f4cf-411a-853b-67e489b58af9, rgb(255, 56, 132))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Schema\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"jSflqFYfe\",layoutId:\"jSflqFYfe\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({BQocXg6Lk:{iconSelection:\"Devices\"},CThjOgx3u:{iconSelection:\"AppRegistration\"},I_8zaGBuO:{iconSelection:\"Group\"},vPu2YS9pS:{iconSelection:\"FormatListBulleted\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m8kp5y\",layoutDependency:layoutDependency,layoutId:\"avamx1nGJ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gz1sr7\",layoutDependency:layoutDependency,layoutId:\"YmfzBqJOo\",style:{backgroundColor:\"rgb(187, 221, 255)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jmkmld\",layoutDependency:layoutDependency,layoutId:\"dxQ1edOtj\",style:{backgroundColor:\"rgb(204, 238, 255)\"}})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 45, 52))\"},children:\"\u30E9\u30A4\u30BB\u30F3\u30B9\u3001\u30A2\u30AB\u30A6\u30F3\u30C8\u60C5\u5831\u3092\u4E00\u5143\u7BA1\u7406\"})}),className:\"framer-ch2lol\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"sk8VACHl2\",style:{\"--extracted-r6o4lv\":\"rgb(41, 45, 52)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BQocXg6Lk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 45, 52))\"},children:\"\u30C7\u30D0\u30A4\u30B9\u30E9\u30A4\u30D5\u30B5\u30A4\u30AF\u30EB\u306E\u53EF\u8996\u5316\"})})},CThjOgx3u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 45, 52))\"},children:\"\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u306E\u6539\u5584\"})})},I_8zaGBuO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 45, 52))\"},children:\"\u8CFC\u8CB7\u30D1\u30FC\u30C8\u30CA\u30FC\u304C\u5951\u7D04\u6700\u9069\u5316\"})})},vPu2YS9pS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 45, 52))\"},children:\"\u53F0\u5E33\u81EA\u52D5\u66F4\u65B0&\u68DA\u5378\u3057\u52B9\u7387\u5316\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-195mqfh\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"ZVMTZHkfx\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(206, 206, 234)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xl1jfj\",layoutDependency:layoutDependency,layoutId:\"WIg0SS0KD\",style:{backgroundColor:\"rgb(248, 248, 252)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bglwzs-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Bt9KsjtPI-container\",nodeId:\"Bt9KsjtPI\",rendersWithMotion:true,scopeId:\"rK_AHDjER\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-bedca2f6-f4cf-411a-853b-67e489b58af9, rgb(255, 56, 132))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"CorporateFare\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"Bt9KsjtPI\",layoutId:\"Bt9KsjtPI\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({BQocXg6Lk:{iconSelection:\"DashboardCustomize\"},CThjOgx3u:{iconSelection:\"Schema\"},I_8zaGBuO:{iconSelection:\"Money\"},vPu2YS9pS:{iconSelection:\"CarRental\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 45, 52))\"},children:\"310\u4EE5\u4E0A\u306ESaaS\u306B\u5BFE\u5FDC\"})}),className:\"framer-1734c13\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"B9EDJX_Ro\",style:{\"--extracted-r6o4lv\":\"rgb(41, 45, 52)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BQocXg6Lk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 45, 52))\"},children:\"\u30C7\u30D0\u30A4\u30B9\u30FBSaaS\u30FBMDM\u3092\u4E00\u5143\u7BA1\u7406\"})}),transformTemplate:transformTemplate2},CThjOgx3u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 45, 52))\"},children:\"\u30A2\u30FC\u30AD\u30C6\u30AF\u30C1\u30E3\u306E\u6539\u5584\"})})},I_8zaGBuO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 45, 52))\"},children:\"\u9AD8\u3044\u6295\u8CC7\u5BFE\u52B9\u679C\u3068\u8FD4\u91D1\u4FDD\u8A3C\"})})},vPu2YS9pS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 45, 52))\"},children:\"\u30AD\u30C3\u30C6\u30A3\u30F3\u30B0\u304B\u3089\u5EC3\u68C4\u307E\u3067\u5BFE\u5FDC\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fz1evq\",layoutDependency:layoutDependency,layoutId:\"sa7hYIdKX\",style:{backgroundColor:\"rgb(153, 238, 255)\"}})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wk57kw\",layoutDependency:layoutDependency,layoutId:\"bJBhyoZMg\",style:{background:\"linear-gradient(89deg, rgb(226, 117, 15) -25.120000000000005%, rgba(226, 117, 15, 0.75) 28.42060810810809%, rgb(255, 56, 132) 54.307432432432435%, rgb(255, 56, 132) 97.847134009009%)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vx3jes\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"CBMCeOBWX\",onTap:onTapgldsvt,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-lb58mf\",layoutDependency:layoutDependency,layoutId:\"JB3wCav3n\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1xf6emq\",\"data-styles-preset\":\"WQQwIyMi_\",children:\"SaaS\u5229\u7528\u72B6\u6CC1\u3092\u53EF\u8996\u5316\"})}),className:\"framer-11osa13\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FBOp99jMt\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BQocXg6Lk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1xf6emq\",\"data-styles-preset\":\"WQQwIyMi_\",children:\"SaaS\\xd7\u30C7\u30D0\u30A4\u30B9\"})})},CThjOgx3u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1xf6emq\",\"data-styles-preset\":\"WQQwIyMi_\",children:\"\u30A4\u30F3\u30D5\u30E9\u30B3\u30B9\u30C8\u524A\u6E1B\u3092\"})})},I_8zaGBuO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1xf6emq\",\"data-styles-preset\":\"WQQwIyMi_\",children:\"SaaS\u30B3\u30B9\u30C8\u6700\u9069\u5316\u306B\u30B3\u30DF\u30C3\u30C8\"})})},vPu2YS9pS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1xf6emq\",\"data-styles-preset\":\"WQQwIyMi_\",children:\"\u30C7\u30D0\u30A4\u30B9\u7BA1\u7406\u306F\u307E\u308B\u3054\u3068\u304A\u307E\u304B\u305B\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13mswvg\",layoutDependency:layoutDependency,layoutId:\"OLtY3Iki3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1upi1ui\",\"data-styles-preset\":\"Vkdknv1jR\",children:\"\u7169\u96D1\u306A\u7BA1\u7406\u304B\u3089\u89E3\u653E\"})}),className:\"framer-tb589y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cLUhyvWn6\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BQocXg6Lk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1upi1ui\",\"data-styles-preset\":\"Vkdknv1jR\",children:\"\u5F93\u696D\u54E1\u3092\u8EF8\u3068\u3057\u305F\u30E2\u30C0\u30F3\u306AIT\u8CC7\u7523\u7BA1\u7406\"})})},CThjOgx3u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1upi1ui\",\"data-styles-preset\":\"Vkdknv1jR\",children:\"\u5B8C\u5168\u6210\u679C\u5831\u916C\u578B\u3067\u5B9F\u73FE\"})})},I_8zaGBuO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1upi1ui\",\"data-styles-preset\":\"Vkdknv1jR\",children:\"Admina Vendor\u30D7\u30E9\u30F3\"})})},vPu2YS9pS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1upi1ui\",\"data-styles-preset\":\"Vkdknv1jR\",children:\"\u30C7\u30D0\u30A4\u30B9\u5009\u5EAB\u30D7\u30E9\u30F3\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r3ta6p\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"jYnkSkflD\",onTap:onTapgldsvt,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-159d1wk\",\"data-styles-preset\":\"L8WlPMxu2\",children:\"Admina\u306F\u3001SaaS\u306E\u5229\u7528\u72B6\u6CC1\u3092\u4E00\u5143\u7684\u306B\u53EF\u8996\u5316\u3057\u307E\u3059\u3002\u5206\u65AD\u3057\u305F\u53F0\u5E33\u7BA1\u7406\u304B\u3089\u89E3\u653E\u3055\u308C\u3001SaaS\u306E\u30E9\u30A4\u30BB\u30F3\u30B9\u3084\u30A2\u30AB\u30A6\u30F3\u30C8\u60C5\u5831\u3092\u4E00\u5143\u7BA1\u7406\u3002310\u4EE5\u4E0A\u306ESaaS\u3068\u9023\u643A\u3059\u308B\u3053\u3068\u3067\u3001\u7169\u96D1\u306ASaaS\u7BA1\u7406\u3092\u52B9\u7387\u5316\u3057\u307E\u3059\u3002\"})}),className:\"framer-1cyftzs\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WxJF1PLjA\",onTap:onTapgldsvt,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BQocXg6Lk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-159d1wk\",\"data-styles-preset\":\"L8WlPMxu2\",children:\"SaaS\u7BA1\u7406\u306EAdmina\u3067\u30C7\u30D0\u30A4\u30B9\u3082\u7BA1\u7406\u3059\u308B\u8CC7\u7523\u7BA1\u7406 \u30B5\u30FC\u30D3\u30B9\u3002\u30B7\u30F3\u30D7\u30EB\u306A\u30C7\u30D0\u30A4\u30B9\u53F0\u5E33\u6A5F\u80FD\u3068MDM\u9023\u643A\u306B\u3088\u308A\u3001\u8AB0\u304C\u3069\u306E\u30C7\u30D0\u30A4\u30B9\u3092\u4F7F\u3063\u3066\u3044\u308B\u304B\u3001\u793E\u5185\u306E\u30C7\u30D0\u30A4\u30B9\u72B6\u6CC1\u304C\u3072\u3068\u3081\u3067\u308F\u304B\u308B\u3088\u3046\u306B\u306A\u308A\u307E\u3059\u3002\"})})},CThjOgx3u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-159d1wk\",\"data-styles-preset\":\"L8WlPMxu2\",children:\"Cloud Cost Optimization\u30D7\u30E9\u30F3\u306F\u3001AWS\u30FBGCP\u306A\u3069\u306E\u30A4\u30F3\u30D5\u30E9\u30B3\u30B9\u30C8\u306E\u6700\u9069\u5316\u3092\u6210\u679C\u5831\u916C\u578B\u3067\u3054\u652F\u63F4\u3057\u307E\u3059\u3002\"})})},I_8zaGBuO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-159d1wk\",\"data-styles-preset\":\"L8WlPMxu2\",children:\"Admina Vendor\u30D7\u30E9\u30F3\u306F\u3001\u793E\u5185\u3067\u5229\u7528\u3059\u308BSaaS\u30B3\u30B9\u30C8\u3092\u6700\u9069\u5316\u3059\u308B\u30D7\u30E9\u30F3\u3067\u3059\u3002\u5C02\u5C5E\u306E\u8CFC\u8CB7\u30D1\u30FC\u30C8\u30CA\u30FC\u304C\u5229\u7528\u72B6\u6CC1\u3001\u5951\u7D04\u5185\u5BB9\u3092\u898B\u76F4\u3057\u3001SaaS\u5229\u7528\u6599\u3092\u524A\u6E1B\u3057\u307E\u3059\u3002\"})})},vPu2YS9pS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-159d1wk\",\"data-styles-preset\":\"L8WlPMxu2\",children:\"Admina Device\u5009\u5EAB\u30D7\u30E9\u30F3\u306F\u3001\u30C7\u30D0\u30A4\u30B9\u7BA1\u7406\u306E\u30A2\u30CA\u30ED\u30B0\u4F5C\u696D\u3092\u5B8C\u5168\u30A2\u30A6\u30C8\u30BD\u30FC\u30B9\u3059\u308B\u30D7\u30E9\u30F3\u3002\u30AD\u30C3\u30C6\u30A3\u30F3\u30B0\u301C\u5EC3\u68C4\u307E\u3067\u306E\u30C7\u30D0\u30A4\u30B9\u30E9\u30A4\u30D5\u30B5\u30A4\u30AF\u30EB\u7BA1\u7406\u3092\u4EE3\u884C\u3057\u307E\u3059\u3002\"})})}},baseVariant,gestureVariant)})})]})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n3swmz\",layoutDependency:layoutDependency,layoutId:\"ACqqhJk0Y\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-159d1wk\",\"data-styles-preset\":\"L8WlPMxu2\",children:\"\u8CB8\u4E0E\u4E2D\u306EPC\u306A\u3069\u306E\u30C7\u30D0\u30A4\u30B9\u306F\u3082\u3061\u308D\u3093\u30AA\u30D5\u30A3\u30B9\u306B\u4FDD\u7BA1\u3057\u3066\u3042\u308B\u5728\u5EAB\u306EPC\u53F0\u6570\u3084\u3001\u6545\u969C/\u4FEE\u7406\u4E2D\u306E\u53F0\u6570\u3001\u3068\u3044\u3046\u306E\u304C\u4E00\u76EE\u3067\u308F\u304B\u308B\u305F\u3081\u3001\u7DCA\u6025\u3067\u5BFE\u5FDC\u304C\u5FC5\u8981\u306A\u5834\u5408\u3067\u3082\u3059\u3050\u306B\u78BA\u8A8D\u304C\u3067\u304D\u307E\u3059\u3002\u307E\u305F\u3001\u3042\u3089\u3086\u308B\u4F01\u696D\u306E\u30CB\u30FC\u30BA\u3092\u8E0F\u307E\u3048\u3066\u4EFB\u610F\u3067\u5165\u529B\u304C\u3067\u304D\u308B\u9805\u76EE\u304C\u591A\u3044\u306E\u3067\u3001\u75D2\u3044\u3068\u3053\u308D\u306B\u624B\u304C\u5C4A\u304F\u306A\u3042\u3001\u3068\u611F\u3058\u307E\u3057\u305F\u3002\"})}),className:\"framer-1n4pn4y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KO07l5RsS\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2qm339\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:96,layoutDependency:layoutDependency,layoutId:\"JwevCgOjq\",svg:'<svg height=\"16\" width=\"96\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\"><path d=\"M15.954 6.41c.127-.125.254-.29.254-.463 0-.29-.312-.407-.546-.445l-4.89-.706-2.19-4.4C8.493.213 8.327 0 8.103 0c-.224 0-.39.213-.477.396l-2.192 4.4-4.89.706C.302 5.54 0 5.656 0 5.947c0 .174.127.338.244.464l3.545 3.423-.838 4.834a9.091 9.091 0 0 1-.003.023c-.009.058-.016.11-.016.17 0 .252.126.484.409.484a.826.826 0 0 0 .39-.116l4.373-2.282 4.373 2.282a.795.795 0 0 0 .39.116c.282 0 .4-.232.4-.483 0-.068 0-.126-.01-.194l-.838-4.834 3.535-3.423Zm19.949 0c.126-.125.253-.29.253-.463 0-.29-.312-.407-.546-.445l-4.89-.706-2.19-4.4C28.441.213 28.275 0 28.051 0c-.224 0-.39.213-.477.396l-2.192 4.4-4.89.706c-.243.038-.545.154-.545.445 0 .174.127.338.244.464l3.545 3.423-.838 4.834a1.128 1.128 0 0 0-.02.193c0 .252.127.484.41.484a.827.827 0 0 0 .39-.116l4.373-2.282 4.373 2.282a.795.795 0 0 0 .39.116c.282 0 .4-.232.4-.483 0-.068 0-.126-.01-.194l-.838-4.834 3.536-3.423Zm19.947 0c.127-.125.254-.29.254-.463 0-.29-.312-.407-.546-.445l-4.89-.706-2.19-4.4C48.39.213 48.223 0 48 0c-.224 0-.39.213-.477.396l-2.192 4.4-4.89.706c-.243.038-.545.154-.545.445 0 .174.127.338.244.464l3.545 3.423-.838 4.834a5.94 5.94 0 0 1-.003.023c-.008.058-.016.11-.016.17 0 .252.127.484.409.484a.826.826 0 0 0 .39-.116L48 12.947l4.373 2.282a.795.795 0 0 0 .39.116c.282 0 .4-.232.4-.483 0-.068 0-.126-.01-.194l-.838-4.834L55.85 6.41Zm19.949 0c.126-.125.253-.29.253-.463 0-.29-.312-.407-.546-.445l-4.89-.706-2.19-4.4C68.337.213 68.171 0 67.947 0c-.224 0-.39.213-.477.396l-2.192 4.4-4.89.706c-.243.038-.545.154-.545.445 0 .174.127.338.244.464l3.545 3.423-.838 4.834a1.128 1.128 0 0 0-.02.193c.001.252.128.484.41.484a.827.827 0 0 0 .39-.116l4.373-2.282 4.373 2.282a.795.795 0 0 0 .39.116c.282 0 .4-.232.4-.483 0-.068 0-.126-.01-.194l-.838-4.834 3.536-3.423Zm19.948 0c.126-.125.253-.29.253-.463 0-.29-.312-.407-.546-.445l-4.89-.706-2.19-4.4C88.285.213 88.12 0 87.895 0c-.224 0-.39.213-.477.396l-2.192 4.4-4.89.706c-.243.038-.545.154-.545.445 0 .174.127.338.244.464l3.545 3.423-.838 4.834a5.94 5.94 0 0 1-.003.023c-.008.058-.016.11-.016.17 0 .252.127.484.41.484a.826.826 0 0 0 .389-.116l4.373-2.282 4.373 2.282a.795.795 0 0 0 .39.116c.283 0 .4-.232.4-.483 0-.068 0-.126-.01-.194l-.838-4.834 3.536-3.423Z\" fill=\"#FFC800\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"convene headshot\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:300,pixelHeight:200,pixelWidth:300,src:\"https://framerusercontent.com/images/0S8OsXvFAoS9lbtJpkqS8gyU2o.jpg\"},className:\"framer-11m4koo\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Ha7NwMTP1\",onTap:onTapgldsvt,style:{borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},transformTemplate:transformTemplate3,...addPropertyOverrides({BQocXg6Lk:{background:{alt:\"convene headshot\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||704)-0-668)/2+200+10)+1+456-182+15.5),pixelHeight:200,pixelWidth:300,src:\"https://framerusercontent.com/images/0S8OsXvFAoS9lbtJpkqS8gyU2o.jpg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\"},children:\"\u682A\u5F0F\u4F1A\u793E\u3064\u307F\u304D\"})}),className:\"framer-1ob85lj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OqT9kRu33\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w8vpti\",layoutDependency:layoutDependency,layoutId:\"V1U03aWmL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 45, 52))\"},children:\"\u30B7\u30E3\u30C9\u30FCIT\u691C\u51FA\u6A5F\u80FD\u3092\u4F7F\u3046\u3053\u3068\u3067\u3001\u3053\u308C\u307E\u3067\u898B\u3048\u306A\u304B\u3063\u305F\u4E8B\u696D\u90E8\u3067\u4F7F\u308F\u308C\u3066\u3044\u308BSaaS\u3082\u898B\u3048\u308B\u3088\u3046\u306B\u306A\u308A\u307E\u3057\u305F\u3002\u3044\u308D\u3093\u306ASaaS\u3092\u691C\u77E5\u3067\u304D\u3066\u3044\u308B\u306A\u3068\u601D\u3063\u3066\u3044\u3066\u3001\u3053\u308C\u3092\u305D\u306E\u307E\u307E\u9023\u643A\u3055\u305B\u3088\u3046\u304B\u3001\u3069\u3046\u304B\u3063\u3066\u3044\u3046\u306E\u306F\u3061\u3087\u3063\u3068\u60A9\u3093\u3067\u3044\u307E\u3059\u3002\u793E\u5185\u3067\u4F7F\u3063\u3066\u3044\u308B\u306E\u3092\u805E\u3044\u305F\u3053\u3068\u3082\u306A\u3044SaaS\u3082\u51FA\u3066\u304D\u3066\u3044\u305F\u308A\u3082\u3057\u307E\u3059\u3002\"})}),className:\"framer-mxvqpp\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"NaBEC5FfY\",style:{\"--extracted-r6o4lv\":\"rgb(41, 45, 52)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1g60xe6\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:96,layoutDependency:layoutDependency,layoutId:\"gh5fHTDsc\",svg:'<svg height=\"16\" width=\"96\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\"><path d=\"M15.954 6.41c.127-.125.254-.29.254-.463 0-.29-.312-.407-.546-.445l-4.89-.706-2.19-4.4C8.493.213 8.327 0 8.103 0c-.224 0-.39.213-.477.396l-2.192 4.4-4.89.706C.302 5.54 0 5.656 0 5.947c0 .174.127.338.244.464l3.545 3.423-.838 4.834a9.091 9.091 0 0 1-.003.023c-.009.058-.016.11-.016.17 0 .252.126.484.409.484a.826.826 0 0 0 .39-.116l4.373-2.282 4.373 2.282a.795.795 0 0 0 .39.116c.282 0 .4-.232.4-.483 0-.068 0-.126-.01-.194l-.838-4.834 3.535-3.423Zm19.949 0c.126-.125.253-.29.253-.463 0-.29-.312-.407-.546-.445l-4.89-.706-2.19-4.4C28.441.213 28.275 0 28.051 0c-.224 0-.39.213-.477.396l-2.192 4.4-4.89.706c-.243.038-.545.154-.545.445 0 .174.127.338.244.464l3.545 3.423-.838 4.834a1.128 1.128 0 0 0-.02.193c0 .252.127.484.41.484a.827.827 0 0 0 .39-.116l4.373-2.282 4.373 2.282a.795.795 0 0 0 .39.116c.282 0 .4-.232.4-.483 0-.068 0-.126-.01-.194l-.838-4.834 3.536-3.423Zm19.947 0c.127-.125.254-.29.254-.463 0-.29-.312-.407-.546-.445l-4.89-.706-2.19-4.4C48.39.213 48.223 0 48 0c-.224 0-.39.213-.477.396l-2.192 4.4-4.89.706c-.243.038-.545.154-.545.445 0 .174.127.338.244.464l3.545 3.423-.838 4.834a5.94 5.94 0 0 1-.003.023c-.008.058-.016.11-.016.17 0 .252.127.484.409.484a.826.826 0 0 0 .39-.116L48 12.947l4.373 2.282a.795.795 0 0 0 .39.116c.282 0 .4-.232.4-.483 0-.068 0-.126-.01-.194l-.838-4.834L55.85 6.41Zm19.949 0c.126-.125.253-.29.253-.463 0-.29-.312-.407-.546-.445l-4.89-.706-2.19-4.4C68.337.213 68.171 0 67.947 0c-.224 0-.39.213-.477.396l-2.192 4.4-4.89.706c-.243.038-.545.154-.545.445 0 .174.127.338.244.464l3.545 3.423-.838 4.834a1.128 1.128 0 0 0-.02.193c.001.252.128.484.41.484a.827.827 0 0 0 .39-.116l4.373-2.282 4.373 2.282a.795.795 0 0 0 .39.116c.282 0 .4-.232.4-.483 0-.068 0-.126-.01-.194l-.838-4.834 3.536-3.423Zm19.948 0c.126-.125.253-.29.253-.463 0-.29-.312-.407-.546-.445l-4.89-.706-2.19-4.4C88.285.213 88.12 0 87.895 0c-.224 0-.39.213-.477.396l-2.192 4.4-4.89.706c-.243.038-.545.154-.545.445 0 .174.127.338.244.464l3.545 3.423-.838 4.834a5.94 5.94 0 0 1-.003.023c-.008.058-.016.11-.016.17 0 .252.127.484.41.484a.826.826 0 0 0 .389-.116l4.373-2.282 4.373 2.282a.795.795 0 0 0 .39.116c.283 0 .4-.232.4-.483 0-.068 0-.126-.01-.194l-.838-4.834 3.536-3.423Z\" fill=\"#FFC800\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"convene headshot\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:169,pixelWidth:300,src:\"https://framerusercontent.com/images/bKhu3ZJoOLCTNfOPfEDgvIf6Jng.jpg\"},className:\"framer-1ap590x\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"fkxV_8yA_\",onTap:onTapgldsvt,style:{borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},transformTemplate:transformTemplate3,...addPropertyOverrides({I_8zaGBuO:{background:{alt:\"convene headshot\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||704)-0-668)/2+200+10)+1+456-186+15.5),pixelHeight:169,pixelWidth:300,src:\"https://framerusercontent.com/images/bKhu3ZJoOLCTNfOPfEDgvIf6Jng.jpg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\"},children:\"\u682A\u5F0F\u4F1A\u793EPiece to Peace\"})}),className:\"framer-iq0bgk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TN3GvKMj8\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aktbol\",layoutDependency:layoutDependency,layoutId:\"r6gntXezW\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-159d1wk\",\"data-styles-preset\":\"L8WlPMxu2\",children:\"\u793E\u5185\u306ESaaS\u7BA1\u7406\u53F0\u5E33\u3092Admina\u3067\u5B9F\u73FE\u3059\u308B\u306E\u304C\u7406\u60F3\u3067\u3059\u3002\u6765\u671F\u306EIT\u4E88\u7B97\u3092\u4F5C\u6210\u3059\u308B\u6642\u3082freee\u4F1A\u8A08\u3067\u91D1\u984D\u306E\u5909\u5316\u304C\u898B\u3089\u308C\u308C\u3070\u5E74\u9593\u306E\u304A\u304A\u3088\u305D\u306E\u4E88\u6E2C\u3092\u3064\u3051\u308B\u3053\u3068\u304C\u3067\u304D\u307E\u3059\u3057\u3001\u6765\u671F\u306F\u5F93\u696D\u54E1\u304C\u4F55\u4EBA\u304C\u5897\u3048\u308B\u898B\u8FBC\u307F\u3060\u304B\u3089\u3001\u3053\u306E\u304F\u3089\u3044\u306E\u4E88\u7B97\u3067\u826F\u3044\u3060\u308D\u3046\u3068\u3044\u3046\u306E\u304C\u7C21\u5358\u306B\u5206\u304B\u308A\u307E\u3059\"})}),className:\"framer-mvuxlc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dJCQMtJpb\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1r0mimy\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:96,layoutDependency:layoutDependency,layoutId:\"B6_G34CMw\",svg:'<svg height=\"16\" width=\"96\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\"><path d=\"M15.954 6.41c.127-.125.254-.29.254-.463 0-.29-.312-.407-.546-.445l-4.89-.706-2.19-4.4C8.493.213 8.327 0 8.103 0c-.224 0-.39.213-.477.396l-2.192 4.4-4.89.706C.302 5.54 0 5.656 0 5.947c0 .174.127.338.244.464l3.545 3.423-.838 4.834a9.091 9.091 0 0 1-.003.023c-.009.058-.016.11-.016.17 0 .252.126.484.409.484a.826.826 0 0 0 .39-.116l4.373-2.282 4.373 2.282a.795.795 0 0 0 .39.116c.282 0 .4-.232.4-.483 0-.068 0-.126-.01-.194l-.838-4.834 3.535-3.423Zm19.949 0c.126-.125.253-.29.253-.463 0-.29-.312-.407-.546-.445l-4.89-.706-2.19-4.4C28.441.213 28.275 0 28.051 0c-.224 0-.39.213-.477.396l-2.192 4.4-4.89.706c-.243.038-.545.154-.545.445 0 .174.127.338.244.464l3.545 3.423-.838 4.834a1.128 1.128 0 0 0-.02.193c0 .252.127.484.41.484a.827.827 0 0 0 .39-.116l4.373-2.282 4.373 2.282a.795.795 0 0 0 .39.116c.282 0 .4-.232.4-.483 0-.068 0-.126-.01-.194l-.838-4.834 3.536-3.423Zm19.947 0c.127-.125.254-.29.254-.463 0-.29-.312-.407-.546-.445l-4.89-.706-2.19-4.4C48.39.213 48.223 0 48 0c-.224 0-.39.213-.477.396l-2.192 4.4-4.89.706c-.243.038-.545.154-.545.445 0 .174.127.338.244.464l3.545 3.423-.838 4.834a5.94 5.94 0 0 1-.003.023c-.008.058-.016.11-.016.17 0 .252.127.484.409.484a.826.826 0 0 0 .39-.116L48 12.947l4.373 2.282a.795.795 0 0 0 .39.116c.282 0 .4-.232.4-.483 0-.068 0-.126-.01-.194l-.838-4.834L55.85 6.41Zm19.949 0c.126-.125.253-.29.253-.463 0-.29-.312-.407-.546-.445l-4.89-.706-2.19-4.4C68.337.213 68.171 0 67.947 0c-.224 0-.39.213-.477.396l-2.192 4.4-4.89.706c-.243.038-.545.154-.545.445 0 .174.127.338.244.464l3.545 3.423-.838 4.834a1.128 1.128 0 0 0-.02.193c.001.252.128.484.41.484a.827.827 0 0 0 .39-.116l4.373-2.282 4.373 2.282a.795.795 0 0 0 .39.116c.282 0 .4-.232.4-.483 0-.068 0-.126-.01-.194l-.838-4.834 3.536-3.423Zm19.948 0c.126-.125.253-.29.253-.463 0-.29-.312-.407-.546-.445l-4.89-.706-2.19-4.4C88.285.213 88.12 0 87.895 0c-.224 0-.39.213-.477.396l-2.192 4.4-4.89.706c-.243.038-.545.154-.545.445 0 .174.127.338.244.464l3.545 3.423-.838 4.834a5.94 5.94 0 0 1-.003.023c-.008.058-.016.11-.016.17 0 .252.127.484.41.484a.826.826 0 0 0 .389-.116l4.373-2.282 4.373 2.282a.795.795 0 0 0 .39.116c.283 0 .4-.232.4-.483 0-.068 0-.126-.01-.194l-.838-4.834 3.536-3.423Z\" fill=\"#FFC800\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"convene headshot\",fit:\"fill\",intrinsicHeight:258,intrinsicWidth:258,pixelHeight:200,pixelWidth:300,src:\"https://framerusercontent.com/images/PrQi9bGmP6B8z0XPqxMraUV5EU.jpg\"},className:\"framer-1s0lhaa\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"hRfKhSKQc\",onTap:onTapgldsvt,style:{borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},transformTemplate:transformTemplate3,...addPropertyOverrides({CThjOgx3u:{background:{alt:\"convene headshot\",fit:\"fill\",intrinsicHeight:258,intrinsicWidth:258,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||704)-0-668)/2+200+10)+1+456-167+15.5),pixelHeight:200,pixelWidth:300,src:\"https://framerusercontent.com/images/PrQi9bGmP6B8z0XPqxMraUV5EU.jpg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-12jq1oe\",\"data-styles-preset\":\"Plhv5Vccy\",children:\"\u682A\u5F0F\u4F1A\u793E\u30DE\u30AF\u30A2\u30B1\"})}),className:\"framer-oajws6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AGDS7DDPu\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9cuvjz\",layoutDependency:layoutDependency,layoutId:\"GERoEswAr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 45, 52))\"},children:\"SaaS\u7BA1\u7406\u304C\u52B9\u7387\u7684\u306B\u306A\u308A\u3001\u30B2\u30B9\u30C8\u30E6\u30FC\u30B6\u30FC\u3084\u9000\u8077\u8005\u306E\u30A2\u30AB\u30A6\u30F3\u30C8\u6F0F\u308C\u3092\u9632\u6B62\u3067\u304D\u307E\u3057\u305F\u3002\u5404\u90E8\u7F72\u306E\u5229\u7528\u72B6\u6CC1\u3092\u898B\u3048\u308B\u5316\u3057\u3001Admina\u306E\u30D6\u30E9\u30A6\u30B6\u30A2\u30C9\u30AA\u30F3\u3092\u7D44\u307F\u5408\u308F\u305B\u308B\u3053\u3068\u3067\u3001\u5177\u4F53\u7684\u306A\u6D3B\u7528\u72B6\u6CC1\u3084\u30C8\u30E9\u30D6\u30EB\u306E\u65E9\u671F\u767A\u898B\u304C\u53EF\u80FD\u306B\u306A\u308A\u307E\u3057\u305F\u3002\u6708\u6B21\u306E\u5229\u7528\u7387\u5206\u6790\u3084\u898B\u76F4\u3057\u306E\u6A5F\u4F1A\u3092\u8A2D\u3051\u3001\u7D4C\u55B6\u8005\u3068\u306E\u5BFE\u8A71\u3092\u6DF1\u3081\u3064\u3064\u3001\u4ECA\u5F8C\u306E\u65B9\u91DD\u3092\u691C\u8A0E\u3057\u3066\u3044\u307E\u3059\u3002\"})}),className:\"framer-1275mni\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"UoLKol1iv\",style:{\"--extracted-r6o4lv\":\"rgb(41, 45, 52)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11zhktt\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:96,layoutDependency:layoutDependency,layoutId:\"NvCALZcS9\",svg:'<svg height=\"16\" width=\"96\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\"><path d=\"M15.954 6.41c.127-.125.254-.29.254-.463 0-.29-.312-.407-.546-.445l-4.89-.706-2.19-4.4C8.493.213 8.327 0 8.103 0c-.224 0-.39.213-.477.396l-2.192 4.4-4.89.706C.302 5.54 0 5.656 0 5.947c0 .174.127.338.244.464l3.545 3.423-.838 4.834a9.091 9.091 0 0 1-.003.023c-.009.058-.016.11-.016.17 0 .252.126.484.409.484a.826.826 0 0 0 .39-.116l4.373-2.282 4.373 2.282a.795.795 0 0 0 .39.116c.282 0 .4-.232.4-.483 0-.068 0-.126-.01-.194l-.838-4.834 3.535-3.423Zm19.949 0c.126-.125.253-.29.253-.463 0-.29-.312-.407-.546-.445l-4.89-.706-2.19-4.4C28.441.213 28.275 0 28.051 0c-.224 0-.39.213-.477.396l-2.192 4.4-4.89.706c-.243.038-.545.154-.545.445 0 .174.127.338.244.464l3.545 3.423-.838 4.834a1.128 1.128 0 0 0-.02.193c0 .252.127.484.41.484a.827.827 0 0 0 .39-.116l4.373-2.282 4.373 2.282a.795.795 0 0 0 .39.116c.282 0 .4-.232.4-.483 0-.068 0-.126-.01-.194l-.838-4.834 3.536-3.423Zm19.947 0c.127-.125.254-.29.254-.463 0-.29-.312-.407-.546-.445l-4.89-.706-2.19-4.4C48.39.213 48.223 0 48 0c-.224 0-.39.213-.477.396l-2.192 4.4-4.89.706c-.243.038-.545.154-.545.445 0 .174.127.338.244.464l3.545 3.423-.838 4.834a5.94 5.94 0 0 1-.003.023c-.008.058-.016.11-.016.17 0 .252.127.484.409.484a.826.826 0 0 0 .39-.116L48 12.947l4.373 2.282a.795.795 0 0 0 .39.116c.282 0 .4-.232.4-.483 0-.068 0-.126-.01-.194l-.838-4.834L55.85 6.41Zm19.949 0c.126-.125.253-.29.253-.463 0-.29-.312-.407-.546-.445l-4.89-.706-2.19-4.4C68.337.213 68.171 0 67.947 0c-.224 0-.39.213-.477.396l-2.192 4.4-4.89.706c-.243.038-.545.154-.545.445 0 .174.127.338.244.464l3.545 3.423-.838 4.834a1.128 1.128 0 0 0-.02.193c.001.252.128.484.41.484a.827.827 0 0 0 .39-.116l4.373-2.282 4.373 2.282a.795.795 0 0 0 .39.116c.282 0 .4-.232.4-.483 0-.068 0-.126-.01-.194l-.838-4.834 3.536-3.423Zm19.948 0c.126-.125.253-.29.253-.463 0-.29-.312-.407-.546-.445l-4.89-.706-2.19-4.4C88.285.213 88.12 0 87.895 0c-.224 0-.39.213-.477.396l-2.192 4.4-4.89.706c-.243.038-.545.154-.545.445 0 .174.127.338.244.464l3.545 3.423-.838 4.834a5.94 5.94 0 0 1-.003.023c-.008.058-.016.11-.016.17 0 .252.127.484.41.484a.826.826 0 0 0 .389-.116l4.373-2.282 4.373 2.282a.795.795 0 0 0 .39.116c.283 0 .4-.232.4-.483 0-.068 0-.126-.01-.194l-.838-4.834 3.536-3.423Z\" fill=\"#FFC800\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\"},children:\"\u682A\u5F0F\u4F1A\u793E\u30B5\u30FC\u30D0\u30FC\u30EF\u30FC\u30AF\u30B9\"})}),className:\"framer-1biieo1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SNb2VDZQZ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed5()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1100,pixelWidth:1682,src:\"https://framerusercontent.com/images/qg0a8dQdzB8MJvsoarIqFKZFhs.png\",srcSet:\"https://framerusercontent.com/images/qg0a8dQdzB8MJvsoarIqFKZFhs.png?scale-down-to=512 512w,https://framerusercontent.com/images/qg0a8dQdzB8MJvsoarIqFKZFhs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qg0a8dQdzB8MJvsoarIqFKZFhs.png 1682w\"},className:\"framer-1num8ic\",layoutDependency:layoutDependency,layoutId:\"K8afm8hAn\",...addPropertyOverrides({vPu2YS9pS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||704)-0-668)/2+200+10)+1+456-228),pixelHeight:1100,pixelWidth:1682,sizes:\"333px\",src:\"https://framerusercontent.com/images/qg0a8dQdzB8MJvsoarIqFKZFhs.png\",srcSet:\"https://framerusercontent.com/images/qg0a8dQdzB8MJvsoarIqFKZFhs.png?scale-down-to=512 512w,https://framerusercontent.com/images/qg0a8dQdzB8MJvsoarIqFKZFhs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qg0a8dQdzB8MJvsoarIqFKZFhs.png 1682w\"}}},baseVariant,gestureVariant)})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1osbvdb\",layoutDependency:layoutDependency,layoutId:\"NPFY1zAMp\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:13,borderBottomRightRadius:13,borderTopLeftRadius:13,borderTopRightRadius:13},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2oze25\",layoutDependency:layoutDependency,layoutId:\"J4S_C1WMF\",style:{backgroundColor:\"rgb(247, 247, 247)\",borderBottomLeftRadius:14,borderTopRightRadius:14,boxShadow:\"0px 3px 10px 0px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JThGxyuHX\"},motionChild:true,nodeId:\"ROt4vC1p4\",openInNewTab:false,scopeId:\"rK_AHDjER\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ht5mcp framer-7f5qk3\",layoutDependency:layoutDependency,layoutId:\"ROt4vC1p4\",style:{background:\"linear-gradient(89deg, rgb(226, 117, 15) -25.120000000000005%, rgba(226, 117, 15, 0.75) 28.42060810810809%, rgb(255, 56, 132) 54.307432432432435%, rgb(255, 56, 132) 97.847134009009%)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\u8A73\u7D30\u3092\u78BA\u8A8D\"})}),className:\"framer-1np891p\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"IBJXK3Vk6\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},transformTemplate:transformTemplate2,verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14ad567\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"YFQvwK1ok\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(206, 206, 234)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rhvgg4\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"WNUk_fTBj\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(206, 206, 234)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gqxkz\",layoutDependency:layoutDependency,layoutId:\"YA3Pfw1E4\",style:{backgroundColor:\"rgb(248, 248, 252)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bdakc7-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"I_DqUoPFI-container\",nodeId:\"I_DqUoPFI\",rendersWithMotion:true,scopeId:\"rK_AHDjER\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-bedca2f6-f4cf-411a-853b-67e489b58af9, rgb(255, 56, 132))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Group\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"I_DqUoPFI\",layoutId:\"I_DqUoPFI\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 45, 52))\"},children:\"\u7D4C\u9A13\u306E\u3042\u308B\u60C5\u30B7\u30B9\u304C\u696D\u52D9\u6574\u7406\"})}),className:\"framer-1dwwo2v\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"xwRzQWWbm\",style:{\"--extracted-r6o4lv\":\"rgb(41, 45, 52)\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-412mps\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"lmXtZufre\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(206, 206, 234)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bdl0yf\",layoutDependency:layoutDependency,layoutId:\"dSq1kBe_x\",style:{backgroundColor:\"rgb(248, 248, 252)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1o9lpig-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"NdHbGJdxf-container\",nodeId:\"NdHbGJdxf\",rendersWithMotion:true,scopeId:\"rK_AHDjER\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-bedca2f6-f4cf-411a-853b-67e489b58af9, rgb(255, 56, 132))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ChatBubbleOutline\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"NdHbGJdxf\",layoutId:\"NdHbGJdxf\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 45, 52))\"},children:\"\u4EBA \\xd7 Admina\u3067\u52B9\u7387\u7684\u306A\u60C5\u30B7\u30B9\u3092\u5B9F\u73FE\"})}),className:\"framer-6vjsi9\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"JqrGVDnGa\",style:{\"--extracted-r6o4lv\":\"rgb(41, 45, 52)\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-is3yka\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"ShWTOBOHN\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(206, 206, 234)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o2324u\",layoutDependency:layoutDependency,layoutId:\"nW13Ns4Bc\",style:{backgroundColor:\"rgb(248, 248, 252)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pt69qh-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"v7Ul2lg2i-container\",nodeId:\"v7Ul2lg2i\",rendersWithMotion:true,scopeId:\"rK_AHDjER\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-bedca2f6-f4cf-411a-853b-67e489b58af9, rgb(255, 56, 132))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"InsertChart\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"v7Ul2lg2i\",layoutId:\"v7Ul2lg2i\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(41, 45, 52))\"},children:\"\u670820\u4E07\u5186\u304B\u3089\u306E\u60C5\u30B7\u30B9\u30D7\u30E9\u30F3\"})}),className:\"framer-vro5cw\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"KnrMM1D6L\",style:{\"--extracted-r6o4lv\":\"rgb(41, 45, 52)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ejp8g3\",layoutDependency:layoutDependency,layoutId:\"mhb_htfW2\",style:{backgroundColor:\"rgb(153, 238, 255)\"}})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-137pma1\",layoutDependency:layoutDependency,layoutId:\"Ko1_unEud\",style:{background:\"linear-gradient(89deg, rgb(226, 117, 15) -25.120000000000005%, rgba(226, 117, 15, 0.75) 28.42060810810809%, rgb(255, 56, 132) 54.307432432432435%, rgb(255, 56, 132) 97.847134009009%)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9wjp8j\",layoutDependency:layoutDependency,layoutId:\"QxT992APC\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19n9gjw\",layoutDependency:layoutDependency,layoutId:\"ZDl5kgz0T\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1xf6emq\",\"data-styles-preset\":\"WQQwIyMi_\",children:\"\u60C5\u30B7\u30B9\u696D\u52D9\u3092\u307E\u308B\u3054\u3068\u304A\u307E\u304B\u305B\"})}),className:\"framer-ehsw7n\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"v42a4H6NV\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vr2qfv\",layoutDependency:layoutDependency,layoutId:\"e01dmxdfP\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1upi1ui\",\"data-styles-preset\":\"Vkdknv1jR\",children:\"Admina Digital Workforce\"})}),className:\"framer-smko43\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nB17XncCN\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-k2ouuf\",layoutDependency:layoutDependency,layoutId:\"bGptzZ5mJ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-159d1wk\",\"data-styles-preset\":\"L8WlPMxu2\",children:\"Admina Digital Workforce\u306F\u3001\u60C5\u30B7\u30B9\u696D\u52D9\u3092\u30C7\u30B8\u30BF\u30EB\u3068\u60C5\u30B7\u30B9\u306E\u529B\u3067\u652F\u63F4\u3059\u308B\u30B5\u30FC\u30D3\u30B9\u3067\u3059\u3002\u30EA\u30BD\u30FC\u30B9\u4E0D\u8DB3\u3084\u30CE\u30A6\u30CF\u30A6\u4E0D\u8DB3\u3067\u304A\u60A9\u307F\u306E\u4F01\u696D\u306B\u5411\u3051\u306E\u30D7\u30E9\u30F3\u3067\u3059\u3002\"})}),className:\"framer-8zlh6c\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ScvgF5hXf\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x5vcif\",\"data-framer-name\":\"1\u6BB5\u76EE\",layoutDependency:layoutDependency,layoutId:\"fyMnRi03z\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gldx1u\",\"data-framer-name\":\"\u60C5\u30B7\u30B9\u7ACB\u3061\u4E0A\u3052\u30D7\u30E9\u30F3\",layoutDependency:layoutDependency,layoutId:\"tsUO3nwjL\",style:{background:\"linear-gradient(118deg, var(--token-835ca85d-eb6e-4dd1-8fa3-da82333966d4, rgb(255, 182, 46)) 0%, var(--token-027a2760-074e-43a8-963f-52ed80271e1d, rgb(255, 56, 139)) 100%)\",boxShadow:\"2px 3px 3px 0px rgba(0, 0, 0, 0.25)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tg8u4n\",layoutDependency:layoutDependency,layoutId:\"RB_qGrGmT\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3767731a-c734-42cb-95e6-969c23ede99c, rgb(51, 65, 85)))\"},children:\"\u60C5\u30B7\u30B9\u4E0D\u5728\u306E\u4F01\u696D\u5411\u3051\"})}),className:\"framer-cv9lv1\",fonts:[\"GF;Noto Sans JP-regular\"],layoutDependency:layoutDependency,layoutId:\"SfEolCum7\",style:{\"--extracted-r6o4lv\":\"var(--token-3767731a-c734-42cb-95e6-969c23ede99c, rgb(51, 65, 85))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3767731a-c734-42cb-95e6-969c23ede99c, rgb(51, 65, 85)))\"},children:/*#__PURE__*/_jsxs(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(99deg, var(--token-835ca85d-eb6e-4dd1-8fa3-da82333966d4, rgb(255, 182, 46)) 0%, var(--token-027a2760-074e-43a8-963f-52ed80271e1d, rgb(255, 56, 139)) 100%)\"},children:[\"\u60C5\u30B7\u30B9\",/*#__PURE__*/_jsx(motion.strong,{children:\"\u7ACB\u3061\u4E0A\u3052\"})]})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-3767731a-c734-42cb-95e6-969c23ede99c, rgb(51, 65, 85)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(99deg, var(--token-835ca85d-eb6e-4dd1-8fa3-da82333966d4, rgb(255, 182, 46)) 0%, var(--token-027a2760-074e-43a8-963f-52ed80271e1d, rgb(255, 56, 139)) 100%)\"},children:\"\u30D7\u30E9\u30F3\"})})]}),className:\"framer-19muou2\",fonts:[\"GF;Noto Sans JP-regular\",\"GF;Noto Sans JP-700\"],layoutDependency:layoutDependency,layoutId:\"RTQbUFiik\",style:{\"--extracted-2gxw0f\":\"var(--token-3767731a-c734-42cb-95e6-969c23ede99c, rgb(51, 65, 85))\",\"--extracted-r6o4lv\":\"var(--token-3767731a-c734-42cb-95e6-969c23ede99c, rgb(51, 65, 85))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xqlteu\",\"data-framer-name\":\"\u60C5\u30B7\u30B9\u7ACB\u3061\u4E0A\u3052\u30D7\u30E9\u30F3\",layoutDependency:layoutDependency,layoutId:\"oMpjBqKkG\",style:{background:\"linear-gradient(118deg, var(--token-835ca85d-eb6e-4dd1-8fa3-da82333966d4, rgb(255, 182, 46)) 0%, var(--token-027a2760-074e-43a8-963f-52ed80271e1d, rgb(255, 56, 139)) 100%)\",boxShadow:\"2px 3px 3px 0px rgba(0, 0, 0, 0.25)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fshxnz\",layoutDependency:layoutDependency,layoutId:\"C0Cjf3RQM\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3767731a-c734-42cb-95e6-969c23ede99c, rgb(51, 65, 85)))\"},children:\"\u4E0A\u5834\u6E96\u5099\u4F01\u696D\u5411\u3051\"})}),className:\"framer-1pw5d29\",fonts:[\"GF;Noto Sans JP-regular\"],layoutDependency:layoutDependency,layoutId:\"gCs1l62Ce\",style:{\"--extracted-r6o4lv\":\"var(--token-3767731a-c734-42cb-95e6-969c23ede99c, rgb(51, 65, 85))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3767731a-c734-42cb-95e6-969c23ede99c, rgb(51, 65, 85)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(99deg, var(--token-835ca85d-eb6e-4dd1-8fa3-da82333966d4, rgb(255, 182, 46)) 0%, var(--token-027a2760-074e-43a8-963f-52ed80271e1d, rgb(255, 56, 139)) 100%)\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"IT\u7D71\u5236\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-3767731a-c734-42cb-95e6-969c23ede99c, rgb(51, 65, 85)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(99deg, var(--token-835ca85d-eb6e-4dd1-8fa3-da82333966d4, rgb(255, 182, 46)) 0%, var(--token-027a2760-074e-43a8-963f-52ed80271e1d, rgb(255, 56, 139)) 100%)\"},children:\"\u30D7\u30E9\u30F3\"})})]}),className:\"framer-1tacimx\",fonts:[\"GF;Noto Sans JP-regular\",\"GF;Noto Sans JP-700\"],layoutDependency:layoutDependency,layoutId:\"b_cUfXclQ\",style:{\"--extracted-2gxw0f\":\"var(--token-3767731a-c734-42cb-95e6-969c23ede99c, rgb(51, 65, 85))\",\"--extracted-r6o4lv\":\"var(--token-3767731a-c734-42cb-95e6-969c23ede99c, rgb(51, 65, 85))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hxslnx\",\"data-framer-name\":\"\u30A2\u30AB\u30A6\u30F3\u30C8\u7BA1\u7406\u307E\u308B\u306A\u3052\u30D7\u30E9\u30F3\",layoutDependency:layoutDependency,layoutId:\"g0aWlPn7t\",style:{background:\"linear-gradient(118deg, var(--token-835ca85d-eb6e-4dd1-8fa3-da82333966d4, rgb(255, 182, 46)) 0%, var(--token-027a2760-074e-43a8-963f-52ed80271e1d, rgb(255, 56, 139)) 100%)\",boxShadow:\"2px 3px 3px 0px rgba(0, 0, 0, 0.25)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gy80ac\",layoutDependency:layoutDependency,layoutId:\"a3Q_lGAbm\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3767731a-c734-42cb-95e6-969c23ede99c, rgb(51, 65, 85)))\"},children:\"\u30A2\u30AB\u30A6\u30F3\u30C8\u7BA1\u7406\u306B\u8AB2\u984C\"})}),className:\"framer-14rp3pr\",fonts:[\"GF;Noto Sans JP-regular\"],layoutDependency:layoutDependency,layoutId:\"bw6F66JhO\",style:{\"--extracted-r6o4lv\":\"var(--token-3767731a-c734-42cb-95e6-969c23ede99c, rgb(51, 65, 85))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3767731a-c734-42cb-95e6-969c23ede99c, rgb(51, 65, 85)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(99deg, var(--token-835ca85d-eb6e-4dd1-8fa3-da82333966d4, rgb(255, 182, 46)) 0%, var(--token-027a2760-074e-43a8-963f-52ed80271e1d, rgb(255, 56, 139)) 100%)\"},children:\"\u30A2\u30AB\u30A6\u30F3\u30C8\u7BA1\u7406\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-3767731a-c734-42cb-95e6-969c23ede99c, rgb(51, 65, 85)))\"},children:/*#__PURE__*/_jsxs(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(99deg, var(--token-835ca85d-eb6e-4dd1-8fa3-da82333966d4, rgb(255, 182, 46)) 0%, var(--token-027a2760-074e-43a8-963f-52ed80271e1d, rgb(255, 56, 139)) 100%)\"},children:[/*#__PURE__*/_jsx(motion.strong,{children:\"\u307E\u308B\u306A\u3052\"}),\"\u30D7\u30E9\u30F3\"]})})]}),className:\"framer-h7rp41\",fonts:[\"GF;Noto Sans JP-regular\",\"GF;Noto Sans JP-700\"],layoutDependency:layoutDependency,layoutId:\"II3VTpuea\",style:{\"--extracted-2gxw0f\":\"var(--token-3767731a-c734-42cb-95e6-969c23ede99c, rgb(51, 65, 85))\",\"--extracted-r6o4lv\":\"var(--token-3767731a-c734-42cb-95e6-969c23ede99c, rgb(51, 65, 85))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-g4erlh\",\"data-framer-name\":\"\u30A2\u30AB\u30A6\u30F3\u30C8\u7BA1\u7406\u307E\u308B\u306A\u3052\u30D7\u30E9\u30F3\",layoutDependency:layoutDependency,layoutId:\"FeBRPcggw\",style:{background:\"linear-gradient(118deg, var(--token-835ca85d-eb6e-4dd1-8fa3-da82333966d4, rgb(255, 182, 46)) 0%, var(--token-027a2760-074e-43a8-963f-52ed80271e1d, rgb(255, 56, 139)) 100%)\",boxShadow:\"2px 3px 3px 0px rgba(0, 0, 0, 0.25)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6qvmn3\",layoutDependency:layoutDependency,layoutId:\"kQcXDG2iY\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3767731a-c734-42cb-95e6-969c23ede99c, rgb(51, 65, 85)))\"},children:\"\u30B7\u30E3\u30C9\u30FCIT\u306B\u8AB2\u984C\"})}),className:\"framer-19zgmd1\",fonts:[\"GF;Noto Sans JP-regular\"],layoutDependency:layoutDependency,layoutId:\"CDRwGFeYk\",style:{\"--extracted-r6o4lv\":\"var(--token-3767731a-c734-42cb-95e6-969c23ede99c, rgb(51, 65, 85))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3767731a-c734-42cb-95e6-969c23ede99c, rgb(51, 65, 85)))\"},children:/*#__PURE__*/_jsxs(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(99deg, var(--token-835ca85d-eb6e-4dd1-8fa3-da82333966d4, rgb(255, 182, 46)) 0%, var(--token-027a2760-074e-43a8-963f-52ed80271e1d, rgb(255, 56, 139)) 100%)\"},children:[\"SaaS\u30AC\u30D0\u30CA\u30F3\u30B9\",/*#__PURE__*/_jsx(motion.strong,{children:\"\u5FB9\u5E95\"}),\"\u30D7\u30E9\u30F3\"]})})}),className:\"framer-84r1xy\",fonts:[\"GF;Noto Sans JP-regular\",\"GF;Noto Sans JP-700\"],layoutDependency:layoutDependency,layoutId:\"Ypw9cmdFf\",style:{\"--extracted-r6o4lv\":\"var(--token-3767731a-c734-42cb-95e6-969c23ede99c, rgb(51, 65, 85))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TAK5T.framer-7f5qk3, .framer-TAK5T .framer-7f5qk3 { display: block; }\",\".framer-TAK5T.framer-tw7umk { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 704px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1040px; }\",\".framer-TAK5T .framer-1m5qel6 { flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-TAK5T .framer-odevq7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 38px; height: 143px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: calc(49.50000000000002% - 143px / 2); width: 100%; }\",\".framer-TAK5T .framer-450pg3 { flex: none; height: 135px; position: relative; width: 135px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-TAK5T .framer-10gg8l2-container, .framer-TAK5T .framer-1sa61hq-container, .framer-TAK5T .framer-1vtp8yv-container, .framer-TAK5T .framer-87ht59-container, .framer-TAK5T .framer-1yg0aj-container { bottom: 50px; flex: none; height: 60px; left: calc(49.629629629629655% - 60px / 2); position: absolute; width: 60px; }\",\".framer-TAK5T .framer-10lxvwp { bottom: 11px; flex: none; height: auto; left: 50%; position: absolute; white-space: pre-wrap; width: 100px; word-break: break-word; word-wrap: break-word; }\",\".framer-TAK5T .framer-1yml41q, .framer-TAK5T .framer-7an8lv, .framer-TAK5T .framer-xhw707, .framer-TAK5T .framer-1wnewt { cursor: pointer; flex: none; height: 135px; position: relative; width: 135px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-TAK5T .framer-1k2944f { bottom: 20px; flex: none; height: auto; left: 50%; position: absolute; white-space: pre-wrap; width: 72px; word-break: break-word; word-wrap: break-word; }\",\".framer-TAK5T .framer-1tgyhri { bottom: 6px; flex: none; height: auto; left: 49%; position: absolute; white-space: pre-wrap; width: 95px; word-break: break-word; word-wrap: break-word; }\",\".framer-TAK5T .framer-d1nhk8 { bottom: 6px; flex: none; height: auto; left: 50%; position: absolute; white-space: pre-wrap; width: 64px; word-break: break-word; word-wrap: break-word; }\",\".framer-TAK5T .framer-1uj9tph { bottom: 6px; flex: none; height: auto; left: 50%; position: absolute; white-space: pre-wrap; width: 123px; word-break: break-word; word-wrap: break-word; }\",\".framer-TAK5T .framer-1g9qp73 { flex: none; height: 458px; overflow: visible; position: relative; width: 1040px; }\",\".framer-TAK5T .framer-n0jgtc, .framer-TAK5T .framer-1osbvdb { flex: none; height: 456px; left: calc(50% - 99.8076923076923% / 2); overflow: hidden; position: absolute; top: 1px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-TAK5T .framer-1cd0fes, .framer-TAK5T .framer-2oze25 { flex: none; height: 456px; left: 579px; overflow: visible; position: absolute; top: 0px; width: 44%; z-index: 3; }\",\".framer-TAK5T .framer-ps29zp, .framer-TAK5T .framer-ht5mcp { flex: none; height: 52px; left: 36px; position: absolute; text-decoration: none; top: 356px; width: 85%; }\",\".framer-TAK5T .framer-1dkalwl, .framer-TAK5T .framer-1np891p { -webkit-user-select: none; flex: none; height: auto; left: 50%; pointer-events: auto; position: absolute; top: 50%; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TAK5T .framer-uzhwh7, .framer-TAK5T .framer-14ad567 { bottom: 160px; flex: none; height: 209px; left: calc(50.326797385620935% - 84.9673202614379% / 2); overflow: visible; position: absolute; width: 85%; }\",\".framer-TAK5T .framer-t88yca, .framer-TAK5T .framer-1rhvgg4 { flex: none; height: 69px; left: calc(50% - 388px / 2); overflow: visible; position: absolute; top: 1px; width: 388px; }\",\".framer-TAK5T .framer-1a46is1, .framer-TAK5T .framer-1xa44gp, .framer-TAK5T .framer-1xl1jfj, .framer-TAK5T .framer-1gqxkz, .framer-TAK5T .framer-1bdl0yf, .framer-TAK5T .framer-1o2324u { flex: none; height: 40px; left: 13px; overflow: visible; position: absolute; top: 14px; width: 40px; }\",\".framer-TAK5T .framer-16wam8-container, .framer-TAK5T .framer-1qc31ix-container, .framer-TAK5T .framer-bglwzs-container, .framer-TAK5T .framer-bdakc7-container, .framer-TAK5T .framer-1o9lpig-container, .framer-TAK5T .framer-pt69qh-container { flex: none; height: 30px; left: calc(50.00000000000002% - 30px / 2); position: absolute; top: calc(50.00000000000002% - 30px / 2); width: 30px; }\",\".framer-TAK5T .framer-1s5pvwa, .framer-TAK5T .framer-ch2lol, .framer-TAK5T .framer-1734c13, .framer-TAK5T .framer-1dwwo2v, .framer-TAK5T .framer-6vjsi9, .framer-TAK5T .framer-vro5cw { -webkit-user-select: none; flex: none; height: auto; left: 65px; pointer-events: auto; position: absolute; top: 22px; user-select: none; white-space: pre; width: auto; }\",\".framer-TAK5T .framer-13tanmc, .framer-TAK5T .framer-412mps { flex: none; height: 69px; left: calc(50% - 388px / 2); overflow: visible; position: absolute; top: 70px; width: 388px; }\",\".framer-TAK5T .framer-m8kp5y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 4px; top: calc(50.00000000000002% - 1px / 2); width: 15px; }\",\".framer-TAK5T .framer-1gz1sr7, .framer-TAK5T .framer-jmkmld { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-TAK5T .framer-195mqfh, .framer-TAK5T .framer-is3yka { flex: none; height: 69px; left: calc(50% - 388px / 2); overflow: visible; position: absolute; top: 139px; width: 388px; }\",\".framer-TAK5T .framer-1fz1evq, .framer-TAK5T .framer-1ejp8g3 { flex: none; height: 1px; left: 159px; overflow: hidden; position: absolute; top: calc(50.72463768115944% - 1px / 2); width: 5px; }\",\".framer-TAK5T .framer-wk57kw, .framer-TAK5T .framer-137pma1 { bottom: 48px; flex: none; height: 52px; left: 615px; position: absolute; width: 38%; }\",\".framer-TAK5T .framer-1vx3jes { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: -565px; overflow: hidden; padding: 0px; position: absolute; top: -292px; width: 498px; }\",\".framer-TAK5T .framer-lb58mf, .framer-TAK5T .framer-13mswvg, .framer-TAK5T .framer-19n9gjw, .framer-TAK5T .framer-vr2qfv, .framer-TAK5T .framer-k2ouuf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TAK5T .framer-11osa13, .framer-TAK5T .framer-tb589y, .framer-TAK5T .framer-ehsw7n, .framer-TAK5T .framer-smko43, .framer-TAK5T .framer-8zlh6c { -webkit-user-select: none; flex: 1 0 0px; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-TAK5T .framer-1r3ta6p { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TAK5T .framer-1cyftzs { -webkit-user-select: none; cursor: pointer; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 498px; word-break: break-word; word-wrap: break-word; }\",\".framer-TAK5T .framer-n3swmz { bottom: 32px; flex: none; height: 150px; left: 26px; overflow: hidden; position: absolute; width: 509px; }\",\".framer-TAK5T .framer-1n4pn4y, .framer-TAK5T .framer-mxvqpp, .framer-TAK5T .framer-mvuxlc { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: absolute; right: 0px; top: 25px; user-select: none; white-space: pre-wrap; width: 377px; word-break: break-word; word-wrap: break-word; }\",\".framer-TAK5T .framer-2qm339, .framer-TAK5T .framer-1g60xe6, .framer-TAK5T .framer-1r0mimy { aspect-ratio: 6 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); left: 132px; position: absolute; top: 0px; width: 96px; }\",\".framer-TAK5T .framer-11m4koo, .framer-TAK5T .framer-1ap590x, .framer-TAK5T .framer-1s0lhaa { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 119px); left: 0px; position: absolute; top: 50%; width: 119px; z-index: 1; }\",\".framer-TAK5T .framer-1ob85lj, .framer-TAK5T .framer-iq0bgk { flex: none; height: auto; left: 242px; position: absolute; top: 1px; white-space: pre; width: auto; }\",\".framer-TAK5T .framer-1w8vpti, .framer-TAK5T .framer-9cuvjz { bottom: 36px; flex: none; height: 150px; left: 44px; overflow: hidden; position: absolute; width: 510px; }\",\".framer-TAK5T .framer-1aktbol { bottom: 17px; flex: none; height: 150px; left: 26px; overflow: hidden; position: absolute; width: 49%; }\",\".framer-TAK5T .framer-oajws6 { flex: none; height: auto; left: 242px; position: absolute; top: -8px; white-space: pre; width: auto; }\",\".framer-TAK5T .framer-1275mni { -webkit-user-select: none; flex: none; height: auto; left: 17px; pointer-events: auto; position: absolute; right: 0px; top: 25px; user-select: none; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-TAK5T .framer-11zhktt { aspect-ratio: 6 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); left: 13px; position: absolute; top: 0px; width: 96px; }\",\".framer-TAK5T .framer-1biieo1 { flex: none; height: auto; left: 135px; position: absolute; top: 1px; white-space: pre; width: auto; }\",\".framer-TAK5T .framer-1num8ic { bottom: 8px; flex: none; height: 220px; left: 110px; position: absolute; width: 333px; }\",\".framer-TAK5T .framer-9wjp8j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: -565px; overflow: hidden; padding: 0px; position: absolute; top: -292px; width: 498px; }\",\".framer-TAK5T .framer-1x5vcif { align-content: center; align-items: center; bottom: 59px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 108px; justify-content: center; left: 40px; overflow: hidden; padding: 10px; position: absolute; width: min-content; }\",\".framer-TAK5T .framer-gldx1u, .framer-TAK5T .framer-xqlteu, .framer-TAK5T .framer-1hxslnx, .framer-TAK5T .framer-g4erlh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 120px; }\",\".framer-TAK5T .framer-tg8u4n, .framer-TAK5T .framer-fshxnz, .framer-TAK5T .framer-1gy80ac, .framer-TAK5T .framer-6qvmn3 { align-content: center; align-items: center; display: flex; flex: 0.9 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 90%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-TAK5T .framer-cv9lv1, .framer-TAK5T .framer-1pw5d29, .framer-TAK5T .framer-14rp3pr, .framer-TAK5T .framer-h7rp41, .framer-TAK5T .framer-19zgmd1, .framer-TAK5T .framer-84r1xy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TAK5T .framer-19muou2, .framer-TAK5T .framer-1tacimx { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TAK5T.framer-tw7umk, .framer-TAK5T .framer-odevq7, .framer-TAK5T .framer-m8kp5y, .framer-TAK5T .framer-1vx3jes, .framer-TAK5T .framer-lb58mf, .framer-TAK5T .framer-13mswvg, .framer-TAK5T .framer-1r3ta6p, .framer-TAK5T .framer-9wjp8j, .framer-TAK5T .framer-19n9gjw, .framer-TAK5T .framer-vr2qfv, .framer-TAK5T .framer-k2ouuf, .framer-TAK5T .framer-1x5vcif, .framer-TAK5T .framer-gldx1u, .framer-TAK5T .framer-tg8u4n, .framer-TAK5T .framer-xqlteu, .framer-TAK5T .framer-fshxnz, .framer-TAK5T .framer-1hxslnx, .framer-TAK5T .framer-1gy80ac, .framer-TAK5T .framer-g4erlh, .framer-TAK5T .framer-6qvmn3 { gap: 0px; } .framer-TAK5T.framer-tw7umk > *, .framer-TAK5T .framer-tg8u4n > *, .framer-TAK5T .framer-fshxnz > *, .framer-TAK5T .framer-1gy80ac > *, .framer-TAK5T .framer-6qvmn3 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-TAK5T.framer-tw7umk > :first-child, .framer-TAK5T .framer-1vx3jes > :first-child, .framer-TAK5T .framer-9wjp8j > :first-child, .framer-TAK5T .framer-tg8u4n > :first-child, .framer-TAK5T .framer-fshxnz > :first-child, .framer-TAK5T .framer-1gy80ac > :first-child, .framer-TAK5T .framer-6qvmn3 > :first-child { margin-top: 0px; } .framer-TAK5T.framer-tw7umk > :last-child, .framer-TAK5T .framer-1vx3jes > :last-child, .framer-TAK5T .framer-9wjp8j > :last-child, .framer-TAK5T .framer-tg8u4n > :last-child, .framer-TAK5T .framer-fshxnz > :last-child, .framer-TAK5T .framer-1gy80ac > :last-child, .framer-TAK5T .framer-6qvmn3 > :last-child { margin-bottom: 0px; } .framer-TAK5T .framer-odevq7 > * { margin: 0px; margin-left: calc(38px / 2); margin-right: calc(38px / 2); } .framer-TAK5T .framer-odevq7 > :first-child, .framer-TAK5T .framer-m8kp5y > :first-child, .framer-TAK5T .framer-lb58mf > :first-child, .framer-TAK5T .framer-13mswvg > :first-child, .framer-TAK5T .framer-1r3ta6p > :first-child, .framer-TAK5T .framer-19n9gjw > :first-child, .framer-TAK5T .framer-vr2qfv > :first-child, .framer-TAK5T .framer-k2ouuf > :first-child, .framer-TAK5T .framer-1x5vcif > :first-child, .framer-TAK5T .framer-gldx1u > :first-child, .framer-TAK5T .framer-xqlteu > :first-child, .framer-TAK5T .framer-1hxslnx > :first-child, .framer-TAK5T .framer-g4erlh > :first-child { margin-left: 0px; } .framer-TAK5T .framer-odevq7 > :last-child, .framer-TAK5T .framer-m8kp5y > :last-child, .framer-TAK5T .framer-lb58mf > :last-child, .framer-TAK5T .framer-13mswvg > :last-child, .framer-TAK5T .framer-1r3ta6p > :last-child, .framer-TAK5T .framer-19n9gjw > :last-child, .framer-TAK5T .framer-vr2qfv > :last-child, .framer-TAK5T .framer-k2ouuf > :last-child, .framer-TAK5T .framer-1x5vcif > :last-child, .framer-TAK5T .framer-gldx1u > :last-child, .framer-TAK5T .framer-xqlteu > :last-child, .framer-TAK5T .framer-1hxslnx > :last-child, .framer-TAK5T .framer-g4erlh > :last-child { margin-right: 0px; } .framer-TAK5T .framer-m8kp5y > *, .framer-TAK5T .framer-lb58mf > *, .framer-TAK5T .framer-13mswvg > *, .framer-TAK5T .framer-1r3ta6p > *, .framer-TAK5T .framer-19n9gjw > *, .framer-TAK5T .framer-vr2qfv > *, .framer-TAK5T .framer-k2ouuf > *, .framer-TAK5T .framer-gldx1u > *, .framer-TAK5T .framer-xqlteu > *, .framer-TAK5T .framer-1hxslnx > *, .framer-TAK5T .framer-g4erlh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-TAK5T .framer-1vx3jes > *, .framer-TAK5T .framer-9wjp8j > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-TAK5T .framer-1x5vcif > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } }\",\".framer-TAK5T.framer-v-mkp1h3 .framer-450pg3, .framer-TAK5T.framer-v-17bb3yn .framer-450pg3, .framer-TAK5T.framer-v-71psyo .framer-450pg3, .framer-TAK5T.framer-v-tjhdsh .framer-450pg3 { cursor: pointer; }\",\".framer-TAK5T.framer-v-mkp1h3 .framer-1734c13 { left: 49%; top: 49%; }\",\".framer-TAK5T.framer-v-mkp1h3 .framer-lb58mf { order: 0; }\",\".framer-TAK5T.framer-v-mkp1h3 .framer-13mswvg { order: 1; }\",\".framer-TAK5T.framer-v-mkp1h3 .framer-1r3ta6p { order: 2; }\",\".framer-TAK5T.framer-v-mkp1h3 .framer-1cyftzs { flex: 1 0 0px; width: 1px; }\",\".framer-TAK5T.framer-v-17bb3yn .framer-n0jgtc { left: calc(50.00000000000002% - 99.8076923076923% / 2); }\",\".framer-TAK5T.framer-v-17bb3yn .framer-1vx3jes { width: 530px; }\",\".framer-TAK5T.framer-v-17bb3yn .framer-1r3ta6p { justify-content: flex-start; }\",\".framer-TAK5T.framer-v-71psyo .framer-1vx3jes { height: 184px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-TAK5T[data-border=\"true\"]::after, .framer-TAK5T [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 704\n * @framerIntrinsicWidth 1040\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"BQocXg6Lk\":{\"layout\":[\"fixed\",\"fixed\"]},\"vPu2YS9pS\":{\"layout\":[\"fixed\",\"fixed\"]},\"I_8zaGBuO\":{\"layout\":[\"fixed\",\"fixed\"]},\"VI7jmz4Ib\":{\"layout\":[\"fixed\",\"fixed\"]},\"CThjOgx3u\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerrK_AHDjER=withCSS(Component,css,\"framer-TAK5T\");export default FramerrK_AHDjER;FramerrK_AHDjER.displayName=\"model\";FramerrK_AHDjER.defaultProps={height:704,width:1040};addPropertyControls(FramerrK_AHDjER,{variant:{options:[\"j2YwnOjuY\",\"BQocXg6Lk\",\"vPu2YS9pS\",\"I_8zaGBuO\",\"VI7jmz4Ib\",\"CThjOgx3u\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerrK_AHDjER,[{explicitInter:true,fonts:[{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{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/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{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/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{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/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{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/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{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/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v53/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEj757Y0rw-oME.woff2\",weight:\"400\"},{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v53/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFPYk757Y0rw-oME.woff2\",weight:\"700\"}]},...MaterialFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrK_AHDjER\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BQocXg6Lk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vPu2YS9pS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"I_8zaGBuO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VI7jmz4Ib\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CThjOgx3u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"704\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1040\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rK_AHDjER.map", "// Generated by Framer (64bdc4e)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,FormBooleanInput,FormContainer,FormSelect,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLoadMorePaginatedQuery,useLocaleCode,useLocaleInfo,useMetadata,useQueryData,useRouteElementId,useRouter,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/s801VqobGI0Gkh3K9b41/Embed.js\";import{Lottie}from\"https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/7oWoX9MqdnxameM59dqC/Lottie.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import AIBtnWaitinglistJuly from\"#framer/local/canvasComponent/b4OQsVBsC/b4OQsVBsC.js\";import BtnMoving from\"#framer/local/canvasComponent/gnT2nPQxH/gnT2nPQxH.js\";import Input from\"#framer/local/canvasComponent/heH3AbBpo/heH3AbBpo.js\";import BtnMoving2 from\"#framer/local/canvasComponent/OdsFIrYH5/OdsFIrYH5.js\";import Model from\"#framer/local/canvasComponent/rK_AHDjER/rK_AHDjER.js\";import FeatureButtun from\"#framer/local/canvasComponent/rockOk4hz/rockOk4hz.js\";import AIBtnWaitinglistUS from\"#framer/local/canvasComponent/u3oXOuhjv/u3oXOuhjv.js\";import MegaMenu from\"#framer/local/canvasComponent/YS7Yq8HBm/YS7Yq8HBm.js\";import FooterJP from\"#framer/local/canvasComponent/ZHIWYDLuV/ZHIWYDLuV.js\";import CaseStudyJp,{enumToDisplayNameFunctions}from\"#framer/local/collection/bAzn5WDrO/bAzn5WDrO.js\";import NewsJP from\"#framer/local/collection/cYOgW8s8H/cYOgW8s8H.js\";import DocsJP from\"#framer/local/collection/NBmPyVUsz/NBmPyVUsz.js\";import BlogJP from\"#framer/local/collection/wt2tUry0B/wt2tUry0B.js\";import*as sharedStyle12 from\"#framer/local/css/DZ5nd0ofK/DZ5nd0ofK.js\";import*as sharedStyle7 from\"#framer/local/css/f_JgQVGd5/f_JgQVGd5.js\";import*as sharedStyle8 from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle6 from\"#framer/local/css/JVMh9NW7P/JVMh9NW7P.js\";import*as sharedStyle4 from\"#framer/local/css/L8WlPMxu2/L8WlPMxu2.js\";import*as sharedStyle10 from\"#framer/local/css/Mq1SEPaJJ/Mq1SEPaJJ.js\";import*as sharedStyle3 from\"#framer/local/css/NBmHIHQJ8/NBmHIHQJ8.js\";import*as sharedStyle5 from\"#framer/local/css/Plhv5Vccy/Plhv5Vccy.js\";import*as sharedStyle13 from\"#framer/local/css/ro7OPezbn/ro7OPezbn.js\";import*as sharedStyle9 from\"#framer/local/css/SJKS8HL6U/SJKS8HL6U.js\";import*as sharedStyle1 from\"#framer/local/css/Vkdknv1jR/Vkdknv1jR.js\";import*as sharedStyle from\"#framer/local/css/WeC56LYSd/WeC56LYSd.js\";import*as sharedStyle2 from\"#framer/local/css/WQQwIyMi_/WQQwIyMi_.js\";import*as sharedStyle11 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import metadataProvider from\"#framer/local/webPageMetadata/aFR96jTcg/aFR96jTcg.js\";const MegaMenuFonts=getFonts(MegaMenu);const BtnMovingFonts=getFonts(BtnMoving);const BtnMoving2Fonts=getFonts(BtnMoving2);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const TickerFonts=getFonts(Ticker);const MaterialFonts=getFonts(Material);const SlideshowFonts=getFonts(Slideshow);const ModelFonts=getFonts(Model);const VideoFonts=getFonts(Video);const FeatureButtunFonts=getFonts(FeatureButtun);const AIBtnWaitinglistUSFonts=getFonts(AIBtnWaitinglistUS);const EmbedFonts=getFonts(Embed);const InputFonts=getFonts(Input);const AIBtnWaitinglistJulyFonts=getFonts(AIBtnWaitinglistJuly);const LottieFonts=getFonts(Lottie);const Ticker1Fonts=getFonts(Ticker1);const FooterJPFonts=getFonts(FooterJP);const breakpoints={COBB35V1K:\"(min-width: 1200px)\",E_dO8UpHS:\"(max-width: 809px)\",yoWcz2rKb:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-uE5Xr\";const variantClassNames={COBB35V1K:\"framer-v-i3q8sy\",E_dO8UpHS:\"framer-v-1e9jhki\",yoWcz2rKb:\"framer-v-r1e9az\"};const transition1={damping:50,delay:.1,mass:1,stiffness:70,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition2={damping:50,delay:.3,mass:1,stiffness:70,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={damping:50,delay:.5,mass:1,stiffness:70,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transition4={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.98,skewX:0,skewY:0,transition:transition4};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition4};const transition5={damping:65,delay:.1,mass:3.8,stiffness:309,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.03,skewX:0,skewY:0,transition:transition5};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"IE4nwsa6Q\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const animation7={boxShadow:\"0px 0px 18px 0px rgba(0, 0, 0, 0.18)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.98,skewX:0,skewY:0,transition:transition4};const QueryData1=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const sharedDateFormatter=(value,formatOptions,locale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";try{return date.toLocaleString(locale||fallbackLocale,formatOptions);}catch{return date.toLocaleString(fallbackLocale,formatOptions);}};const dateOptions={dateStyle:\"long\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,activeLocale);};const dateOptions1={dateStyle:\"short\",timeZone:\"UTC\"};const toDateString1=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions1,activeLocale);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"COBB35V1K\",Phone:\"E_dO8UpHS\",Tablet:\"yoWcz2rKb\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"COBB35V1K\"};};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,Zzp9hQyyWIE4nwsa6Q,hBWA_gKWeIE4nwsa6Q,VdF_ws4avIE4nwsa6Q,fjlgMXmFpIE4nwsa6Q,MgcfiyxpjIE4nwsa6Q,AtG1Fu3C6IE4nwsa6Q,yzQwSvrJKIE4nwsa6Q,idIE4nwsa6Q,MYs0kTrFJpkvEeQpx9,NOHGgWDbjpkvEeQpx9,S6VDQu0SGpkvEeQpx9,idpkvEeQpx9,VtmCQFJBfsyk9CfVsh,SxU8ACQc2syk9CfVsh,idsyk9CfVsh,zRJAVzAsrmrZ0nB6ak,EZ9i8TIt1mrZ0nB6ak,Dprdsq8GnmrZ0nB6ak,idmrZ0nB6ak,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"YrHBKHqi0\");const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"yoWcz2rKb\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"yoWcz2rKb\",\"E_dO8UpHS\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"E_dO8UpHS\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"yoWcz2rKb\",\"E_dO8UpHS\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"yoWcz2rKb\")return false;return true;};const isDisplayed5=()=>{if(!isBrowser())return true;if(baseVariant===\"E_dO8UpHS\")return false;return true;};const activeLocaleCode=useLocaleCode();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"COBB35V1K\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-i3q8sy\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eliv9t-container\",nodeId:\"GYC947rxs\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{variant:\"QlfaCZgiJ\"}},children:/*#__PURE__*/_jsx(MegaMenu,{height:\"100%\",id:\"GYC947rxs\",layoutId:\"GYC947rxs\",style:{width:\"100%\"},variant:\"LUYgHn7TQ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jsptx\",\"data-framer-name\":\"1st view\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+52+-80),pixelHeight:1080,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9974 + 32px)`,src:\"https://framerusercontent.com/images/Vm7fKkJIM8c8jN2REiKwYq36MuA.jpg\",srcSet:\"https://framerusercontent.com/images/Vm7fKkJIM8c8jN2REiKwYq36MuA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Vm7fKkJIM8c8jN2REiKwYq36MuA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vm7fKkJIM8c8jN2REiKwYq36MuA.jpg 1920w\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+0+-80),pixelHeight:1080,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} + 1px)`,src:\"https://framerusercontent.com/images/Vm7fKkJIM8c8jN2REiKwYq36MuA.jpg\",srcSet:\"https://framerusercontent.com/images/Vm7fKkJIM8c8jN2REiKwYq36MuA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Vm7fKkJIM8c8jN2REiKwYq36MuA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vm7fKkJIM8c8jN2REiKwYq36MuA.jpg 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+0+-80),pixelHeight:1080,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} + 2px)`,src:\"https://framerusercontent.com/images/Vm7fKkJIM8c8jN2REiKwYq36MuA.jpg\",srcSet:\"https://framerusercontent.com/images/Vm7fKkJIM8c8jN2REiKwYq36MuA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Vm7fKkJIM8c8jN2REiKwYq36MuA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vm7fKkJIM8c8jN2REiKwYq36MuA.jpg 1920w\"},className:\"framer-1dcqc2o\",\"data-framer-name\":\"Overlay\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fdfcx2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bcystr\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e3j5nb\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4uuzvb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yoWcz2rKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1upi1ui\",\"data-styles-preset\":\"Vkdknv1jR\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u60C5\u30B7\u30B9\u30C7\u30FC\u30BF\u306E\u5168\u3066\u3092\u4E00\u5143\u7BA1\u7406\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-qz0af6\",\"data-styles-preset\":\"WeC56LYSd\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u60C5\u30B7\u30B9\u30C7\u30FC\u30BF\u306E\u5168\u3066\u3092\u4E00\u5143\u7BA1\u7406\"})}),className:\"framer-jyxrx5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1al2mh4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1upi1ui\",\"data-styles-preset\":\"Vkdknv1jR\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"SaaS\u304B\u3089IT\u30C7\u30D0\u30A4\u30B9\u307E\u3067Admina\u3067\u7BA1\u7406\u696D\u52D9\u3092\u30B7\u30F3\u30D7\u30EB\u306B\"})})},yoWcz2rKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-iy8jw4\",\"data-styles-preset\":\"NBmHIHQJ8\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"SaaS\u304B\u3089IT\u30C7\u30D0\u30A4\u30B9\u307E\u3067Admina\u3067\u7BA1\u7406\u696D\u52D9\u3092\u30B7\u30F3\u30D7\u30EB\u306B\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1xf6emq\",\"data-styles-preset\":\"WQQwIyMi_\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"SaaS\u304B\u3089IT\u30C7\u30D0\u30A4\u30B9\u307E\u3067\"}),/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1xf6emq\",\"data-styles-preset\":\"WQQwIyMi_\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Admina\u3067\u7BA1\u7406\u696D\u52D9\u3092\u30B7\u30F3\u30D7\u30EB\u306B\"})]}),className:\"framer-1ulnumj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qx8ttn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-12jq1oe\",\"data-styles-preset\":\"Plhv5Vccy\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Admina\u306F\u3001\u591A\u69D8\u306A\u30AF\u30E9\u30A6\u30C9\u30B5\u30FC\u30D3\u30B9\u3084SaaS\u3068\u306E\u9023\u643A\u3092\u5B9F\u73FE\u3002\",/*#__PURE__*/_jsx(\"br\",{}),\"\u4E00\u5143\u7684\u306B\u793E\u5185\u306ESaaS\u74B0\u5883\u3092\u53EF\u8996\u5316\u3057\u3001\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u30EA\u30B9\u30AF\u3092\u4F4E\u6E1B\u3002\",/*#__PURE__*/_jsx(\"br\",{}),\"\u7121\u99C4\u306A\u30AF\u30E9\u30A6\u30C9\u30B3\u30B9\u30C8\u3092\u898B\u76F4\u3057\u3001\u52B9\u7387\u7684\u306A\u8CC7\u7523\u7BA1\u7406\u3092\u30B5\u30DD\u30FC\u30C8\u3057\u3001\u60C5\u30B7\u30B9\u306E\u696D\u52D9\u306E\u30C7\u30FC\u30BF\u7BA1\u7406\u30C4\u30FC\u30EB\u3067\u3059\u3002\"]})}),fonts:[\"Inter\"]},yoWcz2rKb:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-159d1wk\",\"data-styles-preset\":\"L8WlPMxu2\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Admina\u306F\u3001\u591A\u69D8\u306A\u30AF\u30E9\u30A6\u30C9\u30B5\u30FC\u30D3\u30B9\u3084SaaS\u3068\u306E\u9023\u643A\u3092\u5B9F\u73FE\u3002\"}),/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-159d1wk\",\"data-styles-preset\":\"L8WlPMxu2\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u4E00\u5143\u7684\u306B\u793E\u5185\u306ESaaS\u74B0\u5883\u3092\u53EF\u8996\u5316\u3057\u3001\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u30EA\u30B9\u30AF\u3092\u4F4E\u6E1B\u3002\"}),/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-159d1wk\",\"data-styles-preset\":\"L8WlPMxu2\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u7121\u99C4\u306A\u30AF\u30E9\u30A6\u30C9\u30B3\u30B9\u30C8\u3092\u898B\u76F4\u3057\u3001\u52B9\u7387\u7684\u306A\u8CC7\u7523\u7BA1\u7406\u3092\u30B5\u30DD\u30FC\u30C8\u3057\u60C5\u30B7\u30B9\u306E\u696D\u52D9\u306E\u30C7\u30FC\u30BF\u7BA1\u7406\u30C4\u30FC\u30EB\u3067\u3059\u3002\"})]}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTcwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Admina\u306F\u3001\u591A\u69D8\u306A\u30AF\u30E9\u30A6\u30C9\u30B5\u30FC\u30D3\u30B9\u3084SaaS\u3068\u306E\u9023\u643A\u3092\u5B9F\u73FE\u3002\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTcwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u4E00\u5143\u7684\u306B\u793E\u5185\u306ESaaS\u74B0\u5883\u3092\u53EF\u8996\u5316\u3057\u3001\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u30EA\u30B9\u30AF\u3092\u4F4E\u6E1B\u3002\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTcwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"\u7121\u99C4\u306A\u30AF\u30E9\u30A6\u30C9\u30B3\u30B9\u30C8\u3092\u898B\u76F4\u3057\u3001\u52B9\u7387\u7684\u306A\u8CC7\u7523\u7BA1\u7406\u3092\u30B5\u30DD\u30FC\u30C8\u3057\",/*#__PURE__*/_jsx(\"br\",{}),\"\u60C5\u30B7\u30B9\u306E\u696D\u52D9\u306E\u30C7\u30FC\u30BF\u7BA1\u7406\u30C4\u30FC\u30EB\u3067\u3059\u3002\"]})]}),className:\"framer-1qatigo\",fonts:[\"GF;Noto Sans JP-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9alep6\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YnDh2zDlw\"},implicitPathVariables:undefined},{href:{webPageId:\"YnDh2zDlw\"},implicitPathVariables:undefined},{href:{webPageId:\"YnDh2zDlw\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+52+0+0+0+0+5+30+113+0},yoWcz2rKb:{y:(componentViewport?.y||0)+50+0+0+16.9+40+10+180.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+50+0+-108+0+0+30+616+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tfmuzi-container\",nodeId:\"az5LZrusB\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{gTJRdXSEn:resolvedLinks[2]},yoWcz2rKb:{gTJRdXSEn:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(BtnMoving,{gTJRdXSEn:resolvedLinks[0],height:\"100%\",id:\"az5LZrusB\",layoutId:\"az5LZrusB\",Nl5LoIyur:\"\u8CC7\u6599\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yhuCZDUnt\"},implicitPathVariables:undefined},{href:{webPageId:\"yhuCZDUnt\"},implicitPathVariables:undefined},{href:{webPageId:\"yhuCZDUnt\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+52+0+0+0+0+5+30+113+0},yoWcz2rKb:{y:(componentViewport?.y||0)+50+0+0+16.9+40+10+180.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+50+0+-108+0+0+30+616+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vj9y33-container\",nodeId:\"a5D3AiUAw\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{gTJRdXSEn:resolvedLinks1[2]},yoWcz2rKb:{gTJRdXSEn:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(BtnMoving2,{gTJRdXSEn:resolvedLinks1[0],height:\"100%\",id:\"a5D3AiUAw\",layoutId:\"a5D3AiUAw\",Nl5LoIyur:\"\u7121\u6599\u3067\u8A66\u3057\u3066\u307F\u308B\",width:\"100%\"})})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kd3wcp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2519,intrinsicWidth:2690,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+52+0+0+0+218+0+0),pixelHeight:2519,pixelWidth:2690,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} * 0.9974 - 20px, 1000px)`,src:\"https://framerusercontent.com/images/TXZJQq2pSwVdjF8hka57UgVZZl0.png\",srcSet:\"https://framerusercontent.com/images/TXZJQq2pSwVdjF8hka57UgVZZl0.png?scale-down-to=512 512w,https://framerusercontent.com/images/TXZJQq2pSwVdjF8hka57UgVZZl0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TXZJQq2pSwVdjF8hka57UgVZZl0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/TXZJQq2pSwVdjF8hka57UgVZZl0.png 2690w\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2519,intrinsicWidth:2690,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+0+0+0+0+0),pixelHeight:2519,pixelWidth:2690,positionX:\"center\",positionY:\"center\",sizes:\"319px\",src:\"https://framerusercontent.com/images/TXZJQq2pSwVdjF8hka57UgVZZl0.png\",srcSet:\"https://framerusercontent.com/images/TXZJQq2pSwVdjF8hka57UgVZZl0.png?scale-down-to=512 512w,https://framerusercontent.com/images/TXZJQq2pSwVdjF8hka57UgVZZl0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TXZJQq2pSwVdjF8hka57UgVZZl0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/TXZJQq2pSwVdjF8hka57UgVZZl0.png 2690w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2519,intrinsicWidth:2690,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+0+-108+127.5+0+0),pixelHeight:2519,pixelWidth:2690,positionX:\"center\",positionY:\"center\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px) - 10px) * 0.4, 1px)`,src:\"https://framerusercontent.com/images/TXZJQq2pSwVdjF8hka57UgVZZl0.png\",srcSet:\"https://framerusercontent.com/images/TXZJQq2pSwVdjF8hka57UgVZZl0.png?scale-down-to=512 512w,https://framerusercontent.com/images/TXZJQq2pSwVdjF8hka57UgVZZl0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TXZJQq2pSwVdjF8hka57UgVZZl0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/TXZJQq2pSwVdjF8hka57UgVZZl0.png 2690w\"},className:\"framer-1qu1pd\",\"data-framer-name\":\"Image\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7y37ut\",\"data-framer-name\":\"badge\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uv2eoi\",\"data-framer-name\":\"stack\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2yswo7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+58+800+0+44+0+0),pixelHeight:193,pixelWidth:390,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/iKPgJIY2etyoYJk633kt2cDKrk.svg\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+314+10+0+0+0+0),pixelHeight:193,pixelWidth:390,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/iKPgJIY2etyoYJk633kt2cDKrk.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+500+10+0+0+0+0),pixelHeight:193,pixelWidth:390,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/iKPgJIY2etyoYJk633kt2cDKrk.svg\"},className:\"framer-18laats\",\"data-framer-appear-id\":\"18laats\",initial:animation1,optimized:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yx7xx8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+58+800+0+44+0+0),pixelHeight:193,pixelWidth:390,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SvlugqyOrO1TTbvAUViFF9Gmuk.svg\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+314+10+0+0+0+0),pixelHeight:193,pixelWidth:390,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SvlugqyOrO1TTbvAUViFF9Gmuk.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation2,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+500+10+0+0+0+0),pixelHeight:193,pixelWidth:390,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SvlugqyOrO1TTbvAUViFF9Gmuk.svg\"},className:\"framer-rjt9yv\",\"data-framer-appear-id\":\"rjt9yv\",initial:animation1,optimized:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kxngyp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+58+800+0+44+0+0),pixelHeight:193,pixelWidth:390,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PuruNIpXGMm4ngCRmZooRJDuAg.svg\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+314+10+0+0+0+0),pixelHeight:193,pixelWidth:390,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PuruNIpXGMm4ngCRmZooRJDuAg.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation3,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+500+10+0+0+0+0),pixelHeight:193,pixelWidth:390,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PuruNIpXGMm4ngCRmZooRJDuAg.svg\"},className:\"framer-1rf0t2n\",\"data-framer-appear-id\":\"1rf0t2n\",initial:animation1,optimized:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qpwf7b\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1otx0p6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"*SaaS\u306E\u9023\u643A\u6570\u3001\u30B7\u30E3\u30C9\u30FCIT\u306ESaaS DB\u4EF6\u6570\u306F\u30012024\u5E7412\u6708\u6642\u70B9\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"*SaaS\u306E\u9023\u643A\u6570\u3001\u30B7\u30E3\u30C9\u30FCIT\u306ESaaS DB\u4EF6\u6570\u306F\u30012024\u5E7412\u6708\u6642\u70B9\"})}),className:\"framer-ct69u0\",fonts:[\"GF;Noto Sans JP-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hp9m8j\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"15px\"},children:\"*\u5E74\u9593\u5DE5\u6570\u524A\u6E1B\u6642\u9593\u306F\u30012023\u5E7412\u670814\u65E5\u306B\u5B9F\u65BD\u3057\u305F\u304A\u5BA2\u69D8\u30A4\u30F3\u30BF\u30D3\u30E5\u30FC\u3092\u3082\u3068\u306B\u8A18\u8F09\u3057\u3066\u3044\u307E\u3059\u3002\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"15px\"},children:\"\u306A\u304A\u3001\u5E74\u9593\u5DE5\u6570\u524A\u6E1B\u6642\u9593\u3068\u306FAdmina\u5C0E\u5165\u524D\u306E\u540C\u696D\u52D9\u3092Admina\u5C0E\u5165\u5F8C\u306B\u304A\u3051\u308B\u524A\u6E1B\u6642\u9593\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:[\"*\u5E74\u9593\u5DE5\u6570\u524A\u6E1B\u6642\u9593\u306F\u30012023\u5E7412\u670814\u65E5\u306B\u5B9F\u65BD\u3057\u305F\u304A\u5BA2\u69D8\u30A4\u30F3\u30BF\u30D3\u30E5\u30FC\u3092\u3082\u3068\u306B\u8A18\u8F09\u3057\u3066\u3044\u307E\u3059\u3002\",/*#__PURE__*/_jsx(\"br\",{}),\"\u306A\u304A\u3001\u5E74\u9593\u5DE5\u6570\u524A\u6E1B\u6642\u9593\u3068\u306FAdmina\u5C0E\u5165\u524D\u306E\u540C\u696D\u52D9\u3092Admina\u5C0E\u5165\u5F8C\u306B\u304A\u3051\u308B\u524A\u6E1B\u6642\u9593\"]})}),className:\"framer-mbxm1l\",fonts:[\"GF;Noto Sans JP-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vjnrot\",\"data-framer-name\":\"case-logo\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jt86ig-container\",\"data-framer-name\":\"logo\",isModuleExternal:true,name:\"logo\",nodeId:\"AOtZZr8sS\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"AOtZZr8sS\",layoutId:\"AOtZZr8sS\",name:\"logo\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:1e3,pixelHeight:100,pixelWidth:1e3,sizes:\"1000px\",src:\"https://framerusercontent.com/images/kweaJ0QXSAOjIlUXy3Z4r3Qs.png\",srcSet:\"https://framerusercontent.com/images/kweaJ0QXSAOjIlUXy3Z4r3Qs.png?scale-down-to=512 512w,https://framerusercontent.com/images/kweaJ0QXSAOjIlUXy3Z4r3Qs.png 1000w\"},className:\"framer-znmg6v\",\"data-framer-name\":\"$3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:1e3,pixelHeight:100,pixelWidth:1e3,sizes:\"1000px\",src:\"https://framerusercontent.com/images/WRCtAsixZqhQCHvGic1XFd6vNk8.png\",srcSet:\"https://framerusercontent.com/images/WRCtAsixZqhQCHvGic1XFd6vNk8.png?scale-down-to=512 512w,https://framerusercontent.com/images/WRCtAsixZqhQCHvGic1XFd6vNk8.png 1000w\"},className:\"framer-1w10xn2\",\"data-framer-name\":\"$4\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fejvxv-container\",\"data-framer-name\":\"logo\",isModuleExternal:true,name:\"logo\",nodeId:\"e4Zkuyyku\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"e4Zkuyyku\",layoutId:\"e4Zkuyyku\",name:\"logo\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:1e3,pixelHeight:100,pixelWidth:1e3,sizes:\"1000px\",src:\"https://framerusercontent.com/images/nCNJOnSmcJNYxLZCKSb4nScIQc.png\",srcSet:\"https://framerusercontent.com/images/nCNJOnSmcJNYxLZCKSb4nScIQc.png?scale-down-to=512 512w,https://framerusercontent.com/images/nCNJOnSmcJNYxLZCKSb4nScIQc.png 1000w\"},className:\"framer-c3kc6o\",\"data-framer-name\":\"$1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:1e3,pixelHeight:100,pixelWidth:1e3,sizes:\"1000px\",src:\"https://framerusercontent.com/images/teI1ySCLqV4pml4YoRFeKqHL89U.png\",srcSet:\"https://framerusercontent.com/images/teI1ySCLqV4pml4YoRFeKqHL89U.png?scale-down-to=512 512w,https://framerusercontent.com/images/teI1ySCLqV4pml4YoRFeKqHL89U.png 1000w\"},className:\"framer-1kas8d7\",\"data-framer-name\":\"$2\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oy3rw5\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lmflk4-container hidden-i3q8sy hidden-1e9jhki\",isModuleExternal:true,nodeId:\"BpE75Cpc5\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:20,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"BpE75Cpc5\",intervalControl:2.5,itemAmount:1,layoutId:\"BpE75Cpc5\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17g0dgv\",\"data-border\":true,\"data-framer-name\":\"costmanagement_card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w2uat7\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-utyaa5\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mlus8e\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c3hwec\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dwpbc0-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"AZah6pVTU\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Devices\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"AZah6pVTU\",layoutId:\"AZah6pVTU\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g9ia3o\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItODAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(36, 34, 62)\"},children:\"\u30C7\u30D0\u30A4\u30B9\u7BA1\u7406\"})}),className:\"framer-1nyc2b1\",fonts:[\"GF;Inter-800\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7e52sr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"rgb(36, 34, 62)\"},children:\"SaaS \\xd7 \u30C7\u30D0\u30A4\u30B9\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"rgb(36, 34, 62)\"},children:\"\u65B0\u3057\u3044IT\u8CC7\u7523\u7BA1\u7406\u30C4\u30FC\u30EB\"})]}),className:\"framer-1a67az0\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ohfofa\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-113951b\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-eueebw-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SEroPZ2MN\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Label\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"SEroPZ2MN\",layoutId:\"SEroPZ2MN\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xsl6e3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u30C7\u30D0\u30A4\u30B9\u7BA1\u7406\u306B\u6700\u9069\u306A\u9805\u76EE\u3092\u7528\u610F\"})}),className:\"framer-gsfvcy\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jbfwwm\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jlifox\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-iugodr-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"lnthlgq23\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Devices\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"lnthlgq23\",layoutId:\"lnthlgq23\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lgvpfa\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u5728\u5EAB\u72B6\u6CC1\u306A\u3069\u30C7\u30D0\u30A4\u30B9\u5168\u4F53\u306E\u69D8\u5B50\u3092\u4E00\u89A7\u5316\"})}),className:\"framer-1k5elqc\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3awiis\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12pruge\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g2mhtr-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FxzE1GU3D\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"DashboardCustomize\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"FxzE1GU3D\",layoutId:\"FxzE1GU3D\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4r6y04\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u30C7\u30D0\u30A4\u30B9\u30FBSaaS\u30FBMDM\u3092\u4E00\u5143\u7BA1\u7406\"})}),className:\"framer-1h8y091\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yhuCZDUnt\"},motionChild:true,nodeId:\"UtvajijN8\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-f0wwhq framer-10x6apn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u7121\u6599\u3067\u8A66\u3059\"})}),className:\"framer-1byn637\",fonts:[\"GF;Inter-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"center\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tn6mif\",\"data-border\":true,\"data-framer-name\":\"costmanagement_card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sut1kq\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15zxnip\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j2zz7g\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12scgj3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6v679n-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"G6emt81DC\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"DocumentScanner\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"G6emt81DC\",layoutId:\"G6emt81DC\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p2qaw9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItODAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(36, 34, 62)\"},children:\"\u5951\u7D04\u7BA1\u7406\"})}),className:\"framer-1e6gk8p\",fonts:[\"GF;Inter-800\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16fr9dc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"rgb(36, 34, 62)\"},children:\"\u5951\u7D04\u66F4\u65B0\u30BF\u30A4\u30DF\u30F3\u30B0\u3092\u6F0F\u3089\u3055\u306A\u3044! SaaS\u306E\u5951\u7D04\u7BA1\u7406\u6A5F\u80FD\"})}),className:\"framer-1ofgi7m\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cq6y5t\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ng6fma\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-di0bbh-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BaZJqJOlv\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Check\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"BaZJqJOlv\",layoutId:\"BaZJqJOlv\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11ed6he\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u5951\u7D04\u60C5\u5831\u3092\u7C21\u5358\u767B\u9332\"})}),className:\"framer-1eif2dq\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b4y3s1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9ghkdw\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-143vv8q-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ueedyT25y\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"FormatListBulleted\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"ueedyT25y\",layoutId:\"ueedyT25y\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mk0020\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u767B\u9332\u3057\u305F\u5951\u7D04\u60C5\u5831\u3092\u4E00\u89A7\u8868\u793A\"})}),className:\"framer-1mqqpdu\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iyp7iw\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-wfr8eg\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rf8rpv-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VEpTbj1lL\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Alarm\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"VEpTbj1lL\",layoutId:\"VEpTbj1lL\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xm87fw\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u30EA\u30DE\u30A4\u30F3\u30C0\u30FC\u306E\u8A2D\u5B9A\"})}),className:\"framer-djm9u5\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yhuCZDUnt\"},motionChild:true,nodeId:\"EJ_ft2iV7\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-97d3fd framer-10x6apn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u7121\u6599\u3067\u8A66\u3059\"})}),className:\"framer-18snlm5\",fonts:[\"GF;Inter-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"center\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-u7vun5\",\"data-border\":true,\"data-framer-name\":\"costmanagement_card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10w755q\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ghr1yl\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jae4rc\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-h4twyg\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zjts7i-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gYdfYWfUB\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Search\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"gYdfYWfUB\",layoutId:\"gYdfYWfUB\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1snc30z\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItODAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(36, 34, 62)\"},children:\"\u30B7\u30E3\u30C9\u30FCIT\"})}),className:\"framer-ut0u7c\",fonts:[\"GF;Inter-800\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14ghsvm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"rgb(36, 34, 62)\"},children:\"SaaS\u306E\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u5BFE\u7B56\u3092Admina\u3067\u5B9F\u73FE\"})}),className:\"framer-cr48gn\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z8jv7i\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ecxy0z\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-w6k32q-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GQo1vofal\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Search\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"GQo1vofal\",layoutId:\"GQo1vofal\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1esufsn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u767B\u9332\u3057\u3066\u3044\u306A\u3044SaaS\u3092\u81EA\u52D5\u3067\u691C\u77E5\"})}),className:\"framer-1hcz4pg\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qpks2c\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1umk2gr\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-npfxea-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xE_keD7p_\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Public\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"xE_keD7p_\",layoutId:\"xE_keD7p_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b13i9b\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u516C\u958B\u30D5\u30A1\u30A4\u30EB\u3092\u691C\u51FA\"})}),className:\"framer-1nj5hbr\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18oaakt\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-a1lw7w\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ft19bx-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DqJEPDMAa\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Alarm\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"DqJEPDMAa\",layoutId:\"DqJEPDMAa\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wrszdg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u516C\u958B\u30D5\u30A1\u30A4\u30EB\u304C\u4F5C\u6210\u3055\u308C\u305F\u3089\u30A2\u30E9\u30FC\u30C8\u901A\u77E5\"})}),className:\"framer-xv24w3\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yhuCZDUnt\"},motionChild:true,nodeId:\"jZKhMKQ9Z\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1phu9no framer-10x6apn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u7121\u6599\u3067\u8A66\u3059\"})}),className:\"framer-1luq17y\",fonts:[\"GF;Inter-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"center\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cu1v8v\",\"data-border\":true,\"data-framer-name\":\"Digital workforce\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xbuikx\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gh3x1s\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dt5ow5\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-w4l7vg\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-23kgit-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CqfkS6VOo\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Manageaccounts\",iconSelection:\"Downloading\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"CqfkS6VOo\",layoutId:\"CqfkS6VOo\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o5ta1k\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItODAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(36, 34, 62)\"},children:\"\u30A2\u30A6\u30C8\u30BD\u30FC\u30B9\"})}),className:\"framer-8enyys\",fonts:[\"GF;Inter-800\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5t8req\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"rgb(36, 34, 62)\"},children:\"\u30A2\u30A6\u30C8\u30BD\u30FC\u30B9\u3067\u793E\u5185\u696D\u52D9\u3092\u304A\u4EFB\u305B\"})}),className:\"framer-15ak0bn\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uu6gjn\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-45r26c\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xc4e79-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fsZr4UI5R\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"logout\",iconSelection:\"Search\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"fsZr4UI5R\",layoutId:\"fsZr4UI5R\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yry3nw\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u30A2\u30AB\u30A6\u30F3\u30C8\u7BA1\u7406\u3092\u3059\u3079\u3066\u30A2\u30A6\u30C8\u30BD\u30FC\u30B9\"})}),className:\"framer-sfrrzs\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1se4k91\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1flworm\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s2cjve-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"I2czRwQOp\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"schema\",iconSelection:\"Sync\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"I2czRwQOp\",layoutId:\"I2czRwQOp\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10xenih\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u60C5\u30B7\u30B9\u4F53\u5236\u306E\u69CB\u7BC9\"})}),className:\"framer-7y2vxb\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q8m5zf\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-11uz07e\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5e89p2-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qBabRZUGT\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"corporatefare\",iconSelection:\"Comment\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"qBabRZUGT\",layoutId:\"qBabRZUGT\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fv76tg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u4E0A\u5834\u306B\u5411\u3051\u305FIT\u7D71\u5236\"})}),className:\"framer-lbuz9l\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JThGxyuHX\"},motionChild:true,nodeId:\"Odm4cz0Bk\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1s4tqzz framer-10x6apn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u30A2\u30A6\u30C8\u30BD\u30FC\u30B9\u30B5\u30FC\u30D3\u30B9\u3092\u898B\u308B\"})}),className:\"framer-kk4oov\",fonts:[\"GF;Inter-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"center\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jjasm6\",\"data-border\":true,\"data-framer-name\":\"Cost management\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12hr47h\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tc796r\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hhqjcm\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ffudrb\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gjpsic-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uPBWrqrwi\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Calculate\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"uPBWrqrwi\",layoutId:\"uPBWrqrwi\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ws24zd\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItODAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(36, 34, 62)\"},children:\"\u30B3\u30B9\u30C8\u30DE\u30CD\u30B8\u30E1\u30F3\u30C8\"})}),className:\"framer-170emdx\",fonts:[\"GF;Inter-800\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vmlzwj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"rgb(36, 34, 62)\"},children:\"SaaS\u306E\u30B3\u30B9\u30C8\u3092\u53EF\u8996\u5316\u3057\u3001\u30B3\u30B9\u30C8\u524A\u6E1B\u306E\u4F59\u5730\u3092\u660E\u3089\u304B\u306B\u3057\u307E\u3059\u3002\"})}),className:\"framer-1b3hal0\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17g7ihc\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m1s6gt\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hy6s5i-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"OEounkSNz\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Check\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"OEounkSNz\",layoutId:\"OEounkSNz\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jipdh0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u793E\u5185\u5229\u7528SaaS\u3092\u652F\u6255\u30C7\u30FC\u30BF\u3092\u3082\u3068\u306B\u691C\u51FA\"})}),className:\"framer-4jsid3\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l7rbd0\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nzxvjo\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rtablp-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"a44BakA4x\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ChatBubbleOutline\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"a44BakA4x\",layoutId:\"a44BakA4x\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i4oyzk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u5229\u7528\u72B6\u6CC1\u304B\u3089SaaS\u30B3\u30B9\u30C8\u524A\u6E1B\u306E\u4F59\u5730\u3092\u7279\u5B9A\"})}),className:\"framer-1no9u0r\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y9oo0g\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8wz8fp\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13wzysm-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qsFs3MvsW\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"InsertChart\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"qsFs3MvsW\",layoutId:\"qsFs3MvsW\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15lck7\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u5404SaaS\u306E\u30B3\u30B9\u30C8\u3092\u5B9F\u969B\u306E\u652F\u51FA\u984D\u3092\u53EF\u8996\u5316\"})}),className:\"framer-s2suye\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yhuCZDUnt\"},motionChild:true,nodeId:\"S6Xytn5WD\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-18dnsse framer-10x6apn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u7121\u6599\u3067\u8A66\u3059\"})}),className:\"framer-zaujly\",fonts:[\"GF;Inter-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"center\",withExternalLayout:true})})})]})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+50+1030+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r7l17p-container hidden-r1e9az hidden-1e9jhki\",\"data-framer-name\":\"future portfolio\",name:\"future portfolio\",nodeId:\"vR1iide64\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Model,{height:\"100%\",id:\"vR1iide64\",layoutId:\"vR1iide64\",name:\"future portfolio\",style:{height:\"100%\",width:\"100%\"},variant:\"j2YwnOjuY\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1curxuz-container hidden-i3q8sy hidden-r1e9az\",isModuleExternal:true,nodeId:\"lWGEnymMY\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:20,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"lWGEnymMY\",intervalControl:2.5,itemAmount:1,layoutId:\"lWGEnymMY\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-jjasm6\",\"data-border\":true,\"data-framer-name\":\"Cost management\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12hr47h\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tc796r\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hhqjcm\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ffudrb\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gjpsic-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uPBWrqrwi\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Calculate\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"uPBWrqrwi\",layoutId:\"uPBWrqrwi\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ws24zd\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItODAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(36, 34, 62)\"},children:\"\u30B3\u30B9\u30C8\u30DE\u30CD\u30B8\u30E1\u30F3\u30C8\"})}),className:\"framer-170emdx\",fonts:[\"GF;Inter-800\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vmlzwj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"rgb(36, 34, 62)\"},children:\"SaaS\u306E\u30B3\u30B9\u30C8\u3092\u53EF\u8996\u5316\u3057\u3001\u30B3\u30B9\u30C8\u524A\u6E1B\u306E\u4F59\u5730\u3092\u660E\u3089\u304B\u306B\u3057\u307E\u3059\u3002\"})}),className:\"framer-1b3hal0\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17g7ihc\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m1s6gt\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hy6s5i-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"OEounkSNz\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Check\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"OEounkSNz\",layoutId:\"OEounkSNz\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jipdh0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u793E\u5185\u5229\u7528SaaS\u3092\u652F\u6255\u30C7\u30FC\u30BF\u3092\u3082\u3068\u306B\u691C\u51FA\"})}),className:\"framer-4jsid3\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l7rbd0\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nzxvjo\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rtablp-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"a44BakA4x\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ChatBubbleOutline\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"a44BakA4x\",layoutId:\"a44BakA4x\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i4oyzk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u5229\u7528\u72B6\u6CC1\u304B\u3089SaaS\u30B3\u30B9\u30C8\u524A\u6E1B\u306E\u4F59\u5730\u3092\u7279\u5B9A\"})}),className:\"framer-1no9u0r\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y9oo0g\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8wz8fp\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13wzysm-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qsFs3MvsW\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"InsertChart\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"qsFs3MvsW\",layoutId:\"qsFs3MvsW\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15lck7\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u5404SaaS\u306E\u30B3\u30B9\u30C8\u3092\u5B9F\u969B\u306E\u652F\u51FA\u984D\u3092\u53EF\u8996\u5316\"})}),className:\"framer-s2suye\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yhuCZDUnt\"},motionChild:true,nodeId:\"S6Xytn5WD\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-18dnsse framer-10x6apn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u7121\u6599\u3067\u8A66\u3059\"})}),className:\"framer-zaujly\",fonts:[\"GF;Inter-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"center\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17g0dgv\",\"data-border\":true,\"data-framer-name\":\"costmanagement_card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w2uat7\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-utyaa5\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mlus8e\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c3hwec\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dwpbc0-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"AZah6pVTU\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Devices\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"AZah6pVTU\",layoutId:\"AZah6pVTU\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g9ia3o\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItODAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(36, 34, 62)\"},children:\"\u30C7\u30D0\u30A4\u30B9\u7BA1\u7406\"})}),className:\"framer-1nyc2b1\",fonts:[\"GF;Inter-800\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7e52sr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"rgb(36, 34, 62)\"},children:\"SaaS \\xd7 \u30C7\u30D0\u30A4\u30B9\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"rgb(36, 34, 62)\"},children:\"\u65B0\u3057\u3044IT\u8CC7\u7523\u7BA1\u7406\u30C4\u30FC\u30EB\"})]}),className:\"framer-1a67az0\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ohfofa\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-113951b\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-eueebw-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SEroPZ2MN\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Label\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"SEroPZ2MN\",layoutId:\"SEroPZ2MN\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xsl6e3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u30C7\u30D0\u30A4\u30B9\u7BA1\u7406\u306B\u6700\u9069\u306A\u9805\u76EE\u3092\u7528\u610F\"})}),className:\"framer-gsfvcy\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jbfwwm\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jlifox\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-iugodr-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"lnthlgq23\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Devices\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"lnthlgq23\",layoutId:\"lnthlgq23\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lgvpfa\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u5728\u5EAB\u72B6\u6CC1\u306A\u3069\u30C7\u30D0\u30A4\u30B9\u5168\u4F53\u306E\u69D8\u5B50\u3092\u4E00\u89A7\u5316\"})}),className:\"framer-1k5elqc\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3awiis\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12pruge\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g2mhtr-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FxzE1GU3D\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"DashboardCustomize\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"FxzE1GU3D\",layoutId:\"FxzE1GU3D\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4r6y04\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u30C7\u30D0\u30A4\u30B9\u30FBSaaS\u30FBMDM\u3092\u4E00\u5143\u7BA1\u7406\"})}),className:\"framer-1h8y091\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yhuCZDUnt\"},motionChild:true,nodeId:\"UtvajijN8\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-f0wwhq framer-10x6apn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u7121\u6599\u3067\u8A66\u3059\"})}),className:\"framer-1byn637\",fonts:[\"GF;Inter-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"center\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tn6mif\",\"data-border\":true,\"data-framer-name\":\"costmanagement_card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sut1kq\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15zxnip\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j2zz7g\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12scgj3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6v679n-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"G6emt81DC\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"DocumentScanner\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"G6emt81DC\",layoutId:\"G6emt81DC\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p2qaw9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItODAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(36, 34, 62)\"},children:\"\u5951\u7D04\u7BA1\u7406\"})}),className:\"framer-1e6gk8p\",fonts:[\"GF;Inter-800\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16fr9dc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"rgb(36, 34, 62)\"},children:\"\u5951\u7D04\u66F4\u65B0\u30BF\u30A4\u30DF\u30F3\u30B0\u3092\u6F0F\u3089\u3055\u306A\u3044! SaaS\u306E\u5951\u7D04\u7BA1\u7406\u6A5F\u80FD\"})}),className:\"framer-1ofgi7m\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cq6y5t\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ng6fma\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-di0bbh-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BaZJqJOlv\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Check\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"BaZJqJOlv\",layoutId:\"BaZJqJOlv\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11ed6he\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u5951\u7D04\u60C5\u5831\u3092\u7C21\u5358\u767B\u9332\"})}),className:\"framer-1eif2dq\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b4y3s1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9ghkdw\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-143vv8q-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ueedyT25y\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"FormatListBulleted\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"ueedyT25y\",layoutId:\"ueedyT25y\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mk0020\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u767B\u9332\u3057\u305F\u5951\u7D04\u60C5\u5831\u3092\u4E00\u89A7\u8868\u793A\"})}),className:\"framer-1mqqpdu\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iyp7iw\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-wfr8eg\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rf8rpv-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VEpTbj1lL\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Alarm\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"VEpTbj1lL\",layoutId:\"VEpTbj1lL\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xm87fw\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u30EA\u30DE\u30A4\u30F3\u30C0\u30FC\u306E\u8A2D\u5B9A\"})}),className:\"framer-djm9u5\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yhuCZDUnt\"},motionChild:true,nodeId:\"EJ_ft2iV7\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-97d3fd framer-10x6apn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u7121\u6599\u3067\u8A66\u3059\"})}),className:\"framer-18snlm5\",fonts:[\"GF;Inter-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"center\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-u7vun5\",\"data-border\":true,\"data-framer-name\":\"costmanagement_card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10w755q\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ghr1yl\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jae4rc\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-h4twyg\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zjts7i-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gYdfYWfUB\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Search\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"gYdfYWfUB\",layoutId:\"gYdfYWfUB\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1snc30z\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItODAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(36, 34, 62)\"},children:\"\u30B7\u30E3\u30C9\u30FCIT\"})}),className:\"framer-ut0u7c\",fonts:[\"GF;Inter-800\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14ghsvm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"rgb(36, 34, 62)\"},children:\"SaaS\u306E\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u5BFE\u7B56\u3092Admina\u3067\u5B9F\u73FE\"})}),className:\"framer-cr48gn\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z8jv7i\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ecxy0z\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-w6k32q-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GQo1vofal\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Search\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"GQo1vofal\",layoutId:\"GQo1vofal\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1esufsn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u767B\u9332\u3057\u3066\u3044\u306A\u3044SaaS\u3092\u81EA\u52D5\u3067\u691C\u77E5\"})}),className:\"framer-1hcz4pg\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qpks2c\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1umk2gr\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-npfxea-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xE_keD7p_\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Public\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"xE_keD7p_\",layoutId:\"xE_keD7p_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b13i9b\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u516C\u958B\u30D5\u30A1\u30A4\u30EB\u3092\u691C\u51FA\"})}),className:\"framer-1nj5hbr\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18oaakt\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-a1lw7w\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ft19bx-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DqJEPDMAa\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Alarm\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"DqJEPDMAa\",layoutId:\"DqJEPDMAa\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wrszdg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u516C\u958B\u30D5\u30A1\u30A4\u30EB\u304C\u4F5C\u6210\u3055\u308C\u305F\u3089\u30A2\u30E9\u30FC\u30C8\u901A\u77E5\"})}),className:\"framer-xv24w3\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yhuCZDUnt\"},motionChild:true,nodeId:\"jZKhMKQ9Z\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1phu9no framer-10x6apn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u7121\u6599\u3067\u8A66\u3059\"})}),className:\"framer-1luq17y\",fonts:[\"GF;Inter-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"center\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cu1v8v\",\"data-border\":true,\"data-framer-name\":\"Digital workforce\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xbuikx\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gh3x1s\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dt5ow5\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-w4l7vg\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-23kgit-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CqfkS6VOo\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"Manageaccounts\",iconSelection:\"Downloading\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"CqfkS6VOo\",layoutId:\"CqfkS6VOo\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o5ta1k\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItODAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(36, 34, 62)\"},children:\"\u30A2\u30A6\u30C8\u30BD\u30FC\u30B9\"})}),className:\"framer-8enyys\",fonts:[\"GF;Inter-800\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5t8req\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"rgb(36, 34, 62)\"},children:\"\u30A2\u30A6\u30C8\u30BD\u30FC\u30B9\u3067\u793E\u5185\u696D\u52D9\u3092\u304A\u4EFB\u305B\"})}),className:\"framer-15ak0bn\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uu6gjn\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-45r26c\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xc4e79-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fsZr4UI5R\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"logout\",iconSelection:\"Search\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"fsZr4UI5R\",layoutId:\"fsZr4UI5R\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yry3nw\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u30A2\u30AB\u30A6\u30F3\u30C8\u7BA1\u7406\u3092\u3059\u3079\u3066\u30A2\u30A6\u30C8\u30BD\u30FC\u30B9\"})}),className:\"framer-sfrrzs\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1se4k91\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1flworm\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s2cjve-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"I2czRwQOp\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"schema\",iconSelection:\"Sync\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"I2czRwQOp\",layoutId:\"I2czRwQOp\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10xenih\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u60C5\u30B7\u30B9\u4F53\u5236\u306E\u69CB\u7BC9\"})}),className:\"framer-7y2vxb\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q8m5zf\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-11uz07e\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5e89p2-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qBabRZUGT\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(226, 117, 15)\",height:\"100%\",iconSearch:\"corporatefare\",iconSelection:\"Comment\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"qBabRZUGT\",layoutId:\"qBabRZUGT\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fv76tg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\"},children:\"\u4E0A\u5834\u306B\u5411\u3051\u305FIT\u7D71\u5236\"})}),className:\"framer-lbuz9l\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JThGxyuHX\"},motionChild:true,nodeId:\"Odm4cz0Bk\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1s4tqzz framer-10x6apn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u30A2\u30A6\u30C8\u30BD\u30FC\u30B9\u30B5\u30FC\u30D3\u30B9\u3092\u898B\u308B\"})}),className:\"framer-kk4oov\",fonts:[\"GF;Inter-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"center\",withExternalLayout:true})})})]})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o05gk7\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1xf6emq\",\"data-styles-preset\":\"WQQwIyMi_\",children:\"Admina\u304C\u3067\u304D\u308B\u3053\u3068\"})}),className:\"framer-1ebz6is\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16ysjhh\",\"data-framer-name\":\"\u52D5\u753B\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rg5pc0\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mgqbh3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m2mymx-container\",isModuleExternal:true,nodeId:\"iv2Bs0LWk\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yoWcz2rKb:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"iv2Bs0LWk\",isMixedBorderRadius:false,layoutId:\"iv2Bs0LWk\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:\"https://8672986.fs1.hubspotusercontent-na1.net/hubfs/8672986/marketing/Admina%20service%20movie.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m09x4s\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12syehe\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1upi1ui\",\"data-styles-preset\":\"Vkdknv1jR\",children:[\"Admina\u3072\u3068\u3064\u3067\u793E\u5185\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:\"SaaS\"}),\"\u30FB\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:\"\u30C7\u30D0\u30A4\u30B9\"}),\"\u3092\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:\"\u5F93\u696D\u54E1\u3092\u8EF8\"}),\"\u306B\u7D71\u5408\u7684\u306B\u7BA1\u7406\"]})})},yoWcz2rKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1xf6emq\",\"data-styles-preset\":\"WQQwIyMi_\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Admina\u3072\u3068\u3064\u3067\",/*#__PURE__*/_jsx(\"br\",{}),\"\u793E\u5185\u306E\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:\"SaaS\"}),\"\u30FB\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:\"\u30C7\u30D0\u30A4\u30B9\"}),\"\u3092\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:\"\u5F93\u696D\u54E1\u3092\u8EF8\"}),\"\u306B\u7D71\u5408\u7BA1\u7406\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1xf6emq\",\"data-styles-preset\":\"WQQwIyMi_\",children:[\"Admina\u3072\u3068\u3064\u3067\",/*#__PURE__*/_jsx(\"br\",{}),\"\u793E\u5185\u306E\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:\"SaaS\"}),\"\u30FB\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:\"\u30C7\u30D0\u30A4\u30B9\"}),\"\u3092\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:\"\u5F93\u696D\u54E1\u3092\u8EF8\"}),\"\u306B\u7D71\u5408\u7BA1\u7406\"]})}),className:\"framer-cdrtwr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16hvjgc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-159d1wk\",\"data-styles-preset\":\"L8WlPMxu2\",children:[\"\u60C5\u5831\u30B7\u30B9\u30C6\u30E0\u90E8\u9580\u306E\u7BA1\u7406\u3059\u308BSaaS\u30A2\u30AB\u30A6\u30F3\u30C8\u3084\u5951\u7D04\u60C5\u5831\u3001\u30B3\u30B9\u30C8\u60C5\u5831\u3001\u30C7\u30D0\u30A4\u30B9\u306E\u8CB8\u4E0E\u72B6\u6CC1\u3084IT\u8CC7\u7523\u60C5\u5831\u306A\u3069\u3092\u96C6\u7D04\u3057\u307E\u3059\u3002\",/*#__PURE__*/_jsx(\"br\",{}),\"\u60C5\u5831\u306E\u629C\u3051\u6F0F\u308C\u3084\u8907\u6570\u53F0\u5E33\u306B\u3088\u308B\u7BA1\u7406\u306E\u7169\u96D1\u6027\u304B\u3089\u89E3\u653E\u3057\u307E\u3059\u3002\"]})})},yoWcz2rKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-12jq1oe\",\"data-styles-preset\":\"Plhv5Vccy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"\u60C5\u5831\u30B7\u30B9\u30C6\u30E0\u90E8\u9580\u306E\u7BA1\u7406\u3059\u308BSaaS\u30A2\u30AB\u30A6\u30F3\u30C8\u3084\u5951\u7D04\u60C5\u5831\u3001\u30B3\u30B9\u30C8\u60C5\u5831\u3001\u30C7\u30D0\u30A4\u30B9\u306E\u8CB8\u4E0E\u72B6\u6CC1\u3084IT\u8CC7\u7523\u60C5\u5831\u306A\u3069\u3092\u96C6\u7D04\u3057\u307E\u3059\u3002\",/*#__PURE__*/_jsx(\"br\",{}),\"\u60C5\u5831\u306E\u629C\u3051\u6F0F\u308C\u3084\u8907\u6570\u53F0\u5E33\u306B\u3088\u308B\u7BA1\u7406\u306E\u7169\u96D1\u6027\u304B\u3089\u89E3\u653E\u3057\u307E\u3059\u3002\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-12jq1oe\",\"data-styles-preset\":\"Plhv5Vccy\",children:[\"\u60C5\u5831\u30B7\u30B9\u30C6\u30E0\u90E8\u9580\u306E\u7BA1\u7406\u3059\u308BSaaS\u30A2\u30AB\u30A6\u30F3\u30C8\u3084\u5951\u7D04\u60C5\u5831\u3001\u30B3\u30B9\u30C8\u60C5\u5831\u3001\u30C7\u30D0\u30A4\u30B9\u306E\u8CB8\u4E0E\u72B6\u6CC1\u3084IT\u8CC7\u7523\u60C5\u5831\u306A\u3069\u3092\u96C6\u7D04\u3057\u307E\u3059\u3002\",/*#__PURE__*/_jsx(\"br\",{}),\"\u60C5\u5831\u306E\u629C\u3051\u6F0F\u308C\u3084\u8907\u6570\u53F0\u5E33\u306B\u3088\u308B\u7BA1\u7406\u306E\u7169\u96D1\u6027\u304B\u3089\u89E3\u653E\u3057\u307E\u3059\u3002\"]})}),className:\"framer-1hi1t79\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y8aw0l\",\"data-framer-name\":\"\u6A5F\u80FD\u4E00\u89A7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nsp17h\",\"data-framer-name\":\"\u6A5F\u80FD\u30B0\u30EA\u30C3\u30C9\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FpPqVsH3D\"},motionChild:true,nodeId:\"WsX_4vKxk\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-epvv4c framer-10x6apn\",\"data-framer-name\":\"Device\u5009\u5EAB\u30D7\u30E9\u30F3\",whileHover:animation4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yg28is\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10lxn15\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:630,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2160.2+30+547+0+0+8+31.7+0),pixelHeight:630,pixelWidth:1200,sizes:`max((max(min(${componentViewport?.width||\"100vw\"} - 20px, 1200px) - 20px, 1px) - 40px) / 2, 1px)`,src:\"https://framerusercontent.com/images/3Ghy28tfZw2fFt2u9iYlUtJANhs.png\",srcSet:\"https://framerusercontent.com/images/3Ghy28tfZw2fFt2u9iYlUtJANhs.png?scale-down-to=512 512w,https://framerusercontent.com/images/3Ghy28tfZw2fFt2u9iYlUtJANhs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3Ghy28tfZw2fFt2u9iYlUtJANhs.png 1200w\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:630,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+2014+0+0+10+0+-9.2+27.45+0),pixelHeight:630,pixelWidth:1200,sizes:`max((max(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px) / 2, 50px), 1px) - 40px) / 2, 1px)`,src:\"https://framerusercontent.com/images/3Ghy28tfZw2fFt2u9iYlUtJANhs.png\",srcSet:\"https://framerusercontent.com/images/3Ghy28tfZw2fFt2u9iYlUtJANhs.png?scale-down-to=512 512w,https://framerusercontent.com/images/3Ghy28tfZw2fFt2u9iYlUtJANhs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3Ghy28tfZw2fFt2u9iYlUtJANhs.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:630,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+1941+0+0+20+0+-9.2+27.45+0),pixelHeight:630,pixelWidth:1200,sizes:`max((max(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px) / 3, 50px), 1px) - 40px) / 2, 1px)`,src:\"https://framerusercontent.com/images/3Ghy28tfZw2fFt2u9iYlUtJANhs.png\",srcSet:\"https://framerusercontent.com/images/3Ghy28tfZw2fFt2u9iYlUtJANhs.png?scale-down-to=512 512w,https://framerusercontent.com/images/3Ghy28tfZw2fFt2u9iYlUtJANhs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3Ghy28tfZw2fFt2u9iYlUtJANhs.png 1200w\"},className:\"framer-1pzlg8m\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jqvafu\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lbtia7\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:\"Device\u5009\u5EAB\u30D7\u30E9\u30F3\"})}),className:\"framer-8diev\",fonts:[\"GF;Noto Sans JP-900\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yzk1ho\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"\u30C7\u30D0\u30A4\u30B9\u7BA1\u7406\u3092\u3059\u3079\u3066\u30A2\u30A6\u30C8\u30BD\u30FC\u30B9\u3067\u304D\u308B\u5009\u5EAB2.0\"})}),className:\"framer-1l2m5g1\",fonts:[\"GF;Noto Sans JP-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+0+2160.2+30+547+0+0+8+10+8+134.4},yoWcz2rKb:{y:(componentViewport?.y||0)+50+2014+0+0+10+0+-9.2+10+21+134.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+50+1941+0+0+20+0+-9.2+10+21+134.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-n18bx2-container\",nodeId:\"HC5vyz2IF\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(FeatureButtun,{height:\"100%\",id:\"HC5vyz2IF\",layoutId:\"HC5vyz2IF\",PBBjVWY51:true,style:{height:\"100%\"},width:\"100%\"})})})})]})]})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tWsxCG94L\"},motionChild:true,nodeId:\"ANWEJ73Mh\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-11k7mcl framer-10x6apn\",\"data-framer-name\":\"Device\u30D7\u30E9\u30F3\",whileHover:animation5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-x0o4tc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:336,intrinsicWidth:640,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2160.2+30+547+0+228.4+44.6+0+0),pixelHeight:336,pixelWidth:640,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 20px, 1200px) - 60px) / 2, 1px)`,src:\"https://framerusercontent.com/images/kYjXNmCdJFd3DgZtzptkM9NkETk.webp\",srcSet:\"https://framerusercontent.com/images/kYjXNmCdJFd3DgZtzptkM9NkETk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/kYjXNmCdJFd3DgZtzptkM9NkETk.webp 640w\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:336,intrinsicWidth:640,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+2014+0+0+10+0+55+0+0),pixelHeight:336,pixelWidth:640,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px) / 2, 50px) - 40px) / 2, 1px)`,src:\"https://framerusercontent.com/images/kYjXNmCdJFd3DgZtzptkM9NkETk.webp\",srcSet:\"https://framerusercontent.com/images/kYjXNmCdJFd3DgZtzptkM9NkETk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/kYjXNmCdJFd3DgZtzptkM9NkETk.webp 640w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:336,intrinsicWidth:640,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+1941+0+0+20+0+55+0+0),pixelHeight:336,pixelWidth:640,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px) / 3, 50px) - 40px) / 2, 1px)`,src:\"https://framerusercontent.com/images/kYjXNmCdJFd3DgZtzptkM9NkETk.webp\",srcSet:\"https://framerusercontent.com/images/kYjXNmCdJFd3DgZtzptkM9NkETk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/kYjXNmCdJFd3DgZtzptkM9NkETk.webp 640w\"},className:\"framer-1jkh7us\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l3u90w\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:\"Device\u30D7\u30E9\u30F3\"})}),className:\"framer-76efsc\",fonts:[\"GF;Noto Sans JP-900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"MDM\u9023\u643A\u3067\u30B9\u30DE\u30FC\u30C8\u306A\u30C7\u30D0\u30A4\u30B9\u7BA1\u7406\u3078\"})}),className:\"framer-1vcwfax\",fonts:[\"GF;Noto Sans JP-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+0+2160.2+30+547+0+228.4+10+0+137.2},yoWcz2rKb:{y:(componentViewport?.y||0)+50+2014+0+0+10+0+20.4+0+137.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+50+1941+0+0+20+0+20.4+0+137.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4esuxz-container\",nodeId:\"CfxDuPiL_\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(FeatureButtun,{height:\"100%\",id:\"CfxDuPiL_\",layoutId:\"CfxDuPiL_\",PBBjVWY51:true,style:{height:\"100%\"},width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cHf5aDrfy\"},motionChild:true,nodeId:\"ARFIzcDof\",openInNewTab:false,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-t43tql framer-10x6apn\",\"data-framer-name\":\"Vendor\u30D7\u30E9\u30F3\",whileHover:animation5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nul04y\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:336,intrinsicWidth:640,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2160.2+30+547+0+427.6+69.6+0+0),pixelHeight:336,pixelWidth:640,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 20px, 1200px) - 60px) / 2, 1px)`,src:\"https://framerusercontent.com/images/SCdmmK38twVvB06t5ts81ip9w4.png\",srcSet:\"https://framerusercontent.com/images/SCdmmK38twVvB06t5ts81ip9w4.png?scale-down-to=512 512w,https://framerusercontent.com/images/SCdmmK38twVvB06t5ts81ip9w4.png 640w\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:336,intrinsicWidth:640,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+2014+0+0+10+220+35.5+0+0),pixelHeight:336,pixelWidth:640,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px) / 2, 50px) - 40px) / 2, 1px)`,src:\"https://framerusercontent.com/images/SCdmmK38twVvB06t5ts81ip9w4.png\",srcSet:\"https://framerusercontent.com/images/SCdmmK38twVvB06t5ts81ip9w4.png?scale-down-to=512 512w,https://framerusercontent.com/images/SCdmmK38twVvB06t5ts81ip9w4.png 640w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:336,intrinsicWidth:640,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+1941+0+0+20+0+35.5+0+0),pixelHeight:336,pixelWidth:640,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px) / 3, 50px) - 40px) / 2, 1px)`,src:\"https://framerusercontent.com/images/SCdmmK38twVvB06t5ts81ip9w4.png\",srcSet:\"https://framerusercontent.com/images/SCdmmK38twVvB06t5ts81ip9w4.png?scale-down-to=512 512w,https://framerusercontent.com/images/SCdmmK38twVvB06t5ts81ip9w4.png 640w\"},className:\"framer-11bpv2j\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iecq0f\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:\"Vendor\u30D7\u30E9\u30F3\"})}),className:\"framer-vnal3o\",fonts:[\"GF;Noto Sans JP-900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"\u30B9\u30DA\u30B7\u30E3\u30EA\u30B9\u30C8\u304C\u30C7\u30FC\u30BF\u3092\u6D3B\u7528\u3057\u3066\u3001SaaS\u30B3\u30B9\u30C8\u306E\u524A\u6E1B\u306B\u30B3\u30DF\u30C3\u30C8\"})}),className:\"framer-1ekguvy\",fonts:[\"GF;Noto Sans JP-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+0+2160.2+30+547+0+427.6+10+10+137.2},yoWcz2rKb:{y:(componentViewport?.y||0)+50+2014+0+0+10+220+.4+20+137.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+50+1941+0+0+20+0+.4+20+137.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13letvq-container\",nodeId:\"yjHzRuSaj\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(FeatureButtun,{height:\"100%\",id:\"yjHzRuSaj\",layoutId:\"yjHzRuSaj\",PBBjVWY51:true,style:{height:\"100%\"},width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"/jp/feature/id-lifecycle\",motionChild:true,nodeId:\"RC9R_j7hr\",openInNewTab:false,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1hgbv framer-10x6apn\",\"data-framer-name\":\"\u5229\u7528\u72B6\u6CC1\u306E\u53EF\u8996\u5316\",whileHover:animation5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9hjdvt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:306,intrinsicWidth:470,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2160.2+30+547+0+646.8+55.1+0+0),pixelHeight:306,pixelWidth:470,src:\"https://framerusercontent.com/images/F40lTzjDu7QuTpFMfJ2X4TduJw.png\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:306,intrinsicWidth:470,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+2014+0+0+10+220+60.5+0+0),pixelHeight:306,pixelWidth:470,src:\"https://framerusercontent.com/images/F40lTzjDu7QuTpFMfJ2X4TduJw.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:306,intrinsicWidth:470,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+1941+0+0+20+220+60.5+0+0),pixelHeight:306,pixelWidth:470,src:\"https://framerusercontent.com/images/F40lTzjDu7QuTpFMfJ2X4TduJw.png\"},className:\"framer-1rp75rp\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xlzfwo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:\"\u5229\u7528\u72B6\u6CC1\u306E\u53EF\u8996\u5316\"})}),className:\"framer-huyhh4\",fonts:[\"GF;Noto Sans JP-900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"SaaS\u306E\u30A2\u30AB\u30A6\u30F3\u30C8\u3084\u5229\u7528\u72B6\u6CC1\u3092\u628A\u63E1\"})}),className:\"framer-u9phz6\",fonts:[\"GF;Noto Sans JP-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+0+2160.2+30+547+0+646.8+10+10+137.2},yoWcz2rKb:{y:(componentViewport?.y||0)+50+2014+0+0+10+220+.4+20+137.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+50+1941+0+0+20+220+.4+20+137.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hzetx9-container\",nodeId:\"Cqrkf2ljr\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(FeatureButtun,{height:\"100%\",id:\"Cqrkf2ljr\",layoutId:\"Cqrkf2ljr\",PBBjVWY51:true,style:{height:\"100%\"},width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"aWHrPstTF\"},motionChild:true,nodeId:\"FHimpxnO9\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1lucxev framer-10x6apn\",\"data-framer-name\":\"\u30A2\u30AB\u30A6\u30F3\u30C8\u4F5C\u6210\",whileHover:animation5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18b8l5i\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:488,intrinsicWidth:750,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2160.2+30+547+0+856+30.6+0),pixelHeight:488,pixelWidth:750,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 20px, 1200px) - 40px) / 2, 1px)`,src:\"https://framerusercontent.com/images/xuhExunL0wbgHDqDiFDZ5WVFc3k.png\",srcSet:\"https://framerusercontent.com/images/xuhExunL0wbgHDqDiFDZ5WVFc3k.png?scale-down-to=512 512w,https://framerusercontent.com/images/xuhExunL0wbgHDqDiFDZ5WVFc3k.png 750w\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:488,intrinsicWidth:750,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+2014+0+0+10+440+36+0),pixelHeight:488,pixelWidth:750,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px) / 2, 50px) - 40px) / 2, 1px)`,src:\"https://framerusercontent.com/images/xuhExunL0wbgHDqDiFDZ5WVFc3k.png\",srcSet:\"https://framerusercontent.com/images/xuhExunL0wbgHDqDiFDZ5WVFc3k.png?scale-down-to=512 512w,https://framerusercontent.com/images/xuhExunL0wbgHDqDiFDZ5WVFc3k.png 750w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:488,intrinsicWidth:750,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+1941+0+0+20+220+36+0),pixelHeight:488,pixelWidth:750,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px) / 3, 50px) - 40px) / 2, 1px)`,src:\"https://framerusercontent.com/images/xuhExunL0wbgHDqDiFDZ5WVFc3k.png\",srcSet:\"https://framerusercontent.com/images/xuhExunL0wbgHDqDiFDZ5WVFc3k.png?scale-down-to=512 512w,https://framerusercontent.com/images/xuhExunL0wbgHDqDiFDZ5WVFc3k.png 750w\"},className:\"framer-1qorz5q\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-69o6ig\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yoWcz2rKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:\"\u30A2\u30AB\u30A6\u30F3\u30C8\u4F5C\u6210 / \u524A\u9664\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:\"\u30A2\u30AB\u30A6\u30F3\u30C8\u4F5C\u6210 / \u524A\u9664\"})}),className:\"framer-jbhzj0\",fonts:[\"GF;Noto Sans JP-900\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"\u30A2\u30AB\u30A6\u30F3\u30C8\u306E\u4F5C\u6210\u3068\u524A\u9664\u3092\u52B9\u7387\u5316\"})}),className:\"framer-3qtoku\",fonts:[\"GF;Noto Sans JP-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+0+2160.2+30+547+0+856+10+10+137.2},yoWcz2rKb:{y:(componentViewport?.y||0)+50+2014+0+0+10+440+1.8+20+134.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+50+1941+0+0+20+220+.4+20+137.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qf4hhp-container\",nodeId:\"HY40KCn9r\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(FeatureButtun,{height:\"100%\",id:\"HY40KCn9r\",layoutId:\"HY40KCn9r\",PBBjVWY51:true,style:{height:\"100%\"},width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"sa_6v5AjY\"},motionChild:true,nodeId:\"g0HljKGQ3\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-16ova64 framer-10x6apn\",\"data-framer-name\":\"Universal Directory\",whileHover:animation5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l1u8ee\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:201,intrinsicWidth:381,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2160.2+30+547+0+1065.2+52.2+0+0),pixelHeight:201,pixelWidth:381,src:\"https://framerusercontent.com/images/jTl1cqSYTjbrY1B5na2eQd7tPZ4.png\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:201,intrinsicWidth:381,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+2014+0+0+10+440+35.5+0+0),pixelHeight:201,pixelWidth:381,src:\"https://framerusercontent.com/images/jTl1cqSYTjbrY1B5na2eQd7tPZ4.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:201,intrinsicWidth:381,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+1941+0+0+20+220+35.5+0+0),pixelHeight:201,pixelWidth:381,src:\"https://framerusercontent.com/images/jTl1cqSYTjbrY1B5na2eQd7tPZ4.png\"},className:\"framer-h36069\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gsvd41\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:\"Admina Directory\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:\"Admina Directory\"})}),className:\"framer-1x9thm5\",fonts:[\"GF;Noto Sans JP-900\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"\u30E2\u30EC\u306A\u304F\u7E4B\u304C\u308B\u3001\u65B0\u3057\u3044\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u30B5\u30FC\u30D3\u30B9\"})}),className:\"framer-9oyrrw\",fonts:[\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+0+2160.2+30+547+0+1065.2+10+0+134.4},yoWcz2rKb:{y:(componentViewport?.y||0)+50+2014+0+0+10+440+21.1+0+135.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+50+1941+0+0+20+220+21.1+0+135.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14c1rfy-container\",nodeId:\"wT3stD0F_\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(FeatureButtun,{height:\"100%\",id:\"wT3stD0F_\",layoutId:\"wT3stD0F_\",PBBjVWY51:true,style:{height:\"100%\"},width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"/jp/feature/public-file\",motionChild:true,nodeId:\"KIntgT7NK\",openInNewTab:false,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-bpliun framer-10x6apn\",\"data-framer-name\":\"\u5916\u90E8\u30B3\u30F3\u30C6\u30F3\u30C4\",whileHover:animation5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2ybrz9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:201,intrinsicWidth:381,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2160.2+30+547+0+1261.6+31.35+0+0),pixelHeight:201,pixelWidth:381,src:\"https://framerusercontent.com/images/ZO50kBV2tiXivpi5dXwaHOhVZc.png\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:201,intrinsicWidth:381,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+2014+0+0+10+660+36.75+0+0),pixelHeight:201,pixelWidth:381,src:\"https://framerusercontent.com/images/ZO50kBV2tiXivpi5dXwaHOhVZc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:201,intrinsicWidth:381,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+1941+0+0+20+440+36.75+0+0),pixelHeight:201,pixelWidth:381,src:\"https://framerusercontent.com/images/ZO50kBV2tiXivpi5dXwaHOhVZc.png\"},className:\"framer-1ps8ba6\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cqqe2u\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:\"\u60C5\u5831\u6F0F\u6D29\u3092\u9632\u6B62\"})}),className:\"framer-zo62p7\",fonts:[\"GF;Noto Sans JP-900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"SaaS\u306E\u5229\u7528\u306B\u3088\u308B\u6F0F\u6D29\u3092\u3001\u691C\u77E5\u3059\u308B\u5916\u90E8\u30B3\u30F3\u30C6\u30F3\u30C4\u7BA1\u7406\u6A5F\u80FD\"})}),className:\"framer-1y1mad7\",fonts:[\"GF;Noto Sans JP-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+0+2160.2+30+547+0+1261.6+10+10+137.2},yoWcz2rKb:{y:(componentViewport?.y||0)+50+2014+0+0+10+660+.4+20+137.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+50+1941+0+0+20+440+.4+20+137.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ohk34b-container\",nodeId:\"h2nXjCzx1\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(FeatureButtun,{height:\"100%\",id:\"h2nXjCzx1\",layoutId:\"h2nXjCzx1\",PBBjVWY51:true,style:{height:\"100%\"},width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"/jp/feature/shadowit\",motionChild:true,nodeId:\"CkiN6Pau1\",openInNewTab:false,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1xz4fkv framer-10x6apn\",\"data-framer-name\":\"\u30B7\u30E3\u30C9\u30FCIT\u306E\u691C\u51FA\",whileHover:animation5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xjlnc5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:306,intrinsicWidth:470,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2160.2+30+547+0+1470.8+31.28+0),pixelHeight:306,pixelWidth:470,src:\"https://framerusercontent.com/images/YWKXczlApme8yUm6nK8B8dG0.png\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:306,intrinsicWidth:470,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+2014+0+0+10+660+36.68+0),pixelHeight:306,pixelWidth:470,src:\"https://framerusercontent.com/images/YWKXczlApme8yUm6nK8B8dG0.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:306,intrinsicWidth:470,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+1941+0+0+20+440+36.68+0),pixelHeight:306,pixelWidth:470,src:\"https://framerusercontent.com/images/YWKXczlApme8yUm6nK8B8dG0.png\"},className:\"framer-13pcdxx\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2zf8rq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yoWcz2rKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:\"\u30B7\u30E3\u30C9\u30FCIT\u306E\u691C\u51FA\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:\"\u30B7\u30E3\u30C9\u30FCIT\u306E\u691C\u51FA\"})}),className:\"framer-7izl7o\",fonts:[\"GF;Noto Sans JP-900\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"\u8907\u6570\u306E\u30BD\u30FC\u30B9\u304B\u3089\u30B7\u30E3\u30C9\u30FCIT\u3092\u767A\u898B\"})}),className:\"framer-17cv1qr\",fonts:[\"GF;Noto Sans JP-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+0+2160.2+30+547+0+1470.8+10+10+137.2},yoWcz2rKb:{y:(componentViewport?.y||0)+50+2014+0+0+10+660+2.5+20+133}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+50+1941+0+0+20+440+.4+20+137.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dp2o65-container\",nodeId:\"cks0h4PaB\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(FeatureButtun,{height:\"100%\",id:\"cks0h4PaB\",layoutId:\"cks0h4PaB\",PBBjVWY51:true,style:{height:\"100%\"},width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"wxyBAaX2x\"},motionChild:true,nodeId:\"kRY5pWJYs\",openInNewTab:false,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1kkd4oh framer-10x6apn\",\"data-framer-name\":\"\u30B7\u30E3\u30C9\u30FCIT\u306E\u691C\u51FA\",whileHover:animation5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1liogiv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:306,intrinsicWidth:470,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2160.2+30+547+0+1680+31.28+0),pixelHeight:630,pixelWidth:1200,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 20px, 1200px) - 40px) / 2, 1px)`,src:\"https://framerusercontent.com/images/j3chitLeGkUdcLPjZOvU5JG5Aw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/j3chitLeGkUdcLPjZOvU5JG5Aw.png?scale-down-to=512 512w,https://framerusercontent.com/images/j3chitLeGkUdcLPjZOvU5JG5Aw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j3chitLeGkUdcLPjZOvU5JG5Aw.png 1200w\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:306,intrinsicWidth:470,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+2014+0+0+10+880+36.68+0),pixelHeight:630,pixelWidth:1200,sizes:\"168px\",src:\"https://framerusercontent.com/images/j3chitLeGkUdcLPjZOvU5JG5Aw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/j3chitLeGkUdcLPjZOvU5JG5Aw.png?scale-down-to=512 512w,https://framerusercontent.com/images/j3chitLeGkUdcLPjZOvU5JG5Aw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j3chitLeGkUdcLPjZOvU5JG5Aw.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:306,intrinsicWidth:470,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+1941+0+0+20+440+36.68+0),pixelHeight:630,pixelWidth:1200,sizes:\"168px\",src:\"https://framerusercontent.com/images/j3chitLeGkUdcLPjZOvU5JG5Aw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/j3chitLeGkUdcLPjZOvU5JG5Aw.png?scale-down-to=512 512w,https://framerusercontent.com/images/j3chitLeGkUdcLPjZOvU5JG5Aw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j3chitLeGkUdcLPjZOvU5JG5Aw.png 1200w\"},className:\"framer-1ppen9s\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r8dxg1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yoWcz2rKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:\"Admina AI\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:\"Admina AI\"})}),className:\"framer-og04dt\",fonts:[\"GF;Noto Sans JP-900\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"SaaS\u7BA1\u7406\u3092AI\u3067\u7BA1\u7406\"})}),className:\"framer-7fk9cm\",fonts:[\"GF;Noto Sans JP-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+0+2160.2+30+547+0+1680+10+10+137.2},yoWcz2rKb:{y:(componentViewport?.y||0)+50+2014+0+0+10+880+2.5+20+133}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+50+1941+0+0+20+440+.4+20+137.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kfhv0y-container\",nodeId:\"IbM6fuHeW\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(FeatureButtun,{height:\"100%\",id:\"IbM6fuHeW\",layoutId:\"IbM6fuHeW\",PBBjVWY51:true,style:{height:\"100%\"},width:\"100%\"})})})})]})]})})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JThGxyuHX\"},motionChild:true,nodeId:\"wOxPtaYLG\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1m0yxcs framer-10x6apn\",\"data-framer-name\":\"Digital Workforce\",whileHover:animation4,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y627mr\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTcwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"New\"})}),className:\"framer-1jtwf60\",fonts:[\"GF;Noto Sans JP-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ls3zqj\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2160.2+30+0+8+10+0),pixelHeight:630,pixelWidth:1200,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 20px, 900px), 1px) - 20px)`,src:\"https://framerusercontent.com/images/VZpn7fIsEUwIzs1Px7cZ9jK1U.png\",srcSet:\"https://framerusercontent.com/images/VZpn7fIsEUwIzs1Px7cZ9jK1U.png?scale-down-to=512 512w,https://framerusercontent.com/images/VZpn7fIsEUwIzs1Px7cZ9jK1U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VZpn7fIsEUwIzs1Px7cZ9jK1U.png 1200w\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+2014+0+1178+-9.4+46.4),pixelHeight:630,pixelWidth:1200,sizes:`max((max(min(${componentViewport?.width||\"100vw\"} * 0.7, 900px) - 20px, 1px) - 20px) / 2, 1px)`,src:\"https://framerusercontent.com/images/VZpn7fIsEUwIzs1Px7cZ9jK1U.png\",srcSet:\"https://framerusercontent.com/images/VZpn7fIsEUwIzs1Px7cZ9jK1U.png?scale-down-to=512 512w,https://framerusercontent.com/images/VZpn7fIsEUwIzs1Px7cZ9jK1U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VZpn7fIsEUwIzs1Px7cZ9jK1U.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+1941+0+738+-37+10),pixelHeight:630,pixelWidth:1200,sizes:`max((max(min(${componentViewport?.width||\"100vw\"} * 0.7, 900px), 1px) - 40px) / 2, 1px)`,src:\"https://framerusercontent.com/images/VZpn7fIsEUwIzs1Px7cZ9jK1U.png\",srcSet:\"https://framerusercontent.com/images/VZpn7fIsEUwIzs1Px7cZ9jK1U.png?scale-down-to=512 512w,https://framerusercontent.com/images/VZpn7fIsEUwIzs1Px7cZ9jK1U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VZpn7fIsEUwIzs1Px7cZ9jK1U.png 1200w\"},className:\"framer-60pgxz\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8fa9gq\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-blmrym\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(83deg, var(--token-835ca85d-eb6e-4dd1-8fa3-da82333966d4, rgb(255, 182, 46)) -5%, var(--token-027a2760-074e-43a8-963f-52ed80271e1d, rgb(255, 56, 139)) 100%)\"},children:\"Admina Digital Workforce\"})})})},yoWcz2rKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(83deg, var(--token-835ca85d-eb6e-4dd1-8fa3-da82333966d4, rgb(255, 182, 46)) -5%, var(--token-027a2760-074e-43a8-963f-52ed80271e1d, rgb(255, 56, 139)) 100%)\"},children:\"Admina Digital Workforce\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(83deg, var(--token-835ca85d-eb6e-4dd1-8fa3-da82333966d4, rgb(255, 182, 46)) -5%, var(--token-027a2760-074e-43a8-963f-52ed80271e1d, rgb(255, 56, 139)) 100%)\"},children:\"Admina Digital Workforce\"})})}),className:\"framer-bxkrq4\",fonts:[\"GF;Noto Sans JP-900\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s9ejsl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yoWcz2rKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"\u30C7\u30B8\u30BF\u30EB x \u30A8\u30AD\u30B9\u30D1\u30FC\u30C8\u306E\u7D44\u307F\u5408\u308F\u305B\u3067\u3001IT\u90E8\u9580\u306E\u3042\u3089\u3086\u308B\u8AB2\u984C\u3092\u89E3\u6C7A\u3059\u308BIT\u652F\u63F4\u30B5\u30FC\u30D3\u30B9\u3002\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"\u30C7\u30B8\u30BF\u30EB x \u30A8\u30AD\u30B9\u30D1\u30FC\u30C8\u306E\u7D44\u307F\u5408\u308F\u305B\u3067\u3001IT\u90E8\u9580\u306E\u3042\u3089\u3086\u308B\u8AB2\u984C\u3092\u89E3\u6C7A\u3059\u308BIT\u652F\u63F4\u30B5\u30FC\u30D3\u30B9\u3002\"})}),className:\"framer-1fw6dmt\",fonts:[\"GF;Noto Sans JP-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+0+2160.2+30+0+8+10+222+8+183},yoWcz2rKb:{y:(componentViewport?.y||0)+50+2014+0+1178+-9.4+0+21+154.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+50+1941+0+738+-37+10+21+190,children:/*#__PURE__*/_jsx(Container,{className:\"framer-stbhk3-container\",nodeId:\"ZA3kskXWj\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(FeatureButtun,{height:\"100%\",id:\"ZA3kskXWj\",layoutId:\"ZA3kskXWj\",PBBjVWY51:true,width:\"100%\"})})})})]})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1779z6a\",\"data-framer-name\":\"Pivot\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1upi1ui\",\"data-styles-preset\":\"Vkdknv1jR\",children:\"\u7121\u6599\u3067\u59CB\u3081\u3066\u307F\u307E\u305B\u3093\u304B\uFF1F\"})}),className:\"framer-xm5d86\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f2kk4m\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yhuCZDUnt\"},implicitPathVariables:undefined},{href:{webPageId:\"yhuCZDUnt\"},implicitPathVariables:undefined},{href:{webPageId:\"yhuCZDUnt\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+0+4666.4+20+35+20+0},yoWcz2rKb:{y:(componentViewport?.y||0)+50+3462+10+45+20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+50+2919+50+45+20,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xb2x34-container\",nodeId:\"Y4kc7mmbr\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{gTJRdXSEn:resolvedLinks2[2]},yoWcz2rKb:{gTJRdXSEn:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(AIBtnWaitinglistUS,{gTJRdXSEn:resolvedLinks2[0],height:\"100%\",id:\"Y4kc7mmbr\",layoutId:\"Y4kc7mmbr\",Nl5LoIyur:\"\u30C8\u30E9\u30A4\u30A2\u30EB\u7533\u3057\u8FBC\u307F\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YnDh2zDlw\"},implicitPathVariables:undefined},{href:{webPageId:\"YnDh2zDlw\"},implicitPathVariables:undefined},{href:{webPageId:\"YnDh2zDlw\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+0+4666.4+20+35+20+79},yoWcz2rKb:{y:(componentViewport?.y||0)+50+3462+10+45+20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+50+2919+50+45+20,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y11g5c-container\",nodeId:\"wOHo6lD_L\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{gTJRdXSEn:resolvedLinks3[2]},yoWcz2rKb:{gTJRdXSEn:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(AIBtnWaitinglistUS,{gTJRdXSEn:resolvedLinks3[0],height:\"100%\",id:\"wOHo6lD_L\",layoutId:\"wOHo6lD_L\",Nl5LoIyur:\"\u8CC7\u6599\u8ACB\u6C42\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-obqvj3\",\"data-framer-name\":\"\u4ED6\u793E\u6A5F\u80FD\u6BD4\u8F03\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h00m6e\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8662bv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1xf6emq\",\"data-styles-preset\":\"WQQwIyMi_\",style:{\"--framer-text-alignment\":\"center\"},children:\"\u88FD\u54C1\u30C7\u30E2\"})}),className:\"framer-1jmw49d\",\"data-framer-name\":\"compare\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nmij12\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"Admina\u3067\u5916\u90E8\u5171\u6709\u306EGoogle\u30C9\u30E9\u30A4\u30D6\u3084BOX\u306A\u3069\u306E\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"\u30B9\u30C8\u30EC\u30FC\u30B8\u306B\u683C\u7D0D\u3055\u308C\u305F\u5916\u90E8\u5171\u6709\u30B3\u30F3\u30C6\u30F3\u30C4\u3092\u304B\u3093\u305F\u3093\u5236\u5FA1\"})]}),fonts:[\"GF;Noto Sans JP-regular\"]},yoWcz2rKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-jekfxq\",\"data-styles-preset\":\"JVMh9NW7P\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Admina\u3067\u5916\u90E8\u5171\u6709\u306EGoogle\u30C9\u30E9\u30A4\u30D6\u3084BOX\u306A\u3069\u306E\",/*#__PURE__*/_jsx(\"br\",{}),\"\u30B9\u30C8\u30EC\u30FC\u30B8\u306B\u683C\u7D0D\u3055\u308C\u305F\u5916\u90E8\u5171\u6709\u30B3\u30F3\u30C6\u30F3\u30C4\u3092\u304B\u3093\u305F\u3093\u5236\u5FA1\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jekfxq\",\"data-styles-preset\":\"JVMh9NW7P\",style:{\"--framer-text-alignment\":\"center\"},children:\"Admina\u3067Google Drive\u3084Box\u306A\u3069\u306E\u30B9\u30C8\u30EC\u30FC\u30B8\u306B\u683C\u7D0D\u3055\u308C\u305F\u5916\u90E8\u5171\u6709\u30B3\u30F3\u30C6\u30F3\u30C4\u3092\u304B\u3093\u305F\u3093\u5236\u5FA1\"})}),className:\"framer-69qzu8\",\"data-framer-name\":\"compare\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jekfxq\",\"data-styles-preset\":\"JVMh9NW7P\",style:{\"--framer-text-alignment\":\"center\"},children:\"\u5916\u90E8\u5171\u6709\u30B3\u30F3\u30C6\u30F3\u30C4\u306E\u53EF\u8996\u5316\u304B\u3089\u516C\u958B\u7BC4\u56F2\u306E\u5909\u66F4\u307E\u3067\u30EF\u30F3\u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0\u3067\u5B8C\u4E86\"})}),className:\"framer-121rwqr hidden-r1e9az hidden-1e9jhki\",\"data-framer-name\":\"compare\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hilrg1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rzx2t0-container\",isModuleExternal:true,nodeId:\"PRNO5Z9cC\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!--ARCADE EMBED START-->\\n<div style=\"position: relative; padding-bottom: calc(48.19444444444444% + 41px); height: 0; width: 100%;\">\\n  <iframe\\n    src=\"https://demo.arcade.software/sDMRLaJqvlF5HivXR2XH?embed&embed_mobile=tab&embed_desktop=inline&show_copy_link=true\"\\n    title=\"\u5916\u90E8\u5171\u6709\u30B3\u30F3\u30C6\u30F3\u30C4\u306E\u7BA1\u7406\u6A5F\u80FD\u30C7\u30E2\"\\n    frameborder=\"0\"\\n    loading=\"lazy\"\\n    webkitallowfullscreen\\n    mozallowfullscreen\\n    allowfullscreen\\n    allow=\"clipboard-write\"\\n    style=\"position: absolute; top: 0; left: 0; width: 100%; height: 100%; color-scheme: light;\"\\n  ></iframe>\\n</div>\\n<!--ARCADE EMBED END--> ',id:\"PRNO5Z9cC\",layoutId:\"PRNO5Z9cC\",radius:\"0px\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\",zoom:1})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dqesr7\",\"data-framer-name\":\"Pivot\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1upi1ui\",\"data-styles-preset\":\"Vkdknv1jR\",children:\"\u7121\u6599\u3067\u59CB\u3081\u3066\u307F\u307E\u305B\u3093\u304B\uFF1F\"})}),className:\"framer-nopzhc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3uv7za\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yhuCZDUnt\"},implicitPathVariables:undefined},{href:{webPageId:\"yhuCZDUnt\"},implicitPathVariables:undefined},{href:{webPageId:\"yhuCZDUnt\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+0+4904.4+20+398+20+35+20+0},yoWcz2rKb:{y:(componentViewport?.y||0)+50+3611+30+643+10+45+20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+50+3128+30+901+50+45+20,children:/*#__PURE__*/_jsx(Container,{className:\"framer-n496dg-container\",nodeId:\"YTxD1_avq\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{gTJRdXSEn:resolvedLinks4[2]},yoWcz2rKb:{gTJRdXSEn:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(AIBtnWaitinglistUS,{gTJRdXSEn:resolvedLinks4[0],height:\"100%\",id:\"YTxD1_avq\",layoutId:\"YTxD1_avq\",Nl5LoIyur:\"\u30C8\u30E9\u30A4\u30A2\u30EB\u7533\u3057\u8FBC\u307F\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YnDh2zDlw\"},implicitPathVariables:undefined},{href:{webPageId:\"YnDh2zDlw\"},implicitPathVariables:undefined},{href:{webPageId:\"YnDh2zDlw\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+0+4904.4+20+398+20+35+20+79},yoWcz2rKb:{y:(componentViewport?.y||0)+50+3611+30+643+10+45+20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+50+3128+30+901+50+45+20,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zgy534-container\",nodeId:\"DQ6_v82zN\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{gTJRdXSEn:resolvedLinks5[2]},yoWcz2rKb:{gTJRdXSEn:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(AIBtnWaitinglistUS,{gTJRdXSEn:resolvedLinks5[0],height:\"100%\",id:\"DQ6_v82zN\",layoutId:\"DQ6_v82zN\",Nl5LoIyur:\"\u8CC7\u6599\u8ACB\u6C42\",width:\"100%\"})})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1woe4ux\",\"data-framer-name\":\"\u4ED6\u793E\u6A5F\u80FD\u6BD4\u8F03\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pw0os8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mlgogy\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1xf6emq\",\"data-styles-preset\":\"WQQwIyMi_\",style:{\"--framer-text-alignment\":\"center\"},children:\"\u6A5F\u80FD\u6BD4\u8F03\"})}),className:\"framer-xhix42\",\"data-framer-name\":\"compare\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10z8yci\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"SaaS\u7BA1\u7406\u3001\u30C7\u30D0\u30A4\u30B9\u7BA1\u7406\u306A\u3069\u6A5F\u80FD\u5225\u306B\u5404\u793E\u306E\u7279\u5FB4\u3092\u6BD4\u8F03\u3057\u305F\u30DA\u30FC\u30B8\u3092\u516C\u958B\u4E2D\uFF01\"})}),fonts:[\"GF;Noto Sans JP-regular\"]},yoWcz2rKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"SaaS\u7BA1\u7406\u3001\u30C7\u30D0\u30A4\u30B9\u7BA1\u7406\u306A\u3069\u6A5F\u80FD\u5225\u306B\u5404\u793E\u306E\u7279\u5FB4\u3092\u6BD4\u8F03\u3057\u305F\u30DA\u30FC\u30B8\u3092\u516C\u958B\u4E2D\uFF01\"})}),fonts:[\"GF;Noto Sans JP-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1upi1ui\",\"data-styles-preset\":\"Vkdknv1jR\",children:\"SaaS\u7BA1\u7406\u3001\u30C7\u30D0\u30A4\u30B9\u7BA1\u7406\u306A\u3069\u6A5F\u80FD\u5225\u306B\u5404\u793E\u306E\u7279\u5FB4\u3092\u6BD4\u8F03\u3057\u305F\u30DA\u30FC\u30B8\u3092\u516C\u958B\u4E2D\uFF01\"})}),className:\"framer-a0loge\",\"data-framer-name\":\"compare\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ewimeh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5580.4+20+77.6+20),pixelHeight:444,pixelWidth:903,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"} - 80px, 1px)`,src:\"https://framerusercontent.com/images/eK7GgZztoMdtNiNuDkz5QZxMHKo.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/eK7GgZztoMdtNiNuDkz5QZxMHKo.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/eK7GgZztoMdtNiNuDkz5QZxMHKo.png?lossless=1 903w\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+4463+30+93+20),pixelHeight:444,pixelWidth:903,positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 100px) * 1, 1px)`,src:\"https://framerusercontent.com/images/eK7GgZztoMdtNiNuDkz5QZxMHKo.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/eK7GgZztoMdtNiNuDkz5QZxMHKo.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/eK7GgZztoMdtNiNuDkz5QZxMHKo.png?lossless=1 903w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+4298+30+100+20),pixelHeight:444,pixelWidth:903,positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 100px) * 1, 1px)`,src:\"https://framerusercontent.com/images/eK7GgZztoMdtNiNuDkz5QZxMHKo.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/eK7GgZztoMdtNiNuDkz5QZxMHKo.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/eK7GgZztoMdtNiNuDkz5QZxMHKo.png?lossless=1 903w\"},className:\"framer-5g6com\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/eed3873a-3d74-459d-9234-0ec81fb96985/submit\",className:\"framer-o42jp7\",nodeId:\"u9VoUyitW\",redirectUrl:{webPageId:\"OLjrrW1gy\"},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-160r6jb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:[\"\u30E1\u30FC\u30EB\u30A2\u30C9\u30EC\u30B9\u306E\u3054\u5165\u529B\u3067\",/*#__PURE__*/_jsx(\"br\",{}),\"\u6BD4\u8F03\u30DA\u30FC\u30B8\u3092\u95B2\u89A7\u3044\u305F\u3060\u3051\u307E\u3059\u3002\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"\u4E0B\u8A18\u3054\u5165\u529B\u3067\u6BD4\u8F03\u30DA\u30FC\u30B8\u3092\u95B2\u89A7\u3044\u305F\u3060\u3051\u307E\u3059\u3002\"})}),className:\"framer-54nla8\",fonts:[\"GF;Noto Sans JP-500\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iexoan\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g3a7c1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{height:52,width:\"308px\",y:(componentViewport?.y||0)+0+5580.4+20+755.6+0+125+0+0+1+0},yoWcz2rKb:{width:`calc((${componentViewport?.width||\"100vw\"} - 120px) * 0.9)`,y:(componentViewport?.y||0)+50+4463+30+771+0+125+10+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14.5455,width:\"400px\",y:(componentViewport?.y||0)+50+4298+30+778+0+125+10+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g5942e-container\",\"data-framer-name\":\"Form-text\",name:\"Form-text\",nodeId:\"w9W__r_Yc\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Input,{height:\"100%\",id:\"w9W__r_Yc\",It5x41zlz:\"Email\",layoutId:\"w9W__r_Yc\",name:\"Form-text\",QRptoeBl8:true,sF_94zPbi:\"email\",style:{height:\"100%\",width:\"100%\"},UjDu0FTwF:\"\u52E4\u52D9\u5148\u30E1\u30FC\u30EB\u30A2\u30C9\u30EC\u30B9\",variant:\"RjyFYZ0Ia\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-14pxj38\",children:/*#__PURE__*/_jsx(FormSelect,{className:\"framer-mem3wv\",defaultValue:\"\",inputName:\"department category\",required:true,selectOptions:[{disabled:true,title:\"\u90E8\u7F72\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044\",type:\"option\",value:\"\"},{title:\"\u4EE3\u8868\u30FB\u5F79\u54E1\",type:\"option\",value:\"\u4EE3\u8868\u30FB\u5F79\u54E1\"},{title:\"\u60C5\u5831\u30B7\u30B9\u30C6\u30E0\u90E8\u9580\",type:\"option\",value:\"\u60C5\u5831\u30B7\u30B9\u30C6\u30E0\u90E8\u9580\"},{title:\"\u7D4C\u55B6\u4F01\u753B\u90E8\u9580\",type:\"option\",value:\"\u7D4C\u55B6\u4F01\u753B\u90E8\u9580\"},{title:\"\u7DCF\u52D9\u30FB\u6CD5\u52D9\u90E8\u9580\",type:\"option\",value:\"\u7DCF\u52D9\u30FB\u6CD5\u52D9\u90E8\u9580\"},{title:\"\u4EBA\u4E8B\u52B4\u52D9\u90E8\u9580\",type:\"option\",value:\"\u4EBA\u4E8B\u52B4\u52D9\u90E8\u9580\"},{title:\"\u7D4C\u7406\u30FB\u8CA1\u52D9\u90E8\u9580\",type:\"option\",value:\"\u7D4C\u7406\u30FB\u8CA1\u52D9\u90E8\u9580\"},{title:\"\u55B6\u696D\u30FB\u8CA9\u58F2\u90E8\u9580\",type:\"option\",value:\"\u55B6\u696D\u30FB\u8CA9\u58F2\u90E8\u9580\"},{title:\"\u30DE\u30FC\u30B1\u30C6\u30A3\u30F3\u30B0\u90E8\u9580\",type:\"option\",value:\"\u30DE\u30FC\u30B1\u30C6\u30A3\u30F3\u30B0\u90E8\u9580\"},{title:\"\u958B\u767A\u90E8\u9580\",type:\"option\",value:\"\u958B\u767A\u90E8\u9580\"},{title:\"\u8CFC\u8CB7\u90E8\u9580\",type:\"option\",value:\"\u8CFC\u8CB7\u90E8\u9580\"},{title:\"\u305D\u306E\u4ED6\",type:\"option\",value:\"\u305D\u306E\u4ED6\"}]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"\u304A\u5BA2\u69D8\u306E\u500B\u4EBA\u60C5\u5831\u306F\u3001\u300C\u500B\u4EBA\u60C5\u5831\u306E\u53D6\u6271\u306B\u3064\u3044\u3066\u300D\u306B\u5F93\u3063\u3066\u9069\u5207\u306B\u53D6\u308A\u6271\u308F\u305B\u3066\u3044\u305F\u3060\u304D\u307E\u3059\u3002\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"\u30DE\u30CD\u30FC\u30D5\u30A9\u30EF\u30FC\u30C9\uFF49\u304B\u3089\u30A4\u30D9\u30F3\u30C8\u3001\u30B5\u30FC\u30D3\u30B9\u3001\u88FD\u54C1\u7B49\u306B\u95A2\u3059\u308B\u60C5\u5831\u3092\u304A\u9001\u308A\u3055\u305B\u3066\u3044\u305F\u3060\u304F\u5834\u5408\u304C\u3042\u308A\u307E\u3059\u3002\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:[/*#__PURE__*/_jsx(Link,{href:\"https://admina.moneyforward.com/jp/privacy\",motionChild:true,nodeId:\"lm9MIh_V5\",openInNewTab:true,relValues:[],scopeId:\"aFR96jTcg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-pbndum\",\"data-styles-preset\":\"f_JgQVGd5\",children:\"\u500B\u4EBA\u60C5\u5831\u306E\u53D6\u6271\"})}),\" \u3068\u4E0A\u8A18\u306B\u3064\u3044\u3066\"]})]}),className:\"framer-15mmhv6\",fonts:[\"GF;Noto Sans JP-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-18n8efc\",children:[/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-cqsbrr\",defaultChecked:false,inputName:\"Privacy Policy\",required:true,type:\"checkbox\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"\u540C\u610F\u3059\u308B\"})}),className:\"framer-tmfi2v\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v5ws8v\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{width:\"310px\",y:(componentViewport?.y||0)+0+5580.4+20+755.6+0+125+0+372+0},yoWcz2rKb:{y:(componentViewport?.y||0)+50+4463+30+771+0+125+10+336.5455+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`max((${componentViewport?.width||\"100vw\"} - 120px) * 1, 1px)`,y:(componentViewport?.y||0)+50+4298+30+778+0+125+10+336.5455+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mvf0zv-container\",nodeId:\"XTDYzoRqk\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(AIBtnWaitinglistJuly,{height:\"100%\",id:\"XTDYzoRqk\",layoutId:\"XTDYzoRqk\",Nl5LoIyur:\"\u6BD4\u8F03\u30DA\u30FC\u30B8\u3092\u898B\u308B\",style:{width:\"100%\"},type:\"submit\",width:\"100%\"})})})})})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k7lr1j\",\"data-framer-name\":\"casestudy\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ve8f90\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1xf6emq\",\"data-styles-preset\":\"WQQwIyMi_\",children:\"\u5C0E\u5165\u4E8B\u4F8B\"})}),className:\"framer-emt8dk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-urry4b\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10odj92\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{pageSize:3,query:{from:{alias:\"IE4nwsa6Q\",data:CaseStudyJp,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"IE4nwsa6Q\",name:\"Zzp9hQyyW\",type:\"Identifier\"},{collection:\"IE4nwsa6Q\",name:\"hBWA_gKWe\",type:\"Identifier\"},{collection:\"IE4nwsa6Q\",name:\"VdF_ws4av\",type:\"Identifier\"},{collection:\"IE4nwsa6Q\",name:\"fjlgMXmFp\",type:\"Identifier\"},{collection:\"IE4nwsa6Q\",name:\"Mgcfiyxpj\",type:\"Identifier\"},{collection:\"IE4nwsa6Q\",name:\"AtG1Fu3C6\",type:\"Identifier\"},{collection:\"IE4nwsa6Q\",name:\"yzQwSvrJK\",type:\"Identifier\"},{collection:\"IE4nwsa6Q\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"IE4nwsa6Q\",name:\"aKwNAXOdI\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:true},type:\"BinaryOperation\"}}},yoWcz2rKb:{pageSize:2,query:{from:{alias:\"IE4nwsa6Q\",data:CaseStudyJp,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"IE4nwsa6Q\",name:\"Zzp9hQyyW\",type:\"Identifier\"},{collection:\"IE4nwsa6Q\",name:\"hBWA_gKWe\",type:\"Identifier\"},{collection:\"IE4nwsa6Q\",name:\"VdF_ws4av\",type:\"Identifier\"},{collection:\"IE4nwsa6Q\",name:\"fjlgMXmFp\",type:\"Identifier\"},{collection:\"IE4nwsa6Q\",name:\"Mgcfiyxpj\",type:\"Identifier\"},{collection:\"IE4nwsa6Q\",name:\"AtG1Fu3C6\",type:\"Identifier\"},{collection:\"IE4nwsa6Q\",name:\"yzQwSvrJK\",type:\"Identifier\"},{collection:\"IE4nwsa6Q\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"IE4nwsa6Q\",name:\"aKwNAXOdI\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:true},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{pageSize:3,query:{from:{alias:\"IE4nwsa6Q\",data:CaseStudyJp,type:\"Collection\"},select:[{collection:\"IE4nwsa6Q\",name:\"Zzp9hQyyW\",type:\"Identifier\"},{collection:\"IE4nwsa6Q\",name:\"hBWA_gKWe\",type:\"Identifier\"},{collection:\"IE4nwsa6Q\",name:\"VdF_ws4av\",type:\"Identifier\"},{collection:\"IE4nwsa6Q\",name:\"fjlgMXmFp\",type:\"Identifier\"},{collection:\"IE4nwsa6Q\",name:\"Mgcfiyxpj\",type:\"Identifier\"},{collection:\"IE4nwsa6Q\",name:\"AtG1Fu3C6\",type:\"Identifier\"},{collection:\"IE4nwsa6Q\",name:\"yzQwSvrJK\",type:\"Identifier\"},{collection:\"IE4nwsa6Q\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"IE4nwsa6Q\",name:\"aKwNAXOdI\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:true},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({AtG1Fu3C6:AtG1Fu3C6IE4nwsa6Q,fjlgMXmFp:fjlgMXmFpIE4nwsa6Q,hBWA_gKWe:hBWA_gKWeIE4nwsa6Q,id:idIE4nwsa6Q,Mgcfiyxpj:MgcfiyxpjIE4nwsa6Q,VdF_ws4av:VdF_ws4avIE4nwsa6Q,yzQwSvrJK:yzQwSvrJKIE4nwsa6Q,Zzp9hQyyW:Zzp9hQyyWIE4nwsa6Q},index)=>{Zzp9hQyyWIE4nwsa6Q??=\"\";VdF_ws4avIE4nwsa6Q??=\"\";MgcfiyxpjIE4nwsa6Q??=\"\";AtG1Fu3C6IE4nwsa6Q??=\"\";const textContent=enumToDisplayNameFunctions[\"yzQwSvrJK\"]?.(yzQwSvrJKIE4nwsa6Q,activeLocale);return /*#__PURE__*/_jsx(LayoutGroup,{id:`IE4nwsa6Q-${idIE4nwsa6Q}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Zzp9hQyyW:Zzp9hQyyWIE4nwsa6Q},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Zzp9hQyyW:Zzp9hQyyWIE4nwsa6Q},webPageId:\"mDhSVddeV\"},motionChild:true,nodeId:\"mSTdv1lYe\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-88ln9s framer-10x6apn\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-o3qbl5\",whileHover:animation6,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7073+30+68+0+48+22+0+0+0),sizes:\"345px\",...toResponsiveImage(hBWA_gKWeIE4nwsa6Q)}},yoWcz2rKb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+5965.5455+30+17.4+48+22+0+0+0),sizes:\"345px\",...toResponsiveImage(hBWA_gKWeIE4nwsa6Q)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"345px\",...toResponsiveImage(hBWA_gKWeIE4nwsa6Q)},className:\"framer-11j8qe2\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wb1mxz\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pqj2o9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\"Admina\u3068CASB\u306E\u7D44\u307F\u5408\u308F\u305B\u3067\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\"\u5F37\u5EA6\u306A\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u4F53\u5236\u3092\u5B9F\u73FE\uFF01\"})]})}),className:\"framer-3t2cah\",\"data-framer-name\":\"Title\",fonts:[\"GF;Noto Sans JP-500\"],text:VdF_ws4avIE4nwsa6Q,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17r3eud\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xu1dow\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7073+30+68+0+48+22+190+5+42+32.25+0+0),pixelHeight:2160,pixelWidth:3678,sizes:\"117.0833px\",...toResponsiveImage(fjlgMXmFpIE4nwsa6Q),...{positionX:\"center\",positionY:\"center\"}}},yoWcz2rKb:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+5965.5455+30+17.4+48+22+190+5+42+32.25+0+0),pixelHeight:2160,pixelWidth:3678,sizes:\"117.0833px\",...toResponsiveImage(fjlgMXmFpIE4nwsa6Q),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:2160,pixelWidth:3678,sizes:\"117.0833px\",...toResponsiveImage(fjlgMXmFpIE4nwsa6Q),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1ue6pze\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fff1pf\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"\u30C7\u30A3\u30C3\u30D7\u682A\u5F0F\u4F1A\u793E\"})}),className:\"framer-o5q54r\",\"data-framer-name\":\"Company Category\",fonts:[\"GF;Noto Sans JP-regular\"],text:MgcfiyxpjIE4nwsa6Q,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-39u2gm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-82syuc\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nt9g1m\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(119, 119, 119)\"},children:\"\u696D\u7A2E\"})}),className:\"framer-8euixf\",\"data-framer-name\":\"size\",fonts:[\"GF;Noto Sans JP-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ty4lum\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(119, 119, 119)\"},children:\"\u4EBA\u6750\u95A2\u9023\u30B5\u30FC\u30D3\u30B9\"})}),className:\"framer-ljww9z\",\"data-framer-name\":\"Company Category\",fonts:[\"GF;Noto Sans JP-regular\"],text:AtG1Fu3C6IE4nwsa6Q,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5mxsb2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fvubog\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(119, 119, 119)\"},children:\"\u5F93\u696D\u54E1\u6570\"})}),className:\"framer-1ciwnpz\",\"data-framer-name\":\"size\",fonts:[\"GF;Noto Sans JP-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10b3175\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(119, 119, 119)\"},children:\"\u4EBA\u6750\u95A2\u9023\u30B5\u30FC\u30D3\u30B9\"})})},yoWcz2rKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(119, 119, 119)\"},children:\"\u4EBA\u6750\u95A2\u9023\u30B5\u30FC\u30D3\u30B9\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(119, 119, 119)\"},children:\"Content\"})}),className:\"framer-tlwj0h\",\"data-framer-name\":\"Company Category\",fonts:[\"GF;Noto Sans JP-regular\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})]})})})},idIE4nwsa6Q);})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-29f711\",\"data-framer-name\":\"review\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6b9gvc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1upi1ui\",\"data-styles-preset\":\"Vkdknv1jR\",children:\"\u591A\u304F\u306E\u60C5\u30B7\u30B9\u62C5\u5F53\u8005\u304CAdmina\u3092\u63A8\u85A6\"})})},yoWcz2rKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTYwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"33px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"\u591A\u304F\u306E\u60C5\u30B7\u30B9\u62C5\u5F53\u8005\u304CAdmina\u3092\u63A8\u85A6\"})}),fonts:[\"GF;Noto Sans JP-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1xf6emq\",\"data-styles-preset\":\"WQQwIyMi_\",style:{\"--framer-text-alignment\":\"center\"},children:\"\u591A\u304F\u306E\u60C5\u30B7\u30B9\u62C5\u5F53\u8005\u304CAdmina\u3092\u63A8\u85A6\"})}),className:\"framer-uaxodn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l1shzn hidden-r1e9az hidden-1e9jhki\",\"data-framer-name\":\"recommend\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10fcbxv\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h4hznl\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2e3hnf\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y572rn\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Avatar_Kellock Irvin, EDF Renewables.png\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/F367TKFq8QREsyLI3NtM9pNMAJk.png\"},className:\"framer-7j54wp\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wpr354\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\"note\u682A\u5F0F\u4F1A\u793E\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\"\u30B3\u30FC\u30DD\u30EC\u30FC\u30C8IT\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\"\u6771 \u8015\u8F14 \u69D8\"})]})}),className:\"framer-1nr6dji\",fonts:[\"GF;Noto Sans JP-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4oo0po\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:[\"\u8AB0\u304C\u3069\u306ESaaS\u3092\u4F7F\u3063\u3066\u3044\u308B\u304B\u3001\u305D\u308C\u3068\u540C\u6642\u306B\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"\u3069\u306ESaaS\u306B\u8AB0\u306E\u30A2\u30AB\u30A6\u30F3\u30C8\u304C\u3042\u308B\u304B\u3068\u3044\u3046\u306E\u304C\u3068\u3066\u3082\u5206\u304B\u308A\u3084\u3059\u304F\u628A\u63E1\u3067\u304D\u308B\"}),\"\u30C4\u30FC\u30EB\u3067\u3059\u306E\u3067\u3001\u305D\u3046\u3044\u3063\u305F\u3068\u3053\u308D\u3092\u624B\u8EFD\u306B\u628A\u63E1\u3057\u305F\u3044\u4EBA\u306B\u304A\u3059\u3059\u3081\u3067\u3059\u3002\u81EA\u5206\u306A\u308A\u306B\u305D\u306E\u30A2\u30AB\u30A6\u30F3\u30C8\u60C5\u5831\u3092\u5206\u6790\u3057\u305F\u308A\u3068\u304B\u518D\u7DE8\u96C6\u3057\u305F\u3044\u65B9\u306B\u3082\u3001\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"API\u304C\u304B\u306A\u308A\u4F7F\u3044\u3084\u3059\u3044\"}),\"\u306E\u3067\u304A\u3059\u3059\u3081\u3067\u304D\u307E\u3059\u3002\"]})}),className:\"framer-t76yui\",fonts:[\"GF;Noto Sans JP-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ygm0cp\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wyvcz0\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16fxee3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1va3fz8\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Avatar_Kellock Irvin, EDF Renewables.png\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/JGg5JROX1x8BaKUJsA6ESML5dKI.png\"},className:\"framer-10vi8ku\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5ymy70\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\"\u682A\u5F0F\u4F1A\u793EPiece to Peace\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\"\u30B7\u30B9\u30C6\u30E0\u30B0\u30EB\u30FC\u30D7 \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\"\u5C71\u4E0B \u4E00\u9A0E \u69D8\"})]})}),className:\"framer-ovf998\",fonts:[\"GF;Noto Sans JP-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5yg0ip\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:[\"\u60C5\u30B7\u30B9\u62C5\u5F53\u8005\u304C1\u4EBA\u306E\u4F01\u696D\u304C\u30B9\u30BF\u30FC\u30C8\u30A2\u30C3\u30D7\u306B\u306F\u975E\u5E38\u306B\u591A\u3044\u3093\u3058\u3083\u306A\u3044\u304B\u306A\u3063\u3066\u601D\u3063\u3066\u3044\u3066\u3001SaaS\u306E\u5C0E\u5165\u30B9\u30D4\u30FC\u30C9\u3082\u3068\u3066\u3082\u65E9\u3044\u3068\u611F\u3058\u3066\u3044\u307E\u3059\u3002\u305D\u3046\u3044\u3046\u74B0\u5883\u4E0B\u3067\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"SaaS\u7BA1\u7406\u304C\u3067\u304D\u3066\u306A\u3044\u4F1A\u793E\u306B\u306F\u3001\u975E\u5E38\u306B\u304A\u3059\u3059\u3081\"}),\"\u304B\u306A\u3063\u3066\u601D\u3063\u3066\u3044\u3066\u3001\u30B9\u30BF\u30FC\u30C8\u30A2\u30C3\u30D7\u3068\u304B\u3067\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"\u60C5\u5831\u30B7\u30B9\u30C6\u30E0\u90E8\u9580\u3068\u4ED6\u90E8\u9580\u3092\u517C\u4EFB\u3055\u308C\u3066\u308B\u65B9\u306F\u3001\u975E\u5E38\u306B\u5408\u3046\u3093\u3058\u3083\u306A\u3044\u304B\u306A\u3068\u601D\u3044\u307E\u3059\"}),\"\u3002\"]})}),className:\"framer-1uyt055\",fonts:[\"GF;Noto Sans JP-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iqq2z1\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ew8yc8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z3ybgi\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-62blgl\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Avatar_Kellock Irvin, EDF Renewables.png\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:3840,pixelWidth:5760,sizes:`max((${componentViewport?.width||\"100vw\"} * 0.9 - 35px) * 0.3, 1px)`,src:\"https://framerusercontent.com/images/hJL4tA9fF5kIvYYSJxk60Xr9s.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/hJL4tA9fF5kIvYYSJxk60Xr9s.png?scale-down-to=512 512w,https://framerusercontent.com/images/hJL4tA9fF5kIvYYSJxk60Xr9s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hJL4tA9fF5kIvYYSJxk60Xr9s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hJL4tA9fF5kIvYYSJxk60Xr9s.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/hJL4tA9fF5kIvYYSJxk60Xr9s.png 5760w\"},className:\"framer-4hjqp2\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tp777w\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\"\u682A\u5F0F\u4F1A\u793E\u30D8\u30F3\u30EA\u30FC\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\"\u7BA1\u7406\u672C\u90E8 \u5168\u793EIT\u90E8\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\"\u5C71\u7530 \u771F\u6B21 \u69D8\"})]})}),className:\"framer-ngccw\",fonts:[\"GF;Noto Sans JP-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r1llnl\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"Admina\u306F\u30E2\u30C0\u30F3\u306AUI\u3067\u3069\u306ESaaS\u306B\u8AB0\u306E\u30A2\u30AB\u30A6\u30F3\u30C8\u304C\u3042\u308B\u304B\u4E00\u89A7\u3067\u898B\u308C\u308B\u305F\u3081\u3001\u52B9\u7387\u3088\u304FSaaS\u3092\u7BA1\u7406\u3067\u304D\u308B\u3088\u3046\u306B\u306A\u308A\u307E\u3057\u305F\u3002\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"\u4EBA\u6570\u304C\u5C11\u306A\u3044\u3046\u3061\u304B\u3089\u65E9\u671F\u306B\u5C0E\u5165\u30FB\u904B\u7528\u3057\u3066\u304A\u304F\u3068\u4F1A\u793E\u304C\u6210\u9577\u3057\u3066\u3082\u30B9\u30E0\u30FC\u30BA\u306B\u30B9\u30B1\u30FC\u30EB\u3059\u308B\u3053\u3068\u304C\u3067\u304D\u3001\u30B3\u30B9\u30C8\u9762\u3067\u3082\u30E1\u30EA\u30C3\u30C8\u304C\u5927\u304D\u3044\u3068\u8003\u3048\u3066\u3044\u307E\u3059\u3002\"})]}),className:\"framer-cj47fj\",fonts:[\"GF;Noto Sans JP-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-b66zzu hidden-i3q8sy\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xmodap\",\"data-framer-name\":\"Content\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hvgwke hidden-i3q8sy hidden-r1e9az\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"Logo_EDF Renewables.png\",fit:\"fit\",intrinsicHeight:144,intrinsicWidth:384,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7073+30+621+10+45+0+0+20+0+0),pixelHeight:144,pixelWidth:384,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/T9QMcKIIj1fOesdl8D5BhadYA2U.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo_EDF Renewables.png\",fit:\"fit\",intrinsicHeight:144,intrinsicWidth:384,pixelHeight:144,pixelWidth:384,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/T9QMcKIIj1fOesdl8D5BhadYA2U.webp\"},className:\"framer-1mjles0\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sekz94\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-s8gpfg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"Avatar_Kellock Irvin, EDF Renewables.png\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7073+30+621+10+45+0+0+20+37.5+0+0+0),pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/F367TKFq8QREsyLI3NtM9pNMAJk.png\"}},yoWcz2rKb:{background:{alt:\"Avatar_Kellock Irvin, EDF Renewables.png\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+5965.5455+30+557.4+10+56.2+0+0+30+0+0+0+0),pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/F367TKFq8QREsyLI3NtM9pNMAJk.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Avatar_Kellock Irvin, EDF Renewables.png\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/F367TKFq8QREsyLI3NtM9pNMAJk.png\"},className:\"framer-11t220w\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hm1r32\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:[\"note\u682A\u5F0F\u4F1A\u793E\",/*#__PURE__*/_jsx(\"br\",{}),\"\u30B3\u30FC\u30DD\u30EC\u30FC\u30C8IT\",/*#__PURE__*/_jsx(\"br\",{}),\"\u6771 \u8015\u8F14 \u69D8\"]})}),fonts:[\"GF;Noto Sans JP-regular\"]},yoWcz2rKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTYwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"38px\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:[\"note\u682A\u5F0F\u4F1A\u793E\",/*#__PURE__*/_jsx(\"br\",{}),\"\u30B3\u30FC\u30DD\u30EC\u30FC\u30C8IT\u3000\u6771 \u8015\u8F14 \u69D8\"]})}),fonts:[\"GF;Noto Sans JP-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItODAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"38px\",\"--framer-text-color\":\"rgb(41, 45, 52)\"},children:[\"note\u682A\u5F0F\u4F1A\u793E\",/*#__PURE__*/_jsx(\"br\",{}),\"\u30B3\u30FC\u30DD\u30EC\u30FC\u30C8IT\",/*#__PURE__*/_jsx(\"br\",{}),\"\u6771 \u8015\u8F14 \u69D8\"]})}),className:\"framer-iv5tvx\",fonts:[\"GF;Inter-800\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"\u3053\u306EAdmina\u3068\u3044\u3046\u30B5\u30FC\u30D3\u30B9\u306F\u3001\u500B\u4EBA\u7684\u306B\u3068\u3066\u3082\u7D20\u76F4\u306A\u30C4\u30FC\u30EB\u3060\u3068\u601D\u3063\u3066\u3044\u307E\u3059\u3002 \u3000\u8AB0\u304C\u3069\u306ESaaS\u3092\u4F7F\u3063\u3066\u3044\u308B\u304B\u3001\u305D\u308C\u3068\u540C\u6642\u306B\u3069\u306ESaaS\u306B\u8AB0\u306E\u30A2\u30AB\u30A6\u30F3\u30C8\u304C\u3042\u308B\u304B\u3068\u3044\u3046\u306E\u304C\u3068\u3066\u3082\u5206\u304B\u308A\u3084\u3059\u304F\u628A\u63E1\u3067\u304D\u308B\u30C4\u30FC\u30EB\u3067\u3059\u306E\u3067\u3001\u305D\u3046\u3044\u3063\u305F\u3068\u3053\u308D\u3092\u624B\u8EFD\u306B\u628A\u63E1\u3057\u305F\u3044\u4EBA\u306B\u304A\u3059\u3059\u3081\u3067\u3059\u3002\u81EA\u5206\u306A\u308A\u306B\u305D\u306E\u30A2\u30AB\u30A6\u30F3\u30C8\u60C5\u5831\u3092\u5206\u6790\u3057\u305F\u308A\u3068\u304B\u518D\u7DE8\u96C6\u3057\u305F\u3044\u65B9\u306B\u3082\u3001API\u304C\u304B\u306A\u308A\u4F7F\u3044\u3084\u3059\u3044\u306E\u3067\u304A\u3059\u3059\u3081\u3067\u304D\u307E\u3059\u3002\"})}),fonts:[\"GF;Noto Sans JP-500\"]},yoWcz2rKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"\u3053\u306EAdmina\u3068\u3044\u3046\u30B5\u30FC\u30D3\u30B9\u306F\u3001\u500B\u4EBA\u7684\u306B\u3068\u3066\u3082\u7D20\u76F4\u306A\u30C4\u30FC\u30EB\u3060\u3068\u601D\u3063\u3066\u3044\u307E\u3059\u3002 \u3000\u8AB0\u304C\u3069\u306ESaaS\u3092\u4F7F\u3063\u3066\u3044\u308B\u304B\u3001\u305D\u308C\u3068\u540C\u6642\u306B\u3069\u306ESaaS\u306B\u8AB0\u306E\u30A2\u30AB\u30A6\u30F3\u30C8\u304C\u3042\u308B\u304B\u3068\u3044\u3046\u306E\u304C\u3068\u3066\u3082\u5206\u304B\u308A\u3084\u3059\u304F\u628A\u63E1\u3067\u304D\u308B\u30C4\u30FC\u30EB\u3067\u3059\u306E\u3067\u3001\u305D\u3046\u3044\u3063\u305F\u3068\u3053\u308D\u3092\u624B\u8EFD\u306B\u628A\u63E1\u3057\u305F\u3044\u4EBA\u306B\u304A\u3059\u3059\u3081\u3067\u3059\u3002\u81EA\u5206\u306A\u308A\u306B\u305D\u306E\u30A2\u30AB\u30A6\u30F3\u30C8\u60C5\u5831\u3092\u5206\u6790\u3057\u305F\u308A\u3068\u304B\u518D\u7DE8\u96C6\u3057\u305F\u3044\u65B9\u306B\u3082\u3001API\u304C\u304B\u306A\u308A\u4F7F\u3044\u3084\u3059\u3044\u306E\u3067\u304A\u3059\u3059\u3081\u3067\u304D\u307E\u3059\u3002\"})}),fonts:[\"GF;Noto Sans JP-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u3053\u306EAdmina\u3068\u3044\u3046\u30B5\u30FC\u30D3\u30B9\u306F\u3001\u500B\u4EBA\u7684\u306B\u3068\u3066\u3082\u7D20\u76F4\u306A\u30C4\u30FC\u30EB\u3060\u3068\u601D\u3063\u3066\u3044\u307E\u3059\u3002 \u3000\u8AB0\u304C\u3069\u306ESaaS\u3092\u4F7F\u3063\u3066\u3044\u308B\u304B\u3001\u305D\u308C\u3068\u540C\u6642\u306B\u3069\u306ESaaS\u306B\u8AB0\u306E\u30A2\u30AB\u30A6\u30F3\u30C8\u304C\u3042\u308B\u304B\u3068\u3044\u3046\u306E\u304C\u3068\u3066\u3082\u5206\u304B\u308A\u3084\u3059\u304F\u628A\u63E1\u3067\u304D\u308B\u30C4\u30FC\u30EB\u3067\u3059\u306E\u3067\u3001\u305D\u3046\u3044\u3063\u305F\u3068\u3053\u308D\u3092\u624B\u8EFD\u306B\u628A\u63E1\u3057\u305F\u3044\u4EBA\u306B\u304A\u3059\u3059\u3081\u3067\u3059\u3002\u81EA\u5206\u306A\u308A\u306B\u305D\u306E\u30A2\u30AB\u30A6\u30F3\u30C8\u60C5\u5831\u3092\u5206\u6790\u3057\u305F\u308A\u3068\u304B\u518D\u7DE8\u96C6\u3057\u305F\u3044\u65B9\u306B\u3082\u3001API\u304C\u304B\u306A\u308A\u4F7F\u3044\u3084\u3059\u3044\u306E\u3067\u304A\u3059\u3059\u3081\u3067\u304D\u307E\u3059\u3002\"})}),className:\"framer-9r7ktt\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-12ejdv8 hidden-i3q8sy\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qrhrm9\",\"data-framer-name\":\"Content\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-10knyjh hidden-i3q8sy hidden-r1e9az\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"Logo_Yoga International.png\",fit:\"fit\",intrinsicHeight:155,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7073+30+621+10+325.5+20+0+0+0+0),pixelHeight:155,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PE0BOLCmocZ7YMdocQW27gxJE.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo_Yoga International.png\",fit:\"fit\",intrinsicHeight:155,intrinsicWidth:512,pixelHeight:155,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PE0BOLCmocZ7YMdocQW27gxJE.webp\"},className:\"framer-xtw8en\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4cjp92\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7it8b7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"Avatar_Kellock Irvin, EDF Renewables.png\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7073+30+621+10+325.5+20+0+0+60+0+0+0),pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/JGg5JROX1x8BaKUJsA6ESML5dKI.png\"}},yoWcz2rKb:{background:{alt:\"Avatar_Kellock Irvin, EDF Renewables.png\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+5965.5455+30+557.4+10+374.2+0+0+30+0+0+0+0),pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/JGg5JROX1x8BaKUJsA6ESML5dKI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Avatar_Kellock Irvin, EDF Renewables.png\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/JGg5JROX1x8BaKUJsA6ESML5dKI.png\"},className:\"framer-x4us7r\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14yuurt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:[\"\u682A\u5F0F\u4F1A\u793EPiece to Peace\",/*#__PURE__*/_jsx(\"br\",{}),\"\u30B7\u30B9\u30C6\u30E0\u30B0\u30EB\u30FC\u30D7\",/*#__PURE__*/_jsx(\"br\",{}),\"\u30DE\u30CD\u30FC\u30B8\u30E3\u30FC \u5C71\u4E0B \u4E00\u9A0E \u69D8\"]})}),fonts:[\"GF;Noto Sans JP-regular\"]},yoWcz2rKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTYwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"38px\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:[\"\u682A\u5F0F\u4F1A\u793EPiece to Peace\",/*#__PURE__*/_jsx(\"br\",{}),\"\u30B7\u30B9\u30C6\u30E0\u30B0\u30EB\u30FC\u30D7 \u30DE\u30CD\u30FC\u30B8\u30E3\u30FC\u3000\u5C71\u4E0B \u4E00\u9A0E \u69D8\"]})}),fonts:[\"GF;Noto Sans JP-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItODAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"38px\",\"--framer-text-color\":\"rgb(41, 45, 52)\"},children:[\"\u682A\u5F0F\u4F1A\u793EPiece to Peace\",/*#__PURE__*/_jsx(\"br\",{}),\"\u30B7\u30B9\u30C6\u30E0\u30B0\u30EB\u30FC\u30D7 \u30DE\u30CD\u30FC\u30B8\u30E3\u30FC\",/*#__PURE__*/_jsx(\"br\",{}),\"\u5C71\u4E0B \u4E00\u9A0E \u69D8\"]})}),className:\"framer-odo7zf\",fonts:[\"GF;Inter-800\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"\u60C5\u30B7\u30B9\u62C5\u5F53\u8005\u304C1\u4EBA\u306E\u4F01\u696D\u304C\u30B9\u30BF\u30FC\u30C8\u30A2\u30C3\u30D7\u306B\u306F\u975E\u5E38\u306B\u591A\u3044\u3093\u3058\u3083\u306A\u3044\u304B\u306A\u3063\u3066\u601D\u3063\u3066\u3044\u3066\u3001SaaS\u306E\u5C0E\u5165\u30B9\u30D4\u30FC\u30C9\u3082\u3068\u3066\u3082\u65E9\u3044\u3068\u611F\u3058\u3066\u3044\u307E\u3059\u3002\u305D\u3046\u3044\u3046\u74B0\u5883\u4E0B\u3067SaaS\u7BA1\u7406\u304C\u3067\u304D\u3066\u306A\u3044\u4F1A\u793E\u306B\u306F\u3001\u975E\u5E38\u306B\u304A\u3059\u3059\u3081\u304B\u306A\u3063\u3066\u601D\u3063\u3066\u3044\u3066\u3001\u4E14\u3064\u30B9\u30BF\u30FC\u30C8\u30A2\u30C3\u30D7\u3068\u304B\u3067\u60C5\u5831\u30B7\u30B9\u30C6\u30E0\u3068\u4F55\u304B\u3092\u517C\u4EFB\u3055\u308C\u3066\u308B\u65B9\u306F\u3001\u975E\u5E38\u306B\u5408\u3046\u3093\u3058\u3083\u306A\u3044\u304B\u306A\u3068\u601D\u3044\u307E\u3059\u3002\"})}),fonts:[\"GF;Noto Sans JP-500\"]},yoWcz2rKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"\u60C5\u30B7\u30B9\u62C5\u5F53\u8005\u304C1\u4EBA\u306E\u4F01\u696D\u304C\u30B9\u30BF\u30FC\u30C8\u30A2\u30C3\u30D7\u306B\u306F\u975E\u5E38\u306B\u591A\u3044\u3093\u3058\u3083\u306A\u3044\u304B\u306A\u3063\u3066\u601D\u3063\u3066\u3044\u3066\u3001SaaS\u306E\u5C0E\u5165\u30B9\u30D4\u30FC\u30C9\u3082\u3068\u3066\u3082\u65E9\u3044\u3068\u611F\u3058\u3066\u3044\u307E\u3059\u3002\u305D\u3046\u3044\u3046\u74B0\u5883\u4E0B\u3067SaaS\u7BA1\u7406\u304C\u3067\u304D\u3066\u306A\u3044\u4F1A\u793E\u306B\u306F\u3001\u975E\u5E38\u306B\u304A\u3059\u3059\u3081\u304B\u306A\u3063\u3066\u601D\u3063\u3066\u3044\u3066\u3001\u4E14\u3064\u30B9\u30BF\u30FC\u30C8\u30A2\u30C3\u30D7\u3068\u304B\u3067\u60C5\u5831\u30B7\u30B9\u30C6\u30E0\u3068\u4F55\u304B\u3092\u517C\u4EFB\u3055\u308C\u3066\u308B\u65B9\u306F\u3001\u975E\u5E38\u306B\u5408\u3046\u3093\u3058\u3083\u306A\u3044\u304B\u306A\u3068\u601D\u3044\u307E\u3059\u3002\"})}),fonts:[\"GF;Noto Sans JP-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItMzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15.008px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"17.768px\",\"--framer-text-color\":\"rgb(41, 45, 52)\"},children:\"\u60C5\u30B7\u30B9\u62C5\u5F53\u8005\u304C1\u4EBA\u306E\u4F01\u696D\u304C\u30B9\u30BF\u30FC\u30C8\u30A2\u30C3\u30D7\u306B\u306F\u975E\u5E38\u306B\u591A\u3044\u3093\u3058\u3083\u306A\u3044\u304B\u306A\u3063\u3066\u601D\u3063\u3066\u3044\u3066\u3001SaaS\u306E\u5C0E\u5165\u30B9\u30D4\u30FC\u30C9\u3082\u3068\u3066\u3082\u65E9\u3044\u3068\u611F\u3058\u3066\u3044\u307E\u3059\u3002\u305D\u3046\u3044\u3046\u74B0\u5883\u4E0B\u3067SaaS\u7BA1\u7406\u304C\u3067\u304D\u3066\u306A\u3044\u4F1A\u793E\u306B\u306F\u3001\u975E\u5E38\u306B\u304A\u3059\u3059\u3081\u304B\u306A\u3063\u3066\u601D\u3063\u3066\u3044\u3066\u3001\u4E14\u3064\u30B9\u30BF\u30FC\u30C8\u30A2\u30C3\u30D7\u3068\u304B\u3067\u60C5\u5831\u30B7\u30B9\u30C6\u30E0\u3068\u4F55\u304B\u3092\u517C\u4EFB\u3055\u308C\u3066\u308B\u65B9\u306F\u3001\u975E\u5E38\u306B\u5408\u3046\u3093\u3058\u3083\u306A\u3044\u304B\u306A\u3068\u601D\u3044\u307E\u3059\u3002\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItMzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15.008px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"17.768px\",\"--framer-text-color\":\"rgb(41, 45, 52)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItMzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15.008px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"17.768px\",\"--framer-text-color\":\"rgb(41, 45, 52)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1sziunx\",fonts:[\"GF;Inter-300\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e1o2n5 hidden-i3q8sy\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7k7xj0\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9qgvd2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ni49z\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"Avatar_Kellock Irvin, EDF Renewables.png\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7073+30+621+10+638.5+20+0+0+47.5+0+0+0),pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/uhDK2T69MHdsqqQAovs1zLi5Smw.png\"}},yoWcz2rKb:{background:{alt:\"Avatar_Kellock Irvin, EDF Renewables.png\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+5965.5455+30+557.4+10+692.2+0+0+30+0+0+0+0),pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/uhDK2T69MHdsqqQAovs1zLi5Smw.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Avatar_Kellock Irvin, EDF Renewables.png\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/uhDK2T69MHdsqqQAovs1zLi5Smw.png\"},className:\"framer-16mj4j3\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gac25e\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:[\"\u682A\u5F0F\u4F1A\u793E\u767D\u7D44\",/*#__PURE__*/_jsx(\"br\",{}),\"\u30B7\u30B9\u30C6\u30E0\u90E8\",/*#__PURE__*/_jsx(\"br\",{}),\"\u90E8\u9577 \u5165\u7530 \u5C2D\u5149 \u69D8\"]})}),fonts:[\"GF;Noto Sans JP-regular\"]},yoWcz2rKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTYwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"38px\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:[\"\u682A\u5F0F\u4F1A\u793E\u767D\u7D44\",/*#__PURE__*/_jsx(\"br\",{}),\"\u30B7\u30B9\u30C6\u30E0\u90E8 \u90E8\u9577\u3000\u5165\u7530 \u5C2D\u5149 \u69D8\"]})}),fonts:[\"GF;Noto Sans JP-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItODAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"38px\",\"--framer-text-color\":\"rgb(41, 45, 52)\"},children:[\"\u682A\u5F0F\u4F1A\u793E\u767D\u7D44\",/*#__PURE__*/_jsx(\"br\",{}),\"\u30B7\u30B9\u30C6\u30E0\u90E8 \u90E8\u9577\",/*#__PURE__*/_jsx(\"br\",{}),\"\u5165\u7530 \u5C2D\u5149 \u69D8\"]})}),className:\"framer-1ejeya7\",fonts:[\"GF;Inter-800\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"Admina\u3092\u5C0E\u5165\u3059\u308B\u3068\u3001\u540C\u3058UI\u3001\u540C\u3058\u30A2\u30AF\u30BB\u30B9\u306E\u4ED5\u65B9\u3067\u3001\u300C\u4F55\u306E\u30A2\u30AB\u30A6\u30F3\u30C8\u5951\u7D04\u3055\u308C\u3066\u3044\u308B\u304B\u300D\u300C\u30A2\u30AB\u30A6\u30F3\u30C8\u304C\u3082\u3046\u4F11\u7720\u72B6\u614B\u306B\u306A\u3063\u3066\u308B\u304B\u300D\u300C\u9000\u8077\u8005\u30A2\u30AB\u30A6\u30F3\u30C8\u304C\u6B8B\u3063\u3066\u3044\u306A\u3044\u304B\u300D\u306A\u3069\u3092\u898B\u308B\u3053\u3068\u304C\u3067\u304D\u307E\u3059\u3002\u307E\u305F\u3001\u8AB0\u306E\u30A2\u30AB\u30A6\u30F3\u30C8\u304C\u7BA1\u7406\u8005\u306B\u306A\u3063\u3066\u308B\u306E\u304B\u3082\u4E00\u76EE\u3067\u78BA\u8A8D\u3059\u308B\u3053\u3068\u304C\u3067\u304D\u308B\u306E\u3067\u3001\u3053\u306E\u6A5F\u80FD\u306E\u307F\u3067\u3082\u5C0E\u5165\u306E\u4FA1\u5024\u304C\u3042\u308B\u3068\u601D\u3044\u307E\u3059\u3002\"})}),fonts:[\"GF;Noto Sans JP-500\"]},yoWcz2rKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"Admina\u3092\u5C0E\u5165\u3059\u308B\u3068\u3001\u540C\u3058UI\u3001\u540C\u3058\u30A2\u30AF\u30BB\u30B9\u306E\u4ED5\u65B9\u3067\u3001\u300C\u4F55\u306E\u30A2\u30AB\u30A6\u30F3\u30C8\u5951\u7D04\u3055\u308C\u3066\u3044\u308B\u304B\u300D\u300C\u30A2\u30AB\u30A6\u30F3\u30C8\u304C\u3082\u3046\u4F11\u7720\u72B6\u614B\u306B\u306A\u3063\u3066\u308B\u304B\u300D\u300C\u9000\u8077\u8005\u30A2\u30AB\u30A6\u30F3\u30C8\u304C\u6B8B\u3063\u3066\u3044\u306A\u3044\u304B\u300D\u306A\u3069\u3092\u898B\u308B\u3053\u3068\u304C\u3067\u304D\u307E\u3059\u3002\u307E\u305F\u3001\u8AB0\u306E\u30A2\u30AB\u30A6\u30F3\u30C8\u304C\u7BA1\u7406\u8005\u306B\u306A\u3063\u3066\u308B\u306E\u304B\u3082\u4E00\u76EE\u3067\u78BA\u8A8D\u3059\u308B\u3053\u3068\u304C\u3067\u304D\u308B\u306E\u3067\u3001\u3053\u306E\u6A5F\u80FD\u306E\u307F\u3067\u3082\u5C0E\u5165\u306E\u4FA1\u5024\u304C\u3042\u308B\u3068\u601D\u3044\u307E\u3059\u3002\"})}),fonts:[\"GF;Noto Sans JP-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Admina\u3092\u5C0E\u5165\u3059\u308B\u3068\u3001\u540C\u3058UI\u3001\u540C\u3058\u30A2\u30AF\u30BB\u30B9\u306E\u4ED5\u65B9\u3067\u3001\u300C\u4F55\u306E\u30A2\u30AB\u30A6\u30F3\u30C8\u5951\u7D04\u3055\u308C\u3066\u3044\u308B\u304B\u300D\u300C\u30A2\u30AB\u30A6\u30F3\u30C8\u304C\u3082\u3046\u4F11\u7720\u72B6\u614B\u306B\u306A\u3063\u3066\u308B\u304B\u300D\u300C\u9000\u8077\u8005\u30A2\u30AB\u30A6\u30F3\u30C8\u304C\u6B8B\u3063\u3066\u3044\u306A\u3044\u304B\u300D\u306A\u3069\u3092\u898B\u308B\u3053\u3068\u304C\u3067\u304D\u307E\u3059\u3002\u307E\u305F\u3001\u8AB0\u306E\u30A2\u30AB\u30A6\u30F3\u30C8\u304C\u7BA1\u7406\u8005\u306B\u306A\u3063\u3066\u308B\u306E\u304B\u3082\u4E00\u76EE\u3067\u78BA\u8A8D\u3059\u308B\u3053\u3068\u304C\u3067\u304D\u308B\u306E\u3067\u3001\u3053\u306E\u6A5F\u80FD\u306E\u307F\u3067\u3082\u5C0E\u5165\u306E\u4FA1\u5024\u304C\u3042\u308B\u3068\u601D\u3044\u307E\u3059\u3002\"})}),className:\"framer-1cz1vcv\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fen2zs hidden-r1e9az\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"Logo_Talent+.png\",fit:\"fit\",intrinsicHeight:307,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7073+30+621+10+638.5+20+0+0+0+0+0),pixelHeight:307,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9MPYufopIv3sDms0Uk8DwYTTLoo.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo_Talent+.png\",fit:\"fit\",intrinsicHeight:307,intrinsicWidth:512,pixelHeight:307,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9MPYufopIv3sDms0Uk8DwYTTLoo.webp\"},className:\"framer-da7gu3\"})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f96tfn\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yhuCZDUnt\"},implicitPathVariables:undefined},{href:{webPageId:\"yhuCZDUnt\"},implicitPathVariables:undefined},{href:{webPageId:\"yhuCZDUnt\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+0+7073+30+1593+20+0},yoWcz2rKb:{y:(componentViewport?.y||0)+50+5965.5455+30+1587.6+20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ez5atl-container\",nodeId:\"fRtKBNJhG\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{gTJRdXSEn:resolvedLinks6[2]},yoWcz2rKb:{gTJRdXSEn:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(AIBtnWaitinglistUS,{gTJRdXSEn:resolvedLinks6[0],height:\"100%\",id:\"fRtKBNJhG\",layoutId:\"fRtKBNJhG\",Nl5LoIyur:\"\u30C8\u30E9\u30A4\u30A2\u30EB\u7533\u3057\u8FBC\u307F\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PXYw4wCU_\"},implicitPathVariables:undefined},{href:{webPageId:\"PXYw4wCU_\"},implicitPathVariables:undefined},{href:{webPageId:\"PXYw4wCU_\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+0+7073+30+1593+20+74},yoWcz2rKb:{y:(componentViewport?.y||0)+50+5965.5455+30+1587.6+20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3cdadc-container\",nodeId:\"sYc3oeyEX\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{gTJRdXSEn:resolvedLinks7[2]},yoWcz2rKb:{gTJRdXSEn:resolvedLinks7[1]}},children:/*#__PURE__*/_jsx(AIBtnWaitinglistUS,{gTJRdXSEn:resolvedLinks7[0],height:\"100%\",id:\"sYc3oeyEX\",layoutId:\"sYc3oeyEX\",Nl5LoIyur:\"\u3059\u3079\u3066\u306E\u4E8B\u4F8B\u3092\u898B\u308B\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rjxr28\",\"data-framer-name\":\"\u30B5\u30FC\u30D3\u30B9\u9023\u643A\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wzzb8q\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTYwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"300\u4EE5\u4E0A\u306ESaaS\u3092\u4E00\u5143\u7BA1\u7406\"})}),fonts:[\"GF;Noto Sans JP-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1xf6emq\",\"data-styles-preset\":\"WQQwIyMi_\",children:\"300\u4EE5\u4E0A\u306ESaaS\u3092\u4E00\u5143\u7BA1\u7406\"})}),className:\"framer-1q8a26w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1txqtih\",\"data-framer-name\":\"\u30DE\u30B9\u30BF\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n3sb3w\",\"data-framer-name\":\"\u5F93\u696D\u54E1\u30DE\u30B9\u30BF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"\u5F93\u696D\u54E1\u30DE\u30B9\u30BF\u30FC\"})}),className:\"framer-1bbwbj6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sg4sf6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:124,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8894+30+48.6+17.2+10+38.6+31.5),pixelHeight:124,pixelWidth:124,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sRiyzhvhzTMwtUJw6MOgwo6LCMk.png\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:124,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+7669.5455+30+60+17.2+10+38.6+26.5),pixelHeight:124,pixelWidth:124,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sRiyzhvhzTMwtUJw6MOgwo6LCMk.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:124,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+6997.5455+30+60+17.2+10+38.6+26.5),pixelHeight:124,pixelWidth:124,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sRiyzhvhzTMwtUJw6MOgwo6LCMk.png\"},className:\"framer-jjg5qx\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:124,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8894+30+48.6+17.2+10+38.6+31.5),pixelHeight:124,pixelWidth:124,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uoqLvoF1be0jYPSSD2FCCsft9c.png\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:124,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+7669.5455+30+60+17.2+10+38.6+26.5),pixelHeight:124,pixelWidth:124,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uoqLvoF1be0jYPSSD2FCCsft9c.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:124,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+6997.5455+30+60+17.2+10+38.6+26.5),pixelHeight:124,pixelWidth:124,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uoqLvoF1be0jYPSSD2FCCsft9c.png\"},className:\"framer-1uv06ps\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:124,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8894+30+48.6+17.2+10+38.6+31.5),pixelHeight:124,pixelWidth:124,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Ihy1X6J2wnEFKYCZ4FXmHRErWGM.png\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:124,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+7669.5455+30+60+17.2+10+38.6+26.5),pixelHeight:124,pixelWidth:124,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Ihy1X6J2wnEFKYCZ4FXmHRErWGM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:124,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+6997.5455+30+60+17.2+10+38.6+26.5),pixelHeight:124,pixelWidth:124,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Ihy1X6J2wnEFKYCZ4FXmHRErWGM.png\"},className:\"framer-n552g7\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:124,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8894+30+48.6+17.2+10+38.6+31.5),pixelHeight:124,pixelWidth:124,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/lWze18yGl7PUTy0C5BRWlZJ8Jw.png\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:124,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+7669.5455+30+60+17.2+10+38.6+26.5),pixelHeight:124,pixelWidth:124,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/lWze18yGl7PUTy0C5BRWlZJ8Jw.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:124,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+6997.5455+30+60+17.2+10+38.6+26.5),pixelHeight:124,pixelWidth:124,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/lWze18yGl7PUTy0C5BRWlZJ8Jw.png\"},className:\"framer-1luiu83\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r9tetz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:98,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8894+30+48.6+17.2+10+156.6+31.5),pixelHeight:98,pixelWidth:100,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/e0tH2s6jhzaP2UzqPXYob1vLBlI.svg\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:98,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+7669.5455+30+60+17.2+10+156.6+26.5),pixelHeight:98,pixelWidth:100,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/e0tH2s6jhzaP2UzqPXYob1vLBlI.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:98,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+6997.5455+30+60+17.2+10+156.6+26.5),pixelHeight:98,pixelWidth:100,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/e0tH2s6jhzaP2UzqPXYob1vLBlI.svg\"},className:\"framer-y5g4d5\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:130,intrinsicWidth:130,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8894+30+48.6+17.2+10+156.6+31.5),pixelHeight:130,pixelWidth:130,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NIibIjYanPFyrq4NjYrR3ySO0.svg\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:130,intrinsicWidth:130,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+7669.5455+30+60+17.2+10+156.6+26.5),pixelHeight:130,pixelWidth:130,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NIibIjYanPFyrq4NjYrR3ySO0.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:130,intrinsicWidth:130,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+6997.5455+30+60+17.2+10+156.6+26.5),pixelHeight:130,pixelWidth:130,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NIibIjYanPFyrq4NjYrR3ySO0.svg\"},className:\"framer-qbp354\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8894+30+48.6+17.2+10+156.6+31.5),pixelHeight:48,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/pOH8l90iJI2osHFs1iUZUepeA5w.svg\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+7669.5455+30+60+17.2+10+156.6+26.5),pixelHeight:48,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/pOH8l90iJI2osHFs1iUZUepeA5w.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+6997.5455+30+60+17.2+10+156.6+26.5),pixelHeight:48,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/pOH8l90iJI2osHFs1iUZUepeA5w.svg\"},className:\"framer-y6ijg9\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:124,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8894+30+48.6+17.2+10+156.6+31.5),pixelHeight:124,pixelWidth:124,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2frZI0OY8ct8bsZlksjHMcDfn0.png\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:124,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+7669.5455+30+60+17.2+10+156.6+26.5),pixelHeight:124,pixelWidth:124,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2frZI0OY8ct8bsZlksjHMcDfn0.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:124,intrinsicWidth:124,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+6997.5455+30+60+17.2+10+156.6+26.5),pixelHeight:124,pixelWidth:124,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2frZI0OY8ct8bsZlksjHMcDfn0.png\"},className:\"framer-1ld4bg5\"})})]})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-trqclr hidden-1e9jhki\",\"data-framer-name\":\"\u30B3\u30B9\u30C8\u30DE\u30B9\u30BF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"\u652F\u51FA\u30C7\u30FC\u30BF\u53D6\u308A\u8FBC\u307F\"})}),className:\"framer-1j97e8f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2mi3s4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yoWcz2rKb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+7669.5455+30+60+17.2+10+38.6+26.5),pixelHeight:48,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wc8URbDVbAH7yTmPMPHGwZQJcc.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+6997.5455+30+60+17.2+10+38.6+26.5),pixelHeight:48,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wc8URbDVbAH7yTmPMPHGwZQJcc.svg\"},className:\"framer-10q6qsx\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yoWcz2rKb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+7669.5455+30+60+17.2+10+38.6+26.5),pixelHeight:48,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JrE5tphthAKinPutzxEmaoJMr1A.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+6997.5455+30+60+17.2+10+38.6+26.5),pixelHeight:48,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JrE5tphthAKinPutzxEmaoJMr1A.svg\"},className:\"framer-mjbzet\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yoWcz2rKb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+7669.5455+30+60+17.2+10+38.6+26.5),pixelHeight:48,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O3BMM1epgc7QoQzsgEbvnYlvGA.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+6997.5455+30+60+17.2+10+38.6+26.5),pixelHeight:48,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O3BMM1epgc7QoQzsgEbvnYlvGA.svg\"},className:\"framer-1xs5atz\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yoWcz2rKb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+7669.5455+30+60+17.2+10+38.6+26.5),pixelHeight:48,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/euOy6ErkVC3jyCSe1CCPrHPZlY.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+6997.5455+30+60+17.2+10+38.6+26.5),pixelHeight:48,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/euOy6ErkVC3jyCSe1CCPrHPZlY.svg\"},className:\"framer-zhudhd\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k885i7\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yoWcz2rKb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:180,intrinsicWidth:180,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+7669.5455+30+60+17.2+10+156.6+26.5),pixelHeight:180,pixelWidth:180,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5RxUvdKCydP6W7AdTGq8Wk8BJY.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:180,intrinsicWidth:180,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+6997.5455+30+60+17.2+10+156.6+26.5),pixelHeight:180,pixelWidth:180,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5RxUvdKCydP6W7AdTGq8Wk8BJY.svg\"},className:\"framer-awcd0r\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yoWcz2rKb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:150,intrinsicWidth:150,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+7669.5455+30+60+17.2+10+156.6+26.5),pixelHeight:359,pixelWidth:359,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/06PdI1CrJYjnhrQghshbUoXOvc.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:150,intrinsicWidth:150,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+6997.5455+30+60+17.2+10+156.6+26.5),pixelHeight:359,pixelWidth:359,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/06PdI1CrJYjnhrQghshbUoXOvc.svg\"},className:\"framer-nllips\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yoWcz2rKb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:150,intrinsicWidth:150,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+7669.5455+30+60+17.2+10+156.6+26.5),pixelHeight:100,pixelWidth:100,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/iw82PVl1iYWex30iwXWrAKW8.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:150,intrinsicWidth:150,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+6997.5455+30+60+17.2+10+156.6+26.5),pixelHeight:100,pixelWidth:100,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/iw82PVl1iYWex30iwXWrAKW8.svg\"},className:\"framer-1pfgbga\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yoWcz2rKb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:180,intrinsicWidth:180,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+7669.5455+30+60+17.2+10+156.6+26.5),pixelHeight:180,pixelWidth:180,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IVn9v06Q7yJVcdwwv85UnTTFs.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:180,intrinsicWidth:180,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+6997.5455+30+60+17.2+10+156.6+26.5),pixelHeight:180,pixelWidth:180,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IVn9v06Q7yJVcdwwv85UnTTFs.svg\"},className:\"framer-1g30m97\"})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-66w2i6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jxccz7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"sj5sHfW9u\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",style:{rotate:90},children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"sj5sHfW9u\",isForwardsDirection:true,layoutId:\"sj5sHfW9u\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcType:\"URL\",srcUrl:\"https://assets10.lottiefiles.com/packages/lf20_duru2cbs.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed5()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-y66cty hidden-1e9jhki\"}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9erekk-container hidden-1e9jhki\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ekReABju6\",rendersWithMotion:true,scopeId:\"aFR96jTcg\",style:{rotate:90},children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"ekReABju6\",isForwardsDirection:true,layoutId:\"ekReABju6\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcType:\"URL\",srcUrl:\"https://assets10.lottiefiles.com/packages/lf20_duru2cbs.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cpvnm9\",\"data-framer-name\":\"Empolyee masters\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11fko47-container\",isModuleExternal:true,nodeId:\"yuwS1_Gg8\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"yuwS1_Gg8\",layoutId:\"yuwS1_Gg8\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:70,intrinsicWidth:580,pixelHeight:70,pixelWidth:580,sizes:\"580px\",src:\"https://framerusercontent.com/images/UmH3caz7SVr3xgf7EjdIgPcAGvI.png\",srcSet:\"https://framerusercontent.com/images/UmH3caz7SVr3xgf7EjdIgPcAGvI.png?scale-down-to=512 512w,https://framerusercontent.com/images/UmH3caz7SVr3xgf7EjdIgPcAGvI.png 580w\"},className:\"framer-g5h954\",\"data-framer-name\":\"CleanShot_2023_05_17_at_09_30_37\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:69,intrinsicWidth:580,pixelHeight:69,pixelWidth:580,sizes:\"580px\",src:\"https://framerusercontent.com/images/EB86Sveqgghd5hFrHaLkF3SdORU.png\",srcSet:\"https://framerusercontent.com/images/EB86Sveqgghd5hFrHaLkF3SdORU.png?scale-down-to=512 512w,https://framerusercontent.com/images/EB86Sveqgghd5hFrHaLkF3SdORU.png 580w\"},className:\"framer-1yvqmf4\",\"data-framer-name\":\"CleanShot_2023_05_17_at_09_30_56\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-okgjb4-container\",isModuleExternal:true,nodeId:\"Bco_YThGL\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"Bco_YThGL\",layoutId:\"Bco_YThGL\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:70,intrinsicWidth:580,pixelHeight:70,pixelWidth:580,sizes:\"580px\",src:\"https://framerusercontent.com/images/ilTzmxehtrtYHUiQxN37pJfKqv4.png\",srcSet:\"https://framerusercontent.com/images/ilTzmxehtrtYHUiQxN37pJfKqv4.png?scale-down-to=512 512w,https://framerusercontent.com/images/ilTzmxehtrtYHUiQxN37pJfKqv4.png 580w\"},className:\"framer-uml2g4\",\"data-framer-name\":\"CleanShot_2023_05_17_at_09_31_08\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:70,intrinsicWidth:570,pixelHeight:70,pixelWidth:570,sizes:\"570px\",src:\"https://framerusercontent.com/images/3Z64gpVcVBAa9yl8rIsd0m7gT4.png\",srcSet:\"https://framerusercontent.com/images/3Z64gpVcVBAa9yl8rIsd0m7gT4.png?scale-down-to=512 512w,https://framerusercontent.com/images/3Z64gpVcVBAa9yl8rIsd0m7gT4.png 570w\"},className:\"framer-1yice0z\",\"data-framer-name\":\"CleanShot_2023_05_17_at_09_31_26\"})],speed:90,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ockc1e-container\",isModuleExternal:true,nodeId:\"PPlCXDyPd\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"PPlCXDyPd\",layoutId:\"PPlCXDyPd\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:72,intrinsicWidth:580,pixelHeight:72,pixelWidth:580,sizes:\"580px\",src:\"https://framerusercontent.com/images/ATfigimZaN2aVI45Kn3t6qjztgU.png\",srcSet:\"https://framerusercontent.com/images/ATfigimZaN2aVI45Kn3t6qjztgU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ATfigimZaN2aVI45Kn3t6qjztgU.png 580w\"},className:\"framer-15eqtcm\",\"data-framer-name\":\"CleanShot_2023_05_17_at_09_31_38\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:70,intrinsicWidth:580,pixelHeight:70,pixelWidth:580,sizes:\"580px\",src:\"https://framerusercontent.com/images/UmH3caz7SVr3xgf7EjdIgPcAGvI.png\",srcSet:\"https://framerusercontent.com/images/UmH3caz7SVr3xgf7EjdIgPcAGvI.png?scale-down-to=512 512w,https://framerusercontent.com/images/UmH3caz7SVr3xgf7EjdIgPcAGvI.png 580w\"},className:\"framer-g5h954\",\"data-framer-name\":\"CleanShot_2023_05_17_at_09_30_37\"})],speed:80,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1maieo6\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Ph5559eSi\"},implicitPathVariables:undefined},{href:{webPageId:\"Ph5559eSi\"},implicitPathVariables:undefined},{href:{webPageId:\"Ph5559eSi\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+0+8894+30+767.6+10},yoWcz2rKb:{y:(componentViewport?.y||0)+50+7669.5455+30+779+10}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+50+6997.5455+30+779+10,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1osndze-container\",nodeId:\"vaFr_S5bn\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{gTJRdXSEn:resolvedLinks8[2]},yoWcz2rKb:{gTJRdXSEn:resolvedLinks8[1]}},children:/*#__PURE__*/_jsx(AIBtnWaitinglistUS,{gTJRdXSEn:resolvedLinks8[0],height:\"100%\",id:\"vaFr_S5bn\",layoutId:\"vaFr_S5bn\",Nl5LoIyur:\"\u3059\u3079\u3066\u306E\u9023\u643A\u3092\u898B\u308B\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8dg4u3\",\"data-framer-name\":\"SOC2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ujx7sy\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jez90o\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTYwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"29px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"\u5B89\u5FC3\u306E\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u74B0\u5883\"})}),fonts:[\"GF;Noto Sans JP-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1xf6emq\",\"data-styles-preset\":\"WQQwIyMi_\",children:\"\u5B89\u5FC3\u306E\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u74B0\u5883\"})}),className:\"framer-divblu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vqxton\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"SOC2\u5831\u544A\u66F8\u306E\u53D6\u5F97\u3092\u306F\u3058\u3081\u3001\u69D8\u3005\u306A\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u5BFE\u7B56\u3092\u5B9F\u65BD\u3057\u3066\u3044\u307E\u3059\u3002\"})}),fonts:[\"GF;Noto Sans JP-regular\"]},yoWcz2rKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"SOC2\u5831\u544A\u66F8\u306E\u53D6\u5F97\u3092\u306F\u3058\u3081\u3001\u69D8\u3005\u306A\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u5BFE\u7B56\u3092\u5B9F\u65BD\u3057\u3066\u3044\u307E\u3059\u3002\"})}),fonts:[\"GF;Noto Sans JP-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1upi1ui\",\"data-styles-preset\":\"Vkdknv1jR\",children:\"SOC2\u5831\u544A\u66F8\u306E\u53D6\u5F97\u3092\u306F\u3058\u3081\u3001\u69D8\u3005\u306A\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u5BFE\u7B56\u3092\u5B9F\u65BD\u3057\u3066\u3044\u307E\u3059\u3002\"})}),className:\"framer-mtj11c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xfmazr\",\"data-framer-name\":\"Features\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9quvcj\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rstr55\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:256,intrinsicWidth:256,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9795.6+30+95.8+10+0+0+0+0),pixelHeight:256,pixelWidth:256,src:\"https://framerusercontent.com/images/eHZATgHJocuS3RRG8Elg2U8wQ.png\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:256,intrinsicWidth:256,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+8582.5455+30+101.6+10+0+29.75+0),pixelHeight:256,pixelWidth:256,src:\"https://framerusercontent.com/images/eHZATgHJocuS3RRG8Elg2U8wQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:256,intrinsicWidth:256,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+7910.5455+30+110+10+0+29.75+0),pixelHeight:256,pixelWidth:256,src:\"https://framerusercontent.com/images/eHZATgHJocuS3RRG8Elg2U8wQ.png\"},className:\"framer-c5qze\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oi886p\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dtoobn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1xf6emq\",\"data-styles-preset\":\"WQQwIyMi_\",children:\"SOC2 Type2\u5831\u544A\u66F8\"})}),className:\"framer-9z7cbo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-svlord\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"\u30DE\u30CD\u30FC\u30D5\u30A9\u30EF\u30FC\u30C9Admina\u306B\u304A\u3044\u3066\u3001\u300CSOC2 Type2 \u5831\u544A\u66F8\u300D\u3092\u53D7\u9818\u3057\u3066\u3044\u307E\u3059\u3002\u7C73\u56FD\u516C\u8A8D\u4F1A\u8A08\u58EB\u5354\u4F1A\uFF08AICPA\uFF09\u304C\u5B9A\u3081\u305F\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306B\u95A2\u3059\u308B\u4FDD\u8A3C\u5831\u544A\u66F8\u3067\u3001\u72EC\u7ACB\u3057\u305F\u7B2C\u4E09\u8005\u76E3\u67FB\u4EBA\u306B\u3088\u308A\u8A55\u4FA1\u3055\u308C\u307E\u3059\u3002\"})}),className:\"framer-1hbpuqd\",fonts:[\"GF;Noto Sans JP-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m97uae\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-g6bv2w\",\"data-styles-preset\":\"SJKS8HL6U\",children:[\"Admina\u3092\u3054\u5229\u7528\u307E\u305F\u306F\u691C\u8A0E\u3055\u308C\u3066\u3044\u308B\u304A\u5BA2\u69D8\u306B\u958B\u793A\u3057\u3066\u304A\u308A\u307E\u3059\u3002\u958B\u793A\u306E\u3054\u5E0C\u671B\u306F\",/*#__PURE__*/_jsx(Link,{href:\"https://share.hsforms.com/1JVMNSNjEQsmbymOsnWo7jA55w4a?__hstc=125273173.a89f7177a19f60a3c6032fde0daceb55.1680659193216.1696397415430.1696930543908.111&__hssc=125273173.1.1696930543908&__hsfp=3963434540\",motionChild:true,nodeId:\"zXssuYEY3\",openInNewTab:false,relValues:[],scopeId:\"aFR96jTcg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"\u30D5\u30A9\u30FC\u30E0\"})}),\"\u3088\u308A\u304A\u554F\u3044\u5408\u308F\u305B\u304F\u3060\u3055\u3044\u3002\"]})}),className:\"framer-16qzzky\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6kc6a4\",\"data-framer-name\":\"Features Large\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ocu2ki\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bueo38\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTYwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"29px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"SaaS\u30FB\u30C7\u30D0\u30A4\u30B9\u306E\u7D71\u5408\u7BA1\u7406\u306A\u3089\u30DE\u30CD\u30FC\u30D5\u30A9\u30EF\u30FC\u30C9Admina\"})}),fonts:[\"GF;Noto Sans JP-600\"]},yoWcz2rKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTYwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"SaaS\u30FB\u30C7\u30D0\u30A4\u30B9\u306E\u7D71\u5408\u7BA1\u7406\u306A\u3089\u30DE\u30CD\u30FC\u30D5\u30A9\u30EF\u30FC\u30C9Admina\"})}),fonts:[\"GF;Noto Sans JP-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1xf6emq\",\"data-styles-preset\":\"WQQwIyMi_\",children:\"SaaS\u30FB\u30C7\u30D0\u30A4\u30B9\u306E\u7D71\u5408\u7BA1\u7406\u306A\u3089\u30DE\u30CD\u30FC\u30D5\u30A9\u30EF\u30FC\u30C9Admina\"})}),className:\"framer-12eyp0w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-89df6u\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:[\"\u30AF\u30E9\u30A6\u30C9\u30B5\u30FC\u30D3\u30B9\u306E\u7121\u99C4\u306A\u30B3\u30B9\u30C8\u3092\u524A\u6E1B\u3057\u3001\u68DA\u5378\u3057\u306A\u3069\u306E\u4F5C\u696D\u3092\u52B9\u7387\u5316\u3059\u308B\",/*#__PURE__*/_jsx(\"br\",{}),\"SaaS\u306E\u5BB6\u8A08\u7C3F\u7BA1\u7406\u30C4\u30FC\u30EB\u3067\u3059\u3002\"]})}),fonts:[\"GF;Noto Sans JP-regular\"]},yoWcz2rKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:[\"\u30AF\u30E9\u30A6\u30C9\u30B5\u30FC\u30D3\u30B9\u306E\u7121\u99C4\u306A\u30B3\u30B9\u30C8\u3092\u524A\u6E1B\u3057\u3001\u68DA\u5378\u3057\u306A\u3069\u306E\u4F5C\u696D\u3092\u52B9\u7387\u5316\u3059\u308B\",/*#__PURE__*/_jsx(\"br\",{}),\"SaaS\u306E\u5BB6\u8A08\u7C3F\u7BA1\u7406\u30C4\u30FC\u30EB\u3067\u3059\u3002\"]})}),fonts:[\"GF;Noto Sans JP-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1upi1ui\",\"data-styles-preset\":\"Vkdknv1jR\",style:{\"--framer-text-alignment\":\"center\"},children:[\"\u30AF\u30E9\u30A6\u30C9\u30B5\u30FC\u30D3\u30B9\u306E\u7121\u99C4\u306A\u30B3\u30B9\u30C8\u3092\u524A\u6E1B\u3057\u3001\u68DA\u5378\u3057\u306A\u3069\u306E\u4F5C\u696D\u3092\u52B9\u7387\u5316\u3059\u308B\",/*#__PURE__*/_jsx(\"br\",{}),\"SaaS\u306E\u5BB6\u8A08\u7C3F\u7BA1\u7406\u30C4\u30FC\u30EB\u3067\u3059\u3002\"]})}),className:\"framer-pvdkbr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l32wfd\",\"data-framer-name\":\"Admina\u304C\u3067\u304D\u308B\u3053\u3068\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"YnDh2zDlw\"},motionChild:true,nodeId:\"a2ndRr8t6\",openInNewTab:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1prjbgu framer-10x6apn\",\"data-framer-name\":\"\u8CC7\u6599\u8ACB\u6C42\",whileHover:animation4,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10340.9+10+59.16+20+-236.1481+10+0),pixelHeight:1080,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9 - 60px)`,src:\"https://framerusercontent.com/images/li9x0nhoSQP9jzz7C5n9PUf26I.png\",srcSet:\"https://framerusercontent.com/images/li9x0nhoSQP9jzz7C5n9PUf26I.png?scale-down-to=512 512w,https://framerusercontent.com/images/li9x0nhoSQP9jzz7C5n9PUf26I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/li9x0nhoSQP9jzz7C5n9PUf26I.png 1920w\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+9023.6455+30+108+31+20+43.1711),pixelHeight:1080,pixelWidth:1920,sizes:\"316px\",src:\"https://framerusercontent.com/images/li9x0nhoSQP9jzz7C5n9PUf26I.png\",srcSet:\"https://framerusercontent.com/images/li9x0nhoSQP9jzz7C5n9PUf26I.png?scale-down-to=512 512w,https://framerusercontent.com/images/li9x0nhoSQP9jzz7C5n9PUf26I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/li9x0nhoSQP9jzz7C5n9PUf26I.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+8360.0455+30+116.5+31+20+27.2),pixelHeight:1080,pixelWidth:1920,sizes:\"420px\",src:\"https://framerusercontent.com/images/li9x0nhoSQP9jzz7C5n9PUf26I.png\",srcSet:\"https://framerusercontent.com/images/li9x0nhoSQP9jzz7C5n9PUf26I.png?scale-down-to=512 512w,https://framerusercontent.com/images/li9x0nhoSQP9jzz7C5n9PUf26I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/li9x0nhoSQP9jzz7C5n9PUf26I.png 1920w\"},className:\"framer-56ezni\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1govuq1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-iy8jw4\",\"data-styles-preset\":\"NBmHIHQJ8\",style:{\"--framer-text-alignment\":\"center\"},children:\"Admina\u306E\u8CC7\u65993\u70B9\u30BB\u30C3\u30C8\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-iy8jw4\",\"data-styles-preset\":\"NBmHIHQJ8\",children:\"Admina\u306E\u8CC7\u65993\u70B9\u30BB\u30C3\u30C8\"})}),className:\"framer-smhxdd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+0+10340.9+10+59.16+20+-236.1481+10+83.9762+10+40.6},yoWcz2rKb:{y:(componentViewport?.y||0)+50+9023.6455+30+108+31+20+266.2289+0+40.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"200px\",y:(componentViewport?.y||0)+50+8360.0455+30+116.5+31+20+282.2+0+40.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-w1z152-container\",nodeId:\"hfWBNv7tX\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(FeatureButtun,{height:\"100%\",id:\"hfWBNv7tX\",layoutId:\"hfWBNv7tX\",PBBjVWY51:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yhuCZDUnt\"},motionChild:true,nodeId:\"zoi_q9iyP\",openInNewTab:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1i28br6 framer-10x6apn\",\"data-framer-name\":\"Device\u30D7\u30E9\u30F3\",whileHover:animation4,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:550,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10340.9+10+59.16+20+7.4281+10+0),pixelHeight:550,pixelWidth:800,sizes:\"230px\",src:\"https://framerusercontent.com/images/kJkCyH6DGATC4k5k82ypJjgpI.png\",srcSet:\"https://framerusercontent.com/images/kJkCyH6DGATC4k5k82ypJjgpI.png?scale-down-to=512 512w,https://framerusercontent.com/images/kJkCyH6DGATC4k5k82ypJjgpI.png 800w\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:550,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+9023.6455+30+108+31+20+43.2),pixelHeight:550,pixelWidth:800,sizes:\"290px\",src:\"https://framerusercontent.com/images/kJkCyH6DGATC4k5k82ypJjgpI.png\",srcSet:\"https://framerusercontent.com/images/kJkCyH6DGATC4k5k82ypJjgpI.png?scale-down-to=512 512w,https://framerusercontent.com/images/kJkCyH6DGATC4k5k82ypJjgpI.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:550,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+8360.0455+30+116.5+31+20+27.2),pixelHeight:550,pixelWidth:800,sizes:\"420px\",src:\"https://framerusercontent.com/images/kJkCyH6DGATC4k5k82ypJjgpI.png\",srcSet:\"https://framerusercontent.com/images/kJkCyH6DGATC4k5k82ypJjgpI.png?scale-down-to=512 512w,https://framerusercontent.com/images/kJkCyH6DGATC4k5k82ypJjgpI.png 800w\"},className:\"framer-12c6jhc\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uc416d\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-iy8jw4\",\"data-styles-preset\":\"NBmHIHQJ8\",children:\"1\u5206\u3067\u30AB\u30F3\u30BF\u30F3\u767B\u9332\"})}),className:\"framer-uhw9t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+0+10340.9+10+59.16+20+7.4281+10+147+10+40.6},yoWcz2rKb:{y:(componentViewport?.y||0)+50+9023.6455+30+108+31+20+266.2+0+40.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"200px\",y:(componentViewport?.y||0)+50+8360.0455+30+116.5+31+20+282.2+0+40.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hjq4jw-container\",nodeId:\"IZlRoT48n\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(FeatureButtun,{height:\"100%\",id:\"IZlRoT48n\",layoutId:\"IZlRoT48n\",PBBjVWY51:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-diab4o\",\"data-framer-name\":\"\u8CC7\u6599\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1xf6emq\",\"data-styles-preset\":\"WQQwIyMi_\",children:\"\u304A\u3059\u3059\u3081\u306E\u30B5\u30FC\u30D3\u30B9\u8CC7\u6599\"})}),className:\"framer-10legnk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"main\",{className:\"framer-284c9\",\"data-framer-name\":\"\u4E8B\u4F8B\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{query:{from:{alias:\"pkvEeQpx9\",data:DocsJP,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"pkvEeQpx9\",name:\"MYs0kTrFJ\",type:\"Identifier\"},{collection:\"pkvEeQpx9\",name:\"NOHGgWDbj\",type:\"Identifier\"},{collection:\"pkvEeQpx9\",name:\"S6VDQu0SG\",type:\"Identifier\"},{collection:\"pkvEeQpx9\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"pkvEeQpx9\",name:\"rqAex6Ryq\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:false},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"pkvEeQpx9\",name:\"F6vXF3k77\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"EOl3B6fc_\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}},yoWcz2rKb:{query:{from:{alias:\"pkvEeQpx9\",data:DocsJP,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"pkvEeQpx9\",name:\"MYs0kTrFJ\",type:\"Identifier\"},{collection:\"pkvEeQpx9\",name:\"NOHGgWDbj\",type:\"Identifier\"},{collection:\"pkvEeQpx9\",name:\"S6VDQu0SG\",type:\"Identifier\"},{collection:\"pkvEeQpx9\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"pkvEeQpx9\",name:\"rqAex6Ryq\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:false},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"pkvEeQpx9\",name:\"F6vXF3k77\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"EOl3B6fc_\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData1,{query:{from:{alias:\"pkvEeQpx9\",data:DocsJP,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"pkvEeQpx9\",name:\"MYs0kTrFJ\",type:\"Identifier\"},{collection:\"pkvEeQpx9\",name:\"NOHGgWDbj\",type:\"Identifier\"},{collection:\"pkvEeQpx9\",name:\"S6VDQu0SG\",type:\"Identifier\"},{collection:\"pkvEeQpx9\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"pkvEeQpx9\",name:\"rqAex6Ryq\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:false},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"pkvEeQpx9\",name:\"F6vXF3k77\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"EOl3B6fc_\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idpkvEeQpx9,MYs0kTrFJ:MYs0kTrFJpkvEeQpx9,NOHGgWDbj:NOHGgWDbjpkvEeQpx9,S6VDQu0SG:S6VDQu0SGpkvEeQpx9},index1)=>{MYs0kTrFJpkvEeQpx9??=\"\";S6VDQu0SGpkvEeQpx9??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`pkvEeQpx9-${idpkvEeQpx9}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{MYs0kTrFJ:MYs0kTrFJpkvEeQpx9},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{MYs0kTrFJ:MYs0kTrFJpkvEeQpx9},webPageId:\"aZt3oGzvl\"},motionChild:true,nodeId:\"btbxdfjEb\",openInNewTab:true,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-m2w0ui framer-10x6apn\",\"data-framer-name\":\"Card\",whileHover:animation7,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10459.5+30+65+20+0+0+0),sizes:`max(max((${componentViewport?.width||\"100vw\"} - 40px) * 0.9, 200px), 100px)`,...toResponsiveImage(NOHGgWDbjpkvEeQpx9)}},yoWcz2rKb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+9678.6455+30+65+20+0+0+0),sizes:`max(max((${componentViewport?.width||\"100vw\"} * 0.8 - 40px) / 2, 200px), 100px)`,...toResponsiveImage(NOHGgWDbjpkvEeQpx9)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+9015.0455+30+65+20+0+0+0),sizes:\"306.6667px\",...toResponsiveImage(NOHGgWDbjpkvEeQpx9)},className:\"framer-yecd90\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rxw6wj\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTMwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"#000\"},children:\"Content\"})}),fonts:[\"GF;Noto Sans JP-300\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"5\u5206\u3067\u308F\u304B\u308BAdmina Device\u5009\u5EAB\u30D7\u30E9\u30F3\"})}),className:\"framer-11psdpx\",fonts:[\"GF;Noto Sans JP-regular\"],text:S6VDQu0SGpkvEeQpx9,verticalAlignment:\"center\",withExternalLayout:true})})})]})})})},idpkvEeQpx9);})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v6nsn6\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zzuwZGZWd\"},implicitPathVariables:undefined},{href:{webPageId:\"zzuwZGZWd\"},implicitPathVariables:undefined},{href:{webPageId:\"zzuwZGZWd\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+0+10459.5+30+1064+10},yoWcz2rKb:{y:(componentViewport?.y||0)+50+9678.6455+30+1064+10}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+50+9015.0455+30+1064+10,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g4xxtw-container\",nodeId:\"TWe3PSe3r\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{gTJRdXSEn:resolvedLinks9[2]},yoWcz2rKb:{gTJRdXSEn:resolvedLinks9[1]}},children:/*#__PURE__*/_jsx(AIBtnWaitinglistUS,{gTJRdXSEn:resolvedLinks9[0],height:\"100%\",id:\"TWe3PSe3r\",layoutId:\"TWe3PSe3r\",Nl5LoIyur:\"\u4ED6\u306E\u8CC7\u6599\u3092\u898B\u308B\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5tfdwn\",\"data-framer-name\":\"\u30B3\u30DF\u30E5\u30CB\u30C6\u30A3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wz4m3q\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTYwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"\u60C5\u30B7\u30B9\u5411\u3051\u30B3\u30DF\u30E5\u30CB\u30C6\u30A3\"})}),fonts:[\"GF;Noto Sans JP-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1xf6emq\",\"data-styles-preset\":\"WQQwIyMi_\",children:\"\u60C5\u30B7\u30B9\u5411\u3051\u30B3\u30DF\u30E5\u30CB\u30C6\u30A3\"})}),className:\"framer-149hpf7\",\"data-framer-name\":\"\u60C5\u30B7\u30B9\u5411\u3051\u30B3\u30DF\u30E5\u30CB\u30C6\u30A3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bqjjuy\",\"data-framer-name\":\"\u30B3\u30DF\u30E5\u30CB\u30C6\u30A3\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1617xr0\",\"data-framer-name\":\"\u30B3\u30DF\u30E5\u30CB\u30C6\u30A3\",whileHover:animation4,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17s9mnb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11657.5+10+17.5+10+68.6119+10+0+0),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/olLiHHXPnyzZzhOq9MD7pUXSo.png\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+10876.6455+30+22.5+53.4711+20+0),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/olLiHHXPnyzZzhOq9MD7pUXSo.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+10213.0455+30+22.5+57+20+0),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/olLiHHXPnyzZzhOq9MD7pUXSo.png\"},className:\"framer-27gfut\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zgkoz6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5fzgz1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"17px\"},children:\"\u3046\u3061\u306E\u60C5\u30B7\u30B9 \u30B3\u30DF\u30E5\u30CB\u30C6\u30A3\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"17px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"17px\"},children:\"\u3069\u306A\u305F\u3067\u3082\u53C2\u52A0\u3044\u305F\u3060\u3051\u307E\u3059\"})]})}),fonts:[\"GF;Noto Sans JP-regular\"]},yoWcz2rKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:[\"\u3046\u3061\u306E\u60C5\u30B7\u30B9 \u30B3\u30DF\u30E5\u30CB\u30C6\u30A3\",/*#__PURE__*/_jsx(\"br\",{}),\"\u3069\u306A\u305F\u3067\u3082\u53C2\u52A0\u3044\u305F\u3060\u3051\u307E\u3059\"]})}),fonts:[\"GF;Noto Sans JP-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1upi1ui\",\"data-styles-preset\":\"Vkdknv1jR\",style:{\"--framer-text-alignment\":\"center\"},children:[\"\u3046\u3061\u306E\u60C5\u30B7\u30B9 \u30B3\u30DF\u30E5\u30CB\u30C6\u30A3\",/*#__PURE__*/_jsx(\"br\",{}),\"\u3069\u306A\u305F\u3067\u3082\u53C2\u52A0\u3044\u305F\u3060\u3051\u307E\u3059\"]})}),className:\"framer-18if4py\",\"data-framer-name\":\"\u60C5\u30B7\u30B9\u5411\u3051\u30B3\u30DF\u30E5\u30CB\u30C6\u30A3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ofxx30\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Y8zXocVZN\"},implicitPathVariables:undefined},{href:{webPageId:\"Y8zXocVZN\"},implicitPathVariables:undefined},{href:{webPageId:\"Y8zXocVZN\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{width:`max(min(${componentViewport?.width||\"100vw\"} * 0.9 - 20px, 1000px) - 40px, 1px)`,y:(componentViewport?.y||0)+0+11657.5+10+17.5+10+68.6119+10+74.9762+10+53.8+0},yoWcz2rKb:{width:`max(max((min(max((${componentViewport?.width||\"100vw\"} - 60px) * 0.9 - 22px, 1px), 1000px) - 70px) / 1.8, 1px) - 20px, 1px)`,y:(componentViewport?.y||0)+50+10876.6455+30+22.5+53.4711+46.2289+0+56.6+10}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+50+10213.0455+30+22.5+57+38.5+0+65+10,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1doq93a-container\",nodeId:\"G2KVeXlXi\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{gTJRdXSEn:resolvedLinks10[2],style:{width:\"100%\"}},yoWcz2rKb:{gTJRdXSEn:resolvedLinks10[1],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(AIBtnWaitinglistUS,{gTJRdXSEn:resolvedLinks10[0],height:\"100%\",id:\"G2KVeXlXi\",layoutId:\"G2KVeXlXi\",Nl5LoIyur:\"\u3046\u3061\u306E\u60C5\u30B7\u30B9\u306B\u53C2\u52A0\u3059\u308B\u2192\",width:\"100%\"})})})})})})})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19ye79y\",\"data-framer-name\":\"\u30D6\u30ED\u30B0\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zx66ui\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1xf6emq\",\"data-styles-preset\":\"WQQwIyMi_\",children:\"\u30D6\u30ED\u30B0\"})}),className:\"framer-4vy83j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"main\",{className:\"framer-55zhuk\",\"data-framer-name\":\"blog\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yoWcz2rKb:{query:{from:{alias:\"syk9CfVsh\",data:BlogJP,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"syk9CfVsh\",name:\"VtmCQFJBf\",type:\"Identifier\"},{collection:\"syk9CfVsh\",name:\"SxU8ACQc2\",type:\"Identifier\"},{collection:\"syk9CfVsh\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData1,{query:{from:{alias:\"syk9CfVsh\",data:BlogJP,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"syk9CfVsh\",name:\"VtmCQFJBf\",type:\"Identifier\"},{collection:\"syk9CfVsh\",name:\"SxU8ACQc2\",type:\"Identifier\"},{collection:\"syk9CfVsh\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({id:idsyk9CfVsh,SxU8ACQc2:SxU8ACQc2syk9CfVsh,VtmCQFJBf:VtmCQFJBfsyk9CfVsh},index2)=>{VtmCQFJBfsyk9CfVsh??=\"\";SxU8ACQc2syk9CfVsh??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`syk9CfVsh-${idsyk9CfVsh}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{VtmCQFJBf:VtmCQFJBfsyk9CfVsh},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{VtmCQFJBf:VtmCQFJBfsyk9CfVsh},webPageId:\"o0TF_lKZ8\"},motionChild:true,nodeId:\"dd5LGVuET\",openInNewTab:false,scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-vk47b framer-10x6apn\",\"data-framer-name\":\"Card\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12057.5+10+65+20+480+0+0),pixelHeight:1030,pixelWidth:1920,sizes:\"330px\",src:\"https://framerusercontent.com/images/s7y7YKumyr3fKS8zapDfPpZtD8s.png\",srcSet:\"https://framerusercontent.com/images/s7y7YKumyr3fKS8zapDfPpZtD8s.png?scale-down-to=512 512w,https://framerusercontent.com/images/s7y7YKumyr3fKS8zapDfPpZtD8s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/s7y7YKumyr3fKS8zapDfPpZtD8s.png 1920w\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+11276.6455+30+65+20+0+0+0),pixelHeight:1030,pixelWidth:1920,sizes:\"330px\",src:\"https://framerusercontent.com/images/s7y7YKumyr3fKS8zapDfPpZtD8s.png\",srcSet:\"https://framerusercontent.com/images/s7y7YKumyr3fKS8zapDfPpZtD8s.png?scale-down-to=512 512w,https://framerusercontent.com/images/s7y7YKumyr3fKS8zapDfPpZtD8s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/s7y7YKumyr3fKS8zapDfPpZtD8s.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+10613.0455+30+65+20+0+0+0),pixelHeight:1030,pixelWidth:1920,sizes:\"330px\",src:\"https://framerusercontent.com/images/s7y7YKumyr3fKS8zapDfPpZtD8s.png\",srcSet:\"https://framerusercontent.com/images/s7y7YKumyr3fKS8zapDfPpZtD8s.png?scale-down-to=512 512w,https://framerusercontent.com/images/s7y7YKumyr3fKS8zapDfPpZtD8s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/s7y7YKumyr3fKS8zapDfPpZtD8s.png 1920w\"},className:\"framer-1h0b1tz\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hky7jn\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wboyli\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d332f2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3767731a-c734-42cb-95e6-969c23ede99c, rgb(51, 65, 85))\"},children:\"\u300C\u30C8\u30ED\u30A4\u306E\u6728\u99AC\u306B\u611F\u67D3\u3057\u307E\u3057\u305F\u300D\u3068\u3044\u3046\u8B66\u544A\u304C\u51FA\u305F\u5834\u5408\u306E\u5BFE\u51E6\u6CD5\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-wt7xz3\",\"data-styles-preset\":\"Mq1SEPaJJ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3767731a-c734-42cb-95e6-969c23ede99c, rgb(51, 65, 85))\"},children:\"\u300C\u30C8\u30ED\u30A4\u306E\u6728\u99AC\u306B\u611F\u67D3\u3057\u307E\u3057\u305F\u300D\u3068\u3044\u3046\u8B66\u544A\u304C\u51FA\u305F\u5834\u5408\u306E\u5BFE\u51E6\u6CD5\"})}),className:\"framer-1lsnblt\",fonts:[\"Inter\"],text:SxU8ACQc2syk9CfVsh,verticalAlignment:\"center\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tp6ldq\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t52fiw\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-wne6zy\",\"data-styles-preset\":\"DZ5nd0ofK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cb5fe9d4-4bc6-46d3-97c2-14a62b09f88d, rgb(255, 255, 255))\"},children:\"\u8A73\u3057\u304F\u898B\u308B\"})}),className:\"framer-906vjo\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qr50dw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12057.5+10+65+20+480+0+0+10+2.4+0+160+.1+0),pixelHeight:24,pixelWidth:24,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ljrc7mrX6WFf0W1LdshG3lbjhI.svg\"}},yoWcz2rKb:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+11276.6455+30+65+20+0+0+0+10+2.4+0+160+.1+0),pixelHeight:24,pixelWidth:24,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ljrc7mrX6WFf0W1LdshG3lbjhI.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+10613.0455+30+65+20+0+0+0+10+2.4+0+160+.1+0),pixelHeight:24,pixelWidth:24,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ljrc7mrX6WFf0W1LdshG3lbjhI.svg\"},className:\"framer-17f36qw\"})})})]})]})})})})})})},idsyk9CfVsh);})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11ef6hb\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"bww2_xvSB\"},implicitPathVariables:undefined},{href:{webPageId:\"bww2_xvSB\"},implicitPathVariables:undefined},{href:{webPageId:\"bww2_xvSB\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+0+12057.5+10+355+10},yoWcz2rKb:{y:(componentViewport?.y||0)+50+11276.6455+30+355+10}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+50+10613.0455+30+355+10,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dmou86-container\",nodeId:\"FNSgMYKkJ\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{gTJRdXSEn:resolvedLinks11[2]},yoWcz2rKb:{gTJRdXSEn:resolvedLinks11[1]}},children:/*#__PURE__*/_jsx(AIBtnWaitinglistUS,{gTJRdXSEn:resolvedLinks11[0],height:\"100%\",id:\"FNSgMYKkJ\",layoutId:\"FNSgMYKkJ\",Nl5LoIyur:\"\u4ED6\u306E\u8A18\u4E8B\u3092\u898B\u308B\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12uzq9e\",\"data-framer-name\":\"\u30D7\u30EC\u30B9\u30EA\u30EA\u30FC\u30B9\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rypdyz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1xf6emq\",\"data-styles-preset\":\"WQQwIyMi_\",style:{\"--framer-text-alignment\":\"center\"},children:\"\u30D7\u30EC\u30B9\u30EA\u30EA\u30FC\u30B9\"})}),className:\"framer-1l77n4w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kasg01\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v6cokz\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"rgb(115, 115, 115)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"YxS5uTEw3\"},motionChild:true,nodeId:\"VRWrEQEqh\",openInNewTab:false,relValues:[],scopeId:\"aFR96jTcg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"\u4E00\u89A7\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"rgb(115, 115, 115)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"YxS5uTEw3\"},motionChild:true,nodeId:\"VRWrEQEqh\",openInNewTab:false,relValues:[],scopeId:\"aFR96jTcg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"\u4E00\u89A7\"})})})}),className:\"framer-12hlyx8\",fonts:[\"GF;Noto Sans JP-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"main\",{className:\"framer-1fzo3ge\",\"data-framer-name\":\"\u4E8B\u4F8B\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yoWcz2rKb:{query:{from:{alias:\"mrZ0nB6ak\",data:NewsJP,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"mrZ0nB6ak\",name:\"zRJAVzAsr\",type:\"Identifier\"},{collection:\"mrZ0nB6ak\",name:\"EZ9i8TIt1\",type:\"Identifier\"},{collection:\"mrZ0nB6ak\",name:\"Dprdsq8Gn\",type:\"Identifier\"},{collection:\"mrZ0nB6ak\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData1,{query:{from:{alias:\"mrZ0nB6ak\",data:NewsJP,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"mrZ0nB6ak\",name:\"zRJAVzAsr\",type:\"Identifier\"},{collection:\"mrZ0nB6ak\",name:\"EZ9i8TIt1\",type:\"Identifier\"},{collection:\"mrZ0nB6ak\",name:\"Dprdsq8Gn\",type:\"Identifier\"},{collection:\"mrZ0nB6ak\",name:\"id\",type:\"Identifier\"}]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({Dprdsq8Gn:Dprdsq8GnmrZ0nB6ak,EZ9i8TIt1:EZ9i8TIt1mrZ0nB6ak,id:idmrZ0nB6ak,zRJAVzAsr:zRJAVzAsrmrZ0nB6ak},index3)=>{EZ9i8TIt1mrZ0nB6ak??=\"\";Dprdsq8GnmrZ0nB6ak??=\"\";const textContent1=toDateString(zRJAVzAsrmrZ0nB6ak,activeLocaleCode);const textContent2=toDateString1(zRJAVzAsrmrZ0nB6ak,activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`mrZ0nB6ak-${idmrZ0nB6ak}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{EZ9i8TIt1:EZ9i8TIt1mrZ0nB6ak},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-n8kkmn\",\"data-border\":true,\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18g1vlr\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTMwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"6/25/24\"})}),fonts:[\"GF;Noto Sans JP-300\"],text:textContent2}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-wt7xz3\",\"data-styles-preset\":\"Mq1SEPaJJ\",children:\"SaaS\u306E\u30B9\u30D7\u30EC\u30C3\u30C9\u30B7\u30FC\u30C8\u7BA1\u7406\u304B\u3089\u8131\u5374\u3078\uFF01 \u4E71\u7ACB\u3059\u308BSaaS\u3092Admina\u3067\u4E00\u5143\u5316\"})}),className:\"framer-zmzk0e\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{EZ9i8TIt1:EZ9i8TIt1mrZ0nB6ak},webPageId:\"OmLaMQlzP\"},motionChild:true,nodeId:\"OBkUDpRka\",openInNewTab:false,relValues:[],scopeId:\"aFR96jTcg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"\u300E\u30DE\u30CD\u30FC\u30D5\u30A9\u30EF\u30FC\u30C9 Admina\u300F\u3001\u65B0\u6A5F\u80FD\u300CMDM\u9023\u643A with LANSCOPE\u300D\u306E\u63D0\u4F9B\u3092\u958B\u59CB\"})})})}),fonts:[\"GF;Noto Sans JP-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-wt7xz3\",\"data-styles-preset\":\"Mq1SEPaJJ\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{EZ9i8TIt1:EZ9i8TIt1mrZ0nB6ak},webPageId:\"OmLaMQlzP\"},motionChild:true,nodeId:\"OBkUDpRka\",openInNewTab:false,relValues:[],scopeId:\"aFR96jTcg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Title\"})})})}),className:\"framer-bva4xy\",fonts:[\"Inter\"],text:Dprdsq8GnmrZ0nB6ak,verticalAlignment:\"top\",withExternalLayout:true})})]})})})},idmrZ0nB6ak);})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{y:(componentViewport?.y||0)+0+12847.4},yoWcz2rKb:{y:(componentViewport?.y||0)+50+12251.2455}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:806,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+50+11587.6455,children:/*#__PURE__*/_jsx(Container,{className:\"framer-iwpati-container\",nodeId:\"MGlc21vO7\",scopeId:\"aFR96jTcg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E_dO8UpHS:{variant:\"Hyk1PfBHV\"},yoWcz2rKb:{variant:\"TJChBOVcb\"}},children:/*#__PURE__*/_jsx(FooterJP,{height:\"100%\",id:\"MGlc21vO7\",layoutId:\"MGlc21vO7\",style:{width:\"100%\"},variant:\"iSuYx4yRb\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uE5Xr.framer-10x6apn, .framer-uE5Xr .framer-10x6apn { display: block; }\",\".framer-uE5Xr.framer-i3q8sy { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-uE5Xr .framer-1eliv9t-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 5; }\",\".framer-uE5Xr .framer-1jsptx { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 500px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-uE5Xr .framer-1dcqc2o { flex: none; gap: 10px; height: 575px; left: -1px; overflow: hidden; position: absolute; right: -1px; top: -80px; }\",\".framer-uE5Xr .framer-1fdfcx2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-bcystr { align-content: center; align-items: center; display: flex; flex: 0.6 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 650px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-e3j5nb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2000px; padding: 30px 0px 30px 20px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-4uuzvb, .framer-uE5Xr .framer-1al2mh4, .framer-uE5Xr .framer-1qx8ttn, .framer-uE5Xr .framer-1otx0p6, .framer-uE5Xr .framer-hp9m8j, .framer-uE5Xr .framer-o05gk7, .framer-uE5Xr .framer-12syehe, .framer-uE5Xr .framer-16hvjgc, .framer-uE5Xr .framer-lbtia7, .framer-uE5Xr .framer-1yzk1ho, .framer-uE5Xr .framer-blmrym, .framer-uE5Xr .framer-s9ejsl, .framer-uE5Xr .framer-8662bv, .framer-uE5Xr .framer-mlgogy, .framer-uE5Xr .framer-10z8yci, .framer-uE5Xr .framer-160r6jb, .framer-uE5Xr .framer-v5ws8v, .framer-uE5Xr .framer-ve8f90, .framer-uE5Xr .framer-1wzzb8q, .framer-uE5Xr .framer-jez90o, .framer-uE5Xr .framer-vqxton, .framer-uE5Xr .framer-1dtoobn, .framer-uE5Xr .framer-svlord, .framer-uE5Xr .framer-m97uae, .framer-uE5Xr .framer-bueo38, .framer-uE5Xr .framer-89df6u, .framer-uE5Xr .framer-wz4m3q, .framer-uE5Xr .framer-zx66ui { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-jyxrx5, .framer-uE5Xr .framer-1ulnumj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-uE5Xr .framer-1qatigo { flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-uE5Xr .framer-9alep6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 20px; position: relative; width: min-content; }\",\".framer-uE5Xr .framer-tfmuzi-container, .framer-uE5Xr .framer-1vj9y33-container, .framer-uE5Xr .framer-stbhk3-container, .framer-uE5Xr .framer-1xb2x34-container, .framer-uE5Xr .framer-1y11g5c-container, .framer-uE5Xr .framer-n496dg-container, .framer-uE5Xr .framer-zgy534-container, .framer-uE5Xr .framer-1ez5atl-container, .framer-uE5Xr .framer-3cdadc-container, .framer-uE5Xr .framer-1osndze-container, .framer-uE5Xr .framer-g4xxtw-container, .framer-uE5Xr .framer-1doq93a-container, .framer-uE5Xr .framer-dmou86-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-uE5Xr .framer-1kd3wcp { align-content: center; align-items: center; display: flex; flex: 0.4 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-1qu1pd { align-content: center; align-items: center; aspect-ratio: 1.0186125211505923 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 388px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-7y37ut { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-uE5Xr .framer-uv2eoi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 80%; }\",\".framer-uE5Xr .framer-2yswo7, .framer-uE5Xr .framer-yx7xx8, .framer-uE5Xr .framer-kxngyp { align-content: center; align-items: center; display: flex; flex: 0.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-18laats, .framer-uE5Xr .framer-rjt9yv, .framer-uE5Xr .framer-1rf0t2n { flex: none; height: 120px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uE5Xr .framer-1qpwf7b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 70%; }\",\".framer-uE5Xr .framer-ct69u0, .framer-uE5Xr .framer-mbxm1l, .framer-uE5Xr .framer-cdrtwr, .framer-uE5Xr .framer-1hi1t79, .framer-uE5Xr .framer-8diev, .framer-uE5Xr .framer-1l2m5g1, .framer-uE5Xr .framer-bxkrq4, .framer-uE5Xr .framer-1fw6dmt, .framer-uE5Xr .framer-uaxodn, .framer-uE5Xr .framer-1hbpuqd, .framer-uE5Xr .framer-16qzzky { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-uE5Xr .framer-vjnrot { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-uE5Xr .framer-1jt86ig-container, .framer-uE5Xr .framer-1fejvxv-container { flex: none; height: 100px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-znmg6v, .framer-uE5Xr .framer-1w10xn2, .framer-uE5Xr .framer-c3kc6o, .framer-uE5Xr .framer-1kas8d7 { aspect-ratio: 10 / 1; height: var(--framer-aspect-ratio-supported, 100px); overflow: visible; position: relative; width: 1000px; }\",\".framer-uE5Xr .framer-1oy3rw5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-1lmflk4-container { flex: none; height: 450px; position: relative; width: 810px; }\",\".framer-uE5Xr .framer-17g0dgv, .framer-uE5Xr .framer-1tn6mif, .framer-uE5Xr .framer-u7vun5, .framer-uE5Xr .framer-1cu1v8v, .framer-uE5Xr .framer-jjasm6 { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; background: linear-gradient(154deg, #ffffff -38.54%, rgb(248, 248, 252) 99.56%); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.25); height: 405px; overflow: visible; position: relative; width: 280px; z-index: 1; }\",\".framer-uE5Xr .framer-w2uat7, .framer-uE5Xr .framer-10w755q, .framer-uE5Xr .framer-1xbuikx, .framer-uE5Xr .framer-12hr47h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 90%; justify-content: center; left: 17px; overflow: hidden; padding: 0px; position: absolute; right: 22px; top: calc(49.876543209876566% - 90.12345679012346% / 2); }\",\".framer-uE5Xr .framer-utyaa5, .framer-uE5Xr .framer-15zxnip, .framer-uE5Xr .framer-ghr1yl, .framer-uE5Xr .framer-1gh3x1s, .framer-uE5Xr .framer-1tc796r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-1mlus8e, .framer-uE5Xr .framer-1j2zz7g, .framer-uE5Xr .framer-1jae4rc, .framer-uE5Xr .framer-1dt5ow5, .framer-uE5Xr .framer-hhqjcm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 212px; }\",\".framer-uE5Xr .framer-1c3hwec, .framer-uE5Xr .framer-113951b, .framer-uE5Xr .framer-1jlifox, .framer-uE5Xr .framer-12pruge, .framer-uE5Xr .framer-12scgj3, .framer-uE5Xr .framer-ng6fma, .framer-uE5Xr .framer-9ghkdw, .framer-uE5Xr .framer-wfr8eg, .framer-uE5Xr .framer-h4twyg, .framer-uE5Xr .framer-1ecxy0z, .framer-uE5Xr .framer-1umk2gr, .framer-uE5Xr .framer-a1lw7w, .framer-uE5Xr .framer-w4l7vg, .framer-uE5Xr .framer-45r26c, .framer-uE5Xr .framer-1flworm, .framer-uE5Xr .framer-11uz07e, .framer-uE5Xr .framer-1ffudrb, .framer-uE5Xr .framer-1m1s6gt, .framer-uE5Xr .framer-1nzxvjo, .framer-uE5Xr .framer-8wz8fp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-uE5Xr .framer-1dwpbc0-container, .framer-uE5Xr .framer-6v679n-container, .framer-uE5Xr .framer-zjts7i-container, .framer-uE5Xr .framer-23kgit-container, .framer-uE5Xr .framer-1gjpsic-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-uE5Xr .framer-1g9ia3o, .framer-uE5Xr .framer-xsl6e3, .framer-uE5Xr .framer-lgvpfa, .framer-uE5Xr .framer-4r6y04, .framer-uE5Xr .framer-1p2qaw9, .framer-uE5Xr .framer-11ed6he, .framer-uE5Xr .framer-mk0020, .framer-uE5Xr .framer-1xm87fw, .framer-uE5Xr .framer-1snc30z, .framer-uE5Xr .framer-1esufsn, .framer-uE5Xr .framer-1b13i9b, .framer-uE5Xr .framer-1wrszdg, .framer-uE5Xr .framer-o5ta1k, .framer-uE5Xr .framer-1yry3nw, .framer-uE5Xr .framer-10xenih, .framer-uE5Xr .framer-1fv76tg, .framer-uE5Xr .framer-1ws24zd, .framer-uE5Xr .framer-1jipdh0, .framer-uE5Xr .framer-1i4oyzk, .framer-uE5Xr .framer-15lck7 { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-1nyc2b1, .framer-uE5Xr .framer-ut0u7c, .framer-uE5Xr .framer-8enyys { -webkit-user-select: none; flex: none; height: auto; left: 0px; pointer-events: auto; position: absolute; top: 15px; user-select: none; white-space: pre-wrap; width: 161px; word-break: break-word; word-wrap: break-word; }\",\".framer-uE5Xr .framer-7e52sr, .framer-uE5Xr .framer-16fr9dc, .framer-uE5Xr .framer-14ghsvm, .framer-uE5Xr .framer-5t8req, .framer-uE5Xr .framer-1vmlzwj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-uE5Xr .framer-1a67az0, .framer-uE5Xr .framer-1ofgi7m, .framer-uE5Xr .framer-cr48gn, .framer-uE5Xr .framer-15ak0bn, .framer-uE5Xr .framer-1b3hal0 { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 228px; word-break: break-word; word-wrap: break-word; }\",\".framer-uE5Xr .framer-ohfofa, .framer-uE5Xr .framer-1jbfwwm, .framer-uE5Xr .framer-3awiis, .framer-uE5Xr .framer-cq6y5t, .framer-uE5Xr .framer-1b4y3s1, .framer-uE5Xr .framer-1iyp7iw, .framer-uE5Xr .framer-z8jv7i, .framer-uE5Xr .framer-1qpks2c, .framer-uE5Xr .framer-18oaakt, .framer-uE5Xr .framer-uu6gjn, .framer-uE5Xr .framer-1se4k91, .framer-uE5Xr .framer-q8m5zf, .framer-uE5Xr .framer-17g7ihc, .framer-uE5Xr .framer-1l7rbd0, .framer-uE5Xr .framer-y9oo0g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 42px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 218px; }\",\".framer-uE5Xr .framer-eueebw-container, .framer-uE5Xr .framer-iugodr-container, .framer-uE5Xr .framer-di0bbh-container, .framer-uE5Xr .framer-143vv8q-container, .framer-uE5Xr .framer-w6k32q-container, .framer-uE5Xr .framer-npfxea-container, .framer-uE5Xr .framer-xc4e79-container, .framer-uE5Xr .framer-s2cjve-container, .framer-uE5Xr .framer-1hy6s5i-container, .framer-uE5Xr .framer-rtablp-container { flex: none; height: 25px; position: relative; width: 25px; }\",\".framer-uE5Xr .framer-gsfvcy, .framer-uE5Xr .framer-1k5elqc, .framer-uE5Xr .framer-1h8y091, .framer-uE5Xr .framer-1eif2dq, .framer-uE5Xr .framer-1mqqpdu, .framer-uE5Xr .framer-djm9u5, .framer-uE5Xr .framer-1hcz4pg, .framer-uE5Xr .framer-1nj5hbr, .framer-uE5Xr .framer-xv24w3, .framer-uE5Xr .framer-sfrrzs, .framer-uE5Xr .framer-7y2vxb, .framer-uE5Xr .framer-lbuz9l, .framer-uE5Xr .framer-4jsid3, .framer-uE5Xr .framer-1no9u0r, .framer-uE5Xr .framer-s2suye { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 9px; position: absolute; top: 50%; transform: translateY(-50%); white-space: pre-wrap; width: 172px; word-break: break-word; word-wrap: break-word; }\",\".framer-uE5Xr .framer-1g2mhtr-container, .framer-uE5Xr .framer-1rf8rpv-container, .framer-uE5Xr .framer-1ft19bx-container, .framer-uE5Xr .framer-5e89p2-container, .framer-uE5Xr .framer-13wzysm-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 25px; }\",\".framer-uE5Xr .framer-f0wwhq, .framer-uE5Xr .framer-97d3fd, .framer-uE5Xr .framer-1phu9no, .framer-uE5Xr .framer-1s4tqzz, .framer-uE5Xr .framer-18dnsse { background: linear-gradient(89deg, #ff3884 -25.120000000000005%, rgb(255, 171, 46) 116.7%); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 52px; position: relative; text-decoration: none; width: 228px; }\",\".framer-uE5Xr .framer-1byn637, .framer-uE5Xr .framer-18snlm5, .framer-uE5Xr .framer-1luq17y, .framer-uE5Xr .framer-kk4oov, .framer-uE5Xr .framer-zaujly { -webkit-user-select: none; flex: none; height: auto; left: 50%; pointer-events: auto; position: absolute; top: 50%; transform: translate(-50%, -50%); user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-uE5Xr .framer-sut1kq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 90%; justify-content: center; left: 17px; overflow: hidden; padding: 0px; position: absolute; right: 23px; top: calc(49.876543209876566% - 90.12345679012346% / 2); }\",\".framer-uE5Xr .framer-1e6gk8p, .framer-uE5Xr .framer-170emdx { -webkit-user-select: none; flex: none; height: auto; left: 0px; pointer-events: auto; position: absolute; top: 15px; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-uE5Xr .framer-1r7l17p-container { flex: 1 0 0px; height: 704px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-1curxuz-container { flex: none; height: 450px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-1ebz6is, .framer-uE5Xr .framer-76efsc, .framer-uE5Xr .framer-vnal3o, .framer-uE5Xr .framer-huyhh4, .framer-uE5Xr .framer-zo62p7, .framer-uE5Xr .framer-7izl7o, .framer-uE5Xr .framer-og04dt, .framer-uE5Xr .framer-xm5d86, .framer-uE5Xr .framer-1jmw49d, .framer-uE5Xr .framer-nopzhc, .framer-uE5Xr .framer-xhix42, .framer-uE5Xr .framer-a0loge, .framer-uE5Xr .framer-emt8dk, .framer-uE5Xr .framer-1q8a26w, .framer-uE5Xr .framer-1bbwbj6, .framer-uE5Xr .framer-1j97e8f, .framer-uE5Xr .framer-divblu, .framer-uE5Xr .framer-mtj11c, .framer-uE5Xr .framer-9z7cbo, .framer-uE5Xr .framer-12eyp0w, .framer-uE5Xr .framer-pvdkbr, .framer-uE5Xr .framer-smhxdd, .framer-uE5Xr .framer-uhw9t, .framer-uE5Xr .framer-10legnk, .framer-uE5Xr .framer-149hpf7, .framer-uE5Xr .framer-18if4py, .framer-uE5Xr .framer-4vy83j, .framer-uE5Xr .framer-1l77n4w { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-uE5Xr .framer-16ysjhh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-rg5pc0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 10px; position: relative; width: 90%; }\",\".framer-uE5Xr .framer-mgqbh3 { align-content: center; align-items: center; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; box-shadow: 5px 5px 2.5px 0px rgba(0, 0, 0, 0.25); display: flex; flex: 0.5 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-uE5Xr .framer-1m2mymx-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-m09x4s { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: 0.4 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 5px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-uE5Xr .framer-y8aw0l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 58px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-1nsp17h { display: grid; flex: none; gap: 20px; grid-auto-rows: 200px; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, 200px); height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-epvv4c { align-content: center; align-items: center; align-self: start; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; box-shadow: 0.3010936508871964px 0.3010936508871964px 2.1290536231455155px -1.25px rgba(0, 0, 0, 0.18), 1.1442666516217286px 1.1442666516217286px 8.091187088473491px -2.5px rgba(0, 0, 0, 0.16), 5px 5px 35.35533905932738px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 210px; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uE5Xr .framer-yg28is, .framer-uE5Xr .framer-ls3zqj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-10lxn15, .framer-uE5Xr .framer-18b8l5i, .framer-uE5Xr .framer-xjlnc5, .framer-uE5Xr .framer-1liogiv { align-content: center; align-items: center; display: flex; flex: 0.5 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-1pzlg8m { aspect-ratio: 1.8387096774193548 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 90px); overflow: hidden; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-jqvafu, .framer-uE5Xr .framer-8fa9gq { align-content: center; align-items: center; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 21px 0px 21px 0px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-n18bx2-container, .framer-uE5Xr .framer-4esuxz-container, .framer-uE5Xr .framer-13letvq-container, .framer-uE5Xr .framer-1hzetx9-container, .framer-uE5Xr .framer-qf4hhp-container, .framer-uE5Xr .framer-14c1rfy-container, .framer-uE5Xr .framer-ohk34b-container, .framer-uE5Xr .framer-dp2o65-container, .framer-uE5Xr .framer-kfhv0y-container { flex: none; height: 32px; position: relative; width: auto; }\",\".framer-uE5Xr .framer-11k7mcl { align-content: center; align-items: center; align-self: start; background-color: #ffffff; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; box-shadow: 0.24087492070975713px 0.24087492070975713px 1.7032428985164123px -1.25px rgba(0, 0, 0, 0.18), 0.9154133212973828px 0.9154133212973828px 6.472949670778792px -2.5px rgba(0, 0, 0, 0.16), 4px 4px 28.284271247461902px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 210px; justify-content: center; justify-self: start; overflow: hidden; padding: 10px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uE5Xr .framer-x0o4tc, .framer-uE5Xr .framer-1nul04y, .framer-uE5Xr .framer-9hjdvt, .framer-uE5Xr .framer-1l1u8ee, .framer-uE5Xr .framer-2ybrz9, .framer-uE5Xr .framer-zgkoz6 { align-content: center; align-items: center; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-1jkh7us, .framer-uE5Xr .framer-h36069 { aspect-ratio: 1.874015748031496 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 88px); overflow: hidden; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-l3u90w, .framer-uE5Xr .framer-1gsvd41 { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-1vcwfax, .framer-uE5Xr .framer-1ekguvy, .framer-uE5Xr .framer-u9phz6, .framer-uE5Xr .framer-jbhzj0, .framer-uE5Xr .framer-3qtoku, .framer-uE5Xr .framer-1x9thm5, .framer-uE5Xr .framer-9oyrrw, .framer-uE5Xr .framer-1y1mad7, .framer-uE5Xr .framer-17cv1qr, .framer-uE5Xr .framer-7fk9cm, .framer-uE5Xr .framer-69qzu8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-uE5Xr .framer-t43tql, .framer-uE5Xr .framer-1hgbv, .framer-uE5Xr .framer-1lucxev, .framer-uE5Xr .framer-16ova64, .framer-uE5Xr .framer-1xz4fkv, .framer-uE5Xr .framer-1kkd4oh { align-content: center; align-items: center; align-self: start; background-color: #ffffff; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; box-shadow: 0.3010936508871964px 0.3010936508871964px 2.1290536231455155px -1.25px rgba(0, 0, 0, 0.18), 1.1442666516217286px 1.1442666516217286px 8.091187088473491px -2.5px rgba(0, 0, 0, 0.16), 5px 5px 35.35533905932738px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 210px; justify-content: center; justify-self: start; overflow: hidden; padding: 10px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uE5Xr .framer-11bpv2j { aspect-ratio: 1.874015748031496 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 84px); overflow: hidden; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-iecq0f, .framer-uE5Xr .framer-1xlzfwo, .framer-uE5Xr .framer-1cqqe2u { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 10px 20px 10px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-1rp75rp { aspect-ratio: 1.5555555555555556 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 100px); overflow: hidden; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-1qorz5q { aspect-ratio: 1.874015748031496 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 84px); overflow: hidden; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-69o6ig, .framer-uE5Xr .framer-2zf8rq, .framer-uE5Xr .framer-1r8dxg1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 10px 20px 10px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-bpliun { align-content: center; align-items: center; align-self: start; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; box-shadow: 0.3010936508871964px 0.3010936508871964px 2.1290536231455155px -1.25px rgba(0, 0, 0, 0.18), 1.1442666516217286px 1.1442666516217286px 8.091187088473491px -2.5px rgba(0, 0, 0, 0.16), 5px 5px 35.35533905932738px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 210px; justify-content: center; justify-self: start; overflow: hidden; padding: 10px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uE5Xr .framer-1ps8ba6 { aspect-ratio: 1.8955223880597014 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 82px); overflow: hidden; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-13pcdxx, .framer-uE5Xr .framer-1ppen9s { aspect-ratio: 1.2295081967213115 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 136px); overflow: hidden; position: relative; width: 168px; }\",\".framer-uE5Xr .framer-1m0yxcs { align-content: center; align-items: center; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; box-shadow: 0.3010936508871964px 0.3010936508871964px 2.1290536231455155px -1.25px rgba(0, 0, 0, 0.18), 1.1442666516217286px 1.1442666516217286px 8.091187088473491px -2.5px rgba(0, 0, 0, 0.16), 5px 5px 35.35533905932738px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 210px; justify-content: center; max-width: 900px; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 70%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uE5Xr .framer-y627mr { background: linear-gradient(119deg, var(--token-835ca85d-eb6e-4dd1-8fa3-da82333966d4, #ffb62e) -199%, var(--token-027a2760-074e-43a8-963f-52ed80271e1d, rgb(255, 56, 139)) 235%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 37px; left: -15px; overflow: visible; position: absolute; top: -14px; width: 117px; z-index: 3; }\",\".framer-uE5Xr .framer-1jtwf60 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 31px; position: absolute; top: 3px; white-space: pre; width: auto; }\",\".framer-uE5Xr .framer-60pgxz { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 0.5 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-1779z6a, .framer-uE5Xr .framer-dqesr7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 50px 40px 30px 40px; position: relative; width: 97%; }\",\".framer-uE5Xr .framer-1f2kk4m, .framer-uE5Xr .framer-3uv7za { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 20px 10px 0px 10px; position: relative; width: min-content; }\",\".framer-uE5Xr .framer-obqvj3, .framer-uE5Xr .framer-1woe4ux { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-h00m6e, .framer-uE5Xr .framer-1nmij12, .framer-uE5Xr .framer-pw0os8, .framer-uE5Xr .framer-1ujx7sy, .framer-uE5Xr .framer-1ocu2ki, .framer-uE5Xr .framer-hky7jn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-121rwqr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 700px; word-break: break-word; word-wrap: break-word; }\",\".framer-uE5Xr .framer-1hilrg1 { align-content: center; align-items: center; background-color: var(--token-b98e0140-8744-41f4-b4ee-0aec4d36e5ba, #f6f7f7); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 1000px; }\",\".framer-uE5Xr .framer-1rzx2t0-container { flex: none; height: 508px; position: relative; width: 900px; }\",\".framer-uE5Xr .framer-ewimeh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-5g6com { aspect-ratio: 1.5923566878980893 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 0.5 0 0px; height: var(--framer-aspect-ratio-supported, 345px); overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-uE5Xr .framer-o42jp7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-54nla8, .framer-uE5Xr .framer-3t2cah, .framer-uE5Xr .framer-8euixf, .framer-uE5Xr .framer-ljww9z, .framer-uE5Xr .framer-1ciwnpz, .framer-uE5Xr .framer-tlwj0h { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-uE5Xr .framer-iexoan { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 10px 0px 10px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-1g3a7c1, .framer-uE5Xr .framer-1hvgwke, .framer-uE5Xr .framer-1govuq1, .framer-uE5Xr .framer-uc416d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-g5942e-container { aspect-ratio: 27.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 400px; }\",\".framer-uE5Xr .framer-14pxj38 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 400px; }\",'.framer-uE5Xr .framer-mem3wv { --framer-input-background: #ffffff; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05), 0px 1px 0px 0px rgba(0, 0, 0, 0.05), 0px 2px 4px 0px rgba(0, 0, 0, 0.08); --framer-input-focused-box-shadow: 0px 0px 0px 1px #0099ff; --framer-input-focused-transition: all 0.2s cubic-bezier(0.44,0,0.56,1) 0s; --framer-input-font-color: #000000; --framer-input-font-family: \"Noto Sans JP\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-invalid-text-color: #999999; --framer-input-padding: 12px; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-uE5Xr .framer-15mmhv6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-uE5Xr .framer-18n8efc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 240px; }\",\".framer-uE5Xr .framer-cqsbrr { --framer-input-background: rgba(187, 187, 187, 0.2); --framer-input-boolean-checked-background: var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, #e2750f); --framer-input-boolean-checked-transition: all 0.3s cubic-bezier(0.44,0,0.56,1) 0s; --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(0, 0, 0, 0.08); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 4px; --framer-input-border-radius-bottom-right: 4px; --framer-input-border-radius-top-left: 4px; --framer-input-border-radius-top-right: 4px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.15); --framer-input-icon-color: #ffffff; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-uE5Xr .framer-tmfi2v { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-uE5Xr .framer-1mvf0zv-container { flex: 0.6 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-k7lr1j { align-content: center; align-items: center; background-color: #f7f7f7; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1190px; justify-content: center; overflow: hidden; padding: 30px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-urry4b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 530px; justify-content: center; overflow: hidden; padding: 0px 0px 140px 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-10odj92 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; padding: 22px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-88ln9s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 345px; z-index: 1; }\",\".framer-uE5Xr .framer-o3qbl5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uE5Xr .framer-11j8qe2 { flex: 1 0 0px; height: 250px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-wb1mxz { align-content: flex-start; align-items: flex-start; background-color: var(--token-cb5fe9d4-4bc6-46d3-97c2-14a62b09f88d, #ffffff); border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; box-shadow: 4px 5px 6px -3px #d4d4d4; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 244px; justify-content: flex-start; left: 19px; padding: 5px 10px 10px 10px; position: absolute; right: 20px; top: 190px; z-index: 1; }\",\".framer-uE5Xr .framer-pqj2o9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-17r3eud { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-xu1dow { align-content: center; align-items: center; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-1ue6pze { flex: none; height: 48px; overflow: hidden; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-fff1pf { align-content: center; align-items: center; display: flex; flex: 0.7 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-o5q54r { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-uE5Xr .framer-39u2gm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-uE5Xr .framer-82syuc { --border-bottom-width: 0px; --border-color: #dddddd; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 2px 2px 2px; position: relative; width: 90%; }\",\".framer-uE5Xr .framer-nt9g1m, .framer-uE5Xr .framer-fvubog, .framer-uE5Xr .framer-rstr55, .framer-uE5Xr .framer-17s9mnb { align-content: center; align-items: center; display: flex; flex: 0.4 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-ty4lum, .framer-uE5Xr .framer-10b3175 { align-content: center; align-items: center; display: flex; flex: 0.6 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-5mxsb2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 2px; position: relative; width: 90%; }\",\".framer-uE5Xr .framer-29f711 { align-content: center; align-items: center; background-color: #f7f7f7; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-6b9gvc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 90%; }\",\".framer-uE5Xr .framer-1l1shzn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 0px 0px; position: relative; width: 90%; }\",\".framer-uE5Xr .framer-10fcbxv, .framer-uE5Xr .framer-1ygm0cp, .framer-uE5Xr .framer-1iqq2z1 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: 0.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 380px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-uE5Xr .framer-1h4hznl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 10px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-2e3hnf, .framer-uE5Xr .framer-16fxee3, .framer-uE5Xr .framer-z3ybgi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-1y572rn, .framer-uE5Xr .framer-1va3fz8, .framer-uE5Xr .framer-62blgl { align-content: center; align-items: center; display: flex; flex: 0.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-7j54wp, .framer-uE5Xr .framer-10vi8ku, .framer-uE5Xr .framer-4hjqp2 { aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 83px); position: relative; width: 100%; }\",\".framer-uE5Xr .framer-1wpr354, .framer-uE5Xr .framer-5ymy70, .framer-uE5Xr .framer-tp777w { align-content: center; align-items: center; display: flex; flex: 0.7 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-1nr6dji, .framer-uE5Xr .framer-ovf998, .framer-uE5Xr .framer-ngccw, .framer-uE5Xr .framer-odo7zf { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-uE5Xr .framer-4oo0po, .framer-uE5Xr .framer-5yg0ip, .framer-uE5Xr .framer-1r1llnl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 5px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-t76yui, .framer-uE5Xr .framer-1uyt055, .framer-uE5Xr .framer-cj47fj { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-uE5Xr .framer-1wyvcz0, .framer-uE5Xr .framer-1ew8yc8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 10px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-b66zzu, .framer-uE5Xr .framer-12ejdv8, .framer-uE5Xr .framer-1e1o2n5 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 500px; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-uE5Xr .framer-1xmodap, .framer-uE5Xr .framer-1qrhrm9, .framer-uE5Xr .framer-7k7xj0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-1mjles0 { flex: none; height: 28px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-sekz94, .framer-uE5Xr .framer-9qgvd2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-uE5Xr .framer-s8gpfg, .framer-uE5Xr .framer-7it8b7, .framer-uE5Xr .framer-ni49z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 56px; }\",\".framer-uE5Xr .framer-11t220w, .framer-uE5Xr .framer-x4us7r, .framer-uE5Xr .framer-16mj4j3 { aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 200px); position: relative; width: 100%; }\",\".framer-uE5Xr .framer-1hm1r32, .framer-uE5Xr .framer-gac25e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-uE5Xr .framer-iv5tvx, .framer-uE5Xr .framer-1ejeya7 { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 297px; word-break: break-word; word-wrap: break-word; }\",\".framer-uE5Xr .framer-9r7ktt, .framer-uE5Xr .framer-1sziunx, .framer-uE5Xr .framer-1cz1vcv { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-uE5Xr .framer-10knyjh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-xtw8en { aspect-ratio: 9.031746031746032 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 1px; }\",\".framer-uE5Xr .framer-4cjp92 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 104%; }\",\".framer-uE5Xr .framer-14yuurt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 84%; }\",\".framer-uE5Xr .framer-1fen2zs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 42%; }\",\".framer-uE5Xr .framer-da7gu3 { aspect-ratio: 2.7936507936507935 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 77px; }\",\".framer-uE5Xr .framer-1f96tfn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-1rjxr28 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-1txqtih { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: 324px; justify-content: center; max-width: 1000px; overflow: hidden; padding: 10px; position: relative; width: 80%; }\",\".framer-uE5Xr .framer-n3sb3w, .framer-uE5Xr .framer-trqclr { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; box-shadow: 0.3010936508871964px 0.3010936508871964px 1.4477564637389506px -1.25px rgba(0, 0, 0, 0.18), 1.1442666516217286px 1.1442666516217286px 5.502007220161974px -2.5px rgba(0, 0, 0, 0.16), 5px 5px 24.041630560342618px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-uE5Xr .framer-1sg4sf6, .framer-uE5Xr .framer-1r9tetz, .framer-uE5Xr .framer-2mi3s4, .framer-uE5Xr .framer-1k885i7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 34px; height: 113px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-jjg5qx, .framer-uE5Xr .framer-10q6qsx { aspect-ratio: 1 / 1; box-shadow: 0.12043746035487857px 0.6021873017743928px 0.6141129605170832px -1.25px rgba(0, 0, 0, 0.18), 0.4577066606486914px 2.288533303243457px 2.333855194149068px -2.5px rgba(0, 0, 0, 0.16), 2px 10px 10.198039027185569px -3.75px rgba(0, 0, 0, 0.06); flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: hidden; position: relative; width: 60px; }\",\".framer-uE5Xr .framer-1uv06ps, .framer-uE5Xr .framer-n552g7, .framer-uE5Xr .framer-1luiu83, .framer-uE5Xr .framer-y5g4d5, .framer-uE5Xr .framer-qbp354, .framer-uE5Xr .framer-y6ijg9, .framer-uE5Xr .framer-1ld4bg5, .framer-uE5Xr .framer-mjbzet, .framer-uE5Xr .framer-1xs5atz, .framer-uE5Xr .framer-zhudhd, .framer-uE5Xr .framer-awcd0r, .framer-uE5Xr .framer-nllips, .framer-uE5Xr .framer-1pfgbga, .framer-uE5Xr .framer-1g30m97 { aspect-ratio: 1 / 1; box-shadow: 0.12043746035487857px 0.6021873017743928px 0.6141129605170832px -1.25px rgba(0, 0, 0, 0.18), 0.4577066606486914px 2.288533303243457px 2.333855194149068px -2.5px rgba(0, 0, 0, 0.16), 2px 10px 10.198039027185569px -3.75px rgba(0, 0, 0, 0.06); flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 60px; }\",\".framer-uE5Xr .framer-66w2i6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 110px; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-1jxccz7-container, .framer-uE5Xr .framer-9erekk-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 94px); position: relative; width: 94px; }\",\".framer-uE5Xr .framer-y66cty { flex: 0.5 0 0px; height: 53px; overflow: hidden; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-1cpvnm9 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; box-shadow: 0.43790553043800173px 0.39809593676181976px 0.5918121563929373px -0.9375px rgba(0, 0, 0, 0.18), 1.3279783787074848px 1.207253071552259px 1.794710715710731px -1.875px rgba(0, 0, 0, 0.17), 3.5104594368164537px 3.1913267607422307px 4.744248302035128px -2.8125px rgba(0, 0, 0, 0.15), 11px 10px 14.866068747318506px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 90%; will-change: var(--framer-will-change-override, transform); }\",\".framer-uE5Xr .framer-11fko47-container, .framer-uE5Xr .framer-okgjb4-container, .framer-uE5Xr .framer-ockc1e-container { flex: none; height: 80px; position: relative; width: 90%; }\",\".framer-uE5Xr .framer-g5h954, .framer-uE5Xr .framer-uml2g4 { aspect-ratio: 8.285714285714286 / 1; height: var(--framer-aspect-ratio-supported, 70px); overflow: visible; position: relative; width: 580px; }\",\".framer-uE5Xr .framer-1yvqmf4 { aspect-ratio: 8.405797101449275 / 1; height: var(--framer-aspect-ratio-supported, 69px); overflow: visible; position: relative; width: 580px; }\",\".framer-uE5Xr .framer-1yice0z { aspect-ratio: 8.142857142857142 / 1; height: var(--framer-aspect-ratio-supported, 70px); overflow: visible; position: relative; width: 570px; }\",\".framer-uE5Xr .framer-15eqtcm { aspect-ratio: 8.055555555555555 / 1; height: var(--framer-aspect-ratio-supported, 72px); overflow: visible; position: relative; width: 580px; }\",\".framer-uE5Xr .framer-1maieo6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-8dg4u3 { align-content: center; align-items: center; background-color: #f7f7f7; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-1xfmazr { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; box-shadow: 0.18065619053231785px 0.24087492070975713px 1.505468254435982px -1.25px rgba(0, 0, 0, 0.18), 0.6865599909730371px 0.9154133212973828px 5.7213332581086425px -2.5px rgba(0, 0, 0, 0.16), 3px 4px 25px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 10px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-9quvcj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-uE5Xr .framer-c5qze { flex: none; height: 200px; overflow: hidden; position: relative; width: 200px; }\",\".framer-uE5Xr .framer-1oi886p { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.6 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-6kc6a4 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 655px; justify-content: center; overflow: hidden; padding: 30px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-l32wfd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 39px; height: 80%; justify-content: center; overflow: hidden; padding: 20px 10px 20px 10px; position: relative; width: 90%; }\",\".framer-uE5Xr .framer-1prjbgu, .framer-uE5Xr .framer-1i28br6 { align-content: center; align-items: center; background-color: #f7f7f7; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; box-shadow: 0.3010936508871964px 0.3010936508871964px 2.1290536231455155px -1.25px rgba(0, 0, 0, 0.18), 1.1442666516217286px 1.1442666516217286px 8.091187088473491px -2.5px rgba(0, 0, 0, 0.16), 5px 5px 35.35533905932738px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 430px; justify-content: center; overflow: hidden; padding: 20px; position: relative; text-decoration: none; width: 475px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uE5Xr .framer-56ezni, .framer-uE5Xr .framer-12c6jhc { flex: none; height: 235px; overflow: hidden; position: relative; width: 420px; }\",\".framer-uE5Xr .framer-w1z152-container, .framer-uE5Xr .framer-hjq4jw-container { flex: none; height: 40px; position: relative; width: 200px; }\",\".framer-uE5Xr .framer-diab4o { align-content: center; align-items: center; background-color: #f7f7f7; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-284c9 { display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 20px 0px 0px 0px; position: relative; width: 1000px; }\",\".framer-uE5Xr .framer-m2w0ui { align-content: center; align-items: center; align-self: start; background-color: #ffffff; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; justify-self: start; min-width: 100px; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uE5Xr .framer-yecd90 { flex: none; height: 213px; overflow: hidden; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-1rxw6wj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 80px; justify-content: center; padding: 8px 24px 8px 24px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-11psdpx { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-uE5Xr .framer-1v6nsn6, .framer-uE5Xr .framer-5fzgz1, .framer-uE5Xr .framer-1ofxx30, .framer-uE5Xr .framer-11ef6hb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-5tfdwn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 400px; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-1bqjjuy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 39px; height: 100%; justify-content: center; overflow: hidden; padding: 11px; position: relative; width: 90%; }\",\".framer-uE5Xr .framer-1617xr0 { align-content: center; align-items: center; background-color: var(--token-cb5fe9d4-4bc6-46d3-97c2-14a62b09f88d, #ffffff); border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; box-shadow: 0.3010936508871964px 0.3010936508871964px 2.1290536231455155px -1.25px rgba(0, 0, 0, 0.18), 1.1442666516217286px 1.1442666516217286px 8.091187088473491px -2.5px rgba(0, 0, 0, 0.16), 5px 5px 35.35533905932738px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 20px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uE5Xr .framer-27gfut { aspect-ratio: 1.8064516129032258 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 213px); overflow: hidden; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-19ye79y { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-55zhuk { display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); height: 270px; justify-content: center; padding: 20px 0px 0px 0px; position: relative; width: 1075px; }\",\".framer-uE5Xr .framer-vk47b { align-content: center; align-items: center; align-self: start; background-color: #ffffff; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 210px; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uE5Xr .framer-1h0b1tz { align-content: flex-start; align-items: flex-start; aspect-ratio: 1.5714285714285714 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 210px); justify-content: center; padding: 10px; position: relative; width: 330px; }\",\".framer-uE5Xr .framer-1wboyli { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 150px; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-1d332f2 { flex: 1 0 0px; height: 104px; overflow: hidden; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-1lsnblt { bottom: 0px; flex: none; left: calc(50.00000000000002% - 266.5px / 2); overflow: hidden; position: absolute; top: 0px; white-space: pre-wrap; width: 267px; word-break: break-word; word-wrap: break-word; }\",\".framer-uE5Xr .framer-1tp6ldq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 40%; }\",\".framer-uE5Xr .framer-1t52fiw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-906vjo, .framer-uE5Xr .framer-bva4xy { flex: 1 0 0px; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-uE5Xr .framer-qr50dw { align-content: center; align-items: center; display: flex; flex: 0.2 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-17f36qw { flex: 1 0 0px; height: 25px; overflow: hidden; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-12uzq9e { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-rypdyz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-kasg01 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-1v6cokz { flex: 1 0 0px; height: 8px; overflow: hidden; position: relative; width: 1px; }\",\".framer-uE5Xr .framer-12hlyx8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-uE5Xr .framer-1fzo3ge { display: grid; flex: none; gap: 0px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(200px, 1fr)); height: min-content; justify-content: center; max-width: 800px; padding: 10px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-n8kkmn { --border-bottom-width: 0px; --border-color: var(--token-c69df8e7-b484-4bd1-94ac-2ff37b1cc3e8, #94a3b8); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-18g1vlr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uE5Xr .framer-zmzk0e { flex: 0.2 0 0px; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-uE5Xr .framer-iwpati-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,'.framer-uE5Xr[data-border=\"true\"]::after, .framer-uE5Xr [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; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-uE5Xr.framer-i3q8sy { width: 810px; } .framer-uE5Xr .framer-1jsptx { height: min-content; } .framer-uE5Xr .framer-1dcqc2o { height: 502px; left: 0px; } .framer-uE5Xr .framer-bcystr { max-width: unset; padding: 40px 0px 0px 40px; } .framer-uE5Xr .framer-e3j5nb { justify-content: flex-start; padding: 10px; } .framer-uE5Xr .framer-9alep6 { gap: 20px; padding: 0px; } .framer-uE5Xr .framer-tfmuzi-container { order: 0; } .framer-uE5Xr .framer-1vj9y33-container { order: 1; } .framer-uE5Xr .framer-1kd3wcp, .framer-uE5Xr .framer-1v6cokz { flex: 0.5 0 0px; } .framer-uE5Xr .framer-1qu1pd { height: var(--framer-aspect-ratio-supported, 313px); width: 319px; } .framer-uE5Xr .framer-7y37ut, .framer-uE5Xr .framer-g5942e-container, .framer-uE5Xr .framer-15mmhv6, .framer-uE5Xr .framer-sekz94, .framer-uE5Xr .framer-iv5tvx, .framer-uE5Xr .framer-4cjp92, .framer-uE5Xr .framer-9qgvd2, .framer-uE5Xr .framer-1ejeya7 { width: 100%; } .framer-uE5Xr .framer-vjnrot { padding: 50px 0px 0px 0px; width: 100%; } .framer-uE5Xr .framer-16ysjhh { gap: 32px; } .framer-uE5Xr .framer-rg5pc0 { flex-direction: column; order: 0; } .framer-uE5Xr .framer-mgqbh3 { aspect-ratio: 1.5220483641536273 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 466px); width: 100%; } .framer-uE5Xr .framer-1m2mymx-container { aspect-ratio: 1.1421319796954315 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 620px); width: 100%; } .framer-uE5Xr .framer-m09x4s { flex: none; width: 100%; } .framer-uE5Xr .framer-y8aw0l { padding: 0px 0px 60px 0px; } .framer-uE5Xr .framer-1nsp17h { grid-template-columns: repeat(2, minmax(50px, 1fr)); padding: 10px 10px 30px 10px; } .framer-uE5Xr .framer-epvv4c { gap: 23px; } .framer-uE5Xr .framer-1pzlg8m { height: var(--framer-aspect-ratio-supported, 94px); } .framer-uE5Xr .framer-jqvafu { align-content: flex-start; align-items: flex-start; justify-content: flex-start; } .framer-uE5Xr .framer-1jkh7us, .framer-uE5Xr .framer-h36069 { height: var(--framer-aspect-ratio-supported, 92px); } .framer-uE5Xr .framer-11bpv2j, .framer-uE5Xr .framer-1qorz5q { height: var(--framer-aspect-ratio-supported, 87px); } .framer-uE5Xr .framer-1rp75rp { height: var(--framer-aspect-ratio-supported, 104px); } .framer-uE5Xr .framer-1ps8ba6 { height: var(--framer-aspect-ratio-supported, 86px); } .framer-uE5Xr .framer-13pcdxx, .framer-uE5Xr .framer-1ppen9s { height: var(--framer-aspect-ratio-supported, 137px); } .framer-uE5Xr .framer-1m0yxcs { gap: 26px; padding: 10px; } .framer-uE5Xr .framer-ls3zqj { padding: 0px; } .framer-uE5Xr .framer-60pgxz { align-self: unset; aspect-ratio: 1.8455882352941178 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 143px); } .framer-uE5Xr .framer-8fa9gq { flex: 1 0 0px; justify-content: flex-start; } .framer-uE5Xr .framer-1779z6a, .framer-uE5Xr .framer-dqesr7 { padding: 10px; } .framer-uE5Xr .framer-1hilrg1 { width: 765px; } .framer-uE5Xr .framer-1rzx2t0-container { height: 404px; width: 703px; } .framer-uE5Xr .framer-5g6com { height: var(--framer-aspect-ratio-supported, 223px); } .framer-uE5Xr .framer-iexoan { align-content: center; align-items: center; } .framer-uE5Xr .framer-1g3a7c1 { align-content: flex-start; align-items: flex-start; width: 90%; } .framer-uE5Xr .framer-k7lr1j { height: 1704px; } .framer-uE5Xr .framer-urry4b { justify-content: flex-start; } .framer-uE5Xr .framer-10odj92 { align-content: flex-start; align-items: flex-start; } .framer-uE5Xr .framer-b66zzu, .framer-uE5Xr .framer-12ejdv8, .framer-uE5Xr .framer-1e1o2n5 { min-height: unset; min-width: unset; width: 90%; } .framer-uE5Xr .framer-1xmodap, .framer-uE5Xr .framer-1txqtih, .framer-uE5Xr .framer-1xfmazr { width: 90%; } .framer-uE5Xr .framer-s8gpfg, .framer-uE5Xr .framer-7it8b7, .framer-uE5Xr .framer-ni49z { flex: 0.2 0 0px; width: 1px; } .framer-uE5Xr .framer-11t220w, .framer-uE5Xr .framer-x4us7r, .framer-uE5Xr .framer-16mj4j3 { height: var(--framer-aspect-ratio-supported, 100px); width: 100px; } .framer-uE5Xr .framer-1hm1r32 { align-content: flex-start; align-items: flex-start; flex: 0.8 0 0px; width: 1px; } .framer-uE5Xr .framer-14yuurt, .framer-uE5Xr .framer-gac25e { flex: 0.8 0 0px; width: 1px; } .framer-uE5Xr .framer-1sg4sf6 { gap: 7px; } .framer-uE5Xr .framer-1r9tetz { gap: 8px; } .framer-uE5Xr .framer-2mi3s4 { gap: 2px; } .framer-uE5Xr .framer-1k885i7 { gap: 6px; } .framer-uE5Xr .framer-pvdkbr { white-space: pre-wrap; width: 700px; word-break: break-word; word-wrap: break-word; } .framer-uE5Xr .framer-l32wfd { padding: 20px; } .framer-uE5Xr .framer-1prjbgu, .framer-uE5Xr .framer-1i28br6 { flex: 1 0 0px; gap: 30px; width: 1px; } .framer-uE5Xr .framer-56ezni { aspect-ratio: 1.63681592039801 / 1; height: var(--framer-aspect-ratio-supported, 193px); width: 316px; } .framer-uE5Xr .framer-12c6jhc { height: 193px; width: 290px; } .framer-uE5Xr .framer-284c9 { grid-template-columns: repeat(2, minmax(200px, 1fr)); width: 80%; } .framer-uE5Xr .framer-1617xr0 { gap: 30px; } .framer-uE5Xr .framer-27gfut { aspect-ratio: 1.63681592039801 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 193px); width: 316px; } .framer-uE5Xr .framer-18if4py { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-uE5Xr .framer-1doq93a-container { flex: 1 0 0px; width: 1px; } .framer-uE5Xr .framer-55zhuk { gap: 0px; grid-template-columns: repeat(2, minmax(200px, 1fr)); width: 90%; } .framer-uE5Xr .framer-1fzo3ge { width: 80%; } .framer-uE5Xr .framer-18g1vlr { gap: 70px; } .framer-uE5Xr .framer-zmzk0e { flex: 0.3 0 0px; }}\",\"@media (max-width: 809px) { .framer-uE5Xr.framer-i3q8sy { padding: 0px; width: 390px; } .framer-uE5Xr .framer-1eliv9t-container { left: unset; position: relative; top: unset; transform: unset; } .framer-uE5Xr .framer-1jsptx { flex-direction: column; height: min-content; left: 50%; padding: 0px 10px 0px 10px; position: absolute; top: 52px; transform: translateX(-50%); width: 100%; } .framer-uE5Xr .framer-1dcqc2o { height: 1032px; order: 0; right: -31px; } .framer-uE5Xr .framer-1fdfcx2 { flex: none; flex-direction: column; order: 1; width: 100%; } .framer-uE5Xr .framer-bcystr { flex: none; max-width: unset; padding: 5px 0px 0px 0px; width: 90%; } .framer-uE5Xr .framer-e3j5nb { align-content: center; align-items: center; gap: 0px; padding: 30px 0px 20px 0px; } .framer-uE5Xr .framer-9alep6 { gap: 0px; padding: 0px; width: 100%; } .framer-uE5Xr .framer-1kd3wcp, .framer-uE5Xr .framer-10odj92, .framer-uE5Xr .framer-rstr55 { flex: none; width: 100%; } .framer-uE5Xr .framer-1qu1pd { height: var(--framer-aspect-ratio-supported, 362px); max-height: 100%; } .framer-uE5Xr .framer-7y37ut { padding: 800px 0px 0px 0px; width: 100%; } .framer-uE5Xr .framer-uv2eoi { padding: 44px 10px 2px 10px; } .framer-uE5Xr .framer-2yswo7, .framer-uE5Xr .framer-yx7xx8, .framer-uE5Xr .framer-kxngyp { flex: 1 0 0px; } .framer-uE5Xr .framer-18laats, .framer-uE5Xr .framer-rjt9yv, .framer-uE5Xr .framer-1rf0t2n { height: 60px; } .framer-uE5Xr .framer-vjnrot { padding: 10px; width: 100%; } .framer-uE5Xr .framer-1ebz6is, .framer-uE5Xr .framer-1x9thm5 { order: 0; } .framer-uE5Xr .framer-rg5pc0 { flex-direction: column; order: 0; } .framer-uE5Xr .framer-mgqbh3, .framer-uE5Xr .framer-m09x4s { flex: none; padding: 11px; width: 90%; } .framer-uE5Xr .framer-y8aw0l { padding: 30px 10px 30px 10px; } .framer-uE5Xr .framer-1nsp17h { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; order: 1; padding: 0px 10px 20px 10px; } .framer-uE5Xr .framer-epvv4c { align-self: unset; height: min-content; padding: 8px 0px 8px 0px; } .framer-uE5Xr .framer-1pzlg8m { height: var(--framer-aspect-ratio-supported, 80px); } .framer-uE5Xr .framer-jqvafu { padding: 8px; } .framer-uE5Xr .framer-11k7mcl, .framer-uE5Xr .framer-16ova64 { align-self: unset; height: min-content; } .framer-uE5Xr .framer-1jkh7us, .framer-uE5Xr .framer-1qorz5q { height: var(--framer-aspect-ratio-supported, 83px); } .framer-uE5Xr .framer-l3u90w, .framer-uE5Xr .framer-1gsvd41 { align-content: center; align-items: center; } .framer-uE5Xr .framer-76efsc, .framer-uE5Xr .framer-vnal3o, .framer-uE5Xr .framer-huyhh4, .framer-uE5Xr .framer-zo62p7, .framer-uE5Xr .framer-7izl7o, .framer-uE5Xr .framer-og04dt, .framer-uE5Xr .framer-smhxdd { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-uE5Xr .framer-t43tql { align-self: unset; height: min-content; padding: 10px 10px 0px 10px; } .framer-uE5Xr .framer-11bpv2j { aspect-ratio: unset; height: 80px; } .framer-uE5Xr .framer-iecq0f { align-content: center; align-items: center; padding: 10px 10px 20px 10px; } .framer-uE5Xr .framer-1hgbv, .framer-uE5Xr .framer-1lucxev, .framer-uE5Xr .framer-bpliun, .framer-uE5Xr .framer-1xz4fkv, .framer-uE5Xr .framer-1kkd4oh { align-self: unset; gap: 0px; height: min-content; } .framer-uE5Xr .framer-1xlzfwo { align-content: center; align-items: center; justify-content: center; padding: 10px 8px 0px 10px; } .framer-uE5Xr .framer-69o6ig, .framer-uE5Xr .framer-1cqqe2u, .framer-uE5Xr .framer-2zf8rq, .framer-uE5Xr .framer-1r8dxg1 { align-content: center; align-items: center; padding: 10px 10px 0px 10px; } .framer-uE5Xr .framer-h36069 { aspect-ratio: unset; height: 82px; } .framer-uE5Xr .framer-9oyrrw { order: 1; } .framer-uE5Xr .framer-14c1rfy-container, .framer-uE5Xr .framer-1cz1vcv { order: 2; } .framer-uE5Xr .framer-1ps8ba6 { height: var(--framer-aspect-ratio-supported, 81px); } .framer-uE5Xr .framer-13pcdxx, .framer-uE5Xr .framer-1ppen9s { aspect-ratio: 1.2598425196850394 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 123px); width: 1px; } .framer-uE5Xr .framer-1m0yxcs { height: min-content; order: 0; padding: 8px 0px 8px 0px; width: 100%; } .framer-uE5Xr .framer-y627mr { height: 35px; left: 0px; top: -17px; width: 110px; } .framer-uE5Xr .framer-ls3zqj, .framer-uE5Xr .framer-1f2kk4m, .framer-uE5Xr .framer-3uv7za, .framer-uE5Xr .framer-urry4b, .framer-uE5Xr .framer-1f96tfn, .framer-uE5Xr .framer-l32wfd { flex-direction: column; } .framer-uE5Xr .framer-60pgxz { align-self: unset; flex: none; height: 202px; width: 100%; } .framer-uE5Xr .framer-8fa9gq { flex: none; padding: 8px; width: 100%; } .framer-uE5Xr .framer-1779z6a, .framer-uE5Xr .framer-dqesr7 { gap: 0px; padding: 20px; } .framer-uE5Xr .framer-obqvj3, .framer-uE5Xr .framer-1woe4ux { padding: 20px; } .framer-uE5Xr .framer-1hilrg1 { width: 389px; } .framer-uE5Xr .framer-1rzx2t0-container { height: 177px; width: 365px; } .framer-uE5Xr .framer-5g6com { flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 194px); } .framer-uE5Xr .framer-o42jp7 { padding: 0px 10px 0px 10px; width: 330px; } .framer-uE5Xr .framer-iexoan { gap: 16px; padding: 0px; } .framer-uE5Xr .framer-1g3a7c1 { padding: 1px; } .framer-uE5Xr .framer-g5942e-container { aspect-ratio: unset; height: 52px; width: 100%; } .framer-uE5Xr .framer-15mmhv6, .framer-uE5Xr .framer-iv5tvx, .framer-uE5Xr .framer-1ejeya7, .framer-uE5Xr .framer-1txqtih { width: 100%; } .framer-uE5Xr .framer-1mvf0zv-container { flex: 0.7 0 0px; } .framer-uE5Xr .framer-k7lr1j { gap: 23px; height: min-content; padding: 30px 20px 30px 20px; } .framer-uE5Xr .framer-29f711 { padding: 10px 20px 10px 20px; } .framer-uE5Xr .framer-b66zzu { min-height: unset; min-width: unset; } .framer-uE5Xr .framer-1xmodap { gap: 10px; padding: 20px; } .framer-uE5Xr .framer-1hvgwke { flex-direction: row; } .framer-uE5Xr .framer-1mjles0, .framer-uE5Xr .framer-1doq93a-container { flex: 1 0 0px; width: 1px; } .framer-uE5Xr .framer-sekz94, .framer-uE5Xr .framer-4cjp92 { gap: 10px; width: 100%; } .framer-uE5Xr .framer-s8gpfg, .framer-uE5Xr .framer-7it8b7, .framer-uE5Xr .framer-ni49z { flex: 0.3 0 0px; width: 1px; } .framer-uE5Xr .framer-11t220w, .framer-uE5Xr .framer-16mj4j3 { height: var(--framer-aspect-ratio-supported, 78px); } .framer-uE5Xr .framer-1hm1r32, .framer-uE5Xr .framer-14yuurt, .framer-uE5Xr .framer-gac25e { flex: 0.7 0 0px; width: 1px; } .framer-uE5Xr .framer-12ejdv8, .framer-uE5Xr .framer-1e1o2n5 { min-height: unset; min-width: unset; padding: 20px; } .framer-uE5Xr .framer-1qrhrm9 { padding: 0px 10px 0px 10px; } .framer-uE5Xr .framer-xtw8en { height: var(--framer-aspect-ratio-supported, 28px); } .framer-uE5Xr .framer-x4us7r { height: var(--framer-aspect-ratio-supported, 72px); } .framer-uE5Xr .framer-7k7xj0, .framer-uE5Xr .framer-1ofxx30 { padding: 0px; } .framer-uE5Xr .framer-9qgvd2 { gap: 10px; order: 1; width: 100%; } .framer-uE5Xr .framer-1fen2zs { flex-direction: column; order: 0; width: 100%; } .framer-uE5Xr .framer-jjg5qx, .framer-uE5Xr .framer-1uv06ps, .framer-uE5Xr .framer-n552g7, .framer-uE5Xr .framer-1luiu83, .framer-uE5Xr .framer-y5g4d5, .framer-uE5Xr .framer-qbp354, .framer-uE5Xr .framer-y6ijg9, .framer-uE5Xr .framer-1ld4bg5 { height: var(--framer-aspect-ratio-supported, 50px); width: 50px; } .framer-uE5Xr .framer-8dg4u3 { padding: 30px 20px 30px 20px; } .framer-uE5Xr .framer-divblu, .framer-uE5Xr .framer-mtj11c, .framer-uE5Xr .framer-9z7cbo, .framer-uE5Xr .framer-12eyp0w, .framer-uE5Xr .framer-pvdkbr { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-uE5Xr .framer-9quvcj { flex-direction: column; width: 95%; } .framer-uE5Xr .framer-c5qze { height: 100px; width: 100px; } .framer-uE5Xr .framer-1oi886p { flex: none; padding: 0px; width: 100%; } .framer-uE5Xr .framer-6kc6a4, .framer-uE5Xr .framer-18g1vlr { height: min-content; padding: 10px 0px 10px 0px; } .framer-uE5Xr .framer-bueo38, .framer-uE5Xr .framer-89df6u { width: 90%; } .framer-uE5Xr .framer-1prjbgu { gap: 9px; height: min-content; padding: 10px 20px 10px 20px; width: 100%; } .framer-uE5Xr .framer-56ezni { aspect-ratio: 1.7872340425531914 / 1; height: var(--framer-aspect-ratio-supported, 162px); width: 100%; } .framer-uE5Xr .framer-1govuq1, .framer-uE5Xr .framer-uc416d { padding: 10px; } .framer-uE5Xr .framer-1i28br6 { gap: 10px; height: min-content; padding: 10px 20px 10px 20px; width: 100%; } .framer-uE5Xr .framer-12c6jhc { height: 137px; width: 230px; } .framer-uE5Xr .framer-uhw9t { white-space: pre-wrap; width: 161px; word-break: break-word; word-wrap: break-word; } .framer-uE5Xr .framer-diab4o { padding: 30px 20px 20px 20px; } .framer-uE5Xr .framer-284c9 { grid-template-columns: repeat(1, minmax(200px, 1fr)); width: 90%; } .framer-uE5Xr .framer-5tfdwn { padding: 10px 0px 10px 0px; } .framer-uE5Xr .framer-1bqjjuy { flex-direction: column; padding: 10px; } .framer-uE5Xr .framer-1617xr0 { flex: none; flex-direction: column; padding: 10px 20px 10px 20px; width: 100%; } .framer-uE5Xr .framer-17s9mnb { flex: none; width: 90%; } .framer-uE5Xr .framer-27gfut { aspect-ratio: 1.7872340425531914 / 1; height: var(--framer-aspect-ratio-supported, 146px); } .framer-uE5Xr .framer-zgkoz6 { flex: none; padding: 10px 0px 0px 0px; width: 100%; } .framer-uE5Xr .framer-19ye79y { padding: 10px 0px 20px 0px; } .framer-uE5Xr .framer-55zhuk { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; justify-content: flex-start; padding: 20px 10px 0px 10px; width: 90%; } .framer-uE5Xr .framer-vk47b { align-self: unset; height: min-content; padding: 0px 0px 10px 0px; width: 100%; } .framer-uE5Xr .framer-12uzq9e { padding: 50px 20px 30px 20px; } .framer-uE5Xr .framer-1fzo3ge { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; padding: 10px; } .framer-uE5Xr .framer-n8kkmn { align-self: unset; } .framer-uE5Xr .framer-bva4xy { flex: 0.8 0 0px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10936\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"yoWcz2rKb\":{\"layout\":[\"fixed\",\"auto\"]},\"E_dO8UpHS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"YrHBKHqi0\":{\"pattern\":\":YrHBKHqi0\",\"name\":\"hero\"}}\n * @framerResponsiveScreen\n */const FrameraFR96jTcg=withCSS(Component,css,\"framer-uE5Xr\");export default FrameraFR96jTcg;FrameraFR96jTcg.displayName=\"Jp\";FrameraFR96jTcg.defaultProps={height:10936,width:1200};addFonts(FrameraFR96jTcg,[{explicitInter:true,fonts:[{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/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{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/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{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/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{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/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{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/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v54/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFPYk757Y0rw-oME.woff2\",weight:\"700\"},{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v54/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEj757Y0rw-oME.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuDyYMZ1rib2Bg-4.woff2\",weight:\"800\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v54/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFLgk757Y0rw-oME.woff2\",weight:\"900\"},{family:\"Noto Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosans/v39/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyD9A99Y41P6zHtY.woff2\",weight:\"400\"},{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v54/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFCMj757Y0rw-oME.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v54/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFM8k757Y0rw-oME.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuOKfMZ1rib2Bg-4.woff2\",weight:\"300\"},{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v54/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFE8j757Y0rw-oME.woff2\",weight:\"300\"}]},...MegaMenuFonts,...BtnMovingFonts,...BtnMoving2Fonts,...TickerFonts,...MaterialFonts,...SlideshowFonts,...ModelFonts,...VideoFonts,...FeatureButtunFonts,...AIBtnWaitinglistUSFonts,...EmbedFonts,...InputFonts,...AIBtnWaitinglistJulyFonts,...LottieFonts,...Ticker1Fonts,...FooterJPFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraFR96jTcg\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yoWcz2rKb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"E_dO8UpHS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"10936\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"YrHBKHqi0\\\":{\\\"pattern\\\":\\\":YrHBKHqi0\\\",\\\"name\\\":\\\"hero\\\"}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "title", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Nl5LoIyur", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText", "css", "Framerb4OQsVBsC", "withCSS", "b4OQsVBsC_default", "addPropertyControls", "ControlType", "addFonts", "MaterialFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "animation1", "transformTemplate2", "transformTemplate3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapgldsvt", "args", "onTap1r58bkc", "onTap1iqjsp5", "onTap519poo", "onTapfq9qpj", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "Link", "SVG", "Image2", "getLoadingLazyAtYPosition", "css", "FramerrK_AHDjER", "withCSS", "rK_AHDjER_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MegaMenuFonts", "getFonts", "YS7Yq8HBm_default", "BtnMovingFonts", "gnT2nPQxH_default", "BtnMoving2Fonts", "OdsFIrYH5_default", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "TickerFonts", "Ticker", "MaterialFonts", "Icon", "SlideshowFonts", "Slideshow", "ModelFonts", "rK_AHDjER_default", "VideoFonts", "Video", "FeatureButtunFonts", "rockOk4hz_default", "AIBtnWaitinglistUSFonts", "u3oXOuhjv_default", "EmbedFonts", "Embed", "InputFonts", "heH3AbBpo_default", "AIBtnWaitinglistJulyFonts", "b4OQsVBsC_default", "LottieFonts", "Lottie", "Ticker1Fonts", "FooterJPFonts", "ZHIWYDLuV_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transformTemplate1", "_", "t", "transformTemplate2", "transition4", "animation4", "animation5", "transition5", "animation6", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "animation7", "QueryData1", "sharedDateFormatter", "formatOptions", "locale", "date", "fallbackLocale", "dateOptions", "toDateString", "activeLocale", "dateOptions1", "toDateString1", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "Zzp9hQyyWIE4nwsa6Q", "hBWA_gKWeIE4nwsa6Q", "VdF_ws4avIE4nwsa6Q", "fjlgMXmFpIE4nwsa6Q", "MgcfiyxpjIE4nwsa6Q", "AtG1Fu3C6IE4nwsa6Q", "yzQwSvrJKIE4nwsa6Q", "idIE4nwsa6Q", "MYs0kTrFJpkvEeQpx9", "NOHGgWDbjpkvEeQpx9", "S6VDQu0SGpkvEeQpx9", "idpkvEeQpx9", "VtmCQFJBfsyk9CfVsh", "SxU8ACQc2syk9CfVsh", "idsyk9CfVsh", "zRJAVzAsrmrZ0nB6ak", "EZ9i8TIt1mrZ0nB6ak", "Dprdsq8GnmrZ0nB6ak", "idmrZ0nB6ak", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "activeLocaleCode", "useLocaleCode", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "getLoadingLazyAtYPosition", "x", "RichText", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "Link", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "FormContainer", "formState", "l", "FormSelect", "FormBooleanInput", "ChildrenCanSuspend", "bAzn5WDrO_default", "collection", "index", "textContent", "enumToDisplayNameFunctions", "PathVariablesContext", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "NBmPyVUsz_default", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks9", "resolvedLinks10", "wt2tUry0B_default", "collection2", "paginationInfo2", "loadMore2", "index2", "resolvedLinks11", "cYOgW8s8H_default", "collection3", "paginationInfo3", "loadMore3", "index3", "textContent1", "textContent2", "css", "FrameraFR96jTcg", "withCSS", "aFR96jTcg_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
