-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgei_dash.html
1017 lines (1000 loc) · 59.6 KB
/
gei_dash.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
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>
<head lang="ja" prefix="og: http://ogp.me/ns#">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NNTN7K82T8"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-NNTN7K82T8');
</script>
<!-- Google Tag Manager -->
<title>Satsuki Wada Works</title>
<meta property="og:url" content="http://wsatsuki.com/" />
<meta property="og:title" content="Satsuki Wada Works">
<meta property="og:type" content="website">
<meta property="og:description" content="Designer / Consultant / Illustrator etc...">
<meta property="og:image" content="assets/ogp.jpg">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:[email protected]&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet"> </head>
<link rel="icon" href="favicon.ico">
<link rel="icon" type="image/png" href="assets/Icon.png">
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-T96WLVWC"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<header class="fixed-top shadow-sm">
<nav class="container d-flex justify-content-between align-items-center py-2">
<div class="mb-0"> <!-- mb-0でマージンをリセット -->
<a href="index.html" class="text-secondary text-decoration-none">home</a>
</div>
<div class="social-icons d-flex">
<a href="https://x.com/say____u" target="_blank" class="me-2">
<img src="assets/sns_icon/x.png" alt="Twitter" width="24">
</a>
<a href="https://www.instagram.com/us_yu3/" target="_blank" class="me-2">
<img src="assets/sns_icon/instagram.png" alt="Instagram" width="24">
</a>
<a href="mailto:[email protected]" target="_blank">
<img src="assets/sns_icon/mail.png" alt="mail" width="24">
</a>
</div>
</nav>
</header>
<div class="container mt-5">
<div class="col-lg-10 offset-lg-1">
<div>
<h1 name="top">藝’(ゲイダッシュ)プロジェクト</h1>
<picture>
<!-- SP版の画像 -->
<source srcset="assets/gei_dash/gei_banner_sp.jpg" media="(max-width: 768px)">
<!-- デフォルト(PC版)の画像 -->
<img src="assets/gei_dash/gei_banner_pc.jpg" class="img-fluid" alt="藝’プロジェクトのバナー">
</picture>
<div class="row pb-5 pt-2">
<p>自分ではない誰かのための”表現”。<br>
それは美術館ではなく、まちなかや、スーパーマーケット、学校、職場…日常のなかで、誰かを笑顔にするために潜んでいる。<br>
そんな「藝術」とは言わない謙虚さを持った物や空間を、「藝'(ゲイダッシュ)」と名付けて集めることにしました。
</p>
<h4>定義</h4>
<ul class="custom-list">
<li>個人または集団が意識的に作り出した、生活の中での工夫や表現。</li>
<li>偶然に生まれたものではなく、作り手の意図や目的が込められていること。</li>
<li>洗練された芸術作品とは異なり、素朴さや未完成な魅力を持つもの。</li>
</ul>
</div>
</div>
<hr class="custom-divider">
<div class="row pt-5 pb-5">
<div id="details-001" class="details-content" style="display: block;">
<section class="card-section">
<div class="row d-flex align-items-start">
<!-- テキスト部分 -->
<div class="col-lg-8 text-content">
<div>
<h6>profile 001</h6>
<h3>ジムのデッサン人形</h3>
<div class="location-info">
<i class="fas fa-clock"></i> <span>2021年ごろ</span>
<i class="fas fa-map-marker-alt"></i> <span>東京都北区 とあるジム</span>
</div>
</div>
<div>
<p>通っていたジムの窓際に置かれていたデッサン人形。行くたびにポーズが変わっていて、ジムに訪れた人への歓迎を伝えてくれていた。</p>
</div>
<div class="row d-flex align-items-center">
<div class="radar-chart-2">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 200 200">
<g stroke="#dce5eb">
<path d="M 100 100 L 100.0 0.0"/>
<path d="M 100 100 L 195.1 69.1"/>
<path d="M 100 100 L 158.8 180.9"/>
<path d="M 100 100 L 41.2 180.9"/>
<path d="M 100 100 L 4.9 69.1"/>
</g>
<g stroke="#dce5eb" fill="none">
<path d="M 100.0 0.0 L 195.1 69.1 L 158.8 180.9 L 41.2 180.9 L 4.9 69.1 L 100.0 0.0"/>
<path d="M 100.0 20.0 L 176.1 75.3 L 147.0 164.7 L 53.0 164.7 L 23.9 75.3 L 100.0 20.0"/>
<path d="M 100.0 40.0 L 157.1 81.5 L 135.3 148.5 L 64.7 148.5 L 42.9 81.5 L 100.0 40.0"/>
<path d="M 100.0 60.0 L 138.0 87.6 L 123.5 132.4 L 76.5 132.4 L 62.0 87.6 L 100.0 60.0"/>
<path d="M 100.0 80.0 L 119.0 93.8 L 111.8 116.2 L 88.2 116.2 L 81.0 93.8 L 100.0 80.0"/>
</g>
<path d="M 100.0 60.0 L 109.5 96.9 L 141.1 156.6 L 76.5 132.4 L 33.4 78.4 L 100.0 60.0" fill="#00000030" stroke="#000000"/>
<g fill="#000000">
<circle cx="100.0" cy="60.0" r="3"/>
<circle cx="109.5" cy="96.9" r="3"/>
<circle cx="141.1" cy="156.6" r="3"/>
<circle cx="76.5" cy="132.4" r="3"/>
<circle cx="33.4" cy="78.4" r="3"/>
</g>
</svg>
<dl>
<div>
<dt>創造性</dt>
<dd>4.0</dd>
</div>
<div>
<dt>実用性</dt>
<dd>1.0</dd>
</div>
<div>
<dt>文化的価値</dt>
<dd>7.0</dd>
</div>
<div>
<dt>素朴な魅力</dt>
<dd>4.0</dd>
</div>
<div>
<dt>共感度</dt>
<dd>7.0</dd>
</div>
</dl>
</div>
<div class="col-lg-8">
<div class="text-box">
<p>
一度も言葉を交わしたことがない人同士が、デッサン人形という製品を通じコミュニケーションを行っていることに魅力を感じる。<br>
デッサン人形という温度を感じづらい製品が、誰かの意図によって動きを変えている。<br>
それが結果的に、誰かの気配を感じられる場づくりに寄与していることが良い。
</p>
</div>
</div>
</div>
</div>
<!-- 画像部分 -->
<div class="col-lg-4 d-flex flex-colum image-content">
<img loading="lazy" src="assets/gei_dash/dash001-3.png">
</div>
</div>
</section>
</div>
<div id="details-002" class="details-content" style="display: none;">
<section class="card-section">
<div class="row d-flex align-items-start">
<!-- テキスト部分 -->
<div class="col-lg-8 text-content">
<div>
<h6>profile 002</h6>
<h3>玄関前の雪だるま</h3>
<div class="location-info">
<i class="fas fa-clock"></i> <span>2019年冬</span>
<i class="fas fa-map-marker-alt"></i> <span>石川県金沢市のどこか</span>
</div>
</div>
<div>
<p>雪の日、通学路を歩いていたら見つけた雪だるま。おそらくこの家の子どもが作ったのだろう。あどけない表情で玄関前に佇んでいた。</p>
</div>
<div class="row d-flex align-items-center">
<div class="radar-chart-2">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 200 200">
<g stroke="#dce5eb">
<path d="M 100 100 L 100.0 0.0"/>
<path d="M 100 100 L 195.1 69.1"/>
<path d="M 100 100 L 158.8 180.9"/>
<path d="M 100 100 L 41.2 180.9"/>
<path d="M 100 100 L 4.9 69.1"/>
</g>
<g stroke="#dce5eb" fill="none">
<path d="M 100.0 0.0 L 195.1 69.1 L 158.8 180.9 L 41.2 180.9 L 4.9 69.1 L 100.0 0.0"/>
<path d="M 100.0 20.0 L 176.1 75.3 L 147.0 164.7 L 53.0 164.7 L 23.9 75.3 L 100.0 20.0"/>
<path d="M 100.0 40.0 L 157.1 81.5 L 135.3 148.5 L 64.7 148.5 L 42.9 81.5 L 100.0 40.0"/>
<path d="M 100.0 60.0 L 138.0 87.6 L 123.5 132.4 L 76.5 132.4 L 62.0 87.6 L 100.0 60.0"/>
<path d="M 100.0 80.0 L 119.0 93.8 L 111.8 116.2 L 88.2 116.2 L 81.0 93.8 L 100.0 80.0"/>
</g>
<path d="M 100.0 20.0 L 109.5 96.9 L 141.1 156.6 L 53.0 164.7 L 42.9 81.5 L 100.0 20.0" fill="#00000030" stroke="#000000"/>
<g fill="#000000">
<circle cx="100.0" cy="20.0" r="3"/>
<circle cx="109.5" cy="96.9" r="3"/>
<circle cx="141.1" cy="156.6" r="3"/>
<circle cx="53.0" cy="164.7" r="3"/>
<circle cx="42.9" cy="81.5" r="3"/>
</g>
</svg>
<dl>
<div>
<dt>創造性</dt>
<dd>8.0</dd>
</div>
<div>
<dt>実用性</dt>
<dd>1.0</dd>
</div>
<div>
<dt>文化的価値</dt>
<dd>7.0</dd>
</div>
<div>
<dt>素朴な魅力</dt>
<dd>8.0</dd>
</div>
<div>
<dt>共感度</dt>
<dd>6.0</dd>
</div>
</dl>
</div>
<div class="col-lg-8">
<div class="text-box">
<p>
雪の日という、歩きにくく寒くて憂鬱になりそうな道のなかに、朴訥とした雪だるまが微笑みを与えてくれる。<br>
おそらくこの家の子どもが作ったのだろう。「カッコよくしよう」という意図がない、ただただ楽しんで雪だるまを作っていそうなところが良い。
</p>
</div>
</div>
</div>
</div>
<!-- 画像部分 -->
<div class="col-lg-4 d-flex flex-column image-content">
<img loading="lazy" src="assets/gei_dash/dash002.png">
</div>
</div>
</section>
</div>
<div id="details-003" class="details-content" style="display: none;">
<section class="card-section">
<div class="row d-flex align-items-start">
<!-- テキスト部分 -->
<div class="col-lg-8 text-content">
<div>
<h6>profile 003</h6>
<h3>ドラッグストアの前の象</h3>
<div class="location-info">
<i class="fas fa-clock"></i> <span>2021年11月ごろ</span>
<i class="fas fa-map-marker-alt"></i> <span>東京都葛飾区のとあるドラッグストア前</span>
</div>
</div>
<div>
<p>亀有を代表するキャラクターを意識している象さん。その時のご時世から、無理やりマスクをつけさせられているのが微笑ましい。</p>
</div>
<div class="row d-flex align-items-center">
<div class="radar-chart-2">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 200 200">
<g stroke="#dce5eb">
<path d="M 100 100 L 100.0 0.0"/>
<path d="M 100 100 L 195.1 69.1"/>
<path d="M 100 100 L 158.8 180.9"/>
<path d="M 100 100 L 41.2 180.9"/>
<path d="M 100 100 L 4.9 69.1"/>
</g>
<g stroke="#dce5eb" fill="none">
<path d="M 100.0 0.0 L 195.1 69.1 L 158.8 180.9 L 41.2 180.9 L 4.9 69.1 L 100.0 0.0"/>
<path d="M 100.0 20.0 L 176.1 75.3 L 147.0 164.7 L 53.0 164.7 L 23.9 75.3 L 100.0 20.0"/>
<path d="M 100.0 40.0 L 157.1 81.5 L 135.3 148.5 L 64.7 148.5 L 42.9 81.5 L 100.0 40.0"/>
<path d="M 100.0 60.0 L 138.0 87.6 L 123.5 132.4 L 76.5 132.4 L 62.0 87.6 L 100.0 60.0"/>
<path d="M 100.0 80.0 L 119.0 93.8 L 111.8 116.2 L 88.2 116.2 L 81.0 93.8 L 100.0 80.0"/>
</g>
<path d="M 100.0 50.0 L 109.5 96.9 L 129.4 140.5 L 64.7 148.5 L 52.4 84.5 L 100.0 50.0" fill="#00000030" stroke="#000000"/>
<g fill="#000000">
<circle cx="100.0" cy="50.0" r="3"/>
<circle cx="109.5" cy="96.9" r="3"/>
<circle cx="129.4" cy="140.5" r="3"/>
<circle cx="64.7" cy="148.5" r="3"/>
<circle cx="52.4" cy="84.5" r="3"/>
</g>
</svg>
<dl>
<div>
<dt>創造性</dt>
<dd>5.0</dd>
</div>
<div>
<dt>実用性</dt>
<dd>1.0</dd>
</div>
<div>
<dt>文化的価値</dt>
<dd>5.0</dd>
</div>
<div>
<dt>素朴な魅力</dt>
<dd>6.0</dd>
</div>
<div>
<dt>共感度</dt>
<dd>5.0</dd>
</div>
</dl>
</div>
<div class="col-lg-8">
<div class="text-box">
<p>
「誰かがこれを見て、話題にしてくれたらいいな」という店主の目論見が感じられ、くすぐったい気持ちになる。<br>
当時、いろんなものにマスクをつけるのが流行っていたが、象につけさせたのは初めて見た。
</p>
</div>
</div>
</div>
</div>
<!-- 画像部分 -->
<div class="col-lg-4 d-flex flex-column image-content">
<img loading="lazy" src="assets/gei_dash/dash003.png">
</div>
</div>
</section>
</div>
<div id="details-004" class="details-content" style="display: none;">
<section class="card-section">
<div class="row d-flex align-items-start">
<!-- テキスト部分 -->
<div class="col-lg-8 text-content">
<div>
<h6>profile 004</h6>
<h3>父の日の顔はめパネル</h3>
<div class="location-info">
<i class="fas fa-clock"></i> <span>2020年6月ごろ</span>
<i class="fas fa-map-marker-alt"></i> <span>石川県金沢市のスーパーマーケット</span>
</div>
</div>
<div>
<p>父の日を記念して作られた、「お父さん」になれる顔はめパネル。</p>
</div>
<div class="row d-flex align-items-center">
<div class="radar-chart-2">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 200 200">
<g stroke="#dce5eb">
<path d="M 100 100 L 100.0 0.0"/>
<path d="M 100 100 L 195.1 69.1"/>
<path d="M 100 100 L 158.8 180.9"/>
<path d="M 100 100 L 41.2 180.9"/>
<path d="M 100 100 L 4.9 69.1"/>
</g>
<g stroke="#dce5eb" fill="none">
<path d="M 100.0 0.0 L 195.1 69.1 L 158.8 180.9 L 41.2 180.9 L 4.9 69.1 L 100.0 0.0"/>
<path d="M 100.0 20.0 L 176.1 75.3 L 147.0 164.7 L 53.0 164.7 L 23.9 75.3 L 100.0 20.0"/>
<path d="M 100.0 40.0 L 157.1 81.5 L 135.3 148.5 L 64.7 148.5 L 42.9 81.5 L 100.0 40.0"/>
<path d="M 100.0 60.0 L 138.0 87.6 L 123.5 132.4 L 76.5 132.4 L 62.0 87.6 L 100.0 60.0"/>
<path d="M 100.0 80.0 L 119.0 93.8 L 111.8 116.2 L 88.2 116.2 L 81.0 93.8 L 100.0 80.0"/>
</g>
<path d="M 100.0 30.0 L 138.0 87.6 L 135.3 148.5 L 53.0 164.7 L 52.4 84.5 L 100.0 30.0" fill="#00000030" stroke="#000000"/>
<g fill="#000000">
<circle cx="100.0" cy="30.0" r="3"/>
<circle cx="138.0" cy="87.6" r="3"/>
<circle cx="135.3" cy="148.5" r="3"/>
<circle cx="53.0" cy="164.7" r="3"/>
<circle cx="52.4" cy="84.5" r="3"/>
</g>
</svg>
<dl>
<div>
<dt>創造性</dt>
<dd>7.0</dd>
</div>
<div>
<dt>実用性</dt>
<dd>4.0</dd>
</div>
<div>
<dt>文化的価値</dt>
<dd>6.0</dd>
</div>
<div>
<dt>素朴な魅力</dt>
<dd>8.0</dd>
</div>
<div>
<dt>共感度</dt>
<dd>5.0</dd>
</div>
</dl>
</div>
<div class="col-lg-8">
<div class="text-box">
<p>
おそらくスーパーマーケットの店員さんが作ったのであろう、この洗練されなさが非常に魅力的。<br>
どうしてお父さんの顔はめをさせてあげよう!と思ったのか?真剣に考えると疑問だらけだけど、母の日と比べ盛り上がりにくい父の日をどうにか盛り上げようという思いが見えて、ほっこりした気持ちになる。
</p>
</div>
</div>
</div>
</div>
<!-- 画像部分 -->
<div class="col-lg-4 d-flex flex-column image-content">
<img loading="lazy" src="assets/gei_dash/dash004.png">
</div>
</div>
</section>
</div>
<div id="details-005" class="details-content" style="display: none;">
<section class="card-section">
<div class="row d-flex align-items-start">
<!-- テキスト部分 -->
<div class="col-lg-8 text-content">
<div>
<h6>profile 005</h6>
<h3>アルコールスプレーに添えられたかき氷</h3>
<div class="location-info">
<i class="fas fa-clock"></i> <span>2020年ごろ</span>
<i class="fas fa-map-marker-alt"></i> <span>石川県金沢市のファミリーレストラン</span>
</div>
</div>
<div>
<p>新メニューであるかき氷をアピールするため飾られた、手作り感溢れるかき氷のオブジェ。</p>
</div>
<div class="row d-flex align-items-center">
<div class="radar-chart-2">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 200 200">
<g stroke="#dce5eb">
<path d="M 100 100 L 100.0 0.0"/>
<path d="M 100 100 L 195.1 69.1"/>
<path d="M 100 100 L 158.8 180.9"/>
<path d="M 100 100 L 41.2 180.9"/>
<path d="M 100 100 L 4.9 69.1"/>
</g>
<g stroke="#dce5eb" fill="none">
<path d="M 100.0 0.0 L 195.1 69.1 L 158.8 180.9 L 41.2 180.9 L 4.9 69.1 L 100.0 0.0"/>
<path d="M 100.0 20.0 L 176.1 75.3 L 147.0 164.7 L 53.0 164.7 L 23.9 75.3 L 100.0 20.0"/>
<path d="M 100.0 40.0 L 157.1 81.5 L 135.3 148.5 L 64.7 148.5 L 42.9 81.5 L 100.0 40.0"/>
<path d="M 100.0 60.0 L 138.0 87.6 L 123.5 132.4 L 76.5 132.4 L 62.0 87.6 L 100.0 60.0"/>
<path d="M 100.0 80.0 L 119.0 93.8 L 111.8 116.2 L 88.2 116.2 L 81.0 93.8 L 100.0 80.0"/>
</g>
<path d="M 100.0 30.0 L 119.0 93.8 L 123.5 132.4 L 58.9 156.6 L 62.0 87.6 L 100.0 30.0" fill="#00000030" stroke="#000000"/>
<g fill="#000000">
<circle cx="100.0" cy="30.0" r="3"/>
<circle cx="119.0" cy="93.8" r="3"/>
<circle cx="123.5" cy="132.4" r="3"/>
<circle cx="58.9" cy="156.6" r="3"/>
<circle cx="62.0" cy="87.6" r="3"/>
</g>
</svg>
<dl>
<div>
<dt>創造性</dt>
<dd>7.0</dd>
</div>
<div>
<dt>実用性</dt>
<dd>2.0</dd>
</div>
<div>
<dt>文化的価値</dt>
<dd>4.0</dd>
</div>
<div>
<dt>素朴な魅力</dt>
<dd>7.0</dd>
</div>
<div>
<dt>共感度</dt>
<dd>4.0</dd>
</div>
</dl>
</div>
<div class="col-lg-8">
<div class="text-box">
<p>
手作り感はあるものの、かなり上手く、かき氷の色やトッピングが再現されている。<br>
これを見て注文したいと思うかどうかは人によるだろうが、このファミリーレストランの誰かが一生懸命メニューを再現しようと試みたんだと思うと、ウキウキとした気持ちになれる。
</p>
</div>
</div>
</div>
</div>
<!-- 画像部分 -->
<div class="col-lg-4 d-flex flex-column image-content">
<img loading="lazy" src="assets/gei_dash/dash005.png">
</div>
</div>
</section>
</div>
<div id="details-006" class="details-content" style="display: none;">
<section class="card-section">
<div class="row d-flex align-items-start">
<!-- テキスト部分 -->
<div class="col-lg-8 text-content">
<div>
<h6>profile 006</h6>
<h3>大きなビールの模型</h3>
<div class="location-info">
<i class="fas fa-clock"></i> <span>2020年ごろ</span>
<i class="fas fa-map-marker-alt"></i> <span>石川県金沢市のスーパーマーケット</span>
</div>
</div>
<div>
<p>ビールの購買意欲を高めるために作られた(と思われる)大きなビールの模型。</p>
</div>
<div class="row d-flex align-items-center">
<div class="radar-chart-2">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 200 200">
<g stroke="#dce5eb">
<path d="M 100 100 L 100.0 0.0"/>
<path d="M 100 100 L 195.1 69.1"/>
<path d="M 100 100 L 158.8 180.9"/>
<path d="M 100 100 L 41.2 180.9"/>
<path d="M 100 100 L 4.9 69.1"/>
</g>
<g stroke="#dce5eb" fill="none">
<path d="M 100.0 0.0 L 195.1 69.1 L 158.8 180.9 L 41.2 180.9 L 4.9 69.1 L 100.0 0.0"/>
<path d="M 100.0 20.0 L 176.1 75.3 L 147.0 164.7 L 53.0 164.7 L 23.9 75.3 L 100.0 20.0"/>
<path d="M 100.0 40.0 L 157.1 81.5 L 135.3 148.5 L 64.7 148.5 L 42.9 81.5 L 100.0 40.0"/>
<path d="M 100.0 60.0 L 138.0 87.6 L 123.5 132.4 L 76.5 132.4 L 62.0 87.6 L 100.0 60.0"/>
<path d="M 100.0 80.0 L 119.0 93.8 L 111.8 116.2 L 88.2 116.2 L 81.0 93.8 L 100.0 80.0"/>
</g>
<path d="M 100.0 20.0 L 109.5 96.9 L 123.5 132.4 L 47.1 172.8 L 62.0 87.6 L 100.0 20.0" fill="#00000030" stroke="#000000"/>
<g fill="#000000">
<circle cx="100.0" cy="20.0" r="3"/>
<circle cx="109.5" cy="96.9" r="3"/>
<circle cx="123.5" cy="132.4" r="3"/>
<circle cx="47.1" cy="172.8" r="3"/>
<circle cx="62.0" cy="87.6" r="3"/>
</g>
</svg>
<dl>
<div>
<dt>創造性</dt>
<dd>8.0</dd>
</div>
<div>
<dt>実用性</dt>
<dd>1.0</dd>
</div>
<div>
<dt>文化的価値</dt>
<dd>4.0</dd>
</div>
<div>
<dt>素朴な魅力</dt>
<dd>9.0</dd>
</div>
<div>
<dt>共感度</dt>
<dd>4.0</dd>
</div>
</dl>
</div>
<div class="col-lg-8">
<div class="text-box">
<p>
おそらくスーパーマーケットの店員さんが作ったのであろうと思われるが、かなりビールのパッケージの再現にこだわっている様子がわかる。<br>
質感もちゃんと反射する素材を使って表現しており、文字が立体的に浮き出ているのも勢いを感じる。<br>
デザイナーが作ったら絶対に表現できないだろう、努力や熱量が伝わってきて好ましい。
</p>
</div>
</div>
</div>
</div>
<!-- 画像部分 -->
<div class="col-lg-4 d-flex flex-column image-content">
<img loading="lazy" src="assets/gei_dash/dash006.png">
</div>
</div>
</section>
</div>
<div id="details-007" class="details-content" style="display: none;">
<section class="card-section">
<div class="row d-flex align-items-start">
<!-- テキスト部分 -->
<div class="col-lg-8 text-content">
<div>
<h6>profile 007</h6>
<h3>富士山が見れるパーテーション</h3>
<div class="location-info">
<i class="fas fa-clock"></i> <span>2020年ごろ</span>
<i class="fas fa-map-marker-alt"></i> <span>石川県金沢市のカフェ</span>
</div>
</div>
<div>
<p>ソーシャルディスタンスを保つためにソファー席の間に設置されたパーテーション。ただ仕切るだけだと味気ないと思ったのか、富士山の写真が貼られている。</p>
</div>
<div class="row d-flex align-items-center">
<div class="radar-chart-2">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 200 200">
<g stroke="#dce5eb">
<path d="M 100 100 L 100.0 0.0"/>
<path d="M 100 100 L 195.1 69.1"/>
<path d="M 100 100 L 158.8 180.9"/>
<path d="M 100 100 L 41.2 180.9"/>
<path d="M 100 100 L 4.9 69.1"/>
</g>
<g stroke="#dce5eb" fill="none">
<path d="M 100.0 0.0 L 195.1 69.1 L 158.8 180.9 L 41.2 180.9 L 4.9 69.1 L 100.0 0.0"/>
<path d="M 100.0 20.0 L 176.1 75.3 L 147.0 164.7 L 53.0 164.7 L 23.9 75.3 L 100.0 20.0"/>
<path d="M 100.0 40.0 L 157.1 81.5 L 135.3 148.5 L 64.7 148.5 L 42.9 81.5 L 100.0 40.0"/>
<path d="M 100.0 60.0 L 138.0 87.6 L 123.5 132.4 L 76.5 132.4 L 62.0 87.6 L 100.0 60.0"/>
<path d="M 100.0 80.0 L 119.0 93.8 L 111.8 116.2 L 88.2 116.2 L 81.0 93.8 L 100.0 80.0"/>
</g>
<path d="M 100.0 70.0 L 109.5 96.9 L 135.3 148.5 L 58.9 156.6 L 52.4 84.5 L 100.0 70.0" fill="#00000030" stroke="#000000"/>
<g fill="#000000">
<circle cx="100.0" cy="70.0" r="3"/>
<circle cx="109.5" cy="96.9" r="3"/>
<circle cx="135.3" cy="148.5" r="3"/>
<circle cx="58.9" cy="156.6" r="3"/>
<circle cx="52.4" cy="84.5" r="3"/>
</g>
</svg>
<dl>
<div>
<dt>創造性</dt>
<dd>3.0</dd>
</div>
<div>
<dt>実用性</dt>
<dd>1.0</dd>
</div>
<div>
<dt>文化的価値</dt>
<dd>6.0</dd>
</div>
<div>
<dt>素朴な魅力</dt>
<dd>7.0</dd>
</div>
<div>
<dt>共感度</dt>
<dd>5.0</dd>
</div>
</dl>
</div>
<div class="col-lg-8">
<div class="text-box">
<p>
「やらなくていいのに」やっている行為には絶対に誰かの意図があり、その意図を想像する営みが人を楽しませてくれると思う。<br>
別にパーテーションに写真なんて貼らなくていいのに、座った人が山を見て心を和ませられるように、という思いがこもっているのが嬉しい。
</p>
</div>
</div>
</div>
</div>
<!-- 画像部分 -->
<div class="col-lg-4 d-flex flex-column image-content">
<img loading="lazy" src="assets/gei_dash/dash007.png">
</div>
</div>
</section>
</div>
<div id="details-008" class="details-content" style="display: none;">
<section class="card-section">
<div class="row d-flex align-items-start">
<!-- テキスト部分 -->
<div class="col-lg-8 text-content">
<div>
<h6>profile 008</h6>
<h3>工事現場のカラーコーンの上の造花</h3>
<div class="location-info">
<i class="fas fa-clock"></i> <span>2020年ごろ</span>
<i class="fas fa-map-marker-alt"></i> <span>石川県金沢市のどこか</span>
</div>
</div>
<div>
<p>カラーコーンのうえに植えられた造花。工事で通り抜けできないことのお詫びなのか、さりげなく植えられている。</p>
</div>
<div class="row d-flex align-items-center">
<div class="radar-chart-2">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 200 200">
<g stroke="#dce5eb">
<path d="M 100 100 L 100.0 0.0"/>
<path d="M 100 100 L 195.1 69.1"/>
<path d="M 100 100 L 158.8 180.9"/>
<path d="M 100 100 L 41.2 180.9"/>
<path d="M 100 100 L 4.9 69.1"/>
</g>
<g stroke="#dce5eb" fill="none">
<path d="M 100.0 0.0 L 195.1 69.1 L 158.8 180.9 L 41.2 180.9 L 4.9 69.1 L 100.0 0.0"/>
<path d="M 100.0 20.0 L 176.1 75.3 L 147.0 164.7 L 53.0 164.7 L 23.9 75.3 L 100.0 20.0"/>
<path d="M 100.0 40.0 L 157.1 81.5 L 135.3 148.5 L 64.7 148.5 L 42.9 81.5 L 100.0 40.0"/>
<path d="M 100.0 60.0 L 138.0 87.6 L 123.5 132.4 L 76.5 132.4 L 62.0 87.6 L 100.0 60.0"/>
<path d="M 100.0 80.0 L 119.0 93.8 L 111.8 116.2 L 88.2 116.2 L 81.0 93.8 L 100.0 80.0"/>
</g>
<path d="M 100.0 70.0 L 119.0 93.8 L 141.1 156.6 L 70.6 140.5 L 42.9 81.5 L 100.0 70.0" fill="#00000030" stroke="#000000"/>
<g fill="#000000">
<circle cx="100.0" cy="70.0" r="3"/>
<circle cx="119.0" cy="93.8" r="3"/>
<circle cx="141.1" cy="156.6" r="3"/>
<circle cx="70.6" cy="140.5" r="3"/>
<circle cx="42.9" cy="81.5" r="3"/>
</g>
</svg>
<dl>
<div>
<dt>創造性</dt>
<dd>3.0</dd>
</div>
<div>
<dt>実用性</dt>
<dd>2.0</dd>
</div>
<div>
<dt>文化的価値</dt>
<dd>7.0</dd>
</div>
<div>
<dt>素朴な魅力</dt>
<dd>5.0</dd>
</div>
<div>
<dt>共感度</dt>
<dd>6.0</dd>
</div>
</dl>
</div>
<div class="col-lg-8">
<div class="text-box">
<p>
造花は、そこに彩りを与えるために意図的に飾られている、誰かに対する思いやりが強く感じられるものだと思う。<br>
工事現場で通れないけれど、造花を添えて少しでも心を喜ばせたいという意図を想像すると、優しい人が工事してくれているのかなと嬉しい気持ちになる。
</p>
</div>
</div>
</div>
</div>
<!-- 画像部分 -->
<div class="col-lg-4 d-flex flex-column image-content">
<img loading="lazy" src="assets/gei_dash/dash008.png">
</div>
</div>
</section>
</div>
<div id="details-009" class="details-content" style="display: none;">
<section class="card-section">
<div class="row d-flex align-items-start">
<!-- テキスト部分 -->
<div class="col-lg-8 text-content">
<div>
<h6>profile 009</h6>
<h3>「出口」のうえの猫ちゃん</h3>
<div class="location-info">
<i class="fas fa-clock"></i> <span>2025年1月</span>
<i class="fas fa-map-marker-alt"></i> <span>滋賀県多賀町のサービスエリア</span>
</div>
</div>
<div>
<p>サービスエリアの看板を彩っていた、紙でできた猫ちゃん。</p>
</div>
<div class="row d-flex align-items-center">
<div class="radar-chart-2">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 200 200">
<g stroke="#dce5eb">
<path d="M 100 100 L 100.0 0.0"/>
<path d="M 100 100 L 195.1 69.1"/>
<path d="M 100 100 L 158.8 180.9"/>
<path d="M 100 100 L 41.2 180.9"/>
<path d="M 100 100 L 4.9 69.1"/>
</g>
<g stroke="#dce5eb" fill="none">
<path d="M 100.0 0.0 L 195.1 69.1 L 158.8 180.9 L 41.2 180.9 L 4.9 69.1 L 100.0 0.0"/>
<path d="M 100.0 20.0 L 176.1 75.3 L 147.0 164.7 L 53.0 164.7 L 23.9 75.3 L 100.0 20.0"/>
<path d="M 100.0 40.0 L 157.1 81.5 L 135.3 148.5 L 64.7 148.5 L 42.9 81.5 L 100.0 40.0"/>
<path d="M 100.0 60.0 L 138.0 87.6 L 123.5 132.4 L 76.5 132.4 L 62.0 87.6 L 100.0 60.0"/>
<path d="M 100.0 80.0 L 119.0 93.8 L 111.8 116.2 L 88.2 116.2 L 81.0 93.8 L 100.0 80.0"/>
</g>
<path d="M 100.0 50.0 L 119.0 93.8 L 135.3 148.5 L 58.9 156.6 L 71.5 90.7 L 100.0 50.0" fill="#00000030" stroke="#000000"/>
<g fill="#000000">
<circle cx="100.0" cy="50.0" r="3"/>
<circle cx="119.0" cy="93.8" r="3"/>
<circle cx="135.3" cy="148.5" r="3"/>
<circle cx="58.9" cy="156.6" r="3"/>
<circle cx="71.5" cy="90.7" r="3"/>
</g>
</svg>
<dl>
<div>
<dt>創造性</dt>
<dd>5.0</dd>
</div>
<div>
<dt>実用性</dt>
<dd>2.0</dd>
</div>
<div>
<dt>文化的価値</dt>
<dd>6.0</dd>
</div>
<div>
<dt>素朴な魅力</dt>
<dd>7.0</dd>
</div>
<div>
<dt>共感度</dt>
<dd>3.0</dd>
</div>
</dl>
</div>
<div class="col-lg-8">
<div class="text-box">
<p>
折り紙でできた、紙製の猫。サービスエリアの職員の方が作ったのか、素朴な雰囲気が伝わってくる。<br>
「出口」の看板のうえにあることで、優しく案内してくれている雰囲気が伝わる。
</p>
</div>
</div>
</div>
</div>
<!-- 画像部分 -->
<div class="col-lg-4 d-flex flex-column image-content">
<img loading="lazy" src="assets/gei_dash/dash009.png">
</div>
</div>
</section>
</div>
<div id="details-010" class="details-content" style="display: none;">
<section class="card-section">
<div class="row d-flex align-items-start">
<!-- テキスト部分 -->
<div class="col-lg-8 text-content">
<div>
<h6>profile 010</h6>
<h3>トイレットペーパーの芯でできた迎春</h3>
<div class="location-info">
<i class="fas fa-clock"></i> <span>2025年1月</span>
<i class="fas fa-map-marker-alt"></i> <span>福井県北鯖江市のサービスエリア</span>
</div>
</div>
<div>
<p>サービスエリアのトイレに置かれていた、獅子舞と門松。</p>
</div>
<div class="row d-flex align-items-center">
<div class="radar-chart-2">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 200 200">
<g stroke="#dce5eb">
<path d="M 100 100 L 100.0 0.0"/>
<path d="M 100 100 L 195.1 69.1"/>
<path d="M 100 100 L 158.8 180.9"/>
<path d="M 100 100 L 41.2 180.9"/>
<path d="M 100 100 L 4.9 69.1"/>
</g>
<g stroke="#dce5eb" fill="none">
<path d="M 100.0 0.0 L 195.1 69.1 L 158.8 180.9 L 41.2 180.9 L 4.9 69.1 L 100.0 0.0"/>
<path d="M 100.0 20.0 L 176.1 75.3 L 147.0 164.7 L 53.0 164.7 L 23.9 75.3 L 100.0 20.0"/>
<path d="M 100.0 40.0 L 157.1 81.5 L 135.3 148.5 L 64.7 148.5 L 42.9 81.5 L 100.0 40.0"/>
<path d="M 100.0 60.0 L 138.0 87.6 L 123.5 132.4 L 76.5 132.4 L 62.0 87.6 L 100.0 60.0"/>
<path d="M 100.0 80.0 L 119.0 93.8 L 111.8 116.2 L 88.2 116.2 L 81.0 93.8 L 100.0 80.0"/>
</g>
<path d="M 100.0 20.0 L 119.0 93.8 L 141.1 156.6 L 70.6 140.5 L 52.4 84.5 L 100.0 20.0" fill="#00000030" stroke="#000000"/>
<g fill="#000000">
<circle cx="100.0" cy="20.0" r="3"/>
<circle cx="119.0" cy="93.8" r="3"/>
<circle cx="141.1" cy="156.6" r="3"/>
<circle cx="70.6" cy="140.5" r="3"/>
<circle cx="52.4" cy="84.5" r="3"/>
</g>
</svg>
<dl>
<div>
<dt>創造性</dt>
<dd>8.0</dd>
</div>
<div>
<dt>実用性</dt>
<dd>2.0</dd>
</div>
<div>
<dt>文化的価値</dt>
<dd>7.0</dd>
</div>
<div>
<dt>素朴な魅力</dt>
<dd>5.0</dd>
</div>
<div>
<dt>共感度</dt>
<dd>5.0</dd>
</div>
</dl>
</div>
<div class="col-lg-8">
<div class="text-box">
<p>
トイレットペーパーの芯で作られているとは思えない、クオリティの高さが目を惹く。<br>
手洗い所のうえにあり、手を洗いながら可愛らしい獅子舞に目を細めることができた。
</p>
</div>
</div>
</div>
</div>
<!-- 画像部分 -->
<div class="col-lg-4 d-flex flex-column image-content">
<img loading="lazy" src="assets/gei_dash/dash010.png">
</div>
</div>
</section>
</div>
<div class="col-lg-1">
<div class="card" onclick="toggleDetails('details-001')">
<div class="img-container">
<img src="assets/gei_dash/dash001.png" class="img-fluid" alt="">
</div>
</div>
</div>
<div class="col-lg-1">
<div class="card" onclick="toggleDetails('details-002')">
<div class="img-container">
<img src="assets/gei_dash/dash002.png" class="img-fluid" alt="">
</div>
</div>
</div>
<div class="col-lg-1">
<div class="card" onclick="toggleDetails('details-003')">
<div class="img-container">
<img src="assets/gei_dash/dash003.png" class="img-fluid" alt="">
</div>
</div>
</div>
<div class="col-lg-1">
<div class="card" onclick="toggleDetails('details-004')">
<div class="img-container">
<img src="assets/gei_dash/dash004.png" class="img-fluid" alt="">
</div>
</div>
</div>
<div class="col-lg-1">
<div class="card" onclick="toggleDetails('details-005')">
<div class="img-container">
<img src="assets/gei_dash/dash005.png" class="img-fluid" alt="">
</div>
</div>
</div>
<div class="col-lg-1">
<div class="card" onclick="toggleDetails('details-006')">
<div class="img-container">
<img src="assets/gei_dash/dash006.png" class="img-fluid" alt="">
</div>
</div>
</div>
<div class="col-lg-1">
<div class="card" onclick="toggleDetails('details-007')">
<div class="img-container">
<img src="assets/gei_dash/dash007.png" class="img-fluid" alt="">
</div>
</div>
</div>
<div class="col-lg-1">
<div class="card" onclick="toggleDetails('details-008')">
<div class="img-container">
<img src="assets/gei_dash/dash008.png" class="img-fluid" alt="">
</div>
</div>
</div>
<div class="col-lg-1">
<div class="card" onclick="toggleDetails('details-009')">
<div class="img-container">
<img src="assets/gei_dash/dash009.png" class="img-fluid" alt="">
</div>
</div>
</div>
<div class="col-lg-1">
<div class="card" onclick="toggleDetails('details-010')">
<div class="img-container">
<img src="assets/gei_dash/dash010.png" class="img-fluid" alt="">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- JavaScriptコードをここに追加 -->
<script>
document.addEventListener("DOMContentLoaded", function () {
// 初回ロード時にURLハッシュをチェック
const hash = window.location.hash;
if (hash) {
const detailsId = hash.replace("#", "details-");
showDetails(detailsId);
} else {
// ハッシュがない場合、最初の詳細情報を開く
showDetails("details-001");
}
});