-
Notifications
You must be signed in to change notification settings - Fork 0
/
japan_2019.html
974 lines (974 loc) · 94.3 KB
/
japan_2019.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--metatextblock-->
<title>Japan</title>
<meta name="description" content="Tokyo, Kyoto, Fuji. 2019." />
<meta property="og:url" content="japan_2019" />
<meta property="og:title" content="Japan" />
<meta property="og:description" content="Tokyo, Kyoto, Fuji. 2019." />
<meta property="og:type" content="website" />
<meta property="og:image" content="images/tild6531-6634-4036-b135-323464623663__pict_20190508_070013.jpeg" />
<link rel="canonical" href="japan_2019">
<!--/metatextblock-->
<meta property="fb:app_id" content="257953674358265" />
<meta name="format-detection" content="telephone=no" />
<meta http-equiv="x-dns-prefetch-control" content="on">
<link rel="shortcut icon" href="images/tild6635-6233-4738-b835-383162616136__favicon.ico" type="image/x-icon" />
<!-- Assets -->
<link rel="stylesheet" href="css/tilda-grid-3.0.min.css" type="text/css" media="all" />
<link rel="stylesheet" href="css/tilda-blocks-2.12.css?t=1608009871" type="text/css" media="all" />
<link rel="stylesheet" href="css/tilda-animation-1.0.min.css" type="text/css" media="all" />
<link rel="stylesheet" href="css/tilda-slds-1.4.min.css" type="text/css" media="all" />
<link rel="stylesheet" href="css/tilda-zoom-2.0.min.css" type="text/css" media="all" />
<link rel="stylesheet" href="css/juxtapose.css" type="text/css" media="all" />
<link rel="stylesheet" href="css/tilda-menusub-1.0.min.css" type="text/css" media="all" />
<script src="js/jquery-1.10.2.min.js"></script><script src="js/tilda-scripts-2.8.min.js"></script><script src="js/tilda-blocks-2.7.js?t=1608009871"></script><script src="js/lazyload-1.3.min.js" charset="utf-8"></script><script src="js/tilda-animation-1.0.min.js" charset="utf-8"></script><script src="js/tilda-slds-1.4.min.js" charset="utf-8"></script><script src="js/hammer.min.js" charset="utf-8"></script><script src="js/tilda-zoom-2.0.min.js" charset="utf-8"></script><script src="js/tilda-video-1.0.min.js" charset="utf-8"></script><script src="js/juxtapose.min.js" charset="utf-8"></script><script src="js/tilda-menusub-1.0.min.js" charset="utf-8"></script><script type="text/javascript">window.dataLayer = window.dataLayer || [];</script><script type="text/javascript">if((/bot|google|yandex|baidu|bing|msn|duckduckbot|teoma|slurp|crawler|spider|robot|crawling|facebook/i.test(navigator.userAgent))===false && typeof(sessionStorage)!='undefined' && sessionStorage.getItem('visited')!=='y'){ var style=document.createElement('style'); style.type='text/css'; style.innerHTML='@media screen and (min-width: 980px) {.t-records {opacity: 0;}.t-records_animated {-webkit-transition: opacity ease-in-out .2s;-moz-transition: opacity ease-in-out .2s;-o-transition: opacity ease-in-out .2s;transition: opacity ease-in-out .2s;}.t-records.t-records_visible {opacity: 1;}}'; document.getElementsByTagName('head')[0].appendChild(style); $(document).ready(function() { $('.t-records').addClass('t-records_animated'); setTimeout(function(){ $('.t-records').addClass('t-records_visible'); sessionStorage.setItem('visited','y'); },400); });
}
</script>
</head>
<body class="t-body" style="margin:0;">
<!--allrecords-->
<div id="allrecords" class="t-records" data-hook="blocks-collection-content-node" data-tilda-project-id="3370453" data-tilda-page-id="15953094" data-tilda-page-alias="japan_2019" data-tilda-formskey="c5c6f5da1d1f7103258c645ffd5026e5" >
<div id="rec260801695" class="r t-rec t-rec_pb_0" style="padding-bottom:0px; " data-record-type="18" >
<!-- cover -->
<div class="t-cover" id="recorddiv260801695" bgimgfield="img" style="height:100vh; background-image:url('images/tild3764-3338-4465-b035-383334313462__-__resize__20x__PICT_20190507_181432.jpeg');" >
<div class="t-cover__carrier" id="coverCarry260801695" data-content-cover-id="260801695" data-content-cover-bg="images/tild3764-3338-4465-b035-383334313462__pict_20190507_181432.jpeg" data-content-cover-height="100vh" data-content-cover-parallax="fixed" style="height:100vh; "></div>
<div class="t-cover__filter" style="height:100vh;background-color:#000;filter: alpha(opacity:20); KHTMLOpacity: 0.20; MozOpacity: 0.20; opacity: 0.20;"></div>
<div class="t-container">
<div class="t-col t-col_12 ">
<div class="t-cover__wrapper t-valign_middle" style="height:100vh;">
<div class="t001 t-align_center">
<div class="t001__wrapper" data-hook-content="covercontent">
<div class="t001__uptitle t-uptitle t-uptitle_sm" style="text-transform:uppercase;" field="subtitle">One love<br />PURE ADVENTURE</div>
<div class="t001__title t-title t-title_xl" style="padding-top:20px;" field="title">
<div style="color:#e3ecf2;" data-customstyle="yes">Japan<br /></div>
</div>
<div class="t001__descr t-descr t-descr_xl t001__descr_center" style="" field="descr">Childhood dream</div>
<span class="space"></span>
</div>
</div>
</div>
</div>
</div>
<!-- arrow -->
<div class="t-cover__arrow">
<div class="t-cover__arrow-wrapper ">
<div class="t-cover__arrow_mobile">
<svg class="t-cover__arrow-svg" x="0px" y="0px" width="38.417px" height="18.592px" viewBox="0 0 38.417 18.592" style="enable-background:new 0 0 38.417 18.592;">
<g>
<path d="M19.208,18.592c-0.241,0-0.483-0.087-0.673-0.261L0.327,1.74c-0.408-0.372-0.438-1.004-0.066-1.413c0.372-0.409,1.004-0.439,1.413-0.066L19.208,16.24L36.743,0.261c0.411-0.372,1.042-0.342,1.413,0.066c0.372,0.408,0.343,1.041-0.065,1.413L19.881,18.332C19.691,18.505,19.449,18.592,19.208,18.592z"/>
</g>
</svg>
</div>
</div>
</div>
<!-- arrow -->
</div>
</div>
<div id="rec260974399" class="r t-rec t-rec_pt_60 t-rec_pb_60" style="padding-top:60px;padding-bottom:60px; " data-animationappear="off" data-record-type="758" >
<!-- t758 -->
<div class="t758">
<div class="t-container">
<div class="t758__col t-col t-col_12 ">
<div class="t758__wrapper t-align_center">
<ul class="t758__list">
<li class="t758__list_item">
<div class="t758__link-item__wrapper" ><a class="t-menu__link-item " href="#rec260968588" style="font-weight:300;">Road to Kyoto</a></div>
<span class="t758__breadcrumb-divider" style="font-weight:300;color:#858585;">→</span>
</li>
<li class="t758__list_item">
<div class="t758__link-item__wrapper" ><a class="t-menu__link-item " href="#rec260984207" style="font-weight:300;">Kyoto</a></div>
<span class="t758__breadcrumb-divider" style="font-weight:300;color:#858585;">→</span>
</li>
<li class="t758__list_item">
<div class="t758__link-item__wrapper" ><a class="t-menu__link-item " href="#rec260994005" style="font-weight:300;">Hamamatsu</a></div>
<span class="t758__breadcrumb-divider" style="font-weight:300;color:#858585;">→</span>
</li>
<li class="t758__list_item">
<div class="t758__link-item__wrapper" ><a class="t-menu__link-item " href="#rec261004425" style="font-weight:300;">Mt. Fuji</a></div>
<span class="t758__breadcrumb-divider" style="font-weight:300;color:#858585;">→</span>
</li>
<li class="t758__list_item">
<div class="t758__link-item__wrapper" ><a class="t-menu__link-item t758__link-item_active" href="#rec261017880" style="font-weight:300;">Tokyo</a></div>
</li>
</ul>
</div>
</div>
</div>
</div>
<style>#rec260974399 .t758 .t-menu__link-item{ -webkit-transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out; transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
#rec260974399 .t758 .t-menu__link-item:hover{ color: #9e9e9e !important; }
</style>
</div>
<div id="rec260968327" class="r t-rec t-rec_pt_90 t-rec_pb_45" style="padding-top:90px;padding-bottom:45px;background-color:#d6dee8; " data-record-type="223" data-bg-color="#d6dee8">
<!-- T195 -->
<div class="t195">
<div class="t-container">
<div class="t-col t-col_4 t-prefix_2">
<div class="t195__text t-text t-text_md" style="" field="text">Duo trip with my bro: Yamanakako-Kyoto-Hamamatsu-Fuji-Tokyo.<br />Bag, bro and myself. August 2019<br /><br />About how two ordinary guys traveled and what they saw - watch the video. This story is for our people. <br /><br />Photo and video report<br /></div>
</div>
<div class="t-col t-col_6 t195__imgsection" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild6338-3463-4466-b366-613962653038__20190501_173916-01.jpeg">
<img class="t195__img t-img" data-tu-max-width="1200" data-tu-max-height="1200" src="images/tild6338-3463-4466-b366-613962653038__-__empty__20190501_173916-01.jpeg" data-original="images/tild6338-3463-4466-b366-613962653038__20190501_173916-01.jpeg" imgfield="img" /><br />
<div class="t195__sectitle t-descr" style="" field="imgtitle" itemprop="name"></div>
<div class="t195__secdescr t-descr" style="" field="imgdescr" itemprop="description"></div>
</div>
</div>
</div>
</div>
<div id="rec260968588" class="r t-rec t-rec_pt_60 t-rec_pb_30" style="padding-top:60px;padding-bottom:30px; " data-record-type="795" >
<!-- T795 -->
<div class="t795">
<div class="t-container t-align_center">
<div class="t-col t-col_10 t-prefix_1">
<div class="t795__title t-title t-title_xs t-margin_auto" field="title" style="">From Narita Airport (Tokyo) to Arashiyama bamboo forest (Kyoto)</div>
<div class="t795__descr t-descr t-descr_xl t-margin_auto" field="descr" style="">By stopping in Yamanakako to chill out per Japanese style: Onsen Style.<br /></div>
</div>
</div>
</div>
</div>
<div id="rec260812331" class="r t-rec t-rec_pt_0 t-rec_pb_0" style="padding-top:0px;padding-bottom:0px;background-color:#d6dee8; " data-record-type="4" data-bg-color="#d6dee8">
<!-- T121 -->
<div class="t121">
<center>
<div class="t-video-lazyload t-width t-width_10" style="height:540px; " data-videolazy-type="youtube" data-videolazy-id="kkebhZeDb7E" data-blocklazy-id="260812331" data-videolazy-load="false" data-videolazy-height="540px"> </div>
</center>
</div>
<script> $(document).ready(function(){ t121_setHeight("260812331"); }); $(window).load(function(){ t121_setHeight("260812331"); }); $(window).bind('scroll', t_throttle(function() { t121_setHeight("260812331"); }, 200)); $(window).resize(function(){ if ($('#allrecordstable').length > 0) { $('#rec260812331').find('.t-video-lazyload').css('height', '540px'); $('#rec260812331').find('.t-video-lazyload').find('iframe').css('height', '540px'); } else { t121_setHeight("260812331"); } }); $('.t121').bind('displayChanged',function(){ t121_setHeight("260812331"); }); </script>
</div>
<div id="rec260969758" class="r t-rec t-rec_pt_0 t-rec_pb_0" style="padding-top:0px;padding-bottom:0px; " data-animationappear="off" data-record-type="661" >
<!-- t661 -->
<div class="t661">
<div class="t661__container t-container_100 ">
<div class="t661__row t661__row_indent-20px t-row" >
<div class="t661__tile" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild3537-3639-4731-b536-393961383338__dsc02963-01j.jpeg">
<div class="t661__bgimg t-bgimg t661__bgimg_16-9" bgimgfield="gi_img__0" data-zoomable="yes" data-img-zoom-url="images/tild3537-3639-4731-b536-393961383338__dsc02963-01j.jpeg" data-original="images/tild3537-3639-4731-b536-393961383338__dsc02963-01j.jpeg" style="background: url('images/tild3537-3639-4731-b536-393961383338__-__resizeb__20x__DSC02963-01j.jpeg') center center no-repeat; background-size:cover;"></div>
</div>
</div>
<div class="t661__row t661__row_indent-20px t-row" >
<div class="t661__tile" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild6136-6365-4862-a330-303132356234__dsc02992-01j.jpeg">
<div class="t661__bgimg t661__bgimg_3-2 t-bgimg" bgimgfield="gi_img__1" data-zoomable="yes" data-img-zoom-url="images/tild6136-6365-4862-a330-303132356234__dsc02992-01j.jpeg" data-original="images/tild6136-6365-4862-a330-303132356234__dsc02992-01j.jpeg" style="background: url('images/tild6136-6365-4862-a330-303132356234__-__resizeb__20x__DSC02992-01j.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
<div class="t661__gap"></div>
<div class="t661__tile" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild3933-3634-4463-b632-333631396566__dsc03000-02j.jpeg">
<div class="t661__bgimg t661__bgimg_3-2 t-bgimg" bgimgfield="gi_img__2" data-zoomable="yes" data-img-zoom-url="images/tild3933-3634-4463-b632-333631396566__dsc03000-02j.jpeg" data-original="images/tild3933-3634-4463-b632-333631396566__dsc03000-02j.jpeg" style="background: url('images/tild3933-3634-4463-b632-333631396566__-__resizeb__20x__DSC03000-02j.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
<div class="t661__gap"></div>
<div class="t661__tile" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild6463-6634-4463-b137-656232363330__dsc02986-01.jpeg">
<div class="t661__bgimg t661__bgimg_3-2 t-bgimg" bgimgfield="gi_img__3" data-zoomable="yes" data-img-zoom-url="images/tild6463-6634-4463-b137-656232363330__dsc02986-01.jpeg" data-original="images/tild6463-6634-4463-b137-656232363330__dsc02986-01.jpeg" style="background: url('images/tild6463-6634-4463-b137-656232363330__-__resizeb__20x__DSC02986-01.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
</div>
</div>
</div>
</div>
<div id="rec260969910" class="r t-rec t-rec_pt_30" style="padding-top:30px;background-color:#dfeaf0; " data-record-type="169" data-bg-color="#dfeaf0">
<!-- t155 -->
<div class="t155">
<div class="t-container">
<div class="t-row">
<div class="t-col t-col_6">
<div class="t-bgimg" bgimgfield="gi_img__0" data-zoomable="yes" data-img-zoom-url="images/tild3530-6339-4533-b530-363330303031__20190502_094745-01.jpeg" data-original="images/tild3530-6339-4533-b530-363330303031__20190502_094745-01.jpeg" style="background: url('images/tild3530-6339-4533-b530-363330303031__-__resizeb__20x__20190502_094745-01.jpeg') center center no-repeat; background-size:cover; height:660px; margin-bottom:20px;" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild3530-6339-4533-b530-363330303031__20190502_094745-01.jpeg">
</div>
</div>
<div class="t-col t-col_6">
<div class="t-bgimg" bgimgfield="gi_img__1" data-zoomable="yes" data-img-zoom-url="images/tild3265-3031-4238-a633-306166666336__20190502_165209-01.jpeg" data-original="images/tild3265-3031-4238-a633-306166666336__20190502_165209-01.jpeg" style="width:100%; background: url('images/tild3265-3031-4238-a633-306166666336__-__resizeb__20x__20190502_165209-01.jpeg') center center no-repeat; background-size:cover; height:320px; margin-bottom:20px;" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild3265-3031-4238-a633-306166666336__20190502_165209-01.jpeg">
</div>
<div class="t-bgimg" bgimgfield="gi_img__2" data-zoomable="yes" data-img-zoom-url="images/tild3034-3466-4736-b833-313263396437__pict_20190502_182030.jpeg" data-original="images/tild3034-3466-4736-b833-313263396437__pict_20190502_182030.jpeg" style="width:100%; background: url('images/tild3034-3466-4736-b833-313263396437__-__resizeb__20x__PICT_20190502_182030.jpeg') center center no-repeat; background-size:cover; height:320px; margin-bottom:20px;" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild3034-3466-4736-b833-313263396437__pict_20190502_182030.jpeg">
</div>
</div>
</div>
</div>
</div>
</div>
<div id="rec260984207" class="r t-rec" style=" " data-animationappear="off" data-record-type="18" >
<!-- cover -->
<div class="t-cover" id="recorddiv260984207" bgimgfield="img" style="height:100vh; background-image:url('images/tild6466-3063-4666-b331-323066393966__-__resize__20x__20190503_164411-01.jpeg');" >
<div class="t-cover__carrier" id="coverCarry260984207" data-content-cover-id="260984207" data-content-cover-bg="images/tild6466-3063-4666-b331-323066393966__20190503_164411-01.jpeg" data-content-cover-height="100vh" data-content-cover-parallax="fixed" style="height:100vh; "></div>
<div class="t-cover__filter" style="height:100vh;background-image: -moz-linear-gradient(top, rgba(0,0,0,0.20), rgba(0,0,0,0.60));background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.20), rgba(0,0,0,0.60));background-image: -o-linear-gradient(top, rgba(0,0,0,0.20), rgba(0,0,0,0.60));background-image: -ms-linear-gradient(top, rgba(0,0,0,0.20), rgba(0,0,0,0.60));background-image: linear-gradient(top, rgba(0,0,0,0.20), rgba(0,0,0,0.60));filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#cc000000', endColorstr='#66000000');"></div>
<div class="t-container">
<div class="t-col t-col_12 ">
<div class="t-cover__wrapper t-valign_middle" style="height:100vh;">
<div class="t001 t-align_center">
<div class="t001__wrapper" data-hook-content="covercontent">
<div class="t001__title t-title t-title_xl" style="" field="title">Exploration of Kyoto</div>
<span class="space"></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="rec260989436" class="r t-rec t-rec_pt_30 t-rec_pb_30" style="padding-top:30px;padding-bottom:30px; " data-record-type="172" >
<!-- T158 -->
<div class="t158">
<div class="t-container">
<div class="t-row">
<div class="t-col t-col_12 ">
<div class="t158__text t-text" style="" field="text">The second day in Kyoto. Already on the sights. Golden Pavilion (Kinkakuji Temple), where we put a candle of our innermost desire; ringing bells, for the concept of glasses karma; Japanese sweets; a field of stones Ryoanji (Rock) Garden which was plowed up with a rake; the search for the Tombs of Emperors somewhere in the unknown; the Archer tournament and the first talisman, which then burn down safely.</div>
</div>
</div>
</div>
</div>
</div>
<div id="rec260812990" class="r t-rec" style="background-color:#d6dee8; " data-animationappear="off" data-record-type="347" data-bg-color="#d6dee8">
<!-- T347 -->
<div class="t347">
<div class="t-container">
<div class="t-col t-col_10 t-prefix_1">
<div class="t347__table" style="">
<div class="t347__cell t-align_left t-valign_top">
<div class="t347__bg t-bgimg" bgimgfield="img" data-original="images/tild3962-6633-4533-a464-376431636338__20190504_112443-01.jpeg" style="background-image:url('images/tild3962-6633-4533-a464-376431636338__-__resizeb__20x__20190504_112443-01.jpeg');"></div>
<div class="t347__overlay" style="background-image: -moz-linear-gradient(top, rgba(0,0,0,0.40), rgba(0,0,0,0.0)); background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.40), rgba(0,0,0,0.0)); background-image: -o-linear-gradient(top, rgba(0,0,0,0.40), rgba(0,0,0,0.0)); background-image: -ms-linear-gradient(top, rgba(0,0,0,0.40), rgba(0,0,0,0.0));"></div>
<a class="t347__play-link t347__play-icon_xl" href="javascript:t347showvideo('260812990');">
<div class="t347__play-icon">
<svg width="50px" height="50px" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50">
<path fill="none" d="M49.5 25c0 13.5-10.9 24.5-24.5 24.5S.6 38.5.6 25 11.5.6 25 .6 49.5 11.5 49.5 25z"/>
<path fill="#FFFFFF" d="M25 50c13.8 0 25-11.2 25-25S38.8 0 25 0 0 11.2 0 25s11.2 25 25 25zm-5-33.3l14.2 8.8L20 34.3V16.7z"/>
</svg>
</div>
</a>
<div class="t347__textwrapper">
<div class="t347__textwrapper__content t-width t-width_6">
<div class="t347__title t-name t-name_xl" field="title">Kyoto, day 2<br /></div>
<div class="t347__descr t-descr t-descr_xxs" field="descr">Kinkakuji Temple, Ryoanji (Rock) Garden, Mausoleum of Emperors and Archer tournament</div>
</div>
</div>
</div>
<div class="t347__video-container t347__hidden" data-content-popup-video-url-youtube="5wJDBW_kCc8">
<div class="t347__video-carier"></div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">$(document).ready(function(){ t347_setHeight('260812990'); $('.t347').bind('displayChanged',function(){ t347_setHeight('260812990'); });
});
$(window).resize(function() { t347_setHeight('260812990');
});
</script>
</div>
<div id="rec260976725" class="r t-rec t-rec_pt_0 t-rec_pb_0" style="padding-top:0px;padding-bottom:0px; " data-animationappear="off" data-record-type="662" >
<!-- t662 -->
<div class="t662">
<div class="t662__container t-container_100 ">
<div class="t662__row t662__row_indent-20px t-row">
<div class="t662__tile t662__tile_lg t662__tile_lg_left" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild3033-6637-4563-a332-363464323234__20190503_095657-01.jpeg">
<div class="t662__bgimg t-bgimg" bgimgfield="gi_img__0" data-zoomable="yes" data-img-zoom-url="images/tild3033-6637-4563-a332-363464323234__20190503_095657-01.jpeg" data-original="images/tild3033-6637-4563-a332-363464323234__20190503_095657-01.jpeg" style="background: url('images/tild3033-6637-4563-a332-363464323234__-__resizeb__20x__20190503_095657-01.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
<div class="t662__tile t662__tile_sm t662__tile_sm_right" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild3934-3733-4333-b665-316632373231__20190503_095516-01.jpeg">
<div class="t662__bgimg t-bgimg" bgimgfield="gi_img__1" data-zoomable="yes" data-img-zoom-url="images/tild3934-3733-4333-b665-316632373231__20190503_095516-01.jpeg" data-original="images/tild3934-3733-4333-b665-316632373231__20190503_095516-01.jpeg" style="background: url('images/tild3934-3733-4333-b665-316632373231__-__resizeb__20x__20190503_095516-01.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
</div>
<div class="t662__row t662__row_indent-20px t-row">
<div class="t662__tile t662__tile_sm t662__tile_sm_left" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild6561-6430-4465-b431-633131363533__20190503_121335-01.jpeg">
<div class="t662__bgimg t-bgimg" bgimgfield="gi_img__2" data-zoomable="yes" data-img-zoom-url="images/tild6561-6430-4465-b431-633131363533__20190503_121335-01.jpeg" data-original="images/tild6561-6430-4465-b431-633131363533__20190503_121335-01.jpeg" style="background: url('images/tild6561-6430-4465-b431-633131363533__-__resizeb__20x__20190503_121335-01.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
<div class="t662__tile t662__tile_lg t662__tile_lg_right" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild6162-3734-4233-a161-383636653564__20190503_122552-01.jpeg">
<div class="t662__bgimg t-bgimg" bgimgfield="gi_img__3" data-zoomable="yes" data-img-zoom-url="images/tild6162-3734-4233-a161-383636653564__20190503_122552-01.jpeg" data-original="images/tild6162-3734-4233-a161-383636653564__20190503_122552-01.jpeg" style="background: url('images/tild6162-3734-4233-a161-383636653564__-__resizeb__20x__20190503_122552-01.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
</div>
</div>
</div>
<!--[if (IE 8)|(IE 9)]>
<style>.t662__tile_sm .t662__bgimg { padding-bottom: 137%;
}
</style>
<![endif]-->
</div>
<div id="rec260989824" class="r t-rec t-rec_pt_60 t-rec_pb_75" style="padding-top:60px;padding-bottom:75px;background-color:#dfeaf0; " data-record-type="172" data-bg-color="#dfeaf0">
<!-- T158 -->
<div class="t158">
<div class="t-container">
<div class="t-row">
<div class="t-col t-col_12 ">
<div class="t158__text t-text" style="" field="text">The third and last day in the wonderful city of Kyoto. And very comfortable weather. <br /> Visited the castle of Shogun - the commander of the Japanese army. Impregnable fort. <br /> Next, we cleansed the soul by going through the many gates of Torii in Fushimi Inari Taisha - a Shinto temple of 711 on the mountain. Again we got talismans with predictions. <br /> Towards evening, we managed to get to Kiyomizu Monastery - a Buddhist temple with a beautiful view of Kyoto. I talked to the universe at every drum knocked on the great tub (we mastered Zen).<br /></div>
</div>
</div>
</div>
</div>
</div>
<div id="rec260813116" class="r t-rec t-rec_pt_0 t-rec_pb_0" style="padding-top:0px;padding-bottom:0px;background-color:#dfeaf0; " data-record-type="4" data-bg-color="#dfeaf0">
<!-- T121 -->
<div class="t121">
<center>
<div class="t-video-lazyload t-width t-width_10" style="height:540px; " data-videolazy-type="youtube" data-videolazy-id="Onsn2CoBPI8" data-blocklazy-id="260813116" data-videolazy-load="false" data-videolazy-height="540px"> </div>
</center>
</div>
<script> $(document).ready(function(){ t121_setHeight("260813116"); }); $(window).load(function(){ t121_setHeight("260813116"); }); $(window).bind('scroll', t_throttle(function() { t121_setHeight("260813116"); }, 200)); $(window).resize(function(){ if ($('#allrecordstable').length > 0) { $('#rec260813116').find('.t-video-lazyload').css('height', '540px'); $('#rec260813116').find('.t-video-lazyload').find('iframe').css('height', '540px'); } else { t121_setHeight("260813116"); } }); $('.t121').bind('displayChanged',function(){ t121_setHeight("260813116"); }); </script>
</div>
<div id="rec260985747" class="r t-rec t-rec_pt_0 t-rec_pb_0" style="padding-top:0px;padding-bottom:0px; " data-animationappear="off" data-record-type="680" >
<!-- t680 -->
<div class="t680">
<div class="t680__container t-container_100 ">
<div class="t680__row t680__row_indent-20px t-row">
<div class="t680__tile t680__tile_left t680__tile_big-img t680__top" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild3632-6532-4733-b930-393736323861__59413676_85571178478.jpg">
<div class="t680__bgimg t680__bgimg_lg t-bgimg" bgimgfield="gi_img__0" data-zoomable="yes" data-img-zoom-url="images/tild3632-6532-4733-b930-393736323861__59413676_85571178478.jpg" data-original="images/tild3632-6532-4733-b930-393736323861__59413676_85571178478.jpg" style="background: url('images/tild3632-6532-4733-b930-393736323861__-__resizeb__20x__59413676_85571178478.jpg') center center no-repeat;background-size: cover;"></div>
</div>
<div class="t680__tile t680__tile_right ">
<div class="t680__bgimg_wrapper t680__bgimg_wrapper_left" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild3933-3834-4162-a564-326232323465__dsc03043-01.jpeg">
<div class="t680__bgimg t680__bgimg_sm t-bgimg" bgimgfield="gi_img__1" data-zoomable="yes" data-img-zoom-url="images/tild3933-3834-4162-a564-326232323465__dsc03043-01.jpeg" data-original="images/tild3933-3834-4162-a564-326232323465__dsc03043-01.jpeg" style="background: url('images/tild3933-3834-4162-a564-326232323465__-__resizeb__20x__DSC03043-01.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
<div class="t680__bgimg_wrapper t680__bgimg_wrapper_right" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild6531-6466-4466-a662-333332376337__20190504_183411-01.jpeg">
<div class="t680__bgimg t680__bgimg_sm t-bgimg" bgimgfield="gi_img__2" data-zoomable="yes" data-img-zoom-url="images/tild6531-6466-4466-a662-333332376337__20190504_183411-01.jpeg" data-original="images/tild6531-6466-4466-a662-333332376337__20190504_183411-01.jpeg" style="background: url('images/tild6531-6466-4466-a662-333332376337__-__resizeb__20x__20190504_183411-01.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
<div class="t680__gap"></div>
<div class="t680__bgimg_wrapper t680__bgimg_wrapper_left " itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild6236-3337-4737-a363-616364333363__20190504_210242-02.jpeg">
<div class="t680__bgimg t680__bgimg_sm t-bgimg" bgimgfield="gi_img__3" data-zoomable="yes" data-img-zoom-url="images/tild6236-3337-4737-a363-616364333363__20190504_210242-02.jpeg" data-original="images/tild6236-3337-4737-a363-616364333363__20190504_210242-02.jpeg" style="background: url('images/tild6236-3337-4737-a363-616364333363__-__resizeb__20x__20190504_210242-02.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
<div class="t680__bgimg_wrapper t680__bgimg_wrapper_right" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild3931-3233-4139-a666-353064303732__20190504_190702-01.jpeg">
<div class="t680__bgimg t680__bgimg_sm t-bgimg" bgimgfield="gi_img__4" data-zoomable="yes" data-img-zoom-url="images/tild3931-3233-4139-a666-353064303732__20190504_190702-01.jpeg" data-original="images/tild3931-3233-4139-a666-353064303732__20190504_190702-01.jpeg" style="background: url('images/tild3931-3233-4139-a666-353064303732__-__resizeb__20x__20190504_190702-01.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
</div>
</div>
</div>
</div>
<!--[if (IE 8)|(IE 9)]>
<style>.t680__bgimg_lg { padding-bottom: 100%;
}
</style>
<![endif]-->
</div>
<div id="rec260988291" class="r t-rec t-rec_pt_60 t-rec_pb_60" style="padding-top:60px;padding-bottom:60px;background-color:#dfeaf0; " data-record-type="36" data-bg-color="#dfeaf0">
<!-- T021 -->
<div class="t021">
<div class="t-container">
<div class="t-row">
<div class="t-col t-col_2 t-prefix_5">
<div class="t021__line" ></div>
</div>
</div>
<div class="t-row">
<div class="t-col t-col_10 t-prefix_1">
<div class="t021__text-impact t-text-impact t-text-impact_md" style="" field="text">3 different shrines predicted the same thing to me.<br />And I was lucky to get a talisman and monk beads.</div>
</div>
</div>
<div class="t-row">
<div class="t-col t-col_2 t-prefix_5">
<div class="t021__line" ></div>
</div>
</div>
</div>
</div>
</div>
<div id="rec260985149" class="r t-rec t-rec_pt_0 t-rec_pb_0" style="padding-top:0px;padding-bottom:0px; " data-animationappear="off" data-record-type="662" >
<!-- t662 -->
<div class="t662">
<div class="t662__container t-container_100 ">
<div class="t662__row t662__row_indent-20px t-row">
<div class="t662__tile t662__tile_lg t662__tile_lg_left" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild3735-3232-4433-b262-393063313766__20190503_160617-01.jpeg">
<div class="t662__bgimg t-bgimg" bgimgfield="gi_img__0" data-zoomable="yes" data-img-zoom-url="images/tild3735-3232-4433-b262-393063313766__20190503_160617-01.jpeg" data-original="images/tild3735-3232-4433-b262-393063313766__20190503_160617-01.jpeg" style="background: url('images/tild3735-3232-4433-b262-393063313766__-__resizeb__20x__20190503_160617-01.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
<div class="t662__tile t662__tile_sm t662__tile_sm_right" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild3634-3430-4465-a365-376265343561__20190504_174023-02.jpeg">
<div class="t662__bgimg t-bgimg" bgimgfield="gi_img__1" data-zoomable="yes" data-img-zoom-url="images/tild3634-3430-4465-a365-376265343561__20190504_174023-02.jpeg" data-original="images/tild3634-3430-4465-a365-376265343561__20190504_174023-02.jpeg" style="background: url('images/tild3634-3430-4465-a365-376265343561__-__resizeb__20x__20190504_174023-02.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
</div>
<div class="t662__row t662__row_indent-20px t-row">
<div class="t662__tile t662__tile_sm t662__tile_sm_left" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild6633-3734-4465-a564-353835616365__20190504_103748-01.jpeg">
<div class="t662__bgimg t-bgimg" bgimgfield="gi_img__2" data-zoomable="yes" data-img-zoom-url="images/tild6633-3734-4465-a564-353835616365__20190504_103748-01.jpeg" data-original="images/tild6633-3734-4465-a564-353835616365__20190504_103748-01.jpeg" style="background: url('images/tild6633-3734-4465-a564-353835616365__-__resizeb__20x__20190504_103748-01.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
<div class="t662__tile t662__tile_lg t662__tile_lg_right" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild3538-3635-4437-a335-363831313965__20190503_160831-01.jpeg">
<div class="t662__bgimg t-bgimg" bgimgfield="gi_img__3" data-zoomable="yes" data-img-zoom-url="images/tild3538-3635-4437-a335-363831313965__20190503_160831-01.jpeg" data-original="images/tild3538-3635-4437-a335-363831313965__20190503_160831-01.jpeg" style="background: url('images/tild3538-3635-4437-a335-363831313965__-__resizeb__20x__20190503_160831-01.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
</div>
</div>
</div>
<!--[if (IE 8)|(IE 9)]>
<style>.t662__tile_sm .t662__bgimg { padding-bottom: 137%;
}
</style>
<![endif]-->
</div>
<div id="rec260987328" class="r t-rec t-rec_pt_60 t-rec_pb_0" style="padding-top:60px;padding-bottom:0px;background-color:#e6e6e6; " data-record-type="795" data-bg-color="#e6e6e6">
<!-- T795 -->
<div class="t795">
<div class="t-container t-align_center">
<div class="t-col t-col_10 t-prefix_1">
<div class="t795__title t-title t-title_xs t-margin_auto" field="title" style="">Kyoto Station</div>
</div>
</div>
</div>
</div>
<div id="rec260976458" class="r t-rec t-rec_pt_45 t-rec_pb_90" style="padding-top:45px;padding-bottom:90px;background-color:#e6e6e6; " data-animationappear="off" data-record-type="410" data-bg-color="#e6e6e6">
<!-- t410 -->
<div class="t410">
<div class="t-container">
<div class="t410__col t-col t-col_10 t-prefix_1">
<div class="t410__wrapper" data-juxtapose-imgurl-first="images/tild3038-3533-4236-a337-666538663538__20190504_122603-01.jpeg" data-juxtapose-imgdescr-first="" data-juxtapose-imgalt-first="" data-juxtapose-imgurl-second="images/tild6233-6239-4438-b563-323736316366__20190504_132735-02.jpeg" data-juxtapose-imgdescr-second="" data-juxtapose-imgalt-second="">
<div id="t410-juxtapose__260976458"> </div>
</div>
</div>
</div>
</div>
<script>$(document).ready(function() { t410_init('260976458');
});
</script>
<style> #rec260976458 .t410 .jx-controller { background-color: #ffffff; } #rec260976458 .t410 .jx-control { background-color: #ffffff; } #rec260976458 .t410 .jx-arrow.jx-right { border-color: transparent transparent transparent #ffffff; } #rec260976458 .t410 .jx-arrow.jx-left { border-color: transparent #ffffff transparent transparent; }</style>
</div>
<div id="rec260987538" class="r t-rec t-rec_pt_75 t-rec_pb_75" style="padding-top:75px;padding-bottom:75px;background-color:#ffffff; " data-record-type="94" data-bg-color="#ffffff">
<!-- T083 -->
<div class="t083">
<div class="t-container">
<div class="t-col t-col_10 t-prefix_1">
<div class="t083__inner" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild3238-3731-4939-a132-353139313333__20190503_000128-01.jpeg">
<div class="t083__imgwrapper"><img src="images/tild3238-3731-4939-a132-353139313333__-__empty__20190503_000128-01.jpeg" data-original="images/tild3238-3731-4939-a132-353139313333__20190503_000128-01.jpeg" class="t083__widthauto t-img" imgfield="img" /></div>
<div class="t083__textclass1 t-title" style="" field="title" itemprop="name"><em>arigatō, Kyoto<br />See you soon</em></div>
</div>
</div>
</div>
</div>
</div>
<div id="rec260994005" class="r t-rec t-rec_pb_0" style="padding-bottom:0px; " data-animationappear="off" data-record-type="237" >
<!-- cover -->
<div class="t-cover" id="recorddiv260994005" bgimgfield="img" style="height:170vh; background-image:url('images/tild6636-6664-4335-b965-666561623866__-__resize__20x__DJI_0264-01j.jpeg');" >
<div class="t-cover__carrier" id="coverCarry260994005" data-content-cover-id="260994005" data-content-cover-bg="images/tild6636-6664-4335-b965-666561623866__dji_0264-01j.jpeg" data-content-cover-height="170vh" data-content-cover-parallax="fixed" style="height:170vh; "></div>
<div class="t-cover__filter" style="height:170vh;background-image: -moz-linear-gradient(top, rgba(0,0,0,0.0), rgba(0,0,0,0.0));background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.0), rgba(0,0,0,0.0));background-image: -o-linear-gradient(top, rgba(0,0,0,0.0), rgba(0,0,0,0.0));background-image: -ms-linear-gradient(top, rgba(0,0,0,0.0), rgba(0,0,0,0.0));background-image: linear-gradient(top, rgba(0,0,0,0.0), rgba(0,0,0,0.0));filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#fe000000', endColorstr='#fe000000');"></div>
<div class="t208">
<div class="t-container">
<div class="t-col t-col_6 t-prefix_6">
<div class="t-cover__wrapper t-valign_bottom" style="height:170vh;">
<div data-hook-content="covercontent">
<div class="t208__wrapper">
<div class="t208__textwrapper" style="background-color: rgba(8,18,51,1);">
<div class="t208__text t-text t-text_sm" field="text" style="color:#ffffff;">One day in the small town Hamamatsu. <br />The infinite power of The Pacific Ocean. <br /></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="rec260813213" class="r t-rec t-rec_pt_0 t-rec_pb_0" style="padding-top:0px;padding-bottom:0px;background-color:#061529; " data-record-type="4" data-bg-color="#061529">
<!-- T121 -->
<div class="t121">
<center>
<div class="t-video-lazyload t-width t-width_10" style="height:540px; " data-videolazy-type="youtube" data-videolazy-id="J4INRtuQi_k" data-blocklazy-id="260813213" data-videolazy-load="false" data-videolazy-height="540px"> </div>
</center>
</div>
<script> $(document).ready(function(){ t121_setHeight("260813213"); }); $(window).load(function(){ t121_setHeight("260813213"); }); $(window).bind('scroll', t_throttle(function() { t121_setHeight("260813213"); }, 200)); $(window).resize(function(){ if ($('#allrecordstable').length > 0) { $('#rec260813213').find('.t-video-lazyload').css('height', '540px'); $('#rec260813213').find('.t-video-lazyload').find('iframe').css('height', '540px'); } else { t121_setHeight("260813213"); } }); $('.t121').bind('displayChanged',function(){ t121_setHeight("260813213"); }); </script>
</div>
<div id="rec260997293" class="r t-rec t-rec_pt_45 t-rec_pb_45" style="padding-top:45px;padding-bottom:45px;background-color:#d2e1f5; " data-record-type="172" data-bg-color="#d2e1f5">
<!-- T158 -->
<div class="t158">
<div class="t-container">
<div class="t-row">
<div class="t-col t-col_12 ">
<div class="t158__text t-text" style="" field="text">We had gotten a luck and had come to Hamamatsu during a local festival.</div>
</div>
</div>
</div>
</div>
</div>
<div id="rec260997171" class="r t-rec t-rec_pt_30 t-rec_pb_30" style="padding-top:30px;padding-bottom:30px;background-color:#061529; " data-animationappear="off" data-record-type="667" data-bg-color="#061529">
<!-- t667 -->
<div class="t667">
<div class="t667__container t-container ">
<div class="t667__row t667__row_indent-20px t-row">
<div class="t667__tile t667__tile_left" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild6131-3762-4336-a633-633738663364__20190505_190643-01.jpeg">
<div class="t667__bgimg t667__bgimg_1-1 t-bgimg" bgimgfield="gi_img__0" data-zoomable="yes" data-img-zoom-url="images/tild6131-3762-4336-a633-633738663364__20190505_190643-01.jpeg" data-original="images/tild6131-3762-4336-a633-633738663364__20190505_190643-01.jpeg" style="background: url('images/tild6131-3762-4336-a633-633738663364__-__resizeb__20x__20190505_190643-01.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
<div class="t667__tile t667__tile_right" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild6337-6138-4433-b436-353632346234__20190505_195747-01.jpeg">
<div class="t667__bgimg t667__bgimg_1-1 t-bgimg" bgimgfield="gi_img__1" data-zoomable="yes" data-img-zoom-url="images/tild6337-6138-4433-b436-353632346234__20190505_195747-01.jpeg" data-original="images/tild6337-6138-4433-b436-353632346234__20190505_195747-01.jpeg" style="background: url('images/tild6337-6138-4433-b436-353632346234__-__resizeb__20x__20190505_195747-01.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
</div>
</div>
</div>
</div>
<div id="rec261004425" class="r t-rec" style=" " data-animationappear="off" data-record-type="18" >
<!-- cover -->
<div class="t-cover" id="recorddiv261004425" bgimgfield="img" style="height:100vh; background-image:url('images/tild3431-3562-4636-a332-653134303736__-__resize__20x__DJI_0271-01.jpeg');" >
<div class="t-cover__carrier" id="coverCarry261004425" data-content-cover-id="261004425" data-content-cover-bg="images/tild3431-3562-4636-a332-653134303736__dji_0271-01.jpeg" data-content-cover-height="100vh" data-content-cover-parallax="fixed" style="height:100vh; "></div>
<div class="t-cover__filter" style="height:100vh;background-image: -moz-linear-gradient(top, rgba(0,0,0,0.40), rgba(0,0,0,0.20));background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.40), rgba(0,0,0,0.20));background-image: -o-linear-gradient(top, rgba(0,0,0,0.40), rgba(0,0,0,0.20));background-image: -ms-linear-gradient(top, rgba(0,0,0,0.40), rgba(0,0,0,0.20));background-image: linear-gradient(top, rgba(0,0,0,0.40), rgba(0,0,0,0.20));filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#99000000', endColorstr='#cc000000');"></div>
<div class="t-container">
<div class="t-col t-col_12 ">
<div class="t-cover__wrapper t-valign_middle" style="height:100vh;">
<div class="t001 t-align_center">
<div class="t001__wrapper" data-hook-content="covercontent">
<div class="t001__title t-title t-title_xl" style="" field="title">Mt. Fuji</div>
<div class="t001__descr t-descr t-descr_xl t001__descr_center" style="" field="descr">Nightlong trip to the heights</div>
<span class="space"></span>
</div>
</div>
</div>
</div>
</div>
<!-- arrow -->
<div class="t-cover__arrow">
<div class="t-cover__arrow-wrapper t-cover__arrow-wrapper_animated">
<div class="t-cover__arrow_mobile">
<svg class="t-cover__arrow-svg" style="fill:#ffffff;" x="0px" y="0px" width="38.417px" height="18.592px" viewBox="0 0 38.417 18.592" style="enable-background:new 0 0 38.417 18.592;">
<g>
<path d="M19.208,18.592c-0.241,0-0.483-0.087-0.673-0.261L0.327,1.74c-0.408-0.372-0.438-1.004-0.066-1.413c0.372-0.409,1.004-0.439,1.413-0.066L19.208,16.24L36.743,0.261c0.411-0.372,1.042-0.342,1.413,0.066c0.372,0.408,0.343,1.041-0.065,1.413L19.881,18.332C19.691,18.505,19.449,18.592,19.208,18.592z"/>
</g>
</svg>
</div>
</div>
</div>
<!-- arrow -->
</div>
</div>
<div id="rec261004800" class="r t-rec t-rec_pt_60 t-rec_pb_75" style="padding-top:60px;padding-bottom:75px;background-color:#d2e1f5; " data-record-type="172" data-bg-color="#d2e1f5">
<!-- T158 -->
<div class="t158">
<div class="t-container">
<div class="t-row">
<div class="t-col t-col_12 ">
<div class="t158__text t-text" style="" field="text">
<div style="font-size:26px;" data-customstyle="yes">The video below describes how we climbed Mount Fuji out of a season (early May), when it was still covered by snow. At night.<br />Moreover, we also had explored the old temples and graves of monks along the way, when we have going down the pilgrims' road (20.4 km from the top). Also at night.<br />It was one of the most craziest I have done in my life.</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="rec261009174" class="r t-rec t-rec_pt_0 t-rec_pb_0" style="padding-top:0px;padding-bottom:0px; " data-animationappear="off" data-record-type="660" >
<!-- t660 -->
<div class="t660">
<div class="t660__container t-container_100 ">
<div class="t660__row t660__row_indent-20px t-row">
<div class="t660__tile t660__tile_lg t660__tile_lg_left" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild6664-3033-4233-a239-393130343266__20190506_164918-01_-.jpeg">
<div class="t660__bgimg t-bgimg" bgimgfield="gi_img__0" data-zoomable="yes" data-img-zoom-url="images/tild6664-3033-4233-a239-393130343266__20190506_164918-01_-.jpeg" data-original="images/tild6664-3033-4233-a239-393130343266__20190506_164918-01_-.jpeg" style="background: url('images/tild6664-3033-4233-a239-393130343266__-__resizeb__20x__20190506_164918-01_-.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
<div class="t660__tile t660__tile_sm t660__tile_sm_right">
<div class="t660__bgimg_wrapper" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild6664-3062-4437-b735-303139623939__20190506_164155-01_-.jpeg">
<div class="t660__bgimg t-bgimg" bgimgfield="gi_img__1" data-zoomable="yes" data-img-zoom-url="images/tild6664-3062-4437-b735-303139623939__20190506_164155-01_-.jpeg" data-original="images/tild6664-3062-4437-b735-303139623939__20190506_164155-01_-.jpeg" style="background: url('images/tild6664-3062-4437-b735-303139623939__-__resizeb__20x__20190506_164155-01_-.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
<div class="t660__bgimg_wrapper" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild3839-6634-4361-a663-366338376662__20190506_164136-02.jpeg">
<div class="t660__bgimg t-bgimg" bgimgfield="gi_img__2" data-zoomable="yes" data-img-zoom-url="images/tild3839-6634-4361-a663-366338376662__20190506_164136-02.jpeg" data-original="images/tild3839-6634-4361-a663-366338376662__20190506_164136-02.jpeg" style="background: url('images/tild3839-6634-4361-a663-366338376662__-__resizeb__20x__20190506_164136-02.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
</div>
</div>
</div>
</div>
<!--[if (IE 8)|(IE 9)]>
<style>.t660__tile_lg .t660__bgimg { padding-bottom: 100%;
}
.t660__row { font-size: 0;
}
</style>
<![endif]-->
</div>
<div id="rec260813267" class="r t-rec t-rec_pt_0 t-rec_pb_0" style="padding-top:0px;padding-bottom:0px;background-color:#00101f; " data-record-type="4" data-bg-color="#00101f">
<!-- T121 -->
<div class="t121">
<center>
<div class="t-video-lazyload t-width t-width_10" style="height:540px; " data-videolazy-type="youtube" data-videolazy-id="rhI6r5_a9OA" data-blocklazy-id="260813267" data-videolazy-load="false" data-videolazy-height="540px"> </div>
</center>
</div>
<script> $(document).ready(function(){ t121_setHeight("260813267"); }); $(window).load(function(){ t121_setHeight("260813267"); }); $(window).bind('scroll', t_throttle(function() { t121_setHeight("260813267"); }, 200)); $(window).resize(function(){ if ($('#allrecordstable').length > 0) { $('#rec260813267').find('.t-video-lazyload').css('height', '540px'); $('#rec260813267').find('.t-video-lazyload').find('iframe').css('height', '540px'); } else { t121_setHeight("260813267"); } }); $('.t121').bind('displayChanged',function(){ t121_setHeight("260813267"); }); </script>
</div>
<div id="rec261008767" class="r t-rec" style="background-color:#030c1f; " data-animationappear="off" data-record-type="663" data-bg-color="#030c1f">
<!-- t663 -->
<div class="t663">
<div class="t663__container t-container_100 ">
<div class="t663__row t663__row_indent-20px t-row" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild3965-3562-4934-b864-643134326133__dsc03071-01j.jpeg">
<div class="t663__bgimg t663__bgimg_16-9 t-bgimg" bgimgfield="gi_img__0" data-zoomable="yes" data-img-zoom-url="images/tild3965-3562-4934-b864-643134326133__dsc03071-01j.jpeg" data-original="images/tild3965-3562-4934-b864-643134326133__dsc03071-01j.jpeg" style="background: url('images/tild3965-3562-4934-b864-643134326133__-__resizeb__20x__DSC03071-01j.jpeg') center center no-repeat; background-size:cover;"></div>
</div>
<div class="t663__row t663__row_indent-20px t-row" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild6235-3032-4163-b634-353838626533__dsc03072-02j.jpeg">
<div class="t663__bgimg t663__bgimg_16-9 t-bgimg" bgimgfield="gi_img__1" data-zoomable="yes" data-img-zoom-url="images/tild6235-3032-4163-b634-353838626533__dsc03072-02j.jpeg" data-original="images/tild6235-3032-4163-b634-353838626533__dsc03072-02j.jpeg" style="background: url('images/tild6235-3032-4163-b634-353838626533__-__resizeb__20x__DSC03072-02j.jpeg') center center no-repeat; background-size:cover;"></div>
</div>
</div>
</div>
</div>
<div id="rec261008413" class="r t-rec t-rec_pt_45 t-rec_pb_45" style="padding-top:45px;padding-bottom:45px;background-color:#030c1f; " data-animationappear="off" data-record-type="410" data-bg-color="#030c1f">
<!-- t410 -->
<div class="t410">
<div class="t-container">
<div class="t410__col t-col t-col_10 t-prefix_1">
<div class="t410__wrapper" data-juxtapose-imgurl-first="images/tild6230-3264-4330-b766-333733333039__20190506_172429-01.jpeg" data-juxtapose-imgdescr-first="" data-juxtapose-imgalt-first="" data-juxtapose-imgurl-second="images/tild3730-3033-4130-b132-663763386434__dsc03074-02j.jpeg" data-juxtapose-imgdescr-second="" data-juxtapose-imgalt-second="">
<div id="t410-juxtapose__261008413"> </div>
</div>
</div>
</div>
</div>
<script>$(document).ready(function() { t410_init('261008413');
});
</script>
<style> #rec261008413 .t410 .jx-controller { background-color: #ffffff; } #rec261008413 .t410 .jx-control { background-color: #ffffff; } #rec261008413 .t410 .jx-arrow.jx-right { border-color: transparent transparent transparent #ffffff; } #rec261008413 .t410 .jx-arrow.jx-left { border-color: transparent #ffffff transparent transparent; }</style>
</div>
<div id="rec261011037" class="r t-rec t-rec_pt_30" style="padding-top:30px;background-color:#030c1f; " data-record-type="147" data-bg-color="#030c1f">
<!-- t214-->
<div class="t214">
<div class="t-container">
<div class="t-row">
<div class="t-col t-col_4" style="margin-bottom:20px;" itemscope itemtype="http://schema.org/ImageObject">
<div class="t214__blockimg t-bgimg" bgimgfield="gi_img__0" data-zoom-target="0" data-original="images/tild6635-3339-4166-b335-353262333335__20190506_191755-01.jpeg" style="background: url('images/tild6635-3339-4166-b335-353262333335__-__resizeb__20x__20190506_191755-01.jpeg') center center no-repeat; background-size:cover;">
<meta itemprop="image" content="images/tild6635-3339-4166-b335-353262333335__20190506_191755-01.jpeg">
</div>
</div>
<div class="t-col t-col_4" style="margin-bottom:20px;" itemscope itemtype="http://schema.org/ImageObject">
<div class="t214__blockimg t-bgimg" bgimgfield="gi_img__1" data-zoom-target="1" data-original="images/tild3133-6564-4263-a539-636231383535__20190506_220446-01.jpeg" style="background: url('images/tild3133-6564-4263-a539-636231383535__-__resizeb__20x__20190506_220446-01.jpeg') center center no-repeat; background-size:cover;">
<meta itemprop="image" content="images/tild3133-6564-4263-a539-636231383535__20190506_220446-01.jpeg">
</div>
</div>
<div class="t-col t-col_4" style="margin-bottom:20px;" itemscope itemtype="http://schema.org/ImageObject">
<div class="t214__blockimg t-bgimg" bgimgfield="gi_img__2" data-zoom-target="2" data-original="images/tild3062-3164-4161-a535-363663666638__dsc03077j.jpg" style="background: url('images/tild3062-3164-4161-a535-363663666638__-__resizeb__20x__DSC03077j.JPG') center center no-repeat; background-size:cover;">
<meta itemprop="image" content="images/tild3062-3164-4161-a535-363663666638__dsc03077j.jpg">
</div>
</div>
</div>
<div class="t-row"> </div>
</div>
</div>
</div>
<div id="rec260991231" class="r t-rec t-rec_pt_75 t-rec_pb_75" style="padding-top:75px;padding-bottom:75px;background-color:#c9dbf2; " data-record-type="182" data-bg-color="#c9dbf2">
<!-- T167 -->
<div class="t167">
<div class="t-container">
<div class="t-prefix_2 t-col t-col_10">
<div class="t-col t-col_5 t167__imgblock" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild3835-3663-4662-a235-333138346363__pict_20190508_070013.jpeg">
<img class="t167__img t-img" src="images/tild3835-3663-4662-a235-333138346363__-__empty__PICT_20190508_070013.jpeg" data-original="images/tild3835-3663-4662-a235-333138346363__pict_20190508_070013.jpeg" imgfield="img" data-tu-max-width="920" data-tu-max-height="920" />
<div class="t167__imgdescr t-descr" style="" field="imgdescr" itemprop="description">On the next day after long Fuji trip</div>
</div>
<div class="t-col t-col_8" style="margin:0; float:none; display:inherit;">
<div field="text" class="t167__text t-text t-text_md" style="">
<div style="font-size:22px;" data-customstyle="yes">From the ocean to the volcano. Above clouds. <br /> The top of Fuji isn't at all what you thought about it when you were a child. This is not a magical world where you can bask under the sun. The top is dark and cold, lonely and deserted. The snow and strong wind say to you: "Guy, get out from here". <br />But you keep going up. Because there is no other way.<br /> Standing at 3400 meters altitude and asking yourself: "What the hell did I forget here?" There's not a single sound around. Only the hum of the wind in your ears. However, you unwittingly understand that this is great because the soul is resting in the emptiness and coolness. <br /> As a result, we climbed to 9th stations (about 3450m), in the dead of night, where only city luminaries at the foot were visible. And from there we descended the path of the monks right up to the bottom.<br /></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="rec261017280" class="r t-rec t-rec_pt_75 t-rec_pb_75" style="padding-top:75px;padding-bottom:75px;background-color:#000114; " data-record-type="101" data-bg-color="#000114">
<!-- T089 -->
<div class="t089">
<div class="t-container">
<div class="t-col t-col_12 ">
<div class="t089__inner" style="border-color:#a65221;">
<div class="t089__text t-title" style="" field="text">
<div style="color:#e17f33;" data-customstyle="yes">Unbearably tired after the 24 kilometers road, however, no longer resemble those in the past.<br /><br />@Mt. Fuji</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="rec261012128" class="r t-rec t-rec_pt_0 t-rec_pb_0" style="padding-top:0px;padding-bottom:0px; " data-animationappear="off" data-record-type="552" >
<!-- t552-->
<div class="t552">
<div class="t552__container t-container_100 " >
<div class="t552__tile t552__tile_25" itemscope itemtype="http://schema.org/ImageObject">
<div class="t552__blockimg t552__blockimg_animated t-bgimg" bgimgfield="gi_img__0" data-zoom-target="0" data-zoomable="yes" data-img-zoom-url="images/tild3364-3965-4538-b166-373762386437__20190507_075122-01.jpeg" data-original="images/tild3364-3965-4538-b166-373762386437__20190507_075122-01.jpeg" style="background: url('images/tild3364-3965-4538-b166-373762386437__-__resizeb__20x__20190507_075122-01.jpeg') center center no-repeat; background-size:cover; height:18.75vw;">
<meta itemprop="image" content="images/tild3364-3965-4538-b166-373762386437__20190507_075122-01.jpeg">
</div>
</div>
<div class="t552__tile t552__tile_25" itemscope itemtype="http://schema.org/ImageObject">
<div class="t552__blockimg t552__blockimg_animated t-bgimg" bgimgfield="gi_img__1" data-zoom-target="1" data-zoomable="yes" data-img-zoom-url="images/tild3038-3266-4961-a532-313638616464__20190507_214319-01.jpeg" data-original="images/tild3038-3266-4961-a532-313638616464__20190507_214319-01.jpeg" style="background: url('images/tild3038-3266-4961-a532-313638616464__-__resizeb__20x__20190507_214319-01.jpeg') center center no-repeat; background-size:cover; height:18.75vw;">
<meta itemprop="image" content="images/tild3038-3266-4961-a532-313638616464__20190507_214319-01.jpeg">
</div>
</div>
<div class="t552__tile t552__tile_25" itemscope itemtype="http://schema.org/ImageObject">
<div class="t552__blockimg t552__blockimg_animated t-bgimg" bgimgfield="gi_img__2" data-zoom-target="2" data-zoomable="yes" data-img-zoom-url="images/tild3734-3365-4936-b239-383763393433__20190508_072442-01.jpeg" data-original="images/tild3734-3365-4936-b239-383763393433__20190508_072442-01.jpeg" style="background: url('images/tild3734-3365-4936-b239-383763393433__-__resizeb__20x__20190508_072442-01.jpeg') center center no-repeat; background-size:cover; height:18.75vw;">
<meta itemprop="image" content="images/tild3734-3365-4936-b239-383763393433__20190508_072442-01.jpeg">
</div>
</div>
<div class="t552__tile t552__tile_25" itemscope itemtype="http://schema.org/ImageObject">
<div class="t552__blockimg t552__blockimg_animated t-bgimg" bgimgfield="gi_img__3" data-zoom-target="3" data-zoomable="yes" data-img-zoom-url="images/tild3333-6235-4063-b931-363666633462__20190507_074928-01.jpeg" data-original="images/tild3333-6235-4063-b931-363666633462__20190507_074928-01.jpeg" style="background: url('images/tild3333-6235-4063-b931-363666633462__-__resizeb__20x__20190507_074928-01.jpeg') center center no-repeat; background-size:cover; height:18.75vw;">
<meta itemprop="image" content="images/tild3333-6235-4063-b931-363666633462__20190507_074928-01.jpeg">
</div>
</div>
</div>
</div>
<script type="text/javascript"> $(document).ready(function() { setTimeout(function() { t552_init('261012128','0.75'); }, 500); }); $('.t552').bind('displayChanged',function(){ t552_init('261012128','0.75'); });</script>
</div>
<div id="rec261020876" class="r t-rec t-rec_pb_60" style="padding-bottom:60px;background-color:#000114; " data-animationappear="off" data-record-type="396" data-bg-color="#000114">
<!-- T396 -->
<style>#rec261020876 .t396__artboard{height: 550px;background-color: #000114;}#rec261020876 .t396__filter{height: 550px;}#rec261020876 .t396__carrier{height: 550px;background-position: center center;background-attachment: scroll;background-size:cover;background-repeat:no-repeat;}@media screen and (max-width: 1199px){#rec261020876 .t396__artboard{}#rec261020876 .t396__filter{}#rec261020876 .t396__carrier{background-attachment:scroll;}}@media screen and (max-width: 959px){}@media screen and (max-width: 639px){}@media screen and (max-width: 479px){}#rec261020876 .tn-elem[data-elem-id="1470210033144"]{z-index:4;top: 60px;left: calc(50% - 600px + -100px);width:700px;}#rec261020876 .tn-elem[data-elem-id="1470210033144"] .tn-atom{background-position:center center;border-color:transparent;border-style:solid;}@media screen and (max-width: 1199px){}@media screen and (max-width: 959px){}@media screen and (max-width: 639px){}@media screen and (max-width: 479px){}#rec261020876 .tn-elem[data-elem-id="1607934163584"]{z-index:5;top: 60px;left: calc(50% - 600px + 600px);width:700px;}#rec261020876 .tn-elem[data-elem-id="1607934163584"] .tn-atom{background-position:center center;border-color:transparent;border-style:solid;}@media screen and (max-width: 1199px){}@media screen and (max-width: 959px){}@media screen and (max-width: 639px){}@media screen and (max-width: 479px){}</style>
<div class='t396'>
<div class="t396__artboard" data-artboard-recid="261020876" data-artboard-height="550" data-artboard-height_vh="" data-artboard-valign="center" data-artboard-ovrflw="" >
<div class="t396__carrier" data-artboard-recid="261020876"></div>
<div class="t396__filter" data-artboard-recid="261020876"></div>
<div class='t396__elem tn-elem tn-elem__2610208761470210033144' data-elem-id='1470210033144' data-elem-type='image' data-field-top-value="60" data-field-left-value="-100" data-field-width-value="700" data-field-axisy-value="top" data-field-axisx-value="left" data-field-container-value="grid" data-field-topunits-value="px" data-field-leftunits-value="px" data-field-heightunits-value="" data-field-widthunits-value="px" >
<div class='tn-atom' > <img class='tn-atom__img t-img' data-original='images/tild3663-6162-4537-b566-333564393635__20190508_072143-01.jpeg' imgfield='tn_img_1470210033144'> </div>
</div>
<div class='t396__elem tn-elem tn-elem__2610208761607934163584' data-elem-id='1607934163584' data-elem-type='image' data-field-top-value="60" data-field-left-value="600" data-field-width-value="700" data-field-axisy-value="top" data-field-axisx-value="left" data-field-container-value="grid" data-field-topunits-value="px" data-field-leftunits-value="px" data-field-heightunits-value="" data-field-widthunits-value="px" >
<div class='tn-atom' > <img class='tn-atom__img t-img' data-original='images/tild3765-6137-4035-b334-316565643064__20190508_090215-01.jpeg' imgfield='tn_img_1607934163584'> </div>
</div>
</div>
</div>
<script>$( document ).ready(function() { t396_init('261020876');
});
</script><!-- /T396 -->
</div>
<div id="rec261017880" class="r t-rec" style=" " data-animationappear="off" data-record-type="18" >
<!-- cover -->
<div class="t-cover" id="recorddiv261017880" bgimgfield="img" style="height:100vh; background-image:url('images/tild3566-6533-4234-a461-333735346334__-__resize__20x__DSC03136-03j.jpeg');" >
<div class="t-cover__carrier" id="coverCarry261017880" data-content-cover-id="261017880" data-content-cover-bg="images/tild3566-6533-4234-a461-333735346334__dsc03136-03j.jpeg" data-content-cover-height="100vh" data-content-cover-parallax="fixed" style="height:100vh; "></div>
<div class="t-cover__filter" style="height:100vh;background-image: -moz-linear-gradient(top, rgba(0,0,0,0.40), rgba(0,0,0,0.20));background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.40), rgba(0,0,0,0.20));background-image: -o-linear-gradient(top, rgba(0,0,0,0.40), rgba(0,0,0,0.20));background-image: -ms-linear-gradient(top, rgba(0,0,0,0.40), rgba(0,0,0,0.20));background-image: linear-gradient(top, rgba(0,0,0,0.40), rgba(0,0,0,0.20));filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#99000000', endColorstr='#cc000000');"></div>
<div class="t-container">
<div class="t-col t-col_12 ">
<div class="t-cover__wrapper t-valign_middle" style="height:100vh;">
<div class="t001 t-align_center">
<div class="t001__wrapper" data-hook-content="covercontent">
<div class="t001__title t-title t-title_xl" style="" field="title">Tokyo</div>
<span class="space"></span>
</div>
</div>
</div>
</div>
</div>
<!-- arrow -->
<div class="t-cover__arrow">
<div class="t-cover__arrow-wrapper t-cover__arrow-wrapper_animated">
<div class="t-cover__arrow_mobile">
<svg class="t-cover__arrow-svg" style="fill:#ffffff;" x="0px" y="0px" width="38.417px" height="18.592px" viewBox="0 0 38.417 18.592" style="enable-background:new 0 0 38.417 18.592;">
<g>
<path d="M19.208,18.592c-0.241,0-0.483-0.087-0.673-0.261L0.327,1.74c-0.408-0.372-0.438-1.004-0.066-1.413c0.372-0.409,1.004-0.439,1.413-0.066L19.208,16.24L36.743,0.261c0.411-0.372,1.042-0.342,1.413,0.066c0.372,0.408,0.343,1.041-0.065,1.413L19.881,18.332C19.691,18.505,19.449,18.592,19.208,18.592z"/>
</g>
</svg>
</div>
</div>
</div>
<!-- arrow -->
</div>
</div>
<div id="rec261019940" class="r t-rec t-rec_pt_30" style="padding-top:30px; " data-record-type="169" >
<!-- t155 -->
<div class="t155">
<div class="t-container">
<div class="t-row">
<div class="t-col t-col_6">
<div class="t-bgimg" bgimgfield="gi_img__0" data-zoomable="yes" data-img-zoom-url="images/tild6339-6230-4766-b161-333433643431__20190508_151843-01.jpeg" data-original="images/tild6339-6230-4766-b161-333433643431__20190508_151843-01.jpeg" style="background: url('images/tild6339-6230-4766-b161-333433643431__-__resizeb__20x__20190508_151843-01.jpeg') center center no-repeat; background-size:cover; height:660px; margin-bottom:20px;" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild6339-6230-4766-b161-333433643431__20190508_151843-01.jpeg">
</div>
</div>
<div class="t-col t-col_6">
<div class="t-bgimg" bgimgfield="gi_img__1" data-zoomable="yes" data-img-zoom-url="images/tild6435-3465-4166-b235-306331346563__dsc03129-01.jpeg" data-original="images/tild6435-3465-4166-b235-306331346563__dsc03129-01.jpeg" style="width:100%; background: url('images/tild6435-3465-4166-b235-306331346563__-__resizeb__20x__DSC03129-01.jpeg') center center no-repeat; background-size:cover; height:320px; margin-bottom:20px;" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild6435-3465-4166-b235-306331346563__dsc03129-01.jpeg">
</div>
<div class="t-bgimg" bgimgfield="gi_img__2" data-zoomable="yes" data-img-zoom-url="images/tild6231-3939-4166-a234-333339373033__20190510_185622-01.jpeg" data-original="images/tild6231-3939-4166-a234-333339373033__20190510_185622-01.jpeg" style="width:100%; background: url('images/tild6231-3939-4166-a234-333339373033__-__resizeb__20x__20190510_185622-01.jpeg') center center no-repeat; background-size:cover; height:320px; margin-bottom:20px;" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild6231-3939-4166-a234-333339373033__20190510_185622-01.jpeg">
</div>
</div>
</div>
</div>
</div>
</div>
<div id="rec261035183" class="r t-rec t-rec_pt_0 t-rec_pb_0" style="padding-top:0px;padding-bottom:0px;background-color:#1a0801; " data-animationappear="off" data-record-type="662" data-bg-color="#1a0801">
<!-- t662 -->
<div class="t662">
<div class="t662__container t-container_100 ">
<div class="t662__row t662__row_indent-20px t-row">
<div class="t662__tile t662__tile_lg t662__tile_lg_left" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild3263-3165-4763-b738-316630316437__dsc03191-01.jpeg">
<div class="t662__bgimg t-bgimg" bgimgfield="gi_img__0" data-zoomable="yes" data-img-zoom-url="images/tild3263-3165-4763-b738-316630316437__dsc03191-01.jpeg" data-original="images/tild3263-3165-4763-b738-316630316437__dsc03191-01.jpeg" style="background: url('images/tild3263-3165-4763-b738-316630316437__-__resizeb__20x__DSC03191-01.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
<div class="t662__tile t662__tile_sm t662__tile_sm_right" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild3266-3833-4439-a165-363235653533__20190509_115720-01.jpeg">
<div class="t662__bgimg t-bgimg" bgimgfield="gi_img__1" data-zoomable="yes" data-img-zoom-url="images/tild3266-3833-4439-a165-363235653533__20190509_115720-01.jpeg" data-original="images/tild3266-3833-4439-a165-363235653533__20190509_115720-01.jpeg" style="background: url('images/tild3266-3833-4439-a165-363235653533__-__resizeb__20x__20190509_115720-01.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
</div>
</div>
</div>
<!--[if (IE 8)|(IE 9)]>
<style>.t662__tile_sm .t662__bgimg { padding-bottom: 137%;
}
</style>
<![endif]-->
</div>
<div id="rec261036951" class="r t-rec t-rec_pt_0 t-rec_pb_15" style="padding-top:0px;padding-bottom:15px;background-color:#1a0801; " data-animationappear="off" data-record-type="667" data-bg-color="#1a0801">
<!-- t667 -->
<div class="t667">
<div class="t667__container t-container ">
<div class="t667__row t667__row_indent-20px t-row">
<div class="t667__tile t667__tile_left" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild3831-3762-4333-b638-653264623634__20190509_113613-01.jpeg">
<div class="t667__bgimg t667__bgimg_1-1 t-bgimg" bgimgfield="gi_img__0" data-zoomable="yes" data-img-zoom-url="images/tild3831-3762-4333-b638-653264623634__20190509_113613-01.jpeg" data-original="images/tild3831-3762-4333-b638-653264623634__20190509_113613-01.jpeg" style="background: url('images/tild3831-3762-4333-b638-653264623634__-__resizeb__20x__20190509_113613-01.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
<div class="t667__tile t667__tile_right" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild3330-3736-4237-a238-633636663535__20190509_105657-01.jpeg">
<div class="t667__bgimg t667__bgimg_1-1 t-bgimg" bgimgfield="gi_img__1" data-zoomable="yes" data-img-zoom-url="images/tild3330-3736-4237-a238-633636663535__20190509_105657-01.jpeg" data-original="images/tild3330-3736-4237-a238-633636663535__20190509_105657-01.jpeg" style="background: url('images/tild3330-3736-4237-a238-633636663535__-__resizeb__20x__20190509_105657-01.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
</div>
</div>
</div>
</div>
<div id="rec261038751" class="r t-rec t-rec_pt_0 t-rec_pb_0" style="padding-top:0px;padding-bottom:0px; " data-animationappear="off" data-record-type="661" >
<!-- t661 -->
<div class="t661">
<div class="t661__container t-container_100 ">
<div class="t661__row t661__row_indent-20px t-row" >
<div class="t661__tile" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild6164-3235-4966-b962-623364306631__20190509_150342-01_-.jpeg">
<div class="t661__bgimg t-bgimg t661__bgimg_16-9" bgimgfield="gi_img__0" data-zoomable="yes" data-img-zoom-url="images/tild6164-3235-4966-b962-623364306631__20190509_150342-01_-.jpeg" data-original="images/tild6164-3235-4966-b962-623364306631__20190509_150342-01_-.jpeg" style="background: url('images/tild6164-3235-4966-b962-623364306631__-__resizeb__20x__20190509_150342-01_-.jpeg') center center no-repeat; background-size:cover;"></div>
</div>
</div>
<div class="t661__row t661__row_indent-20px t-row" >
<div class="t661__tile" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild3438-3539-4231-a331-353438313738__20190509_151520-01.jpeg">
<div class="t661__bgimg t661__bgimg_3-2 t-bgimg" bgimgfield="gi_img__1" data-zoomable="yes" data-img-zoom-url="images/tild3438-3539-4231-a331-353438313738__20190509_151520-01.jpeg" data-original="images/tild3438-3539-4231-a331-353438313738__20190509_151520-01.jpeg" style="background: url('images/tild3438-3539-4231-a331-353438313738__-__resizeb__20x__20190509_151520-01.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
<div class="t661__gap"></div>
<div class="t661__tile" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild6330-3164-4366-b863-623534646365__20190509_160544-01.jpeg">
<div class="t661__bgimg t661__bgimg_3-2 t-bgimg" bgimgfield="gi_img__2" data-zoomable="yes" data-img-zoom-url="images/tild6330-3164-4366-b863-623534646365__20190509_160544-01.jpeg" data-original="images/tild6330-3164-4366-b863-623534646365__20190509_160544-01.jpeg" style="background: url('images/tild6330-3164-4366-b863-623534646365__-__resizeb__20x__20190509_160544-01.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
<div class="t661__gap"></div>
<div class="t661__tile" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild6165-6462-4266-b465-336334373039__20190509_160103-01.jpeg">
<div class="t661__bgimg t661__bgimg_3-2 t-bgimg" bgimgfield="gi_img__3" data-zoomable="yes" data-img-zoom-url="images/tild6165-6462-4266-b465-336334373039__20190509_160103-01.jpeg" data-original="images/tild6165-6462-4266-b465-336334373039__20190509_160103-01.jpeg" style="background: url('images/tild6165-6462-4266-b465-336334373039__-__resizeb__20x__20190509_160103-01.jpeg') center center no-repeat;background-size: cover;"></div>
</div>
</div>
</div>
</div>
</div>
<div id="rec261042574" class="r t-rec t-rec_pt_60 t-rec_pb_60" style="padding-top:60px;padding-bottom:60px;background-color:#010417; " data-record-type="170" data-bg-color="#010417">
<!-- t156 -->
<div class="t156">
<div class="t-container">
<div class="t-col t-col_12">
<table style="margin:0 auto; padding:0;">
<tr>
<td itemscope itemtype="http://schema.org/ImageObject">
<img class="t-img" imgfield="gi_img__0" src="images/tild3039-3761-4038-b533-363464316138__-__empty__20190508_183535-01.jpeg" data-original="images/tild3039-3761-4038-b533-363464316138__20190508_183535-01.jpeg" data-zoom-target="0" data-zoomable="yes" data-img-zoom-url="images/tild3039-3761-4038-b533-363464316138__20190508_183535-01.jpeg" style="width:100%;" >
<meta itemprop="image" content="images/tild3039-3761-4038-b533-363464316138__20190508_183535-01.jpeg">
</td>
<td style="width:20px;"></td>
<td itemscope itemtype="http://schema.org/ImageObject">
<img class="t-img" imgfield="gi_img__1" src="images/tild3533-3666-4963-b939-316239626466__-__empty__20190508_190032-01.jpeg" data-original="images/tild3533-3666-4963-b939-316239626466__20190508_190032-01.jpeg" data-zoom-target="1" data-zoomable="yes" data-img-zoom-url="images/tild3533-3666-4963-b939-316239626466__20190508_190032-01.jpeg" style="width:100%;" >
<meta itemprop="image" content="images/tild3533-3666-4963-b939-316239626466__20190508_190032-01.jpeg">
</td>
<td style="width:20px;"></td>
<td itemscope itemtype="http://schema.org/ImageObject">
<img class="t-img" imgfield="gi_img__2" src="images/tild6162-6161-4134-a333-623030316435__-__empty__20190508_183842-01.jpeg" data-original="images/tild6162-6161-4134-a333-623030316435__20190508_183842-01.jpeg" data-zoom-target="2" data-zoomable="yes" data-img-zoom-url="images/tild6162-6161-4134-a333-623030316435__20190508_183842-01.jpeg" style="width:100%;" >
<meta itemprop="image" content="images/tild6162-6161-4134-a333-623030316435__20190508_183842-01.jpeg">
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
<div id="rec261046020" class="r t-rec t-rec_pt_30" style="padding-top:30px;background-color:#010417; " data-record-type="170" data-bg-color="#010417">
<!-- t156 -->
<div class="t156">
<div class="t-container">
<div class="t-col t-col_12">
<table style="margin:0 auto; padding:0;">
<tr>
<td itemscope itemtype="http://schema.org/ImageObject">
<img class="t-img" imgfield="gi_img__0" src="images/tild3133-6635-4663-b266-363465346464__-__empty__DSC03152-01.jpeg" data-original="images/tild3133-6635-4663-b266-363465346464__dsc03152-01.jpeg" data-zoom-target="0" data-zoomable="yes" data-img-zoom-url="images/tild3133-6635-4663-b266-363465346464__dsc03152-01.jpeg" style="width:100%;" >
<meta itemprop="image" content="images/tild3133-6635-4663-b266-363465346464__dsc03152-01.jpeg">
</td>
<td style="width:20px;"></td>
<td itemscope itemtype="http://schema.org/ImageObject">
<img class="t-img" imgfield="gi_img__1" src="images/tild6430-3132-4038-a332-353430646633__-__empty__20190509_234045-01.jpeg" data-original="images/tild6430-3132-4038-a332-353430646633__20190509_234045-01.jpeg" data-zoom-target="1" data-zoomable="yes" data-img-zoom-url="images/tild6430-3132-4038-a332-353430646633__20190509_234045-01.jpeg" style="width:100%;" >
<meta itemprop="image" content="images/tild6430-3132-4038-a332-353430646633__20190509_234045-01.jpeg">
</td>
<td style="width:20px;"></td>
<td itemscope itemtype="http://schema.org/ImageObject">
<img class="t-img" imgfield="gi_img__2" src="images/tild3133-3337-4363-b832-663034383361__-__empty__20190509_225434-01.jpeg" data-original="images/tild3133-3337-4363-b832-663034383361__20190509_225434-01.jpeg" data-zoom-target="2" data-zoomable="yes" data-img-zoom-url="images/tild3133-3337-4363-b832-663034383361__20190509_225434-01.jpeg" style="width:100%;" >
<meta itemprop="image" content="images/tild3133-3337-4363-b832-663034383361__20190509_225434-01.jpeg">
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
<div id="rec261046715" class="r t-rec t-rec_pt_75 t-rec_pb_0" style="padding-top:75px;padding-bottom:0px;background-color:#d6dee8; " data-record-type="182" data-bg-color="#d6dee8">
<!-- T167 -->
<div class="t167">
<div class="t-container">
<div class="t-prefix_2 t-col t-col_10">
<div class="t-col t-col_5 t167__imgblock" itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop="image" content="images/tild3036-3566-4332-a136-353832343231__20190511_105836-01.jpeg">
<img class="t167__img t-img" src="images/tild3036-3566-4332-a136-353832343231__-__empty__20190511_105836-01.jpeg" data-original="images/tild3036-3566-4332-a136-353832343231__20190511_105836-01.jpeg" imgfield="img" data-tu-max-width="920" data-tu-max-height="920" />
<div class="t167__imgdescr t-descr" style="" field="imgdescr" itemprop="description"></div>
</div>
<div class="t-col t-col_8" style="margin:0; float:none; display:inherit;">
<div field="text" class="t167__text t-text t-text_md" style="">
<div style="font-size:22px;" data-customstyle="yes">Japan in two words: "respect and compactness". I would like to add another 3rd word, but my mother reads me. <br />Tokyo - well-developed and high organized city with 40 cm distance to your neighbor's window. But there is fun as well - in particular, riding through the city central on karting in Pokemon suits.<br /><br />Well, Japan is worth seeing, because it is an another world. Kyoto, Fuji, I'll return.<br /><br />@ Tokyo, Japan<br /><br /></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="rec261064840" class="r t-rec" style=" " data-record-type="270" >
<div class="t270"></div>
<script>$(document).ready(function() { var hash = window.location.hash; setTimeout(function() { var curPath = window.location.pathname; var curFullPath = window.location.origin + curPath; $('a[href^="#"]:not([href="#"],.carousel-control,.t-carousel__control,[href^="#price"],[href^="#popup"],[href^="#prodpopup"],[href^="#order"],a[href^="#!"]),a[href^="' + curPath + '#"]:not(a[href*="#!/tproduct"],[href*="#popup"]),a[href^="' + curFullPath + '#"]:not(a[href*="#!/tproduct"],[href*="#popup"])').click(function(e) { e.preventDefault(); var hash = this.hash.trim(); t270_scroll(hash, -3); }); if($(".js-store").length > 0 || $(".js-feed").length > 0) { t270_scroll(hash, -3, 1); } }, 500);
});
</script>
</div>
<!--footer-->
<div id="t-footer" class="t-records" data-hook="blocks-collection-content-node" data-tilda-project-id="3370453" data-tilda-page-id="15925398" data-tilda-formskey="c5c6f5da1d1f7103258c645ffd5026e5" >
<div id="rec260431509" class="r t-rec t-rec_pt_0 t-rec_pb_0" style="padding-top:0px;padding-bottom:0px;background-color:#1a1919; " data-animationappear="off" data-record-type="389" data-bg-color="#1a1919">
<!-- T389 -->
<div class="t389" id="t-footer_260431509">
<div class="t389__maincontainer" style="height: 70px;">
<div class="t389__content">
<div class="t389__col t389__col_hiddenmobile">
<div class="t389__typo t389__copyright t-name t-name_xs" field="text" style="color: #ffffff;"> </div>
</div>
<div class="t389__col t389__col_center t-align_center">
<div class="t389__centercontainer">
<ul class="t389__list">
<li class="t389__list_item t-name t-name_xs"><a class="t389__typo" style="color: #ffffff;" href="#" data-menu-item-number="1"></a></li>
<li class="t389__list_item t-name t-name_xs"><a class="t389__typo" style="color: #ffffff;" href="#" data-menu-item-number="2"></a></li>
<li class="t389__list_item t-name t-name_xs"><a class="t389__typo" style="color: #ffffff;" href="#" data-menu-item-number="3"></a></li>
<li class="t389__list_item t-name t-name_xs"><a class="t389__typo" style="color: #ffffff;" href="#" data-menu-item-number="4"></a></li>
</ul>
</div>
</div>
<div class="t389__col t389__col_mobile">
<div class="t389__typo t389__copyright t-name t-name_xs" field="text" style="color: #ffffff;"> </div>
</div>
<div class="t389__col">
<div class="t389__scroll t-align_right">
<a class="t389__typo t-name t-name_xs t389_scrolltop" style="color: #ffffff;" href="javascript:t389_scrollToTop();">
Back to top
<span class="t389__icon">
<svg width="5" height="17" viewBox="0 0 6 20">
<path fill="#ffffff" d="M5.78 3.85L3.12.28c-.14-.14-.3-.14-.43 0L.03 3.85c-.14.13-.08.27.13.27h1.72V20h2.06V4.12h1.72c.15 0 .22-.07.19-.17a.26.26 0 00-.07-.1z" fill-rule="evenodd"/>
</svg>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--/footer-->
</div>
<!--/allrecords-->
</body>
</html>