style.scss 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301
  1. @charset "UTF-8";
  2. @use 'animation';
  3. img{
  4. width: 100%;
  5. }
  6. .evt--section01{
  7. background-color: #00b6ff;
  8. background-repeat: no-repeat;
  9. background-size: 100%;
  10. position: relative;
  11. overflow: hidden;
  12. .palm--img1{
  13. position: absolute;
  14. top: -3%;
  15. left: 0;
  16. max-width: 495px;
  17. width: 50%;
  18. z-index:10;
  19. }
  20. .palm--img2{
  21. z-index:10;
  22. position: absolute;
  23. right: -60px;
  24. top: -3%;
  25. width: 50%;
  26. max-width: 500px;
  27. }
  28. .bubble--bg{
  29. z-index:10;
  30. position: absolute;
  31. background-image: url(../img/img_bg_3.png);
  32. width: 231px;
  33. height: 95px;
  34. bottom: -500px;
  35. left: -231px;
  36. }
  37. .wave--bg{
  38. position: absolute;
  39. background-size: 100%;
  40. background-position: 0 -120px;
  41. background-image: url(../img/bg_2.png);
  42. width: 100%;
  43. height: 5000px;
  44. }
  45. .section--container{
  46. max-width: 1440px;
  47. margin: 0 auto;
  48. position: relative;
  49. .section--title{
  50. margin-top: 150px;
  51. margin-bottom: 150px;
  52. display: flex;
  53. flex-direction: column;
  54. position: relative;
  55. z-index: 11;
  56. align-items: center;
  57. .logo{
  58. max-width: 290px;
  59. width: 40%;
  60. margin-bottom: 80px;
  61. // opacity: 0;
  62. // transform: translateY(60px);
  63. // animation: fadeUpLogo 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  64. }
  65. >h1{
  66. margin-bottom: 30px;
  67. // opacity: 0;
  68. // transform: translateX(-60px);
  69. // animation: fadeInRightH1 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
  70. }
  71. >h2{
  72. opacity: 0;
  73. // transform: translateX(60px);
  74. // animation: fadeInLeftH2 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
  75. // margin-bottom: 100px;
  76. }
  77. >h3{
  78. opacity: 0;
  79. transform: translateY(60px);
  80. animation: fadeUpH3 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
  81. max-width: 716px;
  82. width: 80%;
  83. }
  84. .bg1{
  85. position: absolute;
  86. left: -200px;
  87. top: 0px;
  88. }
  89. .bg2{
  90. position: absolute;
  91. left: -230px;
  92. bottom: -200px;
  93. }
  94. .bg4{
  95. position: absolute;
  96. right: -200px;
  97. bottom: -60px;
  98. }
  99. .bg--wave--wrap{
  100. position: absolute;
  101. right: -90px;
  102. top: 50px;
  103. .bg--wave{
  104. position: relative;
  105. width: 900px;
  106. height: 550px;
  107. .bg--wave1{
  108. position: absolute;
  109. z-index: -1;
  110. // opacity: 0;
  111. // transform: translateX(-100px);
  112. // animation: waveInRight 1.4s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
  113. }
  114. .bg--wave2{
  115. position: absolute;
  116. width: 316px;
  117. right: 60px;
  118. top: 103px;
  119. // opacity: 0;
  120. // transform: translateX(-100px);
  121. // animation: waveInRight 1.5s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
  122. }
  123. }
  124. }
  125. }
  126. .video--wrap{
  127. max-width: 1440px;
  128. margin: 0 auto 120px;
  129. overflow: hidden;
  130. max-height: 90vh;
  131. background-color: black;
  132. border: 3px solid #ffffff;
  133. border-radius: 2px;
  134. display: flex;
  135. justify-content: center;
  136. align-items: center;
  137. box-sizing: border-box;
  138. position: relative;
  139. z-index: 5;
  140. video{
  141. aspect-ratio: 4 / 3;
  142. z-index: 5;
  143. width: 100%;
  144. position: relative;
  145. vertical-align: top;
  146. }
  147. .bg5{
  148. position: absolute;
  149. top: -100px;
  150. left: -340px;
  151. z-index: 2;
  152. }
  153. .video--btn{
  154. display: none;
  155. position: absolute;
  156. top: 50%;
  157. left: 50%;
  158. transform: translate(-50%, -50%);
  159. max-width: 230px;
  160. max-height: 230px;
  161. width: 20vw;
  162. height: 20vw;
  163. z-index: 10;
  164. height: 230px;
  165. cursor: pointer;
  166. background-repeat: no-repeat;
  167. background-position: center;
  168. background-size: 100%;
  169. background-image: url(../img/ico_play.png);
  170. &.play{
  171. display: block;
  172. }
  173. }
  174. }
  175. .swiper--wrap{
  176. position: relative;
  177. margin-bottom: 200px;
  178. box-shadow: 16px 12px 32px rgba(68, 68, 68, 0.15);
  179. .bg1{
  180. position: absolute;
  181. right: -180px;
  182. top: -30px;
  183. }
  184. .bg2{
  185. position: absolute;
  186. left: -160px;
  187. top: 50%;
  188. }
  189. .bg3{
  190. position: absolute;
  191. right: -260px;
  192. bottom: 30%;
  193. }
  194. .swiper--tab--wrap{
  195. display: flex;
  196. gap: 5px;
  197. .tab--btn{
  198. background-color: #fff;
  199. border: none;
  200. border-top-left-radius: 15px;
  201. border-top-right-radius: 15px;
  202. text-align: center;
  203. width: 100%;
  204. position: relative;
  205. font-weight: 500;
  206. font-family: 'GmarketSans';
  207. height: 80px;
  208. display: flex;
  209. align-items: center;
  210. justify-content: center;
  211. font-size: 28px;
  212. padding: 0;
  213. color: #787878;
  214. box-shadow: 0px -2px 5px 0px rgba(0, 0, 0, 0.15) inset;
  215. &:first-child,
  216. &:nth-child(2),
  217. &:nth-child(3){
  218. &::before{
  219. content: 'NEW';
  220. font-size: 14px;
  221. margin-top: -5px;
  222. margin-right: 5px;
  223. }
  224. }
  225. &::after{
  226. content: '';
  227. display: inline-block;
  228. width: 100%;
  229. bottom: 0;
  230. position: absolute;
  231. }
  232. &.active{
  233. background-color: #0000ff;
  234. font-weight: 700;
  235. color: #ffde00;
  236. }
  237. }
  238. }
  239. .swiper-slide{
  240. display: flex;
  241. justify-content: center;
  242. }
  243. .slide--img{
  244. position: relative;
  245. .new--icon{
  246. display: inline-block;
  247. position: absolute;
  248. width: 10%;
  249. padding-bottom: 11%;
  250. background-repeat: no-repeat;
  251. bottom: 5%;
  252. right: 6%;
  253. background-image: url(../img/ico_new.png);
  254. max-width: 130px;
  255. max-height: 130px;
  256. background-size: 100%;
  257. }
  258. }
  259. .slide--desc{
  260. padding: 70px 100px;
  261. height: 380px;
  262. background-color: #fff;
  263. &.type2{
  264. padding: 40px 100px;
  265. h4{
  266. margin-bottom: 0px;
  267. }
  268. }
  269. h4{
  270. font-family: 'GmarketSans';
  271. font-weight: 700;
  272. font-size: 42px;
  273. margin-bottom: 20px;
  274. span{
  275. font-size: 28px;
  276. }
  277. }
  278. p{
  279. font-family: 'Pretendard Variable';
  280. font-size: 28px;
  281. line-height: 1.4;
  282. font-weight: 500;
  283. margin-bottom: 30px;
  284. &:last-child{
  285. margin-bottom: 0px;
  286. }
  287. }
  288. }
  289. .swiper-pagination{
  290. bottom: -100px;
  291. span{
  292. width: 32px;
  293. height: 32px;
  294. margin: 0 12px;
  295. background-color: #008be6;
  296. opacity: 0.6;
  297. }
  298. .swiper-pagination-bullet-active{
  299. background-color: #0047bb;
  300. opacity: 1;
  301. }
  302. }
  303. .swiper-button-next, .swiper-button-prev{
  304. width: 50px;
  305. background-image: url(../img/ico_arrow.png);
  306. height: 90px;
  307. top: 30%;
  308. right: -100px;
  309. &::after{
  310. display: none;
  311. }
  312. }
  313. .swiper-button-prev{
  314. transform: rotate(180deg);
  315. left: -100px;
  316. }
  317. }
  318. }
  319. }
  320. .evt--section02-1{
  321. position: relative;
  322. overflow: hidden;
  323. background: linear-gradient(to bottom, #004dee, #007ff6);
  324. &::before{
  325. content: '';
  326. background-image: url(../img/bg_4.png);
  327. background-repeat: no-repeat;
  328. background-position: bottom;
  329. display: inline-block;
  330. top: 0;
  331. z-index: 1;
  332. left: 0;
  333. position: absolute;
  334. width: 100%;
  335. height: 100%;
  336. }
  337. .cloud--img1{
  338. position: absolute;
  339. left: 0;
  340. z-index: 10;
  341. max-width: 20%;
  342. top: 100px;
  343. animation: cloudMoveLeftToRight 20s linear infinite;
  344. }
  345. .cloud--img2{
  346. position: absolute;
  347. right: 0;
  348. z-index: 10;
  349. max-width: 30%;
  350. top: 50px;
  351. animation: cloudMoveLeftToRight 30s linear infinite;
  352. }
  353. .section--container{
  354. max-width: 1920px;
  355. margin: 0 auto;
  356. .evt--1{
  357. padding: 100px 0 130px;
  358. position: relative;
  359. background-position: bottom;
  360. background-repeat: no-repeat;
  361. z-index: 1;
  362. display: flex;
  363. flex-direction: column;
  364. justify-content: center;
  365. align-items: center;
  366. h2{
  367. max-width: 682px;
  368. width: 70%;
  369. }
  370. .bg1{
  371. position: absolute;
  372. left: 15%;
  373. top: 30%;
  374. animation: floating-diag-1 4s ease-in-out infinite alternate;
  375. }
  376. .bg2{
  377. position: absolute;
  378. right: 5%;
  379. top: 30%;
  380. animation: floating-diag-2 5s ease-in-out infinite alternate;
  381. }
  382. .bg3{
  383. left: 7%;
  384. bottom: 25%;
  385. position: absolute;
  386. animation: floating-diag-3 4.5s ease-in-out infinite alternate;
  387. }
  388. .bg4{
  389. position: absolute;
  390. bottom: 25%;
  391. right: 5%;
  392. animation: floating-diag-4 6s ease-in-out infinite alternate;
  393. }
  394. .evt--box{
  395. margin-top: 50px;
  396. font-weight: 600;
  397. text-align: center;
  398. font-size: 45px;
  399. font-family: 'Pretendard Variable';
  400. color: #ffffff;
  401. line-height: 1.2;
  402. }
  403. }
  404. .evt--circle{
  405. font-family: 'Pretendard Variable';
  406. font-weight: 800;
  407. font-size: 30px;
  408. padding: 20px 40px;
  409. background-color: #00175f;
  410. color: #ffffff;
  411. border-radius: 50%;
  412. margin-bottom: 50px;
  413. display: inline-block;
  414. }
  415. h3{
  416. color: #ffffff;
  417. font-weight: 700;
  418. margin-bottom: 0;
  419. text-align: center;
  420. font-size: 56px;
  421. font-family: 'Pretendard Variable';
  422. }
  423. }
  424. }
  425. .evt--section02-2{
  426. background-color: #007ff6;
  427. position: relative;
  428. overflow: hidden;
  429. .bg1{
  430. position: absolute;
  431. left: 0;
  432. z-index: 2;
  433. bottom: 20%;
  434. max-width: 575px;
  435. width: 40%;
  436. }
  437. .bg2{
  438. max-width: 690px;
  439. width: 40%;
  440. position: absolute;
  441. right: 0;
  442. z-index: 2;
  443. bottom: 10%;
  444. }
  445. &::after{
  446. content: '';
  447. display: inline-block;
  448. bottom: 0;
  449. z-index: 1;
  450. left: 0;
  451. position: absolute;
  452. background: linear-gradient(to bottom, #007ff6, #004dee);
  453. width: 100%;
  454. height: 100%;
  455. }
  456. .section--container{
  457. max-width: 1500px;
  458. margin: 0 auto;
  459. .evt--circle{
  460. font-family: 'Pretendard Variable';
  461. font-weight: 800;
  462. font-size: 30px;
  463. padding: 20px 40px;
  464. background-color: #00175f;
  465. color: #ffffff;
  466. border-radius: 50%;
  467. margin-bottom: 50px;
  468. display: inline-block;
  469. }
  470. h3{
  471. color: #ffffff;
  472. font-weight: 700;
  473. font-size: 56px;
  474. font-family: 'Pretendard Variable';
  475. }
  476. .evt--2{
  477. padding: 120px 0 130px;
  478. position: relative;
  479. background-repeat: no-repeat;
  480. z-index: 20;
  481. display: flex;
  482. flex-direction: column;
  483. justify-content: center;
  484. align-items: center;
  485. h2{
  486. max-width: 789px;
  487. width: 90%;
  488. }
  489. h3{
  490. text-align: center;
  491. margin-bottom: 30px;
  492. }
  493. .evt--box{
  494. margin-top: 60px;
  495. margin-bottom: 70px;
  496. border-radius: 25px;
  497. background-color: rgba(0, 152, 249, 0.4);
  498. box-shadow: 0px 2px 9.5px 0.5px rgba(0, 0, 0, 0.23);
  499. font-weight: 600;
  500. padding: 75px 90px;
  501. font-size: 36px;
  502. font-family: 'Pretendard Variable';
  503. color: #ffffff;
  504. line-height: 1.2;
  505. display: flex;
  506. flex-direction: column;
  507. gap: 25px;
  508. li{
  509. list-style: none;
  510. font-size: 36px;
  511. display: flex;
  512. align-items: center;
  513. width: 100%;
  514. font-weight: 400;
  515. gap: 25px;
  516. .circle{
  517. padding: 10px 40px;
  518. width: 168px;
  519. display: inline-block;
  520. height: 60px;
  521. border-radius: 30px;
  522. background-color: #00A2FB;
  523. text-align: justify;
  524. &::after {
  525. content: "";
  526. display: inline-block;
  527. width: 100%;
  528. }
  529. }
  530. }
  531. }
  532. .evt--box2{
  533. max-width: 470px;
  534. width: 60%;
  535. }
  536. .evt--btn{
  537. border-style: solid;
  538. border-width: 3px;
  539. border-color: rgb(255, 255, 255);
  540. border-radius: 50px;
  541. display: flex;
  542. align-items: center;
  543. justify-content: center;
  544. background-color: #00175f;
  545. box-shadow: 0px 15px 16px 0px rgba(0, 0, 0, 0.14);
  546. max-width: 416px;
  547. width: 100%;
  548. height: 95px;
  549. font-family: 'Pretendard Variable';
  550. font-size: 40px;
  551. font-weight: 800;
  552. text-decoration: none;
  553. color: #ffffff;
  554. }
  555. .bob01{
  556. width:210px;
  557. height:214px;
  558. background: url(../img/bob_01.png) no-repeat center;
  559. animation: bubbleFloat 3s ease-in-out infinite alternate;
  560. }
  561. .bob02{
  562. width:225px;
  563. height:211px;
  564. background: url(../img/bob_02.png) no-repeat center;
  565. animation: bubbleFloat 3s ease-in-out infinite alternate;
  566. }
  567. .bob03{
  568. width:417px;
  569. height:403px;
  570. background: url(../img/bob_03.png) no-repeat center;
  571. animation: bubbleFloat 3s ease-in-out infinite alternate;
  572. }
  573. .bob04{
  574. width:139px;
  575. height:140px;
  576. background: url(../img/bob_04.png) no-repeat center;
  577. animation: bubbleFloat 3s ease-in-out infinite alternate;
  578. }
  579. .bob05{
  580. width:248px;
  581. height:211px;
  582. background: url(../img/bob_05.png) no-repeat center;
  583. animation: bubbleFloat 3s ease-in-out infinite alternate;
  584. }
  585. .bob06{
  586. width:409px;
  587. height:394px;
  588. background: url(../img/bob_06.png) no-repeat center;
  589. animation: bubbleFloat 3s ease-in-out infinite alternate;
  590. }
  591. .bob07{
  592. width:220px;
  593. height:211px;
  594. background: url(../img/bob_07.png) no-repeat center;
  595. animation: bubbleFloat 3s ease-in-out infinite alternate;
  596. }
  597. .bob08{
  598. width:58px;
  599. height:53px;
  600. background: url(../img/bob_08.png) no-repeat center;
  601. animation: bubbleFloat 3s ease-in-out infinite alternate;
  602. }
  603. .bob09{
  604. width:90px;
  605. height:90px;
  606. background: url(../img/bob_09.png) no-repeat center;
  607. animation: bubbleFloat 3s ease-in-out infinite alternate;
  608. }
  609. .bob10{
  610. width:152px;
  611. height:141px;
  612. background: url(../img/bob_10.png) no-repeat center;
  613. animation: bubbleFloat 3s ease-in-out infinite alternate;
  614. }
  615. .bob--wrap01{
  616. position: absolute;
  617. top:50%;
  618. left:50%;
  619. transform: translate(-50%, -50%);
  620. width:210px;
  621. height:214px;
  622. margin-left: 712px;
  623. margin-top: -601px;
  624. animation: bobUp 2.2s cubic-bezier(0.22,1,0.36,1) infinite;
  625. }
  626. .bob--wrap02{
  627. position: absolute;
  628. top:50%;
  629. left:50%;
  630. transform: translate(-50%, -50%);
  631. width:225px;
  632. height:211px;
  633. margin-left: 759px;
  634. margin-top: -153px;
  635. animation: bobUp 1.8s cubic-bezier(0.22,1,0.36,1) infinite;
  636. }
  637. .bob--wrap03{
  638. position: absolute;
  639. top:50%;
  640. left:50%;
  641. transform: translate(-50%, -50%);
  642. margin-left: 568px;
  643. margin-top: 169px;
  644. animation: bobUp 5.5s cubic-bezier(0.22,1,0.36,1) infinite;
  645. }
  646. .bob--wrap04{
  647. position: absolute;
  648. top:50%;
  649. left:50%;
  650. transform: translate(-50%, -50%);
  651. width:139px;
  652. height:140px;
  653. margin-left: -692px;
  654. margin-top: -579px;
  655. animation: bobUp 4.2s cubic-bezier(0.22,1,0.36,1) infinite;
  656. }
  657. .bob--wrap05{
  658. position: absolute;
  659. top:50%;
  660. left:50%;
  661. transform: translate(-50%, -50%);
  662. width:248px;
  663. height:211px;
  664. margin-left: -832px;
  665. margin-top: -216px;
  666. animation: bobUp 3.2s cubic-bezier(0.22,1,0.36,1) infinite;
  667. }
  668. .bob--wrap06{
  669. position: absolute;
  670. top:50%;
  671. left:50%;
  672. transform: translate(-50%, -50%);
  673. width:409px;
  674. height:394px;
  675. margin-left: -1012px;
  676. margin-top: -19px;
  677. animation: bobUp 4s cubic-bezier(0.22,1,0.36,1) infinite;
  678. }
  679. .bob--wrap07{
  680. position: absolute;
  681. top:50%;
  682. left:50%;
  683. transform: translate(-50%, -50%);
  684. width:220px;
  685. height:211px;
  686. margin-left: -682px;
  687. margin-top: 372px;
  688. animation: bobUp 3.2s cubic-bezier(0.22,1,0.36,1) infinite;
  689. }
  690. .bob--wrap08{
  691. position: absolute;
  692. top:50%;
  693. left:50%;
  694. transform: translate(-50%, -50%);
  695. width:58px;
  696. height:53px;
  697. margin-left: -620px;
  698. margin-top: 61px;
  699. animation: bobUp 6.5s cubic-bezier(0.22,1,0.36,1) infinite;
  700. }
  701. .bob--wrap09{
  702. position: absolute;
  703. top:50%;
  704. left:50%;
  705. transform: translate(-50%, -50%);
  706. width:90px;
  707. height:90px;
  708. margin-left: 324px;
  709. margin-top: 586px;
  710. animation: bobUp 7.2s cubic-bezier(0.22,1,0.36,1) infinite;
  711. }
  712. .bob--wrap10{
  713. position: absolute;
  714. top:50%;
  715. left:50%;
  716. transform: translate(-50%, -50%);
  717. width:152px;
  718. height:141px;
  719. margin-left: -440px;
  720. margin-top: 386px;
  721. animation: bobUp 4.2s cubic-bezier(0.22,1,0.36,1) infinite;
  722. }
  723. .tok01{
  724. position: absolute;
  725. top:50%;
  726. left:50%;
  727. transform: translate(-50%, -50%);
  728. width: 66px;
  729. height:66px;
  730. background: url(../img/tok_01.png) no-repeat center;
  731. margin-top: -281px;
  732. margin-left: -857px;
  733. }
  734. .tok02{
  735. position: absolute;
  736. top:50%;
  737. left:50%;
  738. transform: translate(-50%, -50%);
  739. width: 44px;
  740. height:44px;
  741. background: url(../img/tok_02.png) no-repeat center;
  742. margin-top: -431px;
  743. margin-left: -566px;
  744. }
  745. .tok03{
  746. position: absolute;
  747. top:50%;
  748. left:50%;
  749. transform: translate(-50%, -50%);
  750. width: 51px;
  751. height:51px;
  752. background: url(../img/tok_03.png) no-repeat center;
  753. margin-top: 210px;
  754. margin-left: 592px;
  755. }
  756. .tok04{
  757. position: absolute;
  758. top:50%;
  759. left:50%;
  760. transform: translate(-50%, -50%);
  761. width: 56px;
  762. height:56px;
  763. background: url(../img/tok_04.png) no-repeat center;
  764. margin-top: -355px;
  765. margin-left: 753px;
  766. }
  767. .tok05{
  768. position: absolute;
  769. top:50%;
  770. left:50%;
  771. transform: translate(-50%, -50%);
  772. width: 66px;
  773. height:66px;
  774. background: url(../img/tok_05.png) no-repeat center;
  775. margin-top: -475px;
  776. margin-left: 590px;
  777. }
  778. }
  779. }
  780. }
  781. .evt--section03{
  782. overflow: hidden;
  783. background: linear-gradient(to bottom,#5DBBFF 0%, #00A8FF 50%, #5DBBFF 100%);
  784. padding: 150px 0 150px;
  785. position: relative;
  786. &::before{
  787. content: '';
  788. width: 100%;
  789. height: 100%;
  790. position: absolute;
  791. top: 0;
  792. right: 0;
  793. background-position: top;
  794. z-index: 0;
  795. background-repeat: no-repeat;
  796. display: inline-block;
  797. background-image: url(../img/bg_color_2.png);
  798. }
  799. &::after{
  800. content: '';
  801. width: 100%;
  802. height: 100%;
  803. position: absolute;
  804. bottom: 0;
  805. left: 0;
  806. background-position: bottom;
  807. z-index: 0;
  808. background-repeat: no-repeat;
  809. display: inline-block;
  810. background-image: url(../img/bg_color_1.png);
  811. }
  812. .section--container{
  813. max-width: 1280px;
  814. z-index: 10;
  815. position: relative;
  816. margin: 0 auto;
  817. .section--title{
  818. text-align: center;
  819. display: flex;
  820. flex-direction: column;
  821. align-items: center;
  822. margin-bottom: 80px;
  823. h3{
  824. max-width: 750px;
  825. width: 60%;
  826. }
  827. h2{
  828. max-width: 945px;
  829. width: 70%;
  830. }
  831. .circle{
  832. margin-top: 20px;
  833. max-width: 832px;
  834. width: 70%;
  835. }
  836. }
  837. .promotion--wrap{
  838. display: flex;
  839. justify-content: center;
  840. margin-bottom: 120px;
  841. gap: 140px;
  842. .promotion{
  843. width: 400px;
  844. height: 580px;
  845. background-image: url(../img/img_bg_9.png);
  846. background-size: 100%;
  847. background-repeat: no-repeat;
  848. display: flex;
  849. align-items: center;
  850. flex-direction: column;
  851. color: #ffffff;
  852. h4{
  853. font-family: 'Pretendard Variable';
  854. font-size: 56px;
  855. font-weight: 700;
  856. line-height: 210px;
  857. margin-bottom: 0;
  858. }
  859. p{
  860. font-family: 'gmarketSans';
  861. font-size: 45px;
  862. margin-bottom: 0;
  863. }
  864. h5{
  865. line-height: 1.1;
  866. font-family: 'gmarketSans';
  867. font-size: 86px;
  868. font-weight: 800;
  869. margin-bottom: 0;
  870. span{
  871. font-size: 44px;
  872. }
  873. }
  874. }
  875. }
  876. .promotion--detail--wrap{
  877. display: flex;
  878. flex-direction: column;
  879. gap: 80px;
  880. margin-bottom: 460px;
  881. position: relative;
  882. .detail{
  883. color: #373737;
  884. background-color: #fff;
  885. border: 3px solid black;
  886. padding: 70px;
  887. border-radius: 68px;
  888. z-index: 3;
  889. position: relative;
  890. display: flex;
  891. &:nth-child(1){
  892. &::before{
  893. content: '';
  894. position: absolute;
  895. display: inline-block;
  896. width: 318px;
  897. height: 314px;
  898. top: -91px;
  899. left: -48px;
  900. background-repeat: no-repeat;
  901. background-image: url(../img/bg_wave_3.png);
  902. }
  903. }
  904. &:nth-child(2){
  905. &::before{
  906. content: '';
  907. position: absolute;
  908. display: inline-block;
  909. width: 286px;
  910. right: -125px;
  911. top: -36px;
  912. z-index: 10;
  913. height: 380px;
  914. background-repeat: no-repeat;
  915. background-image: url(../img/bg_wave_4.png);
  916. }
  917. }
  918. .detail--l{
  919. width: 70%;
  920. >span{
  921. font-size: 44px;
  922. font-weight: 700;
  923. display: inline-block;
  924. font-family: 'Pretendard Variable';
  925. text-decoration: underline;
  926. margin-bottom: 40px;
  927. }
  928. >h5{
  929. font-family: 'Pretendard Variable';
  930. font-size: 54px;
  931. font-weight: 900;
  932. margin-bottom: 40px;
  933. >span{
  934. color: #6d21ed;
  935. }
  936. }
  937. >ul{
  938. li{
  939. line-height: 1.2;
  940. font-family: 'Pretendard Variable';
  941. font-weight: 500;
  942. font-size: 38px;
  943. }
  944. }
  945. }
  946. .detail--r{
  947. width: 30%;
  948. display: flex;
  949. flex-direction: column;
  950. align-items: flex-end;
  951. justify-content: flex-end;
  952. text-align: right;
  953. >span{
  954. box-shadow: inset -10px -10px 20px rgba(0, 0, 0, 0.4);
  955. background: linear-gradient(135deg, #8324ff, #5a3dfd, #0a5aff);
  956. font-family: 'Pretendard Variable';
  957. font-size: 44px;
  958. font-weight: 800;
  959. width: 130px;
  960. height: 140px;
  961. line-height: 1.2;
  962. display: flex;
  963. align-items: center;
  964. right: 100px;
  965. top: 0;
  966. justify-content: center;
  967. color: #ffffff;
  968. position: absolute;
  969. }
  970. >p{
  971. font-size: 28px;
  972. font-family: 'Pretendard Variable';
  973. font-weight: 500;
  974. margin-bottom: 10px;
  975. }
  976. .before--price{
  977. font-size: 44px;
  978. font-weight: 700;
  979. font-family: 'Pretendard Variable';
  980. position: relative;
  981. &::after{
  982. content: '';
  983. display: inline-block;
  984. width: 267px;
  985. height: 62px;
  986. position: absolute;
  987. top: 50%;
  988. left: -30px;
  989. background-image: url(../img/ico_arrow2.png);
  990. }
  991. }
  992. .after--price{
  993. font-family: 'Pretendard Variable';
  994. font-size: 66px;
  995. color: #6d21ed;
  996. font-weight: 900;
  997. }
  998. }
  999. }
  1000. .detail--plus{
  1001. z-index: 2;
  1002. position: absolute;
  1003. font-size: 38px;
  1004. top: calc(100% - 55px);
  1005. width: 100%;
  1006. border-bottom-left-radius: 50px;
  1007. border-bottom-right-radius: 50px;
  1008. font-family: 'Pretendard Variable';
  1009. background-color: #9EC3FE;
  1010. padding: 100px 60px 60px;
  1011. font-weight: 500;
  1012. margin-bottom: 0;
  1013. li{
  1014. list-style: none;
  1015. position: relative;
  1016. padding-left: 30px;
  1017. &::before{
  1018. top: 0px;
  1019. left: -0px;
  1020. position: absolute;
  1021. content: '*';
  1022. }
  1023. }
  1024. strong{
  1025. font-weight: 800;
  1026. text-decoration: underline;
  1027. }
  1028. }
  1029. }
  1030. .count--wrap{
  1031. display: flex;
  1032. flex-direction: column;
  1033. position: relative;
  1034. z-index: 10;
  1035. align-items: center;
  1036. .count--txt{
  1037. display: flex;
  1038. align-items: flex-end;
  1039. justify-content: center;
  1040. gap: 20px;
  1041. margin-bottom: 90px;
  1042. .img--wrap{
  1043. position: relative;
  1044. .wch--l{
  1045. position: absolute;
  1046. top:0px;
  1047. left:0px;
  1048. width:139px;
  1049. height:122px;
  1050. background: url(../img/wch_l.png) no-repeat center;
  1051. animation: bellRing 1.2s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  1052. transform-origin: 50% 80%; // 종의 아래쪽을 기준으로 흔들림
  1053. }
  1054. .wch--r{
  1055. position: absolute;
  1056. top:0px;
  1057. right:0px;
  1058. width:159px;
  1059. height:121px;
  1060. background: url(../img/wch_r.png) no-repeat center;
  1061. animation: bellRing 1.2s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  1062. transform-origin: 50% 80%; // 종의 아래쪽을 기준으로 흔들림
  1063. }
  1064. &::before{
  1065. content: '';
  1066. display: inline-block;
  1067. width: 144px;
  1068. height: 80px;
  1069. background-repeat: no-repeat;
  1070. background-size: 100%;
  1071. left: -40%;
  1072. top: 30px;
  1073. position: absolute;
  1074. background-image: url(../img/img_15_bg1.png);
  1075. }
  1076. &::after{
  1077. content: '';
  1078. display: inline-block;
  1079. width: 242px;
  1080. height: 177px;
  1081. background-repeat: no-repeat;
  1082. background-size: 100%;
  1083. right: -70%;
  1084. bottom: 100px;
  1085. position: absolute;
  1086. background-image: url(../img/img_15_bg2.png);
  1087. }
  1088. }
  1089. >p{
  1090. color: #ffffff;
  1091. font-family: 'gmarketSans';
  1092. text-align: center;
  1093. font-size: 46px;
  1094. font-weight: 800;
  1095. margin-bottom: 0;
  1096. text-align: center;
  1097. text-shadow: 0px 3px 7px rgba(0, 0, 0, 0.35);
  1098. }
  1099. }
  1100. .count--num{
  1101. display: flex;
  1102. font-family: 'gmarketSans';
  1103. gap: 10px;
  1104. margin-bottom: 140px;
  1105. position: relative;
  1106. .number{
  1107. font-family: 'gmarketSans';
  1108. position: relative;
  1109. display: inline-block;
  1110. font-size: 120px;
  1111. color: #ffffff;
  1112. width: 140px;
  1113. line-height: 1.75;
  1114. font-weight: 800;
  1115. height: 210px;
  1116. border-radius: 20%;;
  1117. box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  1118. &:nth-child(4){
  1119. margin-left: 80px;
  1120. }
  1121. &:nth-child(5){
  1122. margin-right: 80px;
  1123. }
  1124. span{
  1125. display: inline-block;
  1126. width: 100%;
  1127. height: 100%;
  1128. }
  1129. }
  1130. &::before{
  1131. content: '';
  1132. width: 210px;
  1133. left: -300px;
  1134. top: calc(50% - 500px);
  1135. height: 1000px;
  1136. position: absolute;
  1137. top:50%;
  1138. transform: translateY(-50%);
  1139. left:-154px;
  1140. width:62px;
  1141. height:266px;
  1142. background: url(../img/bbl_01.png) no-repeat center;
  1143. animation: shakeX 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  1144. }
  1145. .bbl--eft02{
  1146. position: absolute;
  1147. top:50%;
  1148. transform: translateY(-50%);
  1149. left:-226px;
  1150. width:106px;
  1151. height:427px;
  1152. background: url(../img/bbl_02.png) no-repeat center;
  1153. animation: shakeX 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  1154. }
  1155. .bbl--eft03{
  1156. position: absolute;
  1157. top:50%;
  1158. transform: translateY(-50%);
  1159. left:-303px;
  1160. width:146px;
  1161. height:550px;
  1162. background: url(../img/bbl_03.png) no-repeat center;
  1163. animation: shakeX 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  1164. }
  1165. .bbl--eft04{
  1166. position: absolute;
  1167. top:50%;
  1168. transform: rotate(180deg) translateY(-50%);
  1169. transform-origin: top;
  1170. right:-154px;
  1171. width:62px;
  1172. height:266px;
  1173. background: url(../img/bbl_01.png) no-repeat center;
  1174. animation: shakeX2 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  1175. }
  1176. .bbl--eft05{
  1177. position: absolute;
  1178. top:50%;
  1179. transform:rotate(180deg) translateY(-50%);
  1180. transform-origin: top;
  1181. right:-226px;
  1182. width:106px;
  1183. height:427px;
  1184. background: url(../img/bbl_02.png) no-repeat center;
  1185. animation: shakeX2 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  1186. }
  1187. .bbl--eft06{
  1188. position: absolute;
  1189. top:50%;
  1190. transform:rotate(180deg) translateY(-50%);
  1191. transform-origin: top;
  1192. right:-303px;
  1193. width:146px;
  1194. height:550px;
  1195. background: url(../img/bbl_03.png) no-repeat center;
  1196. animation: shakeX2 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  1197. }
  1198. // &::before{
  1199. // content: '';
  1200. // width: 210px;
  1201. // left: -300px;
  1202. // top: calc(50% - 500px);
  1203. // height: 1000px;
  1204. // position: absolute;
  1205. // background-repeat: no-repeat;
  1206. // background-position: center;
  1207. // background-image: url(../img/img_bg_10.png);
  1208. // }
  1209. // &::after{
  1210. // content: '';
  1211. // width: 210px;
  1212. // right: -300px;
  1213. // top: calc(50% - 500px);
  1214. // height: 1000px;
  1215. // position: absolute;
  1216. // background-repeat: no-repeat;
  1217. // background-position: center;
  1218. // transform: rotate(180deg);
  1219. // background-image: url(../img/img_bg_10.png);
  1220. // }
  1221. div{
  1222. display: flex;
  1223. gap: 30px;
  1224. align-items: center;
  1225. span{
  1226. font-size: 120px;
  1227. color: #ffffff;
  1228. background-color: #7F1BF2;
  1229. width: 140px;
  1230. font-weight: 800;
  1231. height: 210px;
  1232. display: inline-block;
  1233. line-height: 2;
  1234. text-align: center;
  1235. box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  1236. border-radius: 30px;
  1237. position: relative;
  1238. z-index: 30;
  1239. perspective: 600px;
  1240. overflow: hidden;
  1241. &.flip{
  1242. animation: flipDown 0.5s ease-in-out;
  1243. }
  1244. &::before {
  1245. content: '';
  1246. width: 100%;
  1247. z-index: -1;
  1248. display: inline-block;
  1249. left: 0;
  1250. top: 0;
  1251. border-top-left-radius: 30px;
  1252. border-top-right-radius: 30px;
  1253. height: 50%;
  1254. background-color: #8b2ef4;
  1255. position: absolute;
  1256. }
  1257. }
  1258. }
  1259. }
  1260. .evt--btn{
  1261. border-style: solid;
  1262. border-width: 3px;
  1263. border-color: rgb(255, 255, 255);
  1264. border-radius: 50px;
  1265. display: flex;
  1266. align-items: center;
  1267. z-index: 10;
  1268. justify-content: center;
  1269. background-color: #00175f;
  1270. box-shadow: 0px 15px 16px 0px rgba(0, 0, 0, 0.14);
  1271. max-width: 416px;
  1272. width: 100%;
  1273. height: 95px;
  1274. font-family: 'Pretendard Variable';
  1275. font-size: 40px;
  1276. font-weight: 800;
  1277. text-decoration: none;
  1278. color: #ffffff;
  1279. }
  1280. }
  1281. }
  1282. }
  1283. /*===============================================
  1284. 에니메이션
  1285. ===============================================*/
  1286. .floating {
  1287. animation: floating 3s ease-in-out infinite;
  1288. }
  1289. @keyframes bobUp {
  1290. 0% { transform: translateY(120vh); opacity: 0; }
  1291. 80% { opacity: 1; }
  1292. 100% { transform: translateY(0); opacity: 1; }
  1293. }
  1294. // 둥둥 떠있는 효과
  1295. @keyframes bubbleFloat {
  1296. 0% { transform: translateY(0) scale(1);}
  1297. 50% { transform: translateY(-12px) scale(1.05);}
  1298. 100% { transform: translateY(0) scale(1);}
  1299. }
  1300. @keyframes floating {
  1301. 0% { transform: translateY(0px); }
  1302. 50% { transform: translateY(-20px); }
  1303. 100% { transform: translateY(0px); }
  1304. }
  1305. @keyframes fadeUpLogo {
  1306. to {
  1307. opacity: 1;
  1308. transform: translateY(0);
  1309. }
  1310. }
  1311. @keyframes fadeInRightH1 {
  1312. to {
  1313. opacity: 1;
  1314. transform: translateX(0);
  1315. }
  1316. }
  1317. @keyframes fadeInLeftH2 {
  1318. to {
  1319. opacity: 1;
  1320. transform: translateX(0);
  1321. }
  1322. }
  1323. @keyframes fadeUpH3 {
  1324. to {
  1325. opacity: 1;
  1326. transform: translateY(0);
  1327. }
  1328. }
  1329. @keyframes waveInRight {
  1330. 0% {
  1331. opacity: 0;
  1332. transform: translateX(-100px);
  1333. }
  1334. 60% {
  1335. opacity: 1;
  1336. transform: translateX(20px);
  1337. }
  1338. 100% {
  1339. opacity: 1;
  1340. transform: translateX(0);
  1341. }
  1342. }
  1343. @keyframes cloudMoveLeftToRight {
  1344. 0% {
  1345. opacity: 0;
  1346. transform: translateX(-100px);
  1347. }
  1348. 10% {
  1349. opacity: 1;
  1350. transform: translateX(0px);
  1351. }
  1352. 90% {
  1353. opacity: 1;
  1354. transform: translateX(300px);
  1355. }
  1356. 100% {
  1357. opacity: 0;
  1358. transform: translateX(400px);
  1359. }
  1360. }
  1361. @keyframes floating-diag-1 {
  1362. 0% { transform: translate(0, 0); }
  1363. 20% { transform: translate(-10px, 10px);}
  1364. 40% { transform: translate(10px, -10px);}
  1365. 60% { transform: translate(-10px, -10px);}
  1366. 80% { transform: translate(10px, 10px);}
  1367. 100% { transform: translate(0, 0);}
  1368. }
  1369. @keyframes floating-diag-2 {
  1370. 0% { transform: translate(0, 0); }
  1371. 25% { transform: translate(12px, -8px);}
  1372. 50% { transform: translate(-12px, 8px);}
  1373. 75% { transform: translate(8px, 12px);}
  1374. 100% { transform: translate(0, 0);}
  1375. }
  1376. @keyframes floating-diag-3 {
  1377. 0% { transform: translate(0, 0);}
  1378. 30% { transform: translate(-8px, 12px);}
  1379. 60% { transform: translate(8px, -12px);}
  1380. 100% { transform: translate(0, 0);}
  1381. }
  1382. @keyframes floating-diag-4 {
  1383. 0% { transform: translate(0, 0);}
  1384. 20% { transform: translate(10px, 10px);}
  1385. 40% { transform: translate(-10px, -10px);}
  1386. 60% { transform: translate(10px, -10px);}
  1387. 80% { transform: translate(-10px, 10px);}
  1388. 100% { transform: translate(0, 0);}
  1389. }
  1390. @keyframes shakeX {
  1391. 0% { transform: translateY(-50%) translateX(0); }
  1392. 10%, 30%, 50%, 70%, 90% { transform: translateY(-50%) translateX(-8px); }
  1393. 20%, 40%, 60%, 80% { transform: translateY(-50%) translateX(8px); }
  1394. 100% { transform: translateY(-50%) translateX(0); }
  1395. }
  1396. @keyframes shakeX2 {
  1397. 0% { transform: rotate(180deg) translateY(-50%) translateX(0); }
  1398. 10%, 30%, 50%, 70%, 90% { transform: rotate(180deg) translateY(-50%) translateX(-8px); }
  1399. 20%, 40%, 60%, 80% { transform: rotate(180deg) translateY(-50%) translateX(8px); }
  1400. 100% { transform: rotate(180deg) translateY(-50%) translateX(0); }
  1401. }
  1402. @keyframes bellRing {
  1403. 0% { transform: rotate(0deg); }
  1404. 10% { transform: rotate(-18deg); }
  1405. 20% { transform: rotate(16deg); }
  1406. 30% { transform: rotate(-12deg); }
  1407. 40% { transform: rotate(10deg); }
  1408. 50% { transform: rotate(-6deg); }
  1409. 60% { transform: rotate(4deg); }
  1410. 70% { transform: rotate(-2deg); }
  1411. 80%, 100% { transform: rotate(0deg); }
  1412. }
  1413. @media(max-width: 1480px){
  1414. .section--container{
  1415. padding: 0 20px;
  1416. }
  1417. .evt--section01{
  1418. .section--container{
  1419. .swiper--wrap{
  1420. .swiper-button-next,
  1421. .swiper-button-prev{
  1422. display: none;
  1423. }
  1424. .slide--desc{
  1425. padding: 25px 50px!important;
  1426. min-height: 300px;
  1427. height: auto;
  1428. h4{
  1429. font-size: 32px;
  1430. span{
  1431. font-size: 20px;
  1432. }
  1433. }
  1434. p{
  1435. font-size: 18px;
  1436. }
  1437. }
  1438. }
  1439. }
  1440. }
  1441. .evt--section02-1{
  1442. .section--container{
  1443. .evt--1{
  1444. .bg1{
  1445. left: 0;
  1446. img{
  1447. width: 80%;
  1448. }
  1449. }
  1450. .bg2{
  1451. right: -10%;
  1452. img{
  1453. width: 80%;
  1454. }
  1455. }
  1456. .bg3{
  1457. left: 0;
  1458. bottom: 45%;
  1459. img{
  1460. width: 80%;
  1461. }
  1462. }
  1463. .bg4{
  1464. bottom: 40%;
  1465. right: -10%;
  1466. img{
  1467. width: 80%;
  1468. }
  1469. }
  1470. }
  1471. }
  1472. }
  1473. }
  1474. @media(max-width: 1200px){
  1475. .evt--section01{
  1476. .section--container{
  1477. .swiper--wrap{
  1478. .swiper--tab--wrap{
  1479. .tab--btn{
  1480. font-size: 18px;
  1481. height: 68px;
  1482. }
  1483. }
  1484. }
  1485. }
  1486. }
  1487. .evt--section02-1{
  1488. .section--container{
  1489. h3{
  1490. font-size: 36px;
  1491. }
  1492. .evt--1{
  1493. .bg1{
  1494. img{
  1495. width: 50%;
  1496. }
  1497. }
  1498. .bg2{
  1499. top: 40%;
  1500. right: -30%;
  1501. img{
  1502. width: 50%;
  1503. }
  1504. }
  1505. .bg3{
  1506. img{
  1507. width: 50%;
  1508. }
  1509. }
  1510. .bg4{
  1511. right: -240px;
  1512. img{
  1513. width: 50%;
  1514. }
  1515. }
  1516. }
  1517. }
  1518. }
  1519. .evt--section02-2{
  1520. .bg1{
  1521. bottom: auto;
  1522. top: 5%;
  1523. }
  1524. .bg2{
  1525. bottom: auto;
  1526. top: 5%;
  1527. }
  1528. .section--container{
  1529. h3{
  1530. font-size: 36px;
  1531. }
  1532. .evt--2{
  1533. h2{
  1534. max-width:551px;
  1535. }
  1536. .evt--box{
  1537. padding: 30px;
  1538. li{
  1539. font-size: 30px;
  1540. }
  1541. }
  1542. .bob--wrap01{
  1543. margin-left: 402px;
  1544. margin-top: -441px;
  1545. }
  1546. .bob--wrap02{
  1547. margin-left: 452px;
  1548. margin-top: -231px;
  1549. }
  1550. .bob--wrap03{
  1551. margin-left: 262px;
  1552. margin-top: -131px;
  1553. }
  1554. .bob--wrap04{
  1555. margin-left: -498px;
  1556. margin-top: -411px;
  1557. }
  1558. .bob--wrap05{
  1559. margin-left: -618px;
  1560. margin-top: -261px;
  1561. }
  1562. .bob--wrap06{
  1563. margin-left: -748px;
  1564. margin-top: -231px;
  1565. }
  1566. .bob--wrap07{
  1567. margin-left: -479px;
  1568. margin-top: -11px;
  1569. }
  1570. .tok05{
  1571. transform: scale(.5);
  1572. margin-top: -335px;
  1573. margin-left: 370px;
  1574. }
  1575. .tok04{
  1576. transform: scale(.5);
  1577. margin-top: -275px;
  1578. margin-left: 430px;
  1579. }
  1580. .tok03{
  1581. transform: scale(.5);
  1582. margin-top: -45px;
  1583. margin-left: 338px;
  1584. }
  1585. .tok02{
  1586. transform: scale(.5);
  1587. margin-top: -291px;
  1588. margin-left: -376px;
  1589. }
  1590. .tok01{
  1591. transform: scale(.5);
  1592. margin-top: -191px;
  1593. margin-left: -606px;
  1594. }
  1595. }
  1596. }
  1597. }
  1598. .evt--section03{
  1599. .section--container{
  1600. .promotion--detail--wrap{
  1601. gap: 40px;
  1602. .detail{
  1603. padding: 50px;
  1604. .detail--l{
  1605. >span{
  1606. font-size: 32px;
  1607. margin-bottom: 20px;
  1608. }
  1609. >h5{
  1610. font-size: 48px;
  1611. line-height: 1.4;
  1612. }
  1613. >ul{
  1614. padding-left: 24px;
  1615. li{
  1616. font-size: 24px;
  1617. line-height: 1.4;
  1618. }
  1619. }
  1620. }
  1621. .detail--r{
  1622. >span{
  1623. right: 50px;
  1624. }
  1625. >p{
  1626. font-size: 24px;
  1627. }
  1628. .before--price{
  1629. font-size: 32px;
  1630. &::after{
  1631. transform: scaleX(-1);
  1632. left: auto;
  1633. right: -10px;
  1634. }
  1635. }
  1636. .after--price{
  1637. font-size: 48px;
  1638. }
  1639. }
  1640. }
  1641. .detail--plus{
  1642. font-size: 24px;
  1643. li{
  1644. padding-left: 20px;
  1645. }
  1646. }
  1647. }
  1648. .count--wrap{
  1649. > p{
  1650. font-size: 30px;
  1651. }
  1652. .count--txt{
  1653. >p{
  1654. font-size: 30px;
  1655. }
  1656. }
  1657. .count--num{
  1658. width: 100%;
  1659. justify-content: center;
  1660. .number{
  1661. font-size: 100px;
  1662. width: 120px;
  1663. height: 174px;
  1664. &:nth-child(4){
  1665. margin-left: 40px;
  1666. }
  1667. &:nth-child(5){
  1668. margin-right: 40px;
  1669. }
  1670. }
  1671. }
  1672. }
  1673. }
  1674. }
  1675. @keyframes bobUp {
  1676. 0% { transform: translateY(120vh) scale(.5); opacity: 0; }
  1677. 80% { opacity: 1; }
  1678. 100% { transform: translateY(0) scale(.5); opacity: 1; }
  1679. }
  1680. }
  1681. @media(max-width: 1000px){
  1682. .evt--section01{
  1683. .section--container{
  1684. .section--title{
  1685. .bg2{
  1686. left: -30px;
  1687. bottom: -60px;
  1688. img{
  1689. }
  1690. }
  1691. .bg4{
  1692. bottom: auto;
  1693. top: 0px;
  1694. right: -30px;
  1695. img{
  1696. width: 80%;
  1697. }
  1698. }
  1699. }
  1700. .swiper--wrap{
  1701. .swiper--tab--wrap{
  1702. overflow-x: auto;
  1703. white-space: nowrap;
  1704. width: auto;
  1705. .tab--btn{
  1706. width: fit-content;
  1707. height: auto;
  1708. padding: 15px 15px 10px;
  1709. flex-shrink: 0;
  1710. &:first-child{
  1711. &::before{
  1712. font-size: 10px;
  1713. }
  1714. }
  1715. }
  1716. }
  1717. .swiper-pagination{
  1718. span{
  1719. width: 24px;
  1720. height: 24px;
  1721. }
  1722. }
  1723. .slide--desc{
  1724. padding: 25px 15px!important;
  1725. min-height: 240px;
  1726. h4{
  1727. font-size: 24px;
  1728. margin-bottom: 15px;
  1729. span{
  1730. font-size: 16px;
  1731. }
  1732. }
  1733. p{
  1734. margin-bottom: 15px;
  1735. font-size: 14px;
  1736. }
  1737. }
  1738. }
  1739. }
  1740. }
  1741. .evt--section03{
  1742. .section--container{
  1743. .promotion--wrap{
  1744. gap: 20px;
  1745. .promotion{
  1746. h4{
  1747. font-size: 32px;
  1748. }
  1749. p{
  1750. font-size: 32px;
  1751. }
  1752. h5{
  1753. font-size: 72px;
  1754. }
  1755. }
  1756. }
  1757. .promotion--detail--wrap{
  1758. gap: 20px;
  1759. .detail{
  1760. .detail--l{
  1761. >span{
  1762. font-size: 24px;
  1763. margin-bottom: 15px;
  1764. }
  1765. >h5{
  1766. font-size: 36px;
  1767. }
  1768. >ul{
  1769. li{
  1770. font-size: 18px;
  1771. }
  1772. }
  1773. }
  1774. .detail--r{
  1775. >span{
  1776. font-size: 24px;
  1777. width: 80px;
  1778. height: 90px;
  1779. }
  1780. >p{
  1781. font-size: 18px;
  1782. }
  1783. .before--price{
  1784. font-size: 24px;
  1785. &::after{
  1786. right: -10px;
  1787. height: 50px;
  1788. top: 15px;
  1789. background-size: cover;
  1790. width: 210px;
  1791. background-position: left;
  1792. transform: scaleX(1);
  1793. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='50' viewBox='0 0 88 20' fill='none'%3E%3Cpath d='M1 1V0.5H0.265087L0.534922 1.18358L1 1ZM8.5 20L9.34929 14.2893L3.97904 16.4091L8.5 20ZM87.5 1V0.5H1V1V1.5H87.5V1ZM1 1L0.534922 1.18358L6.38267 15.9979L6.84775 15.8143L7.31283 15.6307L1.46508 0.816417L1 1Z' fill='%23373737'/%3E%3C/svg%3E");
  1794. }
  1795. }
  1796. .after--price{
  1797. font-size: 36px;
  1798. }
  1799. }
  1800. }
  1801. .detail--plus{
  1802. padding: 80px 30px 30px;
  1803. font-size: 18px;
  1804. }
  1805. }
  1806. .count--wrap{
  1807. .count--txt{
  1808. margin-bottom: 50px;
  1809. flex-direction: column;
  1810. align-items: center;
  1811. .img--wrap{
  1812. width: 50%;
  1813. &::before{
  1814. width: 70px;
  1815. top: 0px;
  1816. }
  1817. &::after{
  1818. bottom: auto;
  1819. width: 100px;
  1820. right: -50%;
  1821. top: 50%;
  1822. transform: translateY(-50%);
  1823. }
  1824. }
  1825. }
  1826. .count--num{
  1827. gap: 5px;
  1828. .number{
  1829. font-size: 60px;
  1830. line-height: 2;
  1831. width: 90px;
  1832. height: 120px;
  1833. &:nth-child(4){
  1834. margin-left: 20px;
  1835. }
  1836. &:nth-child(5){
  1837. margin-right: 20px;
  1838. }
  1839. }
  1840. }
  1841. }
  1842. }
  1843. }
  1844. }
  1845. @media(max-width: 767px){
  1846. .evt--section01{
  1847. .section--container{
  1848. .section--title{
  1849. .bg--wave--wrap{
  1850. top: 120px;
  1851. .bg--wave{
  1852. height: 300px;
  1853. width: 450px;
  1854. .bg--wave2{
  1855. display: none;
  1856. }
  1857. }
  1858. }
  1859. }
  1860. }
  1861. }
  1862. .evt--section02-1{
  1863. .section--container{
  1864. .evt--1{
  1865. .bg1{
  1866. top: 10%;
  1867. }
  1868. .bg2{
  1869. right: -320px;
  1870. top: 5%;
  1871. }
  1872. .bg3{
  1873. bottom: auto;
  1874. top: 30%;
  1875. }
  1876. .bg4{
  1877. bottom: auto;
  1878. right: -240px;
  1879. top: 35%;
  1880. }
  1881. .evt--circle{
  1882. font-size: 18px;
  1883. padding: 10px 20px;
  1884. margin-bottom: 30px;
  1885. }
  1886. h3{
  1887. font-size: 20px;
  1888. }
  1889. }
  1890. }
  1891. }
  1892. .evt--section02-2{
  1893. .section--container{
  1894. .evt--2{
  1895. .evt--box{
  1896. width: 100%;
  1897. li{
  1898. gap: 10px;
  1899. font-size: 18px;
  1900. .circle{
  1901. padding: 10px 30px;
  1902. height: auto;
  1903. width: auto;
  1904. &::after{
  1905. display: none;
  1906. }
  1907. }
  1908. }
  1909. }
  1910. .evt--circle{
  1911. font-size: 18px;
  1912. padding: 10px 20px;
  1913. margin-bottom: 30px;
  1914. }
  1915. h3{
  1916. font-size: 20px;
  1917. }
  1918. .evt--btn{
  1919. font-size: 24px;
  1920. height: 80px;
  1921. }
  1922. .bob--wrap01{
  1923. margin-left: 212px;
  1924. margin-top: -441px;
  1925. }
  1926. .bob--wrap02{
  1927. margin-left: 232px;
  1928. margin-top: -231px;
  1929. }
  1930. .bob--wrap03{
  1931. margin-left: 112px;
  1932. margin-top: -81px;
  1933. }
  1934. .bob--wrap04{
  1935. margin-left: -398px;
  1936. margin-top: -411px;
  1937. }
  1938. .bob--wrap05{
  1939. margin-left: -458px;
  1940. margin-top: -261px;
  1941. }
  1942. .bob--wrap06{
  1943. margin-left: -708px;
  1944. margin-top: -231px;
  1945. }
  1946. .bob--wrap07{
  1947. margin-left: -479px;
  1948. margin-top: -11px;
  1949. }
  1950. .tok05{
  1951. transform: scale(.5);
  1952. margin-top: -335px;
  1953. margin-left: 370px;
  1954. }
  1955. .tok04{
  1956. transform: scale(.5);
  1957. margin-top: -275px;
  1958. margin-left: 430px;
  1959. }
  1960. .tok03{
  1961. transform: scale(.5);
  1962. margin-top: -45px;
  1963. margin-left: 338px;
  1964. }
  1965. .tok02{
  1966. transform: scale(.5);
  1967. margin-top: -291px;
  1968. margin-left: -376px;
  1969. }
  1970. .tok01{
  1971. transform: scale(.5);
  1972. margin-top: -191px;
  1973. margin-left: -606px;
  1974. }
  1975. }
  1976. }
  1977. }
  1978. .evt--section03{
  1979. .section--container{
  1980. .promotion--wrap{
  1981. margin-bottom: 40px;
  1982. .promotion{
  1983. height: 450px;
  1984. h4{
  1985. font-size: 20px;
  1986. line-height: 24vw;
  1987. }
  1988. p{
  1989. font-size: 20px;
  1990. }
  1991. h5{
  1992. font-size: 48px;
  1993. }
  1994. }
  1995. }
  1996. .promotion--detail--wrap{
  1997. .detail{
  1998. flex-direction: column;
  1999. padding: 30px;
  2000. gap: 15px;
  2001. border-radius: 20px;
  2002. &::before{
  2003. display: none!important;
  2004. }
  2005. .detail--l{
  2006. width: 100%;
  2007. >span{
  2008. font-size: 18px;
  2009. }
  2010. >h5{
  2011. font-size: 24px;
  2012. margin-bottom: 20px;
  2013. }
  2014. }
  2015. .detail--r{
  2016. width: 100%;
  2017. >span{
  2018. font-size: 18px;
  2019. width: 60px;
  2020. height: 70px;
  2021. right: 30px;
  2022. }
  2023. >p{
  2024. margin-bottom: 0;
  2025. }
  2026. .before--price{
  2027. font-size: 18px;
  2028. &::after{
  2029. width: 140px;
  2030. height: 30px;
  2031. top: 12px;
  2032. }
  2033. }
  2034. .after--price{
  2035. font-size: 24px;
  2036. }
  2037. }
  2038. }
  2039. .detail--plus{
  2040. border-bottom-left-radius: 20px;
  2041. border-bottom-right-radius: 20px;
  2042. font-size: 14px;
  2043. }
  2044. }
  2045. .count--wrap{
  2046. .evt--btn{
  2047. font-size: 24px;
  2048. height: 80px;
  2049. }
  2050. .count--txt{
  2051. >p{
  2052. font-size: 20px;
  2053. }
  2054. .img--wrap{
  2055. .wch--l{
  2056. top:-60px;
  2057. left:-30px;
  2058. }
  2059. .wch--r{
  2060. top:-60px;
  2061. right:-40px;
  2062. }
  2063. }
  2064. }
  2065. .count--num{
  2066. .number{
  2067. font-size: 40px;
  2068. width: 60px;
  2069. height: 80px;
  2070. }
  2071. }
  2072. }
  2073. }
  2074. }
  2075. @keyframes bellRing {
  2076. 0% { transform:scale(.5) rotate(0deg); }
  2077. 10% { transform:scale(.5) rotate(-18deg); }
  2078. 20% { transform:scale(.5) rotate(16deg); }
  2079. 30% { transform:scale(.5) rotate(-12deg); }
  2080. 40% { transform:scale(.5) rotate(10deg); }
  2081. 50% { transform:scale(.5) rotate(-6deg); }
  2082. 60% { transform:scale(.5) rotate(4deg); }
  2083. 70% { transform:scale(.5) rotate(-2deg); }
  2084. 80%, 100% { transform:scale(.5) rotate(0deg); }
  2085. }
  2086. }
  2087. @media(max-width: 500px){
  2088. .evt--section01{
  2089. .section--container{
  2090. .swiper--wrap{
  2091. margin-bottom: 50px;
  2092. .swiper--tab--wrap{
  2093. .tab--btn{
  2094. font-size: 16px;
  2095. }
  2096. }
  2097. .swiper-pagination{
  2098. span{
  2099. width: 14px;
  2100. height: 14px;
  2101. margin: 0 5px;
  2102. }
  2103. }
  2104. .slide--desc{
  2105. padding: 25px 15px!important;
  2106. min-height: 200px;
  2107. height: 100%;
  2108. h4{
  2109. font-size: 18px;
  2110. span{
  2111. font-size: 12px;
  2112. }
  2113. }
  2114. p{
  2115. font-size: 14px;
  2116. }
  2117. }
  2118. }
  2119. }
  2120. }
  2121. .evt--section02-1{
  2122. .section--container{
  2123. .evt--1{
  2124. .bg1{
  2125. img{
  2126. }
  2127. }
  2128. .bg2{
  2129. top: 2%;
  2130. right: -360px;
  2131. img{
  2132. width: 45%;
  2133. }
  2134. }
  2135. .bg3{
  2136. top: 32%;
  2137. }
  2138. }
  2139. }
  2140. }
  2141. .evt--section02-2{
  2142. .section--container{
  2143. .evt--2{
  2144. .evt--box{
  2145. li{
  2146. font-size: 14px;
  2147. .circle{
  2148. padding: 5px 15px;
  2149. white-space: nowrap;
  2150. }
  2151. }
  2152. padding: 20px;
  2153. }
  2154. .bob--wrap01{
  2155. margin-left: 10%;
  2156. margin-top: -120%;
  2157. }
  2158. .bob--wrap02{
  2159. margin-left: 10%;
  2160. margin-top: -231px;
  2161. }
  2162. .bob--wrap03{
  2163. margin-left: -14%;
  2164. margin-top: -81px;
  2165. }
  2166. .bob--wrap04{
  2167. margin-left: -60%;
  2168. margin-top: -120%;
  2169. }
  2170. .bob--wrap05{
  2171. margin-left: -80%;
  2172. margin-top: -70%;
  2173. }
  2174. .bob--wrap06{
  2175. margin-left: -120%;
  2176. margin-top: -70%;
  2177. }
  2178. .bob--wrap07{
  2179. margin-left: -80%;
  2180. margin-top:0%;
  2181. }
  2182. }
  2183. }
  2184. }
  2185. .evt--section03{
  2186. .section--container{
  2187. .promotion--wrap{
  2188. .promotion{
  2189. height: 300px;
  2190. h4{
  2191. font-size: 16px;
  2192. margin-bottom: 0px;
  2193. line-height: 22vw;
  2194. }
  2195. p{
  2196. font-size: 16px;
  2197. margin-bottom: 0px;
  2198. }
  2199. h5{
  2200. font-size: 36px;
  2201. span{
  2202. font-size: 24px;
  2203. }
  2204. }
  2205. }
  2206. }
  2207. .count--wrap{
  2208. .count--num{
  2209. .number{
  2210. font-size: 24px;
  2211. height: 72px;
  2212. line-height: 3;
  2213. &:nth-child(4){
  2214. margin-left: 10px;
  2215. }
  2216. &:nth-child(5){
  2217. margin-right: 10px;
  2218. }
  2219. }
  2220. }
  2221. }
  2222. }
  2223. }
  2224. @keyframes bobUp {
  2225. 0% { transform: translateY(120vh) scale(.3); opacity: 0; }
  2226. 80% { opacity: 1; }
  2227. 100% { transform: translateY(0) scale(.3); opacity: 1; }
  2228. }
  2229. }