-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
660 lines (578 loc) · 16.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
<!DOCTYPE html>
<html lang="ja">
<head>
<title>合同会社 WillRobotics</title>
<meta charset="utf-8">
<meta name="description" content="合同会社 WillRobotics コーポレートサイト">
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6A2m3V+nX9b9/E4mpLvQX1J1RZx6RG6qR75tCOgC57t3fZF7OMyxtW1AN" crossorigin="anonymous">
<style>
* {
box-sizing: border-box;
}
:root {
--primary-color: #005A9C;
--secondary-color: #007BFF;
--accent-color: #00BFFF;
--text-color: #222;
--text-light: #555;
--bg-color: #f7f9fc;
--white: #fff;
--max-width: 1200px;
--transition: 0.3s ease;
--gradient-hero: linear-gradient(135deg, #005A9C 0%, #007BFF 50%, #00BFFF 100%);
}
body {
font-family: 'Inter', 'Noto Sans JP', sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
color: var(--text-color);
background-color: var(--bg-color);
-webkit-font-smoothing: antialiased;
scroll-behavior: smooth;
}
nav {
background-color: rgba(0,0,0,0.7);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.75rem 2rem;
backdrop-filter: blur(10px);
}
nav .logo {
font-size: 1.4rem;
font-weight: 700;
color: var(--white);
white-space: nowrap;
text-transform: uppercase;
letter-spacing: 0.05em;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
gap: 2rem;
}
nav ul li a {
color: var(--white);
text-decoration: none;
font-weight: 600;
font-size: 0.95rem;
padding: 0.25rem 0;
position: relative;
transition: color var(--transition);
}
nav ul li a::after {
content: "";
position: absolute;
bottom: -4px;
left: 0;
width: 0%;
height: 2px;
background: var(--accent-color);
transition: width var(--transition);
}
nav ul li a:hover::after {
width: 100%;
}
.hamburger {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
}
.hamburger span {
width: 25px;
height: 3px;
background: var(--white);
display: block;
}
.nav-links {
display: flex;
align-items: center;
}
@media (max-width: 768px) {
.nav-links {
position: fixed;
top: 60px;
right: 0;
background: rgba(0,0,0,0.9);
flex-direction: column;
padding: 2rem;
transform: translateX(100%);
transition: transform var(--transition);
}
.nav-links.open {
transform: translateX(0);
}
nav ul {
flex-direction: column;
gap: 1.5rem;
}
.hamburger {
display: flex;
}
}
/* Hero Section */
.hero {
height: 100vh;
position: relative;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
padding-top: 60px;
background: var(--gradient-hero);
}
#hero-canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}
.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to bottom right, rgba(0,0,0,0.2), rgba(0,0,0,0.1));
z-index: 2;
}
.hero-content {
position: relative;
z-index: 3;
text-align: center;
color: #fff;
max-width: 90%;
animation: heroFade 1.5s ease forwards;
opacity: 0;
transform: translateY(20px);
}
@keyframes heroFade {
to {
opacity: 1;
transform: translateY(0);
}
}
.hero-content h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
letter-spacing: 0.05em;
font-weight: 700;
}
.hero-content p {
font-size: 1.25rem;
max-width: 600px;
margin: 0 auto 2rem auto;
line-height: 1.6;
}
.hero-cta {
display: inline-block;
background: var(--accent-color);
color: var(--white);
padding: 0.75rem 1.5rem;
border-radius: 30px;
font-weight: 700;
text-decoration: none;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
transition: background var(--transition), transform var(--transition);
}
.hero-cta:hover {
background: #00a0e0;
transform: translateY(-3px);
}
@media (max-width: 768px) {
.hero-content h1 {
font-size: 2.5rem;
}
.hero-content p {
font-size: 1rem;
}
}
/* Services Section */
.inner {
margin: auto;
padding: 4rem 2rem;
max-width: var(--max-width);
}
.section-title {
text-align: center;
font-size: 2.5rem;
color: var(--primary-color);
margin: 3rem 0 1rem 0;
font-weight: 700;
position: relative;
}
.section-title::after {
content: "";
display: block;
width: 50px;
height: 3px;
background: var(--accent-color);
margin: 1rem auto 0;
}
.section-subtitle {
text-align: center;
color: var(--text-light);
margin-bottom: 3rem;
font-size: 1rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
line-height: 1.6;
}
#services {
background: var(--bg-color);
}
.intro-services {
background: var(--white);
margin-top: -4rem;
padding: 4rem 2rem 6rem;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
border-radius: 8px;
text-align: center;
position: relative;
z-index: 2;
animation: fadeInUp 1s ease forwards;
transform: translateY(30px);
opacity: 0;
}
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}
.intro-services h2 {
color: var(--secondary-color);
margin-bottom: 1rem;
font-size: 1.75rem;
font-weight: 700;
}
.intro-services p {
color: var(--text-light);
line-height: 1.8;
margin: 0 auto 3rem auto;
max-width: 700px;
}
.service-categories {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 2rem;
margin: 4rem 0;
}
.category-item {
flex: 1;
min-width: 250px;
max-width: 300px;
margin: 1rem;
text-align: center;
transition: transform var(--transition), box-shadow var(--transition);
background: #fefefe;
border-radius: 8px;
padding: 2rem 1rem;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.category-item:hover {
transform: translateY(-5px);
box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
.category-icon {
font-size: 3rem;
color: var(--primary-color);
margin-bottom: 1rem;
}
.category-title {
font-size: 1.25rem;
color: var(--primary-color);
margin-bottom: 0.5rem;
font-weight: 700;
}
.category-description {
font-size: 0.9rem;
color: var(--text-light);
line-height: 1.6;
}
.service-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
margin-top: 3rem;
}
@media (max-width: 768px) {
.service-grid {
grid-template-columns: 1fr;
}
}
.service-card {
background: white;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
transition: transform var(--transition), box-shadow var(--transition);
padding: 2rem;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 1rem;
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
.service-title {
color: var(--primary-color);
font-size: 1.25rem;
margin-bottom: 0.5rem;
font-weight: 700;
}
.service-description {
color: var(--text-light);
font-size: 0.9rem;
line-height: 1.8;
margin-bottom: 1rem;
}
.service-media {
width: 100%;
border-radius: 8px;
overflow: hidden;
}
.service-media img, .service-media video {
width: 50%;
height: auto;
margin: auto;
display: block;
}
/* About Section */
#about {
background: var(--bg-color);
padding-top: 2rem;
padding-bottom: 4rem;
}
.about {
background: white;
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
border-radius: 8px;
padding: 2rem;
transition: transform var(--transition);
max-width: 800px;
margin: 0 auto;
}
.about:hover {
transform: translateY(-5px);
}
.about table {
width: 100%;
border-collapse: collapse;
margin-top: 2rem;
}
.about td {
padding: 1rem;
border-bottom: 1px solid #ddd;
vertical-align: top;
font-size: 0.95rem;
}
.about td:first-child {
font-weight: 700;
color: var(--text-color);
width: 20%;
white-space: nowrap;
}
footer {
background-color: var(--primary-color);
color: var(--white);
text-align: center;
padding: 1rem;
margin-top: 2rem;
font-size: 0.85rem;
}
footer p {
margin: 0;
}
</style>
</head>
<body>
<nav aria-label="Main Navigation">
<div class="logo">WillRobotics</div>
<div class="hamburger" aria-label="Toggle Menu" aria-expanded="false" aria-controls="main-menu">
<span></span>
<span></span>
<span></span>
</div>
<div class="nav-links" id="main-menu">
<ul>
<li><a href="#about">会社概要</a></li>
<li><a href="#services">サービス</a></li>
</ul>
</div>
</nav>
<div class="hero">
<canvas id="hero-canvas"></canvas>
<div class="hero-overlay"></div>
<div class="hero-content">
<h1>合同会社 WillRobotics</h1>
<p>すべての"新しい"は"掛け算"から<br>先端テクノロジーで新たな価値を創造します</p>
<a href="mailto:[email protected]" class="hero-cta">お問い合わせ</a>
</div>
</div>
<section id="services">
<div class="intro-services">
<h2>すべての"新しい"は"掛け算"から</h2>
<p>世の中の新たなアイデア・発想は、既存のものの掛け算(組み合わせ)によって創られます。
WillRoboticsはWeb、VR、ロボティクス、AI、画像処理といった様々なテクノロジーを組み合わせて、新たな価値を創造します。</p>
<div class="service-categories">
<div class="category-item">
<i class="fas fa-brain category-icon"></i>
<h3 class="category-title">Generative AI</h3>
<p class="category-description">GPT・Claude・Gemini・LLama・Qwen・Stable Diffusionなど幅広いモデルの活用</p>
</div>
<div class="category-item">
<i class="fas fa-robot category-icon"></i>
<h3 class="category-title">Robotics</h3>
<p class="category-description">マニピュレータや移動ロボットのソフトウェアインテグレーション</p>
</div>
<div class="category-item">
<i class="fas fa-gamepad category-icon"></i>
<h3 class="category-title">Game, VR/AR</h3>
<p class="category-description">3Dを活用したVision Pro/Quest3などのVR・ARシステム</p>
</div>
</div>
<h2 class="section-title">Our Services</h2>
<p class="section-subtitle">お客様と共に新たな"掛け算"を創ります。<br>開発やコンサルティングに関するお問い合わせは下記連絡先よりご連絡下さい。</p>
<div class="service-grid">
<div class="service-card">
<h3 class="service-title">Robotics × Web</h3>
<p class="service-description">ロボティクスとWebの融合<br>ブラウザからロボットを操作し、スマホやタブレットなど様々なデバイスに対応。</p>
<div class="service-media">
<img src="https://github.com/WillRobotics/willrobotics/blob/master/web_robot.gif?raw=true" alt="Web×ロボティクス">
</div>
</div>
<div class="service-card">
<h3 class="service-title">AI × Robotics</h3>
<p class="service-description">AIがロボットプログラムを生成し、様々な環境で動作可能なロボットシステムを構築。</p>
<div class="service-media">
<video autoplay loop muted playsinline src="https://hackster.imgix.net/uploads/attachments/1671535/15-_1__nSX2ItPQyh.gif?auto=format%2Ccompress&gifq=35&w=900&h=675&fit=min&fm=mp4"></video>
</div>
</div>
</div>
</div>
</section>
<section id="about">
<div class="inner">
<h2 class="section-title">会社概要</h2>
<div class="about">
<table>
<tbody>
<tr>
<td>会社名</td>
<td>合同会社 WillRobotics</td>
</tr>
<tr>
<td>本店所在地</td>
<td>埼玉県和光市丸山台</td>
</tr>
<tr>
<td>設立</td>
<td>令和3年</td>
</tr>
<tr>
<td>代表</td>
<td>田中健太</td>
</tr>
<tr>
<td>お問い合わせ</td>
<td>info[at]willrobotics.com</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<footer>
<p>© 2021 WillRobotics Co.,Ltd. All Rights Reserved.</p>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script>
// Navigation toggle
const hamburger = document.querySelector('.hamburger');
const navLinks = document.querySelector('.nav-links');
hamburger.addEventListener('click', () => {
const expanded = hamburger.getAttribute('aria-expanded') === 'true' || false;
hamburger.setAttribute('aria-expanded', !expanded);
navLinks.classList.toggle('open');
});
// Three.js for Hero Background
const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera(
75,
window.innerWidth / window.innerHeight,
0.1,
1000
);
const renderer = new THREE.WebGLRenderer({
canvas: document.getElementById('hero-canvas'),
antialias: true,
alpha: true
});
renderer.setSize(window.innerWidth, window.innerHeight);
renderer.setPixelRatio(window.devicePixelRatio);
renderer.setClearColor(0x000000, 0);
scene.background = null;
const group = new THREE.Group();
scene.add(group);
const cubeGeometry = new THREE.BoxGeometry(1, 1, 1);
const cubeMaterials = [
new THREE.MeshBasicMaterial({ color: 0x005A9C }),
new THREE.MeshBasicMaterial({ color: 0x007BFF }),
new THREE.MeshBasicMaterial({ color: 0x00BFFF })
];
for (let i = 0; i < 50; i++) {
const material = cubeMaterials[Math.floor(Math.random() * cubeMaterials.length)];
const cube = new THREE.Mesh(cubeGeometry, material);
cube.position.set(
Math.random() * 10 - 5,
Math.random() * 10 - 5,
Math.random() * 10 - 5
);
cube.rotation.set(
Math.random() * Math.PI,
Math.random() * Math.PI,
Math.random() * Math.PI
);
group.add(cube);
}
camera.position.z = 5;
let mouseX = 0;
let mouseY = 0;
document.addEventListener('mousemove', (event) => {
mouseX = (event.clientX / window.innerWidth) * 2 - 1;
mouseY = (event.clientY / window.innerHeight) * 2 - 1;
});
function animate() {
requestAnimationFrame(animate);
group.rotation.x += 0.001 + (mouseY * 0.01);
group.rotation.y += 0.002 + (mouseX * 0.01);
renderer.render(scene, camera);
}
animate();
window.addEventListener('resize', () => {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize(window.innerWidth, window.innerHeight);
});
</script>
</body>
</html>