style.css 62 KB

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