<!DOCTYPE html>
<html lang="<?php echo e(str_replace('_', '-', app()->getLocale())); ?>" class="<?php echo \Illuminate\Support\Arr::toCssClasses(['dark' => ($appearance ?? 'system') == 'dark']); ?>">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  <meta http-equiv="x-ua-compatible" content="ie=edge" />
  <meta id="format-detection" name="format-detection" content="telephone=no" />
  <meta name="csrf-token" content="<?php echo e(csrf_token()); ?>">
  <meta http-equiv="Content-Language" content="ja"/>
  <meta name="google-site-verification" content="7noTMGoOk_GHFiue6emTJBsg0IKOve-81aH1Xfacw_U"/>
  <meta name="google" content="notranslate"/>
  <meta name="robots" content="index, follow, max-image-preview:large">
  <meta name="googlebot" content="index, follow">

  
  <script>
		(function () {
			const appearance = '<?php echo e($appearance ?? "system"); ?>';

			if (appearance === 'system') {
				const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;

				if (prefersDark) {
					document.documentElement.classList.add('dark');
				}
			}
		})();
  </script>

  
  <style>
		html {
			background-color: oklch(1 0 0);
		}

		html.dark {
			background-color: oklch(0.145 0 0);
		}
  </style>

  <?php
    $isPipopaSite = str_contains(request()->path(), 'ai-chatbot');
  ?>

  <title inertia><?php echo e($isPipopaSite ? 'pipopa（ピポパ）| 企業専用AIチャットボット - 24時間365日対応' : 'Mattock - AI時代のベトナムオフショア開発パートナー | 開発コスト最大60%削減'); ?></title>

  <?php if($isPipopaSite): ?>
    <link rel="icon" href="/favicon-pipopa.ico" sizes="any">
    <link rel="icon" href="/favicon-pipopa.svg" type="image/svg+xml">
    <link rel="apple-touch-icon" href="/apple-touch-pipopa-icon.png">
  <?php else: ?>
    <link rel="icon" href="/favicon.ico" sizes="any">
    <link rel="icon" href="/favicon.svg" type="image/svg+xml">
    <link rel="apple-touch-icon" href="/apple-touch-icon.png">
  <?php endif; ?>

  <link rel="preconnect" href="https://fonts.bunny.net">
  <link href="https://fonts.bunny.net/css?family=instrument-sans:400,500,600" rel="stylesheet"/>

  <?php echo app('Tighten\Ziggy\BladeRouteGenerator')->generate(); ?>
  <?php echo app('Illuminate\Foundation\Vite')(['resources/js/app.ts', "resources/js/pages/{$page['component']}.vue"]); ?>
  <?php if (!isset($__inertiaSsrDispatched)) { $__inertiaSsrDispatched = true; $__inertiaSsrResponse = app(\Inertia\Ssr\Gateway::class)->dispatch($page); }  if ($__inertiaSsrResponse) { echo $__inertiaSsrResponse->head; } ?>
</head>
<body class="font-sans antialiased">
<?php if (!isset($__inertiaSsrDispatched)) { $__inertiaSsrDispatched = true; $__inertiaSsrResponse = app(\Inertia\Ssr\Gateway::class)->dispatch($page); }  if ($__inertiaSsrResponse) { echo $__inertiaSsrResponse->body; } else { ?><div id="app" data-page="<?php echo e(json_encode($page)); ?>"></div><?php } ?>
</body>
</html>

<?php /**PATH /var/www/html/pipopa/resources/views/app.blade.php ENDPATH**/ ?>