{"id":63229,"date":"2026-06-25T10:57:11","date_gmt":"2026-06-25T10:57:11","guid":{"rendered":"https:\/\/www.evaluate.com\/solutions\/norstella-atlas-ci\/"},"modified":"2026-07-29T01:29:10","modified_gmt":"2026-07-29T01:29:10","slug":"norstella-atlas-ci","status":"publish","type":"page","link":"https:\/\/www.evaluate.com\/ja\/solutions\/norstella-atlas-ci\/","title":{"rendered":"Norstella Atlas CI"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"63229\" class=\"elementor elementor-63229 elementor-59936\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2b8170d e-con-full e-flex e-con e-parent\" data-id=\"2b8170d\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-29b2a88 atlas-hero-bg elementor-widget elementor-widget-html\" data-id=\"29b2a88\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t\r\n<div class=\"atlas-hero-bg\">\r\n  <canvas id=\"atlasHeroCanvas\"><\/canvas> <!-- CHANGE ID HERE -->\r\n<\/div>\r\n\r\n<style>\r\n.atlas-hero-bg{\r\n  position:absolute;\r\n  inset:0;\r\n  width:100%;\r\n  height:100%;\r\n  border-radius: 5px;\r\n  overflow:hidden;\r\n  background:#370069;\r\n  background:radial-gradient(120% 120% at 50% 0%, #370069 0%, #1a0033 50%, #0d0016 100%);\r\n  z-index:0;\r\n}\r\n.atlas-hero-bg canvas{\r\n  position:absolute;\r\n  inset:0;\r\n  width:100%;\r\n  height:100%;\r\n  display:block;\r\n}\r\n<\/style>\r\n\r\n<script>\r\n(function(){\r\n  var canvas = document.getElementById('atlasHeroCanvas'); \/\/ CHANGE ID HERE\r\n  if(!canvas) return;\r\n  var ctx = canvas.getContext('2d');\r\n  var W, H, DPR, nodes = [], pulses = [], t = 0;\r\n  var rafId = null;\r\n  var running = false;\r\n\r\n  \/\/ Gating flags: the loop only runs when BOTH are true.\r\n  var inViewport = false;   \/\/ set by IntersectionObserver\r\n  var tabVisible = !document.hidden;\r\n\r\n  var reduceMotion = window.matchMedia &&\r\n    window.matchMedia('(prefers-reduced-motion: reduce)').matches;\r\n\r\n  var COLORS = {\r\n    darkPurple: [55, 0, 105],\r\n    midPurple:  [100, 0, 175],\r\n    lightPurple:[135, 75, 255],\r\n    teal:       [0, 215, 205]\r\n  };\r\n  var palette = [COLORS.darkPurple, COLORS.midPurple, COLORS.midPurple, COLORS.lightPurple];\r\n\r\n  function rgba(c, a){ return 'rgba(' + c[0] + ',' + c[1] + ',' + c[2] + ',' + a + ')'; }\r\n\r\n  function resize(){\r\n    DPR = Math.min(window.devicePixelRatio || 1, 2);\r\n    W = canvas.offsetWidth;\r\n    H = canvas.offsetHeight;\r\n    canvas.width = W * DPR;\r\n    canvas.height = H * DPR;\r\n    ctx.setTransform(DPR, 0, 0, DPR, 0, 0);\r\n    buildNodes();\r\n    if(reduceMotion) renderStaticFrame();\r\n  }\r\n\r\n  function buildNodes(){\r\n    nodes = [];\r\n    var density = Math.round((W * H) \/ 22000);\r\n    density = Math.max(34, Math.min(72, density));\r\n    for(var i = 0; i < density; i++){\r\n      nodes.push({\r\n        x: Math.random() * W,\r\n        y: Math.random() * H,\r\n        vx: (Math.random() - 0.5) * 0.25,\r\n        vy: (Math.random() - 0.5) * 0.25,\r\n        r: Math.random() * 1.8 + 1.1,\r\n        c: palette[Math.floor(Math.random() * palette.length)],\r\n        tw: Math.random() * Math.PI * 2\r\n      });\r\n    }\r\n  }\r\n\r\n  function spawnPulse(){\r\n    if(nodes.length < 2) return;\r\n    var a = nodes[Math.floor(Math.random() * nodes.length)];\r\n    var near = [];\r\n    for(var i = 0; i < nodes.length; i++){\r\n      var b = nodes[i];\r\n      if(b === a) continue;\r\n      var dx = a.x - b.x, dy = a.y - b.y;\r\n      var d = Math.sqrt(dx*dx + dy*dy);\r\n      if(d < 170) near.push(b);\r\n    }\r\n    if(!near.length) return;\r\n    var target = near[Math.floor(Math.random() * near.length)];\r\n    pulses.push({ from:a, to:target, p:0, speed: 0.012 + Math.random()*0.02, c: a.c });\r\n  }\r\n\r\n  var CONNECT = 150;\r\n\r\n  function drawNodesAndLines(){\r\n    for(var i = 0; i < nodes.length; i++){\r\n      for(var j = i + 1; j < nodes.length; j++){\r\n        var a = nodes[i], b = nodes[j];\r\n        var dx = a.x - b.x, dy = a.y - b.y;\r\n        var d = Math.sqrt(dx*dx + dy*dy);\r\n        if(d < CONNECT){\r\n          var alpha = (1 - d \/ CONNECT) * 0.45;\r\n          ctx.beginPath();\r\n          ctx.moveTo(a.x, a.y);\r\n          ctx.lineTo(b.x, b.y);\r\n          ctx.strokeStyle = rgba(COLORS.lightPurple, alpha);\r\n          ctx.lineWidth = 0.6;\r\n          ctx.stroke();\r\n        }\r\n      }\r\n    }\r\n    for(var i = 0; i < nodes.length; i++){\r\n      var n = nodes[i];\r\n      var tw = reduceMotion ? 0.8 : (0.55 + 0.45 * Math.sin(t * 0.02 + n.tw));\r\n      ctx.beginPath();\r\n      ctx.arc(n.x, n.y, n.r, 0, Math.PI * 2);\r\n      ctx.fillStyle = rgba(n.c, 0.85 * tw);\r\n      ctx.fill();\r\n      ctx.beginPath();\r\n      ctx.arc(n.x, n.y, n.r * 3.2, 0, Math.PI * 2);\r\n      ctx.fillStyle = rgba(n.c, 0.15 * tw);\r\n      ctx.fill();\r\n    }\r\n  }\r\n\r\n  function renderStaticFrame(){\r\n    ctx.clearRect(0, 0, W, H);\r\n    drawNodesAndLines();\r\n  }\r\n\r\n  function draw(){\r\n    if(!running) return;\r\n    t += 1;\r\n    ctx.clearRect(0, 0, W, H);\r\n\r\n    for(var i = 0; i < nodes.length; i++){\r\n      var n = nodes[i];\r\n      n.x += n.vx; n.y += n.vy;\r\n      if(n.x < -20) n.x = W + 20;\r\n      if(n.x > W + 20) n.x = -20;\r\n      if(n.y < -20) n.y = H + 20;\r\n      if(n.y > H + 20) n.y = -20;\r\n    }\r\n\r\n    for(var i = 0; i < nodes.length; i++){\r\n      for(var j = i + 1; j < nodes.length; j++){\r\n        var a = nodes[i], b = nodes[j];\r\n        var dx = a.x - b.x, dy = a.y - b.y;\r\n        var d = Math.sqrt(dx*dx + dy*dy);\r\n        if(d < CONNECT){\r\n          var alpha = (1 - d \/ CONNECT) * 0.45;\r\n          ctx.beginPath();\r\n          ctx.moveTo(a.x, a.y);\r\n          ctx.lineTo(b.x, b.y);\r\n          ctx.strokeStyle = rgba(COLORS.lightPurple, alpha);\r\n          ctx.lineWidth = 0.6;\r\n          ctx.stroke();\r\n        }\r\n      }\r\n    }\r\n\r\n    if(Math.random() < 0.04) spawnPulse();\r\n    for(var i = pulses.length - 1; i >= 0; i--){\r\n      var pu = pulses[i];\r\n      pu.p += pu.speed;\r\n      if(pu.p >= 1){ pulses.splice(i, 1); continue; }\r\n      var x = pu.from.x + (pu.to.x - pu.from.x) * pu.p;\r\n      var y = pu.from.y + (pu.to.y - pu.from.y) * pu.p;\r\n      var fade = Math.sin(pu.p * Math.PI);\r\n      ctx.beginPath();\r\n      ctx.arc(x, y, 2.4, 0, Math.PI * 2);\r\n      ctx.fillStyle = rgba(pu.c, 1.0 * fade);\r\n      ctx.fill();\r\n      ctx.beginPath();\r\n      ctx.arc(x, y, 6, 0, Math.PI * 2);\r\n      ctx.fillStyle = rgba(pu.c, 0.35 * fade);\r\n      ctx.fill();\r\n    }\r\n\r\n    for(var i = 0; i < nodes.length; i++){\r\n      var n = nodes[i];\r\n      var tw = 0.55 + 0.45 * Math.sin(t * 0.02 + n.tw);\r\n      ctx.beginPath();\r\n      ctx.arc(n.x, n.y, n.r, 0, Math.PI * 2);\r\n      ctx.fillStyle = rgba(n.c, 0.85 * tw);\r\n      ctx.fill();\r\n      ctx.beginPath();\r\n      ctx.arc(n.x, n.y, n.r * 3.2, 0, Math.PI * 2);\r\n      ctx.fillStyle = rgba(n.c, 0.15 * tw);\r\n      ctx.fill();\r\n    }\r\n\r\n    rafId = requestAnimationFrame(draw);\r\n  }\r\n\r\n  \/\/ Loop runs only when in viewport AND tab visible AND motion allowed.\r\n  function updateRunState(){\r\n    var shouldRun = inViewport && tabVisible && !reduceMotion;\r\n    if(shouldRun && !running){\r\n      running = true;\r\n      rafId = requestAnimationFrame(draw);\r\n    } else if(!shouldRun && running){\r\n      running = false;\r\n      if(rafId) cancelAnimationFrame(rafId);\r\n      rafId = null;\r\n    }\r\n  }\r\n\r\n  document.addEventListener('visibilitychange', function(){\r\n    tabVisible = !document.hidden;\r\n    updateRunState();\r\n  });\r\n\r\n  \/\/ Pause\/resume based on whether the canvas is on screen.\r\n  if('IntersectionObserver' in window){\r\n    var io = new IntersectionObserver(function(entries){\r\n      for(var i = 0; i < entries.length; i++){\r\n        inViewport = entries[i].isIntersecting;\r\n      }\r\n      updateRunState();\r\n    }, { threshold: 0 }); \/\/ any sliver visible counts\r\n    io.observe(canvas);\r\n  } else {\r\n    \/\/ Older browsers with no IntersectionObserver: just run normally.\r\n    inViewport = true;\r\n  }\r\n\r\n  if(window.matchMedia){\r\n    var mq = window.matchMedia('(prefers-reduced-motion: reduce)');\r\n    var onChange = function(e){\r\n      reduceMotion = e.matches;\r\n      if(reduceMotion){\r\n        running = false;\r\n        if(rafId) cancelAnimationFrame(rafId);\r\n        rafId = null;\r\n        renderStaticFrame();\r\n      } else {\r\n        updateRunState();\r\n      }\r\n    };\r\n    if(mq.addEventListener) mq.addEventListener('change', onChange);\r\n    else if(mq.addListener) mq.addListener(onChange);\r\n  }\r\n\r\n  resize();\r\n  if(reduceMotion){\r\n    renderStaticFrame();\r\n  } else {\r\n    updateRunState();\r\n  }\r\n\r\n  window.addEventListener('resize', resize);\r\n})();\r\n<\/script>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-cac1804 e-flex e-con-boxed e-con e-child\" data-id=\"cac1804\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-a9434b4 e-con-full e-flex e-con e-child\" data-id=\"a9434b4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-446967c e-con-full e-flex e-con e-child\" data-id=\"446967c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c84f7ec elementor-widget elementor-widget-image\" data-id=\"c84f7ec\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"800\" height=\"263\" src=\"https:\/\/www.evaluate.com\/wp-content\/uploads\/2026\/07\/asset-4atlas-negative-1024x336.png\" class=\"attachment-large size-large wp-image-63199\" alt=\"Atlas CI logo\" srcset=\"https:\/\/www.evaluate.com\/wp-content\/uploads\/2026\/07\/asset-4atlas-negative-1024x336.png 1024w, https:\/\/www.evaluate.com\/wp-content\/uploads\/2026\/07\/asset-4atlas-negative-300x98.png 300w, https:\/\/www.evaluate.com\/wp-content\/uploads\/2026\/07\/asset-4atlas-negative-768x252.png 768w, https:\/\/www.evaluate.com\/wp-content\/uploads\/2026\/07\/asset-4atlas-negative-1536x504.png 1536w, https:\/\/www.evaluate.com\/wp-content\/uploads\/2026\/07\/asset-4atlas-negative-2048x671.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-16bba21 elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"16bba21\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Layer_1\" viewBox=\"0 0 31 30\"><path d=\"M19.5,19.52c-5.6-.97-7.39-2.77-8.37-8.37-.15-.83-1.35-.83-1.49,0-.97,5.6-2.77,7.39-8.37,8.37-.83.15-.83,1.35,0,1.49,5.6.97,7.39,2.77,8.37,8.37.15.83,1.35.83,1.49,0,.97-5.6,2.77-7.39,8.37-8.37.83-.15.83-1.35,0-1.49Z\" fill=\"CurrentColor\"><\/path><path d=\"M29.94,13.72c-3.64-.63-4.8-1.8-5.44-5.44-.09-.54-.87-.54-.97,0-.63,3.64-1.8,4.8-5.44,5.44-.54.09-.54.87,0,.97,3.64.63,4.8,1.8,5.44,5.44.09.54.87.54.97,0,.63-3.64,1.8-4.8,5.44-5.44.54-.09.54-.87,0-.97Z\" fill=\"CurrentColor\"><\/path><path d=\"M10.07,4.43c2.37.41,3.12,1.17,3.53,3.53.06.35.57.35.63,0,.41-2.37,1.17-3.12,3.53-3.53.35-.06.35-.57,0-.63-2.37-.41-3.12-1.17-3.53-3.53-.06-.35-.57-.35-.63,0-.41,2.37-1.17,3.12-3.53,3.53-.35.06-.35.57,0,.63Z\" fill=\"CurrentColor\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-00860a6 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"00860a6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">\u30c7\u30fc\u30bf\u96c6\u7d04\u306e\u67a0\u3092\u8d85\u3048\u305fAI\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0<\/p>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e35a545 e-con-full e-flex e-con e-child\" data-id=\"e35a545\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-cb03c80 e-con-full e-flex e-con e-child\" data-id=\"cb03c80\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-4d8bcf4 e-con-full e-flex e-con e-child\" data-id=\"4d8bcf4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0cbf2d1 elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"0cbf2d1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Layer_1\" viewBox=\"0 0 31 30\"><path d=\"M19.5,19.52c-5.6-.97-7.39-2.77-8.37-8.37-.15-.83-1.35-.83-1.49,0-.97,5.6-2.77,7.39-8.37,8.37-.83.15-.83,1.35,0,1.49,5.6.97,7.39,2.77,8.37,8.37.15.83,1.35.83,1.49,0,.97-5.6,2.77-7.39,8.37-8.37.83-.15.83-1.35,0-1.49Z\" fill=\"CurrentColor\"><\/path><path d=\"M29.94,13.72c-3.64-.63-4.8-1.8-5.44-5.44-.09-.54-.87-.54-.97,0-.63,3.64-1.8,4.8-5.44,5.44-.54.09-.54.87,0,.97,3.64.63,4.8,1.8,5.44,5.44.09.54.87.54.97,0,.63-3.64,1.8-4.8,5.44-5.44.54-.09.54-.87,0-.97Z\" fill=\"CurrentColor\"><\/path><path d=\"M10.07,4.43c2.37.41,3.12,1.17,3.53,3.53.06.35.57.35.63,0,.41-2.37,1.17-3.12,3.53-3.53.35-.06.35-.57,0-.63-2.37-.41-3.12-1.17-3.53-3.53-.06-.35-.57-.35-.63,0-.41,2.37-1.17,3.12-3.53,3.53-.35.06-.35.57,0,.63Z\" fill=\"CurrentColor\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2cb04d5 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"2cb04d5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">AGENTIC AI FOR BIOPHARMA <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-18fe41e e-con-full e-flex e-con e-child\" data-id=\"18fe41e\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1b06c02 elementor-headline--style-rotate atlasheadline elementor-widget-mobile__width-inherit elementor-widget elementor-widget-animated-headline\" data-id=\"1b06c02\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;headline_style&quot;:&quot;rotate&quot;,&quot;rotating_text&quot;:&quot;\\u3059\\u3079\\u3066\\u200b\\u306e\\u200b\\u200b&#8203;\\u610f\\u601d\\u6c7a\\u5b9a\\u200b\\u306f\\u3001&#8203;\\u305d\\u306e\\u200b\\u88cf\\u5074&#8203;\\u306b\\u200b\\u3042\\u308b&#8203;\\u200b\\u200b\\u4f5c\\u696d\\u200b\\u304b\\u3089&#8203;\\u200b\\u59cb\\u307e\\u308b\\u3002&#8203; \\u200bAtlas\\u200b\\u306f&#8203;\\u305d\\u306e\\u200b\\u4f5c\\u696d\\u200b&#8203;\\u3092\\u200b\\u62c5\\u3044\\u307e\\u3059\\u3002&#8203; \\u5224\\u65ad\\u200b\\u3092&#8203;\\u4e0b\\u3059\\u200b\\u306e\\u306f\\u200b&#8203;\\u304a\\u5ba2\\u69d8\\u81ea\\u8eab\\u3002&#8203; &quot;,&quot;rotate_iteration_delay&quot;:950,&quot;animation_type&quot;:&quot;typing&quot;,&quot;loop&quot;:&quot;yes&quot;}\" data-widget_type=\"animated-headline.default\">\n\t\t\t\t\t\t\t<h3 class=\"elementor-headline elementor-headline-animation-type-typing elementor-headline-letters\">\n\t\t\t\t<span class=\"elementor-headline-dynamic-wrapper elementor-headline-text-wrapper\">\n\t\t\t\t\t<span class=\"elementor-headline-dynamic-text elementor-headline-text-active\">\n\t\t\t\t\u3059\u3079\u3066\u200b\u306e\u200b\u200b&#8203;\u610f\u601d\u6c7a\u5b9a\u200b\u306f\u3001&#8203;\u305d\u306e\u200b\u88cf\u5074&#8203;\u306b\u200b\u3042\u308b&#8203;\u200b\u200b\u4f5c\u696d\u200b\u304b\u3089&#8203;\u200b\u59cb\u307e\u308b\u3002&#8203;&nbsp;\u200bAtlas\u200b\u306f&#8203;\u305d\u306e\u200b\u4f5c\u696d\u200b&#8203;\u3092\u200b\u62c5\u3044\u307e\u3059\u3002&#8203;&nbsp;\u5224\u65ad\u200b\u3092&#8203;\u4e0b\u3059\u200b\u306e\u306f\u200b&#8203;\u304a\u5ba2\u69d8\u81ea\u8eab\u3002&#8203;&nbsp;\t\t\t<\/span>\n\t\t\t\t\t\t<\/span>\n\t\t\t\t<\/h3>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c9c7468 elementor-widget elementor-widget-text-editor\" data-id=\"c9c7468\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u88fd\u85ac\u30fb\u30d0\u30a4\u30aa\u533b\u85ac\u54c1\u696d\u754c\u5411\u3051\u306e\u7af6\u5408\u30a4\u30f3\u30c6\u30ea\u30b8\u30a7\u30f3\u30b9\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u3002\u8cea\u554f\u306b\u7b54\u3048\u308b\u3060\u3051\u3067\u3001\u8cb4\u793e\u306e\u30c1\u30fc\u30e0\u304c\u65e5\u5e38\u7684\u306b\u4f7f\u7528\u3057\u3066\u3044\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306b\u6cbf\u3063\u305f\u3001\u60c5\u5831\u30bd\u30fc\u30b9\u4ed8\u304d\u306e\u5305\u62ec\u7684\u306a\u30ec\u30dd\u30fc\u30c8\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-618d617 e-con-full e-flex e-con e-child\" data-id=\"618d617\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b2f8de4 elementor-laptop-align-center elementor-widget elementor-widget-button\" data-id=\"b2f8de4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#contactform\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-chevron-down\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">\u8a73\u7d30\u3092\u898b\u308b<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e1d2681 elementor-laptop-align-center elementor-widget elementor-widget-button\" data-id=\"e1d2681\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#demo\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-chevron-down\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">\u64cd\u4f5c\u3092\u4f53\u9a13\u3059\u308b<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5ac58f2 e-con-full e-flex e-con e-parent\" data-id=\"5ac58f2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_privacy_mode&quot;:&quot;yes&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-187dc9d e-flex e-con-boxed e-con e-child\" data-id=\"187dc9d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-d2e3b55 e-con-full e-flex e-con e-child\" data-id=\"d2e3b55\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a89143f elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"a89143f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u7af6\u5408\u5206\u6790\u306e\u65b0\u305f\u306a\u30b9\u30bf\u30f3\u30c0\u30fc\u30c9<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a7f2cfc elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"a7f2cfc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">\u65b0\u767b\u5834\u3001Atlas CI<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8fa7f2b elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"8fa7f2b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">\u7af6\u5408\u5206\u6790\u696d\u52d9\u306e80\uff05\u306f\u3001\u4f9d\u7136\u3068\u3057\u3066\u624b\u4f5c\u696d\u306b\u4f9d\u5b58\u3057\u3066\u3044\u307e\u3059\u3002<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-28a0994 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"28a0994\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">\u30c7\u30fc\u30bf\u306e\u53ce\u96c6\u30fb\u96c6\u7d04\u3001\u691c\u8a3c\u3001\u305d\u3057\u3066\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u5909\u63db\u306b\u591a\u304f\u306e\u6642\u9593\u304c\u8cbb\u3084\u3055\u308c\u308b\u305f\u3081\u3001\u5206\u6790\u3084\u89e3\u91c8\u306b\u5145\u3066\u3089\u308c\u308b\u6642\u9593\u306f\u308f\u305a\u304b20\uff05\u3057\u304b\u3042\u308a\u307e\u305b\u3093\u3002<\/p>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e167812 e-con-full e-flex e-con e-child\" data-id=\"e167812\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-e80941a e-con-full e-flex e-con e-child\" data-id=\"e80941a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-1ce5db1 e-grid e-con-full e-con e-child\" data-id=\"1ce5db1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-e3a68c0 e-con-full stat-col e-flex elementor-invisible e-con e-child\" data-id=\"e3a68c0\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInRight&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-78b7b2d e-con-full e-flex e-con e-child\" data-id=\"78b7b2d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-34e9544 e-con-full e-flex e-con e-child\" data-id=\"34e9544\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f9a43b7 elementor-widget elementor-widget-counter\" data-id=\"f9a43b7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"500\" data-to-value=\"2\" data-from-value=\"0\" data-delimiter=\",\">0<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">\u9031\u9593<\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3ddea5e elementor-widget elementor-widget-text-editor\" data-id=\"3ddea5e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>1\u3064\u306e\u5b66\u4f1a\u30ec\u30dd\u30fc\u30c8\u306e\u4f5c\u6210\u306b\u8981\u3059\u308b\u6642\u9593<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0f514b1 e-con-full stat-col e-flex elementor-invisible e-con e-child\" data-id=\"0f514b1\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInRight&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-7cf3fe6 e-con-full e-flex e-con e-child\" data-id=\"7cf3fe6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-70923ca e-con-full e-flex e-con e-child\" data-id=\"70923ca\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-704d53e elementor-widget elementor-widget-counter\" data-id=\"704d53e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"1500\" data-to-value=\"20\" data-from-value=\"0\" data-delimiter=\",\">0<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">+<\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0b8e3bd elementor-widget elementor-widget-text-editor\" data-id=\"0b8e3bd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>20\u793e\/\u500b \u4ee5\u4e0a\u306e\u5916\u90e8\u696d\u8005\u3084\u30c4\u30fc\u30eb\u3092\u904b\u7528\u3057\u3066\u304a\u308a\u3001\u7d71\u5408\u306e\u5fc5\u8981\u6027\u304c\u9ad8\u307e\u3063\u3066\u3044\u307e\u3059<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3e02ad2 e-con-full stat-col e-flex elementor-invisible e-con e-child\" data-id=\"3e02ad2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInRight&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-0869bb5 e-con-full e-flex e-con e-child\" data-id=\"0869bb5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-207ad52 e-con-full e-flex e-con e-child\" data-id=\"207ad52\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-495db88 elementor-widget elementor-widget-counter\" data-id=\"495db88\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"50\" data-from-value=\"0\" data-delimiter=\",\">0<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">%<\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-03e6b74 elementor-widget elementor-widget-text-editor\" data-id=\"03e6b74\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u30c1\u30fc\u30e0\u306e\u696d\u52d9\u6642\u9593\u306e50\uff05\u304c\u6708\u6b21\u30ec\u30dd\u30fc\u30c8\u306e\u4f5c\u6210\u306b\u8cbb\u3084\u3055\u308c\u3066\u3044\u307e\u3059<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f7fd3a0 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"f7fd3a0\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-6e25e64 e-con-full e-flex e-con e-child\" data-id=\"6e25e64\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-19fb814 e-con-full e-flex e-con e-child\" data-id=\"19fb814\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b81c3b7 e-con-full e-flex e-con e-child\" data-id=\"b81c3b7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-49abce6 elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"49abce6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Layer_1\" viewBox=\"0 0 31 30\"><path d=\"M19.5,19.52c-5.6-.97-7.39-2.77-8.37-8.37-.15-.83-1.35-.83-1.49,0-.97,5.6-2.77,7.39-8.37,8.37-.83.15-.83,1.35,0,1.49,5.6.97,7.39,2.77,8.37,8.37.15.83,1.35.83,1.49,0,.97-5.6,2.77-7.39,8.37-8.37.83-.15.83-1.35,0-1.49Z\" fill=\"CurrentColor\"><\/path><path d=\"M29.94,13.72c-3.64-.63-4.8-1.8-5.44-5.44-.09-.54-.87-.54-.97,0-.63,3.64-1.8,4.8-5.44,5.44-.54.09-.54.87,0,.97,3.64.63,4.8,1.8,5.44,5.44.09.54.87.54.97,0,.63-3.64,1.8-4.8,5.44-5.44.54-.09.54-.87,0-.97Z\" fill=\"CurrentColor\"><\/path><path d=\"M10.07,4.43c2.37.41,3.12,1.17,3.53,3.53.06.35.57.35.63,0,.41-2.37,1.17-3.12,3.53-3.53.35-.06.35-.57,0-.63-2.37-.41-3.12-1.17-3.53-3.53-.06-.35-.57-.35-.63,0-.41,2.37-1.17,3.12-3.53,3.53-.35.06-.35.57,0,.63Z\" fill=\"CurrentColor\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-59d9b73 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"59d9b73\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Norstella Atlas AI<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4152aeb elementor-widget elementor-widget-text-editor\" data-id=\"4152aeb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u30a8\u30d0\u30ea\u30e5\u30a8\u30fc\u30c8\u306e\u89aa\u4f1a\u793e\u3067\u3042\u308b\u30ce\u30fc\u30b9\u30c6\u30e9\u30b0\u30eb\u30fc\u30d7\u306eAI\u57fa\u76e4\u3092\u6d3b\u7528\u3057\u305f Atlas \u304c\u3001\u30c7\u30fc\u30bf\u306e\u53ce\u96c6\u30fb\u7d71\u5408\u304b\u3089\u30ec\u30dd\u30fc\u30c8\u4f5c\u6210\u307e\u3067\u3092\u62c5\u3046\u3053\u3068\u3067\u3001\u30e6\u30fc\u30b6\u30fc\u306f\u3088\u308a\u4fa1\u5024\u306e\u9ad8\u3044\u5206\u6790\u3084\u6226\u7565\u7684\u306a\u63d0\u8a00\u306b\u6ce8\u529b\u3067\u304d\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1266f89 atlas-hero-bg elementor-widget elementor-widget-html\" data-id=\"1266f89\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"atlas-hero-bg\">\r\n  <canvas id=\"atlasHeroCanvas2\"><\/canvas> <!-- CHANGE ID HERE -->\r\n<\/div>\r\n\r\n<style>\r\n.atlas-hero-bg{\r\n  position:absolute;\r\n  inset:0;\r\n  width:100%;\r\n  height:100%;\r\n  border-radius: 5px;\r\n  overflow:hidden;\r\n  background:#370069;\r\n  background:radial-gradient(120% 120% at 50% 0%, #370069 0%, #1a0033 50%, #0d0016 100%);\r\n  z-index:0;\r\n}\r\n.atlas-hero-bg canvas{\r\n  position:absolute;\r\n  inset:0;\r\n  width:100%;\r\n  height:100%;\r\n  display:block;\r\n}\r\n<\/style>\r\n\r\n<script>\r\n(function(){\r\n  var canvas = document.getElementById('atlasHeroCanvas2'); \/\/ CHANGE ID HERE\r\n  if(!canvas) return;\r\n  var ctx = canvas.getContext('2d');\r\n  var W, H, DPR, nodes = [], pulses = [], t = 0;\r\n  var rafId = null;\r\n  var running = false;\r\n\r\n  \/\/ Gating flags: the loop only runs when BOTH are true.\r\n  var inViewport = false;   \/\/ set by IntersectionObserver\r\n  var tabVisible = !document.hidden;\r\n\r\n  var reduceMotion = window.matchMedia &&\r\n    window.matchMedia('(prefers-reduced-motion: reduce)').matches;\r\n\r\n  var COLORS = {\r\n    darkPurple: [55, 0, 105],\r\n    midPurple:  [100, 0, 175],\r\n    lightPurple:[135, 75, 255],\r\n    teal:       [0, 215, 205]\r\n  };\r\n  var palette = [COLORS.darkPurple, COLORS.midPurple, COLORS.midPurple, COLORS.lightPurple];\r\n\r\n  function rgba(c, a){ return 'rgba(' + c[0] + ',' + c[1] + ',' + c[2] + ',' + a + ')'; }\r\n\r\n  function resize(){\r\n    DPR = Math.min(window.devicePixelRatio || 1, 2);\r\n    W = canvas.offsetWidth;\r\n    H = canvas.offsetHeight;\r\n    canvas.width = W * DPR;\r\n    canvas.height = H * DPR;\r\n    ctx.setTransform(DPR, 0, 0, DPR, 0, 0);\r\n    buildNodes();\r\n    if(reduceMotion) renderStaticFrame();\r\n  }\r\n\r\n  function buildNodes(){\r\n    nodes = [];\r\n    var density = Math.round((W * H) \/ 22000);\r\n    density = Math.max(34, Math.min(72, density));\r\n    for(var i = 0; i < density; i++){\r\n      nodes.push({\r\n        x: Math.random() * W,\r\n        y: Math.random() * H,\r\n        vx: (Math.random() - 0.5) * 0.25,\r\n        vy: (Math.random() - 0.5) * 0.25,\r\n        r: Math.random() * 1.8 + 1.1,\r\n        c: palette[Math.floor(Math.random() * palette.length)],\r\n        tw: Math.random() * Math.PI * 2\r\n      });\r\n    }\r\n  }\r\n\r\n  function spawnPulse(){\r\n    if(nodes.length < 2) return;\r\n    var a = nodes[Math.floor(Math.random() * nodes.length)];\r\n    var near = [];\r\n    for(var i = 0; i < nodes.length; i++){\r\n      var b = nodes[i];\r\n      if(b === a) continue;\r\n      var dx = a.x - b.x, dy = a.y - b.y;\r\n      var d = Math.sqrt(dx*dx + dy*dy);\r\n      if(d < 170) near.push(b);\r\n    }\r\n    if(!near.length) return;\r\n    var target = near[Math.floor(Math.random() * near.length)];\r\n    pulses.push({ from:a, to:target, p:0, speed: 0.012 + Math.random()*0.02, c: a.c });\r\n  }\r\n\r\n  var CONNECT = 150;\r\n\r\n  function drawNodesAndLines(){\r\n    for(var i = 0; i < nodes.length; i++){\r\n      for(var j = i + 1; j < nodes.length; j++){\r\n        var a = nodes[i], b = nodes[j];\r\n        var dx = a.x - b.x, dy = a.y - b.y;\r\n        var d = Math.sqrt(dx*dx + dy*dy);\r\n        if(d < CONNECT){\r\n          var alpha = (1 - d \/ CONNECT) * 0.45;\r\n          ctx.beginPath();\r\n          ctx.moveTo(a.x, a.y);\r\n          ctx.lineTo(b.x, b.y);\r\n          ctx.strokeStyle = rgba(COLORS.lightPurple, alpha);\r\n          ctx.lineWidth = 0.6;\r\n          ctx.stroke();\r\n        }\r\n      }\r\n    }\r\n    for(var i = 0; i < nodes.length; i++){\r\n      var n = nodes[i];\r\n      var tw = reduceMotion ? 0.8 : (0.55 + 0.45 * Math.sin(t * 0.02 + n.tw));\r\n      ctx.beginPath();\r\n      ctx.arc(n.x, n.y, n.r, 0, Math.PI * 2);\r\n      ctx.fillStyle = rgba(n.c, 0.85 * tw);\r\n      ctx.fill();\r\n      ctx.beginPath();\r\n      ctx.arc(n.x, n.y, n.r * 3.2, 0, Math.PI * 2);\r\n      ctx.fillStyle = rgba(n.c, 0.15 * tw);\r\n      ctx.fill();\r\n    }\r\n  }\r\n\r\n  function renderStaticFrame(){\r\n    ctx.clearRect(0, 0, W, H);\r\n    drawNodesAndLines();\r\n  }\r\n\r\n  function draw(){\r\n    if(!running) return;\r\n    t += 1;\r\n    ctx.clearRect(0, 0, W, H);\r\n\r\n    for(var i = 0; i < nodes.length; i++){\r\n      var n = nodes[i];\r\n      n.x += n.vx; n.y += n.vy;\r\n      if(n.x < -20) n.x = W + 20;\r\n      if(n.x > W + 20) n.x = -20;\r\n      if(n.y < -20) n.y = H + 20;\r\n      if(n.y > H + 20) n.y = -20;\r\n    }\r\n\r\n    for(var i = 0; i < nodes.length; i++){\r\n      for(var j = i + 1; j < nodes.length; j++){\r\n        var a = nodes[i], b = nodes[j];\r\n        var dx = a.x - b.x, dy = a.y - b.y;\r\n        var d = Math.sqrt(dx*dx + dy*dy);\r\n        if(d < CONNECT){\r\n          var alpha = (1 - d \/ CONNECT) * 0.45;\r\n          ctx.beginPath();\r\n          ctx.moveTo(a.x, a.y);\r\n          ctx.lineTo(b.x, b.y);\r\n          ctx.strokeStyle = rgba(COLORS.lightPurple, alpha);\r\n          ctx.lineWidth = 0.6;\r\n          ctx.stroke();\r\n        }\r\n      }\r\n    }\r\n\r\n    if(Math.random() < 0.04) spawnPulse();\r\n    for(var i = pulses.length - 1; i >= 0; i--){\r\n      var pu = pulses[i];\r\n      pu.p += pu.speed;\r\n      if(pu.p >= 1){ pulses.splice(i, 1); continue; }\r\n      var x = pu.from.x + (pu.to.x - pu.from.x) * pu.p;\r\n      var y = pu.from.y + (pu.to.y - pu.from.y) * pu.p;\r\n      var fade = Math.sin(pu.p * Math.PI);\r\n      ctx.beginPath();\r\n      ctx.arc(x, y, 2.4, 0, Math.PI * 2);\r\n      ctx.fillStyle = rgba(pu.c, 1.0 * fade);\r\n      ctx.fill();\r\n      ctx.beginPath();\r\n      ctx.arc(x, y, 6, 0, Math.PI * 2);\r\n      ctx.fillStyle = rgba(pu.c, 0.35 * fade);\r\n      ctx.fill();\r\n    }\r\n\r\n    for(var i = 0; i < nodes.length; i++){\r\n      var n = nodes[i];\r\n      var tw = 0.55 + 0.45 * Math.sin(t * 0.02 + n.tw);\r\n      ctx.beginPath();\r\n      ctx.arc(n.x, n.y, n.r, 0, Math.PI * 2);\r\n      ctx.fillStyle = rgba(n.c, 0.85 * tw);\r\n      ctx.fill();\r\n      ctx.beginPath();\r\n      ctx.arc(n.x, n.y, n.r * 3.2, 0, Math.PI * 2);\r\n      ctx.fillStyle = rgba(n.c, 0.15 * tw);\r\n      ctx.fill();\r\n    }\r\n\r\n    rafId = requestAnimationFrame(draw);\r\n  }\r\n\r\n  \/\/ Loop runs only when in viewport AND tab visible AND motion allowed.\r\n  function updateRunState(){\r\n    var shouldRun = inViewport && tabVisible && !reduceMotion;\r\n    if(shouldRun && !running){\r\n      running = true;\r\n      rafId = requestAnimationFrame(draw);\r\n    } else if(!shouldRun && running){\r\n      running = false;\r\n      if(rafId) cancelAnimationFrame(rafId);\r\n      rafId = null;\r\n    }\r\n  }\r\n\r\n  document.addEventListener('visibilitychange', function(){\r\n    tabVisible = !document.hidden;\r\n    updateRunState();\r\n  });\r\n\r\n  \/\/ Pause\/resume based on whether the canvas is on screen.\r\n  if('IntersectionObserver' in window){\r\n    var io = new IntersectionObserver(function(entries){\r\n      for(var i = 0; i < entries.length; i++){\r\n        inViewport = entries[i].isIntersecting;\r\n      }\r\n      updateRunState();\r\n    }, { threshold: 0 }); \/\/ any sliver visible counts\r\n    io.observe(canvas);\r\n  } else {\r\n    \/\/ Older browsers with no IntersectionObserver: just run normally.\r\n    inViewport = true;\r\n  }\r\n\r\n  if(window.matchMedia){\r\n    var mq = window.matchMedia('(prefers-reduced-motion: reduce)');\r\n    var onChange = function(e){\r\n      reduceMotion = e.matches;\r\n      if(reduceMotion){\r\n        running = false;\r\n        if(rafId) cancelAnimationFrame(rafId);\r\n        rafId = null;\r\n        renderStaticFrame();\r\n      } else {\r\n        updateRunState();\r\n      }\r\n    };\r\n    if(mq.addEventListener) mq.addEventListener('change', onChange);\r\n    else if(mq.addListener) mq.addListener(onChange);\r\n  }\r\n\r\n  resize();\r\n  if(reduceMotion){\r\n    renderStaticFrame();\r\n  } else {\r\n    updateRunState();\r\n  }\r\n\r\n  window.addEventListener('resize', resize);\r\n})();\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3cb08fb e-con-full e-flex e-con e-parent\" data-id=\"3cb08fb\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_privacy_mode&quot;:&quot;yes&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-08f70ab atlas-hero-bg elementor-widget elementor-widget-html\" data-id=\"08f70ab\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"atlas-hero-bg\">\r\n  <canvas id=\"atlasHeroCanvas3\"><\/canvas>\r\n<\/div>\r\n\r\n<style>\r\n.atlas-hero-bg{\r\n  position:absolute;\r\n  inset:0;\r\n  width:100%;\r\n  height:100%;\r\n  border-radius: 5px;\r\n  overflow:hidden;\r\n  background:#370069;\r\n  background:radial-gradient(120% 120% at 50% 0%, #370069 0%, #1a0033 50%, #0d0016 100%);\r\n  z-index:0;\r\n}\r\n.atlas-hero-bg canvas{\r\n  position:absolute;\r\n  inset:0;\r\n  width:100%;\r\n  height:100%;\r\n  display:block;\r\n}\r\n<\/style>\r\n\r\n<script>\r\n(function(){\r\n  var canvas = document.getElementById('atlasHeroCanvas3');\r\n  if(!canvas) return;\r\n  var ctx = canvas.getContext('2d');\r\n  var W, H, DPR, nodes = [], pulses = [], t = 0;\r\n  var rafId = null;\r\n  var running = false;\r\n\r\n  var inViewport = false;\r\n  var tabVisible = !document.hidden;\r\n\r\n  var reduceMotion = window.matchMedia &&\r\n    window.matchMedia('(prefers-reduced-motion: reduce)').matches;\r\n\r\n  var COLORS = {\r\n    darkPurple: [55, 0, 105],\r\n    midPurple:  [100, 0, 175],\r\n    lightPurple:[135, 75, 255],\r\n    teal:       [0, 215, 205]\r\n  };\r\n  var palette = [COLORS.darkPurple, COLORS.midPurple, COLORS.midPurple, COLORS.lightPurple];\r\n\r\n  function rgba(c, a){ return 'rgba(' + c[0] + ',' + c[1] + ',' + c[2] + ',' + a + ')'; }\r\n\r\n  function resize(){\r\n    DPR = Math.min(window.devicePixelRatio || 1, 2);\r\n    W = canvas.offsetWidth;\r\n    H = canvas.offsetHeight;\r\n    canvas.width = W * DPR;\r\n    canvas.height = H * DPR;\r\n    ctx.setTransform(DPR, 0, 0, DPR, 0, 0);\r\n    buildNodes();\r\n    if(reduceMotion) renderStaticFrame();\r\n  }\r\n\r\n  function buildNodes(){\r\n    nodes = [];\r\n    var density = Math.round((W * H) \/ 22000);\r\n    density = Math.max(34, Math.min(72, density));\r\n    for(var i = 0; i < density; i++){\r\n      nodes.push({\r\n        x: Math.random() * W,\r\n        y: Math.random() * H,\r\n        vx: (Math.random() - 0.5) * 0.25,\r\n        vy: (Math.random() - 0.5) * 0.25,\r\n        r: Math.random() * 1.8 + 1.1,\r\n        c: palette[Math.floor(Math.random() * palette.length)],\r\n        tw: Math.random() * Math.PI * 2\r\n      });\r\n    }\r\n  }\r\n\r\n  function spawnPulse(){\r\n    if(nodes.length < 2) return;\r\n    var a = nodes[Math.floor(Math.random() * nodes.length)];\r\n    var near = [];\r\n    for(var i = 0; i < nodes.length; i++){\r\n      var b = nodes[i];\r\n      if(b === a) continue;\r\n      var dx = a.x - b.x, dy = a.y - b.y;\r\n      var d = Math.sqrt(dx*dx + dy*dy);\r\n      if(d < 170) near.push(b);\r\n    }\r\n    if(!near.length) return;\r\n    var target = near[Math.floor(Math.random() * near.length)];\r\n    pulses.push({ from:a, to:target, p:0, speed: 0.012 + Math.random()*0.02, c: a.c });\r\n  }\r\n\r\n  var CONNECT = 150;\r\n\r\n  function drawNodesAndLines(){\r\n    for(var i = 0; i < nodes.length; i++){\r\n      for(var j = i + 1; j < nodes.length; j++){\r\n        var a = nodes[i], b = nodes[j];\r\n        var dx = a.x - b.x, dy = a.y - b.y;\r\n        var d = Math.sqrt(dx*dx + dy*dy);\r\n        if(d < CONNECT){\r\n          var alpha = (1 - d \/ CONNECT) * 0.45;\r\n          ctx.beginPath();\r\n          ctx.moveTo(a.x, a.y);\r\n          ctx.lineTo(b.x, b.y);\r\n          ctx.strokeStyle = rgba(COLORS.lightPurple, alpha);\r\n          ctx.lineWidth = 0.6;\r\n          ctx.stroke();\r\n        }\r\n      }\r\n    }\r\n    for(var i = 0; i < nodes.length; i++){\r\n      var n = nodes[i];\r\n      var tw = reduceMotion ? 0.8 : (0.55 + 0.45 * Math.sin(t * 0.02 + n.tw));\r\n      ctx.beginPath();\r\n      ctx.arc(n.x, n.y, n.r, 0, Math.PI * 2);\r\n      ctx.fillStyle = rgba(n.c, 0.85 * tw);\r\n      ctx.fill();\r\n      ctx.beginPath();\r\n      ctx.arc(n.x, n.y, n.r * 3.2, 0, Math.PI * 2);\r\n      ctx.fillStyle = rgba(n.c, 0.15 * tw);\r\n      ctx.fill();\r\n    }\r\n  }\r\n\r\n  function renderStaticFrame(){\r\n    ctx.clearRect(0, 0, W, H);\r\n    drawNodesAndLines();\r\n  }\r\n\r\n  function draw(){\r\n    if(!running) return;\r\n    t += 1;\r\n    ctx.clearRect(0, 0, W, H);\r\n\r\n    for(var i = 0; i < nodes.length; i++){\r\n      var n = nodes[i];\r\n      n.x += n.vx; n.y += n.vy;\r\n      if(n.x < -20) n.x = W + 20;\r\n      if(n.x > W + 20) n.x = -20;\r\n      if(n.y < -20) n.y = H + 20;\r\n      if(n.y > H + 20) n.y = -20;\r\n    }\r\n\r\n    for(var i = 0; i < nodes.length; i++){\r\n      for(var j = i + 1; j < nodes.length; j++){\r\n        var a = nodes[i], b = nodes[j];\r\n        var dx = a.x - b.x, dy = a.y - b.y;\r\n        var d = Math.sqrt(dx*dx + dy*dy);\r\n        if(d < CONNECT){\r\n          var alpha = (1 - d \/ CONNECT) * 0.45;\r\n          ctx.beginPath();\r\n          ctx.moveTo(a.x, a.y);\r\n          ctx.lineTo(b.x, b.y);\r\n          ctx.strokeStyle = rgba(COLORS.lightPurple, alpha);\r\n          ctx.lineWidth = 0.6;\r\n          ctx.stroke();\r\n        }\r\n      }\r\n    }\r\n\r\n    if(Math.random() < 0.04) spawnPulse();\r\n    for(var i = pulses.length - 1; i >= 0; i--){\r\n      var pu = pulses[i];\r\n      pu.p += pu.speed;\r\n      if(pu.p >= 1){ pulses.splice(i, 1); continue; }\r\n      var x = pu.from.x + (pu.to.x - pu.from.x) * pu.p;\r\n      var y = pu.from.y + (pu.to.y - pu.from.y) * pu.p;\r\n      var fade = Math.sin(pu.p * Math.PI);\r\n      ctx.beginPath();\r\n      ctx.arc(x, y, 2.4, 0, Math.PI * 2);\r\n      ctx.fillStyle = rgba(pu.c, 1.0 * fade);\r\n      ctx.fill();\r\n      ctx.beginPath();\r\n      ctx.arc(x, y, 6, 0, Math.PI * 2);\r\n      ctx.fillStyle = rgba(pu.c, 0.35 * fade);\r\n      ctx.fill();\r\n    }\r\n\r\n    for(var i = 0; i < nodes.length; i++){\r\n      var n = nodes[i];\r\n      var tw = 0.55 + 0.45 * Math.sin(t * 0.02 + n.tw);\r\n      ctx.beginPath();\r\n      ctx.arc(n.x, n.y, n.r, 0, Math.PI * 2);\r\n      ctx.fillStyle = rgba(n.c, 0.85 * tw);\r\n      ctx.fill();\r\n      ctx.beginPath();\r\n      ctx.arc(n.x, n.y, n.r * 3.2, 0, Math.PI * 2);\r\n      ctx.fillStyle = rgba(n.c, 0.15 * tw);\r\n      ctx.fill();\r\n    }\r\n\r\n    rafId = requestAnimationFrame(draw);\r\n  }\r\n\r\n  function updateRunState(){\r\n    var shouldRun = inViewport && tabVisible && !reduceMotion;\r\n    if(shouldRun && !running){\r\n      running = true;\r\n      rafId = requestAnimationFrame(draw);\r\n    } else if(!shouldRun && running){\r\n      running = false;\r\n      if(rafId) cancelAnimationFrame(rafId);\r\n      rafId = null;\r\n    }\r\n  }\r\n\r\n  document.addEventListener('visibilitychange', function(){\r\n    tabVisible = !document.hidden;\r\n    updateRunState();\r\n  });\r\n\r\n  if('IntersectionObserver' in window){\r\n    var io = new IntersectionObserver(function(entries){\r\n      for(var i = 0; i < entries.length; i++){\r\n        inViewport = entries[i].isIntersecting;\r\n      }\r\n      updateRunState();\r\n    }, { threshold: 0 });\r\n    io.observe(canvas);\r\n  } else {\r\n    inViewport = true;\r\n  }\r\n\r\n  if(window.matchMedia){\r\n    var mq = window.matchMedia('(prefers-reduced-motion: reduce)');\r\n    var onChange = function(e){\r\n      reduceMotion = e.matches;\r\n      if(reduceMotion){\r\n        running = false;\r\n        if(rafId) cancelAnimationFrame(rafId);\r\n        rafId = null;\r\n        renderStaticFrame();\r\n      } else {\r\n        updateRunState();\r\n      }\r\n    };\r\n    if(mq.addEventListener) mq.addEventListener('change', onChange);\r\n    else if(mq.addListener) mq.addListener(onChange);\r\n  }\r\n\r\n  \/\/ Fixed: wait for full page load before sizing the canvas\r\n  window.addEventListener('load', function(){\r\n    setTimeout(resize, 500);\r\n    if(reduceMotion){\r\n      renderStaticFrame();\r\n    } else {\r\n      updateRunState();\r\n    }\r\n  });\r\n\r\n  window.addEventListener('resize', resize);\r\n})();\r\n<\/script>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0911134 e-flex e-con-boxed e-con e-child\" data-id=\"0911134\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4927c2c e-n-tabs-mobile elementor-widget elementor-widget-n-tabs\" data-id=\"4927c2c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;tabs_justify_horizontal&quot;:&quot;center&quot;,&quot;horizontal_scroll&quot;:&quot;disable&quot;}\" data-widget_type=\"nested-tabs.default\">\n\t\t\t\t\t\t\t<div class=\"e-n-tabs\" data-widget-number=\"76708908\" aria-label=\"\u30bf\u30d6\u3067\u3059\u3002\u30a8\u30f3\u30bf\u30fc\u30ad\u30fc\u304b\u30b9\u30da\u30fc\u30b9\u30ad\u30fc\u3067\u9805\u76ee\u3092\u958b\u304d\u307e\u3059\u3002\u30a8\u30b9\u30b1\u30fc\u30d7\u30ad\u30fc\u3067\u9589\u3058\u307e\u3059\u3002\u30ab\u30fc\u30bd\u30eb\u30ad\u30fc\u3067\u9805\u76ee\u9593\u3092\u79fb\u52d5\u3057\u307e\u3059\u3002\">\n\t\t\t<div class=\"e-n-tabs-heading\" role=\"tablist\">\n\t\t\t\t\t<button id=\"e-n-tab-title-767089081\" data-tab-title-id=\"e-n-tab-title-767089081\" class=\"e-n-tab-title\" aria-selected=\"true\" data-tab-index=\"1\" role=\"tab\" tabindex=\"0\" aria-controls=\"e-n-tab-content-767089081\" style=\"--n-tabs-title-order: 1;\">\n\t\t\t\t\t\t<span class=\"e-n-tab-title-text\">\n\t\t\t\t\u4ed5\u7d44\u307f\t\t\t<\/span>\n\t\t<\/button>\n\t\t\t\t<button id=\"e-n-tab-title-767089082\" data-tab-title-id=\"e-n-tab-title-767089082\" class=\"e-n-tab-title\" aria-selected=\"false\" data-tab-index=\"2\" role=\"tab\" tabindex=\"-1\" aria-controls=\"e-n-tab-content-767089082\" style=\"--n-tabs-title-order: 2;\">\n\t\t\t\t\t\t<span class=\"e-n-tab-title-text\">\n\t\t\t\t\u79c1\u305f\u3061\u306e\u30b5\u30fc\u30d3\u30b9\t\t\t<\/span>\n\t\t<\/button>\n\t\t\t\t\t<\/div>\n\t\t\t<div class=\"e-n-tabs-content\">\n\t\t\t\t<div id=\"e-n-tab-content-767089081\" role=\"tabpanel\" aria-labelledby=\"e-n-tab-title-767089081\" data-tab-index=\"1\" style=\"--n-tabs-title-order: 1;\" class=\"e-active elementor-element elementor-element-39de73a e-con-full e-flex e-con e-child\" data-id=\"39de73a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-76b2e1e e-con-full e-flex e-con e-child\" data-id=\"76b2e1e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-ed06169 e-con-full e-flex e-con e-child\" data-id=\"ed06169\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d6d8ed4 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"d6d8ed4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u7af6\u5408\u5206\u6790\u306b\u7279\u5316\u3057\u3066\u958b\u767a\u3055\u308c\u305f\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u578bAI\u3002<\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-cab29d9 e-con-full e-flex e-con e-child\" data-id=\"cab29d9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-12b5546 e-con-full e-flex e-con e-child\" data-id=\"12b5546\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cc7c6db elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"cc7c6db\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">\u5f53\u793e\u304c\u9577\u5e74\u306b\u308f\u305f\u308a\u84c4\u7a4d\u3057\u305f\u53b3\u9078\u30c7\u30fc\u30bf\u3068\u3001\u304a\u5ba2\u69d8\u72ec\u81ea\u306e\u30c7\u30fc\u30bf\u3092\u7d71\u5408\u3057\u3001\u554f\u3044\u3092\u60c5\u5831\u30bd\u30fc\u30b9\u4ed8\u304d\u306e\u5b9f\u7528\u7684\u306a\u30a2\u30a6\u30c8\u30d7\u30c3\u30c8\u3078\u3068\u5909\u63db\u3002\u3059\u3050\u306b\u5171\u6709\u30fb\u6d3b\u7528\u3067\u304d\u308b\u6210\u679c\u7269\u3068\u3057\u3066\u63d0\u4f9b\u3057\u307e\u3059\u3002<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0d9591b e-con-full e-flex e-con e-child\" data-id=\"0d9591b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-8cd208c e-con-full e-flex e-con e-child\" data-id=\"8cd208c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-f928d98 e-grid e-con-full e-con e-child\" data-id=\"f928d98\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6251ba0 e-con-full e-flex e-con e-child\" data-id=\"6251ba0\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a5695f7 elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"a5695f7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">\u30c7\u30fc\u30bf\u57fa\u76e4<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b1065f2 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"b1065f2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u30c7\u30fc\u30bf\u53ce\u96c6\u30fb\u7d71\u5408\u4f5c\u696d\u306f\u4e0d\u8981\u3002\u307e\u305a\u306f\u8cea\u554f\u304b\u3089\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6247569 elementor-widget elementor-widget-text-editor\" data-id=\"6247569\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u81ea\u7136\u8a00\u8a9e\u3067\u8cea\u554f\u3059\u308b\u3060\u3051\u3067\u3001Atlas CI \u304c\u3001\u5f53\u793e\u72ec\u81ea\u306e\u30c7\u30fc\u30bf\u3068\u304a\u5ba2\u69d8\u306e\u30c7\u30fc\u30bf\u3092\u6d3b\u7528\u3057\u3001\u30c1\u30fc\u30e0\u306e\u8996\u70b9\u306b\u5373\u3057\u305f\u30a4\u30f3\u30b5\u30a4\u30c8\u3092\u63d0\u4f9b\u3057\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d50d1a4 e-con-full e-flex e-con e-child\" data-id=\"d50d1a4\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2d99eb9 elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"2d99eb9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">\u696d\u52d9\u52b9\u7387\u5316<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4c626fe elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"4c626fe\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u672c\u5f53\u306b\u4fa1\u5024\u3092\u751f\u307f\u51fa\u305920\uff05\u306e\u696d\u52d9\u306b\u96c6\u4e2d\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fa95b22 elementor-widget elementor-widget-text-editor\" data-id=\"fa95b22\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Atlas CI \u306f\u3001\u30c7\u30fc\u30bf\u306e\u53ce\u96c6\u30fb\u6574\u7406\u30fb\u691c\u8a3c\u3068\u3044\u3063\u305f\u624b\u4f5c\u696d\u306e80\uff05\u3092\u524a\u6e1b\u3002\u6210\u679c\u306b\u3064\u306a\u304c\u308b\u5206\u6790\u3084\u6226\u7565\u7acb\u6848\u306b\u3001\u3088\u308a\u591a\u304f\u306e\u6642\u9593\u3092\u5272\u304f\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e6231d7 e-con-full e-flex e-con e-child\" data-id=\"e6231d7\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c8ccde3 elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"c8ccde3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">AI\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2132948 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"2132948\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u88fd\u85ac\u30fb\u30d0\u30a4\u30aa\u696d\u754c\u306e\u7af6\u5408\u5206\u6790\u306b\u7279\u5316\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7c0ce3b elementor-widget elementor-widget-text-editor\" data-id=\"7c0ce3b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u88fd\u85ac\u696d\u754c\u5411\u3051\u306e\u30c1\u30e3\u30fc\u30c8\u3001\u60c5\u5831\u6e90\u306e\u30aa\u30f3\u30c8\u30ed\u30b8\u30fc\u3001\u30a2\u30bb\u30c3\u30c8\u30fb\u4f01\u696d\u30fb\u30a4\u30d9\u30f3\u30c8\u9593\u306e\u95a2\u9023\u4ed8\u3051\u6a5f\u80fd\u3092\u5099\u3048\u305f Atlas CI \u306f\u3001\u6c4e\u7528AI\u3092\u8ee2\u7528\u3057\u305f\u30c4\u30fc\u30eb\u3067\u306f\u306a\u304f\u3001\u7af6\u5408\u5206\u6790\u696d\u52d9\u306e\u305f\u3081\u306b\u8a2d\u8a08\u3055\u308c\u3066\u3044\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div id=\"e-n-tab-content-767089082\" role=\"tabpanel\" aria-labelledby=\"e-n-tab-title-767089082\" data-tab-index=\"2\" style=\"--n-tabs-title-order: 2;\" class=\" elementor-element elementor-element-1a0622b e-con-full e-flex e-con e-child\" data-id=\"1a0622b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-f95e80b e-con-full e-flex e-con e-child\" data-id=\"f95e80b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-41b3237 e-con-full e-flex e-con e-child\" data-id=\"41b3237\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2d80b8d e-con-full e-flex e-con e-child\" data-id=\"2d80b8d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d35b905 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"d35b905\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Atlas CI \u304c\u8cc7\u6599\u4f5c\u6210\u3092\u62c5\u3044\u3001\u30e6\u30fc\u30b6\u30fc\u306f\u5224\u65ad\u306b\u96c6\u4e2d<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a0fa8d3 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"a0fa8d3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">\u591a\u304f\u306eAI\u30c4\u30fc\u30eb\u304c\u5206\u6790\u3067\u6b62\u307e\u308b\u4e2d\u3001Atlas CI \u306f\u5b9f\u969b\u306b\u6d3b\u7528\u3067\u304d\u308b\u6210\u679c\u7269\u307e\u3067\u63d0\u4f9b\u3057\u307e\u3059\u3002<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-078f63d elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"078f63d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">\n\u7d4c\u55b6\u5c64\u3078\u306e\u5831\u544a\u3001\u7af6\u5408\u5206\u6790\u3001\u30ec\u30dd\u30fc\u30c8\u306a\u3069\u3001\u5fc5\u8981\u306a\u30a2\u30a6\u30c8\u30d7\u30c3\u30c8\u3092\u8cb4\u793e\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306b\u5408\u308f\u305b\u3066\u4f5c\u6210\u3002\u3059\u3079\u3066\u306e\u60c5\u5831\u306b\u51fa\u5178\u3092\u4ed8\u4e0e\u3057\u3001\u900f\u660e\u6027\u3068\u4fe1\u983c\u6027\u3092\u78ba\u4fdd\u3057\u307e\u3059\u3002<\/p>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2d43bf2 e-con-full e-flex e-con e-child\" data-id=\"2d43bf2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-3df6083 e-grid e-con-full e-con e-child\" data-id=\"3df6083\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-9d0fc2e e-con-full e-flex e-con e-child\" data-id=\"9d0fc2e\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7cdb37c elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"7cdb37c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">\u6570\u6642\u9593\u3067\u7af6\u5408\u74b0\u5883\u5206\u6790\u3092\u4f5c\u6210<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b37dfec elementor-widget elementor-widget-text-editor\" data-id=\"b37dfec\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u9069\u5fdc\u75c7\u3001\u958b\u767a\u6bb5\u968e\u3001\u307e\u305f\u306f\u7279\u5b9a\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u6307\u5b9a\u3059\u308b\u3060\u3051\u3067\u3001Atlas CI \u304c\u30ce\u30fc\u30b9\u30c6\u30e9\u306e\u30a4\u30f3\u30c6\u30ea\u30b8\u30a7\u30f3\u30b9\u30ec\u30a4\u30e4\u30fc\u306b\u84c4\u7a4d\u3055\u308c\u305f\u30c7\u30fc\u30bf\u3092\u6d3b\u7528\u3057\u3001\u5206\u6790\u3092\u81ea\u52d5\u3067\u4f5c\u6210\u3002\u3059\u3079\u3066\u306e\u8a18\u8f09\u5185\u5bb9\u306b\u60c5\u5831\u30bd\u30fc\u30b9\u3092\u4ed8\u4e0e\u3057\u305f\u30ec\u30d3\u30e5\u30fc\u53ef\u80fd\u306aPowerPoint\u5f62\u5f0f\u3067\u63d0\u4f9b\u3057\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e737c37 e-con-full e-flex e-con e-child\" data-id=\"e737c37\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cf5a40b elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"cf5a40b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">\u30b9\u30af\u30ec\u30a4\u30d4\u30f3\u30b0\u3057\u305f\u8981\u7d04\u3067\u306f\u306a\u304f\u3001\u69cb\u9020\u5316\u3055\u308c\u305f\u533b\u85ac\u54c1\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9933b5 elementor-widget elementor-widget-text-editor\" data-id=\"f9933b5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u81e8\u5e8a\u958b\u767a\u3001\u5546\u696d\u5316\u3001\u5e02\u5834\u30a2\u30af\u30bb\u30b9\u306b\u95a2\u3059\u308b\u30c7\u30fc\u30bf\u3092\u3001\u30ce\u30fc\u30b9\u30c6\u30e9\u72ec\u81ea\u306e\u30c7\u30fc\u30bf\u57fa\u76e4\u304b\u3089\u7d71\u5408\u3002\u81e8\u5e8a\u30c7\u30fc\u30bf\u306f\u30b5\u30a4\u30c8\u30e9\u30a4\u30f3\u3001\u5546\u696d\u30c7\u30fc\u30bf\u306f\u30a8\u30d0\u30ea\u30e5\u30a8\u30fc\u30c8\u3001\u30da\u30a4\u30e4\u30fc\u30a4\u30f3\u30b5\u30a4\u30c8\u306fMMIT\u306e\u60c5\u5831\u3092\u6d3b\u7528\u3057\u3001\u672c\u6765\u3067\u3042\u308c\u3070\u6570\u65e5\u3092\u8981\u3059\u308b\u533b\u85ac\u54c1\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3092\u6570\u5206\u3067\u4f5c\u6210\u3057\u307e\u3059\u3002\u3059\u3079\u3066\u306e\u60c5\u5831\u306b\u51fa\u5178\u3092\u660e\u8a18\u3057\u3066\u3044\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ac0ae49 e-con-full e-flex e-con e-child\" data-id=\"ac0ae49\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-46902e6 elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"46902e6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">\u30ab\u30bf\u30ea\u30b9\u30c8\u3092\u898b\u9003\u3055\u306a\u3044\u30bf\u30a4\u30e0\u30e9\u30a4\u30f3<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-42d5865 elementor-widget elementor-widget-text-editor\" data-id=\"42d5865\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u8a66\u9a13\u7d50\u679c\u306e\u516c\u8868\u3001\u898f\u5236\u5f53\u5c40\u3078\u306e\u7533\u8acb\u3001\u88fd\u54c1\u4e0a\u5e02\u306a\u3069\u3001\u6cbb\u7642\u9818\u57df\u5168\u4f53\u306e\u91cd\u8981\u30a4\u30d9\u30f3\u30c8\u3092\u8ffd\u8de1\u3002\u95a2\u9023\u3059\u308b\u30a2\u30bb\u30c3\u30c8\u3001\u4f01\u696d\u3001\u30a4\u30d9\u30f3\u30c8\u3092\u7d10\u3065\u3051\u305f\u6574\u7406\u6e08\u307f\u306e\u30bf\u30a4\u30e0\u30e9\u30a4\u30f3\u3068\u3057\u3066\u63d0\u4f9b\u3057\u3001\u305d\u306e\u307e\u307e\u30d6\u30ea\u30fc\u30d5\u30a3\u30f3\u30b0\u8cc7\u6599\u306b\u6d3b\u7528\u3067\u304d\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f37b33c e-con-full e-flex e-con e-child\" data-id=\"f37b33c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e380061 elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"e380061\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">\u30a8\u30b0\u30bc\u30af\u30c6\u30a3\u30d6\u30d6\u30ea\u30fc\u30d5\u30a3\u30f3\u30b0\u3092\u8fc5\u901f\u306b\u4f5c\u6210<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-814cbcd elementor-widget elementor-widget-text-editor\" data-id=\"814cbcd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Norstella Atlas CI \u304c\u30d6\u30ea\u30fc\u30d5\u30a3\u30f3\u30b0\u8cc7\u6599\u306e\u4f5c\u6210\u3092\u62c5\u3044\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u306f\u30c7\u30fc\u30bf\u306e\u89e3\u91c8\u3068\u6226\u7565\u7684\u306a\u63d0\u8a00\u306b\u96c6\u4e2d\u3067\u304d\u307e\u3059\u3002\u60c5\u5831\u306e\u53ce\u96c6\u30fb\u6574\u7406\u306fAI\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u304c\u62c5\u5f53\u3057\u3001\u6700\u7d42\u7684\u306a\u5224\u65ad\u306f\u30e6\u30fc\u30b6\u30fc\u304c\u884c\u3044\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7d16333 e-con-full e-flex e-con e-parent\" data-id=\"7d16333\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_privacy_mode&quot;:&quot;yes&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-6ca0cb1 e-flex e-con-boxed e-con e-child\" data-id=\"6ca0cb1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6510f5f elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"6510f5f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Atlas CI \u306b\u542b\u307e\u308c\u308b\u6a5f\u80fd<\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-59a3ee3 e-con-full e-flex e-con e-child\" data-id=\"59a3ee3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ec4eb29 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"ec4eb29\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\"><b>\u88fd\u85ac\u30fb\u30d0\u30a4\u30aa\u533b\u85ac\u54c1\u696d\u754c\u304c\u4fe1\u983c\u3059\u308b\u30c7\u30fc\u30bf\u3092\u57fa\u76e4\u306b<\/b><br>\nAtlas CI \u306f\u3001\u5f53\u793e\u30b0\u30eb\u30fc\u30d7\u5168\u4f53\u306730\u5e74\u4ee5\u4e0a\u306b\u308f\u305f\u308a\u69cb\u7bc9\u3057\u3066\u304d\u305f\u3001\u5c02\u9580\u5bb6\u76e3\u4fee\u306e\u9ad8\u54c1\u8cea\u306a\u7d71\u5408\u30c7\u30fc\u30bf\u30ec\u30a4\u30af\u4e0a\u3067\u7a3c\u50cd\u3057\u3066\u3044\u307e\u3059\u3002\u6a19\u6e96\u5316\u3055\u308c\u305f\u76f8\u4e92\u904b\u7528\u6027\u306e\u9ad8\u3044\u30c7\u30fc\u30bf\u57fa\u76e4\u306b\u3088\u308a\u3001\u4ed6\u3067\u306f\u5f97\u3089\u308c\u306a\u3044\u6df1\u3044\u30a4\u30f3\u30b5\u30a4\u30c8\u3068\u78ba\u304b\u306a\u4fe1\u983c\u6027\u3092\u63d0\u4f9b\u3057\u307e\u3059\u3002\u30b5\u30a4\u30c8\u3068\u78ba\u304b\u306a\u4fe1\u983c\u6027\u3092\u63d0\u4f9b\u3057\u307e\u3059\u3002<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fad0c23 elementor-laptop-align-center elementor-widget elementor-widget-button\" data-id=\"fad0c23\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#contactform\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-chevron-down\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">\u8a73\u7d30\u3092\u898b\u308b<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e1d1652 e-con-full e-flex e-con e-child\" data-id=\"e1d1652\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-72bcc29 e-con-full e-flex e-con e-child\" data-id=\"72bcc29\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-3c81ddf e-grid e-con-full e-con e-child\" data-id=\"3c81ddf\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-d8d941d e-con-full e-flex e-con e-child\" data-id=\"d8d941d\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-36e3eb3 elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"36e3eb3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Trials<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6b158de elementor-widget elementor-widget-counter\" data-id=\"6b158de\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"500\" data-to-value=\"590\" data-from-value=\"0\" data-delimiter=\",\">0<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">K+ <\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-544b9e3 elementor-widget elementor-widget-text-editor\" data-id=\"544b9e3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u3059\u3079\u3066\u306e\u56de\u7b54\u306f\u3001\u95a2\u9023\u3059\u308b\u60c5\u5831\u6e90\u3068\u72ec\u81ea\u30c7\u30fc\u30bf\u306b\u57fa\u3065\u3044\u3066\u751f\u6210\u3055\u308c\u3066\u304a\u308a\u3001\u30cf\u30eb\u30b7\u30cd\u30fc\u30b7\u30e7\u30f3\u306e\u6291\u5236\u306b\u5411\u3051\u3066\u53b3\u683c\u306a\u691c\u8a3c\u304c\u884c\u308f\u308c\u3066\u3044\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7077691 e-con-full e-flex e-con e-child\" data-id=\"7077691\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a00156f elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"a00156f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">\u533b\u85ac\u54c1<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a324819 elementor-widget elementor-widget-counter\" data-id=\"a324819\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"500\" data-to-value=\"47\" data-from-value=\"0\" data-delimiter=\",\">0<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">K+<\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1bab7a4 elementor-widget elementor-widget-text-editor\" data-id=\"1bab7a4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u30a2\u30bb\u30c3\u30c8\u3001\u9069\u5fdc\u75c7\u3001\u30b9\u30c6\u30fc\u30af\u30db\u30eb\u30c0\u30fc\u306e\u91cd\u8981\u5ea6\u306b\u5fdc\u3058\u3066\u30a2\u30a6\u30c8\u30d7\u30c3\u30c8\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3002\u91cd\u8981\u306a\u30b7\u30b0\u30ca\u30eb\u3092\u898b\u9003\u3059\u3053\u3068\u306a\u304f\u3001\u4e0d\u8981\u306a\u60c5\u5831\u3092\u52b9\u679c\u7684\u306b\u6392\u9664\u3057\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-57e1b6b e-con-full e-flex e-con e-child\" data-id=\"57e1b6b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-83e12c7 elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"83e12c7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">\u30a4\u30d9\u30f3\u30c8&amp;\u30ab\u30bf\u30ea\u30b9\u30c8<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c438562 elementor-widget elementor-widget-counter\" data-id=\"c438562\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"500\" data-to-value=\"1.1\" data-from-value=\"0\" data-delimiter=\",\">0<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">m+<\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-305da48 elementor-widget elementor-widget-text-editor\" data-id=\"305da48\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u7de8\u96c6\u53ef\u80fd\u306aPowerPoint\u5f62\u5f0f\u3067\u76f4\u63a5\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3067\u304d\u308b\u305f\u3081\u3001\u518d\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u4f5c\u696d\u306f\u4e0d\u8981\u3002\u3088\u308a\u91cd\u8981\u306a\u696d\u52d9\u306b\u6642\u9593\u3092\u6d3b\u7528\u3067\u304d\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-53820b2 e-con-full e-flex e-con e-child\" data-id=\"53820b2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-69848a9 elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"69848a9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">\u7d44\u7e54<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-48ccbf4 elementor-widget elementor-widget-counter\" data-id=\"48ccbf4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"500\" data-to-value=\"500\" data-from-value=\"0\" data-delimiter=\",\">0<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">K+<\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9f092e8 elementor-widget elementor-widget-text-editor\" data-id=\"9f092e8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u793e\u5185\u306e\u30e9\u30f3\u30c9\u30b9\u30b1\u30fc\u30d7\u8cc7\u6599\u3001\u5b66\u4f1a\u5f8c\u30ec\u30dd\u30fc\u30c8\u3001KOL\u30a4\u30f3\u30bf\u30d3\u30e5\u30fc\u8a18\u9332\u306a\u3069\u3092\u30bb\u30ad\u30e5\u30a2\u306a\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u3078\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u3053\u3068\u3067\u3001\u81ea\u793e\u306e\u6226\u7565\u3084\u6587\u8108\u306b\u5373\u3057\u305f\u56de\u7b54\u3092\u5f97\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c1f31d9 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"c1f31d9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">*As of June 2026<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-bade9d5 e-con-full e-flex e-con e-parent\" data-id=\"bade9d5\" data-element_type=\"container\" data-e-type=\"container\" id=\"demo\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-a74de85 e-con-full e-flex e-con e-child\" data-id=\"a74de85\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7408fcd elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"7408fcd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Norstella Atlas Demo<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f8b4fb5 elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"f8b4fb5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Norstella Atlas CI\u306e\u64cd\u4f5c\u3092\u4f53\u9a13\u3059\u308b<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a83095b elementor-widget__width-initial elementor-widget elementor-widget-html\" data-id=\"a83095b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script async src=\"https:\/\/js.storylane.io\/js\/v2\/storylane.js\" data-verify-origin=\"\"><\/script>\r\n<div class=\"sl-embed\" style=\"position:relative;padding-bottom:calc(48.40% + 25px);width:100%;height:0;transform:scale(1)\">\r\n<iframe loading=\"lazy\" class=\"sl-demo\" src=\"https:\/\/app.storylane.io\/demo\/ce1oqpp1tdlg?embed=inline\" name=\"sl-embed\" allow=\"fullscreen\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%!important;height:100%!important;border:1px solid rgba(63,95,172,0.35);box-shadow: 0px 0px 18px rgba(26, 19, 72, 0.15);border-radius:10px;box-sizing:border-box;\"><\/iframe>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-40c69199 e-flex e-con-boxed e-con e-parent\" data-id=\"40c69199\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_privacy_mode&quot;:&quot;yes&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-7aa615f4 e-con-full e-flex e-con e-child\" data-id=\"7aa615f4\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-3bc78832 e-con-full e-flex e-con e-child\" data-id=\"3bc78832\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;sticky&quot;:&quot;top&quot;,&quot;sticky_offset&quot;:87,&quot;sticky_parent&quot;:&quot;yes&quot;,&quot;background_background&quot;:&quot;classic&quot;,&quot;sticky_on&quot;:[&quot;widescreen&quot;,&quot;desktop&quot;,&quot;laptop&quot;,&quot;tablet&quot;],&quot;sticky_effects_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-185bcea0 elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"185bcea0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Norstella Atlas CI \u304c\u9078\u3070\u308c\u308b\u7406\u7531<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-54908a83 elementor-widget elementor-widget-text-editor\" data-id=\"54908a83\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Norstella Atlas CI \u306f\u3001\u88fd\u85ac\u30fb\u30d0\u30a4\u30aa\u533b\u85ac\u54c1\u696d\u754c\u306e\u5c02\u9580\u5bb6\u306b\u3088\u3063\u3066\u30ad\u30e5\u30ec\u30fc\u30b7\u30e7\u30f3\u30fb\u54c1\u8cea\u7ba1\u7406\u3055\u308c\u305f\u3001\u30ce\u30fc\u30b9\u30c6\u30e9\u72ec\u81ea\u306e\u30c7\u30fc\u30bf\u3092\u57fa\u76e4\u3068\u3057\u3066\u3044\u307e\u3059\u3002\u30c7\u30fc\u30bf\u306f\u69cb\u9020\u5316\u3055\u308c\u3001\u76f8\u4e92\u306b\u95a2\u9023\u4ed8\u3051\u3089\u308c\u3066\u304a\u308a\u3001\u3059\u3079\u3066\u306e\u30a2\u30a6\u30c8\u30d7\u30c3\u30c8\u306b\u306f\u51fa\u5178\u3078\u306e\u30ea\u30f3\u30af\u3092\u660e\u793a\u3002\u624b\u6cd5\u3084\u6839\u62e0\u306f\u900f\u660e\u3067\u3001\u30c7\u30fc\u30bf\u306e\u6b20\u640d\u3082\u96a0\u3059\u3053\u3068\u306a\u304f\u793a\u3057\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7420a672 elementor-widget elementor-widget-global elementor-global-59228 elementor-widget-html\" data-id=\"7420a672\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\r\nfunction setActive() {\r\n  const containers = Array.from(document.querySelectorAll('.anchorcontainer'));\r\n  const buttons = document.querySelectorAll('.anchorbutton, .anchorbuttonright');\r\n  let activeContainer = null;\r\n  containers.forEach(container => {\r\n    if (container.getBoundingClientRect().top <= 300) {\r\n      activeContainer = container;\r\n    }\r\n  });\r\n  if (!activeContainer) {\r\n    activeContainer = containers[0];\r\n  }\r\n  buttons.forEach(b => b.classList.remove('active'));\r\n  if (activeContainer) {\r\n    const btn = document.querySelector(`.anchorbutton[data-target=\"${activeContainer.id}\"], .anchorbuttonright[data-target=\"${activeContainer.id}\"]`);\r\n    if (btn) btn.classList.add('active');\r\n  }\r\n}\r\nwindow.addEventListener('scroll', setActive);\r\nsetActive();\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4a6d952d elementor-align-justify elementor-widget__width-initial anchorbutton elementor-hidden-mobile elementor-widget elementor-widget-button\" data-id=\"4a6d952d\" data-element_type=\"widget\" data-e-type=\"widget\" data-target=\"Accuracy\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#Accuracy\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-arrow-right\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">1. Accuracy-first AI<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-38581fd3 elementor-align-justify elementor-widget__width-initial anchorbutton elementor-hidden-mobile elementor-widget elementor-widget-button\" data-id=\"38581fd3\" data-element_type=\"widget\" data-e-type=\"widget\" data-target=\"Intelligent\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#Intelligent\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-arrow-right\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">2. Intelligent filtering<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-41cc0ad elementor-align-justify elementor-widget__width-initial anchorbutton elementor-hidden-mobile elementor-widget elementor-widget-button\" data-id=\"41cc0ad\" data-element_type=\"widget\" data-e-type=\"widget\" data-target=\"Professional\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#Professional\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-arrow-right\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">3. Professional outputs<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-14f69325 elementor-align-justify elementor-widget__width-initial anchorbutton elementor-hidden-mobile elementor-widget elementor-widget-button\" data-id=\"14f69325\" data-element_type=\"widget\" data-e-type=\"widget\" data-target=\"byod\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#byod\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-arrow-right\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">4. Bring your own data<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2621821f e-con-full e-flex e-con e-child\" data-id=\"2621821f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-69db78a7 e-con-full animated-slow anchorcontainer e-flex elementor-invisible e-con e-child\" data-id=\"69db78a7\" data-element_type=\"container\" data-e-type=\"container\" id=\"Accuracy\" data-settings=\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-57df7f97 elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"57df7f97\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">1. \u6b63\u78ba\u6027\u3092\u6700\u512a\u5148\u306b\u3057\u305fAI<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2814c60b elementor-widget elementor-widget-text-editor\" data-id=\"2814c60b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u3059\u3079\u3066\u306e\u56de\u7b54\u306f\u3001\u95a2\u9023\u4ed8\u3051\u3089\u308c\u305f\u60c5\u5831\u30bd\u30fc\u30b9\u3068\u72ec\u81ea\u30c7\u30fc\u30bf\u306b\u57fa\u3065\u3044\u3066\u751f\u6210\u3055\u308c\u307e\u3059\u3002\u30cf\u30eb\u30b7\u30cd\u30fc\u30b7\u30e7\u30f3\u306e\u6291\u5236\u306b\u5411\u3051\u3066\u3001\u53b3\u683c\u306a\u30c6\u30b9\u30c8\u3068\u691c\u8a3c\u3092\u5b9f\u65bd\u3057\u3066\u3044\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-261a3f3f e-con-full animated-slow anchorcontainer e-flex elementor-invisible e-con e-child\" data-id=\"261a3f3f\" data-element_type=\"container\" data-e-type=\"container\" id=\"Intelligent\" data-settings=\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-51675dbe elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"51675dbe\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">2. \u30a4\u30f3\u30c6\u30ea\u30b8\u30a7\u30f3\u30c8\u306a\u60c5\u5831\u30d5\u30a3\u30eb\u30bf\u30ea\u30f3\u30b0<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3771e7ac elementor-widget elementor-widget-text-editor\" data-id=\"3771e7ac\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u30a2\u30bb\u30c3\u30c8\u3001\u9069\u5fdc\u75c7\u3001\u30b9\u30c6\u30fc\u30af\u30db\u30eb\u30c0\u30fc\u306e\u91cd\u8981\u5ea6\u306a\u3069\u306e\u6761\u4ef6\u306b\u5fdc\u3058\u3066\u30a2\u30a6\u30c8\u30d7\u30c3\u30c8\u3092\u6700\u9069\u5316\u3002\u91cd\u8981\u306a\u30b7\u30b0\u30ca\u30eb\u3092\u898b\u9003\u3059\u3053\u3068\u306a\u304f\u3001\u4e0d\u8981\u306a\u60c5\u5831\u3092\u52b9\u679c\u7684\u306b\u6392\u9664\u3057\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-61efa3fb e-con-full animated-slow anchorcontainer e-flex elementor-invisible e-con e-child\" data-id=\"61efa3fb\" data-element_type=\"container\" data-e-type=\"container\" id=\"Professional\" data-settings=\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7cf18bdf elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"7cf18bdf\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">3. \u30d7\u30ed\u30d5\u30a7\u30c3\u30b7\u30e7\u30ca\u30eb\u54c1\u8cea\u306e\u6210\u679c\u7269<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2938f42 elementor-widget elementor-widget-text-editor\" data-id=\"2938f42\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u7d4c\u55b6\u5c64\u5411\u3051\u30d6\u30ea\u30fc\u30d5\u30a3\u30f3\u30b0\u3001\u7af6\u5408\u74b0\u5883\u5206\u6790\u3001\u5b66\u4f1a\u30ec\u30dd\u30fc\u30c8\u3001\u533b\u85ac\u54c1\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306a\u3069\u3001\u3059\u3050\u306b\u5171\u6709\u30fb\u6d3b\u7528\u3067\u304d\u308b\u6210\u679c\u7269\u3092\u4f5c\u6210\u3002\u3059\u3079\u3066\u306e\u60c5\u5831\u306b\u51fa\u5178\u3092\u4ed8\u4e0e\u3057\u3001\u30ec\u30d3\u30e5\u30fc\u3057\u3084\u3059\u3044\u5f62\u5f0f\u3067\u63d0\u4f9b\u3057\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-478fa2b0 e-con-full animated-slow anchorcontainer e-flex elementor-invisible e-con e-child\" data-id=\"478fa2b0\" data-element_type=\"container\" data-e-type=\"container\" id=\"byod\" data-settings=\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-545d85bc elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"545d85bc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">4. \u81ea\u793e\u30c7\u30fc\u30bf\u3092\u6d3b\u7528\u53ef\u80fd<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-14c7cd89 elementor-widget elementor-widget-text-editor\" data-id=\"14c7cd89\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u793e\u5185\u8cc7\u6599\u3001\u904e\u53bb\u306e\u30ec\u30dd\u30fc\u30c8\u3001KOL\u30a4\u30f3\u30bf\u30d3\u30e5\u30fc\u8a18\u9332\u3001\u6226\u7565\u8cc7\u6599\u306a\u3069\u3092\u5b89\u5168\u306b\u53d6\u308a\u8fbc\u307f\u3001\u30ce\u30fc\u30b9\u30c6\u30e9\u306e\u30c7\u30fc\u30bf\u3068\u7d44\u307f\u5408\u308f\u305b\u3066\u6d3b\u7528\u3067\u304d\u307e\u3059\u3002\u81ea\u793e\u306e\u72b6\u6cc1\u3084\u6226\u7565\u3092\u8e0f\u307e\u3048\u305f\u3001\u3088\u308a\u6587\u8108\u306b\u5373\u3057\u305f\u30a4\u30f3\u30b5\u30a4\u30c8\u3092\u5f97\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1b94d9a5 e-con-full e-flex e-con e-child\" data-id=\"1b94d9a5\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-5cdbab1 e-con-full e-flex e-con e-child\" data-id=\"5cdbab1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-66c3daef elementor-widget__width-inherit elementor-widget elementor-widget-heading\" data-id=\"66c3daef\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h5 class=\"elementor-heading-title elementor-size-default\">\u8abf\u67fb\u306b\u8ffd\u308f\u308c\u308b\u65e5\u3005\u304b\u3089\u3001\u5224\u65ad\u3092\u5c0e\u304f\u696d\u52d9\u3078\u3002<\/h5>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2f2eda96 elementor-widget-laptop__width-initial elementor-widget__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"2f2eda96\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Atlas CI \u304c\u60c5\u5831\u30cb\u30fc\u30ba\u306e60\u301c70\uff05\u306b\u5bfe\u5fdc\u3057\u3001\u30c1\u30fc\u30e0\u306f\u672c\u5f53\u306b\u4fa1\u5024\u3092\u751f\u307f\u51fa\u3059\u5206\u6790\u3068\u610f\u601d\u6c7a\u5b9a\u306b\u6ce8\u529b\u3067\u304d\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1d417a9 e-con-full e-flex e-con e-child\" data-id=\"1d417a9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-70ab6088 elementor-laptop-align-center elementor-widget elementor-widget-button\" data-id=\"70ab6088\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#contactform\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-chevron-right\" viewBox=\"0 0 320 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">\u500b\u5225\u30c7\u30e2\u3092\u4e88\u7d04<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-79d0072 e-con-full e-flex e-con e-parent\" data-id=\"79d0072\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-507ced1 e-flex e-con-boxed e-con e-child\" data-id=\"507ced1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-d9e177e e-con-full e-flex e-con e-child\" data-id=\"d9e177e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-597d6e4 e-con-full e-flex e-con e-child\" data-id=\"597d6e4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2cb40f3 e-con-full e-flex e-con e-child\" data-id=\"2cb40f3\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-e974dc9 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"e974dc9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;,&quot;animation_delay&quot;:200}\">\n\t\t<div class=\"elementor-element elementor-element-ce43086 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"ce43086\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;,&quot;animation_delay&quot;:200}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0eac111 elementor-widget__width-initial elementor-widget elementor-widget-html\" data-id=\"0eac111\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t\n<style>\n@media (prefers-reduced-motion: no-preference){\n  .stream{stroke-dasharray:6 10;animation:flow 2.3s linear infinite}\n  .s2{animation-duration:2.7s}.s3{animation-duration:2.0s}.s4{animation-duration:2.5s}.s5{animation-duration:2.2s}\n  .file{animation:fall 3.4s ease-in infinite}\n  .f2{animation-delay:.5s}.f3{animation-delay:1.4s}.f4{animation-delay:2.1s}.f5{animation-delay:.9s}\n  .typeline{animation:type 6s ease-in-out infinite}\n  .tl2{animation:type 6s ease-in-out infinite .25s}\n  .tl3{animation:type 6s ease-in-out infinite .5s}\n  .bar{transform-box:fill-box;transform-origin:bottom;animation:grow 6s ease-in-out infinite}\n  .b2{animation-delay:.5s}.b3{animation-delay:1s}.b4{animation-delay:1.5s}\n  .cursor{animation:blink 1s step-end infinite}\n}\n@keyframes flow{to{stroke-dashoffset:-160}}\n@keyframes fall{\n  0%{opacity:0;transform:translateY(0)}\n  15%{opacity:.95;transform:translateY(20px)}\n  70%{opacity:.85;transform:translateY(150px)}\n  90%{opacity:0;transform:translateY(185px)}\n  100%{opacity:0;transform:translateY(185px)}\n}\n@keyframes type{0%{transform:scaleX(0)}30%{transform:scaleX(1)}82%{transform:scaleX(1)}100%{transform:scaleX(0)}}\n@keyframes grow{0%{transform:scaleY(0)}28%{transform:scaleY(1)}82%{transform:scaleY(1)}100%{transform:scaleY(0)}}\n@keyframes blink{0%,100%{opacity:1}50%{opacity:0}}\n.typeline,.tl2,.tl3{transform-box:fill-box;transform-origin:left}\n.file{transform-box:fill-box;transform-origin:center}\n<\/style>\n<svg width=\"100%\" viewBox=\"100 0 480 500\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n  <title>Client files fall straight down into the Norstella Atlas assistant along converging flow lines<\/title>\n  <desc>File glyphs drop vertically and fade into a centred assistant panel, with curved flow lines converging into it, while Norstella Atlas types an answer and grows a bar chart.<\/desc>\n  <defs>\n    <linearGradient id=\"v1\" x1=\"0\" y1=\"0\" x2=\"0\" y2=\"1\"><stop offset=\"0%\" stop-color=\"#874BFF\" stop-opacity=\"0\"\/><stop offset=\"45%\" stop-color=\"#874BFF\" stop-opacity=\".9\"\/><stop offset=\"100%\" stop-color=\"#00D7CD\" stop-opacity=\".9\"\/><\/linearGradient>\n    <linearGradient id=\"v2\" x1=\"0\" y1=\"0\" x2=\"0\" y2=\"1\"><stop offset=\"0%\" stop-color=\"#00D7CD\" stop-opacity=\"0\"\/><stop offset=\"45%\" stop-color=\"#00D7CD\" stop-opacity=\".9\"\/><stop offset=\"100%\" stop-color=\"#6400AF\" stop-opacity=\".9\"\/><\/linearGradient>\n    <linearGradient id=\"v3\" x1=\"0\" y1=\"0\" x2=\"0\" y2=\"1\"><stop offset=\"0%\" stop-color=\"#6400AF\" stop-opacity=\"0\"\/><stop offset=\"45%\" stop-color=\"#7F77DD\" stop-opacity=\".9\"\/><stop offset=\"100%\" stop-color=\"#00ACA4\" stop-opacity=\".9\"\/><\/linearGradient>\n  <\/defs>\n  <path class=\"stream\"    d=\"M250 56 C 250 140, 330 180, 340 226\" fill=\"none\" stroke=\"url(#v1)\" stroke-width=\"2.5\" stroke-linecap=\"round\"\/>\n  <path class=\"stream s2\" d=\"M295 56 C 295 150, 335 190, 340 226\" fill=\"none\" stroke=\"url(#v1)\" stroke-width=\"1.5\" stroke-linecap=\"round\" opacity=\".55\"\/>\n  <path class=\"stream s3\" d=\"M340 52 C 340 140, 340 190, 340 226\" fill=\"none\" stroke=\"url(#v2)\" stroke-width=\"2.5\" stroke-linecap=\"round\"\/>\n  <path class=\"stream s4\" d=\"M385 56 C 385 150, 345 190, 340 226\" fill=\"none\" stroke=\"url(#v2)\" stroke-width=\"1.5\" stroke-linecap=\"round\" opacity=\".55\"\/>\n  <path class=\"stream s5\" d=\"M430 56 C 430 140, 350 180, 340 226\" fill=\"none\" stroke=\"url(#v3)\" stroke-width=\"2.5\" stroke-linecap=\"round\"\/>\n  <g class=\"file\" fill=\"none\" stroke=\"#874BFF\" stroke-width=\"1.5\"><rect x=\"237\" y=\"26\" width=\"26\" height=\"32\" rx=\"3\"\/><path d=\"M255 26 v8 h8\"\/><\/g>\n  <g class=\"file f4\" fill=\"none\" stroke=\"#00D7CD\" stroke-width=\"1.5\"><rect x=\"284\" y=\"28\" width=\"22\" height=\"28\" rx=\"3\"\/><path d=\"M300 28 v7 h7\"\/><\/g>\n  <g class=\"file f2\" fill=\"none\" stroke=\"#00ACA4\" stroke-width=\"1.5\"><rect x=\"327\" y=\"26\" width=\"26\" height=\"32\" rx=\"3\"\/><path d=\"M345 26 v8 h8\"\/><\/g>\n  <g class=\"file f5\" fill=\"none\" stroke=\"#7F77DD\" stroke-width=\"1.5\"><rect x=\"374\" y=\"28\" width=\"22\" height=\"28\" rx=\"3\"\/><path d=\"M390 28 v7 h7\"\/><\/g>\n  <g class=\"file f3\" fill=\"none\" stroke=\"#6400AF\" stroke-width=\"1.5\"><rect x=\"417\" y=\"26\" width=\"26\" height=\"32\" rx=\"3\"\/><path d=\"M435 26 v8 h8\"\/><\/g>\n  <rect x=\"130\" y=\"230\" width=\"420\" height=\"240\" rx=\"16\" fill=\"#1c0a3e\" stroke=\"#7F77DD\" stroke-width=\"0.5\"\/>\n  <circle cx=\"162\" cy=\"264\" r=\"12\" fill=\"#874BFF\"\/>\n  <text x=\"162\" y=\"269\" font-size=\"13\" text-anchor=\"middle\" fill=\"#ffffff\" font-family=\"var(--font-sans)\">\u2726<\/text>\n  <text x=\"184\" y=\"268\" font-size=\"13\" fill=\"#9FE1CB\" font-family=\"var(--font-sans)\" font-weight=\"500\">Norstella Atlas<\/text>\n  <rect class=\"typeline\" x=\"184\" y=\"284\" width=\"330\" height=\"7\" rx=\"3.5\" fill=\"#4a3a7a\"\/>\n  <rect class=\"tl2\" x=\"184\" y=\"300\" width=\"280\" height=\"7\" rx=\"3.5\" fill=\"#4a3a7a\"\/>\n  <rect class=\"tl3\" x=\"184\" y=\"316\" width=\"200\" height=\"7\" rx=\"3.5\" fill=\"#4a3a7a\"\/>\n  <rect class=\"cursor\" x=\"388\" y=\"315\" width=\"2\" height=\"9\" fill=\"#00D7CD\"\/>\n  <line x1=\"184\" y1=\"438\" x2=\"516\" y2=\"438\" stroke=\"#4a3a7a\" stroke-width=\"1\"\/>\n  <rect class=\"bar\"  x=\"210\" y=\"368\" width=\"48\" height=\"70\" rx=\"3\" fill=\"#874BFF\"\/>\n  <rect class=\"bar b2\" x=\"288\" y=\"368\" width=\"48\" height=\"70\" rx=\"3\" fill=\"#00D7CD\"\/>\n  <rect class=\"bar b3\" x=\"366\" y=\"368\" width=\"48\" height=\"70\" rx=\"3\" fill=\"#7F77DD\"\/>\n  <rect class=\"bar b4\" x=\"444\" y=\"368\" width=\"48\" height=\"70\" rx=\"3\" fill=\"#00ACA4\"\/>\n<\/svg>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5ccc53d e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"5ccc53d\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;,&quot;animation_delay&quot;:200}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a22d79f elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"a22d79f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">BRING YOUR OWN DATA<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5be158c elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"5be158c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u30ce\u30fc\u30b9\u30c6\u30e9\u306e\u30c7\u30fc\u30bf\u57fa\u76e4\u306b\u3001\u8cb4\u793e\u306a\u3089\u3067\u306f\u306e\u8996\u70b9\u3092\u3002<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-643e25f elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"643e25f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><style>\na {\n    text-decoration: none;\n    color: #464feb;\n}\ntr th, tr td {\n    border: 1px solid #e6e6e6;\n}\ntr th {\n    background-color: #f5f5f5;\n}\n<\/style><\/p><div><div class=\"paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol\">Atlas CI \u306f\u3001\u88fd\u85ac\u30fb\u30d0\u30a4\u30aa\u533b\u85ac\u54c1\u696d\u754c\u306e\u30a2\u30ca\u30ea\u30b9\u30c8\u304c\u9577\u5e74\u306b\u308f\u305f\u308a\u69cb\u7bc9\u30fb\u76e3\u4fee\u3057\u3066\u304d\u305f\u30ce\u30fc\u30b9\u30c6\u30e9\u72ec\u81ea\u306e\u30c7\u30fc\u30bf\u3092\u57fa\u76e4\u3068\u3057\u306a\u304c\u3089\u3001\u304a\u5ba2\u69d8\u72ec\u81ea\u306e\u30c7\u30fc\u30bf\u3084\u30a4\u30f3\u30b5\u30a4\u30c8\u3092\u7d71\u5408\u3057\u3066\u6d3b\u7528\u3067\u304d\u307e\u3059\u3002\u793e\u5185\u58f2\u4e0a\u4e88\u6e2c\u3001KOL\u30a4\u30f3\u30bf\u30d3\u30e5\u30fc\u8a18\u9332\u3001\u72ec\u81ea\u306e\u4eee\u8aac\u3084\u5206\u6790\u30c7\u30fc\u30bf\u306a\u3069\u3092\u5b89\u5168\u306a\u74b0\u5883\u3067\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u53ef\u80fd\u3002\u3053\u308c\u3089\u306e\u30c7\u30fc\u30bf\u306f\u5916\u90e8\u3068\u5171\u6709\u3055\u308c\u308b\u3053\u3068\u306f\u306a\u304f\u3001\u30e2\u30c7\u30eb\u306e\u5b66\u7fd2\u306b\u3082\u4f7f\u7528\u3055\u308c\u307e\u305b\u3093\u3002<\/div><div>\u00a0<\/div><div class=\"paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol\"><strong>\u30a2\u30a6\u30c8\u30d7\u30c3\u30c8\u306b\u306f\u3001\u304a\u5ba2\u69d8\u306e\u30c1\u30fc\u30e0\u306a\u3089\u3067\u306f\u306e\u8996\u70b9\u3084\u6226\u7565\u304c\u53cd\u6620\u3055\u308c\u3001\u696d\u754c\u3067\u4fe1\u983c\u3055\u308c\u308b\u30c7\u30fc\u30bf\u57fa\u76e4\u306e\u4e0a\u306b\u72ec\u81ea\u306e\u30b9\u30c8\u30fc\u30ea\u30fc\u3092\u69cb\u7bc9\u3067\u304d\u307e\u3059\u3002<\/strong><\/div><div>\u00a0<\/div><div class=\"paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol\">\u3053\u308c\u306b\u3088\u308a\u3001\u7af6\u5408\u30a4\u30f3\u30c6\u30ea\u30b8\u30a7\u30f3\u30b9\u30c1\u30fc\u30e0\u304c\u3088\u304f\u62b1\u3048\u308b\u300c\u81ea\u793e\u306e\u60c5\u5831\u306e\u65b9\u304c\u6700\u65b0\u306a\u306e\u306b\u300d\u3068\u3044\u3046\u8ab2\u984c\u3082\u89e3\u6d88\u3002Atlas CI \u3067\u306f\u3001\u6d3b\u7528\u3055\u308c\u308b\u30c7\u30fc\u30bf\u306f\u3059\u3079\u3066\u304a\u5ba2\u69d8\u306e\u3082\u306e\u3067\u3059\u3002<\/div><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8271ad9 e-con-full e-flex e-con e-child\" data-id=\"8271ad9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b1e6755 elementor-widget elementor-widget-heading\" data-id=\"b1e6755\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u7af6\u5408\u5206\u6790\u62c5\u5f53\u8005\u306e90\uff05\u304c\u3001\u81ea\u793e\u30c7\u30fc\u30bf\u3092\u6d3b\u7528\u3067\u304d\u308b\u74b0\u5883\uff08BYOD\uff09\u3092\u91cd\u8981\u306a\u8981\u4ef6\u3068\u3057\u3066\u8a8d\u8b58\u3057\u3066\u3044\u307e\u3059\u3002<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-37bf7e3 elementor-widget elementor-widget-text-editor\" data-id=\"37bf7e3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Norstella VOC research, 2026.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6a7af4f e-con-full e-flex e-con e-parent\" data-id=\"6a7af4f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_privacy_mode&quot;:&quot;yes&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-a1beab1 e-flex e-con-boxed e-con e-child\" data-id=\"a1beab1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-a3d869b e-con-full e-flex e-con e-child\" data-id=\"a3d869b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-808b0d0 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"808b0d0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u304a\u5ba2\u69d8\u306e\u58f0<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b83da24 elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"b83da24\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u88fd\u85ac\u30fb\u30d0\u30a4\u30aa\u533b\u85ac\u54c1\u696d\u754c\u3092\u4ee3\u8868\u3059\u308b\u4f01\u696d\u306e\u5404\u90e8\u9580\u304b\u3089\u4fe1\u983c\u3055\u308c\u3066\u3044\u307e\u3059<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a9f6b71 continuous-scroll elementor-widget-mobile__width-initial elementor-arrows-position-inside elementor-widget elementor-widget-n-carousel\" data-id=\"a9f6b71\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;carousel_items&quot;:[{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;ad050c5&quot;},{&quot;slide_title&quot;:&quot;Slide #2&quot;,&quot;_id&quot;:&quot;5b5a9cc&quot;},{&quot;slide_title&quot;:&quot;Slide #3&quot;,&quot;_id&quot;:&quot;a158440&quot;},{&quot;slide_title&quot;:&quot;Slide #3&quot;,&quot;_id&quot;:&quot;7e667d3&quot;},{&quot;slide_title&quot;:&quot;Slide #3&quot;,&quot;_id&quot;:&quot;9a7290c&quot;}],&quot;slides_to_show&quot;:&quot;2&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;autoplay_speed&quot;:0,&quot;speed&quot;:6000,&quot;offset_sides&quot;:&quot;both&quot;,&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:120,&quot;sizes&quot;:[]},&quot;slides_to_show_tablet&quot;:&quot;1&quot;,&quot;slides_to_scroll_tablet&quot;:&quot;1&quot;,&quot;image_spacing_custom_laptop&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:60,&quot;sizes&quot;:[]},&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:20,&quot;sizes&quot;:[]},&quot;slides_to_show_mobile&quot;:&quot;1&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;,&quot;offset_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:80,&quot;sizes&quot;:[]},&quot;offset_width_widescreen&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;offset_width_laptop&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;offset_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;offset_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;arrows&quot;:&quot;yes&quot;,&quot;image_spacing_custom_widescreen&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"nested-carousel.default\">\n\t\t\t\t\t\t\t<div class=\"e-n-carousel swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Carousel\" dir=\"ltr\">\n\t\t\t<div class=\"swiper-wrapper\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"1\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 5\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-b92fbf9 e-con-full e-flex e-con e-child\" data-id=\"b92fbf9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-187c05d elementor-blockquote--align-left elementor-widget__width-initial elementor-blockquote--skin-quotation elementor-widget elementor-widget-blockquote\" data-id=\"187c05d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"blockquote.default\">\n\t\t\t\t\t\t\t<blockquote class=\"elementor-blockquote\">\n\t\t\t<p class=\"elementor-blockquote__content\">\n\t\t\t\t\u300c\u3053\u306e\u60c5\u5831\u306f\u3001\u79c1\u306e\u3088\u3046\u306a\u30e6\u30fc\u30b6\u30fc\u306b\u3068\u3063\u3066\u975e\u5e38\u306b\u4fa1\u5024\u304c\u3042\u308a\u307e\u3059\u3002\u6700\u5927\u306e\u4fa1\u5024\u306f\u30bf\u30a4\u30e0\u30e9\u30a4\u30f3\u305d\u306e\u3082\u306e\u3067\u306f\u306a\u304f\u3001\u60c5\u5831\u3092\u6574\u7406\u30fb\u7d71\u5408\u3057\u3066\u63d0\u793a\u3057\u3066\u304f\u308c\u308b\u70b9\u3067\u3059\u3002\u300d\t\t\t<\/p>\n\t\t\t\t\t\t\t<div class=\"e-q-footer\">\n\t\t\t\t\t\t\t\t\t\t\t<cite class=\"elementor-blockquote__author\">Head of Market Research &amp; Competitive Intelligence, Large Pharma<\/cite>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/blockquote>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"2\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 5\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ad8f26e e-con-full e-flex e-con e-child\" data-id=\"ad8f26e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cb8bf7e elementor-blockquote--align-left elementor-widget__width-initial elementor-blockquote--skin-quotation elementor-widget elementor-widget-blockquote\" data-id=\"cb8bf7e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"blockquote.default\">\n\t\t\t\t\t\t\t<blockquote class=\"elementor-blockquote\">\n\t\t\t<p class=\"elementor-blockquote__content\">\n\t\t\t\t\u300c\u6bce\u6708700\u4ef6\u3082\u306e\u691c\u7d22\u3092\u884c\u3063\u3066\u3044\u308b\u3088\u3046\u306a\u3082\u306e\u3067\u3059\u3002\u305d\u308c\u3092\u8003\u3048\u308b\u3068\u975e\u5e38\u306b\u5927\u304d\u306a\u8ca0\u62c5\u3067\u3057\u305f\u3002\u300d\t\t\t<\/p>\n\t\t\t\t\t\t\t<div class=\"e-q-footer\">\n\t\t\t\t\t\t\t\t\t\t\t<cite class=\"elementor-blockquote__author\">Director, Customer and Market Insights ex-J&amp;J<\/cite>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/blockquote>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"3\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 of 5\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-1bc44a0 e-con-full e-flex e-con e-child\" data-id=\"1bc44a0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5a6ce41 elementor-blockquote--align-left elementor-widget__width-initial elementor-blockquote--skin-quotation elementor-widget elementor-widget-blockquote\" data-id=\"5a6ce41\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"blockquote.default\">\n\t\t\t\t\t\t\t<blockquote class=\"elementor-blockquote\">\n\t\t\t<p class=\"elementor-blockquote__content\">\n\t\t\t\t\u300c\u4ee5\u524d\u3067\u3042\u308c\u3070\u3001\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u304b\u3089\u30ec\u30dd\u30fc\u30c8\u3092\u4f5c\u6210\u3059\u308b\u305f\u3081\u306b\u4f55\u6642\u9593\u3082\u8cbb\u3084\u3057\u3066\u3044\u307e\u3057\u305f\u3002\u4eca\u3067\u306f Norstella Atlas \u304c\u6700\u3082\u91cd\u8981\u306a\u60c5\u5831\u3092\u62bd\u51fa\u3057\u3001\u63d0\u793a\u3057\u3066\u304f\u308c\u307e\u3059\u3002\u300d\t\t\t<\/p>\n\t\t\t\t\t\t\t<div class=\"e-q-footer\">\n\t\t\t\t\t\t\t\t\t\t\t<cite class=\"elementor-blockquote__author\">Marketing Manager, Large Pharma<\/cite>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/blockquote>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"4\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"4 of 5\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-0b16878 e-con-full e-flex e-con e-child\" data-id=\"0b16878\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-567bbec elementor-blockquote--align-left elementor-widget__width-initial elementor-blockquote--skin-quotation elementor-widget elementor-widget-blockquote\" data-id=\"567bbec\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"blockquote.default\">\n\t\t\t\t\t\t\t<blockquote class=\"elementor-blockquote\">\n\t\t\t<p class=\"elementor-blockquote__content\">\n\t\t\t\t\u300c\u60c5\u5831\u3092\u7406\u89e3\u3057\u5206\u6790\u3059\u308b\u3046\u3048\u3067\u3001\u975e\u5e38\u306b\u512a\u308c\u305f\u30d3\u30b8\u30e5\u30a2\u30eb\u8868\u73fe\u3067\u3059\u3002\u30bf\u30a4\u30e0\u30e9\u30a4\u30f3\u6a5f\u80fd\u306e\u304a\u304b\u3052\u3067\u3001\u696d\u754c\u3067\u4f55\u304c\u8d77\u304d\u3066\u3044\u308b\u306e\u304b\u3092\u4fef\u77b0\u3057\u3066\u628a\u63e1\u3057\u3084\u3059\u304f\u306a\u308a\u307e\u3057\u305f\u3002\u300d\t\t\t<\/p>\n\t\t\t\t\t\t\t<div class=\"e-q-footer\">\n\t\t\t\t\t\t\t\t\t\t\t<cite class=\"elementor-blockquote__author\">Senior Director, Strategic Intelligence, Large Pharma<\/cite>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/blockquote>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"5\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"5 of 5\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-76abc64 e-con-full e-flex e-con e-child\" data-id=\"76abc64\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-afcacaa elementor-blockquote--align-left elementor-widget__width-initial elementor-blockquote--skin-quotation elementor-widget elementor-widget-blockquote\" data-id=\"afcacaa\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"blockquote.default\">\n\t\t\t\t\t\t\t<blockquote class=\"elementor-blockquote\">\n\t\t\t<p class=\"elementor-blockquote__content\">\n\t\t\t\t\u300c\u975e\u5e38\u306b\u5206\u304b\u308a\u3084\u3059\u304f\u3001\u30b7\u30f3\u30d7\u30eb\u3067\u3059\u3002\u305d\u3057\u3066\u3001\u305d\u308c\u304c\u91cd\u8981\u306a\u306e\u3067\u3059\u3002\u5c02\u9580\u5bb6\u306b\u60c5\u5831\u3092\u63d0\u793a\u3059\u308b\u969b\u3001\u5fc5\u305a\u6700\u521d\u306b\u805e\u304b\u308c\u308b\u306e\u306f\u300e\u3053\u306e\u60c5\u5831\u306e\u51fa\u5178\u306f\u4f55\u3067\u3059\u304b\uff1f\u300f\u3068\u3044\u3046\u8cea\u554f\u3067\u3059\u3002\u300d\t\t\t<\/p>\n\t\t\t\t\t\t\t<div class=\"e-q-footer\">\n\t\t\t\t\t\t\t\t\t\t\t<cite class=\"elementor-blockquote__author\">Former Head of Market Insight &amp; Analytics, Large Pharma<\/cite>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/blockquote>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\" aria-label=\"Previous\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-left\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\" aria-label=\"Next\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-right\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5741ccd2 e-con-full e-flex e-con e-parent\" data-id=\"5741ccd2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-44b24101 contactform e-flex e-con-boxed e-con e-child\" data-id=\"44b24101\" data-element_type=\"container\" data-e-type=\"container\" id=\"contactform\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-24a9665 e-con-full e-flex e-con e-child\" data-id=\"24a9665\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6de679ed elementor-widget elementor-widget-heading\" data-id=\"6de679ed\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Norstella Atlas CI \u306b\u3088\u3063\u3066\u5909\u308f\u308b\u7af6\u5408\u5206\u6790\u696d\u52d9\u3092\u4f53\u9a13\u3057\u3066\u304f\u3060\u3055\u3044<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2af3615 elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"2af3615\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u3059\u3079\u3066\u306e\u30a4\u30f3\u30b5\u30a4\u30c8\u306b\u660e\u78ba\u306a\u6839\u62e0\u3092\u3002\u51fa\u5178\u3092\u8ffd\u8de1\u3067\u304d\u308b\u305f\u3081\u3001\u3042\u3089\u3086\u308b\u5224\u65ad\u3092\u81ea\u4fe1\u3092\u6301\u3063\u3066\u652f\u3048\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3185513 elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"3185513\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u30ce\u30fc\u30b9\u30c6\u30e9\u306e\u72ec\u81ea\u30c7\u30fc\u30bf\u3068\u8cb4\u793e\u72ec\u81ea\u306e\u77e5\u898b\u3092\u57fa\u76e4\u306b\u3001\u3088\u308a\u8fc5\u901f\u3067\u7cbe\u5ea6\u306e\u9ad8\u3044\u610f\u601d\u6c7a\u5b9a\u3092\u652f\u63f4\u3057\u307e\u3059\u3002\u7af6\u5408\u30a4\u30f3\u30c6\u30ea\u30b8\u30a7\u30f3\u30b9\u306e\u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u3092\u719f\u77e5\u3057\u305f\u5c02\u9580\u5bb6\u304c\u3054\u76f8\u8ac7\u3092\u627f\u308a\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-de7b409 EvaluatePoints elementor-widget elementor-widget-text-editor\" data-id=\"de7b409\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<ul><li>\u6cbb\u7642\u9818\u57df\u3084\u5730\u57df\u3001\u5e02\u5834\u30bb\u30b0\u30e1\u30f3\u30c8\u306b\u5fdc\u3058\u305f\u30bf\u30fc\u30b2\u30c3\u30c8\u4f01\u696d\u3092\u62bd\u51fa<\/li><li>\u4e0a\u5e02\u88fd\u54c1\u307e\u305f\u306f\u958b\u767a\u30d1\u30a4\u30d7\u30e9\u30a4\u30f3\u3092\u6709\u3059\u308b\u4f01\u696d\u3092\u8fc5\u901f\u306b\u7279\u5b9a<\/li><li>\u30dd\u30fc\u30c8\u30d5\u30a9\u30ea\u30aa\u3001\u58f2\u4e0a\u4e88\u6e2c\u3001\u5e02\u5834\u6a5f\u4f1a\u3092\u8ef8\u306b\u7af6\u5408\u4f01\u696d\u3092\u6bd4\u8f03\u5206\u6790<\/li><\/ul>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-45b71308 elementor-hidden-tablet elementor-hidden-mobile elementor-hidden-widescreen elementor-hidden-desktop elementor-hidden-laptop elementor-widget elementor-widget-image\" data-id=\"45b71308\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"384\" height=\"459\" src=\"https:\/\/www.evaluate.com\/wp-content\/uploads\/2026\/04\/contact-img-woman.webp\" class=\"attachment-large size-large wp-image-51479\" alt=\"\" srcset=\"https:\/\/www.evaluate.com\/wp-content\/uploads\/2026\/04\/contact-img-woman.webp 384w, https:\/\/www.evaluate.com\/wp-content\/uploads\/2026\/04\/contact-img-woman-251x300.webp 251w\" sizes=\"(max-width: 384px) 100vw, 384px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b92177 e-con-full e-flex e-con e-child\" data-id=\"b92177\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4f7a5bfa elementor-widget__width-initial elementor-widget elementor-widget-ucaddon_CL_Eloqua_Forms_WAB\" data-id=\"4f7a5bfa\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"ucaddon_CL_Eloqua_Forms_WAB.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n\n<style>\/* widget: CL Eloqua Forms - WAB *\/\n\n.form-input.Optin {\n\tdisplay: none;\n}\n\n\/* To keep styling *\/\n.form-input.Optin.is-visible {\n\tdisplay: flex;\n}\n\n\/* Hide everywhere *\/\n.form-input.ca-only {\n\tdisplay: none;\n}\n\n\/* Hide everywhere *\/\n.form-input.ca-only {\n\tdisplay: none;\n}\n\n\/* pages + posts to display consultancy dropdown *\/\nbody.page-id-1064 .form-input.ca-only,\nbody.page-id-20766 .form-input.ca-only,\nbody.postid-48743 .form-input.ca-only,\nbody.postid-44435 .form-input.ca-only,\nbody.postid-41811 .form-input.ca-only {\n\tdisplay: block;\n}\n\n\/* pages + posts to hide consultancy checkbox *\/\nbody.page-id-1064 .advisory-option,\nbody.page-id-21223 .advisory-option,\nbody.postid-48743 .advisory-option,\nbody.postid-44435 .advisory-option,\nbody.postid-41811 .advisory-option,\nbody.page-id-21244 .advisory-option,\nbody.page-id-50113 .advisory-option,\nbody.page-id-50119 .advisory-option,\nbody.page-id-50125 .advisory-option,\nbody.page-id-50094 .advisory-option,\nbody.page-id-20766 .advisory-option {\n\tdisplay: none;\n}\n\n\/* JP form translation *\/\n[lang='ja'] .isEN,\n[lang='ja'] .form label.isEN,\n.isJP {\n\tdisplay: none !important;\n}\n\n[lang='ja'] .isJP {\n\tdisplay: block !important;\n}\n\n[lang='ja'] #myForm {\n\t.input-gf,\n\t.submit-btn {\n\t\tposition: relative;\n\t}\n\n\t.input-gf:has(input:focus)::before,\n\t.input-gf:has(input:not(:placeholder-shown))::before,\n\t.input-gf:has(textarea:focus)::before,\n\t.input-gf:has(textarea:not(:placeholder-shown))::before {\n\t\tdisplay: none;\n\t}\n\n\t.input-gf::before {\n\t\tposition: absolute;\n\t\tleft: 30px;\n\t\ttop: 30%;\n\t\tcolor: #6b6b6b;\n\t\tpointer-events: none;\n\t\tz-index: 1;\n\t}\n\n\tinput::placeholder,\n\ttextarea::placeholder {\n\t\topacity: 0 !important;\n\t\tcolor: transparent !important;\n\t}\n\n\t.input-gf:has(#firstName)::before {\n\t\tcontent: '\u540d*';\n\t}\n\n\t.input-gf:has(#lastName)::before {\n\t\tcontent: '\u59d3*';\n\t}\n\n\t.input-gf:has(#busPhone)::before {\n\t\tcontent: '\u52e4\u52d9\u5148\u96fb\u8a71\u756a\u53f7';\n\t}\n\n\t.input-gf:has(#emailAddress)::before {\n\t\tcontent: '\u52e4\u52d9\u5148\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9*';\n\t}\n\n\t.input-gf:has(#jobTitle)::before {\n\t\tcontent: '\u90e8\u7f72\u540d*';\n\t}\n\n\t.input-gf:has(#company)::before {\n\t\tcontent: '\u52e4\u52d9\u5148*';\n\t}\n\n\t.input-gf:has(#description1)::before {\n\t\tcontent: '\u304a\u554f\u3044\u5408\u308f\u305b\u5185\u5bb9';\n\t}\n\n\t.submit-btn input {\n\t\tfont-size: 0;\n\t\twidth: 155px;\n\t}\n\n\t.submit-btn::before {\n\t\tcontent: '\u9001\u4fe1';\n\t\tposition: absolute;\n\t\tleft: -10px;\n\t\tright: 0;\n\t\ttop: 25%;\n\t\tcolor: #fff;\n\t\ttext-align: center;\n\t\tfont-weight: bold;\n\t\tpointer-events: none;\n\t\tz-index: 1;\n\t}\n\n}\n\n<\/style>\n\n<form id=\"myForm\" action=\"https:\/\/trck.evaluate.com\/e\/f2\" name=\"SYSTEMWEBFastrackWAB\" method=\"post\">\n  <div class=\"form\">\n    <div class=\"form-input2\">\n\n      <div class=\"input-gf\">\n        <input type=\"text\" id=\"firstName\" name=\"firstName\" placeholder=\"First Name*\" required>\n      <\/div>\n\n      <div class=\"input-gf\">\n        <input type=\"text\" id=\"lastName\" name=\"lastName\" class=\"input-gf\" placeholder=\"Last Name*\" required>\n      <\/div>\n    <\/div>\n\n    <div class=\"form-input2\">\n\n      <div class=\"input-gf\">\n        <input type=\"email\" id=\"emailAddress\" name=\"emailAddress\" class=\"input-gf\" placeholder=\"Business Email Address*\"\n          required>\n      <\/div>\n\n      <div class=\"input-gf\">\n        <input type=\"text\" id=\"busPhone\" name=\"busPhone\" class=\"input-gf\" placeholder=\"Phone\">\n      <\/div>\n    <\/div>\n\n    <div class=\"form-input2\">\n      <div class=\"input-gf\">\n        <input type=\"text\" id=\"jobTitle\" name=\"jobTitle\" class=\"input-gf\" placeholder=\"Job Title*\" required>\n      <\/div>\n\n      <div class=\"input-gf\">\n        <input type=\"text\" id=\"company\" name=\"company\" class=\"input-gf\" placeholder=\"Company*\" required>\n      <\/div>\n    <\/div>\n\n    <div class=\"form-input2\">\n      \t<div class=\"input-gf\">\n        <select name=\"Industry\" style=\"width:100%;\" data-value=\"\" required>\n          <option value=\"\" disabled selected hidden>Industry*<\/option>\n          <option value=\"Pharma\">Pharma<\/option>\n          <option value=\"Biotech\">Biotech<\/option>\n          <option value=\"MedTech\">MedTech<\/option>\n          <option value=\"Consulting\">Consulting<\/option>\n          <option value=\"Generic Drugs\">Generic Drugs<\/option>\n          <option value=\"Financial Services\">Financial Services<\/option>\n          <option value=\"CRO\">CRO<\/option>\n          <option value=\"CDMO\">CDMO<\/option>\n          <option value=\"Manufacturing\">Manufacturing<\/option>\n          <option value=\"Advertising &amp; Marketing\">Advertising &amp; Marketing<\/option>\n          <option value=\"Government &amp; Association\">Government &amp; Association<\/option>\n          <option value=\"Insurance\">Insurance<\/option>\n          <option value=\"Software\">Software<\/option>\n          <option value=\"Media\/Publisher\">Media\/Publisher<\/option>\n          <option value=\"Education\">Education<\/option>\n          <option value=\"Other\">Other<\/option>\n        <\/select>\n      \t<\/div>\n\n      <div class=\"input-gf\">\n        <select name=\"country\" style=\"width:100%;\" required>\n          <option value=\"\" disabled selected hidden>Country*<\/option>\n          <option value=\"US\">United States<\/option>\n          <option value=\"GB\">United Kingdom<\/option>\n          <option value=\"CA\">Canada<\/option>\n          <option value=\"IN\">India<\/option>\n          <option value=\"NL\">Netherlands<\/option>\n          <option value=\"AU\">Australia<\/option>\n          <option value=\"ZA\">South Africa<\/option>\n          <option value=\"FR\">France<\/option>\n          <option value=\"DE\">Germany<\/option>\n          <option value=\"SG\">Singapore<\/option>\n          <option value=\"SE\">Sweden<\/option>\n          <option value=\"BR\">Brazil<\/option>\n          <option value=\"\">--------------<\/option>\n          <option value=\"AF\">Afghanistan<\/option>\n          <option value=\"AX\">\u00c5land Islands<\/option>\n          <option value=\"AL\">Albania<\/option>\n          <option value=\"DZ\">Algeria<\/option>\n          <option value=\"AS\">American Samoa<\/option>\n          <option value=\"AD\">Andorra<\/option>\n          <option value=\"AO\">Angola<\/option>\n          <option value=\"AI\">Anguilla<\/option>\n          <option value=\"AQ\">Antarctica<\/option>\n          <option value=\"AG\">Antigua and Barbuda<\/option>\n          <option value=\"AR\">Argentina<\/option>\n          <option value=\"AM\">Armenia<\/option>\n          <option value=\"AW\">Aruba<\/option>\n          <option value=\"AU\">Australia<\/option>\n          <option value=\"AT\">Austria<\/option>\n          <option value=\"AZ\">Azerbaijan<\/option>\n          <option value=\"BS\">Bahamas<\/option>\n          <option value=\"BH\">Bahrain<\/option>\n          <option value=\"BD\">Bangladesh<\/option>\n          <option value=\"BB\">Barbados<\/option>\n          <option value=\"BY\">Belarus<\/option>\n          <option value=\"BE\">Belgium<\/option>\n          <option value=\"BZ\">Belize<\/option>\n          <option value=\"BJ\">Benin<\/option>\n          <option value=\"BM\">Bermuda<\/option>\n          <option value=\"BT\">Bhutan<\/option>\n          <option value=\"BO\">Bolivia<\/option>\n          <option value=\"BQ\">Bonaire, Sint Eustatius and Saba<\/option>\n          <option value=\"BA\">Bosnia and Herzegovina<\/option>\n          <option value=\"BW\">Botswana<\/option>\n          <option value=\"BV\">Bouvet Island<\/option>\n          <option value=\"BR\">Brazil<\/option>\n          <option value=\"IO\">Brit\/Indian Ocean Terr.<\/option>\n          <option value=\"BN\">Brunei Darussalam<\/option>\n          <option value=\"BG\">Bulgaria<\/option>\n          <option value=\"BF\">Burkina Faso<\/option>\n          <option value=\"BI\">Burundi<\/option>\n          <option value=\"KH\">Cambodia<\/option>\n          <option value=\"CM\">Cameroon<\/option>\n          <option value=\"CA\">Canada<\/option>\n          <option value=\"CV\">Cape Verde<\/option>\n          <option value=\"KY\">Cayman Islands<\/option>\n          <option value=\"CF\">Central African Republic<\/option>\n          <option value=\"TD\">Chad<\/option>\n          <option value=\"CL\">Chile<\/option>\n          <option value=\"CN\">China<\/option>\n          <option value=\"CX\">Christmas Island<\/option>\n          <option value=\"CC\">Cocos (Keeling) Islands<\/option>\n          <option value=\"CO\">Colombia<\/option>\n          <option value=\"KM\">Comoros<\/option>\n          <option value=\"CG\">Congo<\/option>\n          <option value=\"CD\">Congo, The Dem. Republic Of<\/option>\n          <option value=\"CK\">Cook Islands<\/option>\n          <option value=\"CR\">Costa Rica<\/option>\n          <option value=\"CI\">C\u00f4te d'Ivoire<\/option>\n          <option value=\"HR\">Croatia<\/option>\n          <option value=\"CU\">Cuba<\/option>\n          <option value=\"CW\">Cura\u00e7ao<\/option>\n          <option value=\"CY\">Cyprus<\/option>\n          <option value=\"CZ\">Czech Republic<\/option>\n          <option value=\"DK\">Denmark<\/option>\n          <option value=\"DJ\">Djibouti<\/option>\n          <option value=\"DM\">Dominica<\/option>\n          <option value=\"DO\">Dominican Republic<\/option>\n          <option value=\"EC\">Ecuador<\/option>\n          <option value=\"EG\">Egypt<\/option>\n          <option value=\"SV\">El Salvador<\/option>\n          <option value=\"GQ\">Equatorial Guinea<\/option>\n          <option value=\"ER\">Eritrea<\/option>\n          <option value=\"EE\">Estonia<\/option>\n          <option value=\"ET\">Ethiopia<\/option>\n          <option value=\"FK\">Falkland Islands<\/option>\n          <option value=\"FO\">Faroe Islands<\/option>\n          <option value=\"FJ\">Fiji<\/option>\n          <option value=\"FI\">Finland<\/option>\n          <option value=\"FR\">France<\/option>\n          <option value=\"GF\">French Guiana<\/option>\n          <option value=\"PF\">French Polynesia<\/option>\n          <option value=\"TF\">French Southern Terr.<\/option>\n          <option value=\"GA\">Gabon<\/option>\n          <option value=\"GM\">Gambia<\/option>\n          <option value=\"GE\">Georgia<\/option>\n          <option value=\"DE\">Germany<\/option>\n          <option value=\"GH\">Ghana<\/option>\n          <option value=\"GI\">Gibraltar<\/option>\n          <option value=\"GB\">United Kingdom<\/option>\n          <option value=\"GR\">Greece<\/option>\n          <option value=\"GL\">Greenland<\/option>\n          <option value=\"GD\">Grenada<\/option>\n          <option value=\"GP\">Guadeloupe<\/option>\n          <option value=\"GU\">Guam<\/option>\n          <option value=\"GT\">Guatemala<\/option>\n          <option value=\"GG\">Guernsey<\/option>\n          <option value=\"GN\">Guinea<\/option>\n          <option value=\"GW\">Guinea-Bissau<\/option>\n          <option value=\"GY\">Guyana<\/option>\n          <option value=\"HT\">Haiti<\/option>\n          <option value=\"HM\">Heard\/McDonald Isls.<\/option>\n          <option value=\"HN\">Honduras<\/option>\n          <option value=\"HK\">Hong Kong<\/option>\n          <option value=\"HU\">Hungary<\/option>\n          <option value=\"IS\">Iceland<\/option>\n          <option value=\"IN\">India<\/option>\n          <option value=\"ID\">Indonesia<\/option>\n          <option value=\"IR\">Iran<\/option>\n          <option value=\"IQ\">Iraq<\/option>\n          <option value=\"IE\">Ireland<\/option>\n          <option value=\"IM\">Isle of Man<\/option>\n          <option value=\"IL\">Israel<\/option>\n          <option value=\"IT\">Italy<\/option>\n          <option value=\"JM\">Jamaica<\/option>\n          <option value=\"JP\">Japan<\/option>\n          <option value=\"JE\">Jersey<\/option>\n          <option value=\"JO\">Jordan<\/option>\n          <option value=\"KZ\">Kazakhstan<\/option>\n          <option value=\"KE\">Kenya<\/option>\n          <option value=\"KI\">Kiribati<\/option>\n          <option value=\"KP\">Korea (North)<\/option>\n          <option value=\"KR\">Korea (South)<\/option>\n          <option value=\"KW\">Kuwait<\/option>\n          <option value=\"KG\">Kyrgyzstan<\/option>\n          <option value=\"LA\">Laos<\/option>\n          <option value=\"LV\">Latvia<\/option>\n          <option value=\"LB\">Lebanon<\/option>\n          <option value=\"LS\">Lesotho<\/option>\n          <option value=\"LR\">Liberia<\/option>\n          <option value=\"LY\">Libya<\/option>\n          <option value=\"LI\">Liechtenstein<\/option>\n          <option value=\"LT\">Lithuania<\/option>\n          <option value=\"LU\">Luxembourg<\/option>\n          <option value=\"MO\">Macau<\/option>\n          <option value=\"MK\">Macedonia<\/option>\n          <option value=\"MG\">Madagascar<\/option>\n          <option value=\"MW\">Malawi<\/option>\n          <option value=\"MY\">Malaysia<\/option>\n          <option value=\"MV\">Maldives<\/option>\n          <option value=\"ML\">Mali<\/option>\n          <option value=\"MT\">Malta<\/option>\n          <option value=\"MH\">Marshall Islands<\/option>\n          <option value=\"MQ\">Martinique<\/option>\n          <option value=\"MR\">Mauritania<\/option>\n          <option value=\"MU\">Mauritius<\/option>\n          <option value=\"YT\">Mayotte<\/option>\n          <option value=\"MX\">Mexico<\/option>\n          <option value=\"FM\">Micronesia<\/option>\n          <option value=\"MD\">Moldova<\/option>\n          <option value=\"MC\">Monaco<\/option>\n          <option value=\"MN\">Mongolia<\/option>\n          <option value=\"ME\">Montenegro<\/option>\n          <option value=\"MS\">Montserrat<\/option>\n          <option value=\"MA\">Morocco<\/option>\n          <option value=\"MZ\">Mozambique<\/option>\n          <option value=\"MM\">Myanmar<\/option>\n          <option value=\"MP\">N. Mariana Isls.<\/option>\n          <option value=\"NA\">Namibia<\/option>\n          <option value=\"NR\">Nauru<\/option>\n          <option value=\"NP\">Nepal<\/option>\n          <option value=\"NL\">Netherlands<\/option>\n          <option value=\"AN\">Netherlands Antilles<\/option>\n          <option value=\"NC\">New Caledonia<\/option>\n          <option value=\"NZ\">New Zealand<\/option>\n          <option value=\"NI\">Nicaragua<\/option>\n          <option value=\"NE\">Niger<\/option>\n          <option value=\"NG\">Nigeria<\/option>\n          <option value=\"NU\">Niue<\/option>\n          <option value=\"NF\">Norfolk Island<\/option>\n          <option value=\"NO\">Norway<\/option>\n          <option value=\"OM\">Oman<\/option>\n          <option value=\"PK\">Pakistan<\/option>\n          <option value=\"PW\">Palau<\/option>\n          <option value=\"PS\">Palestinian Territory, Occupied<\/option>\n          <option value=\"PA\">Panama<\/option>\n          <option value=\"PG\">Papua New Guinea<\/option>\n          <option value=\"PY\">Paraguay<\/option>\n          <option value=\"PE\">Peru<\/option>\n          <option value=\"PH\">Philippines<\/option>\n          <option value=\"PN\">Pitcairn<\/option>\n          <option value=\"PL\">Poland<\/option>\n          <option value=\"PT\">Portugal<\/option>\n          <option value=\"PR\">Puerto Rico<\/option>\n          <option value=\"QA\">Qatar<\/option>\n          <option value=\"RE\">Reunion<\/option>\n          <option value=\"RO\">Romania<\/option>\n          <option value=\"RU\">Russian Federation<\/option>\n          <option value=\"RW\">Rwanda<\/option>\n          <option value=\"BL\">Saint Barth\u00e9lemy<\/option>\n          <option value=\"KN\">Saint Kitts and Nevis<\/option>\n          <option value=\"LC\">Saint Lucia<\/option>\n          <option value=\"MF\">Saint Martin<\/option>\n          <option value=\"WS\">Samoa<\/option>\n          <option value=\"SM\">San Marino<\/option>\n          <option value=\"ST\">Sao Tome\/Principe<\/option>\n          <option value=\"SA\">Saudi Arabia<\/option>\n          <option value=\"SN\">Senegal<\/option>\n          <option value=\"RS\">Serbia<\/option>\n          <option value=\"ME\">Serbia and Montenegro<\/option>\n          <option value=\"SC\">Seychelles<\/option>\n          <option value=\"SL\">Sierra Leone<\/option>\n          <option value=\"SG\">Singapore<\/option>\n          <option value=\"SX\">Sint Maarten (Dutch part)<\/option>\n          <option value=\"SK\">Slovak Republic<\/option>\n          <option value=\"SI\">Slovenia<\/option>\n          <option value=\"SB\">Solomon Islands<\/option>\n          <option value=\"SO\">Somalia<\/option>\n          <option value=\"ZA\">South Africa<\/option>\n          <option value=\"GS\">South Georgia and the South Sandwich Islands<\/option>\n          <option value=\"SS\">South Sudan<\/option>\n          <option value=\"ES\">Spain<\/option>\n          <option value=\"LK\">Sri Lanka<\/option>\n          <option value=\"SH\">St. Helena<\/option>\n          <option value=\"PM\">St. Pierre and Miquelon<\/option>\n          <option value=\"VC\">St. Vincent and Grenadines<\/option>\n          <option value=\"SD\">Sudan<\/option>\n          <option value=\"SR\">Suriname<\/option>\n          <option value=\"SJ\">Svalbard\/Jan Mayen Isls.<\/option>\n          <option value=\"SZ\">Swaziland<\/option>\n          <option value=\"SE\">Sweden<\/option>\n          <option value=\"CH\">Switzerland<\/option>\n          <option value=\"SY\">Syria<\/option>\n          <option value=\"TW\">Taiwan<\/option>\n          <option value=\"TJ\">Tajikistan<\/option>\n          <option value=\"TZ\">Tanzania<\/option>\n          <option value=\"TH\">Thailand<\/option>\n          <option value=\"TL\">Timor-Leste<\/option>\n          <option value=\"TG\">Togo<\/option>\n          <option value=\"TK\">Tokelau<\/option>\n          <option value=\"TO\">Tonga<\/option>\n          <option value=\"TT\">Trinidad and Tobago<\/option>\n          <option value=\"TN\">Tunisia<\/option>\n          <option value=\"TR\">Turkey<\/option>\n          <option value=\"TM\">Turkmenistan<\/option>\n          <option value=\"TC\">Turks\/Caicos Isls.<\/option>\n          <option value=\"TV\">Tuvalu<\/option>\n          <option value=\"UG\">Uganda<\/option>\n          <option value=\"UA\">Ukraine<\/option>\n          <option value=\"AE\">United Arab Emirates<\/option>\n          <option value=\"US\">United States<\/option>\n          <option value=\"UM\">US Minor Outlying Is.<\/option>\n          <option value=\"UY\">Uruguay<\/option>\n          <option value=\"UZ\">Uzbekistan<\/option>\n          <option value=\"VU\">Vanuatu<\/option>\n          <option value=\"VA\">Vatican City<\/option>\n          <option value=\"VE\">Venezuela<\/option>\n          <option value=\"VN\">Viet Nam<\/option>\n          <option value=\"VG\">Virgin Islands (British)<\/option>\n          <option value=\"VI\">Virgin Islands (U.S.)<\/option>\n          <option value=\"WF\">Wallis\/Futuna Isls.<\/option>\n          <option value=\"EH\">Western Sahara<\/option>\n          <option value=\"YE\">Yemen<\/option>\n          <option value=\"ZM\">Zambia<\/option>\n          <option value=\"ZW\">Zimbabwe<\/option>\n        <\/select>\n      \t<\/div>\n    <\/div>\n      \n\t<div class=\"form-input ca-only\">\n      \t<div class=\"input-gf\">\n\t\t<select name=\"consultancyarea\" style=\"width:100%;\" data-value=\"\">\n\t\t<option value=\"\">I would like to connect with Evaluate's advisory experts on:<\/option>\n        <option value=\"Market Sizing &amp; Forecasting\">Market Sizing &amp; Forecasting<\/option>\n\t\t<option value=\"Business Development &amp; Licensing\">Business Development &amp; Licensing<\/option>\n\t\t<option value=\"Portfolio Strategy\">Portfolio Strategy<\/option>\n\t\t<option value=\"Competitive Intelligence\">Competitive Intelligence<\/option>\n\t\t<option value=\"General Strategic Support\">General Strategic Support<\/option>\n\t\t<option value=\"Other\">Other<\/option>\n\t<\/select>\n   \t<\/div>\n    <\/div>\n \n    <div class=\"form-input\">\n      <div class=\"input-gf\">\n        <textarea id=\"description1\" name=\"description1\" class=\"input-gf\" placeholder=\"Message\" rows=\"4\"><\/textarea>\n      <\/div>\n    <\/div>\n\n    <div class=\"form-input Optin\">\n      <input type=\"checkbox\" name=\"CommsOptin\" id=\"CommsOptin\">\n      <label class=\"isEN\" for=\"CommsOptin\">I would like to receive Evaluate industry &amp; market reports, and the latest news from Evaluate.<\/label>\n      <label class=\"isJP\" for=\"CommsOptin\">\u30a8\u30d0\u30ea\u30e5\u30a8\u30fc\u30c8\u306e\u696d\u754c\u30fb\u5e02\u5834\u30ec\u30dd\u30fc\u30c8\u3084\u30a4\u30d9\u30f3\u30c8\u7b49\u6700\u65b0\u30cb\u30e5\u30fc\u30b9\u3092\u53d7\u3051\u53d6\u308b\uff08\u7121\u6599\uff09<\/label><br>\n    <\/div>\n    \n        <div class=\"form-input advisory-option\">\n  \t<input type=\"checkbox\" name=\"consultingoption\" id=\"consultingoption\">\n\t\t<label class=\"isEN\" for=\"consultingoption\">\n    \t<strong>Connect with our advisory team<\/strong><br>\n    \t<span>I\u2019d like an Evaluate advisor to reach out about consultancy options<\/span>\n  \t\t<\/label>\n\n  \t\t\t<label class=\"isJP\" for=\"consultingoption\">\n\t\t\t\t<strong>\u696d\u754c\u7279\u5316\u578b\u30b3\u30f3\u30b5\u30eb\u30bf\u30f3\u30c8\u3068\u306e\u500b\u5225\u76f8\u8ac7\u3092\u5e0c\u671b\u3059\u308b<\/strong><br>\n\t\t\t\t<span>BD&amp;L\uff0f\u30dd\u30fc\u30c8\u30d5\u30a9\u30ea\u30aa\uff0f\u7af6\u5408\u30a4\u30f3\u30c6\u30ea\u30b8\u30a7\u30f3\u30b9\u306b\u3064\u3044\u3066\u3001\u62c5\u5f53\u8005\u3088\u308a\u3054\u9023\u7d61\u3044\u305f\u3057\u307e\u3059<\/span>\n\t\t\t<\/label>\n\t<\/div>\n\n    <div class=\"form-input\">\n      <label class=\"isEN\">Your information will be used in accordance with our <a\n          href=\"https:\/\/www.norstella.com\/privacy-notice\/\" target=\"_blank\">Privacy notice<\/a>.<\/label>\n          <label class=\"isJP\">\u3054\u63d0\u4f9b\u3044\u305f\u3060\u3044\u305f\u60c5\u5831\u306f\u3001\u5f53\u793e\u306e <a\n          href=\"https:\/\/www.norstella.com\/privacy-notice\/\" target=\"_blank\">\u30d7\u30e9\u30a4\u30d0\u30b7\u30fc\u901a\u77e5<\/a>\u306b\u57fa\u3065\u304d\u9069\u5207\u306b\u53d6\u308a\u6271\u3044\u307e\u3059\u3002<\/label><br>\n    <\/div>\n\n    <input type=\"hidden\" name=\"productSolutionofInterest\" id=\"productSolutionofInterest\" value=\"Evaluate - Competitive Intelligence\">\n    <input type=\"hidden\" name=\"SFDCLastCampaignID\" value=\"701QP00000fLZHlYAO\">\n    <input type=\"hidden\" name=\"Brand\" value=\"Evaluate\">\n    <input type=\"hidden\" name=\"utm_campaign\" value=\"\">\n    <input type=\"hidden\" name=\"utm_content\" value=\"\">\n    <input type=\"hidden\" name=\"utm_source\" value=\"\">\n    <input type=\"hidden\" name=\"utm_term\" value=\"\">\n    <input type=\"hidden\" name=\"utm_id\" value=\"\">\n    <input type=\"hidden\" name=\"utm_medium\" value=\"\">\n    <input type=\"hidden\" name=\"latestFormFillWebpage\" value=\"\">\n    <input type=\"hidden\" name=\"elqCustomerGUID\" value=\"\">\n    <input type=\"hidden\" name=\"elqCookieWrite\" value=\"0\">\n    <input type=\"hidden\" id=\"elqFormName\" name=\"elqFormName\" value=\"SYSTEMWEBFastrackWAB\">\n    <input type=\"hidden\" id=\"elqSiteId\" name=\"elqSiteId\" value=\"2492560\">\n    <input name=\"elqCampaignId\" type=\"hidden\">\n    <div class=\"g-recaptcha\" data-sitekey=\"6Ldmn_UpAAAAAJbmaRZ7AhBOKrQg-wdbb0sW9l7T\"><\/div>\n    <div class=\"submit-btn\">\n    <input type=\"submit\" value=\"Submit\">\n    <\/div>\n  <\/div>\n<\/form>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-54d84459 e-con-full e-flex e-con e-parent\" data-id=\"54d84459\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-131d25a6 e-flex e-con-boxed e-con e-child\" data-id=\"131d25a6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6bced6d1 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"6bced6d1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Frequently Asked Questions<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1f808cc6 elementor-widget elementor-widget-n-accordion\" data-id=\"1f808cc6\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;default_state&quot;:&quot;all_collapsed&quot;,&quot;max_items_expended&quot;:&quot;one&quot;,&quot;n_accordion_animation_duration&quot;:{&quot;unit&quot;:&quot;ms&quot;,&quot;size&quot;:400,&quot;sizes&quot;:[]}}\" data-widget_type=\"nested-accordion.default\">\n\t\t\t\t\t\t\t<div class=\"e-n-accordion\" aria-label=\"Accordion. Open links with Enter or Space, close with Escape, and navigate with Arrow Keys\">\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-5280\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"1\" tabindex=\"0\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-5280\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><h2 class=\"e-n-accordion-item-title-text\"> Norstella Atlas CI \u306f\u3069\u306e\u3088\u3046\u306a\u8ab2\u984c\u3092\u89e3\u6c7a\u3059\u308b\u306e\u304b <\/h2><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-minus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-plus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-5280\" class=\"elementor-element elementor-element-3edda302 e-con-full e-flex e-con e-child\" data-id=\"3edda302\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-5280\" class=\"elementor-element elementor-element-4307a2cd e-con-full e-flex e-con e-child\" data-id=\"4307a2cd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-60116092 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"60116092\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u7af6\u5408\u5206\u6790\u696d\u52d9\u306e\u7d0480\uff05\u306f\u3001\u8907\u6570\u306e\u60c5\u5831\u6e90\u304b\u3089\u306e\u30c7\u30fc\u30bf\u53ce\u96c6\u30fb\u7d71\u5408\u3001\u51fa\u5178\u306e\u78ba\u8a8d\u3001\u30b9\u30c6\u30fc\u30af\u30db\u30eb\u30c0\u30fc\u5411\u3051\u8cc7\u6599\u3078\u306e\u518d\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3068\u3044\u3063\u305f\u624b\u4f5c\u696d\u306b\u8cbb\u3084\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u305d\u306e\u7d50\u679c\u3001CI\u30c1\u30fc\u30e0\u304c\u672c\u6765\u6ce8\u529b\u3059\u3079\u304d\u5206\u6790\u3084\u6226\u7565\u7684\u63d0\u8a00\u306b\u5145\u3066\u3089\u308c\u308b\u6642\u9593\u306f\u308f\u305a\u304b20\uff05\u306b\u3068\u3069\u307e\u3063\u3066\u3044\u307e\u3059\u3002<br \/>\u4e3b\u306a\u8ab2\u984c\u3068\u3057\u3066\u3001\u4ee5\u4e0b\u304c\u6319\u3052\u3089\u308c\u307e\u3059\u3002<\/p><ul><li>\u5b66\u4f1a\u5f8c\u306e\u7af6\u5408\u74b0\u5883\u5206\u6790\u30ec\u30dd\u30fc\u30c8\u306e\u4f5c\u6210\u306b\u7d042\u9031\u9593\u3092\u8981\u3059\u308b<\/li><li>CI\u30c1\u30fc\u30e0\u306e\u696d\u52d9\u6642\u9593\u306e50\uff05\u304c\u6708\u6b21\u30ec\u30dd\u30fc\u30c8\u8cc7\u6599\u306e\u4f5c\u6210\u306b\u8cbb\u3084\u3055\u308c\u3066\u3044\u308b<\/li><li>\u5e73\u5747\u3057\u306620\u4ee5\u4e0a\u306e\u30d9\u30f3\u30c0\u30fc\u3084\u30c4\u30fc\u30eb\u3092\u7ba1\u7406\u3057\u3066\u304a\u308a\u3001\u7d71\u5408\u3078\u306e\u30d7\u30ec\u30c3\u30b7\u30e3\u30fc\u304c\u9ad8\u307e\u3063\u3066\u3044<\/li><\/ul><p>Norstella Atlas CI \u306f\u3001\u3053\u3046\u3057\u305f\u60c5\u5831\u53ce\u96c6\u30fb\u6574\u7406\u30fb\u691c\u8a3c\u30fb\u8cc7\u6599\u4f5c\u6210\u306b\u304b\u304b\u308b\u8ca0\u62c5\u3092\u5927\u5e45\u306b\u524a\u6e1b\u3057\u3001CI\u30c1\u30fc\u30e0\u304c\u3088\u308a\u4fa1\u5024\u306e\u9ad8\u3044\u5206\u6790\u3084\u610f\u601d\u6c7a\u5b9a\u652f\u63f4\u306b\u96c6\u4e2d\u3067\u304d\u308b\u74b0\u5883\u3092\u63d0\u4f9b\u3057\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-5281\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"2\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-5281\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><h2 class=\"e-n-accordion-item-title-text\"> Atlas CI \u306f ChatGPT \u3084 Claude \u306e\u3088\u3046\u306a\u6c4e\u7528AI\u30c4\u30fc\u30eb\u3068\u4f55\u304c\u9055\u3046\u306e\u3067\u3059\u304b\uff1f <\/h2><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-minus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-plus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-5281\" class=\"elementor-element elementor-element-52350b17 e-con-full e-flex e-con e-child\" data-id=\"52350b17\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;display_condition_enable&quot;:&quot;yes&quot;}\">\n\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-5281\" class=\"elementor-element elementor-element-59456be7 e-con-full e-flex e-con e-child\" data-id=\"59456be7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4a214622 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"4a214622\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>ChatGPT \u3084 Claude \u306a\u3069\u306e\u6c4e\u7528\u5927\u898f\u6a21\u8a00\u8a9e\u30e2\u30c7\u30eb\uff08LLM\uff09\u306f\u3001\u4e3b\u306b\u516c\u958b\u60c5\u5831\u3092\u3082\u3068\u306b\u63a8\u8ad6\u3092\u884c\u3044\u307e\u3059\u3002\u305d\u306e\u305f\u3081\u3001\u53c2\u7167\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u306e\u7bc4\u56f2\u304c\u660e\u78ba\u3067\u306f\u306a\u304f\u3001\u3069\u306e\u60c5\u5831\u304c\u7db2\u7f85\u3055\u308c\u3066\u3044\u308b\u306e\u304b\u306b\u3064\u3044\u3066\u5341\u5206\u306a\u900f\u660e\u6027\u304c\u3042\u308a\u307e\u305b\u3093\u3002<br \/>\u4e00\u65b9\u3001Norstella Atlas CI \u306f\u3001\u7af6\u5408\u30a4\u30f3\u30c6\u30ea\u30b8\u30a7\u30f3\u30b9\u696d\u52d9\u306e\u305f\u3081\u306b\u8a2d\u8a08\u3055\u308c\u305f\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u578bAI\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u3067\u3059\u3002 Atlas CI \u306f\u3001\u6d3b\u7528\u3059\u308b\u30c7\u30fc\u30bf\u306e\u7bc4\u56f2\u3092\u660e\u78ba\u306b\u958b\u793a\u3057\u3066\u3044\u308b\u3060\u3051\u3067\u306a\u304f\u3001\u88fd\u85ac\u30fb\u30d0\u30a4\u30aa\u533b\u85ac\u54c1\u696d\u754c\u306e\u5c02\u9580\u5bb6\u306b\u3088\u308b\u77e5\u898b\u3092AI\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u306e\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u306b\u7d44\u307f\u8fbc\u3093\u3067\u3044\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-5282\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"3\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-5282\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><h2 class=\"e-n-accordion-item-title-text\"> Atlas CI \u306f Ask Ella \u3068\u4f55\u304c\u9055\u3046\u306e\u3067\u3059\u304b\uff1f <\/h2><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-minus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-plus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-5282\" class=\"elementor-element elementor-element-fc0114d e-con-full e-flex e-con e-child\" data-id=\"fc0114d\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;display_condition_enable&quot;:&quot;yes&quot;}\">\n\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-5282\" class=\"elementor-element elementor-element-b37c1a9 e-con-full e-flex e-con e-child\" data-id=\"b37c1a9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-65981bd elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"65981bd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Ask Ella \u306f\u3001\u3055\u307e\u3056\u307e\u306a\u30e6\u30fc\u30b6\u30fc\u5411\u3051\u306b\u8a2d\u8a08\u3055\u308c\u305f\u6c4e\u7528\u7684\u306a\u60c5\u5831\u691c\u7d22\u30c4\u30fc\u30eb\u3067\u3059\u3002\u4e3b\u306b\u88fd\u54c1\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u306b\u57fa\u3065\u304d\u3001\u6a19\u6e96\u5316\u3055\u308c\u305f\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u3084\u4e8b\u524d\u5b9a\u7fa9\u3055\u308c\u305f\u53ef\u8996\u5316\u3001\u8cea\u554f\u3078\u306e\u76f4\u63a5\u7684\u306a\u56de\u7b54\u3092\u63d0\u4f9b\u3057\u307e\u3059\u3002<\/p><p>\u4e00\u65b9\u3001Norstella Atlas CI \u306f\u3001\u7af6\u5408\u5206\u6790\u696d\u52d9\u306b\u7279\u5316\u3057\u3066\u958b\u767a\u3055\u308c\u305f\u30bd\u30ea\u30e5\u30fc\u30b7\u30e7\u30f3\u3067\u3059\u3002\u5358\u306b\u60c5\u5831\u3092\u691c\u7d22\u3059\u308b\u3060\u3051\u3067\u306a\u304f\u3001\u62c5\u5f53\u8005\u304c\u5fc5\u8981\u3068\u3059\u308b\u5206\u6790\u3084\u6210\u679c\u7269\u306e\u4f5c\u6210\u307e\u3067\u652f\u63f4\u3057\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-5283\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"4\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-5283\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><h2 class=\"e-n-accordion-item-title-text\"> Atlas CI \u306b\u304a\u3051\u308b\u300c\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u578b\uff08Agentic\uff09\u300d\u3068\u306f\u4f55\u3067\u3059\u304b\uff1f <\/h2><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-minus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-plus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-5283\" class=\"elementor-element elementor-element-1a72ceec e-con-full e-flex e-con e-child\" data-id=\"1a72ceec\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-5283\" class=\"elementor-element elementor-element-56c33ace e-con-full e-flex e-con e-child\" data-id=\"56c33ace\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-724697d3 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"724697d3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Atlas CI \u304c\u300c\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u578bAI\u300d\u3068\u547c\u3070\u308c\u308b\u306e\u306f\u3001<strong>\u60c5\u5831\u3092\u53d6\u5f97\u3059\u308b\u524d\u306b\u63a8\u8ad6\u3092\u884c\u3046<\/strong>\u304b\u3089\u3067\u3059\u3002<\/p><p>Atlas CI \u306f\u3001\u5358\u306b\u30ad\u30fc\u30ef\u30fc\u30c9\u691c\u7d22\u3092\u884c\u3063\u3066\u8a72\u5f53\u3059\u308b\u30c7\u30fc\u30bf\u3092\u8fd4\u3059\u30c4\u30fc\u30eb\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u307e\u305a\u30e6\u30fc\u30b6\u30fc\u306e\u8cea\u554f\u306e\u610f\u56f3\u3092\u7406\u89e3\u3057\u3001\u305d\u306e\u554f\u3044\u306b\u7b54\u3048\u308b\u305f\u3081\u306b\u5fc5\u8981\u306a\u30c7\u30fc\u30bf\u3092\u5224\u65ad\u3057\u305f\u3046\u3048\u3067\u3001\u60c5\u5831\u3092\u53ce\u96c6\u3057\u307e\u3059\u3002\u305d\u3057\u3066\u3001<strong>\u533b\u85ac\u54c1\u3001\u81e8\u5e8a\u8a66\u9a13\u3001\u30a4\u30d9\u30f3\u30c8\u30fb\u91cd\u8981\u30de\u30a4\u30eb\u30b9\u30c8\u30fc\u30f3\u3001\u7d44\u7e54<\/strong> \u306a\u3069\u8907\u6570\u306e\u30c7\u30fc\u30bf\u30de\u30b9\u30bf\u30fc\u3092\u6a2a\u65ad\u3057\u306a\u304c\u3089\u30011\u3064\u306e\u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u3068\u3057\u3066\u60c5\u5831\u3092\u7d71\u5408\u30fb\u5206\u6790\u3057\u307e\u3059\u3002\u3055\u3089\u306b\u3001\u63a8\u8ad6\u30d7\u30ed\u30bb\u30b9\u306e\u5404\u30b9\u30c6\u30c3\u30d7\u3067\u6587\u8108\u3092\u7dad\u6301\u3057\u306a\u304c\u3089\u51e6\u7406\u3092\u9032\u3081\u307e\u3059\u3002\u4f8b\u3048\u3070\u3001\u81e8\u5e8a\u8a66\u9a13\u7d50\u679c\u306e\u516c\u8868\u4e88\u5b9a\u304c\u7279\u5b9a\u3055\u308c\u308b\u3068\u3001\u95a2\u9023\u3059\u308b\u91cd\u8981\u30de\u30a4\u30eb\u30b9\u30c8\u30fc\u30f3\u3092\u78ba\u8a8d\u3057\u3001\u305d\u3053\u304b\u3089\u60f3\u5b9a\u3055\u308c\u308b\u30bf\u30a4\u30df\u30f3\u30b0\u3084\u5f71\u97ff\u3092\u5206\u6790\u3059\u308b\u3068\u3044\u3063\u305f\u4e00\u9023\u306e\u63a8\u8ad6\u3092\u5b9f\u884c\u3057\u307e\u3059\u3002<\/p><div><div class=\"paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol\"><strong>Atlas CI \u304c\u63d0\u4f9b\u3059\u308b\u306e\u306f\u5358\u306a\u308b\u56de\u7b54\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u8907\u6570\u306e\u60c5\u5831\u3092\u95a2\u9023\u4ed8\u3051\u3066\u5c0e\u304b\u308c\u305f\u3001\u610f\u601d\u6c7a\u5b9a\u306b\u6d3b\u7528\u3067\u304d\u308b\u300c\u30a4\u30f3\u30b5\u30a4\u30c8\u300d\u300c\u767a\u898b\u300d\u3067\u3059\u3002<\/strong><\/div><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-5284\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"5\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-5284\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><h2 class=\"e-n-accordion-item-title-text\"> Atlas CI \u306f\u3069\u306e\u3088\u3046\u306a\u6210\u679c\u7269\u3092\u4f5c\u6210\u3067\u304d\u307e\u3059\u304b\uff1f <\/h2><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-minus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-plus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-5284\" class=\"elementor-element elementor-element-02eaa44 e-con-full e-flex e-con e-child\" data-id=\"02eaa44\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-5284\" class=\"elementor-element elementor-element-aded2a0 e-con-full e-flex e-con e-child\" data-id=\"aded2a0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ea312d8 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"ea312d8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Atlas CI \u306f\u3001\u3059\u3050\u306b\u5171\u6709\u30fb\u6d3b\u7528\u3067\u304d\u308b\u7de8\u96c6\u53ef\u80fd\u306a\u6210\u679c\u7269\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002<\/p><div><ul><li class=\"___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf\"><div class=\"paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol\"><strong>\u7af6\u5408\u74b0\u5883\u5206\u6790\u30ec\u30dd\u30fc\u30c8<\/strong>\uff08\u5e02\u5834\u30de\u30c3\u30d7\u3001\u958b\u767a\u30d5\u30a7\u30fc\u30ba\u5206\u6790\u3001\u81e8\u5e8a\u8a66\u9a13\u30bf\u30a4\u30e0\u30e9\u30a4\u30f3\u3001\u91cd\u8981\u30a4\u30d9\u30f3\u30c8\u5206\u6790\u306a\u3069\uff09<\/div><\/li><li class=\"___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf\"><div class=\"paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol\"><strong>\u533b\u85ac\u54c1\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb<\/strong><\/div><\/li><li class=\"___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf\"><div class=\"paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol\"><strong>\u91cd\u8981\u30de\u30a4\u30eb\u30b9\u30c8\u30fc\u30f3\u306e\u30bf\u30a4\u30e0\u30e9\u30a4\u30f3<\/strong><\/div><\/li><li class=\"___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf\"><div class=\"paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol\"><strong>\u7d4c\u55b6\u5c64\u5411\u3051\u30d6\u30ea\u30fc\u30d5\u30a3\u30f3\u30b0\u8cc7\u6599\u3084\u6708\u6b21\u30ec\u30dd\u30fc\u30c8<\/strong><\/div><\/li><li class=\"___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf\"><div class=\"paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol\"><strong>\u7de8\u96c6\u53ef\u80fd\u306a PowerPoint\uff08PPTX\uff09\u304a\u3088\u3073\u753b\u50cf\u5f62\u5f0f\u3067\u306e\u30a8\u30af\u30b9\u30dd\u30fc\u30c8<\/strong><\/div><\/li><\/ul><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-5285\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"6\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-5285\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><h2 class=\"e-n-accordion-item-title-text\"> \u6210\u679c\u7269\u306e\u4f5c\u6210\u306b\u306f\u3069\u308c\u304f\u3089\u3044\u6642\u9593\u304c\u304b\u304b\u308a\u307e\u3059\u304b\uff1f <\/h2><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-minus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-plus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-5285\" class=\"elementor-element elementor-element-064d450 e-con-full e-flex e-con e-child\" data-id=\"064d450\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-5285\" class=\"elementor-element elementor-element-be7fb8e e-con-full e-flex e-con e-child\" data-id=\"be7fb8e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7ebcd76 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"7ebcd76\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Atlas CI \u306f\u3001\u672c\u6765\u3067\u3042\u308c\u3070\u6570\u9031\u9593\u3092\u8981\u3059\u308b\u4f5c\u696d\u3092\u6570\u6642\u9593\u306b\u77ed\u7e2e\u3057\u307e\u3059\u3002<\/p><div><div class=\"paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol\">\u30c7\u30fc\u30bf\u306e\u53ce\u96c6\u30fb\u7d71\u5408\u3001\u60c5\u5831\u306e\u691c\u8a3c\u3001\u8cc7\u6599\u306e\u518d\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3068\u3044\u3063\u305f\u3001\u7af6\u5408\u30a4\u30f3\u30c6\u30ea\u30b8\u30a7\u30f3\u30b9\u696d\u52d9\u306b\u304a\u3051\u308b\u624b\u4f5c\u696d\u306e\u7d0480\uff05\u3092\u524a\u6e1b\u3002\u30c1\u30fc\u30e0\u306f\u60c5\u5831\u53ce\u96c6\u3067\u306f\u306a\u304f\u3001\u5206\u6790\u3084\u6226\u7565\u7684\u306a\u63d0\u8a00\u3001\u610f\u601d\u6c7a\u5b9a\u652f\u63f4\u306b\u3088\u308a\u591a\u304f\u306e\u6642\u9593\u3092\u5145\u3066\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/div><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-5286\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"7\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-5286\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><h2 class=\"e-n-accordion-item-title-text\"> Atlas CI \u306e\u5229\u7528\u306b\u6280\u8853\u7684\u306a\u7d71\u5408\u306f\u5fc5\u8981\u3067\u3059\u304b\uff1f <\/h2><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-minus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-plus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-5286\" class=\"elementor-element elementor-element-db83c7f e-con-full e-flex e-con e-child\" data-id=\"db83c7f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-5286\" class=\"elementor-element elementor-element-919287e e-con-full e-flex e-con e-child\" data-id=\"919287e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-281b2be elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"281b2be\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u3044\u3044\u3048\u3002Atlas CI \u306fWeb\u30d9\u30fc\u30b9\u306e\u30bd\u30ea\u30e5\u30fc\u30b7\u30e7\u30f3\u3067\u3042\u308a\u3001\u30b7\u30b9\u30c6\u30e0\u9023\u643a\u3084\u6280\u8853\u7684\u306a\u7d71\u5408\u4f5c\u696d\u306f\u5fc5\u8981\u3042\u308a\u307e\u305b\u3093\u3002<br \/>\u5c0e\u5165\u5f8c\u3059\u3050\u306b\u5229\u7528\u3092\u958b\u59cb\u3067\u304d\u3001\u521d\u671f\u5229\u7528\u307e\u3067\u306b\u304b\u304b\u308b\u671f\u9593\u306f\u6570\u304b\u6708\u3067\u306f\u306a\u304f\u3001\u6570\u65e5\u7a0b\u5ea6\u3067\u3059\u3002\u305d\u306e\u305f\u3081\u3001\u5927\u898f\u6a21\u306aIT\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3092\u5b9f\u65bd\u3059\u308b\u3053\u3068\u306a\u304f\u3001\u7af6\u5408\u5206\u6790\u696d\u52d9\u306e\u52b9\u7387\u5316\u3092\u8fc5\u901f\u306b\u9032\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<script type=\"application\/ld+json\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@type\":\"FAQPage\",\"mainEntity\":[{\"@type\":\"Question\",\"name\":\"Norstella Atlas CI \\u306f\\u3069\\u306e\\u3088\\u3046\\u306a\\u8ab2\\u984c\\u3092\\u89e3\\u6c7a\\u3059\\u308b\\u306e\\u304b\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"\\u7af6\\u5408\\u5206\\u6790\\u696d\\u52d9\\u306e\\u7d0480\\uff05\\u306f\\u3001\\u8907\\u6570\\u306e\\u60c5\\u5831\\u6e90\\u304b\\u3089\\u306e\\u30c7\\u30fc\\u30bf\\u53ce\\u96c6\\u30fb\\u7d71\\u5408\\u3001\\u51fa\\u5178\\u306e\\u78ba\\u8a8d\\u3001\\u30b9\\u30c6\\u30fc\\u30af\\u30db\\u30eb\\u30c0\\u30fc\\u5411\\u3051\\u8cc7\\u6599\\u3078\\u306e\\u518d\\u30d5\\u30a9\\u30fc\\u30de\\u30c3\\u30c8\\u3068\\u3044\\u3063\\u305f\\u624b\\u4f5c\\u696d\\u306b\\u8cbb\\u3084\\u3055\\u308c\\u3066\\u3044\\u307e\\u3059\\u3002\\u305d\\u306e\\u7d50\\u679c\\u3001CI\\u30c1\\u30fc\\u30e0\\u304c\\u672c\\u6765\\u6ce8\\u529b\\u3059\\u3079\\u304d\\u5206\\u6790\\u3084\\u6226\\u7565\\u7684\\u63d0\\u8a00\\u306b\\u5145\\u3066\\u3089\\u308c\\u308b\\u6642\\u9593\\u306f\\u308f\\u305a\\u304b20\\uff05\\u306b\\u3068\\u3069\\u307e\\u3063\\u3066\\u3044\\u307e\\u3059\\u3002\\u4e3b\\u306a\\u8ab2\\u984c\\u3068\\u3057\\u3066\\u3001\\u4ee5\\u4e0b\\u304c\\u6319\\u3052\\u3089\\u308c\\u307e\\u3059\\u3002\\u5b66\\u4f1a\\u5f8c\\u306e\\u7af6\\u5408\\u74b0\\u5883\\u5206\\u6790\\u30ec\\u30dd\\u30fc\\u30c8\\u306e\\u4f5c\\u6210\\u306b\\u7d042\\u9031\\u9593\\u3092\\u8981\\u3059\\u308bCI\\u30c1\\u30fc\\u30e0\\u306e\\u696d\\u52d9\\u6642\\u9593\\u306e50\\uff05\\u304c\\u6708\\u6b21\\u30ec\\u30dd\\u30fc\\u30c8\\u8cc7\\u6599\\u306e\\u4f5c\\u6210\\u306b\\u8cbb\\u3084\\u3055\\u308c\\u3066\\u3044\\u308b\\u5e73\\u5747\\u3057\\u306620\\u4ee5\\u4e0a\\u306e\\u30d9\\u30f3\\u30c0\\u30fc\\u3084\\u30c4\\u30fc\\u30eb\\u3092\\u7ba1\\u7406\\u3057\\u3066\\u304a\\u308a\\u3001\\u7d71\\u5408\\u3078\\u306e\\u30d7\\u30ec\\u30c3\\u30b7\\u30e3\\u30fc\\u304c\\u9ad8\\u307e\\u3063\\u3066\\u3044Norstella Atlas CI \\u306f\\u3001\\u3053\\u3046\\u3057\\u305f\\u60c5\\u5831\\u53ce\\u96c6\\u30fb\\u6574\\u7406\\u30fb\\u691c\\u8a3c\\u30fb\\u8cc7\\u6599\\u4f5c\\u6210\\u306b\\u304b\\u304b\\u308b\\u8ca0\\u62c5\\u3092\\u5927\\u5e45\\u306b\\u524a\\u6e1b\\u3057\\u3001CI\\u30c1\\u30fc\\u30e0\\u304c\\u3088\\u308a\\u4fa1\\u5024\\u306e\\u9ad8\\u3044\\u5206\\u6790\\u3084\\u610f\\u601d\\u6c7a\\u5b9a\\u652f\\u63f4\\u306b\\u96c6\\u4e2d\\u3067\\u304d\\u308b\\u74b0\\u5883\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002\"}},{\"@type\":\"Question\",\"name\":\"Atlas CI \\u306f ChatGPT \\u3084 Claude \\u306e\\u3088\\u3046\\u306a\\u6c4e\\u7528AI\\u30c4\\u30fc\\u30eb\\u3068\\u4f55\\u304c\\u9055\\u3046\\u306e\\u3067\\u3059\\u304b\\uff1f\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"ChatGPT \\u3084 Claude \\u306a\\u3069\\u306e\\u6c4e\\u7528\\u5927\\u898f\\u6a21\\u8a00\\u8a9e\\u30e2\\u30c7\\u30eb\\uff08LLM\\uff09\\u306f\\u3001\\u4e3b\\u306b\\u516c\\u958b\\u60c5\\u5831\\u3092\\u3082\\u3068\\u306b\\u63a8\\u8ad6\\u3092\\u884c\\u3044\\u307e\\u3059\\u3002\\u305d\\u306e\\u305f\\u3081\\u3001\\u53c2\\u7167\\u3057\\u3066\\u3044\\u308b\\u30c7\\u30fc\\u30bf\\u306e\\u7bc4\\u56f2\\u304c\\u660e\\u78ba\\u3067\\u306f\\u306a\\u304f\\u3001\\u3069\\u306e\\u60c5\\u5831\\u304c\\u7db2\\u7f85\\u3055\\u308c\\u3066\\u3044\\u308b\\u306e\\u304b\\u306b\\u3064\\u3044\\u3066\\u5341\\u5206\\u306a\\u900f\\u660e\\u6027\\u304c\\u3042\\u308a\\u307e\\u305b\\u3093\\u3002\\u4e00\\u65b9\\u3001Norstella Atlas CI \\u306f\\u3001\\u7af6\\u5408\\u30a4\\u30f3\\u30c6\\u30ea\\u30b8\\u30a7\\u30f3\\u30b9\\u696d\\u52d9\\u306e\\u305f\\u3081\\u306b\\u8a2d\\u8a08\\u3055\\u308c\\u305f\\u30a8\\u30fc\\u30b8\\u30a7\\u30f3\\u30c8\\u578bAI\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3067\\u3059\\u3002 Atlas CI \\u306f\\u3001\\u6d3b\\u7528\\u3059\\u308b\\u30c7\\u30fc\\u30bf\\u306e\\u7bc4\\u56f2\\u3092\\u660e\\u78ba\\u306b\\u958b\\u793a\\u3057\\u3066\\u3044\\u308b\\u3060\\u3051\\u3067\\u306a\\u304f\\u3001\\u88fd\\u85ac\\u30fb\\u30d0\\u30a4\\u30aa\\u533b\\u85ac\\u54c1\\u696d\\u754c\\u306e\\u5c02\\u9580\\u5bb6\\u306b\\u3088\\u308b\\u77e5\\u898b\\u3092AI\\u30a8\\u30fc\\u30b8\\u30a7\\u30f3\\u30c8\\u306e\\u30d5\\u30ec\\u30fc\\u30e0\\u30ef\\u30fc\\u30af\\u306b\\u7d44\\u307f\\u8fbc\\u3093\\u3067\\u3044\\u307e\\u3059\\u3002\"}},{\"@type\":\"Question\",\"name\":\"Atlas CI \\u306f Ask Ella \\u3068\\u4f55\\u304c\\u9055\\u3046\\u306e\\u3067\\u3059\\u304b\\uff1f\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Ask Ella \\u306f\\u3001\\u3055\\u307e\\u3056\\u307e\\u306a\\u30e6\\u30fc\\u30b6\\u30fc\\u5411\\u3051\\u306b\\u8a2d\\u8a08\\u3055\\u308c\\u305f\\u6c4e\\u7528\\u7684\\u306a\\u60c5\\u5831\\u691c\\u7d22\\u30c4\\u30fc\\u30eb\\u3067\\u3059\\u3002\\u4e3b\\u306b\\u88fd\\u54c1\\u30c7\\u30fc\\u30bf\\u30bb\\u30c3\\u30c8\\u306b\\u57fa\\u3065\\u304d\\u3001\\u6a19\\u6e96\\u5316\\u3055\\u308c\\u305f\\u30c0\\u30c3\\u30b7\\u30e5\\u30dc\\u30fc\\u30c9\\u3084\\u4e8b\\u524d\\u5b9a\\u7fa9\\u3055\\u308c\\u305f\\u53ef\\u8996\\u5316\\u3001\\u8cea\\u554f\\u3078\\u306e\\u76f4\\u63a5\\u7684\\u306a\\u56de\\u7b54\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002\\u4e00\\u65b9\\u3001Norstella Atlas CI \\u306f\\u3001\\u7af6\\u5408\\u5206\\u6790\\u696d\\u52d9\\u306b\\u7279\\u5316\\u3057\\u3066\\u958b\\u767a\\u3055\\u308c\\u305f\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3067\\u3059\\u3002\\u5358\\u306b\\u60c5\\u5831\\u3092\\u691c\\u7d22\\u3059\\u308b\\u3060\\u3051\\u3067\\u306a\\u304f\\u3001\\u62c5\\u5f53\\u8005\\u304c\\u5fc5\\u8981\\u3068\\u3059\\u308b\\u5206\\u6790\\u3084\\u6210\\u679c\\u7269\\u306e\\u4f5c\\u6210\\u307e\\u3067\\u652f\\u63f4\\u3057\\u307e\\u3059\\u3002\"}},{\"@type\":\"Question\",\"name\":\"Atlas CI \\u306b\\u304a\\u3051\\u308b\\u300c\\u30a8\\u30fc\\u30b8\\u30a7\\u30f3\\u30c8\\u578b\\uff08Agentic\\uff09\\u300d\\u3068\\u306f\\u4f55\\u3067\\u3059\\u304b\\uff1f\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Atlas CI \\u304c\\u300c\\u30a8\\u30fc\\u30b8\\u30a7\\u30f3\\u30c8\\u578bAI\\u300d\\u3068\\u547c\\u3070\\u308c\\u308b\\u306e\\u306f\\u3001\\u60c5\\u5831\\u3092\\u53d6\\u5f97\\u3059\\u308b\\u524d\\u306b\\u63a8\\u8ad6\\u3092\\u884c\\u3046\\u304b\\u3089\\u3067\\u3059\\u3002Atlas CI \\u306f\\u3001\\u5358\\u306b\\u30ad\\u30fc\\u30ef\\u30fc\\u30c9\\u691c\\u7d22\\u3092\\u884c\\u3063\\u3066\\u8a72\\u5f53\\u3059\\u308b\\u30c7\\u30fc\\u30bf\\u3092\\u8fd4\\u3059\\u30c4\\u30fc\\u30eb\\u3067\\u306f\\u3042\\u308a\\u307e\\u305b\\u3093\\u3002\\u307e\\u305a\\u30e6\\u30fc\\u30b6\\u30fc\\u306e\\u8cea\\u554f\\u306e\\u610f\\u56f3\\u3092\\u7406\\u89e3\\u3057\\u3001\\u305d\\u306e\\u554f\\u3044\\u306b\\u7b54\\u3048\\u308b\\u305f\\u3081\\u306b\\u5fc5\\u8981\\u306a\\u30c7\\u30fc\\u30bf\\u3092\\u5224\\u65ad\\u3057\\u305f\\u3046\\u3048\\u3067\\u3001\\u60c5\\u5831\\u3092\\u53ce\\u96c6\\u3057\\u307e\\u3059\\u3002\\u305d\\u3057\\u3066\\u3001\\u533b\\u85ac\\u54c1\\u3001\\u81e8\\u5e8a\\u8a66\\u9a13\\u3001\\u30a4\\u30d9\\u30f3\\u30c8\\u30fb\\u91cd\\u8981\\u30de\\u30a4\\u30eb\\u30b9\\u30c8\\u30fc\\u30f3\\u3001\\u7d44\\u7e54 \\u306a\\u3069\\u8907\\u6570\\u306e\\u30c7\\u30fc\\u30bf\\u30de\\u30b9\\u30bf\\u30fc\\u3092\\u6a2a\\u65ad\\u3057\\u306a\\u304c\\u3089\\u30011\\u3064\\u306e\\u30ef\\u30fc\\u30af\\u30d5\\u30ed\\u30fc\\u3068\\u3057\\u3066\\u60c5\\u5831\\u3092\\u7d71\\u5408\\u30fb\\u5206\\u6790\\u3057\\u307e\\u3059\\u3002\\u3055\\u3089\\u306b\\u3001\\u63a8\\u8ad6\\u30d7\\u30ed\\u30bb\\u30b9\\u306e\\u5404\\u30b9\\u30c6\\u30c3\\u30d7\\u3067\\u6587\\u8108\\u3092\\u7dad\\u6301\\u3057\\u306a\\u304c\\u3089\\u51e6\\u7406\\u3092\\u9032\\u3081\\u307e\\u3059\\u3002\\u4f8b\\u3048\\u3070\\u3001\\u81e8\\u5e8a\\u8a66\\u9a13\\u7d50\\u679c\\u306e\\u516c\\u8868\\u4e88\\u5b9a\\u304c\\u7279\\u5b9a\\u3055\\u308c\\u308b\\u3068\\u3001\\u95a2\\u9023\\u3059\\u308b\\u91cd\\u8981\\u30de\\u30a4\\u30eb\\u30b9\\u30c8\\u30fc\\u30f3\\u3092\\u78ba\\u8a8d\\u3057\\u3001\\u305d\\u3053\\u304b\\u3089\\u60f3\\u5b9a\\u3055\\u308c\\u308b\\u30bf\\u30a4\\u30df\\u30f3\\u30b0\\u3084\\u5f71\\u97ff\\u3092\\u5206\\u6790\\u3059\\u308b\\u3068\\u3044\\u3063\\u305f\\u4e00\\u9023\\u306e\\u63a8\\u8ad6\\u3092\\u5b9f\\u884c\\u3057\\u307e\\u3059\\u3002Atlas CI \\u304c\\u63d0\\u4f9b\\u3059\\u308b\\u306e\\u306f\\u5358\\u306a\\u308b\\u56de\\u7b54\\u3067\\u306f\\u3042\\u308a\\u307e\\u305b\\u3093\\u3002\\u8907\\u6570\\u306e\\u60c5\\u5831\\u3092\\u95a2\\u9023\\u4ed8\\u3051\\u3066\\u5c0e\\u304b\\u308c\\u305f\\u3001\\u610f\\u601d\\u6c7a\\u5b9a\\u306b\\u6d3b\\u7528\\u3067\\u304d\\u308b\\u300c\\u30a4\\u30f3\\u30b5\\u30a4\\u30c8\\u300d\\u300c\\u767a\\u898b\\u300d\\u3067\\u3059\\u3002\"}},{\"@type\":\"Question\",\"name\":\"Atlas CI \\u306f\\u3069\\u306e\\u3088\\u3046\\u306a\\u6210\\u679c\\u7269\\u3092\\u4f5c\\u6210\\u3067\\u304d\\u307e\\u3059\\u304b\\uff1f\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Atlas CI \\u306f\\u3001\\u3059\\u3050\\u306b\\u5171\\u6709\\u30fb\\u6d3b\\u7528\\u3067\\u304d\\u308b\\u7de8\\u96c6\\u53ef\\u80fd\\u306a\\u6210\\u679c\\u7269\\u3092\\u4f5c\\u6210\\u3057\\u307e\\u3059\\u3002\\u7af6\\u5408\\u74b0\\u5883\\u5206\\u6790\\u30ec\\u30dd\\u30fc\\u30c8\\uff08\\u5e02\\u5834\\u30de\\u30c3\\u30d7\\u3001\\u958b\\u767a\\u30d5\\u30a7\\u30fc\\u30ba\\u5206\\u6790\\u3001\\u81e8\\u5e8a\\u8a66\\u9a13\\u30bf\\u30a4\\u30e0\\u30e9\\u30a4\\u30f3\\u3001\\u91cd\\u8981\\u30a4\\u30d9\\u30f3\\u30c8\\u5206\\u6790\\u306a\\u3069\\uff09\\u533b\\u85ac\\u54c1\\u30d7\\u30ed\\u30d5\\u30a1\\u30a4\\u30eb\\u91cd\\u8981\\u30de\\u30a4\\u30eb\\u30b9\\u30c8\\u30fc\\u30f3\\u306e\\u30bf\\u30a4\\u30e0\\u30e9\\u30a4\\u30f3\\u7d4c\\u55b6\\u5c64\\u5411\\u3051\\u30d6\\u30ea\\u30fc\\u30d5\\u30a3\\u30f3\\u30b0\\u8cc7\\u6599\\u3084\\u6708\\u6b21\\u30ec\\u30dd\\u30fc\\u30c8\\u7de8\\u96c6\\u53ef\\u80fd\\u306a PowerPoint\\uff08PPTX\\uff09\\u304a\\u3088\\u3073\\u753b\\u50cf\\u5f62\\u5f0f\\u3067\\u306e\\u30a8\\u30af\\u30b9\\u30dd\\u30fc\\u30c8\"}},{\"@type\":\"Question\",\"name\":\"\\u6210\\u679c\\u7269\\u306e\\u4f5c\\u6210\\u306b\\u306f\\u3069\\u308c\\u304f\\u3089\\u3044\\u6642\\u9593\\u304c\\u304b\\u304b\\u308a\\u307e\\u3059\\u304b\\uff1f\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Atlas CI \\u306f\\u3001\\u672c\\u6765\\u3067\\u3042\\u308c\\u3070\\u6570\\u9031\\u9593\\u3092\\u8981\\u3059\\u308b\\u4f5c\\u696d\\u3092\\u6570\\u6642\\u9593\\u306b\\u77ed\\u7e2e\\u3057\\u307e\\u3059\\u3002\\u30c7\\u30fc\\u30bf\\u306e\\u53ce\\u96c6\\u30fb\\u7d71\\u5408\\u3001\\u60c5\\u5831\\u306e\\u691c\\u8a3c\\u3001\\u8cc7\\u6599\\u306e\\u518d\\u30d5\\u30a9\\u30fc\\u30de\\u30c3\\u30c8\\u3068\\u3044\\u3063\\u305f\\u3001\\u7af6\\u5408\\u30a4\\u30f3\\u30c6\\u30ea\\u30b8\\u30a7\\u30f3\\u30b9\\u696d\\u52d9\\u306b\\u304a\\u3051\\u308b\\u624b\\u4f5c\\u696d\\u306e\\u7d0480\\uff05\\u3092\\u524a\\u6e1b\\u3002\\u30c1\\u30fc\\u30e0\\u306f\\u60c5\\u5831\\u53ce\\u96c6\\u3067\\u306f\\u306a\\u304f\\u3001\\u5206\\u6790\\u3084\\u6226\\u7565\\u7684\\u306a\\u63d0\\u8a00\\u3001\\u610f\\u601d\\u6c7a\\u5b9a\\u652f\\u63f4\\u306b\\u3088\\u308a\\u591a\\u304f\\u306e\\u6642\\u9593\\u3092\\u5145\\u3066\\u308b\\u3053\\u3068\\u304c\\u3067\\u304d\\u307e\\u3059\\u3002\"}},{\"@type\":\"Question\",\"name\":\"Atlas CI \\u306e\\u5229\\u7528\\u306b\\u6280\\u8853\\u7684\\u306a\\u7d71\\u5408\\u306f\\u5fc5\\u8981\\u3067\\u3059\\u304b\\uff1f\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"\\u3044\\u3044\\u3048\\u3002Atlas CI \\u306fWeb\\u30d9\\u30fc\\u30b9\\u306e\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3067\\u3042\\u308a\\u3001\\u30b7\\u30b9\\u30c6\\u30e0\\u9023\\u643a\\u3084\\u6280\\u8853\\u7684\\u306a\\u7d71\\u5408\\u4f5c\\u696d\\u306f\\u5fc5\\u8981\\u3042\\u308a\\u307e\\u305b\\u3093\\u3002\\u5c0e\\u5165\\u5f8c\\u3059\\u3050\\u306b\\u5229\\u7528\\u3092\\u958b\\u59cb\\u3067\\u304d\\u3001\\u521d\\u671f\\u5229\\u7528\\u307e\\u3067\\u306b\\u304b\\u304b\\u308b\\u671f\\u9593\\u306f\\u6570\\u304b\\u6708\\u3067\\u306f\\u306a\\u304f\\u3001\\u6570\\u65e5\\u7a0b\\u5ea6\\u3067\\u3059\\u3002\\u305d\\u306e\\u305f\\u3081\\u3001\\u5927\\u898f\\u6a21\\u306aIT\\u30d7\\u30ed\\u30b8\\u30a7\\u30af\\u30c8\\u3092\\u5b9f\\u65bd\\u3059\\u308b\\u3053\\u3068\\u306a\\u304f\\u3001\\u7af6\\u5408\\u5206\\u6790\\u696d\\u52d9\\u306e\\u52b9\\u7387\\u5316\\u3092\\u8fc5\\u901f\\u306b\\u9032\\u3081\\u308b\\u3053\\u3068\\u304c\\u3067\\u304d\\u307e\\u3059\\u3002\"}}]}<\/script>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>\u30c7\u30fc\u30bf\u96c6\u7d04\u306e\u67a0\u3092\u8d85\u3048\u305fAI\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0 &nbsp; AGENTIC AI FOR BIOPHARMA \u3059\u3079\u3066\u200b\u306e\u200b\u200b\u200b\u610f\u601d\u6c7a\u5b9a\u200b\u306f\u3001\u200b\u305d\u306e\u200b\u88cf\u5074\u200b\u306b\u200b\u3042\u308b\u200b\u200b\u200b\u4f5c\u696d\u200b\u304b\u3089\u200b\u200b\u59cb\u307e\u308b\u3002\u200b\u00a0\u200bAtlas\u200b\u306f\u200b\u305d\u306e\u200b\u4f5c\u696d [&hellip;]<\/p>\n","protected":false},"author":40,"featured_media":62171,"parent":8612,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"content-hub":[],"template-style":[],"class_list":["post-63229","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v28.1 (Yoast SEO v28.1) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>\u88fd\u85ac\u696d\u754c\u306e\u7af6\u5408\u5206\u6790\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8AI | Atlas CI<\/title>\n<meta name=\"description\" content=\"\u88fd\u85ac\u696d\u754c\u5411\u3051\u7af6\u5408\u5206\u6790\u306e\u305f\u3081\u306e\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u578bAI\u3002\u554f\u3044\u3092\u6295\u3052\u308b\u3060\u3051\u3067\u3001\u51fa\u5178\u4ed8\u304d\u306e\u5171\u6709\u53ef\u80fd\u306a\u6210\u679c\u7269\u3092\u4f5c\u6210\u3002\u30c1\u30fc\u30e0\u3067\u4f7f\u3044\u6163\u308c\u305f\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u6d3b\u7528\u3067\u304d\u307e\u3059\u3002\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.evaluate.com\/ja\/solutions\/norstella-atlas-ci\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Norstella Atlas \u2014 AI That Does the CI Work\" \/>\n<meta property=\"og:description\" content=\"\u88fd\u85ac\u696d\u754c\u5411\u3051\u7af6\u5408\u5206\u6790\u306e\u305f\u3081\u306e\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u578bAI\u3002\u554f\u3044\u3092\u6295\u3052\u308b\u3060\u3051\u3067\u3001\u51fa\u5178\u4ed8\u304d\u306e\u5171\u6709\u53ef\u80fd\u306a\u6210\u679c\u7269\u3092\u4f5c\u6210\u3002\u30c1\u30fc\u30e0\u3067\u4f7f\u3044\u6163\u308c\u305f\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u6d3b\u7528\u3067\u304d\u307e\u3059\u3002\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.evaluate.com\/ja\/solutions\/norstella-atlas-ci\/\" \/>\n<meta property=\"og:site_name\" content=\"Evaluate\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-29T01:29:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.evaluate.com\/wp-content\/uploads\/2026\/06\/adobestock_1705223964-scaled.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1463\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Norstella Atlas CI\" \/>\n<meta name=\"twitter:site\" content=\"@evaluatepharma\" \/>\n<meta name=\"twitter:label1\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data1\" content=\"2\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.evaluate.com\\\/ja\\\/solutions\\\/norstella-atlas-ci\\\/\",\"url\":\"https:\\\/\\\/www.evaluate.com\\\/ja\\\/solutions\\\/norstella-atlas-ci\\\/\",\"name\":\"\u88fd\u85ac\u696d\u754c\u306e\u7af6\u5408\u5206\u6790\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8AI | Atlas CI\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.evaluate.com\\\/ja\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.evaluate.com\\\/ja\\\/solutions\\\/norstella-atlas-ci\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.evaluate.com\\\/ja\\\/solutions\\\/norstella-atlas-ci\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.evaluate.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/adobestock_1705223964-scaled.webp\",\"datePublished\":\"2026-06-25T10:57:11+00:00\",\"dateModified\":\"2026-07-29T01:29:10+00:00\",\"description\":\"\u88fd\u85ac\u696d\u754c\u5411\u3051\u7af6\u5408\u5206\u6790\u306e\u305f\u3081\u306e\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u578bAI\u3002\u554f\u3044\u3092\u6295\u3052\u308b\u3060\u3051\u3067\u3001\u51fa\u5178\u4ed8\u304d\u306e\u5171\u6709\u53ef\u80fd\u306a\u6210\u679c\u7269\u3092\u4f5c\u6210\u3002\u30c1\u30fc\u30e0\u3067\u4f7f\u3044\u6163\u308c\u305f\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u6d3b\u7528\u3067\u304d\u307e\u3059\u3002\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.evaluate.com\\\/ja\\\/solutions\\\/norstella-atlas-ci\\\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.evaluate.com\\\/ja\\\/solutions\\\/norstella-atlas-ci\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\\\/\\\/www.evaluate.com\\\/ja\\\/solutions\\\/norstella-atlas-ci\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.evaluate.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/adobestock_1705223964-scaled.webp\",\"contentUrl\":\"https:\\\/\\\/www.evaluate.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/adobestock_1705223964-scaled.webp\",\"width\":2560,\"height\":1463,\"caption\":\"Norstella Atlas Featured Image\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.evaluate.com\\\/ja\\\/solutions\\\/norstella-atlas-ci\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.evaluate.com\\\/ja\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Solutions\",\"item\":\"https:\\\/\\\/www.evaluate.com\\\/ja\\\/solutions\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Norstella Atlas CI\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.evaluate.com\\\/ja\\\/#website\",\"url\":\"https:\\\/\\\/www.evaluate.com\\\/ja\\\/\",\"name\":\"Evaluate\",\"description\":\"Pharma commercial intelligence, news &amp; analysis\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.evaluate.com\\\/ja\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.evaluate.com\\\/ja\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ja\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.evaluate.com\\\/ja\\\/#organization\",\"name\":\"Evaluate\",\"url\":\"https:\\\/\\\/www.evaluate.com\\\/ja\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\\\/\\\/www.evaluate.com\\\/ja\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.evaluate.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/cropped-evaluate_norstella_logo_rgb.webp\",\"contentUrl\":\"https:\\\/\\\/www.evaluate.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/cropped-evaluate_norstella_logo_rgb.webp\",\"width\":829,\"height\":350,\"caption\":\"Evaluate\"},\"image\":{\"@id\":\"https:\\\/\\\/www.evaluate.com\\\/ja\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/evaluatepharma\",\"https:\\\/\\\/uk.linkedin.com\\\/company\\\/evaluatepharma\\\/\"],\"description\":\"Evaluate provides trusted data, intelligence, and consulting services to help pharmaceutical and life sciences organisations make better decisions across research, development, and commercial strategy. Evaluate\u2019s solutions combine proprietary datasets, expert analysis, and forecasting to support portfolio strategy, competitive intelligence, and market understanding across the global pharma landscape. Evaluate is part of Norstella.\",\"email\":\"marketing@evaluate.com\",\"telephone\":\"+44 (0)20 7377 0800\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"\u88fd\u85ac\u696d\u754c\u306e\u7af6\u5408\u5206\u6790\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8AI | Atlas CI","description":"\u88fd\u85ac\u696d\u754c\u5411\u3051\u7af6\u5408\u5206\u6790\u306e\u305f\u3081\u306e\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u578bAI\u3002\u554f\u3044\u3092\u6295\u3052\u308b\u3060\u3051\u3067\u3001\u51fa\u5178\u4ed8\u304d\u306e\u5171\u6709\u53ef\u80fd\u306a\u6210\u679c\u7269\u3092\u4f5c\u6210\u3002\u30c1\u30fc\u30e0\u3067\u4f7f\u3044\u6163\u308c\u305f\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u6d3b\u7528\u3067\u304d\u307e\u3059\u3002","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.evaluate.com\/ja\/solutions\/norstella-atlas-ci\/","og_locale":"ja_JP","og_type":"article","og_title":"Norstella Atlas \u2014 AI That Does the CI Work","og_description":"\u88fd\u85ac\u696d\u754c\u5411\u3051\u7af6\u5408\u5206\u6790\u306e\u305f\u3081\u306e\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u578bAI\u3002\u554f\u3044\u3092\u6295\u3052\u308b\u3060\u3051\u3067\u3001\u51fa\u5178\u4ed8\u304d\u306e\u5171\u6709\u53ef\u80fd\u306a\u6210\u679c\u7269\u3092\u4f5c\u6210\u3002\u30c1\u30fc\u30e0\u3067\u4f7f\u3044\u6163\u308c\u305f\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u6d3b\u7528\u3067\u304d\u307e\u3059\u3002","og_url":"https:\/\/www.evaluate.com\/ja\/solutions\/norstella-atlas-ci\/","og_site_name":"Evaluate","article_modified_time":"2026-07-29T01:29:10+00:00","og_image":[{"width":2560,"height":1463,"url":"https:\/\/www.evaluate.com\/wp-content\/uploads\/2026\/06\/adobestock_1705223964-scaled.webp","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_title":"Norstella Atlas CI","twitter_site":"@evaluatepharma","twitter_misc":{"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"2\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.evaluate.com\/ja\/solutions\/norstella-atlas-ci\/","url":"https:\/\/www.evaluate.com\/ja\/solutions\/norstella-atlas-ci\/","name":"\u88fd\u85ac\u696d\u754c\u306e\u7af6\u5408\u5206\u6790\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8AI | Atlas CI","isPartOf":{"@id":"https:\/\/www.evaluate.com\/ja\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.evaluate.com\/ja\/solutions\/norstella-atlas-ci\/#primaryimage"},"image":{"@id":"https:\/\/www.evaluate.com\/ja\/solutions\/norstella-atlas-ci\/#primaryimage"},"thumbnailUrl":"https:\/\/www.evaluate.com\/wp-content\/uploads\/2026\/06\/adobestock_1705223964-scaled.webp","datePublished":"2026-06-25T10:57:11+00:00","dateModified":"2026-07-29T01:29:10+00:00","description":"\u88fd\u85ac\u696d\u754c\u5411\u3051\u7af6\u5408\u5206\u6790\u306e\u305f\u3081\u306e\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u578bAI\u3002\u554f\u3044\u3092\u6295\u3052\u308b\u3060\u3051\u3067\u3001\u51fa\u5178\u4ed8\u304d\u306e\u5171\u6709\u53ef\u80fd\u306a\u6210\u679c\u7269\u3092\u4f5c\u6210\u3002\u30c1\u30fc\u30e0\u3067\u4f7f\u3044\u6163\u308c\u305f\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u6d3b\u7528\u3067\u304d\u307e\u3059\u3002","breadcrumb":{"@id":"https:\/\/www.evaluate.com\/ja\/solutions\/norstella-atlas-ci\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.evaluate.com\/ja\/solutions\/norstella-atlas-ci\/"]}]},{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.evaluate.com\/ja\/solutions\/norstella-atlas-ci\/#primaryimage","url":"https:\/\/www.evaluate.com\/wp-content\/uploads\/2026\/06\/adobestock_1705223964-scaled.webp","contentUrl":"https:\/\/www.evaluate.com\/wp-content\/uploads\/2026\/06\/adobestock_1705223964-scaled.webp","width":2560,"height":1463,"caption":"Norstella Atlas Featured Image"},{"@type":"BreadcrumbList","@id":"https:\/\/www.evaluate.com\/ja\/solutions\/norstella-atlas-ci\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.evaluate.com\/ja\/"},{"@type":"ListItem","position":2,"name":"Solutions","item":"https:\/\/www.evaluate.com\/ja\/solutions\/"},{"@type":"ListItem","position":3,"name":"Norstella Atlas CI"}]},{"@type":"WebSite","@id":"https:\/\/www.evaluate.com\/ja\/#website","url":"https:\/\/www.evaluate.com\/ja\/","name":"Evaluate","description":"Pharma commercial intelligence, news &amp; analysis","publisher":{"@id":"https:\/\/www.evaluate.com\/ja\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.evaluate.com\/ja\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ja"},{"@type":"Organization","@id":"https:\/\/www.evaluate.com\/ja\/#organization","name":"Evaluate","url":"https:\/\/www.evaluate.com\/ja\/","logo":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.evaluate.com\/ja\/#\/schema\/logo\/image\/","url":"https:\/\/www.evaluate.com\/wp-content\/uploads\/2026\/07\/cropped-evaluate_norstella_logo_rgb.webp","contentUrl":"https:\/\/www.evaluate.com\/wp-content\/uploads\/2026\/07\/cropped-evaluate_norstella_logo_rgb.webp","width":829,"height":350,"caption":"Evaluate"},"image":{"@id":"https:\/\/www.evaluate.com\/ja\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/evaluatepharma","https:\/\/uk.linkedin.com\/company\/evaluatepharma\/"],"description":"Evaluate provides trusted data, intelligence, and consulting services to help pharmaceutical and life sciences organisations make better decisions across research, development, and commercial strategy. Evaluate\u2019s solutions combine proprietary datasets, expert analysis, and forecasting to support portfolio strategy, competitive intelligence, and market understanding across the global pharma landscape. Evaluate is part of Norstella.","email":"marketing@evaluate.com","telephone":"+44 (0)20 7377 0800"}]}},"_links":{"self":[{"href":"https:\/\/www.evaluate.com\/ja\/wp-json\/wp\/v2\/pages\/63229","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.evaluate.com\/ja\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.evaluate.com\/ja\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.evaluate.com\/ja\/wp-json\/wp\/v2\/users\/40"}],"replies":[{"embeddable":true,"href":"https:\/\/www.evaluate.com\/ja\/wp-json\/wp\/v2\/comments?post=63229"}],"version-history":[{"count":2,"href":"https:\/\/www.evaluate.com\/ja\/wp-json\/wp\/v2\/pages\/63229\/revisions"}],"predecessor-version":[{"id":63255,"href":"https:\/\/www.evaluate.com\/ja\/wp-json\/wp\/v2\/pages\/63229\/revisions\/63255"}],"up":[{"embeddable":true,"href":"https:\/\/www.evaluate.com\/ja\/wp-json\/wp\/v2\/pages\/8612"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.evaluate.com\/ja\/wp-json\/wp\/v2\/media\/62171"}],"wp:attachment":[{"href":"https:\/\/www.evaluate.com\/ja\/wp-json\/wp\/v2\/media?parent=63229"}],"wp:term":[{"taxonomy":"content-hub","embeddable":true,"href":"https:\/\/www.evaluate.com\/ja\/wp-json\/wp\/v2\/content-hub?post=63229"},{"taxonomy":"template-style","embeddable":true,"href":"https:\/\/www.evaluate.com\/ja\/wp-json\/wp\/v2\/template-style?post=63229"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}