-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1109 lines (970 loc) · 39.3 KB
/
index.html
File metadata and controls
1109 lines (970 loc) · 39.3 KB
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
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>0dB.craft - ひとひらの余白に、知性を。| 静寂から生まれるテクノロジーブランド</title>
<meta name="description" content="0dB.craftは、テクノロジーをもっと人に寄り添える存在にするブランドです。静寂の中で生まれる「考える楽しさ」をお届けします。">
<meta name="keywords" content="0dB.craft, テクノロジー, 静寂, ミニマル, 日本, ブランド">
<meta name="author" content="0dB.craft">
<meta name="robots" content="index, follow">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WGV29G4YR3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-WGV29G4YR3');
</script>
<meta name="google-site-verification" content="tHW04ep-5QmIiOIMHztpWmrtq_xrx6Qb_45BiVuEkQ4" />
<link rel="canonical" href="https://0db-craft.com/">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://0db-craft.com/">
<meta property="og:title" content="0dB.craft - ひとひらの余白に、知性を。">
<meta property="og:description" content="0dB.craftは、テクノロジーをもっと人に寄り添える存在にするブランドです。静寂の中で生まれる「考える楽しさ」をお届けします。">
<meta property="og:image" content="https://0db-craft.com/images/0dB_craft_logo.svg">
<meta property="og:locale" content="ja_JP">
<meta property="og:site_name" content="0dB.craft">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://0db-craft.com/">
<meta name="twitter:title" content="0dB.craft - ひとひらの余白に、知性を。">
<meta name="twitter:description" content="0dB.craftは、テクノロジーをもっと人に寄り添える存在にするブランドです。静寂の中で生まれる「考える楽しさ」をお届けします。">
<meta name="twitter:image" content="https://0db-craft.com/images/0dB_craft_logo.svg">
<meta name="twitter:creator" content="@N2K_OneManIT">
<!-- Schema.org structured data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "0dB.craft",
"description": "テクノロジーをもっと人に寄り添える存在にするブランド",
"url": "https://0db-craft.com/",
"logo": "https://0db-craft.com/images/0dB_craft_logo.svg",
"foundingDate": "2025",
"founder": {
"@type": "Person",
"name": "Natsuki Yasuda"
},
"sameAs": [
"https://x.com/N2K_OneManIT",
"https://note.com/n2k_onemanit"
]
}
</script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
line-height: 1.8;
color: #2c3e50;
background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
overflow-x: hidden;
}
/* Floating particles for zen atmosphere */
.particles {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 1;
}
.particle {
position: absolute;
width: 2px;
height: 2px;
background: rgba(52, 73, 94, 0.1);
border-radius: 50%;
animation: float 20s infinite linear;
}
@keyframes float {
0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
10% { opacity: 1; }
90% { opacity: 1; }
100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}
/* Header */
header {
position: fixed;
top: 0;
width: 100%;
padding: 20px 0;
background: rgba(250, 250, 250, 0.95);
backdrop-filter: blur(10px);
z-index: 1000;
border-bottom: 1px solid rgba(52, 73, 94, 0.1);
}
.header-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 40px;
}
/* Toggle switches */
.header-controls {
display: flex;
align-items: center;
gap: 20px;
}
.toggle-switch {
position: relative;
display: inline-block;
width: 50px;
height: 24px;
}
.toggle-switch input {
opacity: 0;
width: 0;
height: 0;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(127, 140, 141, 0.3);
transition: .3s;
border-radius: 24px;
border: 1px solid rgba(52, 73, 94, 0.2);
}
.slider:before {
position: absolute;
content: "";
height: 18px;
width: 18px;
left: 2px;
bottom: 2px;
background-color: #34495e;
transition: .3s;
border-radius: 50%;
}
input:checked + .slider {
background-color: rgba(52, 73, 94, 0.6);
}
input:checked + .slider:before {
transform: translateX(26px);
}
.toggle-label {
font-size: 0.85rem;
color: #7f8c8d;
margin-left: 8px;
font-weight: 300;
min-width: 30px;
}
.control-group {
display: flex;
align-items: center;
}
/* Dark mode styles */
body.dark-mode {
background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
color: #e8e8e8;
}
.dark-mode header {
background: rgba(26, 26, 26, 0.95);
border-bottom: 1px solid rgba(200, 200, 200, 0.1);
}
.dark-mode .logo {
color: #e8e8e8;
}
.dark-mode .hero h1 {
color: #e8e8e8;
}
.dark-mode .hero-subtitle {
color: #a0a0a0;
}
.dark-mode .section-title {
color: #e8e8e8;
}
.dark-mode .story-text {
color: #c0c0c0;
}
.dark-mode .concept-card {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.dark-mode .concept-title {
color: #e8e8e8;
}
.dark-mode .concept-desc {
color: #a0a0a0;
}
.dark-mode .vision {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}
.dark-mode .vision-text {
color: #e8e8e8;
}
.dark-mode .toggle-label {
color: #a0a0a0;
}
.dark-mode .slider {
background-color: rgba(255, 255, 255, 0.2);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.dark-mode .slider:before {
background-color: #e8e8e8;
}
.dark-mode .flatline {
background: #e8e8e8;
}
.dark-mode .silence-pulse {
background: #e8e8e8;
}
.dark-mode .space-circle {
border-color: #e8e8e8;
}
.dark-mode .wave-bar {
background: #e8e8e8;
}
.dark-mode .zen-circle {
border-color: rgba(232, 232, 232, 0.3);
}
.dark-mode .zen-line {
background: rgba(232, 232, 232, 0.2);
}
.logo {
font-family: 'Times New Roman', serif;
font-size: 24px;
font-weight: 300;
color: #2c3e50;
letter-spacing: 1px;
text-decoration: none;
transition: all 0.3s ease;
}
.logo:hover {
opacity: 0.7;
}
/* Main container */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
position: relative;
z-index: 10;
}
/* Hero Section */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 120px 0 80px;
}
.hero-content {
max-width: 800px;
}
.hero h1 {
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 300;
color: #2c3e50;
margin-bottom: 60px;
letter-spacing: 0.02em;
line-height: 1.4;
animation: fadeInUp 1s ease-out;
}
.hero-subtitle {
font-size: 1.1rem;
color: #7f8c8d;
font-weight: 300;
letter-spacing: 0.05em;
animation: fadeInUp 1s ease-out 0.3s both;
}
/* Brand logo integration */
.brand-logo {
margin: 60px 0;
}
.brand-logo img {
max-width: 400px;
width: 100%;
height: auto;
/* High DPI support */
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
/* Smooth fade transition */
transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Fade effect during logo switch */
.brand-logo img.fading {
opacity: 0;
}
/* Fallback for older browsers */
.brand-logo svg {
max-width: 400px;
width: 100%;
height: auto;
}
/* Section styling */
section {
padding: 100px 0;
position: relative;
}
.section-title {
font-size: 2.5rem;
font-weight: 300;
text-align: center;
margin-bottom: 80px;
color: #2c3e50;
letter-spacing: 0.02em;
}
.section-content {
max-width: 800px;
margin: 0 auto;
text-align: center;
}
.story-text {
font-size: 1.2rem;
line-height: 2;
color: #34495e;
margin-bottom: 40px;
font-weight: 300;
}
/* Concept Cards */
.concepts {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 60px;
margin: 80px 0;
}
.concept-card {
background: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(10px);
border: 1px solid rgba(52, 73, 94, 0.1);
border-radius: 20px;
padding: 50px 40px;
text-align: center;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.concept-card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(52, 73, 94, 0.05), transparent);
transition: left 0.5s ease;
}
.concept-card:hover::before {
left: 100%;
}
.concept-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 60px rgba(52, 73, 94, 0.1);
}
.concept-visual {
height: 80px;
margin-bottom: 30px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
/* Silence - Flatline animation */
.silence-visual {
position: relative;
width: 120px;
height: 40px;
}
.flatline {
position: absolute;
top: 50%;
left: 0;
width: 100%;
height: 1px;
background: #34495e;
transform: translateY(-50%);
}
.silence-pulse {
position: absolute;
top: 50%;
left: 0;
width: 4px;
height: 4px;
background: #34495e;
border-radius: 50%;
transform: translateY(-50%);
animation: silencePulse 3s ease-in-out infinite;
}
@keyframes silencePulse {
0% { left: 0; opacity: 1; }
100% { left: calc(100% - 4px); opacity: 0.3; }
}
/* Space - Expanding circles */
.space-visual {
position: relative;
width: 100px;
height: 60px;
}
.space-circle {
position: absolute;
top: 50%;
left: 50%;
border: 1px solid #34495e;
border-radius: 50%;
transform: translate(-50%, -50%);
animation: spaceExpand 4s ease-out infinite;
}
.space-circle:nth-child(1) { animation-delay: 0s; }
.space-circle:nth-child(2) { animation-delay: 1.3s; }
.space-circle:nth-child(3) { animation-delay: 2.6s; }
@keyframes spaceExpand {
0% { width: 4px; height: 4px; opacity: 1; }
100% { width: 80px; height: 80px; opacity: 0; }
}
/* Create - Building waveform */
.create-visual {
display: flex;
align-items: end;
justify-content: center;
height: 60px;
gap: 3px;
}
.wave-bar {
width: 3px;
background: #34495e;
border-radius: 2px;
animation: waveGrow 2s ease-in-out infinite;
}
.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.2s; }
.wave-bar:nth-child(3) { animation-delay: 0.4s; }
.wave-bar:nth-child(4) { animation-delay: 0.6s; }
.wave-bar:nth-child(5) { animation-delay: 0.8s; }
.wave-bar:nth-child(6) { animation-delay: 1s; }
.wave-bar:nth-child(7) { animation-delay: 1.2s; }
@keyframes waveGrow {
0%, 50% { height: 4px; opacity: 0.3; }
25% { height: 40px; opacity: 1; }
100% { height: 4px; opacity: 0.3; }
}
.concept-title {
font-size: 1.5rem;
font-weight: 400;
margin-bottom: 20px;
color: #2c3e50;
}
.concept-desc {
color: #7f8c8d;
font-size: 1rem;
line-height: 1.8;
font-weight: 300;
}
/* Vision section */
.vision {
background: linear-gradient(135deg, rgba(52, 73, 94, 0.05) 0%, rgba(127, 140, 141, 0.03) 100%);
border-radius: 30px;
margin: 100px 0;
padding: 80px 60px;
}
.vision-text {
font-size: 1.3rem;
line-height: 2.2;
color: #2c3e50;
text-align: center;
font-weight: 300;
max-width: 700px;
margin: 0 auto;
}
/* Footer */
footer {
background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
color: white;
padding: 80px 0 40px;
text-align: center;
}
.footer-message {
font-size: 1.3rem;
margin-bottom: 40px;
font-weight: 300;
letter-spacing: 0.02em;
}
.cta-button {
display: inline-block;
padding: 15px 40px;
background: rgba(255, 255, 255, 0.1);
border: 2px solid rgba(255, 255, 255, 0.3);
color: white;
text-decoration: none;
border-radius: 50px;
font-weight: 300;
letter-spacing: 0.05em;
transition: all 0.3s ease;
margin: 20px;
}
.cta-button:hover {
background: rgba(255, 255, 255, 0.2);
border-color: rgba(255, 255, 255, 0.5);
transform: translateY(-2px);
}
.social-links {
margin: 40px 0 20px;
display: flex;
justify-content: center;
gap: 30px;
}
.social-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 50px;
height: 50px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 50%;
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
transition: all 0.3s ease;
}
.social-icon:hover {
background: rgba(255, 255, 255, 0.2);
border-color: rgba(255, 255, 255, 0.4);
color: white;
transform: translateY(-3px);
}
.social-icon svg {
width: 24px;
height: 24px;
fill: currentColor;
}
/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(50px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Responsive design */
@media (max-width: 768px) {
.container {
padding: 0 20px;
}
.header-content {
padding: 0 20px;
}
.header-controls {
gap: 15px;
}
.toggle-switch {
width: 44px;
height: 22px;
}
.toggle-switch .slider:before {
height: 16px;
width: 16px;
left: 2px;
bottom: 2px;
}
.toggle-switch input:checked + .slider:before {
transform: translateX(22px);
}
.toggle-label {
font-size: 0.8rem;
min-width: 25px;
}
.hero {
padding: 100px 0 60px;
}
.concepts {
grid-template-columns: 1fr;
gap: 40px;
}
section {
padding: 60px 0;
}
.vision {
padding: 40px 30px;
margin: 60px 0;
}
.social-links {
gap: 20px;
}
.social-icon {
width: 45px;
height: 45px;
}
.social-icon svg {
width: 20px;
height: 20px;
}
/* Brand logo mobile optimization */
.brand-logo img {
max-width: 280px;
}
}
/* Zen-inspired decorative elements */
.zen-circle {
position: absolute;
width: 200px;
height: 200px;
border: 1px solid rgba(52, 73, 94, 0.1);
border-radius: 50%;
top: 50%;
right: -100px;
transform: translateY(-50%);
opacity: 0.3;
}
.zen-line {
position: absolute;
width: 100px;
height: 1px;
background: rgba(52, 73, 94, 0.1);
left: -50px;
top: 50%;
transform: translateY(-50%);
}
</style>
</head>
<body>
<!-- Floating particles for zen atmosphere -->
<div class="particles"></div>
<!-- Header -->
<header>
<div class="header-content">
<a href="#" class="logo">0dB.craft</a>
<div class="header-controls">
<div class="control-group">
<label class="toggle-switch">
<input type="checkbox" id="darkModeToggle">
<span class="slider"></span>
</label>
<span class="toggle-label" id="darkModeLabel">Dark</span>
</div>
<div class="control-group">
<label class="toggle-switch">
<input type="checkbox" id="languageToggle">
<span class="slider"></span>
</label>
<span class="toggle-label" id="languageLabel">EN</span>
</div>
</div>
</div>
</header>
<!-- Hero Section -->
<main>
<section class="hero" role="banner">
<div class="container">
<div class="hero-content">
<h1 itemprop="name">ひとひらの余白に、知性を。</h1>
<div class="brand-logo">
<img id="brandLogoImg"
src="images/0dB_craft_logo.png"
alt="0dB.craft - ひとひらの余白に、知性を。"
width="400"
height="120"
loading="lazy">
</div>
<p class="hero-subtitle">テクノロジーを、もっと人に寄り添える存在に</p>
</div>
</div>
</section>
<!-- Brand Story -->
<section id="story" role="main">
<div class="container">
<div class="section-content">
<h2 class="section-title" itemprop="about">0dB.craftが目指すもの</h2>
<div class="zen-circle"></div>
<p class="story-text">
たくさんの情報が飛び交い、<br>
すべてを理解し、決断し、前に進み続けることが求められる現代。<br>
私たちは、そんな日常にほんのひとひらの余白を届けたいと思いました。
</p>
<p class="story-text">
テクノロジーは、もっと人に寄り添える。<br>
技術は、知識を振りかざすものではなく、<br>
誰もが「わかる」「できる」「考えられる」ための優しい道具であってほしい。
</p>
<p class="story-text">
0dB.craftが目指すのは、<br>
技術を"使いこなす"のではなく、共に遊び、共に考える関係性。<br>
大げさな革命ではなく、<br>
ふとした瞬間に「これって、心地いいな」と思えるような、<br>
静かで楽しい体験を作るブランドです。
</p>
</div>
</div>
</section>
<!-- Concepts -->
<section id="concepts" role="main">
<div class="container">
<h2 class="section-title">私たちが大切にしていること</h2>
<div class="concepts">
<div class="concept-card">
<div class="concept-visual">
<div class="silence-visual">
<div class="flatline"></div>
<div class="silence-pulse"></div>
</div>
</div>
<h3 class="concept-title">静寂 (Silence)</h3>
<p class="concept-desc">騒がしい世界に、0dBの安らぎを</p>
</div>
<div class="concept-card">
<div class="concept-visual">
<div class="space-visual">
<div class="space-circle"></div>
<div class="space-circle"></div>
<div class="space-circle"></div>
</div>
</div>
<h3 class="concept-title">余白 (Space)</h3>
<p class="concept-desc">何もないからこそ、すべてが生まれる場所を</p>
</div>
<div class="concept-card">
<div class="concept-visual">
<div class="create-visual">
<div class="wave-bar"></div>
<div class="wave-bar"></div>
<div class="wave-bar"></div>
<div class="wave-bar"></div>
<div class="wave-bar"></div>
<div class="wave-bar"></div>
<div class="wave-bar"></div>
</div>
</div>
<h3 class="concept-title">造る (Create)</h3>
<p class="concept-desc">ひとつひとつ、心を込めて造り上げる</p>
</div>
</div>
</div>
</section>
<!-- Vision -->
<section id="vision">
<div class="container">
<div class="vision">
<div class="zen-line"></div>
<h2 class="section-title">静寂に宿る、本当の知性</h2>
<p class="vision-text">
0dB、それは完全な静寂を意味します。<br>
騒がしい場所では聞こえない、心の奥の声があります。<br>
本当に大切なことは、静寂の中でしか見えてこない。<br><br>
AIが雄弁に語るのではなく、<br>
あなたの内なる声に耳を傾けられるよう、<br>
そっと寄り添ってくれる。<br><br>
そんな「静かな知性」を、すべての人に。
</p>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<p class="footer-message">"考える楽しさ"を、あなたと一緒に。</p>
<a href="contact.html" class="cta-button">お問い合わせ</a>
<div class="social-links">
<a href="https://x.com/N2K_OneManIT" class="social-icon" title="X (旧Twitter)" target="_blank" rel="noopener noreferrer">
<svg viewBox="0 0 24 24">
<path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/>
</svg>
</a>
<a href="https://note.com/n2k_onemanit" class="social-icon" title="Note" target="_blank" rel="noopener noreferrer">
<svg viewBox="0 0 24 24" fill="currentColor" style="width: 20px; height: 20px;">
<path d="M4 4v16h4V12c0-2.2 1.8-4 4-4s4 1.8 4 4v8h4V12c0-4.4-3.6-8-8-8-2 0-3.8 0.7-5.2 2V4H4z"/>
</svg>
</a>
<!-- Instagram link temporarily hidden
<a href="#" class="social-icon" title="Instagram" target="_blank" rel="noopener noreferrer">
<svg viewBox="0 0 24 24">
<path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z"/>
</svg>
</a>
-->
</div>
<div style="margin-top: 30px;">
<a href="privacy-policy.html" style="color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.85rem; margin-right: 20px; transition: color 0.3s ease;" onmouseover="this.style.color='rgba(255,255,255,1)'" onmouseout="this.style.color='rgba(255,255,255,0.7)'">プライバシーポリシー</a>
</div>
<p style="color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 20px;">
© 2025 0dB.craft. All rights reserved.
</p>
</div>
</footer>
</main>
<script>
// Language content
const content = {
ja: {
heroTitle: "ひとひらの余白に、知性を。",
heroSubtitle: "テクノロジーを、もっと人に寄り添える存在に",
storyTitle: "0dB.craftが目指すもの",
storyText1: "たくさんの情報が飛び交い、<br>すべてを理解し、決断し、前に進み続けることが求められる現代。<br>私たちは、そんな日常にほんのひとひらの余白を届けたいと思いました。",
storyText2: "テクノロジーは、もっと人に寄り添える。<br>技術は、知識を振りかざすものではなく、<br>誰もが「わかる」「できる」「考えられる」ための優しい道具であってほしい。",
storyText3: "0dB.craftが目指すのは、<br>技術を\"使いこなす\"のではなく、共に遊び、共に考える関係性。<br>大げさな革命ではなく、<br>ふとした瞬間に「これって、心地いいな」と思えるような、<br>静かで楽しい体験を作るブランドです。",
conceptsTitle: "私たちが大切にしていること",
silenceTitle: "静寂 (Silence)",
silenceDesc: "騒がしい世界に、0dBの安らぎを",
spaceTitle: "余白 (Space)",
spaceDesc: "何もないからこそ、すべてが生まれる場所を",
createTitle: "造る (Create)",
createDesc: "ひとつひとつ、心を込めて造り上げる",
visionTitle: "静寂に宿る、本当の知性",
visionText: "0dB、それは完全な静寂を意味します。<br>騒がしい場所では聞こえない、心の奥の声があります。<br>本当に大切なことは、静寂の中でしか見えてこない。<br><br>AIが雄弁に語るのではなく、<br>あなたの内なる声に耳を傾けられるよう、<br>そっと寄り添ってくれる。<br><br>そんな「静かな知性」を、すべての人に。",
footerMessage: "\"考える楽しさ\"を、あなたと一緒に。",
contactButton: "お問い合わせ",
darkModeLabel: "Dark",
languageLabel: "EN"
},
en: {
heroTitle: "Intelligence in every grain of space.",
heroSubtitle: "Making technology more human-centered",
storyTitle: "What 0dB.craft aims for",
storyText1: "In today's world filled with information overload,<br>where we're expected to understand everything, make decisions, and keep moving forward,<br>we wanted to deliver just a grain of space to such daily life.",
storyText2: "Technology can be more human-centered.<br>We believe technology should not be about flaunting knowledge,<br>but a gentle tool that helps everyone \"understand,\" \"achieve,\" and \"think.\"",
storyText3: "What 0dB.craft aims for is not \"mastering\" technology,<br>but a relationship where we play and think together.<br>Not a grand revolution,<br>but moments when you think \"this feels just right\"—<br>a brand that creates quiet and joyful experiences.",
conceptsTitle: "What we value",
silenceTitle: "Silence",
silenceDesc: "Bringing 0dB tranquility to a noisy world",
spaceTitle: "Space",
spaceDesc: "Where everything is born from nothingness",
createTitle: "Create",
createDesc: "Crafting each piece with heart and care",
visionTitle: "True intelligence dwelling in silence",
visionText: "0dB means complete silence.<br>There are voices deep in our hearts that cannot be heard in noisy places.<br>What truly matters can only be seen in silence.<br><br>Rather than AI speaking eloquently,<br>we want it to gently accompany you<br>so you can listen to your inner voice.<br><br>Such \"quiet intelligence\" for everyone.",
footerMessage: "\"The joy of thinking\" together with you.",
contactButton: "Contact us",
darkModeLabel: "Dark",
languageLabel: "日本語"
}
};
let currentLang = 'ja';
let isDarkMode = false;
// Preload logo images for smooth switching
const logoImages = {
light: new Image(),
dark: new Image()
};
// Preload images
logoImages.light.src = 'images/0dB_craft_logo.png';
logoImages.dark.src = 'images/0dB_craft_logo_dark.png';
// Create floating particles for zen atmosphere
function createParticles() {
const particlesContainer = document.querySelector('.particles');
const particleCount = 50;
for (let i = 0; i < particleCount; i++) {
const particle = document.createElement('div');
particle.className = 'particle';
particle.style.left = Math.random() * 100 + '%';
particle.style.animationDelay = Math.random() * 20 + 's';
particle.style.animationDuration = (15 + Math.random() * 10) + 's';
particlesContainer.appendChild(particle);
}
}
// Update content based on current language
function updateContent() {
const c = content[currentLang];
// Update text content
document.querySelector('.hero h1').innerHTML = c.heroTitle;
document.querySelector('.hero-subtitle').innerHTML = c.heroSubtitle;
document.querySelector('#story .section-title').innerHTML = c.storyTitle;
const storyTexts = document.querySelectorAll('#story .story-text');
storyTexts[0].innerHTML = c.storyText1;
storyTexts[1].innerHTML = c.storyText2;
storyTexts[2].innerHTML = c.storyText3;
document.querySelector('#concepts .section-title').innerHTML = c.conceptsTitle;