kupos-ui-components-lib 9.6.10 → 9.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/styles.css CHANGED
@@ -63,6 +63,9 @@
63
63
  .right-\[0px\] {
64
64
  right: 0px;
65
65
  }
66
+ .right-\[18px\] {
67
+ right: 18px;
68
+ }
66
69
  .-bottom-\[9\%\] {
67
70
  bottom: calc(9% * -1);
68
71
  }
@@ -75,6 +78,9 @@
75
78
  .-bottom-\[36px\] {
76
79
  bottom: calc(36px * -1);
77
80
  }
81
+ .bottom-\[11px\] {
82
+ bottom: 11px;
83
+ }
78
84
  .bottom-\[35px\] {
79
85
  bottom: 35px;
80
86
  }
@@ -189,12 +195,21 @@
189
195
  .mt-\[5px\] {
190
196
  margin-top: 5px;
191
197
  }
198
+ .mt-\[6px\] {
199
+ margin-top: 6px;
200
+ }
201
+ .mt-\[8px\] {
202
+ margin-top: 8px;
203
+ }
192
204
  .mt-\[10px\] {
193
205
  margin-top: 10px;
194
206
  }
195
207
  .mt-\[13px\] {
196
208
  margin-top: 13px;
197
209
  }
210
+ .mt-\[14px\] {
211
+ margin-top: 14px;
212
+ }
198
213
  .mt-\[15px\] {
199
214
  margin-top: 15px;
200
215
  }
@@ -234,6 +249,9 @@
234
249
  .mb-\[5px\] {
235
250
  margin-bottom: 5px;
236
251
  }
252
+ .mb-\[6px\] {
253
+ margin-bottom: 6px;
254
+ }
237
255
  .mb-\[8px\] {
238
256
  margin-bottom: 8px;
239
257
  }
@@ -279,6 +297,9 @@
279
297
  .ml-\[10px\] {
280
298
  margin-left: 10px;
281
299
  }
300
+ .ml-\[12px\] {
301
+ margin-left: 12px;
302
+ }
282
303
  .ml-\[50px\] {
283
304
  margin-left: 50px;
284
305
  }
@@ -372,6 +393,9 @@
372
393
  .w-\[20px\] {
373
394
  width: 20px;
374
395
  }
396
+ .w-\[30px\] {
397
+ width: 30px;
398
+ }
375
399
  .w-\[50\%\] {
376
400
  width: 50%;
377
401
  }
@@ -396,6 +420,12 @@
396
420
  .w-\[115px\] {
397
421
  width: 115px;
398
422
  }
423
+ .w-\[120px\] {
424
+ width: 120px;
425
+ }
426
+ .w-\[130px\] {
427
+ width: 130px;
428
+ }
399
429
  .w-\[150px\] {
400
430
  width: 150px;
401
431
  }
@@ -434,6 +464,12 @@
434
464
  .max-w-\[165px\] {
435
465
  max-width: 165px;
436
466
  }
467
+ .max-w-\[220px\] {
468
+ max-width: 220px;
469
+ }
470
+ .max-w-full {
471
+ max-width: 100%;
472
+ }
437
473
  .min-w-\[75px\] {
438
474
  min-width: 75px;
439
475
  }
@@ -476,9 +512,15 @@
476
512
  .grid-cols-2 {
477
513
  grid-template-columns: repeat(2, minmax(0, 1fr));
478
514
  }
515
+ .grid-cols-4 {
516
+ grid-template-columns: repeat(4, minmax(0, 1fr));
517
+ }
479
518
  .grid-cols-\[0\.8fr_auto_26\%_1fr\] {
480
519
  grid-template-columns: 0.8fr auto 26% 1fr;
481
520
  }
521
+ .grid-cols-\[1\.3fr_2fr_1\.2fr\] {
522
+ grid-template-columns: 1.3fr 2fr 1.2fr;
523
+ }
482
524
  .grid-cols-\[1\.5fr_1fr_auto\] {
483
525
  grid-template-columns: 1.5fr 1fr auto;
484
526
  }
@@ -509,6 +551,9 @@
509
551
  .items-start {
510
552
  align-items: flex-start;
511
553
  }
554
+ .items-stretch {
555
+ align-items: stretch;
556
+ }
512
557
  .justify-between {
513
558
  justify-content: space-between;
514
559
  }
@@ -551,6 +596,12 @@
551
596
  .gap-\[14px\] {
552
597
  gap: 14px;
553
598
  }
