forked from Baskin-Robbins-31/Baskin-Robbins-31
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1447 lines (1445 loc) · 51 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="ko-KR">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="행복을 전하는 프리미엄 아이스크림, 배스킨라빈스 공식 홈페이지 입니다."
/>
<meta
property="og:description"
content="행복을 전하는 프리미엄 아이스크림, 배스킨라빈스 공식 홈페이지 입니다."
/>
<!-- 이미지 링크 확인해야 함 -->
<meta property="og:image" content="공유하기에서 나타날 이미지 링크" />
<title>배스킨라빈스</title>
<link
rel="apple-touch-icon"
sizes="57x57"
href="./src/images/br-favicon/apple-icon-57x57.png"
/>
<link
rel="apple-touch-icon"
sizes="60x60"
href="./src/images/br-favicon/apple-icon-60x60.png"
/>
<link
rel="apple-touch-icon"
sizes="72x72"
href="./src/images/br-favicon/apple-icon-72x72.png"
/>
<link
rel="apple-touch-icon"
sizes="76x76"
href="./src/images/br-favicon/apple-icon-76x76.png"
/>
<link
rel="apple-touch-icon"
sizes="114x114"
href="./src/images/br-favicon/apple-icon-114x114.png"
/>
<link
rel="apple-touch-icon"
sizes="120x120"
href="./src/images/br-favicon/apple-icon-120x120.png"
/>
<link
rel="apple-touch-icon"
sizes="144x144"
href="./src/images/br-favicon/apple-icon-144x144.png"
/>
<link
rel="apple-touch-icon"
sizes="152x152"
href="./src/images/br-favicon/apple-icon-152x152.png"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="./src/images/br-favicon/apple-icon-180x180.png"
/>
<link
rel="icon"
type="image/png"
sizes="192x192"
href="./src/images/br-favicon/android-icon-192x192.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./src/images/br-favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="96x96"
href="./src/images/br-favicon/favicon-96x96.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./images/br-favicon/favicon-16x16.png"
/>
<link rel="manifest" href="./src/images/br-favicon/manifest.json" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta
name="msapplication-TileImage"
content="./src/images/br-favicon/ms-icon-144x144.png"
/>
<meta name="theme-color" content="#ffffff" />
<link rel="stylesheet" href="./src/css/output.css" />
<script src="./src/js/sidebar.js" defer></script>
<script src="./src/js/carousel.js" defer></script>
</head>
<body class="">
<!-- <div class="skipNav">
<a href="#main" class="skipNav">
<span>본문 바로가기</span>
</a>
</div> -->
<div
class="bg-header-bg border-t-4 border-pink1 max-md:border-none max-md:bg-none"
>
<header
class="relative max-w-[1200px] mx-auto max-md:flex max-md:items-center"
>
<!-- 1. 로고 -->
<h1
class="py-6 md:text-center max-md:py-3 max-md:inline-block max-md:grow max-md:z-[-10]"
>
<a href="./" class="inline-block">
<span class="sr-only">배스킨라빈스</span>
<picture class="inline-block">
<source
srcset="./src/images/webp/common/logo_baskinrobbins.webp"
type="image/webp"
/>
<img
src="./src/images/webp/common/logo_baskinrobbins.png"
class="mx-auto max-md:w-[55px] max-md:ml-3 max-md:mr-0"
width="92"
height="92"
alt=""
/>
</picture>
</a>
</h1>
<!-- 2. 검색 버튼 -->
<!-- 배경이미지로 돋보기 모양 이미지를 넣을 예정입니다! -->
<button
type="button"
class="absolute w-[54px] h-[54px] right-[20px] top-[45px] bg-icon-search mobile-icon-search"
aria-label="검색"
></button>
<!-- 3. sns 링크 + 고객센터 + contact us -->
<!-- sns 로고는 배경 이미지로 넣을 예정입니다! -->
<ul
class="flex gap-3 absolute w-10 h-10 top-[53px] left-[20px] max-md:hidden"
>
<li>
<a
href="https://www.facebook.com/baskinrobbinskr/"
target="_blank"
rel="noopener noreferrer"
class="block w-[35px] h-[35px] bg-icon-facebook"
aria-label="페이스북 바로가기"
>
</a>
</li>
<li>
<a
href="https://twitter.com/BaskinrobbinsKR"
target="_blank"
rel="noopener noreferrer"
class="block w-[35px] h-[35px] bg-icon-twitter"
aria-label="트위터 바로가기"
>
</a>
</li>
<li>
<a
href="https://blog.naver.com/brgirl31"
target="_blank"
rel="noopener noreferrer"
class="block w-[35px] h-[35px] bg-icon-blog"
aria-label="블로그 바로가기"
>
</a>
</li>
<li>
<a
href="https://www.instagram.com/baskinrobbinskorea/"
target="_blank"
rel="noopener noreferrer"
class="block w-[35px] h-[35px] bg-icon-instagram"
aria-label="인스타그램 바로가기"
>
</a>
</li>
<li>
<a
href="https://www.youtube.com/user/baskinrobbinskorea"
target="_blank"
rel="noopener noreferrer"
class="block w-[35px] h-[35px] bg-icon-youtube"
aria-label="유튜브 바로가기"
>
</a>
</li>
</ul>
<ul
class="flex absolute text-sm gap-6 right-[98px] top-[64px] text-gray1 max-md:hidden"
>
<li>
<a href="./">고객센터</a>
</li>
<li>
<a href="./" lang="en" class="uppercase">Contact us</a>
</li>
</ul>
<!-- 4. 모바일에서만 보이는 메뉴 바 -->
<nav
class="hidden justify-between items-center text-xl max-md:inline-flex max-md:text-[16px] max-md:mt-[8px] max-md:max-w-[244px] max-md:mb-1 max-md:mr-[40px] max-md:font-baskin"
>
<h2 class="sr-only">메인 메뉴</h2>
<ul
class="flex justify-between items-center max-w-[900px] w-[78vw] max-md:mb-1"
>
<li class="">
<a href="./" class="">이달의 맛</a>
</li>
<li class="">
<a href="./" class="">매장 찾기</a>
</li>
<li class="">
<a href="./" class="">단체주문</a>
</li>
</ul>
</nav>
<!-- 5. 모바일에서만 보이는 햄버거 버튼 -->
<button
type="button"
class="md:hidden mobile-btn-hamburger"
aria-label="메인 메뉴 보기"
></button>
</header>
</div>
<!-- 내비게이션 바 -->
<div class="mobile-nav-back max-md:hidden z-40"></div>
<div class="nav-bar-viewport md:transform-none z-50">
<div class="nav-bar-wrapper md:px-[20px]">
<ul class="nav-bar-default font-normal">
<li>
<!-- 해당 페이지들을 만들지 않을 예정이므로 href 속성을 /로 설정하였습니다! -->
<a href="./" class="text-pink2 max-md:text-white">로그인</a>
</li>
<li>
<a href="./" class="text-gray1 max-md:text-white">회원가입</a>
</li>
</ul>
<nav
class="flex justify-between text-xl max-md:text-[16px] font-baskin font-medium"
>
<h2 class="sr-only">메인 메뉴</h2>
<!-- css를 이용하여 전부 대문자로 변경할 예정입니다! -->
<ul
class="flex justify-between items-center max-w-[900px] w-[78vw] max-md:flex-col"
>
<li class="mobile-nav">
<a href="./" class="mobile-nav-link">이달의 맛</a>
</li>
<li class="mobile-nav">
<a href="./src/pages/menu.html" class="mobile-nav-link">메뉴</a>
</li>
<li class="mobile-nav">
<a href="./" class="mobile-nav-link">영양 성분 및 알레르기</a>
</li>
<li class="mobile-nav">
<a href="./" class="mobile-nav-link">이벤트</a>
</li>
<li class="mobile-nav">
<a href="./" class="mobile-nav-link">매장</a>
</li>
<li class="mobile-nav">
<a href="./" class="mobile-nav-link">더보기</a>
</li>
</ul>
</nav>
<!-- 모바일에서만 보이는 X 버튼 -->
<button
type="button"
class="hidden mobile-close"
aria-label="메뉴 닫기"
></button>
</div>
<ul class="mobile-icon-group hidden max-md:flex gap-3 absolute w-10 h-10">
<li>
<a
href="https://www.facebook.com/baskinrobbinskr/"
target="_blank"
rel="noopener noreferrer"
class="block w-[35px] h-[35px] bg-icon-facebook"
aria-label="페이스북 바로가기"
>
</a>
</li>
<li>
<a
href="https://twitter.com/BaskinrobbinsKR"
target="_blank"
rel="noopener noreferrer"
class="block w-[35px] h-[35px] bg-icon-twitter"
aria-label="트위터 바로가기"
>
</a>
</li>
<li>
<a
href="https://blog.naver.com/brgirl31"
target="_blank"
rel="noopener noreferrer"
class="block w-[35px] h-[35px] bg-icon-blog"
aria-label="블로그 바로가기"
>
</a>
</li>
<li>
<a
href="https://www.instagram.com/baskinrobbinskorea/"
target="_blank"
rel="noopener noreferrer"
class="block w-[35px] h-[35px] bg-icon-instagram"
aria-label="인스타그램 바로가기"
>
</a>
</li>
<li>
<a
href="https://www.youtube.com/user/baskinrobbinskorea"
target="_blank"
rel="noopener noreferrer"
class="block w-[35px] h-[35px] bg-icon-youtube"
aria-label="유튜브 바로가기"
>
</a>
</li>
</ul>
</div>
<main>
<!-- 이벤트 -->
<section class="event relative">
<h2 class="sr-only">이벤트 안내</h2>
<div class="banner-top relative">
<h3 class="sr-only">이달의 맛 소개</h3>
<div class="banner-top__imageWrapper--short">
<a href="./">
<picture>
<source
media="(max-width: 768px)"
srcset="src/images/webp/main/mobile/mobile_banner_short.webp"
type="image/webp"
/>
<source
srcset="src/images/webp/main/desktop/banner_short.webp"
type="image/webp"
/>
<img
srcset="
src/images/png/main/mobile/mobile_banner_short.jpg 768w,
src/images/webp/main/desktop/banner_short.webp
"
alt="초당옥수수로 만든 다양한 신제품과 이벤트 안내"
width="1600"
height="150"
/>
</picture>
</a>
</div>
</div>
<!-- carousel -->
<div class="banner-carousel relative">
<h3 class="sr-only">이벤트 안내 슬라이드</h3>
<!-- 컨트롤 버튼 -->
<div class="controls absolute bottom-0 z-10 w-full flex items-center">
<button
type="button"
class="rotation pause play w-16 h-16 max-md:w-12 max-md:h-12 hidden sm:block hover:bg-pink1"
aria-label="자동 슬라이드 정지"
></button>
<button
type="button"
class="previous w-16 h-16 max-md:w-12 max-md:h-12 hidden sm:block hover:bg-pink1"
aria-controls="carousel-items"
aria-label="이전 슬라이드로 이동"
></button>
<button
type="button"
class="next w-16 h-16 max-md:w-12 max-md:h-12 hidden sm:block hover:bg-pink1"
aria-controls="carousel-items"
aria-label="다음 슬라이드로 이동"
></button>
<!-- 인디케이터 -->
<div
role="tablist"
aria-label="슬라이드 탭 목록"
class="indicator-list absolute flex space-x-7 bottom-6 max-md:space-x-5"
>
<button
id="carousel-tab-1"
type="button"
role="tab"
aria-label="슬라이드 탭 1"
aria-selected="true"
aria-controls="carousel-item-1"
class="btn-indicator"
data-carousel-slide-to="0"
></button>
<button
id="carousel-tab-2"
type="button"
role="tab"
tabindex="-1"
aria-label="슬라이드 탭 2"
aria-selected="false"
aria-controls="carousel-item-2"
class="btn-indicator"
data-carousel-slide-to="1"
></button>
<button
id="carousel-tab-3"
type="button"
role="tab"
tabindex="-1"
aria-label="슬라이드 탭 3"
aria-selected="false"
aria-controls="carousel-item-3"
class="btn-indicator"
data-carousel-slide-to="2"
></button>
<button
id="carousel-tab-4"
type="button"
role="tab"
tabindex="-1"
aria-label="슬라이드 탭 4"
aria-selected="false"
aria-controls="carousel-item-4"
class="btn-indicator"
data-carousel-slide-to="3"
></button>
<button
id="carousel-tab-5"
type="button"
role="tab"
tabindex="-1"
aria-label="슬라이드 탭 5"
aria-selected="false"
aria-controls="carousel-item-5"
class="btn-indicator"
data-carousel-slide-to="4"
></button>
<button
id="carousel-tab-6"
type="button"
role="tab"
tabindex="-1"
aria-label="슬라이드 탭 6"
aria-selected="false"
aria-controls="carousel-item-6"
class="btn-indicator"
data-carousel-slide-to="5"
></button>
<button
id="carousel-tab-7"
type="button"
role="tab"
tabindex="-1"
aria-label="슬라이드 탭 7"
aria-selected="false"
aria-controls="carousel-item-7"
class="btn-indicator"
data-carousel-slide-to="6"
></button>
</div>
</div>
<!-- 슬라이드 -->
<div class="carousel-wrapper overflow-hidden">
<div
id="carousel-items"
class="carousel-items relative flex"
aria-live="off"
>
<div
id="carousel-item-1"
class="carousel-item active"
role="group"
aria-roledescription="slide"
aria-label="7개 중 1번째"
>
<div class="carousel-image">
<a href="./">
<picture>
<source
media="(max-width: 768px)"
srcset="src/images/webp/main/mobile/mobile_banner1.webp"
type="image/webp"
/>
<source
srcset="src/images/webp/main/desktop/banner1.webp"
type="image/webp"
/>
<img
srcset="
src/images/png/main/mobile/mobile_banner1.jpg 768w,
src/images/webp/main/desktop/banner1.png
"
alt="특별한 제휴 혜택을 알아보세요(2022년 상시 운영)"
width="1600"
height="700"
/>
</picture>
</a>
</div>
</div>
<!-- carousel item 2 -->
<div
id="carousel-item-2"
class="carousel-item"
role="group"
aria-roledescription="slide"
aria-label="7개 중 2번째"
>
<div class="carousel-image">
<a href="./">
<picture>
<source
media="(max-width: 768px)"
srcset="src/images/webp/main/mobile/mobile_banner2.webp"
type="image/webp"
/>
<source
srcset="src/images/webp/main/desktop/banner2.webp"
type="image/webp"
/>
<img
srcset="
src/images/webp/main/mobile/mobile_banner2.jpg 768w,
src/images/webp/main/desktop/banner2.png
"
alt="기아 멤버스에게 최대 50% 제휴 혜택을 드립니다(2022년 상시 운영)"
width="1600"
height="700"
/>
</picture>
</a>
</div>
</div>
<!-- carousel item 3 -->
<div
id="carousel-item-3"
class="carousel-item"
role="group"
aria-roledescription="slide"
aria-label="7개 중 3번째"
>
<div class="carousel-image">
<a href="./">
<picture>
<source
media="(max-width: 768px)"
srcset="src/images/webp/main/mobile/mobile_banner3.webp"
type="image/webp"
/>
<source
srcset="src/images/webp/main/desktop/banner3.webp"
type="image/webp"
/>
<img
srcset="
src/images/png/main/mobile/mobile_banner3.png 768w,
src/images/png/main/desktop/banner3.png
"
alt="31데이 사전예약 특별 혜택을 알아보세요(예약 기간: 2022년 7월 27일 수요일부터 7월 30일 토요일까지)"
width="1600"
height="700"
/>
</picture>
</a>
</div>
</div>
<!-- carousel item 4 -->
<div
id="carousel-item-4"
class="carousel-item"
role="group"
aria-roledescription="slide"
aria-label="7개 중 4번째"
>
<div class="carousel-image">
<a href="./">
<picture>
<source
media="(max-width: 768px)"
srcset="src/images/webp/main/mobile/mobile_banner4.webp"
type="image/webp"
/>
<source
srcset="src/images/webp/main/desktop/banner4.webp"
type="image/webp"
/>
<img
srcset="
src/images/png/main/mobile/mobile_banner4.png 768w,
src/images/png/main/desktop/banner4.png
"
alt="현대카드 M 포인트를 사용하여 금액의 50%까지 할인 받을 수 있습니다(2022년 상시 운영)"
width="1600"
height="700"
/>
</picture>
</a>
</div>
</div>
<!-- carousel item 5 -->
<div
id="carousel-item-5"
class="carousel-item"
role="group"
aria-roledescription="slide"
aria-label="7개 중 5번째"
>
<div class="carousel-image">
<a href="./">
<picture>
<source
media="(max-width: 768px)"
srcset="src/images/webp/main/mobile/mobile_banner5.webp"
type="image/webp"
/>
<source
srcset="src/images/webp/main/desktop/banner5.webp"
type="image/webp"
/>
<img
srcset="
src/images/png/main/mobile/mobile_banner5.png 768w,
src/images/png/main/desktop/banner5.png
"
alt="T멤버십 회원에게는 싱글 레귤러를 최대 50% 할인 또는 적립해드립니다(기간: 2022년 3월 2일 수요일부터 2023년 1월 31일 화요일까지)"
width="1600"
height="700"
/>
</picture>
</a>
</div>
</div>
<!-- carousel item 6 -->
<div
id="carousel-item-6"
class="carousel-item"
role="group"
aria-roledescription="slide"
aria-label="7개 중 6번째"
>
<div class="carousel-image">
<a href="./">
<picture>
<source
media="(max-width: 768px)"
srcset="src/images/webp/main/mobile/mobile_banner6.webp"
type="image/webp"
/>
<source
srcset="src/images/webp/main/desktop/banner6.webp"
type="image/webp"
/>
<img
srcset="
src/images/png/main/mobile/mobile_banner6.png 768w,
src/images/png/main/desktop/banner6.jpg
"
alt="해시태그 이벤트. 인스타그램에 아이스 초당옥수수맛 사진을 올려주세요(기간: 2022년 8월 1일 월요일부터 8월 26일 금요일까지)"
width="1600"
height="700"
/>
</picture>
</a>
</div>
</div>
<!-- carousel item 7 -->
<div
id="carousel-item-7"
class="carousel-item"
role="group"
aria-roledescription="slide"
aria-label="7개 중 7번째"
>
<div class="carousel-image">
<a href="./">
<picture>
<source
media="(max-width: 768px)"
srcset="src/images/webp/main/mobile/mobile_banner7.webp"
type="image/webp"
/>
<source
srcset="src/images/webp/main/desktop/banner7.webp"
type="image/webp"
/>
<img
srcset="
src/images/png/main/mobile/mobile_banner7.png 768w,
src/images/png/main/desktop/banner7.jpg
"
alt="KT멤버십 고객에게는 파인트 30%할인, V.V.I.P 고객에게는 쿼터 1개를 무료로 드립니다(기간: 2022년 상시 운영. KT 더블할인 멤버십 제휴사 통합 월 1회 한정)"
width="1600"
height="700"
/>
</picture>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- 메뉴 안내 -->
<section class="menu section bg-slate-100 w-full pt-16">
<h2 class="section__title"><span>배라</span> 메뉴</h2>
<ul
class="menu-contentWrapper mx-auto md:max-w-[920px] grid auto-rows-auto grid-cols-[1fr_1fr] md:grid-cols-[3fr_4fr_3fr] gap-7"
>
<li
class="menu__card max-md:w-[60%] max-md:h-[300px] md:w-[400px] md:h-[300px] menu-icecream ml-auto row-start-1 row-end-2 col-start-1 col-end-3 z-30"
>
<a href="./src/pages/menu.html" class="">
<h3 lang="en" class="text-pink2">ICECREAM</h3>
<p>아이스크림의 기준 배스킨라빈스</p>
<span>more</span>
<picture>
<source
srcset="./src/images/webp/main/icecream_float.webp"
type="image/webp"
class="w-[55%] -right-[10%] top-[30%] rotate-[15deg]"
/>
<img
src="./src/images/png/main/icecream_float.png"
type="image/png"
alt=""
class="w-[55%] -right-[10%] top-[30%] rotate-[15deg]"
width="283"
height="321"
/>
</picture>
</a>
</li>
<li
class="menu__card max-md:h-[365px] md:h-[220px] max-md:row-start-2 max-md:row-end-3 max-md:col-start-1 max-md:col-end-2 md:row-start-4 md:row-end-5 md:col-start-2 md:col-end-3 z-20"
>
<a href="./" class="">
<h3 lang="en" class="text-[#F07492]">DESSERT</h3>
<p>아이스크림을 더욱 재미있게! 간편하게 즐기는 방법!</p>
<span>more</span>
<picture>
<source
srcset="./src/images/webp/main/monaka.webp"
type="image/webp"
class="max-md:w-[300px] md:scale-[0.6] md:top-[60px] max-md:-right-[50px] md:-right-[80px]"
/>
<img
src="./src/images/png/main/monaka.png"
type="image/png"
alt=""
class="max-md:w-[300px] md:scale-[1.1] md:top-[120px] max-md:-right-[50px] md:-right-[40px]"
width="207"
height="207"
/>
</picture>
</a>
</li>
<li
class="menu__card h-[365px] row-start-2 max-md:row-end-3 md:row-end-5 max-md:col-start-2 md:col-start-1 max-md:col-end-2 md:col-end-2 z-20"
>
<a href="./" class="">
<h3 lang="en" class="text-[#FC7689]">BEVERAGE</h3>
<p>아이스크림으로 즐기는 배스킨라빈스만의 음료!</p>
<span>more</span>
<picture>
<source
srcset="./src/images/webp/main/shake.webp"
type="image/webp"
class="max-md:w-[350px] md:scale-[1.4] max-md:-right-[50px] -right-[25%] md:top-[45%]"
/>
<img
src="./src/images/png/main/shake.png"
type="image/png"
alt=""
class="max-md:w-[350px] md:scale-[1.4] max-md:-right-[50px] -right-[25%] md:top-[45%]"
width="362"
height="362"
/>
</picture>
</a>
</li>
<li
class="menu__card max-md:h-[295px] md:h-[475px] max-md:row-start-3 max-md:row-end-4 max-md:col-start-1 max-md:col-end-3 md:row-start-1 md:row-end-3 md:col-start-3 md:col-end-4"
>
<a href="./" class="">
<h3 lang="en" class="text-[#FDAF08]">ICECREAM CAKE</h3>
<p>
아이와 어른이 좋아하는 아이스크림을 하나의 케이크에서 모두
즐기세요!
</p>
<span>more</span>
<picture>
<source
srcset="./src/images/webp/main/icecreamcake.webp"
type="image/webp"
class="max-md:w-[250px] md:scale-[1.2] max-md:right-[50px] md:-right-[20%] max-md:top-[30%] md:bottom-[10px]"
/>
<img
src="./src/images/png/main/icecreamcake.png"
type="image/png"
alt=""
class="max-md:w-[250px] md:scale-[1.2] max-md:right-[50px] md:-right-[20%] max-md:top-[30%] md:bottom-[10px]"
width="311"
height="311"
/>
</picture>
</a>
</li>
<li
class="menu__card max-md:h-[365px] md:h-[320px] max-md:row-start-4 md:row-start-2 max-md:row-end-5 md:row-end-4 max-md:col-start-1 md:col-start-2 max-md:col-end-2 md:col-end-3 z-20"
>
<a href="./" class="">
<h3 lang="en" class="text-[#AB673C]">COFFEE</h3>
<p>배스킨라빈스만의 부드러운 촉감과 달콤한 풍미!</p>
<span>more</span>
<picture>
<source
srcset="./src/images/webp/main/coffee.webp"
type="image/webp"
class="max-md:w-[350px] m:scale-[0.9] max-md:-right-[50px] md:-right-[60px] md:-bottom-[70px]"
/>
<img
src="./src/images/png/main/coffee.png"
type="image/png"
alt=""
class="max-md:w-[350px] m:scale-[0.9] max-md:-right-[50px] md:-right-[60px] md:-bottom-[70px]"
width="345"
height="345"
/>
</picture>
</a>
</li>
<li
class="menu__card max-md:h-[365px] md:h-200px] order-5 md:row-start-3 md:row-end-5 md:col-start-3 md:col-end-4"
>
<a href="./" class="">
<h3 lang="en" class="text-[#E35F98]">GIFT</h3>
<p>특별한 날, 배스킨라빈스로 달콤한 선물을 전해보세요!</p>
<span>more</span>
<picture>
<source
srcset="./src/images/webp/main/giftcard.webp"
type="image/webp"
class="max-md:w-[60%] md:w-[70%] max-md:left-[20%] m:left-[10px] max-md:bottom-[10%] md:bottom-[25px]"
/>
<img
src="./src/images/png/main/giftcard.png"
type="image/png"
alt=""
class="max-md:w-[60%] md:w-[70%] max-md:left-[20%] m:left-[10px] max-md:bottom-[10%] md:bottom-[25px]"
width="182"
height="144"
/>
</picture>
</a>
</li>
</ul>
</section>
<!-- 주문 안내 -->
<section class="order section">
<h2 class="section__title"><span>간편</span> 주문</h2>
<ul
class="flex gap-4 justify-center max-md:flex-wrap md:max-w-[1200px] mx-auto"
>
<li class="max-md:w-[40%]">
<a href="tel:16703131">
<picture>
<source
srcset="./src/images/webp/main/order_call.webp"
type="image/webp"
/>
<img
src="./src/images/png/main/order_call.png"
type="image/png"
alt="배달 콜센터로 주문하기. 전화번호: 1670-3131"
width="227"
height="227"
/>
</picture>
</a>
</li>
<li class="max-md:w-[40%]">
<a
href="https://www.happyorder.co.kr/?am=commonOrder/storeView&itemCode=&brandCode=BRkorea&storeCode=11100&orderType=D&orderDetail=O&orderDate=20220804&lat=127.0373774&lon=37.4843843&cpIds=&pp=commonOrder/storeList"
>
<picture>
<source
srcset="./src/images/webp/main/order_happy.webp"
type="image/webp"
/>
<img
src="./src/images/png/main/order_happy.png"
type="image/png"
alt="해피오더로 주문하기"
width="227"
height="227"
/>
</picture>
</a>
</li>
<li class="max-md:w-[30%]">
<a href="https://www.baemin.com/">
<picture>
<source
srcset="./src/images/webp/main/order_bm.webp"
type="image/webp"
/>
<img
src="./src/images/png/main/order_bm.png"
type="image/png"
alt="배달의 민족으로 주문하기"
width="227"
height="227"
/>
</picture>
</a>
</li>
<li class="max-md:w-[30%]">
<a href="https://order.kakao.com/pc.html">
<picture>
<source
srcset="./src/images/webp/main/order_kakao.webp"
type="image/webp"
/>
<img
src="./src/images/png/main/order_kakao.png"
type="image/png"
alt="카카오톡으로 주문하기"
width="227"
height="227"
/>
</picture>
</a>
</li>
<li class="max-md:w-[30%]">
<a href="https://www.yogiyo.co.kr/mobile/#/245470/">
<picture>
<source
srcset="./src/images/webp/main/order_ygy.webp"
type="image/webp"
/>
<img
src="./src/images/png/main/order_ygy.png"
type="image/png"
alt="요기요로 주문하기"
width="227"
height="227"
/>
</picture>
</a>
</li>
</ul>
</section>
<!-- 매장 안내 -->
<section class="store section text-center">
<h2 class="section__title"><span>매장</span> 찾기</h2>
<div class="inline-block relative">
<picture>
<source
srcset="./src/images/webp/main/search-store.webp"
type="image/webp"
class="md:w-[675px] md:h-[398px] mx-auto min-w-[320px]"
/>
<img
src="./src/images/png/main/search-store.png"
type="image/png"
alt="주변의 배스킨라빈스 매장을 찾아보세요!"
class="md:w-[675px] md:h-[412px] mx-auto min-w-[320px]"
width="675"
height="412"
/>
</picture>
<a
href="./"
class="flex justify-center items-center w-[30%] h-[15%] leading-[70px] absolute top-[70%] left-[50%] -translate-x-1/2 rounded-full bg-pink2 drop-shadow-[4px_4px_8px_rgba(0,0,0,0.25)] hover:scale-105"
><span class="max-md:text-[4vw] md:text-3xl text-white font-baskin"
>매장 찾기</span
></a
>
</div>
</section>
<!-- SNS 리뷰 소개 -->
<section class="sns section max-w-[1300px] mx-auto">
<h2 class="section__title"><span>배라</span> SNS</h2>
<ul class="flex justify-center gap-5 mb-14">
<li>
<a
href="https://www.facebook.com/baskinrobbinskr/"
target="_blank"
rel="noopener noreferrer"
class="bg-icon-facebook-big"
aria-label="페이스북 바로가기"