-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanimals.html
More file actions
530 lines (516 loc) · 36.3 KB
/
animals.html
File metadata and controls
530 lines (516 loc) · 36.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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Photo -Birds & Animals-</title>
<!-- webフォント -->
<link rel="stylesheet" href="https://use.typekit.net/zij1yya.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:wght@400;700&family=Noto+Serif+JP:wght@400;700&display=swap" rel="stylesheet">
<!-- FontAwesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- aos.css -->
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<!-- vegas.css -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/vegas@2.5.4/dist/vegas.min.css">
<!-- drawer.css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/drawer/3.2.2/css/drawer.min.css">
<!-- fancybox.css -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.css">
<link rel="stylesheet" href="./css/style.css">
<!-- favicon設置 -->
<link rel="apple-touch-icon" type="image/png" href="./favicons/FA_logo_maingreen.png" sizes="180x180">
<link rel="icon" type="image/png" href="./favicons/FA_logo_maingreen.png">
<link rel="icon" href="./favicons/FA_favicon.ico">
<!-- jQuery ※scriptを使う -->
<script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.min.js"></script>
<!-- jQuery 1.8 or later, 33 KB -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- aos.js -->
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<!-- vegas.js -->
<script src="https://cdn.jsdelivr.net/npm/vegas@2.5.4/dist/vegas.min.js"></script>
<!-- iScroll.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/iScroll/5.2.0/iscroll.min.js"></script>
<!-- drawer.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/drawer/3.2.2/js/drawer.min.js"></script>
<script src="./js/common.js"></script>
<!-- import vue.js -->
<script src="https://unpkg.com/vue@next"></script>
<!-- Fotorama from CDNJS, 19 KB -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/fotorama/4.6.4/fotorama.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/fotorama/4.6.4/fotorama.js"></script>
</head>
<body class="drawer drawer--right">
<div id="app">
<div class="page-wrap">
<header>
<div class="header">
<h1 class="header__logo">
<a href="index.html"><img src="./img_works/FA_logo_maingreen.png" alt="HAJIME FUJII STUDIOのロゴ"></a>
</h1>
<nav>
<ul class="header-nav">
<li class="header-nav__link"><a href="index.html#works">Works</a></li>
<li class="header-nav__link"><a href="index.html#photos">Photos</a></li>
<li class="header-nav__link"><a href="index.html#profile">Profile</a></li>
<li class="header-nav__link"><a href="index.html#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<header>
<div class="sp-header">
<h1>
<a href="index.html"><img src="./img_works/FA_logo_maingreen.png" alt="" class="sp-header__logo"></a>
</h1>
<div class="hamburger drawer-toggle drawer-hamburger">
<span class="drawer-hamburger-icon"></span>
</div>
<nav class="drawer-nav" role="navigation">
<ul class="drawer-menu">
<li><a class="drawer-menu-item" href="index.html#works"><i class="fas fa-network-wired"></i> Works</a></li>
<li><a class="drawer-menu-item" href="index.html#photos"><i class="fas fa-image"></i> Photos</a></li>
<li><a class="drawer-menu-item" href="index.html#profile"><i class="fas fa-user"></i> Profile</a></li>
<li><a class="drawer-menu-item" href="index.html#contact"><i class="fas fa-id-badge"></i> Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div class="sidebar1">
<img src="./img_works/We_stand-2.png" alt="">
</div>
<!-- Photo Gallery -->
<section>
<div class="section gallery">
<div class="section-headline" >
<h2 class="section-headline__main">Photo Gallery <br class="pc-none">- Birds & Animals -</h2>
</div>
<div class="animals-wrap">
<ul class="sort-btn">
<li class="sort00 active">All</li>
<!--はじめに「全て」ボタンに現在地表示をつけるためactive というクラス名を付与-->
<li class="sort01">Animals</li>
<li class="sort02">Birds</li>
<li class="sort03">Others</li>
</ul>
<ul class="grid">
<!--1番外側のタグにgrid というクラス名を付与。-->
<li class="item sort01">
<!--li には、item というクラス名と並び替え基準となるクラス名(ボタンのクラス名と同じ名前)を付与。-->
<div class="item-content">
<!--内側のdivには高さを維持するためにitem-contentというクラス名をつける。-->
<a href="./img_photos/animals/bear_01.JPG" data-fancybox="group1" data-caption="Brown Bear in Shiretoko_1">
<picture>
<source srcset="./img_photos/animals/bear_01.webp" type="image/webp">
<source srcset="./img_photos/animals/bear_01.JPG" type="image/jpg">
<img src="./img_photos/animals/bear_01.JPG">
</picture>
</a>
<!--複数画像をグループ化してサムネイル表示させたい場合は、datafancybox="半角英数字で同一のグループ名"、キャプションを入れたい場合はdata-caption="キャプションタイトル"を設定する。-->
</div>
</li>
<li class="item sort02">
<div class="item-content">
<a href="./img_photos/birds/yamagara_02.JPG" data-fancybox="group2" data-caption="Yamagara in Nopporo_2">
<picture>
<source srcset="./img_photos/birds/yamagara_02.webp" type="image/webp">
<source srcset="./img_photos/birds/yamagara_02.jpg" type="image/jpg">
<img src="./img_photos/birds/yamagara_02.jpg">
</picture>
</a>
</div>
</li>
<li class="item sort02">
<div class="item-content">
<a href="./img_photos/birds/owl_02.jpg" data-fancybox="group2" data-caption="Owl in Nopporo_2">
<picture>
<source srcset="./img_photos/birds/owl_02.webp" type="image/webp">
<source srcset="./img_photos/birds/owl_02.jpg" type="image/jpg">
<img src="./img_photos/birds/owl_02.jpg">
</picture>
</a>
</div>
</li>
<li class="item sort02">
<div class="item-content">
<a href="./img_photos/birds/shimaenaga_01.JPG" data-fancybox="group2" data-caption="Shimaenaga at Bird-watching-cafe in Chitose_1">
<picture>
<source srcset="./img_photos/birds/shimaenaga_01.webp" type="image/webp">
<source srcset="./img_photos/birds/shimaenaga_01.JPG" type="image/jpg">
<img src="./img_photos/birds/shimaenaga_01.JPG">
</picture>
</a>
</div>
</li>
<li class="item sort01">
<div class="item-content">
<a href="./img_photos/animals/bear_02.JPG" data-fancybox="group1" data-caption="Brown Bear in Shiretoko_2">
<picture>
<source srcset="./img_photos/animals/bear_02.webp" type="image/webp">
<source srcset="./img_photos/animals/bear_02.JPG" type="image/jpg">
<img src="./img_photos/animals/bear_02.JPG">
</picture>
</a>
</div>
</li>
<li class="item sort03">
<div class="item-content">
<a href="./img_photos/others/dragonfly_01.jpg" data-fancybox="group3" data-caption="Dragonfly in Nopporo">
<picture>
<source srcset="./img_photos/others/dragonfly_01.webp" type="image/webp">
<source srcset="./img_photos/others/dragonfly_01.jpg" type="image/jpg">
<img src="./img_photos/others/dragonfly_01.jpg">
</picture>
</a>
</div>
</li>
<li class="item sort01">
<div class="item-content">
<a href="./img_photos/animals/bear_03.JPG" data-fancybox="group1" data-caption="Brown Bear in Shiretoko_3">
<picture>
<source srcset="./img_photos/animals/bear_03.webp" type="image/webp">
<source srcset="./img_photos/animals/bear_03.JPG" type="image/jpg">
<img src="./img_photos/animals/bear_03.JPG">
</picture>
</a>
</div>
</li>
<li class="item sort01">
<div class="item-content">
<a href="./img_photos/animals/hawaii_honu_01.JPG" data-fancybox="group1" data-caption="Honu in Hawaii">
<picture>
<source srcset="./img_photos/animals/hawaii_honu_01.webp" type="image/webp">
<source srcset="./img_photos/animals/hawaii_honu_01.JPG" type="image/jpg">
<img src="./img_photos/animals/hawaii_honu_01.JPG">
</picture>
</a>
</div>
</li>
<li class="item sort01">
<div class="item-content">
<a href="./img_photos/animals/risu_01.jpg" data-fancybox="group1" data-caption="Squirrel in Nopporo_1">
<picture>
<source srcset="./img_photos/animals/risu_01.webp" type="image/webp">
<source srcset="./img_photos/animals/risu_01.jpg" type="image/jpg">
<img src="./img_photos/animals/risu_01.jpg">
</picture>
</a>
</div>
</li>
<li class="item sort01">
<div class="item-content">
<a href="./img_photos/animals/risu_02.JPG" data-fancybox="group1" data-caption="Squirrel in Nopporo_2">
<picture>
<source srcset="./img_photos/animals/risu_02.webp" type="image/webp">
<source srcset="./img_photos/animals/risu_02.jpg" type="image/jpg">
<img src="./img_photos/animals/risu_02.jpg">
</picture>
</a>
</div>
</li>
<li class="item sort01">
<div class="item-content">
<a href="./img_photos/animals/north_fox_01.jpg" data-fancybox="group1" data-caption="Northfox in Nopporo_1">
<picture>
<source srcset="./img_photos/animals/north_fox_01.webp" type="image/webp">
<source srcset="./img_photos/animals/north_fox_01.jpg" type="image/jpg">
<img src="./img_photos/animals/north_fox_01.jpg">
</picture>
</a>
</div>
</li>
<li class="item sort01">
<div class="item-content">
<a href="./img_photos/animals/north_fox_02.jpg" data-fancybox="group1" data-caption="Northfox in Nopporo_2">
<picture>
<source srcset="./img_photos/animals/north_fox_02.webp" type="image/webp">
<source srcset="./img_photos/animals/north_fox_02.jpg" type="image/jpg">
<img src="./img_photos/animals/north_fox_02.jpg">
</picture>
</a>
</div>
</li>
<li class="item sort01">
<div class="item-content">
<a href="./img_photos/animals/north_fox_03.jpg" data-fancybox="group1" data-caption="Northfox in Nopporo_3">
<picture>
<source srcset="./img_photos/animals/north_fox_03.webp" type="image/webp">
<source srcset="./img_photos/animals/north_fox_03.jpg" type="image/jpg">
<img src="./img_photos/animals/north_fox_03.jpg">
</picture>
</a>
</div>
</li>
<li class="item sort02">
<div class="item-content">
<a href="./img_photos/birds/yamagara_01.jpg" data-fancybox="group2" data-caption="Yamagara in Nopporo_1">
<picture>
<source srcset="./img_photos/birds/yamagara_01.webp" type="image/webp">
<source srcset="./img_photos/birds/yamagara_01.jpg" type="image/jpg">
<img src="./img_photos/birds/yamagara_01.jpg">
</picture>
</a>
</div>
</li>
<li class="item sort02">
<div class="item-content">
<a href="./img_photos/birds/akagera.jpg" data-fancybox="group2" data-caption="Woodpecker in Nopporo_1">
<picture>
<source srcset="./img_photos/birds/akagera.webp" type="image/webp">
<source srcset="./img_photos/birds/akagera.jpg" type="image/jpg">
<img src="./img_photos/birds/akagera.jpg">
</picture>
</a>
</div>
</li>
<li class="item sort02">
<div class="item-content">
<a href="./img_photos/birds/akagera_01.JPG" data-fancybox="group2" data-caption="Woodpecker at Bird-watching-cafe in Chitose">
<picture>
<source srcset="./img_photos/birds/akagera_01.webp" type="image/webp">
<source srcset="./img_photos/birds/akagera_01.jpg" type="image/jpg">
<img src="./img_photos/birds/akagera_01.jpg">
</picture>
</a>
</div>
</li>
<li class="item sort02">
<div class="item-content">
<a href="./img_photos/birds/kumagera_01.jpg" data-fancybox="group2" data-caption="Woodpecker in Nopporo_1">
<picture>
<source srcset="./img_photos/birds/kumagera_01.webp" type="image/webp">
<source srcset="./img_photos/birds/kumagera_01.jpg" type="image/jpg">
<img src="./img_photos/birds/kumagera_01.jpg">
</picture>
</a>
</div>
</li>
<li class="item sort02">
<div class="item-content">
<a href="./img_photos/birds/kumagera_02.jpg" data-fancybox="group2" data-caption="Woodpecker in Nopporo_2">
<picture>
<source srcset="./img_photos/birds/kumagera_02.webp" type="image/webp">
<source srcset="./img_photos/birds/kumagera_02.jpg" type="image/jpg">
<img src="./img_photos/birds/kumagera_02.jpg">
</picture>
</a>
</div>
</li>
<li class="item sort02">
<div class="item-content">
<a href="./img_photos/birds/yamagera_03.jpg" data-fancybox="group2" data-caption="Yamagera in Nopporo_1">
<picture>
<source srcset="./img_photos/birds/yamagera_03.webp" type="image/webp">
<source srcset="./img_photos/birds/yamagera_03.jpg" type="image/jpg">
<img src="./img_photos/birds/yamagera_03.jpg">
</picture>
</a>
</div>
</li>
<li class="item sort02">
<div class="item-content">
<a href="./img_photos/birds/owl_01.jpg" data-fancybox="group2" data-caption="Owl in Nopporo_1">
<picture>
<source srcset="./img_photos/birds/owl_01.webp" type="image/webp">
<source srcset="./img_photos/birds/owl_01.jpg" type="image/jpg">
<img src="./img_photos/birds/owl_01.jpg">
</picture>
</a>
</div>
</li>
<li class="item sort02">
<div class="item-content">
<a href="./img_photos/birds/owl_03.JPG" data-fancybox="group2" data-caption="Owl in Nopporo_3">
<picture>
<source srcset="./img_photos/birds/owl_03.webp" type="image/webp">
<source srcset="./img_photos/birds/owl_03.jpg" type="image/jpg">
<img src="./img_photos/birds/owl_03.jpg">
</picture>
</a>
</div>
</li>
<li class="item sort02">
<div class="item-content">
<a href="./img_photos/birds/owl_04.jpg" data-fancybox="group2" data-caption="Owl in Nopporo_4">
<picture>
<source srcset="./img_photos/birds/owl_04.webp" type="image/webp">
<source srcset="./img_photos/birds/owl_04.jpg" type="image/jpg">
<img src="./img_photos/birds/owl_04.jpg">
</picture>
</a>
</div>
</li>
<li class="item sort02">
<div class="item-content">
<a href="./img_photos/birds/owl_05.jpg" data-fancybox="group2" data-caption="Owl in Nopporo_5">
<picture>
<source srcset="./img_photos/birds/owl_05.webp" type="image/webp">
<source srcset="./img_photos/birds/owl_05.jpg" type="image/jpg">
<img src="./img_photos/birds/owl_05.jpg">
</picture>
</a>
</div>
</li>
<li class="item sort02">
<div class="item-content">
<a href="./img_photos/birds/shimaenaga_03.JPG" data-fancybox="group2" data-caption="Shimaenaga at Bird-watching-cafe in Chitose_3">
<picture>
<source srcset="./img_photos/birds/shimaenaga_03.webp" type="image/webp">
<source srcset="./img_photos/birds/shimaenaga_03.JPG" type="image/jpg">
<img src="./img_photos/birds/shimaenaga_03.JPG">
</picture>
</a>
</div>
</li>
<li class="item sort02">
<div class="item-content">
<a href="./img_photos/birds/shimaenaga_04.jpg" data-fancybox="group2" data-caption="Shimaenaga at Bird-watching-cafe in Chitose_4">
<picture>
<source srcset="./img_photos/birds/shimaenaga_04.webp" type="image/webp">
<source srcset="./img_photos/birds/shimaenaga_04.JPG" type="image/jpg">
<img src="./img_photos/birds/shimaenaga_04.JPG">
</picture>
</a>
</div>
</li>
<li class="item sort02">
<div class="item-content">
<a href="./img_photos/birds/shimaenaga_05.JPG" data-fancybox="group2" data-caption="Shimaenaga at Bird-watching-cafe in Chitose_5">
<picture>
<source srcset="./img_photos/birds/shimaenaga_05.webp" type="image/webp">
<source srcset="./img_photos/birds/shimaenaga_05.JPG" type="image/jpg">
<img src="./img_photos/birds/shimaenaga_05.JPG">
</picture>
</a>
</div>
</li>
<li class="item sort03">
<div class="item-content">
<a href="./img_photos/others/eggs_01.jpg" data-fancybox="group3" data-caption="Eggs in Nopporo">
<picture>
<source srcset="./img_photos/others/eggs_01.webp" type="image/webp">
<source srcset="./img_photos/others/eggs_01.jpg" type="image/jpg">
<img src="./img_photos/others/eggs_01.jpg">
</picture>
</a>
</div>
</li>
<li class="item sort02">
<div class="item-content">
<a href="./img_photos/birds/hiyodori_01.JPG" data-fancybox="group2" data-caption="Hiyodori at Bird-watching-cafe in Chitose_5">
<picture>
<source srcset="./img_photos/birds/hiyodori_01.webp" type="image/webp">
<source srcset="./img_photos/birds/hiyodori_01.JPG" type="image/jpg">
<img src="./img_photos/birds/hiyodori_01.JPG">
</picture>
</a>
</div>
</li>
<li class="item sort02">
<div class="item-content">
<a href="./img_photos/birds/kakesu_01.JPG" data-fancybox="group2" data-caption="Kakesu at Bird-watching-cafe in Chitose_5">
<picture>
<source srcset="./img_photos/birds/kakesu_01.webp" type="image/webp">
<source srcset="./img_photos/birds/kakesu_01.JPG" type="image/jpg">
<img src="./img_photos/birds/kakesu_01.JPG">
</picture>
</a>
</div>
</li>
<li class="item sort03">
<div class="item-content">
<a href="./img_photos/others/tonbo_03.jpg" data-fancybox="group3" data-caption="Tonbo in Nopporo">
<picture>
<source srcset="./img_photos/others/tonbo_03.webp" type="image/webp">
<source srcset="./img_photos/others/tonbo_03.jpg" type="image/jpg">
<img src="./img_photos/others/tonbo_03.jpg">
</picture>
</a>
</div>
</li>
<li class="item sort03">
<div class="item-content">
<a href="./img_photos/others/twin_fukurou_01.JPG" data-fancybox="group3" data-caption="Twin owl in Ohasa">
<picture>
<source srcset="./img_photos/others/twin_fukurou_01.webp" type="image/webp">
<source srcset="./img_photos/others/twin_fukurou_01.JPG" type="image/jpg">
<img src="./img_photos/others/twin_fukurou_01.JPG">
</picture>
</a>
</div>
</li>
<li class="item sort02">
<div class="item-content">
<a href="./img_photos/birds/uso_01.jpg" data-fancybox="group2" data-caption="Uso in Ohasa">
<picture>
<source srcset="./img_photos/birds/uso_01.webp" type="image/webp">
<source srcset="./img_photos/birds/uso_01.jpg" type="image/jpg">
<img src="./img_photos/birds/uso_01.jpg">
</picture>
</a>
</div>
</li>
<li class="item sort02">
<div class="item-content">
<a href="./img_photos/birds/watari_01.jpg" data-fancybox="group2" data-caption="Watari in Eniwa">
<picture>
<source srcset="./img_photos/birds/watari_01.webp" type="image/webp">
<source srcset="./img_photos/birds/watari_01.jpg" type="image/jpg">
<img src="./img_photos/birds/watari_01.jpg">
</picture>
</a>
</div>
</li>
</ul>
<a href="natures.html" target="_blank" rel="noopener norefferrer" class="btn">Naturesへ</a>
</div>
</div>
</section>
</main>
</div>
</div>
<footer>
<hr class="style2">
<div class="footer">
<div class="footer-wrap">
<div class="footer__info1">
<h1 class="footer__logo">
<a href="index.html"><img src="./img_works/FA_logo_maingreen.png" alt="HAJIME FUJII STUDIOのロゴ"></a>
<p class="footer__logo__text">Fujii hAjime STUDIO</p>
</h1>
<nav>
<ul class="footer-nav">
<li class="footer-nav__link"><a href="index.html#works">Works</a></li>
<li class="footer-nav__link"><a href="index.html#photos">Photos</a></li>
<li class="footer-nav__link"><a href="index.html#profile">Profile</a></li>
</ul>
</nav>
</div>
<div class="footer__info2">
<div class="ukraine">
<p class="footer__info2__text">We stand with Ukraine.</p>
<a href="https://support.savethechildren.org/site/TR;jsessionid=00000000.app30117a?px=5789981&fr_id=1541&pg=personal&NONCE_TOKEN=66C251A8F71E403DC3EEC0747251D6E3">
<img class="footer__info2__img" src="./img_works/Ukrine_1.png" alt="">
</a>
</div>
<div class="copyrights">
Copyright ©︎ Fujii hAjime STUDIO All Rights Reserved.
</div>
</div>
</div>
</div>
</footer>
<!-- <script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script> -->
<script src="https://unpkg.com/web-animations-js@2.3.2/web-animations.min.js"></script>
<script src="https://unpkg.com/muuri@0.8.0/dist/muuri.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.js"></script>
<!--自作のJS-->
<script src="./js/gallery.js"></script>
<!-- <script src="./js/main.js"></script> -->
</body>
</html>