599
+ .gap-\[16px\] {
600
+ gap: 16px;
601
+ }
602
+ .gap-\[20px\] {
603
+ gap: 20px;
604
+ }
554
605
  .gap-x-\[2\%\] {
555
606
  -moz-column-gap: 2%;
556
607
  column-gap: 2%;
@@ -559,18 +610,29 @@
559
610
  -moz-column-gap: 8px;
560
611
  column-gap: 8px;
561
612
  }
613
+ .truncate {
614
+ overflow: hidden;
615
+ text-overflow: ellipsis;
616
+ white-space: nowrap;
617
+ }
562
618
  .overflow-hidden {
563
619
  overflow: hidden;
564
620
  }
565
621
  .overflow-y-hidden {
566
622
  overflow-y: hidden;
567
623
  }
624
+ .rounded-\[4px\] {
625
+ border-radius: 4px;
626
+ }
568
627
  .rounded-\[8px\] {
569
628
  border-radius: 8px;
570
629
  }
571
630
  .rounded-\[10px\] {
572
631
  border-radius: 10px;
573
632
  }
633
+ .rounded-\[12px\] {
634
+ border-radius: 12px;
635
+ }
574
636
  .rounded-\[14px\] {
575
637
  border-radius: 14px;
576
638
  }
@@ -620,6 +682,10 @@
620
682
  border-top-style: var(--tw-border-style);
621
683
  border-top-width: 8px;
622
684
  }
685
+ .border-r {
686
+ border-right-style: var(--tw-border-style);
687
+ border-right-width: 1px;
688
+ }
623
689
  .border-r-8 {
624
690
  border-right-style: var(--tw-border-style);
625
691
  border-right-width: 8px;
@@ -648,6 +714,10 @@
648
714
  border-bottom-style: var(--tw-border-style);
649
715
  border-bottom-width: 8px;
650
716
  }
717
+ .border-l {
718
+ border-left-style: var(--tw-border-style);
719
+ border-left-width: 1px;
720
+ }
651
721
  .border-l-8 {
652
722
  border-left-style: var(--tw-border-style);
653
723
  border-left-width: 8px;
@@ -664,6 +734,9 @@
664
734
  --tw-border-style: none;
665
735
  border-style: none;
666
736
  }
737
+ .border-\[\#363c48\] {
738
+ border-color: #363c48;
739
+ }
667
740
  .border-\[\#ccc\] {
668
741
  border-color: #ccc;
669
742
  }
@@ -682,9 +755,15 @@
682
755
  .border-l-transparent {
683
756
  border-left-color: transparent;
684
757
  }
758
+ .bg-\[\#0C1421\] {
759
+ background-color: #0C1421;
760
+ }
685
761
  .bg-\[\#E6E6E6\] {
686
762
  background-color: #E6E6E6;
687
763
  }
764
+ .bg-\[\#FF8F45\] {
765
+ background-color: #FF8F45;
766
+ }
688
767
  .bg-\[\#FFF2F2\] {
689
768
  background-color: #FFF2F2;
690
769
  }
@@ -725,6 +804,9 @@
725
804
  .p-\[10px_15px\] {
726
805
  padding: 10px 15px;
727
806
  }
807
+ .p-\[14px\] {
808
+ padding: 14px;
809
+ }
728
810
  .p-\[15px\] {
729
811
  padding: 15px;
730
812
  }
@@ -758,9 +840,15 @@
758
840
  .px-\[15px\] {
759
841
  padding-inline: 15px;
760
842
  }
843
+ .px-\[16px\] {
844
+ padding-inline: 16px;
845
+ }
761
846
  .px-\[20px\] {
762
847
  padding-inline: 20px;
763
848
  }
849
+ .py-\[2px\] {
850
+ padding-block: 2px;
851
+ }
764
852
  .py-\[4px\] {
765
853
  padding-block: 4px;
766
854
  }
@@ -785,6 +873,12 @@
785
873
  .pt-\[6px\] {
786
874
  padding-top: 6px;
787
875
  }
876
+ .pt-\[10px\] {
877
+ padding-top: 10px;
878
+ }
879
+ .pt-\[14px\] {
880
+ padding-top: 14px;
881
+ }
788
882
  .pt-\[20px\] {
789
883
  padding-top: 20px;
790
884
  }
@@ -809,6 +903,9 @@
809
903
  .pr-\[22px\] {
810
904
  padding-right: 22px;
811
905
  }
