| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301 |
- @charset "UTF-8";
- @use 'animation';
- img{
- width: 100%;
- }
- .evt--section01{
- background-color: #00b6ff;
- background-repeat: no-repeat;
- background-size: 100%;
- position: relative;
- overflow: hidden;
- .palm--img1{
- position: absolute;
- top: -3%;
- left: 0;
- max-width: 495px;
- width: 50%;
- z-index:10;
- }
- .palm--img2{
- z-index:10;
- position: absolute;
- right: -60px;
- top: -3%;
- width: 50%;
- max-width: 500px;
- }
- .bubble--bg{
- z-index:10;
- position: absolute;
- background-image: url(../img/img_bg_3.png);
- width: 231px;
- height: 95px;
- bottom: -500px;
- left: -231px;
- }
- .wave--bg{
- position: absolute;
- background-size: 100%;
- background-position: 0 -120px;
- background-image: url(../img/bg_2.png);
- width: 100%;
- height: 5000px;
- }
- .section--container{
- max-width: 1440px;
- margin: 0 auto;
- position: relative;
- .section--title{
- margin-top: 150px;
- margin-bottom: 150px;
- display: flex;
- flex-direction: column;
- position: relative;
- z-index: 11;
- align-items: center;
- .logo{
- max-width: 290px;
- width: 40%;
- margin-bottom: 80px;
- // opacity: 0;
- // transform: translateY(60px);
- // animation: fadeUpLogo 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
- }
- >h1{
- margin-bottom: 30px;
- // opacity: 0;
- // transform: translateX(-60px);
- // animation: fadeInRightH1 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
- }
- >h2{
- opacity: 0;
- // transform: translateX(60px);
- // animation: fadeInLeftH2 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
- // margin-bottom: 100px;
- }
- >h3{
- opacity: 0;
- transform: translateY(60px);
- animation: fadeUpH3 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
- max-width: 716px;
- width: 80%;
- }
- .bg1{
- position: absolute;
- left: -200px;
- top: 0px;
- }
- .bg2{
- position: absolute;
- left: -230px;
- bottom: -200px;
- }
- .bg4{
- position: absolute;
- right: -200px;
- bottom: -60px;
-
-
- }
- .bg--wave--wrap{
- position: absolute;
- right: -90px;
- top: 50px;
- .bg--wave{
- position: relative;
- width: 900px;
- height: 550px;
- .bg--wave1{
- position: absolute;
- z-index: -1;
- // opacity: 0;
- // transform: translateX(-100px);
- // animation: waveInRight 1.4s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
- }
- .bg--wave2{
- position: absolute;
- width: 316px;
- right: 60px;
- top: 103px;
- // opacity: 0;
- // transform: translateX(-100px);
- // animation: waveInRight 1.5s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
- }
- }
- }
- }
- .video--wrap{
- max-width: 1440px;
- margin: 0 auto 120px;
- overflow: hidden;
- max-height: 90vh;
- background-color: black;
- border: 3px solid #ffffff;
- border-radius: 2px;
- display: flex;
- justify-content: center;
- align-items: center;
- box-sizing: border-box;
- position: relative;
- z-index: 5;
- video{
- aspect-ratio: 4 / 3;
- z-index: 5;
- width: 100%;
- position: relative;
- vertical-align: top;
- }
- .bg5{
- position: absolute;
- top: -100px;
- left: -340px;
- z-index: 2;
- }
- .video--btn{
- display: none;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- max-width: 230px;
- max-height: 230px;
- width: 20vw;
- height: 20vw;
- z-index: 10;
- height: 230px;
- cursor: pointer;
- background-repeat: no-repeat;
- background-position: center;
- background-size: 100%;
- background-image: url(../img/ico_play.png);
- &.play{
- display: block;
- }
- }
- }
- .swiper--wrap{
- position: relative;
- margin-bottom: 200px;
- box-shadow: 16px 12px 32px rgba(68, 68, 68, 0.15);
- .bg1{
- position: absolute;
- right: -180px;
- top: -30px;
- }
- .bg2{
- position: absolute;
- left: -160px;
- top: 50%;
- }
- .bg3{
- position: absolute;
- right: -260px;
- bottom: 30%;
- }
- .swiper--tab--wrap{
- display: flex;
- gap: 5px;
- .tab--btn{
- background-color: #fff;
- border: none;
- border-top-left-radius: 15px;
- border-top-right-radius: 15px;
- text-align: center;
- width: 100%;
- position: relative;
- font-weight: 500;
- font-family: 'GmarketSans';
- height: 80px;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 28px;
- padding: 0;
- color: #787878;
- box-shadow: 0px -2px 5px 0px rgba(0, 0, 0, 0.15) inset;
- &:first-child,
- &:nth-child(2),
- &:nth-child(3){
- &::before{
- content: 'NEW';
- font-size: 14px;
- margin-top: -5px;
- margin-right: 5px;
- }
- }
- &::after{
- content: '';
- display: inline-block;
- width: 100%;
- bottom: 0;
- position: absolute;
- }
- &.active{
- background-color: #0000ff;
- font-weight: 700;
- color: #ffde00;
- }
- }
- }
- .swiper-slide{
- display: flex;
- justify-content: center;
- }
- .slide--img{
- position: relative;
- .new--icon{
- display: inline-block;
- position: absolute;
- width: 10%;
- padding-bottom: 11%;
- background-repeat: no-repeat;
- bottom: 5%;
- right: 6%;
- background-image: url(../img/ico_new.png);
- max-width: 130px;
- max-height: 130px;
- background-size: 100%;
- }
- }
- .slide--desc{
- padding: 70px 100px;
- height: 380px;
- background-color: #fff;
- &.type2{
- padding: 40px 100px;
- h4{
- margin-bottom: 0px;
- }
- }
- h4{
- font-family: 'GmarketSans';
- font-weight: 700;
- font-size: 42px;
- margin-bottom: 20px;
- span{
- font-size: 28px;
- }
- }
- p{
- font-family: 'Pretendard Variable';
- font-size: 28px;
- line-height: 1.4;
- font-weight: 500;
- margin-bottom: 30px;
- &:last-child{
- margin-bottom: 0px;
- }
- }
- }
- .swiper-pagination{
- bottom: -100px;
- span{
- width: 32px;
- height: 32px;
- margin: 0 12px;
- background-color: #008be6;
- opacity: 0.6;
- }
- .swiper-pagination-bullet-active{
- background-color: #0047bb;
- opacity: 1;
- }
- }
- .swiper-button-next, .swiper-button-prev{
- width: 50px;
- background-image: url(../img/ico_arrow.png);
- height: 90px;
- top: 30%;
- right: -100px;
- &::after{
- display: none;
- }
- }
- .swiper-button-prev{
- transform: rotate(180deg);
- left: -100px;
- }
- }
- }
- }
- .evt--section02-1{
- position: relative;
- overflow: hidden;
- background: linear-gradient(to bottom, #004dee, #007ff6);
- &::before{
- content: '';
- background-image: url(../img/bg_4.png);
- background-repeat: no-repeat;
- background-position: bottom;
- display: inline-block;
- top: 0;
- z-index: 1;
- left: 0;
- position: absolute;
- width: 100%;
- height: 100%;
- }
- .cloud--img1{
- position: absolute;
- left: 0;
- z-index: 10;
- max-width: 20%;
- top: 100px;
- animation: cloudMoveLeftToRight 20s linear infinite;
- }
- .cloud--img2{
- position: absolute;
- right: 0;
- z-index: 10;
- max-width: 30%;
- top: 50px;
- animation: cloudMoveLeftToRight 30s linear infinite;
- }
- .section--container{
- max-width: 1920px;
- margin: 0 auto;
- .evt--1{
- padding: 100px 0 130px;
- position: relative;
- background-position: bottom;
- background-repeat: no-repeat;
- z-index: 1;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- h2{
- max-width: 682px;
- width: 70%;
- }
- .bg1{
- position: absolute;
- left: 15%;
- top: 30%;
- animation: floating-diag-1 4s ease-in-out infinite alternate;
- }
- .bg2{
- position: absolute;
- right: 5%;
- top: 30%;
- animation: floating-diag-2 5s ease-in-out infinite alternate;
- }
- .bg3{
- left: 7%;
- bottom: 25%;
- position: absolute;
- animation: floating-diag-3 4.5s ease-in-out infinite alternate;
- }
- .bg4{
- position: absolute;
- bottom: 25%;
- right: 5%;
- animation: floating-diag-4 6s ease-in-out infinite alternate;
- }
- .evt--box{
- margin-top: 50px;
- font-weight: 600;
- text-align: center;
- font-size: 45px;
- font-family: 'Pretendard Variable';
- color: #ffffff;
- line-height: 1.2;
- }
- }
- .evt--circle{
- font-family: 'Pretendard Variable';
- font-weight: 800;
- font-size: 30px;
- padding: 20px 40px;
- background-color: #00175f;
- color: #ffffff;
- border-radius: 50%;
- margin-bottom: 50px;
- display: inline-block;
- }
- h3{
- color: #ffffff;
- font-weight: 700;
- margin-bottom: 0;
- text-align: center;
- font-size: 56px;
- font-family: 'Pretendard Variable';
- }
- }
- }
- .evt--section02-2{
- background-color: #007ff6;
- position: relative;
- overflow: hidden;
- .bg1{
- position: absolute;
- left: 0;
- z-index: 2;
- bottom: 20%;
- max-width: 575px;
- width: 40%;
- }
- .bg2{
- max-width: 690px;
- width: 40%;
- position: absolute;
- right: 0;
- z-index: 2;
- bottom: 10%;
- }
- &::after{
- content: '';
- display: inline-block;
- bottom: 0;
- z-index: 1;
- left: 0;
- position: absolute;
- background: linear-gradient(to bottom, #007ff6, #004dee);
- width: 100%;
- height: 100%;
- }
- .section--container{
- max-width: 1500px;
- margin: 0 auto;
- .evt--circle{
- font-family: 'Pretendard Variable';
- font-weight: 800;
- font-size: 30px;
- padding: 20px 40px;
- background-color: #00175f;
- color: #ffffff;
- border-radius: 50%;
- margin-bottom: 50px;
- display: inline-block;
- }
- h3{
- color: #ffffff;
- font-weight: 700;
- font-size: 56px;
- font-family: 'Pretendard Variable';
- }
- .evt--2{
- padding: 120px 0 130px;
- position: relative;
- background-repeat: no-repeat;
- z-index: 20;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- h2{
- max-width: 789px;
- width: 90%;
- }
- h3{
- text-align: center;
- margin-bottom: 30px;
- }
- .evt--box{
- margin-top: 60px;
- margin-bottom: 70px;
- border-radius: 25px;
- background-color: rgba(0, 152, 249, 0.4);
- box-shadow: 0px 2px 9.5px 0.5px rgba(0, 0, 0, 0.23);
- font-weight: 600;
- padding: 75px 90px;
- font-size: 36px;
- font-family: 'Pretendard Variable';
- color: #ffffff;
- line-height: 1.2;
- display: flex;
- flex-direction: column;
- gap: 25px;
- li{
- list-style: none;
- font-size: 36px;
- display: flex;
- align-items: center;
- width: 100%;
- font-weight: 400;
- gap: 25px;
- .circle{
- padding: 10px 40px;
- width: 168px;
- display: inline-block;
- height: 60px;
- border-radius: 30px;
- background-color: #00A2FB;
- text-align: justify;
- &::after {
- content: "";
- display: inline-block;
- width: 100%;
- }
- }
- }
- }
- .evt--box2{
- max-width: 470px;
- width: 60%;
- }
- .evt--btn{
- border-style: solid;
- border-width: 3px;
- border-color: rgb(255, 255, 255);
- border-radius: 50px;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #00175f;
- box-shadow: 0px 15px 16px 0px rgba(0, 0, 0, 0.14);
- max-width: 416px;
- width: 100%;
- height: 95px;
- font-family: 'Pretendard Variable';
- font-size: 40px;
- font-weight: 800;
- text-decoration: none;
- color: #ffffff;
- }
- .bob01{
- width:210px;
- height:214px;
- background: url(../img/bob_01.png) no-repeat center;
- animation: bubbleFloat 3s ease-in-out infinite alternate;
- }
- .bob02{
- width:225px;
- height:211px;
- background: url(../img/bob_02.png) no-repeat center;
- animation: bubbleFloat 3s ease-in-out infinite alternate;
- }
- .bob03{
- width:417px;
- height:403px;
- background: url(../img/bob_03.png) no-repeat center;
- animation: bubbleFloat 3s ease-in-out infinite alternate;
- }
- .bob04{
- width:139px;
- height:140px;
- background: url(../img/bob_04.png) no-repeat center;
- animation: bubbleFloat 3s ease-in-out infinite alternate;
- }
- .bob05{
- width:248px;
- height:211px;
- background: url(../img/bob_05.png) no-repeat center;
- animation: bubbleFloat 3s ease-in-out infinite alternate;
- }
- .bob06{
- width:409px;
- height:394px;
- background: url(../img/bob_06.png) no-repeat center;
- animation: bubbleFloat 3s ease-in-out infinite alternate;
- }
- .bob07{
- width:220px;
- height:211px;
- background: url(../img/bob_07.png) no-repeat center;
- animation: bubbleFloat 3s ease-in-out infinite alternate;
-
- }
- .bob08{
- width:58px;
- height:53px;
- background: url(../img/bob_08.png) no-repeat center;
- animation: bubbleFloat 3s ease-in-out infinite alternate;
- }
- .bob09{
- width:90px;
- height:90px;
- background: url(../img/bob_09.png) no-repeat center;
- animation: bubbleFloat 3s ease-in-out infinite alternate;
- }
- .bob10{
- width:152px;
- height:141px;
- background: url(../img/bob_10.png) no-repeat center;
- animation: bubbleFloat 3s ease-in-out infinite alternate;
- }
- .bob--wrap01{
- position: absolute;
- top:50%;
- left:50%;
- transform: translate(-50%, -50%);
- width:210px;
- height:214px;
- margin-left: 712px;
- margin-top: -601px;
- animation: bobUp 2.2s cubic-bezier(0.22,1,0.36,1) infinite;
- }
-
- .bob--wrap02{
- position: absolute;
- top:50%;
- left:50%;
- transform: translate(-50%, -50%);
- width:225px;
- height:211px;
- margin-left: 759px;
- margin-top: -153px;
- animation: bobUp 1.8s cubic-bezier(0.22,1,0.36,1) infinite;
- }
-
- .bob--wrap03{
- position: absolute;
- top:50%;
- left:50%;
- transform: translate(-50%, -50%);
- margin-left: 568px;
- margin-top: 169px;
- animation: bobUp 5.5s cubic-bezier(0.22,1,0.36,1) infinite;
- }
-
- .bob--wrap04{
- position: absolute;
- top:50%;
- left:50%;
- transform: translate(-50%, -50%);
- width:139px;
- height:140px;
- margin-left: -692px;
- margin-top: -579px;
- animation: bobUp 4.2s cubic-bezier(0.22,1,0.36,1) infinite;
- }
-
- .bob--wrap05{
- position: absolute;
- top:50%;
- left:50%;
- transform: translate(-50%, -50%);
- width:248px;
- height:211px;
- margin-left: -832px;
- margin-top: -216px;
- animation: bobUp 3.2s cubic-bezier(0.22,1,0.36,1) infinite;
- }
- .bob--wrap06{
- position: absolute;
- top:50%;
- left:50%;
- transform: translate(-50%, -50%);
- width:409px;
- height:394px;
- margin-left: -1012px;
- margin-top: -19px;
- animation: bobUp 4s cubic-bezier(0.22,1,0.36,1) infinite;
- }
-
- .bob--wrap07{
- position: absolute;
- top:50%;
- left:50%;
- transform: translate(-50%, -50%);
- width:220px;
- height:211px;
- margin-left: -682px;
- margin-top: 372px;
- animation: bobUp 3.2s cubic-bezier(0.22,1,0.36,1) infinite;
- }
-
- .bob--wrap08{
- position: absolute;
- top:50%;
- left:50%;
- transform: translate(-50%, -50%);
- width:58px;
- height:53px;
- margin-left: -620px;
- margin-top: 61px;
- animation: bobUp 6.5s cubic-bezier(0.22,1,0.36,1) infinite;
- }
-
- .bob--wrap09{
- position: absolute;
- top:50%;
- left:50%;
- transform: translate(-50%, -50%);
- width:90px;
- height:90px;
- margin-left: 324px;
- margin-top: 586px;
- animation: bobUp 7.2s cubic-bezier(0.22,1,0.36,1) infinite;
- }
-
- .bob--wrap10{
- position: absolute;
- top:50%;
- left:50%;
- transform: translate(-50%, -50%);
- width:152px;
- height:141px;
- margin-left: -440px;
- margin-top: 386px;
- animation: bobUp 4.2s cubic-bezier(0.22,1,0.36,1) infinite;
- }
-
- .tok01{
- position: absolute;
- top:50%;
- left:50%;
- transform: translate(-50%, -50%);
- width: 66px;
- height:66px;
- background: url(../img/tok_01.png) no-repeat center;
- margin-top: -281px;
- margin-left: -857px;
- }
- .tok02{
- position: absolute;
- top:50%;
- left:50%;
- transform: translate(-50%, -50%);
- width: 44px;
- height:44px;
- background: url(../img/tok_02.png) no-repeat center;
- margin-top: -431px;
- margin-left: -566px;
- }
- .tok03{
- position: absolute;
- top:50%;
- left:50%;
- transform: translate(-50%, -50%);
- width: 51px;
- height:51px;
- background: url(../img/tok_03.png) no-repeat center;
- margin-top: 210px;
- margin-left: 592px;
- }
- .tok04{
- position: absolute;
- top:50%;
- left:50%;
- transform: translate(-50%, -50%);
- width: 56px;
- height:56px;
- background: url(../img/tok_04.png) no-repeat center;
- margin-top: -355px;
- margin-left: 753px;
- }
- .tok05{
- position: absolute;
- top:50%;
- left:50%;
- transform: translate(-50%, -50%);
- width: 66px;
- height:66px;
- background: url(../img/tok_05.png) no-repeat center;
- margin-top: -475px;
- margin-left: 590px;
- }
- }
- }
- }
- .evt--section03{
- overflow: hidden;
- background: linear-gradient(to bottom,#5DBBFF 0%, #00A8FF 50%, #5DBBFF 100%);
- padding: 150px 0 150px;
- position: relative;
- &::before{
- content: '';
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- right: 0;
- background-position: top;
- z-index: 0;
- background-repeat: no-repeat;
- display: inline-block;
- background-image: url(../img/bg_color_2.png);
- }
- &::after{
- content: '';
- width: 100%;
- height: 100%;
- position: absolute;
- bottom: 0;
- left: 0;
- background-position: bottom;
- z-index: 0;
- background-repeat: no-repeat;
- display: inline-block;
- background-image: url(../img/bg_color_1.png);
- }
- .section--container{
- max-width: 1280px;
- z-index: 10;
- position: relative;
- margin: 0 auto;
- .section--title{
- text-align: center;
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-bottom: 80px;
- h3{
- max-width: 750px;
- width: 60%;
- }
- h2{
- max-width: 945px;
- width: 70%;
- }
- .circle{
- margin-top: 20px;
- max-width: 832px;
- width: 70%;
- }
- }
- .promotion--wrap{
- display: flex;
- justify-content: center;
- margin-bottom: 120px;
- gap: 140px;
- .promotion{
- width: 400px;
- height: 580px;
- background-image: url(../img/img_bg_9.png);
- background-size: 100%;
- background-repeat: no-repeat;
- display: flex;
- align-items: center;
- flex-direction: column;
- color: #ffffff;
- h4{
- font-family: 'Pretendard Variable';
- font-size: 56px;
- font-weight: 700;
- line-height: 210px;
- margin-bottom: 0;
- }
- p{
- font-family: 'gmarketSans';
- font-size: 45px;
- margin-bottom: 0;
- }
- h5{
- line-height: 1.1;
- font-family: 'gmarketSans';
- font-size: 86px;
- font-weight: 800;
- margin-bottom: 0;
- span{
- font-size: 44px;
- }
- }
- }
- }
- .promotion--detail--wrap{
- display: flex;
- flex-direction: column;
- gap: 80px;
- margin-bottom: 460px;
- position: relative;
- .detail{
- color: #373737;
- background-color: #fff;
- border: 3px solid black;
- padding: 70px;
- border-radius: 68px;
- z-index: 3;
- position: relative;
- display: flex;
- &:nth-child(1){
- &::before{
- content: '';
- position: absolute;
- display: inline-block;
- width: 318px;
- height: 314px;
- top: -91px;
- left: -48px;
- background-repeat: no-repeat;
- background-image: url(../img/bg_wave_3.png);
- }
- }
- &:nth-child(2){
- &::before{
- content: '';
- position: absolute;
- display: inline-block;
- width: 286px;
- right: -125px;
- top: -36px;
- z-index: 10;
- height: 380px;
- background-repeat: no-repeat;
- background-image: url(../img/bg_wave_4.png);
- }
- }
- .detail--l{
- width: 70%;
- >span{
- font-size: 44px;
- font-weight: 700;
- display: inline-block;
- font-family: 'Pretendard Variable';
- text-decoration: underline;
- margin-bottom: 40px;
- }
- >h5{
- font-family: 'Pretendard Variable';
- font-size: 54px;
- font-weight: 900;
- margin-bottom: 40px;
- >span{
- color: #6d21ed;
- }
- }
- >ul{
- li{
- line-height: 1.2;
- font-family: 'Pretendard Variable';
- font-weight: 500;
- font-size: 38px;
- }
- }
- }
- .detail--r{
- width: 30%;
- display: flex;
- flex-direction: column;
- align-items: flex-end;
- justify-content: flex-end;
- text-align: right;
- >span{
- box-shadow: inset -10px -10px 20px rgba(0, 0, 0, 0.4);
- background: linear-gradient(135deg, #8324ff, #5a3dfd, #0a5aff);
- font-family: 'Pretendard Variable';
- font-size: 44px;
- font-weight: 800;
- width: 130px;
- height: 140px;
- line-height: 1.2;
- display: flex;
- align-items: center;
- right: 100px;
- top: 0;
- justify-content: center;
- color: #ffffff;
- position: absolute;
- }
- >p{
- font-size: 28px;
- font-family: 'Pretendard Variable';
- font-weight: 500;
- margin-bottom: 10px;
- }
- .before--price{
- font-size: 44px;
- font-weight: 700;
- font-family: 'Pretendard Variable';
- position: relative;
- &::after{
- content: '';
- display: inline-block;
- width: 267px;
- height: 62px;
- position: absolute;
- top: 50%;
- left: -30px;
- background-image: url(../img/ico_arrow2.png);
- }
- }
- .after--price{
- font-family: 'Pretendard Variable';
- font-size: 66px;
- color: #6d21ed;
- font-weight: 900;
- }
- }
- }
- .detail--plus{
- z-index: 2;
- position: absolute;
- font-size: 38px;
- top: calc(100% - 55px);
- width: 100%;
- border-bottom-left-radius: 50px;
- border-bottom-right-radius: 50px;
- font-family: 'Pretendard Variable';
- background-color: #9EC3FE;
- padding: 100px 60px 60px;
- font-weight: 500;
- margin-bottom: 0;
- li{
- list-style: none;
- position: relative;
- padding-left: 30px;
- &::before{
- top: 0px;
- left: -0px;
- position: absolute;
- content: '*';
- }
- }
- strong{
- font-weight: 800;
- text-decoration: underline;
- }
- }
- }
- .count--wrap{
- display: flex;
- flex-direction: column;
- position: relative;
- z-index: 10;
- align-items: center;
- .count--txt{
- display: flex;
- align-items: flex-end;
- justify-content: center;
- gap: 20px;
- margin-bottom: 90px;
- .img--wrap{
- position: relative;
- .wch--l{
- position: absolute;
- top:0px;
- left:0px;
- width:139px;
- height:122px;
- background: url(../img/wch_l.png) no-repeat center;
- animation: bellRing 1.2s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
- transform-origin: 50% 80%; // 종의 아래쪽을 기준으로 흔들림
- }
- .wch--r{
- position: absolute;
- top:0px;
- right:0px;
- width:159px;
- height:121px;
- background: url(../img/wch_r.png) no-repeat center;
- animation: bellRing 1.2s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
- transform-origin: 50% 80%; // 종의 아래쪽을 기준으로 흔들림
- }
- &::before{
- content: '';
- display: inline-block;
- width: 144px;
- height: 80px;
- background-repeat: no-repeat;
- background-size: 100%;
- left: -40%;
- top: 30px;
- position: absolute;
- background-image: url(../img/img_15_bg1.png);
- }
- &::after{
- content: '';
- display: inline-block;
- width: 242px;
- height: 177px;
- background-repeat: no-repeat;
- background-size: 100%;
- right: -70%;
- bottom: 100px;
- position: absolute;
- background-image: url(../img/img_15_bg2.png);
- }
- }
- >p{
- color: #ffffff;
- font-family: 'gmarketSans';
- text-align: center;
- font-size: 46px;
- font-weight: 800;
- margin-bottom: 0;
- text-align: center;
- text-shadow: 0px 3px 7px rgba(0, 0, 0, 0.35);
- }
- }
- .count--num{
- display: flex;
- font-family: 'gmarketSans';
- gap: 10px;
- margin-bottom: 140px;
- position: relative;
- .number{
- font-family: 'gmarketSans';
- position: relative;
- display: inline-block;
- font-size: 120px;
- color: #ffffff;
- width: 140px;
- line-height: 1.75;
- font-weight: 800;
- height: 210px;
- border-radius: 20%;;
- box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
- &:nth-child(4){
- margin-left: 80px;
- }
- &:nth-child(5){
- margin-right: 80px;
- }
- span{
- display: inline-block;
- width: 100%;
- height: 100%;
- }
- }
- &::before{
- content: '';
- width: 210px;
- left: -300px;
- top: calc(50% - 500px);
- height: 1000px;
- position: absolute;
- top:50%;
- transform: translateY(-50%);
- left:-154px;
- width:62px;
- height:266px;
- background: url(../img/bbl_01.png) no-repeat center;
- animation: shakeX 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
- }
- .bbl--eft02{
- position: absolute;
- top:50%;
- transform: translateY(-50%);
- left:-226px;
- width:106px;
- height:427px;
- background: url(../img/bbl_02.png) no-repeat center;
- animation: shakeX 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
- }
- .bbl--eft03{
- position: absolute;
- top:50%;
- transform: translateY(-50%);
- left:-303px;
- width:146px;
- height:550px;
- background: url(../img/bbl_03.png) no-repeat center;
- animation: shakeX 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
- }
- .bbl--eft04{
- position: absolute;
- top:50%;
- transform: rotate(180deg) translateY(-50%);
- transform-origin: top;
- right:-154px;
- width:62px;
- height:266px;
- background: url(../img/bbl_01.png) no-repeat center;
- animation: shakeX2 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
- }
- .bbl--eft05{
- position: absolute;
- top:50%;
- transform:rotate(180deg) translateY(-50%);
- transform-origin: top;
- right:-226px;
- width:106px;
- height:427px;
- background: url(../img/bbl_02.png) no-repeat center;
- animation: shakeX2 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
- }
- .bbl--eft06{
- position: absolute;
- top:50%;
- transform:rotate(180deg) translateY(-50%);
- transform-origin: top;
- right:-303px;
- width:146px;
- height:550px;
- background: url(../img/bbl_03.png) no-repeat center;
- animation: shakeX2 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
- }
- // &::before{
- // content: '';
- // width: 210px;
- // left: -300px;
- // top: calc(50% - 500px);
- // height: 1000px;
- // position: absolute;
- // background-repeat: no-repeat;
- // background-position: center;
- // background-image: url(../img/img_bg_10.png);
- // }
- // &::after{
- // content: '';
- // width: 210px;
- // right: -300px;
- // top: calc(50% - 500px);
- // height: 1000px;
- // position: absolute;
- // background-repeat: no-repeat;
- // background-position: center;
- // transform: rotate(180deg);
- // background-image: url(../img/img_bg_10.png);
- // }
- div{
- display: flex;
- gap: 30px;
- align-items: center;
- span{
- font-size: 120px;
- color: #ffffff;
- background-color: #7F1BF2;
- width: 140px;
- font-weight: 800;
- height: 210px;
- display: inline-block;
- line-height: 2;
- text-align: center;
- box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
- border-radius: 30px;
- position: relative;
- z-index: 30;
- perspective: 600px;
- overflow: hidden;
- &.flip{
- animation: flipDown 0.5s ease-in-out;
- }
- &::before {
- content: '';
- width: 100%;
- z-index: -1;
- display: inline-block;
- left: 0;
- top: 0;
- border-top-left-radius: 30px;
- border-top-right-radius: 30px;
- height: 50%;
- background-color: #8b2ef4;
- position: absolute;
- }
- }
- }
- }
- .evt--btn{
- border-style: solid;
- border-width: 3px;
- border-color: rgb(255, 255, 255);
- border-radius: 50px;
- display: flex;
- align-items: center;
- z-index: 10;
- justify-content: center;
- background-color: #00175f;
- box-shadow: 0px 15px 16px 0px rgba(0, 0, 0, 0.14);
- max-width: 416px;
- width: 100%;
- height: 95px;
- font-family: 'Pretendard Variable';
- font-size: 40px;
- font-weight: 800;
- text-decoration: none;
- color: #ffffff;
- }
- }
- }
- }
- /*===============================================
- 에니메이션
- ===============================================*/
- .floating {
- animation: floating 3s ease-in-out infinite;
- }
- @keyframes bobUp {
- 0% { transform: translateY(120vh); opacity: 0; }
- 80% { opacity: 1; }
- 100% { transform: translateY(0); opacity: 1; }
- }
- // 둥둥 떠있는 효과
- @keyframes bubbleFloat {
- 0% { transform: translateY(0) scale(1);}
- 50% { transform: translateY(-12px) scale(1.05);}
- 100% { transform: translateY(0) scale(1);}
- }
- @keyframes floating {
- 0% { transform: translateY(0px); }
- 50% { transform: translateY(-20px); }
- 100% { transform: translateY(0px); }
- }
- @keyframes fadeUpLogo {
- to {
- opacity: 1;
- transform: translateY(0);
- }
- }
- @keyframes fadeInRightH1 {
- to {
- opacity: 1;
- transform: translateX(0);
- }
- }
- @keyframes fadeInLeftH2 {
- to {
- opacity: 1;
- transform: translateX(0);
- }
- }
- @keyframes fadeUpH3 {
- to {
- opacity: 1;
- transform: translateY(0);
- }
- }
- @keyframes waveInRight {
- 0% {
- opacity: 0;
- transform: translateX(-100px);
- }
- 60% {
- opacity: 1;
- transform: translateX(20px);
- }
- 100% {
- opacity: 1;
- transform: translateX(0);
- }
- }
- @keyframes cloudMoveLeftToRight {
- 0% {
- opacity: 0;
- transform: translateX(-100px);
- }
- 10% {
- opacity: 1;
- transform: translateX(0px);
- }
- 90% {
- opacity: 1;
- transform: translateX(300px);
- }
- 100% {
- opacity: 0;
- transform: translateX(400px);
- }
- }
- @keyframes floating-diag-1 {
- 0% { transform: translate(0, 0); }
- 20% { transform: translate(-10px, 10px);}
- 40% { transform: translate(10px, -10px);}
- 60% { transform: translate(-10px, -10px);}
- 80% { transform: translate(10px, 10px);}
- 100% { transform: translate(0, 0);}
- }
- @keyframes floating-diag-2 {
- 0% { transform: translate(0, 0); }
- 25% { transform: translate(12px, -8px);}
- 50% { transform: translate(-12px, 8px);}
- 75% { transform: translate(8px, 12px);}
- 100% { transform: translate(0, 0);}
- }
- @keyframes floating-diag-3 {
- 0% { transform: translate(0, 0);}
- 30% { transform: translate(-8px, 12px);}
- 60% { transform: translate(8px, -12px);}
- 100% { transform: translate(0, 0);}
- }
- @keyframes floating-diag-4 {
- 0% { transform: translate(0, 0);}
- 20% { transform: translate(10px, 10px);}
- 40% { transform: translate(-10px, -10px);}
- 60% { transform: translate(10px, -10px);}
- 80% { transform: translate(-10px, 10px);}
- 100% { transform: translate(0, 0);}
- }
- @keyframes shakeX {
- 0% { transform: translateY(-50%) translateX(0); }
- 10%, 30%, 50%, 70%, 90% { transform: translateY(-50%) translateX(-8px); }
- 20%, 40%, 60%, 80% { transform: translateY(-50%) translateX(8px); }
- 100% { transform: translateY(-50%) translateX(0); }
- }
- @keyframes shakeX2 {
- 0% { transform: rotate(180deg) translateY(-50%) translateX(0); }
- 10%, 30%, 50%, 70%, 90% { transform: rotate(180deg) translateY(-50%) translateX(-8px); }
- 20%, 40%, 60%, 80% { transform: rotate(180deg) translateY(-50%) translateX(8px); }
- 100% { transform: rotate(180deg) translateY(-50%) translateX(0); }
- }
- @keyframes bellRing {
- 0% { transform: rotate(0deg); }
- 10% { transform: rotate(-18deg); }
- 20% { transform: rotate(16deg); }
- 30% { transform: rotate(-12deg); }
- 40% { transform: rotate(10deg); }
- 50% { transform: rotate(-6deg); }
- 60% { transform: rotate(4deg); }
- 70% { transform: rotate(-2deg); }
- 80%, 100% { transform: rotate(0deg); }
- }
- @media(max-width: 1480px){
- .section--container{
- padding: 0 20px;
- }
- .evt--section01{
- .section--container{
- .swiper--wrap{
- .swiper-button-next,
- .swiper-button-prev{
- display: none;
- }
- .slide--desc{
- padding: 25px 50px!important;
- min-height: 300px;
- height: auto;
- h4{
- font-size: 32px;
- span{
- font-size: 20px;
- }
- }
- p{
- font-size: 18px;
- }
- }
- }
- }
- }
- .evt--section02-1{
- .section--container{
- .evt--1{
- .bg1{
- left: 0;
- img{
- width: 80%;
- }
- }
- .bg2{
- right: -10%;
- img{
- width: 80%;
- }
- }
- .bg3{
- left: 0;
- bottom: 45%;
- img{
- width: 80%;
- }
- }
- .bg4{
- bottom: 40%;
- right: -10%;
- img{
- width: 80%;
- }
- }
- }
- }
- }
- }
- @media(max-width: 1200px){
- .evt--section01{
- .section--container{
- .swiper--wrap{
- .swiper--tab--wrap{
- .tab--btn{
- font-size: 18px;
- height: 68px;
- }
- }
- }
- }
- }
- .evt--section02-1{
- .section--container{
- h3{
- font-size: 36px;
- }
- .evt--1{
- .bg1{
- img{
- width: 50%;
- }
- }
- .bg2{
- top: 40%;
- right: -30%;
- img{
- width: 50%;
- }
- }
- .bg3{
- img{
- width: 50%;
- }
- }
- .bg4{
- right: -240px;
- img{
- width: 50%;
- }
- }
- }
- }
- }
- .evt--section02-2{
- .bg1{
- bottom: auto;
- top: 5%;
- }
- .bg2{
- bottom: auto;
- top: 5%;
- }
- .section--container{
- h3{
- font-size: 36px;
- }
- .evt--2{
- h2{
- max-width:551px;
- }
- .evt--box{
- padding: 30px;
- li{
- font-size: 30px;
- }
- }
- .bob--wrap01{
- margin-left: 402px;
- margin-top: -441px;
- }
- .bob--wrap02{
- margin-left: 452px;
- margin-top: -231px;
- }
- .bob--wrap03{
- margin-left: 262px;
- margin-top: -131px;
- }
- .bob--wrap04{
- margin-left: -498px;
- margin-top: -411px;
- }
- .bob--wrap05{
- margin-left: -618px;
- margin-top: -261px;
- }
- .bob--wrap06{
- margin-left: -748px;
- margin-top: -231px;
- }
- .bob--wrap07{
- margin-left: -479px;
- margin-top: -11px;
- }
- .tok05{
- transform: scale(.5);
- margin-top: -335px;
- margin-left: 370px;
- }
- .tok04{
- transform: scale(.5);
- margin-top: -275px;
- margin-left: 430px;
- }
- .tok03{
- transform: scale(.5);
- margin-top: -45px;
- margin-left: 338px;
- }
- .tok02{
- transform: scale(.5);
- margin-top: -291px;
- margin-left: -376px;
- }
- .tok01{
- transform: scale(.5);
- margin-top: -191px;
- margin-left: -606px;
- }
- }
- }
- }
- .evt--section03{
- .section--container{
- .promotion--detail--wrap{
- gap: 40px;
- .detail{
- padding: 50px;
- .detail--l{
- >span{
- font-size: 32px;
- margin-bottom: 20px;
- }
- >h5{
- font-size: 48px;
- line-height: 1.4;
- }
- >ul{
- padding-left: 24px;
- li{
- font-size: 24px;
- line-height: 1.4;
- }
- }
- }
- .detail--r{
- >span{
- right: 50px;
- }
- >p{
- font-size: 24px;
- }
- .before--price{
- font-size: 32px;
- &::after{
- transform: scaleX(-1);
- left: auto;
- right: -10px;
- }
- }
- .after--price{
- font-size: 48px;
- }
- }
- }
- .detail--plus{
- font-size: 24px;
- li{
- padding-left: 20px;
- }
- }
- }
- .count--wrap{
- > p{
- font-size: 30px;
- }
- .count--txt{
- >p{
- font-size: 30px;
- }
- }
- .count--num{
- width: 100%;
- justify-content: center;
- .number{
- font-size: 100px;
- width: 120px;
- height: 174px;
- &:nth-child(4){
- margin-left: 40px;
- }
- &:nth-child(5){
- margin-right: 40px;
- }
- }
- }
- }
- }
- }
- @keyframes bobUp {
- 0% { transform: translateY(120vh) scale(.5); opacity: 0; }
- 80% { opacity: 1; }
- 100% { transform: translateY(0) scale(.5); opacity: 1; }
- }
- }
- @media(max-width: 1000px){
- .evt--section01{
- .section--container{
- .section--title{
- .bg2{
- left: -30px;
- bottom: -60px;
- img{
- }
- }
- .bg4{
- bottom: auto;
- top: 0px;
- right: -30px;
- img{
- width: 80%;
- }
- }
- }
- .swiper--wrap{
- .swiper--tab--wrap{
- overflow-x: auto;
- white-space: nowrap;
- width: auto;
- .tab--btn{
- width: fit-content;
- height: auto;
- padding: 15px 15px 10px;
- flex-shrink: 0;
- &:first-child{
- &::before{
- font-size: 10px;
- }
- }
- }
- }
- .swiper-pagination{
- span{
- width: 24px;
- height: 24px;
- }
- }
- .slide--desc{
- padding: 25px 15px!important;
- min-height: 240px;
- h4{
- font-size: 24px;
- margin-bottom: 15px;
- span{
- font-size: 16px;
- }
- }
- p{
- margin-bottom: 15px;
- font-size: 14px;
- }
- }
- }
- }
- }
- .evt--section03{
- .section--container{
- .promotion--wrap{
- gap: 20px;
- .promotion{
- h4{
- font-size: 32px;
- }
- p{
- font-size: 32px;
- }
- h5{
- font-size: 72px;
- }
- }
- }
- .promotion--detail--wrap{
- gap: 20px;
- .detail{
- .detail--l{
- >span{
- font-size: 24px;
- margin-bottom: 15px;
- }
- >h5{
- font-size: 36px;
- }
- >ul{
- li{
- font-size: 18px;
- }
- }
- }
- .detail--r{
- >span{
- font-size: 24px;
- width: 80px;
- height: 90px;
- }
- >p{
- font-size: 18px;
- }
- .before--price{
- font-size: 24px;
- &::after{
- right: -10px;
- height: 50px;
- top: 15px;
- background-size: cover;
- width: 210px;
- background-position: left;
- transform: scaleX(1);
- 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");
- }
- }
- .after--price{
- font-size: 36px;
- }
- }
- }
- .detail--plus{
- padding: 80px 30px 30px;
- font-size: 18px;
- }
- }
- .count--wrap{
- .count--txt{
- margin-bottom: 50px;
- flex-direction: column;
- align-items: center;
- .img--wrap{
- width: 50%;
- &::before{
- width: 70px;
- top: 0px;
- }
- &::after{
- bottom: auto;
- width: 100px;
- right: -50%;
- top: 50%;
- transform: translateY(-50%);
- }
- }
- }
- .count--num{
- gap: 5px;
- .number{
- font-size: 60px;
- line-height: 2;
- width: 90px;
- height: 120px;
- &:nth-child(4){
- margin-left: 20px;
- }
- &:nth-child(5){
- margin-right: 20px;
- }
- }
- }
- }
- }
- }
- }
- @media(max-width: 767px){
- .evt--section01{
- .section--container{
- .section--title{
- .bg--wave--wrap{
- top: 120px;
- .bg--wave{
- height: 300px;
- width: 450px;
- .bg--wave2{
- display: none;
- }
- }
- }
- }
- }
- }
- .evt--section02-1{
- .section--container{
- .evt--1{
- .bg1{
- top: 10%;
- }
- .bg2{
- right: -320px;
- top: 5%;
- }
- .bg3{
- bottom: auto;
- top: 30%;
- }
- .bg4{
- bottom: auto;
- right: -240px;
- top: 35%;
- }
- .evt--circle{
- font-size: 18px;
- padding: 10px 20px;
- margin-bottom: 30px;
- }
- h3{
- font-size: 20px;
- }
- }
- }
- }
- .evt--section02-2{
- .section--container{
- .evt--2{
- .evt--box{
- width: 100%;
- li{
- gap: 10px;
- font-size: 18px;
- .circle{
- padding: 10px 30px;
- height: auto;
- width: auto;
- &::after{
- display: none;
- }
- }
- }
- }
- .evt--circle{
- font-size: 18px;
- padding: 10px 20px;
- margin-bottom: 30px;
- }
- h3{
- font-size: 20px;
- }
- .evt--btn{
- font-size: 24px;
- height: 80px;
- }
- .bob--wrap01{
- margin-left: 212px;
- margin-top: -441px;
- }
- .bob--wrap02{
- margin-left: 232px;
- margin-top: -231px;
- }
- .bob--wrap03{
- margin-left: 112px;
- margin-top: -81px;
- }
- .bob--wrap04{
- margin-left: -398px;
- margin-top: -411px;
- }
- .bob--wrap05{
- margin-left: -458px;
- margin-top: -261px;
- }
- .bob--wrap06{
- margin-left: -708px;
- margin-top: -231px;
- }
- .bob--wrap07{
- margin-left: -479px;
- margin-top: -11px;
- }
- .tok05{
- transform: scale(.5);
- margin-top: -335px;
- margin-left: 370px;
- }
- .tok04{
- transform: scale(.5);
- margin-top: -275px;
- margin-left: 430px;
- }
- .tok03{
- transform: scale(.5);
- margin-top: -45px;
- margin-left: 338px;
- }
- .tok02{
- transform: scale(.5);
- margin-top: -291px;
- margin-left: -376px;
- }
- .tok01{
- transform: scale(.5);
- margin-top: -191px;
- margin-left: -606px;
- }
- }
- }
- }
- .evt--section03{
- .section--container{
- .promotion--wrap{
- margin-bottom: 40px;
- .promotion{
- height: 450px;
- h4{
- font-size: 20px;
- line-height: 24vw;
- }
- p{
- font-size: 20px;
- }
- h5{
- font-size: 48px;
- }
- }
- }
- .promotion--detail--wrap{
- .detail{
- flex-direction: column;
- padding: 30px;
- gap: 15px;
- border-radius: 20px;
- &::before{
- display: none!important;
- }
- .detail--l{
- width: 100%;
- >span{
- font-size: 18px;
- }
- >h5{
- font-size: 24px;
- margin-bottom: 20px;
- }
- }
- .detail--r{
- width: 100%;
- >span{
- font-size: 18px;
- width: 60px;
- height: 70px;
- right: 30px;
- }
- >p{
- margin-bottom: 0;
- }
- .before--price{
- font-size: 18px;
- &::after{
- width: 140px;
- height: 30px;
- top: 12px;
- }
- }
- .after--price{
- font-size: 24px;
- }
- }
- }
- .detail--plus{
- border-bottom-left-radius: 20px;
- border-bottom-right-radius: 20px;
- font-size: 14px;
- }
- }
- .count--wrap{
- .evt--btn{
- font-size: 24px;
- height: 80px;
- }
- .count--txt{
- >p{
- font-size: 20px;
- }
- .img--wrap{
- .wch--l{
- top:-60px;
- left:-30px;
- }
- .wch--r{
- top:-60px;
- right:-40px;
- }
- }
- }
- .count--num{
- .number{
- font-size: 40px;
- width: 60px;
- height: 80px;
- }
- }
- }
- }
- }
- @keyframes bellRing {
- 0% { transform:scale(.5) rotate(0deg); }
- 10% { transform:scale(.5) rotate(-18deg); }
- 20% { transform:scale(.5) rotate(16deg); }
- 30% { transform:scale(.5) rotate(-12deg); }
- 40% { transform:scale(.5) rotate(10deg); }
- 50% { transform:scale(.5) rotate(-6deg); }
- 60% { transform:scale(.5) rotate(4deg); }
- 70% { transform:scale(.5) rotate(-2deg); }
- 80%, 100% { transform:scale(.5) rotate(0deg); }
- }
- }
- @media(max-width: 500px){
- .evt--section01{
- .section--container{
- .swiper--wrap{
- margin-bottom: 50px;
- .swiper--tab--wrap{
- .tab--btn{
- font-size: 16px;
- }
- }
- .swiper-pagination{
- span{
- width: 14px;
- height: 14px;
- margin: 0 5px;
- }
- }
- .slide--desc{
- padding: 25px 15px!important;
- min-height: 200px;
- height: 100%;
- h4{
- font-size: 18px;
- span{
- font-size: 12px;
- }
- }
- p{
- font-size: 14px;
- }
- }
- }
- }
- }
- .evt--section02-1{
- .section--container{
- .evt--1{
- .bg1{
- img{
- }
- }
- .bg2{
- top: 2%;
- right: -360px;
- img{
- width: 45%;
- }
- }
- .bg3{
- top: 32%;
- }
- }
- }
- }
- .evt--section02-2{
- .section--container{
- .evt--2{
- .evt--box{
- li{
- font-size: 14px;
- .circle{
- padding: 5px 15px;
- white-space: nowrap;
- }
- }
- padding: 20px;
- }
- .bob--wrap01{
- margin-left: 10%;
- margin-top: -120%;
- }
- .bob--wrap02{
- margin-left: 10%;
- margin-top: -231px;
- }
- .bob--wrap03{
- margin-left: -14%;
- margin-top: -81px;
- }
- .bob--wrap04{
- margin-left: -60%;
- margin-top: -120%;
- }
- .bob--wrap05{
- margin-left: -80%;
- margin-top: -70%;
- }
- .bob--wrap06{
- margin-left: -120%;
- margin-top: -70%;
- }
- .bob--wrap07{
- margin-left: -80%;
- margin-top:0%;
- }
- }
- }
- }
- .evt--section03{
- .section--container{
- .promotion--wrap{
- .promotion{
- height: 300px;
- h4{
- font-size: 16px;
- margin-bottom: 0px;
- line-height: 22vw;
- }
- p{
- font-size: 16px;
- margin-bottom: 0px;
- }
- h5{
- font-size: 36px;
- span{
- font-size: 24px;
- }
- }
- }
- }
- .count--wrap{
- .count--num{
- .number{
- font-size: 24px;
- height: 72px;
- line-height: 3;
- &:nth-child(4){
- margin-left: 10px;
- }
- &:nth-child(5){
- margin-right: 10px;
- }
- }
- }
- }
- }
- }
- @keyframes bobUp {
- 0% { transform: translateY(120vh) scale(.3); opacity: 0; }
- 80% { opacity: 1; }
- 100% { transform: translateY(0) scale(.3); opacity: 1; }
- }
- }
|