906
+ .pb-\[6px\] {
907
+ padding-bottom: 6px;
908
+ }
812
909
  .pb-\[7px\] {
813
910
  padding-bottom: 7px;
814
911
  }
@@ -875,6 +972,12 @@
875
972
  .text-\[22px\] {
876
973
  font-size: 22px;
877
974
  }
975
+ .text-\[26px\] {
976
+ font-size: 26px;
977
+ }
978
+ .text-\[28px\] {
979
+ font-size: 28px;
980
+ }
878
981
  .text-\[42px\] {
879
982
  font-size: 42px;
880
983
  }
@@ -882,6 +985,10 @@
882
985
  --tw-leading: 1.3;
883
986
  line-height: 1.3;
884
987
  }
988
+ .leading-\[14px\] {
989
+ --tw-leading: 14px;
990
+ line-height: 14px;
991
+ }
885
992
  .leading-\[20px\] {
886
993
  --tw-leading: 20px;
887
994
  line-height: 20px;
@@ -902,6 +1009,10 @@
902
1009
  --tw-leading: 1;
903
1010
  line-height: 1;
904
1011
  }
1012
+ .font-\[9px\] {
1013
+ --tw-font-weight: 9px;
1014
+ font-weight: 9px;
1015
+ }
905
1016
  .font-\[14px\] {
906
1017
  --tw-font-weight: 14px;
907
1018
  font-weight: 14px;
@@ -923,12 +1034,27 @@
923
1034
  .whitespace-nowrap {
924
1035
  white-space: nowrap;
925
1036
  }
1037
+ .text-\[\#4a4a4a\] {
1038
+ color: #4a4a4a;
1039
+ }
926
1040
  .text-\[\#9f9f9f\] {
927
1041
  color: #9f9f9f;
928
1042
  }
1043
+ .text-\[\#666\] {
1044
+ color: #666;
1045
+ }
1046
+ .text-\[\#171717\] {
1047
+ color: #171717;
1048
+ }
1049
+ .text-\[\#272727\] {
1050
+ color: #272727;
1051
+ }
929
1052
  .text-\[\#464647\] {
930
1053
  color: #464647;
931
1054
  }
1055
+ .text-\[\#FF8F45\] {
1056
+ color: #FF8F45;
1057
+ }
932
1058
  .text-\[\#c0c0c0\] {
933
1059
  color: #c0c0c0;
934
1060
  }
@@ -944,6 +1070,9 @@
944
1070
  .text-\[\#fff\] {
945
1071
  color: #fff;
946
1072
  }
1073
+ .text-\[red\] {
1074
+ color: red;
1075
+ }
947
1076
  .capitalize {
948
1077
  text-transform: capitalize;
949
1078
  }
package/dist/types.d.ts CHANGED
@@ -108,6 +108,7 @@ export interface ServiceItemProps {
108
108
  frazaIcon?: string;
109
109
  specialDeparture?: string;
110
110
  fireIcon?: string;
111
+ cancelTicketIcon?: string;
111
112
  [key: string]: string | Record<string, string | undefined> | undefined;
112
113
  };
113
114
  useLottieFor?: string[];
@@ -13,6 +13,7 @@ interface ExpandedDropdownProps {
13
13
  isSoldOut?: boolean;
14
14
  ladiesBookedSeats?: string;
15
15
  isDpEnabled?: boolean;
16
+ renderIcon?: any;
16
17
  }
17
- declare function ExpandedDropdown({ serviceItem, isPeru, translation, getAnimationIcon, isChangeTicket, isSoldOut, ladiesBookedSeats, isDpEnabled, }: ExpandedDropdownProps): React.ReactElement;
18
+ declare function ExpandedDropdown({ serviceItem, isPeru, translation, getAnimationIcon, isChangeTicket, isSoldOut, ladiesBookedSeats, isDpEnabled, renderIcon, }: ExpandedDropdownProps): React.ReactElement;
18
19
  export default ExpandedDropdown;
@@ -1,6 +1,6 @@
1
1
  import React from "react";
2
2
  import LottiePlayer from "../../assets/LottiePlayer";
3
- function ExpandedDropdown({ serviceItem, isPeru = false, translation = {}, getAnimationIcon, isChangeTicket = false, isSoldOut, ladiesBookedSeats, isDpEnabled, }) {
3
+ function ExpandedDropdown({ serviceItem, isPeru = false, translation = {}, getAnimationIcon, isChangeTicket = false, isSoldOut, ladiesBookedSeats, isDpEnabled, renderIcon, }) {
4
4
  const hasPetInfo = serviceItem.pet_seat_info &&
5
5
  Object.keys(serviceItem.pet_seat_info).length > 0;
6
6
  return (React.createElement("div", { className: "px-[15px] pt-[26px] pb-[14px] -mt-[16px] pt-[35px] relative -z-9", style: {
@@ -22,7 +22,9 @@ function ExpandedDropdown({ serviceItem, isPeru = false, translation = {}, getAn
22
22
  " horas antes"),
23
23
  " ",
24
24
  "de la salida del bus. El monto ser\u00E1 reembolsado a tu billetera kupospay."))) : (React.createElement("div", { className: "flex gap-[8px] text-[13.33px]" },
25
- React.createElement("span", { style: { marginTop: "2px" } }, "\u2022"),
25
+ React.createElement("span", { style: { marginTop: "2px" } },
26
+ " ",
27
+ React.createElement(LottiePlayer, { animationData: getAnimationIcon("flexibleIcon"), width: "20px", height: "20px" })),
26
28
  React.createElement("span", null,
27
29
  React.createElement("span", null,
28
30
  React.createElement("span", { className: "bold-text" }, "Pasaje flexible:"),
@@ -33,7 +35,7 @@ function ExpandedDropdown({ serviceItem, isPeru = false, translation = {}, getAn
33
35
  React.createElement("span", null, translation === null || translation === void 0 ? void 0 : translation.petFriendly)))),
34
36
  ladiesBookedSeats &&
35
37
  String(ladiesBookedSeats).trim() !== "" &&
36
- isDpEnabled === true && (React.createElement("div", { className: "flex gap-[6px]" },
38
+ isDpEnabled === true && (React.createElement("div", { className: "flex gap-[6px] items-center" },
37
39
  React.createElement("span", { style: { marginTop: "2px" } },
38
40
  " ",
39
41
  React.createElement(LottiePlayer, { animationData: getAnimationIcon("femaaleAnimation"), width: "20px", height: "20px" })),
@@ -41,7 +43,7 @@ function ExpandedDropdown({ serviceItem, isPeru = false, translation = {}, getAn
41
43
  React.createElement("span", { className: "bold-text" }, "Asientos para damas:"),
42
44
  " Esta empresa cuenta con asientos recomendados para mujeres."))),
43
45
  React.createElement("div", { className: "flex gap-[8px] text-[13.33px]" },
44
- React.createElement("span", { style: { marginTop: "2px" } }, "\u2022"),
46
+ React.createElement("span", null, renderIcon("cancelTicketIcon", "14px")),
45
47
  React.createElement("span", null,
46
48
  React.createElement("span", { className: "bold-text" }, "Pol\u00EDticas de anulaci\u00F3n:"),
47
49
  " Tu pasaje puede ser anulado de forma online",
@@ -15,6 +15,7 @@ interface ExpandedDropdownMobileProps {
15
15
  isDpEnabled?: boolean;
16
16
  femaleAnim?: any;
17
17
  flexibleAnim?: any;
18
+ renderIcon?: any;
18
19
  }
19
- declare function ExpandedDropdownMobile({ serviceItem, isPeru, petSeatInfo, petFriendlyAnim, isSoldOut, isChangeTicket, ladiesBookedSeats, isDpEnabled, femaleAnim, flexibleAnim, }: ExpandedDropdownMobileProps): React.ReactElement;
20
+ declare function ExpandedDropdownMobile({ serviceItem, isPeru, petSeatInfo, petFriendlyAnim, isSoldOut, isChangeTicket, ladiesBookedSeats, isDpEnabled, femaleAnim, flexibleAnim, renderIcon, }: ExpandedDropdownMobileProps): React.ReactElement;
20
21
  export default ExpandedDropdownMobile;
@@ -1,6 +1,6 @@
1
1
  import React from "react";
2
2
  import LottiePlayer from "../../assets/LottiePlayer";
3
- function ExpandedDropdownMobile({ serviceItem, isPeru, petSeatInfo, petFriendlyAnim, isSoldOut, isChangeTicket = false, ladiesBookedSeats, isDpEnabled, femaleAnim, flexibleAnim, }) {
3
+ function ExpandedDropdownMobile({ serviceItem, isPeru, petSeatInfo, petFriendlyAnim, isSoldOut, isChangeTicket = false, ladiesBookedSeats, isDpEnabled, femaleAnim, flexibleAnim, renderIcon, }) {
4
4
  return (React.createElement("div", { className: "px-[12px] pt-[22px] pb-[12px] relative -z-9", style: {
5
5
  backgroundColor: "#ffefef",
6
6
  borderRadius: "0 0 14px 14px",
@@ -8,7 +8,10 @@ function ExpandedDropdownMobile({ serviceItem, isPeru, petSeatInfo, petFriendlyA
8
8
  } },
9
9
  React.createElement("div", { className: "flex flex-col gap-[8px] text-[11px] min-[420px]:text-[12px] text-[#464647]", style: { lineHeight: 1.6 } },
10
10
  isPeru ? null : isChangeTicket ? (React.createElement("div", { className: "flex gap-[6px]" },
11
- React.createElement("span", { style: { marginTop: "2px" } }, "\u2022"),
11
+ React.createElement("span", { style: { marginTop: "2px" } },
12
+ " ",
13
+ React.createElement("div", null,
14
+ React.createElement(LottiePlayer, { animationData: flexibleAnim, width: "16px", height: "16px" }))),
12
15
  React.createElement("span", null,
13
16
  React.createElement("span", { className: "bold-text" }, "Pasaje flexible:"),
14
17
  " Tu pasaje puede ser cambiado de manera online",
@@ -49,7 +52,7 @@ function ExpandedDropdownMobile({ serviceItem, isPeru, petSeatInfo, petFriendlyA
49
52
  " ",
50
53
  "Asientos designados Pet friendly, lo que significa que puede viajar con su mascota a bordo."))))))) : null,
51
54
  React.createElement("div", { className: "flex gap-[6px]" },
52
- React.createElement("span", { style: { marginTop: "2px" } }, "\u2022"),
55
+ React.createElement("span", null, renderIcon("cancelTicketIcon", "14px")),
53
56
  React.createElement("span", null,
54
57
  React.createElement("span", { className: "bold-text" }, "Pol\u00EDticas de anulaci\u00F3n:"),
55
58
  " Tu pasaje puede ser anulado de forma online",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kupos-ui-components-lib",
3
- "version": "9.6.10",
3
+ "version": "9.7.0",
4
4
  "description": "A reusable UI components package",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -0,0 +1 @@
1
+ {"nm":"t","ddd":0,"h":500,"w":500,"meta":{"g":"@lottiefiles/toolkit-js 0.33.2"},"layers":[{"ty":4,"nm":"t","sr":1,"st":60,"op":90,"ip":60,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[256.655,268,0]},"s":{"a":0,"k":[100,100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[256.655,268,0]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":89},{"s":[0],"t":90}]}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"nm":"0","it":[{"ty":"sh","bm":0,"hd":false,"nm":"パ","d":1,"ks":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-35.799,-108.024],[135.03,-108.024],[135.015,-107.976],[-35.905,-107.905]]}],"t":60},{"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-35.799,-108.024],[135.03,-108.024],[-48.36,108.024],[-135.03,96.72]]}],"t":66}]}},{"ty":"fl","bm":0,"hd":false,"nm":"塗","c":{"a":0,"k":[1,1,1]},"r":1,"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":60},{"s":[100],"t":61}]}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[245.351,170.024]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]},{"ty":"gr","bm":0,"hd":false,"nm":"0","it":[{"ty":"sh","bm":0,"hd":false,"nm":"パ","d":1,"ks":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-146.335,21.917],[-146.203,22.157],[-111.091,-49.844],[-111.165,-49.681]]}],"t":66},{"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-146.335,21.917],[66.749,49.681],[146.335,-25.815],[-111.165,-49.681]]}],"t":72}]}},{"ty":"fl","bm":0,"hd":false,"nm":"塗","c":{"a":0,"k":[1,1,1]},"r":1,"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":66},{"s":[100],"t":67}]}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[256.655,244.827]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]},{"ty":"gr","bm":0,"hd":false,"nm":"0","it":[{"ty":"sh","bm":0,"hd":false,"nm":"パ","d":1,"ks":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[85.348,-127.61],[40.195,-131.89],[134.402,-123.098]]}],"t":66},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[54.848,-47.61],[40.195,-131.89],[134.402,-123.098]]}],"t":72},{"s":[{"c":true,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-134.402,131.89],[40.195,-131.89],[134.402,-123.098]]}],"t":78}]}},{"ty":"fl","bm":0,"hd":false,"nm":"塗","c":{"a":0,"k":[1,1,1]},"r":1,"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":72},{"s":[100],"t":73}]}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[268.588,342.11]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]}],"ind":1},{"ty":4,"nm":"t","sr":1,"st":30,"op":60,"ip":30,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[256.655,268,0]},"s":{"a":0,"k":[100,100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[256.655,268,0]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":59},{"s":[0],"t":60}]}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"nm":"0","it":[{"ty":"sh","bm":0,"hd":false,"nm":"パ","d":1,"ks":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-35.799,-108.024],[135.03,-108.024],[135.015,-107.976],[-35.905,-107.905]]}],"t":30},{"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-35.799,-108.024],[135.03,-108.024],[-48.36,108.024],[-135.03,96.72]]}],"t":36}]}},{"ty":"fl","bm":0,"hd":false,"nm":"塗","c":{"a":0,"k":[1,1,1]},"r":1,"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":30},{"s":[100],"t":31}]}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[245.351,170.024]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]},{"ty":"gr","bm":0,"hd":false,"nm":"0","it":[{"ty":"sh","bm":0,"hd":false,"nm":"パ","d":1,"ks":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-146.335,21.917],[-146.203,22.157],[-111.091,-49.844],[-111.165,-49.681]]}],"t":36},{"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-146.335,21.917],[66.749,49.681],[146.335,-25.815],[-111.165,-49.681]]}],"t":42}]}},{"ty":"fl","bm":0,"hd":false,"nm":"塗","c":{"a":0,"k":[1,1,1]},"r":1,"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":36},{"s":[100],"t":37}]}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[256.655,244.827]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]},{"ty":"gr","bm":0,"hd":false,"nm":"0","it":[{"ty":"sh","bm":0,"hd":false,"nm":"パ","d":1,"ks":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[85.348,-127.61],[40.195,-131.89],[134.402,-123.098]]}],"t":36},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[54.848,-47.61],[40.195,-131.89],[134.402,-123.098]]}],"t":42},{"s":[{"c":true,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-134.402,131.89],[40.195,-131.89],[134.402,-123.098]]}],"t":48}]}},{"ty":"fl","bm":0,"hd":false,"nm":"塗","c":{"a":0,"k":[1,1,1]},"r":1,"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":42},{"s":[100],"t":43}]}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[268.588,342.11]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]}],"ind":2},{"ty":4,"nm":"t","sr":1,"st":0,"op":30,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[256.655,268,0]},"s":{"a":0,"k":[100,100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[256.655,268,0]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":29},{"s":[0],"t":30}]}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"nm":"0","it":[{"ty":"sh","bm":0,"hd":false,"nm":"パ","d":1,"ks":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-35.799,-108.024],[135.03,-108.024],[135.015,-107.976],[-35.905,-107.905]]}],"t":0},{"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-35.799,-108.024],[135.03,-108.024],[-48.36,108.024],[-135.03,96.72]]}],"t":6}]}},{"ty":"fl","bm":0,"hd":false,"nm":"塗","c":{"a":0,"k":[1,1,1]},"r":1,"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":0},{"s":[100],"t":1}]}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[245.351,170.024]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]},{"ty":"gr","bm":0,"hd":false,"nm":"0","it":[{"ty":"sh","bm":0,"hd":false,"nm":"パ","d":1,"ks":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-146.335,21.917],[-146.203,22.157],[-111.091,-49.844],[-111.165,-49.681]]}],"t":6},{"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-146.335,21.917],[66.749,49.681],[146.335,-25.815],[-111.165,-49.681]]}],"t":12}]}},{"ty":"fl","bm":0,"hd":false,"nm":"塗","c":{"a":0,"k":[1,1,1]},"r":1,"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":6},{"s":[100],"t":7}]}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[256.655,244.827]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]},{"ty":"gr","bm":0,"hd":false,"nm":"0","it":[{"ty":"sh","bm":0,"hd":false,"nm":"パ","d":1,"ks":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[85.348,-127.61],[40.195,-131.89],[134.402,-123.098]]}],"t":6},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[54.848,-47.61],[40.195,-131.89],[134.402,-123.098]]}],"t":12},{"s":[{"c":true,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-134.402,131.89],[40.195,-131.89],[134.402,-123.098]]}],"t":18}]}},{"ty":"fl","bm":0,"hd":false,"nm":"塗","c":{"a":0,"k":[1,1,1]},"r":1,"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":12},{"s":[100],"t":13}]}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[268.588,342.11]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]}],"ind":3}],"v":"5.9.0","fr":30,"op":90,"ip":0,"assets":[]}