main.scss 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489
  1. @charset "UTF-8";
  2. @import 'reset';
  3. @import 'mixin';
  4. section{
  5. overflow-x: hidden;
  6. }
  7. br{
  8. &.mo{
  9. display: none;
  10. }
  11. }
  12. header{
  13. position: fixed;
  14. width: 100%;
  15. top: 0;
  16. left: 0;
  17. z-index: 1000;
  18. background: #fff;
  19. .header--line--banner--wrap{
  20. background-image: url(../img/top_line_bg.svg);
  21. background-size: cover;
  22. background-repeat: no-repeat;
  23. background-position: center;
  24. background-color: #2ECC71;
  25. width:100%;
  26. padding:0px;
  27. @include flex-center;
  28. overflow: hidden;
  29. transition: all linear .2s;
  30. height:100px;
  31. &.actv{
  32. padding:0px 0px;
  33. height:0px;
  34. &+.header--contents--wrap{
  35. .header--dim{
  36. top: 170px;
  37. }
  38. }
  39. }
  40. .inner--contents{
  41. width:100%;
  42. max-width: 1200px;
  43. display: flex;
  44. padding: 0 20px;
  45. flex-direction: column;
  46. align-items: center;
  47. justify-content: center;
  48. text-align: center;
  49. position: relative;
  50. .close--btn{
  51. width: 44px;
  52. height: 44px;
  53. background-color: transparent;
  54. background-size: 20px 20px;
  55. background-repeat: no-repeat;
  56. background-position: center;
  57. background-image: url(../img/ico--close.svg);
  58. border: 1px solid #fff;
  59. border-radius: 50%;
  60. position: absolute;
  61. top: calc(50% - 22px);
  62. right:20px;
  63. }
  64. h3{
  65. color: #FFF;
  66. text-align: center;
  67. font-size: 20px;
  68. font-style: normal;
  69. font-weight: 700;
  70. margin-bottom: 10px;
  71. letter-spacing: -0.4px;
  72. }
  73. p{
  74. color: #FFF;
  75. font-size: 15px;
  76. letter-spacing: -0.3px;
  77. font-weight: 500;
  78. }
  79. }
  80. }
  81. .header--contents--wrap{
  82. width:100%;
  83. @include flex-center;
  84. min-height:80px;
  85. .hnb--wrap{
  86. @include flex-center;
  87. gap:10px;
  88. button{
  89. padding:0px;
  90. border:0px;
  91. background: none;
  92. width:30px;
  93. height:30px;
  94. @include flex-center;
  95. &.hmb--btn{
  96. display: none;
  97. }
  98. }
  99. }
  100. .header--contents{
  101. width:100%;
  102. display: flex;
  103. flex-direction: column;
  104. .header--logo--wrap{
  105. border-bottom: 1px solid #d9d9d9;
  106. .logo--wrap{
  107. height: 100px;
  108. align-items: center;
  109. margin: 0 auto;
  110. width: 100%;
  111. max-width:1200px;
  112. display: flex;
  113. justify-content: space-between;
  114. padding: 20px 0;
  115. .logo{
  116. max-width: 210px;
  117. display: flex;
  118. align-items: center;
  119. width: 25%;
  120. height: 58px;
  121. a{
  122. display: inline-block;
  123. img{
  124. width: 100%;
  125. }
  126. }
  127. }
  128. .txt{
  129. width: calc(70% - 20px);
  130. display: flex;
  131. flex-direction: column;
  132. gap: 15px;
  133. justify-content: center;
  134. p{
  135. color: #000;
  136. font-size: 15px;
  137. font-weight: 300;
  138. letter-spacing: -0.15px;
  139. line-height: 1;
  140. span{
  141. color: #1aaf59;
  142. font-weight: 600;
  143. }
  144. &:last-child{
  145. font-size: 18px;
  146. span{
  147. font-weight: 700;
  148. }
  149. }
  150. }
  151. }
  152. .ham--btn{
  153. display: none;
  154. width: 30px;
  155. min-width: 30px;
  156. height: 30px;
  157. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22' fill='none'%3E%3Cline y1='11' x2='22' y2='11' stroke='black' stroke-width='2'%3E%3C/line%3E%3Cline y1='18' x2='22' y2='18' stroke='black' stroke-width='2'%3E%3C/line%3E%3Cline y1='4' x2='22' y2='4' stroke='black' stroke-width='2'%3E%3C/line%3E%3C/svg%3E");
  158. background-repeat: no-repeat;
  159. background-size: 22px 22px;
  160. background-position: center;
  161. cursor: pointer;
  162. }
  163. }
  164. }
  165. &.actv{
  166. .header--gnb--wrap{
  167. .sub--wrap{
  168. max-height: 500px;
  169. }
  170. }
  171. }
  172. .header--gnb--wrap{
  173. .gnb--wrap{
  174. width: 100%;
  175. max-width: 1200px;
  176. margin: 0 auto;
  177. >ul{
  178. width: 100%;
  179. @include flex-center;
  180. li{
  181. width: 20%;
  182. position: relative;
  183. text-align: center;
  184. a{
  185. width: 100%;
  186. color: #000;
  187. font-size: 17px;
  188. height: 70px;
  189. display: inline-block;
  190. line-height: 70px;
  191. font-style: normal;
  192. font-weight: 600;
  193. letter-spacing: -0.34px;
  194. }
  195. ul{
  196. /*!2025-07-23 추가 */
  197. pointer-events: none;
  198. position: absolute;
  199. top:-500px;
  200. left:50%;
  201. opacity: 0;
  202. transform: translateX(-50%) translateY(-20px);
  203. transition: transform linear .2s, opacity linear .4s;
  204. background: transparent;
  205. padding:10px;
  206. z-index: 1000;
  207. li{
  208. padding:5px;
  209. a{
  210. color: #191919;
  211. font-size: 17px;
  212. font-style: normal;
  213. font-weight: 500;
  214. letter-spacing: -0.34px;
  215. white-space: nowrap;
  216. strong{
  217. color: #5D1BB8;
  218. font-size: 17px;
  219. font-style: normal;
  220. font-weight: 700;
  221. letter-spacing: -0.34px;
  222. }
  223. }
  224. }
  225. }
  226. }
  227. }
  228. }
  229. .sub--wrap{
  230. max-height: 0;
  231. transition: max-height 0.3s;
  232. overflow: hidden;
  233. >ul{
  234. max-width: 1200px;
  235. padding-bottom: 10px;
  236. margin: 0 auto;
  237. width: 100%;
  238. display: flex;
  239. li{
  240. width: 20%;
  241. a{
  242. display: inline-block;
  243. text-align: center;
  244. width: 100%;
  245. line-height: 1;
  246. font-size: 16px;
  247. font-weight: 400;
  248. padding: 10px 0;
  249. }
  250. }
  251. }
  252. }
  253. }
  254. }
  255. }
  256. .header--ham--wrap{
  257. background-color: #ffffff;
  258. position: fixed;
  259. left: 100%;
  260. top: 0;
  261. width: 100%;
  262. height: 100vh;
  263. transition: all 0.3s;
  264. z-index: 10001;
  265. display: flex;
  266. flex-direction: column;
  267. &.actv{
  268. left: 0%;
  269. }
  270. .header--ham--top{
  271. background-color: #2ecc71;
  272. padding: 20px;
  273. display: flex;
  274. align-items: center;
  275. justify-content: space-between;
  276. .logo--wrap{
  277. display: inline-block;
  278. max-width: 210px;
  279. width: 25%;
  280. img{
  281. width: 100%;
  282. }
  283. }
  284. .login--menu{
  285. display: flex;
  286. gap: 20px;
  287. .ico--user{
  288. display: inline-block;
  289. width: 24px;
  290. height: 24px;
  291. background-repeat: no-repeat;
  292. background-image: url(../img/ico_user.svg);
  293. }
  294. .ico--close{
  295. display: inline-block;
  296. cursor: pointer;
  297. background-repeat: no-repeat;
  298. width: 24px;
  299. height: 24px;
  300. background-image: url(../img/ico_close2.svg);
  301. }
  302. }
  303. }
  304. .header--ham--menu{
  305. display: flex;
  306. .ham--l{
  307. position: relative;
  308. width: 51%;
  309. height: calc(100vh - 84px);
  310. overflow-y: auto;
  311. background-color: #F5F5F5;
  312. ul{
  313. padding: 0;
  314. margin-bottom: 0;
  315. li{
  316. list-style: none;
  317. cursor: pointer;
  318. padding: 30px 10px;
  319. color: #222222;
  320. line-height: 1;
  321. letter-spacing: -0.3px;
  322. border-bottom: 1px solid #E3E3E3;
  323. font-weight: 400;
  324. background-color: #F5F5F5;
  325. font-size: 15px;
  326. text-align: center;
  327. &.actv{
  328. background-color: #ffffff;;
  329. }
  330. }
  331. }
  332. .menu--login{
  333. text-decoration: none;
  334. color: #555;
  335. width: 100%;
  336. font-size: 16px;
  337. font-weight: 500;
  338. margin: 50px 0;
  339. line-height: 1;
  340. letter-spacing: -0.32px;
  341. display: flex;
  342. align-items: center;
  343. justify-content: center;
  344. text-align: center;
  345. gap: 12px;
  346. .ico{
  347. width: 16px;
  348. height: 16px;
  349. &.login{
  350. background-image: url(../img/ico_login.svg);
  351. }
  352. &.logout{
  353. background-image: url(../img/ico_logout.svg);
  354. }
  355. }
  356. }
  357. }
  358. .ham--r{
  359. width: 49%;
  360. padding: 0 15px;
  361. height: calc(100vh - 84px);
  362. overflow-y: auto;
  363. ul{
  364. padding: 0;
  365. display: none;
  366. &.actv{
  367. display: block;
  368. }
  369. li{
  370. list-style: none;
  371. a{
  372. width: 100%;
  373. font-size: 15px;
  374. display: inline-block;
  375. color: #222222;
  376. line-height: 1;
  377. padding: 30px 15px;
  378. letter-spacing: -0.3px;
  379. border-bottom: 1px solid #F6F6F6;
  380. text-decoration: none;
  381. &.actv{
  382. color: #315BFF;
  383. font-weight: 500;
  384. }
  385. }
  386. }
  387. }
  388. }
  389. }
  390. }
  391. }
  392. main{
  393. padding-top: 270px!important;
  394. &.actv{
  395. padding-top: 170px!important;
  396. }
  397. .main--visual--section{
  398. overflow: hidden;
  399. position: relative;
  400. .main--visual--wrap{
  401. width:100%;
  402. .main--visual--img{
  403. width:100%;
  404. overflow: hidden;
  405. height:500px;
  406. position: relative;
  407. img{
  408. position: absolute;
  409. left:50%;
  410. transform: translateX(-50%);
  411. }
  412. .main--visual--txt{
  413. position: absolute;
  414. width: 100%;
  415. left: 50%;
  416. transform: translateX(-50%);
  417. height: 100%;
  418. padding: 0 20px;
  419. display: flex;
  420. align-items: center;
  421. justify-content: center;
  422. flex-direction: column;
  423. max-width: 1200px;
  424. gap: 40px;
  425. text-align: center;
  426. .sub--title{
  427. display: none;
  428. }
  429. h3{
  430. color: #191919;
  431. font-size: 50px;
  432. font-weight: 700;
  433. }
  434. p{
  435. font-size: 18px;
  436. color: #191919;
  437. font-weight: 400;
  438. margin-bottom: 30px;
  439. }
  440. }
  441. }
  442. }
  443. .main--visual--pager{
  444. position: absolute;
  445. left: 50%;
  446. transform: translateX(-50%);
  447. bottom:30px;
  448. z-index: 9;
  449. display: flex;
  450. justify-content: center;
  451. align-items: center;
  452. height: 90px;
  453. padding: 20px 35px;
  454. border-radius: 1000px;
  455. background: rgba(255, 255, 255, 0.60);
  456. backdrop-filter: blur(2px);
  457. .prev--next--wrap{
  458. padding-top: 20px;
  459. @include flex-center;
  460. display: flex;
  461. gap: 15px;
  462. align-items: center;
  463. justify-content: center;
  464. button{
  465. @include flex-center;
  466. width: 18px;
  467. height: 18px;
  468. border: none;
  469. background-color: transparent;
  470. background-image: url(../img/ico--swiper--left.svg);
  471. background-repeat: no-repeat;
  472. background-position: center;
  473. &.next--btn{
  474. background-image: url(../img/ico--swiper--right.svg);
  475. }
  476. }
  477. }
  478. .play--pause{
  479. @include flex-center;
  480. gap:11px;
  481. button{
  482. @include flex-center;
  483. width: 50px;
  484. height: 50px;
  485. border-radius: 50px;
  486. border:0px;
  487. background: rgba(255, 255, 255, 0.80);
  488. backdrop-filter: blur(2px);
  489. }
  490. }
  491. .main--visual--fraction{
  492. display: flex;
  493. align-items: center;
  494. justify-content: center;
  495. span{
  496. font-size: 13px;
  497. font-style: normal;
  498. line-height: 1;
  499. letter-spacing: -0.32px;
  500. font-weight: 500;
  501. color: rgba(0, 0, 0, 0.50);
  502. &.swiper-pagination-current{
  503. color:#000;
  504. font-weight: 800;
  505. }
  506. &.fraction-separator{
  507. background-color: #000;
  508. width: 1px;
  509. height: 12px;
  510. display: inline-block;
  511. margin: 0 10px;
  512. }
  513. }
  514. }
  515. .main--visual--pagination{
  516. display: flex;
  517. margin-right: 20px;
  518. gap: 5px;
  519. align-items: center;
  520. justify-content: center;
  521. padding-top: 20px;
  522. .swiper-pagination-bullet{
  523. width: 34px;
  524. height: 34px;
  525. border-radius: 50%;
  526. border: none;
  527. opacity: 1;
  528. background-color: transparent;
  529. cursor: pointer;
  530. position: relative;
  531. &::after{
  532. position: absolute;
  533. content: '';
  534. width: 4px;
  535. height: 4px;
  536. background-color: #000;
  537. border-radius: 50%;
  538. left: calc(50% - 2px);
  539. top: calc(50% - 2px);
  540. display: inline-block;
  541. }
  542. &.swiper-pagination-bullet-active{
  543. border: 1px solid rgba(0, 0, 0, 0.50);
  544. }
  545. }
  546. }
  547. .main--visual--progress{
  548. display: flex;
  549. justify-content: center;
  550. flex-direction: column;
  551. margin-right: 20px;
  552. .main--visual--progress--bar{
  553. display: flex;
  554. align-items: center;
  555. }
  556. .progress-title{
  557. padding-left: 30px;
  558. width: 230px;
  559. color: #000;
  560. white-space: nowrap;
  561. overflow: hidden;
  562. text-overflow: ellipsis;
  563. font-size: 16px;
  564. font-weight: 500;
  565. line-height: 1;
  566. margin-bottom: 4px;
  567. }
  568. .progress-bar{
  569. width: 200px;
  570. height: 2px;
  571. background-color: rgba(0, 0, 0, 0.2)!important;
  572. border-radius: 100px;
  573. position: relative;
  574. overflow: hidden;
  575. }
  576. .progress-text{
  577. color: #000;
  578. font-size: 15px;
  579. font-weight: 500;
  580. width: 30px;
  581. }
  582. }
  583. }
  584. }
  585. .mna--reason--wrap{
  586. overflow-x: hidden;
  587. .btn--wrap{
  588. display: flex;
  589. justify-content: center;
  590. padding: 40px 0;
  591. gap: 10px;
  592. button{
  593. border: 1px solid #dadada;
  594. background-color: #fff;
  595. width: 50px;
  596. height: 50px;
  597. border-radius: 50%;
  598. background-repeat: no-repeat;
  599. background-position: center;
  600. &.play--btn{
  601. background-image: url(../img/ico--swiper--pause.svg);
  602. &.pause{
  603. background-image: url(../img/ico--swiper--play.svg);
  604. }
  605. }
  606. &.prev--btn{
  607. background-image: url(../img/ico--swiper--left2.svg);
  608. }
  609. &.next--btn{
  610. background-image: url(../img/ico--swiper--right2.svg);
  611. }
  612. }
  613. }
  614. .swiper-slide{
  615. transform: translateX(50%);
  616. height: auto;
  617. .reason--box{
  618. border-radius: 30px;
  619. border: 1px solid #EEE;
  620. background: #FFF;
  621. box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08);
  622. height: 100%;
  623. display: flex;
  624. padding: 40px 45px 70px;
  625. flex-direction: column;
  626. >span{
  627. color: #1aaf59;
  628. font-size: 18px;
  629. font-weight: 700;
  630. line-height: 1;
  631. text-decoration-line: underline;
  632. text-decoration-style: solid;
  633. text-decoration-skip-ink: auto;
  634. text-decoration-thickness: auto;
  635. text-underline-offset: auto;
  636. text-underline-position: from-font;
  637. margin-bottom: 45px;
  638. }
  639. dt{
  640. color: #000;
  641. font-size: 20px;
  642. font-weight: 700;
  643. letter-spacing: -0.2px;
  644. margin-bottom: 35px;
  645. }
  646. dd{
  647. color: #333;
  648. font-size: 15px;
  649. font-weight: 300;
  650. letter-spacing: -0.15px;
  651. }
  652. }
  653. }
  654. }
  655. .mna--prof--wrap{
  656. display: flex;
  657. justify-content: center;
  658. align-items: center;
  659. flex-direction: column;
  660. .nav--wrapper{
  661. display: flex;
  662. align-items: center;
  663. justify-content: center;
  664. gap:10px;
  665. padding-bottom:50px;
  666. padding-top:40px;
  667. button{
  668. display: flex;
  669. width: 50px;
  670. height: 50px;
  671. border-radius: 50px;
  672. border-radius: 100px;
  673. border: 1px solid #DADADA;
  674. background: #fff;
  675. justify-content: center;
  676. align-items: center;
  677. &.play--btn{
  678. display: none;
  679. }
  680. }
  681. }
  682. .prof--man--swiper{
  683. width:100%;
  684. .swiper-slide{
  685. max-width:494px;
  686. .prof--card{
  687. display: flex;
  688. width:100%;
  689. padding:30px 40px;
  690. border-radius: 30px;
  691. border: 1px solid #E2E2E2;
  692. background: #FFF;
  693. box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
  694. align-items: center;
  695. justify-content: flex-start;
  696. gap:30px;
  697. .thumb{
  698. min-width: 150px;
  699. overflow: hidden;
  700. width:150px;
  701. height:150px;
  702. border-radius: 150px;
  703. }
  704. .desc--wrap{
  705. >h2{
  706. color: #191919;
  707. font-size: 20px;
  708. font-style: normal;
  709. font-weight: 800;
  710. line-height: 100%; /* 20px */
  711. span{
  712. color: #1AAF59;
  713. font-size: 15px;
  714. font-style: normal;
  715. font-weight: 600;
  716. line-height: 100%; /* 15px */
  717. margin-left:12px;
  718. }
  719. }
  720. .key--word{
  721. display: flex;
  722. padding-top:30px;
  723. flex-wrap: wrap;
  724. gap:5px;
  725. span{
  726. color: #1AAF59;
  727. text-align: center;
  728. font-size: 13px;
  729. font-style: normal;
  730. font-weight: 500;
  731. line-height: 100%; /* 13px */
  732. border-radius: 100px;
  733. border: 1px solid rgba(46, 204, 113, 0.50);
  734. padding:8px 10px;
  735. }
  736. }
  737. }
  738. }
  739. }
  740. }
  741. }
  742. .faq--wrapper{
  743. width: 100%;
  744. display: flex;
  745. justify-content: center;
  746. .inner--contents{
  747. width:100%;
  748. max-width:1200px;
  749. .section--title{
  750. color: #191919;
  751. text-align: center;
  752. font-size: 35px;
  753. font-style: normal;
  754. font-weight: 800;
  755. line-height: 100%; /* 35px */
  756. letter-spacing: -0.7px;
  757. }
  758. .faq--list--wrap{
  759. width:100%;
  760. max-width:1200px;
  761. padding-top:70px;
  762. ul{
  763. width: 100%;
  764. border-bottom:1px solid #E6E6E6;
  765. li{
  766. width: 100%;
  767. text-align: left;
  768. border-top:1px solid #E6E6E6;
  769. position: relative;
  770. @for $i from 1 through 9 {
  771. &:nth-of-type(#{$i}) {
  772. .faq--item--title {
  773. &::before {
  774. content: 'Q#{$i}';
  775. }
  776. }
  777. }
  778. }
  779. .faq--item--title{
  780. padding:30px 20px;
  781. position: relative;
  782. cursor: pointer;
  783. transition: background-color 0.3s ease;
  784. &:after{
  785. content:'';
  786. display: block;
  787. width:100%;
  788. height:1px;
  789. width:18px;
  790. height:18px;
  791. background: url(../img/chv_down.svg) no-repeat center center / contain;
  792. position: absolute;
  793. top:50%;
  794. right:20px;
  795. transform: translateY(-50%);
  796. }
  797. &.active{
  798. &:after{
  799. background: url(../img/chv_up.svg) no-repeat center center / contain;
  800. transform: translateY(-50%) rotate(0deg);
  801. }
  802. }
  803. > p{
  804. padding-left:60px;
  805. color: #222;
  806. font-size: 18px;
  807. font-style: normal;
  808. font-weight: 400;
  809. line-height: 100%; /* 18px */
  810. letter-spacing: -0.36px;
  811. }
  812. &::before{
  813. content:'';
  814. display:inline-flex;
  815. align-items: center;
  816. justify-content: center;
  817. position: absolute;
  818. top:50%;
  819. left:20px;
  820. transform: translateY(-50%);
  821. width:40px;
  822. min-width:40px;
  823. height:40px;
  824. border-radius: 40px;
  825. border-radius: 100px;
  826. border: 1px solid #E6E6E6;
  827. background: #FFF;
  828. color: #2ECC71;
  829. text-align: center;
  830. font-size: 15px;
  831. font-style: normal;
  832. font-weight: 700;
  833. line-height: 100%; /* 15px */
  834. letter-spacing: -0.3px;
  835. }
  836. }
  837. .faq--item--content{
  838. position: relative;
  839. padding:30px 20px;
  840. border-top: 1px solid #E6E6E6;
  841. background: #F6F6F6;
  842. display: none;
  843. > p{
  844. padding-left:60px;
  845. color: #333;
  846. font-size: 16px;
  847. font-style: normal;
  848. font-weight: 400;
  849. letter-spacing: -0.32px;
  850. }
  851. &::before{
  852. content:'A';
  853. position: absolute;
  854. top: 30px;
  855. left:20px;
  856. color: #FFF;
  857. text-align: center;
  858. font-size: 17px;
  859. font-style: normal;
  860. font-weight: 700;
  861. line-height: 100%; /* 17px */
  862. letter-spacing: -0.34px;
  863. display: inline-flex;
  864. align-items: center;
  865. justify-content: center;
  866. width:40px;
  867. min-width:40px;
  868. height:40px;
  869. border-radius: 100px;
  870. background: linear-gradient(180deg, #65CC2E 0%, #2ECC71 52.4%, #2597D0 100%);
  871. }
  872. }
  873. }
  874. }
  875. }
  876. }
  877. }
  878. .gray--section{
  879. background-color: #f9f9f9;
  880. }
  881. .green--section{
  882. background-color: #2ECC71;
  883. }
  884. .light--green--section{
  885. background-color: #e9f7ef;
  886. }
  887. .impt--section{
  888. background: url(../img/dear_bg.png) no-repeat center center / cover;
  889. }
  890. .section--container{
  891. max-width: 1200px;
  892. width: 100%;
  893. margin: 0 auto;
  894. &.p--120{
  895. padding: 120px 0;
  896. }
  897. &.p--100{
  898. padding: 100px 0;
  899. }
  900. .title--wrap{
  901. >h2{
  902. text-align: center;
  903. color: #000;
  904. font-size: 35px;
  905. font-weight: 300;
  906. strong{
  907. font-weight: 700;
  908. }
  909. }
  910. >p{
  911. text-align: center;
  912. }
  913. &.big{
  914. >h2{
  915. color: #000;
  916. font-size: 50px;
  917. font-weight: 300;
  918. letter-spacing: -0.5px;
  919. margin-bottom: 60px;
  920. line-height: 1.4;
  921. strong{
  922. font-weight: 700;
  923. }
  924. }
  925. >p{
  926. color: #000;
  927. font-weight: 300;
  928. line-height: 1.7;
  929. font-size: 18px;
  930. }
  931. }
  932. &.le{
  933. >h2, >p{
  934. text-align: left;
  935. }
  936. }
  937. }
  938. .now--box--wrap{
  939. .box--top{
  940. display: flex;
  941. margin-bottom: 90px;
  942. justify-content: space-between;
  943. .box{
  944. gap: 40px;
  945. width: 33.333%;
  946. display: flex;
  947. flex-direction: column;
  948. align-items: center;
  949. text-align: center;
  950. >p{
  951. color: #000;
  952. font-size: 18px;
  953. font-weight: 300;
  954. strong{
  955. font-weight: 700;
  956. }
  957. }
  958. }
  959. }
  960. .box--bot{
  961. display: flex;
  962. gap: 40px;
  963. .box{
  964. width: 50%;
  965. border-radius: 20px;
  966. padding: 0 40px;
  967. display: flex;
  968. align-items: center;
  969. height: 120px;
  970. background-size: cover;
  971. background-repeat: no-repeat;
  972. background-position: right bottom;
  973. background-image: url(../img/bg--now1.svg);
  974. &:last-child{
  975. background-image: url(../img/bg--now2.svg);
  976. }
  977. }
  978. }
  979. }
  980. .growth--logic--wrap{
  981. display: flex;
  982. flex-wrap: wrap;
  983. gap: 40px;
  984. >div{
  985. width: calc((100% - 120px) / 3);
  986. }
  987. .title--box{
  988. width: calc((100% - 120px) / 3 + 40px);
  989. h2{
  990. color: #fff;
  991. font-size: 45px;
  992. font-weight: 300;
  993. letter-spacing: -0.45px;
  994. strong{
  995. font-weight: 800;
  996. color: #fff;
  997. }
  998. }
  999. .btn--wrap{
  1000. display: flex;
  1001. flex-wrap: wrap;
  1002. gap: 15px;
  1003. a{
  1004. display: inline-block;
  1005. padding: 20px 30px;
  1006. color: #fff;
  1007. border-radius: 1000px;
  1008. border: 1px solid #fff;
  1009. line-height: 1;
  1010. }
  1011. }
  1012. }
  1013. .logic--box{
  1014. border-radius: 25px;
  1015. background-color: #fff;
  1016. min-height: 350px;
  1017. padding: 50px 45px 70px;
  1018. dt{
  1019. color: #333;
  1020. font-size: 22px;
  1021. font-weight: 700;
  1022. letter-spacing: -0.22px;
  1023. margin-bottom: 30px;
  1024. strong{
  1025. color :#1aaf59;
  1026. font-weight: 700;
  1027. }
  1028. }
  1029. dd{
  1030. color: #444;
  1031. font-size: 15px;
  1032. font-weight: 400;
  1033. letter-spacing: -0.15px;
  1034. line-height: 1.7;
  1035. }
  1036. &.special{
  1037. width: calc((100% - 120px) / 3 + 40px);
  1038. background-color: #139e4e;
  1039. background-image: url(../img/ico--logic.svg);
  1040. background-repeat: no-repeat;
  1041. background-position: right bottom;
  1042. dt{
  1043. color :#fff;
  1044. text-decoration-line: underline;
  1045. text-decoration-style: solid;
  1046. text-decoration-skip-ink: auto;
  1047. text-decoration-thickness: auto;
  1048. text-underline-offset: auto;
  1049. text-underline-position: from-font;
  1050. }
  1051. dd{
  1052. color: #fff;
  1053. }
  1054. }
  1055. }
  1056. }
  1057. .best--service--wrap{
  1058. display: flex;
  1059. gap: 40px;
  1060. .service--box{
  1061. padding: 40px 45px 70px;
  1062. border: 1px solid #e5e5e5;
  1063. border-radius: 25px;
  1064. position: relative;
  1065. width: calc((100% - 80px) / 3);
  1066. .service--img{
  1067. img{
  1068. width: 70%;
  1069. max-width: 140px;
  1070. }
  1071. }
  1072. &:nth-child(2){
  1073. .service--numb{
  1074. background-image: url(../img/numb--service2.svg);
  1075. }
  1076. }
  1077. &:nth-child(3){
  1078. .service--numb{
  1079. background-image: url(../img/numb--service3.svg);
  1080. }
  1081. }
  1082. .service--numb{
  1083. position: absolute;
  1084. right: 0;
  1085. display: inline-block;
  1086. width: 25%;
  1087. max-width: 100px;
  1088. background-size: 100%;
  1089. height: 100px;
  1090. background-repeat: no-repeat;
  1091. background-position: top right;
  1092. top: 10px;
  1093. background-image: url(../img/numb--service1.svg);
  1094. }
  1095. h3{
  1096. margin-top: 40px;
  1097. margin-bottom: 30px;
  1098. font-size: 22px;
  1099. color: #191919;
  1100. font-weight: 300;
  1101. letter-spacing: -0.22px;
  1102. line-height: 1.4;
  1103. strong{
  1104. font-weight: 700;
  1105. }
  1106. }
  1107. p{
  1108. color: #333;
  1109. font-size: 16px;
  1110. letter-spacing: -0.16px;
  1111. line-height: 1.7;
  1112. font-weight: 300;
  1113. }
  1114. }
  1115. }
  1116. .process--plan--wrap{
  1117. .title--wrap{
  1118. margin-bottom: 70px;
  1119. span{
  1120. color: #1aaf59;
  1121. font-size: 15px;
  1122. text-transform: uppercase;
  1123. display: inline-block;
  1124. margin-bottom: 25px;
  1125. }
  1126. h2{
  1127. font-size: 30px;
  1128. font-weight: 400;
  1129. margin-bottom: 25px;
  1130. }
  1131. p{
  1132. font-size: 18px;
  1133. font-weight: 300;
  1134. }
  1135. }
  1136. .content--wrap{
  1137. h3{
  1138. .ico{
  1139. width: 20px;
  1140. height: 20px;
  1141. background-image: url(../img/ico--heart.svg);
  1142. display: inline-block;
  1143. background-repeat: no-repeat;
  1144. background-position: center;
  1145. margin-right: 15px;
  1146. }
  1147. color: #000;
  1148. font-size: 20px;
  1149. font-weight: 700;
  1150. letter-spacing: -0.2px;
  1151. display: flex;
  1152. align-items: center;
  1153. margin-bottom: 40px;
  1154. }
  1155. .direct--wrap{
  1156. display: flex;
  1157. justify-content: space-between;
  1158. align-items: center;
  1159. gap: 20px;
  1160. .circle{
  1161. display: flex;
  1162. min-width: 190px;
  1163. justify-content: center;
  1164. gap: 12px;
  1165. padding: 20px 40px;
  1166. background-color: #2ECC71;
  1167. align-items: center;
  1168. border-radius: 100px;
  1169. p{
  1170. color: #fff;
  1171. font-size: 16px;
  1172. font-weight: 600;
  1173. line-height: 1;
  1174. letter-spacing: -0.17px;
  1175. }
  1176. .ico{
  1177. width: 25px;
  1178. min-width: 25px;
  1179. height: 25px;
  1180. display: inline-block;
  1181. background-position: center;
  1182. background-repeat: no-repeat;
  1183. background-size: 100%;
  1184. background-image: url(../img/ico--direct1.svg);
  1185. }
  1186. &:nth-of-type(2){
  1187. background-color: #188345;
  1188. .ico{
  1189. background-image: url(../img/ico--direct2.svg);
  1190. }
  1191. }
  1192. &:nth-of-type(3){
  1193. .ico{
  1194. background-image: url(../img/ico--direct3.svg);
  1195. }
  1196. }
  1197. &:nth-of-type(4){
  1198. background-color: #188345;
  1199. .ico{
  1200. background-image: url(../img/ico--direct4.svg);
  1201. }
  1202. }
  1203. }
  1204. .bar{
  1205. width: 70px;
  1206. height: 1px;
  1207. border-bottom: 3px dashed #2ecc71;
  1208. }
  1209. }
  1210. .process--wrap{
  1211. /*! 20250904 수정 : S */
  1212. .process--title{
  1213. width: 100%;
  1214. display: flex;
  1215. align-items: center;
  1216. gap: 15px;
  1217. .process--circle{
  1218. position: relative;
  1219. padding: 25px 30px;
  1220. text-align: center;
  1221. width: fit-content;
  1222. background-image: url(../img/bg--process.svg);
  1223. background-repeat: no-repeat;
  1224. background-size: cover;
  1225. color: #222;
  1226. font-size: 16px;
  1227. margin: 12px auto;
  1228. border-radius: 1000px;
  1229. letter-spacing: -0.16px;
  1230. font-weight: 600;
  1231. &::after{
  1232. content: '';
  1233. width: calc(100% + 24px);
  1234. height: calc(100% + 24px);
  1235. border: 5px solid #DDEE81;
  1236. position: absolute;
  1237. display: inline-block;
  1238. border-radius: inherit;
  1239. top: -12px;
  1240. left: -12px;
  1241. }
  1242. }
  1243. .arrow{
  1244. flex: 1;
  1245. margin-left: 53px;
  1246. margin-right: 25px;
  1247. height: 20px;
  1248. background-color: #2ecc71;
  1249. position: relative;
  1250. .arrow--bar{
  1251. width: 100%;
  1252. display: inline-block;
  1253. background-position: right center;
  1254. background-repeat: no-repeat;
  1255. width: 100%;
  1256. height: 20px;
  1257. background-image: url(../img/ico--rainbow--arrow7.svg);
  1258. }
  1259. .arrow--tail{
  1260. display: inline-block;
  1261. position: absolute;
  1262. width: 20px;
  1263. height: 110px;
  1264. top: 0;
  1265. left: 0;
  1266. background-color: #2ECC71;
  1267. background-repeat: no-repeat;
  1268. &::before{
  1269. content: '';
  1270. position: absolute;
  1271. bottom: -20px;
  1272. left: -6.5px;
  1273. width: 33px;
  1274. height: 20px;
  1275. background-image: url(../img/ico--arrow.svg);
  1276. }
  1277. }
  1278. &.right{
  1279. margin-right: 53px;
  1280. margin-left: 25px;
  1281. .arrow--bar{
  1282. background-position: left center;
  1283. background-image: url(../img/ico--rainbow--arrow8.svg);
  1284. }
  1285. .arrow--tail{
  1286. left: auto;
  1287. right: 0;
  1288. }
  1289. }
  1290. }
  1291. }
  1292. /*! 20250904 수정 : E */
  1293. .process--cont{
  1294. padding-top: 60px;
  1295. .process--top{
  1296. display: flex;
  1297. align-items: center;
  1298. justify-content: space-between;
  1299. .process--side--title{
  1300. /*! 20250911 수정 */
  1301. display: none;
  1302. }
  1303. .process--side{
  1304. width: 123px;
  1305. display: flex;
  1306. gap: 15px;
  1307. flex-direction: column;
  1308. justify-content: center;
  1309. position: relative;
  1310. &.mo{
  1311. /*! 20250911 수정 */
  1312. display: none;
  1313. }
  1314. &::after{
  1315. content: '';
  1316. display: inline-block;
  1317. width: 70px;
  1318. height: 100%;
  1319. z-index: 3;
  1320. background-repeat: no-repeat;
  1321. background-position: center;
  1322. background-image: url(../img/ico--rainbow--arrow1.svg);
  1323. position: absolute;
  1324. top: 0;
  1325. left: calc(100% + 20px);
  1326. }
  1327. &:last-child{
  1328. &::after{
  1329. left: auto;
  1330. right: calc(100% + 20px);
  1331. background-image: url(../img/ico--rainbow--arrow2.svg);
  1332. }
  1333. }
  1334. .circle{
  1335. color: #444;
  1336. font-size: 16px;
  1337. text-align: center;
  1338. padding: 19px 0;
  1339. border-radius: 100px;
  1340. border: 2px solid #ddee81;
  1341. font-weight: 600;
  1342. line-height: 1;
  1343. letter-spacing: -0.16px;
  1344. strong{
  1345. font-weight: 600;
  1346. color: #1aaf59;
  1347. }
  1348. }
  1349. .line{
  1350. height: 50px;
  1351. width: 50%;
  1352. border-right: 3px dashed #ddee81;
  1353. }
  1354. &.right{
  1355. &::after{
  1356. /*! 20250911 수정 */
  1357. transform: rotate(180deg);
  1358. left: auto;
  1359. right: calc(100% + 20px);
  1360. }
  1361. }
  1362. }
  1363. .process--circle{
  1364. width: calc(100% - 300px);
  1365. height: 410px;
  1366. display: flex;
  1367. background-image: url(../img/bg--process--circle.svg);
  1368. background-repeat: no-repeat;
  1369. background-position: center;
  1370. align-items: center;
  1371. justify-content: center;
  1372. background-size: 100%;
  1373. position: relative;
  1374. &::after{
  1375. content: '';
  1376. background-repeat: no-repeat;
  1377. background-position: center;
  1378. display: inline-block;
  1379. width: 33px;
  1380. height: 71px;
  1381. background-image: url(../img/ico--rainbow--arrow3.svg);
  1382. position: absolute;
  1383. top: calc(100% - 40px);
  1384. }
  1385. .circle{
  1386. width: 28%;
  1387. display: flex;
  1388. flex-direction: column;
  1389. gap: 35px;
  1390. align-items: center;
  1391. position: relative;
  1392. &::after{
  1393. content: '';
  1394. position: absolute;
  1395. right: -7.5px;
  1396. display: inline-block;
  1397. top: calc(50% - 15px);
  1398. width: 30px;
  1399. height: 30px;
  1400. background-image: url(../img/ico--process--arrow.svg);
  1401. }
  1402. &:last-child{
  1403. &::after{
  1404. display: none;
  1405. }
  1406. }
  1407. .ico{
  1408. width: 80px;
  1409. height: 80px;
  1410. background-position: center;
  1411. background-size: 100%;
  1412. background-repeat: no-repeat;
  1413. display: inline-block;
  1414. }
  1415. p{
  1416. font-size: 18px;
  1417. font-weight: 400;
  1418. color: #000;
  1419. strong{
  1420. font-weight: 700;
  1421. }
  1422. }
  1423. &:nth-child(1){
  1424. .ico{
  1425. background-image: url(../img/ico--process--circle1.svg);
  1426. }
  1427. }
  1428. &:nth-child(2){
  1429. .ico{
  1430. background-image: url(../img/ico--process--circle2.svg);
  1431. }
  1432. }
  1433. &:nth-child(3){
  1434. .ico{
  1435. background-image: url(../img/ico--process--circle3.svg);
  1436. }
  1437. }
  1438. }
  1439. }
  1440. }
  1441. .process--bot{
  1442. padding-top: 50px;
  1443. padding-bottom: 120px;
  1444. display: flex;
  1445. flex-direction: column;
  1446. justify-content: center;
  1447. align-items: center;
  1448. gap: 20px;
  1449. .process--side--title{
  1450. /*! 20250911 수정 */
  1451. display: none;
  1452. }
  1453. .process--side{
  1454. width: 100%;
  1455. display: flex;
  1456. gap: 15px;
  1457. align-items: center;
  1458. justify-content: center;
  1459. &.mo{
  1460. /*! 20250911 수정 */
  1461. display: none;
  1462. }
  1463. .arrow{
  1464. flex: 1;
  1465. margin-left: 53px;
  1466. margin-right: 25px;
  1467. height: 20px;
  1468. position: relative;
  1469. background-color: #2ECC71;
  1470. &::after{
  1471. position: absolute;
  1472. bottom: -6.7px;
  1473. right: -13px;
  1474. background-size: 137px 33px;
  1475. background-position: right center;
  1476. background-repeat: no-repeat;
  1477. content: '';
  1478. width: 100%;
  1479. height: 33px;
  1480. background-image: url(../img/ico--rainbow--arrow5.svg);
  1481. }
  1482. &::before{
  1483. content: '';
  1484. display: inline-block;
  1485. position: absolute;
  1486. width: 20px;
  1487. height: 90px;
  1488. bottom: 0;
  1489. left: 0;
  1490. background-color: #2ECC71;
  1491. background-repeat: no-repeat;
  1492. background-image: url(../img/ico--rainbow--arrow--bar.svg);
  1493. }
  1494. &.right{
  1495. margin-right: 53px;
  1496. margin-left: 25px;
  1497. &::after{
  1498. right: auto;
  1499. left: -13px;
  1500. bottom: -6px;
  1501. background-position: left center;
  1502. background-image: url(../img/ico--rainbow--arrow6.svg);
  1503. }
  1504. &::before{
  1505. left: auto;
  1506. right: 0;
  1507. }
  1508. }
  1509. }
  1510. .circle{
  1511. width: 123px;
  1512. color: #444;
  1513. font-size: 16px;
  1514. text-align: center;
  1515. padding: 19px 0;
  1516. border-radius: 100px;
  1517. border: 2px solid #B0D48C;
  1518. font-weight: 600;
  1519. line-height: 1;
  1520. letter-spacing: -0.16px;
  1521. strong{
  1522. font-weight: 600;
  1523. color: #1aaf59;
  1524. }
  1525. }
  1526. .line{
  1527. width: 50px;
  1528. height: 1px;
  1529. border-bottom: 3px dashed #B0D48C;
  1530. }
  1531. }
  1532. .line{
  1533. display: inline-block;
  1534. width: 33px;
  1535. height: 71px;
  1536. background-image: url(../img/ico--rainbow--arrow4.svg);
  1537. }
  1538. .process--txt{
  1539. text-align: center;
  1540. font-weight: 700;
  1541. font-size: 25px;
  1542. line-height: 1;
  1543. color: #333;
  1544. strong{
  1545. color: #188345;
  1546. }
  1547. span{
  1548. /*! 20250911 수정 */
  1549. display: none;
  1550. }
  1551. }
  1552. .process--blue--circle{
  1553. color: #fff;
  1554. letter-spacing: -0.18px;
  1555. font-size: 18px;
  1556. font-weight: 400;
  1557. position: relative;
  1558. padding: 36px 80px;
  1559. border-radius: 1000px;
  1560. background-color: #5281FF;
  1561. &::after{
  1562. content: '';
  1563. position: absolute;
  1564. width: 85px;
  1565. height: 104px;
  1566. top: 20px;
  1567. left: calc(100% - 50px);
  1568. background-image: url(../img/ico--process.svg);
  1569. }
  1570. strong{
  1571. color: #fff;
  1572. font-weight: 700;
  1573. }
  1574. }
  1575. }
  1576. .process--box{
  1577. display: flex;
  1578. flex-direction: column;
  1579. gap: 30px;
  1580. .box{
  1581. padding: 55px 200px 55px 70px;
  1582. background-color: #f0f3f5;
  1583. background-repeat: no-repeat;
  1584. background-position: right 40px bottom -20px;
  1585. &:nth-child(1){
  1586. background-image: url(../img/img--process1.svg);
  1587. background-position: right 40px center;
  1588. }
  1589. &:nth-child(2){
  1590. background-image: url(../img/img--process2.svg);
  1591. }
  1592. &:nth-child(3){
  1593. background-image: url(../img/img--process3.svg);
  1594. }
  1595. h4{
  1596. color: #000;
  1597. margin-bottom: 30px;
  1598. font-size: 20px;
  1599. font-weight: 700;
  1600. letter-spacing: -0.2px;
  1601. strong{
  1602. color: #009840;
  1603. }
  1604. }
  1605. li{
  1606. position: relative;
  1607. padding-left: 15px;
  1608. &::before{
  1609. position: absolute;
  1610. left: 0px;
  1611. top: 12px;
  1612. content: '';
  1613. width: 2px;
  1614. height: 2px;
  1615. background-color: #000;
  1616. border-radius: 50%;
  1617. }
  1618. }
  1619. p, li{
  1620. font-size: 15px;
  1621. color: #000;
  1622. font-weight: 300;
  1623. line-height: 1.7;
  1624. letter-spacing: -0.15px;
  1625. strong{
  1626. color: #009840;
  1627. font-weight: 600;
  1628. }
  1629. }
  1630. }
  1631. }
  1632. }
  1633. }
  1634. }
  1635. }
  1636. .four--strategy--wrap{
  1637. .strategy--cont1{
  1638. display: flex;
  1639. gap: 120px;
  1640. margin-bottom: 140px;
  1641. .cont--left{
  1642. width: 50%;
  1643. position: relative;
  1644. &::before{
  1645. content: '';
  1646. position: absolute;
  1647. height: 400px;
  1648. width: 1000%;
  1649. border-radius: 0 1000px 1000px 0;
  1650. background-color: rgba(53, 201, 149, 0.10);
  1651. right: 0;
  1652. top: 50%;
  1653. transform: translateY(-50%);
  1654. z-index: -1;
  1655. }
  1656. .box--wrap{
  1657. width: 440px;
  1658. display: flex;
  1659. flex-wrap: wrap;
  1660. gap: 40px;
  1661. position: relative;
  1662. &::before{
  1663. content: '';
  1664. position: absolute;
  1665. width: 346px;
  1666. height: 346px;
  1667. border-radius: 30px;
  1668. border: 1px solid rgba(53, 201, 149, 0.50);
  1669. transform: rotate(-45deg);
  1670. top: 0;
  1671. left: 45px;
  1672. z-index: -1;
  1673. }
  1674. li{
  1675. display: flex;
  1676. justify-content: center;
  1677. text-align: center;
  1678. flex-direction: column;
  1679. padding: 25px;
  1680. align-items: center;
  1681. width: 200px;
  1682. max-width: 200px;
  1683. height: 150px;
  1684. border-radius: 30px;
  1685. border: 1px solid #1BB57F;
  1686. gap: 10px;
  1687. background-color: #35C995;
  1688. span{
  1689. color: #fff;
  1690. font-size: 15px;
  1691. letter-spacing: -0.3px;
  1692. font-weight: 600;
  1693. }
  1694. div{
  1695. color: #fff;
  1696. font-size: 15px;
  1697. font-weight: 500;
  1698. letter-spacing: -0.3px;
  1699. }
  1700. strong{
  1701. color: #fff;
  1702. font-size: 50px;
  1703. font-weight: 800;
  1704. line-height: 1;
  1705. }
  1706. &:nth-child(3){
  1707. height: 170px;
  1708. }
  1709. &:last-child{
  1710. height: 170px;
  1711. border: 1px solid #079C68;
  1712. background-color: #1AAC78;
  1713. strong{
  1714. font-weight: 800;
  1715. font-size: 20px;
  1716. }
  1717. div{
  1718. font-size: 15px;
  1719. font-weight: 600;
  1720. span{
  1721. font-size: 14px;
  1722. display: block;
  1723. }
  1724. &.percent--wrap{
  1725. display: flex;
  1726. width: 100%;
  1727. flex-direction: column;
  1728. }
  1729. &.percent{
  1730. display: flex;
  1731. align-items: center;
  1732. width: 100%;
  1733. gap: 5px;
  1734. .line{
  1735. flex: 1;
  1736. border-bottom: 1px dashed #fff;
  1737. }
  1738. strong{
  1739. color: #ff0;
  1740. font-size: 14px;
  1741. font-weight: 800;
  1742. letter-spacing: -0.28px;
  1743. }
  1744. }
  1745. }
  1746. }
  1747. }
  1748. }
  1749. }
  1750. .cont--right{
  1751. width: 40%;
  1752. display: flex;
  1753. align-items: center;
  1754. dl{
  1755. dt{
  1756. color: #222;
  1757. font-size: 35px;
  1758. font-weight: 700;
  1759. margin-bottom: 15px;
  1760. }
  1761. dd{
  1762. div{
  1763. margin-bottom: 40px;
  1764. font-weight: 300;
  1765. font-size: 20px;
  1766. color: #333;
  1767. strong{
  1768. color: #1aaf59;
  1769. font-weight: 800;
  1770. }
  1771. }
  1772. span{
  1773. color: #222;
  1774. font-size: 18px;
  1775. font-weight: 300;
  1776. }
  1777. }
  1778. }
  1779. }
  1780. }
  1781. .strategy--cont2{
  1782. margin-bottom: 60px;
  1783. display: flex;
  1784. align-items: center;
  1785. flex-direction: column;
  1786. .question, .question2{
  1787. color: #333;
  1788. font-size: 25px;
  1789. font-weight: 300;
  1790. letter-spacing: -0.5px;
  1791. margin-bottom: 20px;
  1792. strong{
  1793. color: #191919;
  1794. font-weight: 800;
  1795. }
  1796. }
  1797. .question2{
  1798. margin-bottom: 40px;
  1799. strong{
  1800. color: #1AAF59;
  1801. }
  1802. }
  1803. .answer, .answer2{
  1804. letter-spacing: -0.36px;
  1805. text-align: center;
  1806. color: #555;
  1807. font-size: 18px;
  1808. margin-bottom: 40px;
  1809. font-weight: 300;
  1810. }
  1811. .answer2{
  1812. color: #222;
  1813. margin-bottom: 50px;
  1814. }
  1815. .result{
  1816. padding: 20px 30px;
  1817. border-radius: 100px;
  1818. background-color: rgba(26, 175, 89, 0.1);
  1819. font-weight: 300;
  1820. font-size: 19px;
  1821. strong{
  1822. font-weight: 600;
  1823. }
  1824. }
  1825. }
  1826. .strategy--cont3{
  1827. display: flex;
  1828. flex-direction: column;
  1829. gap: 35px;
  1830. .box{
  1831. padding: 30px 50px;
  1832. border-radius: 40px;
  1833. border: 1px solid #EEE;
  1834. box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.10);
  1835. background-repeat: no-repeat;
  1836. background-position: right 40px bottom;
  1837. dt{
  1838. margin-bottom: 20px;
  1839. color: #1aaf59;
  1840. font-size: 30px;
  1841. font-weight: 700;
  1842. }
  1843. dd{
  1844. ul{
  1845. display: flex;
  1846. flex-direction: column;
  1847. gap: 18px;
  1848. }
  1849. li{
  1850. color: #333;
  1851. font-size: 15px;
  1852. font-weight: 300;
  1853. padding-left: 15px;
  1854. position: relative;
  1855. &::before{
  1856. background-color: #8b8b8b;
  1857. width: 5px;
  1858. height: 5px;
  1859. display: inline-block;
  1860. border-radius: 50%;
  1861. content: '';
  1862. position: absolute;
  1863. top: 8px;
  1864. left: 3px;
  1865. }
  1866. }
  1867. }
  1868. &:nth-child(1){
  1869. background-image: url(../img/img--strategy1.svg);
  1870. }
  1871. &:nth-child(2){
  1872. background-position: right 100px bottom;
  1873. background-image: url(../img/img--strategy2.svg);
  1874. }
  1875. &:nth-child(3){
  1876. background-image: url(../img/img--strategy3.svg);
  1877. }
  1878. }
  1879. }
  1880. }
  1881. .mna--dream--wrap{
  1882. display: flex;
  1883. gap: 40px;
  1884. justify-content: center;
  1885. .dream--cont{
  1886. width: 50%;
  1887. background-color: #d1eede;
  1888. padding: 60px 50px 80px;
  1889. border-radius: 30px;
  1890. h4{
  1891. letter-spacing: -0.6px;
  1892. font-size: 30px;
  1893. color: #191919;
  1894. font-weight: 300;
  1895. line-height: 1.4;
  1896. margin-bottom: 35px;
  1897. strong{
  1898. font-weight: 700;
  1899. }
  1900. }
  1901. .sub--txt{
  1902. margin-bottom: 40px;
  1903. font-size: 18px;
  1904. font-weight: 300;
  1905. color: #333;
  1906. }
  1907. .box{
  1908. padding: 30px;
  1909. background-color: #B4DAC4;
  1910. margin-bottom: 50px;
  1911. border-radius: 20px;
  1912. .box--title{
  1913. color: #397251;
  1914. font-size: 18px;
  1915. font-weight: 700;
  1916. letter-spacing: -0.36px;
  1917. margin-bottom: 15px;
  1918. }
  1919. .box--desc{
  1920. font-weight: 400;
  1921. font-size: 15px;
  1922. color: #333;
  1923. li{
  1924. position: relative;
  1925. padding-left: 12px;
  1926. font-size: 15px;
  1927. color: #333;
  1928. &::before{
  1929. position: absolute;
  1930. left: 0;
  1931. top: 0;
  1932. content: '-';
  1933. }
  1934. }
  1935. }
  1936. }
  1937. .chat{
  1938. display: flex;
  1939. gap: 30px;
  1940. .chat--img{
  1941. min-width: 90px;
  1942. width: 90px;
  1943. height: 90px;
  1944. border-radius: 50%;
  1945. background-image: url(../img/img--dream.svg);
  1946. background-repeat: no-repeat;
  1947. background-position: bottom center;
  1948. background-color: #bde8cf;
  1949. }
  1950. .chat--bubble{
  1951. border-radius: 20px;
  1952. padding: 25px;
  1953. border: 1px solid #EEE;
  1954. width: 100%;
  1955. background: #FFF;
  1956. margin-bottom: 40px;
  1957. box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
  1958. span{
  1959. color: #1aaf59;
  1960. font-size: 15px;
  1961. font-weight: 500;
  1962. }
  1963. }
  1964. }
  1965. .chat--answer{
  1966. margin-bottom: 50px;
  1967. line-height: 1.7;
  1968. color: #111;
  1969. font-size: 16px;
  1970. font-weight: 400;
  1971. letter-spacing: -0.32px;
  1972. ul{
  1973. margin-top: 10px;
  1974. display: flex;
  1975. flex-direction: column;
  1976. gap: 10px;
  1977. li{
  1978. position: relative;
  1979. padding-left: 10px;
  1980. line-height: 1.4;
  1981. color: #111;
  1982. font-size: 15px;
  1983. font-weight: 400;
  1984. letter-spacing: -0.3px;
  1985. &::before{
  1986. content: '';
  1987. width: 3px;
  1988. height: 3px;
  1989. border-radius: 50%;
  1990. display: inline-block;
  1991. background-color: #111;
  1992. position: absolute;
  1993. left: 0;
  1994. top: 7px;
  1995. }
  1996. }
  1997. }
  1998. &:last-child{
  1999. margin-bottom: 0;
  2000. }
  2001. }
  2002. &.purple{
  2003. background-color: #e4e9ff;
  2004. .box{
  2005. background-color: #D0D9FF;
  2006. .box--title{
  2007. color: #3A54C5;
  2008. }
  2009. }
  2010. .chat{
  2011. .chat--img{
  2012. background-color: #cfd8ff;
  2013. }
  2014. }
  2015. }
  2016. }
  2017. }
  2018. .family--business--wrap{
  2019. .family--cont--wrap{
  2020. margin-bottom: 80px;
  2021. display: flex;
  2022. gap: 20px;
  2023. justify-content: space-between;
  2024. .cont--left{
  2025. display: flex;
  2026. flex-direction: column;
  2027. position: relative;
  2028. h2{
  2029. color: #333;
  2030. font-size: 40px;
  2031. font-weight: 300;
  2032. letter-spacing: -0.45px;
  2033. margin-bottom: 50px;
  2034. strong{
  2035. font-weight: 700;
  2036. color: #191919;
  2037. }
  2038. }
  2039. span{
  2040. color: #333;
  2041. font-size: 20px;
  2042. font-weight: 300;
  2043. letter-spacing: -0.4px;
  2044. margin-bottom: 80px;
  2045. }
  2046. .btn--wrap{
  2047. display: flex;
  2048. gap: 15px;
  2049. a{
  2050. display: inline-block;
  2051. padding: 20px 30px;
  2052. background-color: #fff;
  2053. color: #1aaf59;
  2054. font-weight: 500;
  2055. border-radius: 1000px;
  2056. border: 1px solid rgba(46, 204, 113, 0.50);
  2057. line-height: 1;
  2058. }
  2059. }
  2060. .family--img{
  2061. position: absolute;
  2062. bottom: 80px;
  2063. right: 0;
  2064. }
  2065. }
  2066. .cont--right{
  2067. width: 700px;
  2068. gap: 60px;
  2069. display: flex;
  2070. .family--box--wrap{
  2071. width: 50%;
  2072. display: flex;
  2073. flex-direction: column;
  2074. gap: 50px;
  2075. }
  2076. .family--box{
  2077. display: flex;
  2078. border-radius: 30px;
  2079. background-color: #f6f6f6;
  2080. padding: 35px 35px 60px 35px;
  2081. flex-direction: column;
  2082. .ico{
  2083. width: 70px;
  2084. height: 70px;
  2085. background-size: 35px 35px;
  2086. background-color: #2ecc71;
  2087. border-radius: 15px;
  2088. background-position: center;
  2089. background-repeat: no-repeat;
  2090. margin-bottom: 50px;
  2091. }
  2092. p{
  2093. font-size: 23px;
  2094. color: #000;
  2095. letter-spacing: -0.46px;
  2096. font-weight: 500;
  2097. margin-bottom: 25px;
  2098. }
  2099. span{
  2100. color: #000;
  2101. font-size: 16px;
  2102. font-weight: 300;
  2103. letter-spacing: -0.32px;
  2104. }
  2105. .ico{
  2106. &.ico1{
  2107. background-image: url(../img/ico--family1.svg);
  2108. }
  2109. &.ico2{
  2110. background-image: url(../img/ico--family2.svg);
  2111. }
  2112. &.ico3{
  2113. background-image: url(../img/ico--family3.svg);
  2114. }
  2115. &.ico4{
  2116. background-image: url(../img/ico--family4.svg);
  2117. }
  2118. &.ico5{
  2119. background-image: url(../img/ico--family5.svg);
  2120. }
  2121. }
  2122. }
  2123. }
  2124. }
  2125. .family--table--wrap{
  2126. .table--title{
  2127. margin-bottom: 30px;
  2128. width: fit-content;
  2129. border-radius: 1000px;
  2130. padding: 15px 30px;
  2131. color: #1aaf59;
  2132. letter-spacing: -0.32px;
  2133. font-size: 16px;
  2134. font-weight: 600;
  2135. border: 1px solid rgba(46, 204, 113, 0.50);
  2136. }
  2137. .table--wrap{
  2138. margin-bottom: 50px;
  2139. &:last-child{
  2140. margin-bottom: 0;
  2141. }
  2142. }
  2143. table{
  2144. width: 100%;
  2145. text-align: center;
  2146. tr{
  2147. &:first-child{
  2148. th{
  2149. border-bottom: none;
  2150. .ico{
  2151. background-image: url(../img/ico--strategy1.svg);
  2152. }
  2153. }
  2154. }
  2155. th{
  2156. border: 1px solid #d7d7d7;
  2157. background-color: #f3f3f3;
  2158. color: #222;
  2159. font-size: 16px;
  2160. font-weight: 600;
  2161. padding: 25px 20px;
  2162. &:nth-of-type(2){
  2163. background-color: #2ecc71;
  2164. border-color: #17b55a;
  2165. color: #fff;
  2166. }
  2167. }
  2168. td{
  2169. color: #111;
  2170. padding: 25px 20px;
  2171. background-color: #fff;
  2172. font-size: 16px;
  2173. font-weight: 400;
  2174. letter-spacing: -0.32px;
  2175. border: 1px solid #e0e0e0;
  2176. &.color--green{
  2177. color: #0f9247;
  2178. strong{
  2179. color: #0f9247;
  2180. font-weight: 700;
  2181. }
  2182. }
  2183. ul{
  2184. li{
  2185. text-align: left;
  2186. color: #111;
  2187. font-size: 16px;
  2188. font-weight: 400;
  2189. position: relative;
  2190. padding-left: 10px;
  2191. &::before{
  2192. content: '';
  2193. width: 3px;
  2194. height: 3px;
  2195. border-radius: 50%;
  2196. background-color: #111;
  2197. display: inline-block;
  2198. top: 10px;
  2199. left: 0;
  2200. position: absolute;
  2201. }
  2202. }
  2203. }
  2204. }
  2205. }
  2206. }
  2207. }
  2208. }
  2209. .impt--search--wrap{
  2210. display: flex;
  2211. align-items: center;
  2212. justify-content: center;
  2213. flex-direction: column;
  2214. > ul{
  2215. display: flex;
  2216. align-items: center;
  2217. justify-content: center;
  2218. gap:40px;
  2219. row-gap: 35px;
  2220. padding-top:70px;
  2221. width:100%;
  2222. max-width:1200px;
  2223. flex-wrap: wrap;
  2224. li{
  2225. display: flex;
  2226. align-items: center;
  2227. justify-content: space-between;
  2228. gap:25px;
  2229. width:calc( (100% - 80px ) / 3);
  2230. border-radius: 100px;
  2231. padding:20px 30px;
  2232. position: relative;
  2233. &:nth-of-type(odd){
  2234. background: linear-gradient(134deg, #52ABFF 6.76%, #5281FF 50.56%, #AE52FF 93.53%);
  2235. }
  2236. &:nth-of-type(even){
  2237. background: linear-gradient(134deg, #6DF3C4 6.76%, #2ECC71 50.56%, #25AD92 93.53%);
  2238. }
  2239. &:after{
  2240. content: '';
  2241. display: block;
  2242. width:18px;
  2243. height:18px;
  2244. background: url(../img/ic_arrow_02.svg) no-repeat center;
  2245. }
  2246. .title{
  2247. color: #FFF;
  2248. font-size: 18px;
  2249. width: calc(100% - 110px);
  2250. font-style: normal;
  2251. font-weight: 600;
  2252. line-height: 100%; /* 18px */
  2253. letter-spacing: -0.36px;
  2254. }
  2255. .thumbs{
  2256. display: inline-flex;
  2257. min-width:34px;
  2258. width: 34px;
  2259. height: 34px;
  2260. background: url(../img/thumbs_ic.png) no-repeat center;
  2261. }
  2262. }
  2263. }
  2264. .section--title--center{
  2265. color: #333;
  2266. text-align: center;
  2267. font-size: 35px;
  2268. font-style: normal;
  2269. font-weight: 300;
  2270. line-height: 100%; /* 35px */
  2271. letter-spacing: -0.7px;
  2272. strong{
  2273. color: #191919;
  2274. font-size: 35px;
  2275. font-style: normal;
  2276. font-weight: 800;
  2277. line-height: 100%;
  2278. letter-spacing: -0.7px;
  2279. }
  2280. }
  2281. }
  2282. .impt--list--wrap{
  2283. width:100%;
  2284. padding-top:50px;
  2285. ul{
  2286. display: flex;
  2287. align-items: stretch;
  2288. justify-content: center;
  2289. gap:50px;
  2290. li{
  2291. display: flex;
  2292. flex-direction: column;
  2293. border-radius: 30px;
  2294. background: #FFF;
  2295. padding:55px 50px;
  2296. width: 50%;
  2297. h3{
  2298. color: #000;
  2299. font-size: 20px;
  2300. font-style: normal;
  2301. font-weight: 600;
  2302. line-height: 100%;
  2303. strong{
  2304. color: #225DFF;
  2305. }
  2306. }
  2307. .captions{
  2308. padding-top:30px;
  2309. color: #000;
  2310. font-size: 16px;
  2311. font-style: normal;
  2312. margin-bottom: 60px;
  2313. font-weight: 300;
  2314. line-height: 2.1; /* 16px */
  2315. }
  2316. .thumb{
  2317. width: 100%;
  2318. max-width: 204px;
  2319. height:130px;
  2320. margin-top: auto;
  2321. &.thumb--01{
  2322. background: url(../img/dear_bg_ic01.png) no-repeat center center / contain;
  2323. }
  2324. &.thumb--02{
  2325. background: url(../img/dear_bg_ic02.png) no-repeat center center / contain;
  2326. }
  2327. }
  2328. }
  2329. }
  2330. }
  2331. .all--progress--wrap{
  2332. .title--wrap{
  2333. h2{
  2334. color: #333;
  2335. letter-spacing: -1px;
  2336. strong{
  2337. font-weight: 800;
  2338. color: #1AAF59;
  2339. }
  2340. }
  2341. }
  2342. .month--text--contents{
  2343. >p{
  2344. color: #191919;
  2345. font-size: 17px;
  2346. font-style: normal;
  2347. font-weight: 300;
  2348. letter-spacing: -0.34px;
  2349. display: flex;
  2350. }
  2351. .month--gap{
  2352. margin-bottom: 30px;
  2353. > span{
  2354. &:nth-of-type(1){
  2355. border-radius: 1000px;
  2356. border: 1px dashed #2ECC71;
  2357. color: #1AAF59;
  2358. font-size: 16px;
  2359. font-style: normal;
  2360. font-weight: 600;
  2361. line-height: 100%; /* 16px */
  2362. letter-spacing: -0.32px;
  2363. display: inline-flex;
  2364. align-items: center;
  2365. justify-content: center;
  2366. padding:20px;
  2367. margin-right:25px;
  2368. }
  2369. &:nth-of-type(2){
  2370. color: #111;
  2371. font-size: 20px;
  2372. font-style: normal;
  2373. font-weight: 500;
  2374. line-height: 100%; /* 20px */
  2375. letter-spacing: -0.4px;
  2376. strong{
  2377. font-weight: 800;
  2378. }
  2379. }
  2380. }
  2381. }
  2382. }
  2383. .compatibility--inner--conls{
  2384. width:100%;
  2385. display: flex;
  2386. align-items: flex-start;
  2387. justify-content: flex-start;
  2388. height: 280px;
  2389. flex-direction: column;
  2390. border-radius: 30px;
  2391. background: #2ECC71 url(../img/line_more_bg.png) no-repeat 100% bottom;
  2392. padding: 30px 50px 30px 50px;
  2393. position: relative;
  2394. >h2{
  2395. color: #FFF;
  2396. font-size: 25px;
  2397. font-style: normal;
  2398. font-weight: 700;
  2399. line-height: 100%; /* 25px */
  2400. letter-spacing: -0.5px;
  2401. margin-bottom:17px;
  2402. margin-left: -50px;
  2403. display: flex;
  2404. align-items: center;
  2405. padding-left: 50px;
  2406. position: relative;
  2407. background: url(../img/dot_more_bg.png) no-repeat center;
  2408. width:301px;
  2409. height:64px;
  2410. }
  2411. .captions{
  2412. color: #FFF;
  2413. font-size: 16px;
  2414. font-style: normal;
  2415. font-weight: 500;
  2416. line-height: 1.9;
  2417. letter-spacing: -0.32px;
  2418. }
  2419. .desc{
  2420. color: #EF0;
  2421. font-size: 16px;
  2422. font-style: normal;
  2423. font-weight: 600;
  2424. line-height: 1.9;
  2425. letter-spacing: -0.32px;
  2426. margin-top: 25px;
  2427. }
  2428. .btn--wrapper{
  2429. position: absolute;
  2430. top: 50px;
  2431. right:55px;
  2432. display: flex;
  2433. gap:15px;
  2434. button{
  2435. border-radius: 1000px;
  2436. background: #FFF;
  2437. color: #1AAF59;
  2438. font-size: 15px;
  2439. font-style: normal;
  2440. font-weight: 600;
  2441. display: flex;
  2442. align-items: center;
  2443. justify-content: center;
  2444. letter-spacing: -0.3px;
  2445. line-height: 100%;
  2446. padding:20px;
  2447. border:0px;
  2448. }
  2449. }
  2450. }
  2451. .step--section{
  2452. &:last-child{
  2453. padding-bottom:0px;
  2454. }
  2455. .inner--s--title{
  2456. span{
  2457. &:nth-of-type(1){
  2458. color:#1AAF59;
  2459. font-size: 25px;
  2460. font-style: normal;
  2461. font-weight: 700;
  2462. letter-spacing: -0.5px;
  2463. margin-right:30px;
  2464. em{
  2465. font-style: normal;
  2466. }
  2467. }
  2468. &:nth-of-type(2){
  2469. color: #444;
  2470. font-size: 17px;
  2471. font-style: normal;
  2472. font-weight: 300;
  2473. letter-spacing: -0.34px;
  2474. }
  2475. }
  2476. }
  2477. .inner--grid{
  2478. display: flex;
  2479. align-items:flex-start;
  2480. justify-content: space-between;
  2481. margin-top:40px;
  2482. position: relative;
  2483. &:after{
  2484. content:'';
  2485. display: block;
  2486. width:calc(100% - 180px);
  2487. left: 90px;
  2488. height:1px;
  2489. background: rgba(46, 204, 113, 0.50);
  2490. position: absolute;
  2491. top:55px;
  2492. z-index: -1;
  2493. }
  2494. .grid{
  2495. display: flex;
  2496. justify-content: center;
  2497. align-items: center;
  2498. flex-direction: column;
  2499. &.mo{
  2500. display: none;
  2501. }
  2502. .thumb{
  2503. width:110px;
  2504. height:110px;
  2505. border-radius: 110px;
  2506. border: 2px solid rgba(46, 204, 113, 0.50);
  2507. background: #FFF;
  2508. display: flex;
  2509. align-items: center;
  2510. justify-content: center;
  2511. box-shadow: 0 0 10px 0 rgba(46, 204, 113, 0.20);
  2512. }
  2513. .desc{
  2514. padding-top:20px;
  2515. color: #000;
  2516. text-align: center;
  2517. font-size: 15px;
  2518. font-style: normal;
  2519. font-weight: 300;
  2520. line-height: 1.5; /* 15px */
  2521. letter-spacing: -0.6px;
  2522. strong{
  2523. font-weight: 700;
  2524. letter-spacing: -0.3px;
  2525. }
  2526. }
  2527. }
  2528. }
  2529. }
  2530. .progress--section{
  2531. $color_1: #222222;
  2532. $color_2: #191919;
  2533. $font-family_1: Pretendard, var(--default-font-family);
  2534. .progress--title{
  2535. .step--label {
  2536. display: block;
  2537. position: relative;
  2538. color: #222;
  2539. font-size: 25px;
  2540. font-weight: 700;
  2541. letter-spacing: -0.5px;
  2542. }
  2543. }
  2544. .progress--container {
  2545. overflow: hidden;
  2546. box-sizing: border-box;
  2547. position: relative;
  2548. width: 1200px;
  2549. height: 316px;
  2550. margin: 0 auto;
  2551. &.mo{
  2552. display: none;
  2553. overflow: visible;
  2554. flex-direction: column;
  2555. width: 100%;
  2556. gap: 40px;
  2557. height: auto;
  2558. .progress--box{
  2559. padding: 15px 30px 15px 20px;
  2560. align-items: center;
  2561. border-radius: 100px;
  2562. border: 1px solid rgba(46, 204, 113, 0.60);
  2563. background: #FFF;
  2564. box-shadow: 0 0 15px 0 rgba(46, 204, 113, 0.30);
  2565. display: flex;
  2566. gap: 30px;
  2567. position: relative;
  2568. .ico{
  2569. width: 60px;
  2570. height: 60px;
  2571. border-radius: 50%;
  2572. background-color: #2ecc71;
  2573. background-position: center;
  2574. background-repeat: no-repeat;
  2575. &.ico1{
  2576. background-image: url(../img/blk_03.svg);
  2577. }
  2578. &.ico2{
  2579. background-image: url(../img/blk_02.svg);
  2580. }
  2581. &.ico3{
  2582. background-image: url(../img/blk_04.svg);
  2583. }
  2584. &.ico4{
  2585. background-image: url(../img/blk_01.svg);
  2586. }
  2587. }
  2588. .progress--txt{
  2589. display: flex;
  2590. gap: 10px;
  2591. flex-direction: column;
  2592. span{
  2593. color: #191919;
  2594. font-size: 17px;
  2595. font-weight: 400;
  2596. line-height: 1;
  2597. letter-spacing: -0.34px;
  2598. }
  2599. strong{
  2600. color: #191919;
  2601. line-height: 1;
  2602. font-size: 18px;
  2603. font-weight: 700;
  2604. letter-spacing: -0.34px;
  2605. }
  2606. }
  2607. &:nth-child(1){
  2608. &::after{
  2609. display: inline-block;
  2610. width: 12px;
  2611. height: 12px;
  2612. border-radius: 50%;
  2613. content: '';
  2614. bottom: -18px;
  2615. left: -5px;
  2616. background-color: #ffd034;
  2617. position: absolute;
  2618. }
  2619. }
  2620. &:nth-child(2){
  2621. &::before{
  2622. display: inline-block;
  2623. width: 12px;
  2624. height: 12px;
  2625. border-radius: 50%;
  2626. content: '';
  2627. top: -14px;
  2628. right: -6px;
  2629. background-color: #ac7fe2;
  2630. position: absolute;
  2631. }
  2632. &::before{
  2633. display: inline-block;
  2634. width: 12px;
  2635. height: 12px;
  2636. border-radius: 50%;
  2637. content: '';
  2638. top: -14px;
  2639. right: -6px;
  2640. background-color: #ac7fe2;
  2641. position: absolute;
  2642. }
  2643. &::after{
  2644. display: inline-block;
  2645. width: 95px;
  2646. height: 95px;
  2647. background-size: 100%;
  2648. background-repeat: no-repeat;
  2649. content: '';
  2650. top: 23px;
  2651. right: -40px;
  2652. background-image: url(../img/blue_ic01.svg);
  2653. position: absolute;
  2654. z-index: -1;
  2655. }
  2656. }
  2657. &:nth-child(3){
  2658. &::before{
  2659. display: inline-block;
  2660. width: 61px;
  2661. height: 61px;
  2662. content: '';
  2663. left: -30px;
  2664. background-size: 100%;
  2665. background-repeat: no-repeat;
  2666. z-index: -1;
  2667. top: 60%;
  2668. background-image: url(../img/purple_ic01.svg);
  2669. position: absolute;
  2670. }
  2671. &::after{
  2672. display: inline-block;
  2673. width: 12px;
  2674. height: 12px;
  2675. border-radius: 50%;
  2676. content: '';
  2677. left: -22px;
  2678. bottom: -50px;
  2679. background-color: #59d8c8;
  2680. position: absolute;
  2681. }
  2682. }
  2683. &:nth-child(4){
  2684. &::before{
  2685. display: inline-block;
  2686. width: 79px;
  2687. height: 79px;
  2688. content: '';
  2689. right: -30px;
  2690. background-size: 100%;
  2691. background-repeat: no-repeat;
  2692. z-index: -1;
  2693. top: 60%;
  2694. background-image: url(../img/clovar_ic.svg);
  2695. position: absolute;
  2696. }
  2697. &::after{
  2698. display: inline-block;
  2699. width: 12px;
  2700. height: 12px;
  2701. border-radius: 50%;
  2702. content: '';
  2703. top: 4px;
  2704. right: -18px;
  2705. background-color: #f96ba5;
  2706. position: absolute;
  2707. }
  2708. }
  2709. &:last-child{
  2710. margin-top: 62px;
  2711. &::after{
  2712. content: '';
  2713. left: calc(50% - 80px);
  2714. bottom: 100%;
  2715. width: 160px;
  2716. height: 82px;
  2717. position: absolute;
  2718. background-size: 100%;
  2719. background-image: url(../img/man_arrow_bg.svg);
  2720. display: inline-block;
  2721. }
  2722. }
  2723. }
  2724. }
  2725. * {
  2726. box-sizing: border-box;
  2727. }
  2728. }
  2729. // Step 01 - 사전 진행
  2730. .progress--step.step--01 {
  2731. position: absolute;
  2732. width: 110px;
  2733. height: 266px;
  2734. top: 10px;
  2735. left: 0;
  2736. font-size: 0px;
  2737. z-index: 27;
  2738. .step--circle {
  2739. position: relative;
  2740. width: 110px;
  2741. height: 110px;
  2742. background: rgba(46, 204, 113, 0.1);
  2743. z-index: 3;
  2744. overflow: visible auto;
  2745. border-radius: 1000px;
  2746. .step--circle--inner {
  2747. position: relative;
  2748. width: 72px;
  2749. height: 72px;
  2750. margin: 19px 0 0 19px;
  2751. background: rgba(46, 204, 113, 0.2);
  2752. z-index: 4;
  2753. overflow: visible auto;
  2754. border-radius: 1000px;
  2755. .step--circle--core {
  2756. position: relative;
  2757. width: 36px;
  2758. height: 36px;
  2759. margin: 18px 0 0 18px;
  2760. background: #2ecc71;
  2761. z-index: 5;
  2762. border-radius: 1000px;
  2763. }
  2764. }
  2765. }
  2766. .step--desc {
  2767. position: relative;
  2768. width: 70px;
  2769. height: 40px;
  2770. margin: 20px 0 0 20px;
  2771. font-family: $font-family_1;
  2772. font-size: 15px;
  2773. font-weight: 400;
  2774. text-align: center;
  2775. text-overflow: initial;
  2776. white-space: nowrap;
  2777. letter-spacing: -0.3px;
  2778. z-index: 6;
  2779. .desc--main {
  2780. position: relative;
  2781. color: $color_2;
  2782. font-family: $font-family_1;
  2783. font-size: 15px;
  2784. font-weight: 400;
  2785. text-align: center;
  2786. letter-spacing: -0.3px;
  2787. }
  2788. .desc--sub {
  2789. position: relative;
  2790. color: $color_2;
  2791. font-family: $font-family_1;
  2792. font-size: 15px;
  2793. font-weight: 700;
  2794. text-align: center;
  2795. letter-spacing: -0.3px;
  2796. }
  2797. }
  2798. }
  2799. // Step 06 - M&A진행결정시
  2800. .progress--step.step--06 {
  2801. position: absolute;
  2802. width: 222px;
  2803. height: 162px;
  2804. top: 0px;
  2805. right: 0;
  2806. z-index: 28;
  2807. .step--arrow {
  2808. position: relative;
  2809. width: 160px;
  2810. height: 82px;
  2811. margin: 0 0 0 32px;
  2812. background: url(../img/man_arrow_bg.svg) no-repeat center;
  2813. background-size: cover;
  2814. z-index: 28;
  2815. }
  2816. .step--box {
  2817. display: flex;
  2818. align-items: center;
  2819. flex-wrap: nowrap;
  2820. gap: 20px;
  2821. position: relative;
  2822. width: 222px;
  2823. margin: 0 0 0 0;
  2824. padding: 15px 30px 15px 20px;
  2825. background: #ffffff;
  2826. border: 1px solid rgba(46, 204, 113, 0.5);
  2827. z-index: 21;
  2828. border-radius: 100px;
  2829. box-shadow: 0 0 10px 0 rgba(46, 204, 113, 0.3);
  2830. .step--icon {
  2831. flex-shrink: 0;
  2832. position: relative;
  2833. width: 50px;
  2834. height: 50px;
  2835. background: #2ecc71;
  2836. z-index: 22;
  2837. border-radius: 1000px;
  2838. .icon--img {
  2839. position: relative;
  2840. width: 24px;
  2841. height: 19px;
  2842. margin: 16px 0 0 13px;
  2843. background: url(../img/blk_01.svg) no-repeat center;
  2844. background-size: cover;
  2845. z-index: 23;
  2846. overflow: hidden;
  2847. }
  2848. }
  2849. .step--desc {
  2850. flex-shrink: 0;
  2851. position: relative;
  2852. width: 102px;
  2853. font-family: $font-family_1;
  2854. font-size: 15px;
  2855. font-weight: 400;
  2856. text-align: left;
  2857. text-overflow: initial;
  2858. white-space: nowrap;
  2859. letter-spacing: -0.3px;
  2860. z-index: 24;
  2861. .desc--main {
  2862. position: relative;
  2863. color: $color_2;
  2864. font-family: $font-family_1;
  2865. font-size: 15px;
  2866. font-weight: 400;
  2867. text-align: left;
  2868. letter-spacing: -0.3px;
  2869. }
  2870. .desc--sub {
  2871. position: relative;
  2872. color: $color_2;
  2873. font-family: $font-family_1;
  2874. font-size: 15px;
  2875. font-weight: 700;
  2876. text-align: left;
  2877. letter-spacing: -0.3px;
  2878. }
  2879. }
  2880. }
  2881. }
  2882. // 나머지 Progress Steps와 Line 연결 요소들
  2883. // Step 03 - M&A 상담
  2884. .progress--step.step--03 {
  2885. position: absolute;
  2886. width: 313px;
  2887. height: 308px;
  2888. top: 8px;
  2889. left: 365px;
  2890. z-index: 29;
  2891. .step--badge {
  2892. &.badge--blue {
  2893. position: relative;
  2894. width: 79px;
  2895. height: 79px;
  2896. margin: 229px 0 0 0;
  2897. background: url(../img/blue_ic01.svg) no-repeat center;
  2898. background-size: cover;
  2899. overflow: hidden;
  2900. }
  2901. &.badge--purple {
  2902. position: absolute;
  2903. width: 57px;
  2904. height: 57px;
  2905. top: 0;
  2906. left: 41px;
  2907. background: url(../img/purple_ic01.svg) no-repeat center;
  2908. background-size: cover;
  2909. z-index: 1;
  2910. overflow: hidden;
  2911. }
  2912. }
  2913. .step--box {
  2914. display: flex;
  2915. align-items: center;
  2916. flex-wrap: nowrap;
  2917. gap: 20px;
  2918. position: absolute;
  2919. width: 239px;
  2920. height: 80px;
  2921. top: 26px;
  2922. left: 74px;
  2923. padding: 15px 30px 15px 20px;
  2924. background: #ffffff;
  2925. border: 1px solid rgba(46, 204, 113, 0.5);
  2926. z-index: 11;
  2927. border-radius: 100px;
  2928. box-shadow: 0 0 10px 0 rgba(46, 204, 113, 0.3);
  2929. .step--icon {
  2930. flex-shrink: 0;
  2931. position: relative;
  2932. width: 50px;
  2933. height: 50px;
  2934. background: #2ecc71;
  2935. z-index: 12;
  2936. border-radius: 1000px;
  2937. .icon--img {
  2938. position: relative;
  2939. width: 21px;
  2940. height: 22px;
  2941. margin: 14px 0 0 15px;
  2942. background: url(../img/blk_02.svg) no-repeat center;
  2943. background-size: cover;
  2944. z-index: 13;
  2945. overflow: hidden;
  2946. }
  2947. }
  2948. .step--desc {
  2949. flex-shrink: 0;
  2950. position: relative;
  2951. width: 119px;
  2952. font-family: $font-family_1;
  2953. font-size: 15px;
  2954. font-weight: 400;
  2955. text-align: left;
  2956. text-overflow: initial;
  2957. white-space: nowrap;
  2958. letter-spacing: -0.3px;
  2959. z-index: 14;
  2960. .desc--sub {
  2961. position: relative;
  2962. color: $color_2;
  2963. font-family: $font-family_1;
  2964. font-size: 15px;
  2965. font-weight: 700;
  2966. text-align: left;
  2967. letter-spacing: -0.3px;
  2968. }
  2969. .desc--main {
  2970. position: relative;
  2971. color: $color_2;
  2972. font-family: $font-family_1;
  2973. font-size: 15px;
  2974. font-weight: 400;
  2975. text-align: left;
  2976. letter-spacing: -0.3px;
  2977. }
  2978. }
  2979. }
  2980. .step--dot.dot--purple {
  2981. position: absolute;
  2982. width: 10px;
  2983. height: 10px;
  2984. top: 153px;
  2985. left: 19px;
  2986. background: url(../img/purple_dot01.svg) no-repeat center;
  2987. background-size: cover;
  2988. z-index: 29;
  2989. border-radius: 50%;
  2990. }
  2991. }
  2992. // Step 02 - M&A궁합 담당자 전화
  2993. .progress--step.step--02 {
  2994. position: absolute;
  2995. width: 228px;
  2996. height: 218px;
  2997. top: 51px;
  2998. left: 180px;
  2999. z-index: 30;
  3000. .step--dot.dot--green {
  3001. position: relative;
  3002. width: 10px;
  3003. height: 10px;
  3004. margin: 0 0 0 164px;
  3005. background: url(../img/green_dot01.svg) no-repeat center;
  3006. background-size: cover;
  3007. z-index: 30;
  3008. border-radius: 50%;
  3009. }
  3010. .step--box {
  3011. display: flex;
  3012. align-items: center;
  3013. flex-wrap: nowrap;
  3014. gap: 20px;
  3015. position: relative;
  3016. width: 228px;
  3017. margin: 128px 0 0 0;
  3018. padding: 15px 30px 15px 20px;
  3019. background: #ffffff;
  3020. border: 1px solid rgba(46, 204, 113, 0.5);
  3021. z-index: 7;
  3022. border-radius: 100px;
  3023. box-shadow: 0 0 10px 0 rgba(46, 204, 113, 0.3);
  3024. .step--icon {
  3025. flex-shrink: 0;
  3026. position: relative;
  3027. width: 50px;
  3028. height: 50px;
  3029. background: #2ecc71;
  3030. z-index: 8;
  3031. border-radius: 1000px;
  3032. .icon--img {
  3033. position: relative;
  3034. width: 18px;
  3035. height: 18px;
  3036. margin: 16px 0 0 16px;
  3037. background: url(../img/blk_03.svg) no-repeat center;
  3038. background-size: cover;
  3039. z-index: 9;
  3040. overflow: hidden;
  3041. }
  3042. }
  3043. .step--desc {
  3044. flex-shrink: 0;
  3045. position: relative;
  3046. width: 108px;
  3047. font-family: $font-family_1;
  3048. font-size: 15px;
  3049. font-weight: 400;
  3050. text-align: left;
  3051. text-overflow: initial;
  3052. white-space: nowrap;
  3053. letter-spacing: -0.3px;
  3054. z-index: 10;
  3055. .desc--main {
  3056. position: relative;
  3057. color: $color_2;
  3058. font-family: $font-family_1;
  3059. font-size: 15px;
  3060. font-weight: 400;
  3061. text-align: left;
  3062. letter-spacing: -0.3px;
  3063. }
  3064. .desc--sub {
  3065. position: relative;
  3066. color: $color_2;
  3067. font-family: $font-family_1;
  3068. font-size: 15px;
  3069. font-weight: 700;
  3070. text-align: left;
  3071. letter-spacing: -0.3px;
  3072. }
  3073. }
  3074. }
  3075. }
  3076. // Step 05 - 진행 여부 결정
  3077. .progress--step.step--05 {
  3078. position: absolute;
  3079. width: 252.5px;
  3080. height: 154px;
  3081. top: 105px;
  3082. left: 726px;
  3083. z-index: 32;
  3084. .step--dot.dot--pink {
  3085. position: relative;
  3086. width: 10px;
  3087. height: 10px;
  3088. margin: 0 0 0 173px;
  3089. background: url(../img/pink_dot01.svg) no-repeat center;
  3090. background-size: cover;
  3091. z-index: 32;
  3092. border-radius: 50%;
  3093. }
  3094. .step--line.line--04 {
  3095. position: absolute;
  3096. width: 49.5px;
  3097. height: 61.5px;
  3098. top: 16.5px;
  3099. left: 203px;
  3100. background: url(../img/line_05.svg) no-repeat center;
  3101. background-size: cover;
  3102. z-index: 16;
  3103. }
  3104. .step--box {
  3105. display: flex;
  3106. align-items: center;
  3107. flex-wrap: nowrap;
  3108. gap: 20px;
  3109. position: absolute;
  3110. width: 203px;
  3111. height: 80px;
  3112. top: 37px;
  3113. left: 0;
  3114. padding: 15px 30px 15px 20px;
  3115. background: #ffffff;
  3116. border: 1px solid rgba(46, 204, 113, 0.5);
  3117. z-index: 17;
  3118. border-radius: 100px;
  3119. box-shadow: 0 0 10px 0 rgba(46, 204, 113, 0.3);
  3120. .step--icon {
  3121. flex-shrink: 0;
  3122. position: relative;
  3123. width: 50px;
  3124. height: 50px;
  3125. background: #2ecc71;
  3126. z-index: 18;
  3127. border-radius: 1000px;
  3128. .icon--img {
  3129. position: relative;
  3130. width: 20px;
  3131. height: 22px;
  3132. margin: 14px 0 0 15px;
  3133. background: url(../img/blk_04.svg) no-repeat center;
  3134. background-size: cover;
  3135. z-index: 19;
  3136. overflow: hidden;
  3137. }
  3138. }
  3139. .step--desc {
  3140. flex-shrink: 0;
  3141. position: relative;
  3142. width: 83px;
  3143. font-family: $font-family_1;
  3144. font-size: 15px;
  3145. font-weight: 400;
  3146. text-align: left;
  3147. text-overflow: initial;
  3148. white-space: nowrap;
  3149. letter-spacing: -0.3px;
  3150. z-index: 20;
  3151. .desc--sub {
  3152. position: relative;
  3153. color: $color_2;
  3154. font-family: $font-family_1;
  3155. font-size: 15px;
  3156. font-weight: 700;
  3157. text-align: left;
  3158. letter-spacing: -0.3px;
  3159. }
  3160. .desc--main {
  3161. position: relative;
  3162. color: $color_2;
  3163. font-family: $font-family_1;
  3164. font-size: 15px;
  3165. font-weight: 400;
  3166. text-align: left;
  3167. letter-spacing: -0.3px;
  3168. }
  3169. }
  3170. }
  3171. .step--badge.badge--clover {
  3172. position: absolute;
  3173. width: 63px;
  3174. height: 63px;
  3175. top: 91px;
  3176. left: 165px;
  3177. background: url(../img/clovar_ic.svg) no-repeat center;
  3178. background-size: cover;
  3179. z-index: 2;
  3180. overflow: hidden;
  3181. }
  3182. }
  3183. // Step Line - 연결선
  3184. .progress--step.step--line {
  3185. position: absolute;
  3186. width: 70px;
  3187. height: 199px;
  3188. top: 31px;
  3189. left: 110px;
  3190. z-index: 31;
  3191. .step--dot.dot--yellow {
  3192. position: relative;
  3193. width: 10px;
  3194. height: 10px;
  3195. margin: 0 0 0 14px;
  3196. background: url(../img/yellow_dot01.svg) no-repeat center;
  3197. background-size: cover;
  3198. z-index: 31;
  3199. border-radius: 50%;
  3200. }
  3201. .step--line.line--02 {
  3202. position: relative;
  3203. width: 70px;
  3204. height: 164px;
  3205. margin: 25.5px 0 0 0;
  3206. background: url(../img/line_03.svg) no-repeat center;
  3207. background-size: cover;
  3208. z-index: 25;
  3209. }
  3210. }
  3211. // 전역 라인 요소들
  3212. .step--line.line--01 {
  3213. position: absolute;
  3214. width: 90.5px;
  3215. height: 155px;
  3216. top: 67.5px;
  3217. left: 44px;
  3218. background: url(../img/line_02.svg) no-repeat center;
  3219. background-size: cover;
  3220. z-index: 26;
  3221. }
  3222. .step--line.line--03 {
  3223. position: absolute;
  3224. width: 47px;
  3225. height: 108px;
  3226. top: 74.5px;
  3227. left: 679px;
  3228. background: url(../img/line_04.svg) no-repeat center;
  3229. background-size: cover;
  3230. z-index: 15;
  3231. }
  3232. }
  3233. }
  3234. }
  3235. }
  3236. footer{
  3237. display: flex;
  3238. align-items: center;
  3239. justify-content: center;
  3240. width:100%;
  3241. background: #191919;
  3242. section{
  3243. width:100%;
  3244. padding-top:40px;
  3245. padding-bottom:55px;
  3246. max-width:1200px;
  3247. display: flex;
  3248. gap: 20px;
  3249. align-items: flex-end;
  3250. justify-content: space-between;
  3251. .footer--left{
  3252. >a{
  3253. display: block;
  3254. width: 35%;
  3255. min-width: 100px;
  3256. max-width: 163px;
  3257. img{
  3258. width: 100%;
  3259. }
  3260. }
  3261. .copy--text{
  3262. display: flex;
  3263. flex-direction: column;
  3264. gap:20px;
  3265. margin-top:30px;
  3266. p{
  3267. color: #FFF;
  3268. font-size: 16px;
  3269. font-style: normal;
  3270. font-weight: 500;
  3271. line-height: 1.4;
  3272. letter-spacing: -0.32px;
  3273. display: flex;
  3274. flex-wrap: wrap;
  3275. span{
  3276. color: #FFF;
  3277. font-size: 16px;
  3278. font-style: normal;
  3279. font-weight: 500;
  3280. line-height: 1.4;
  3281. letter-spacing: -0.32px;
  3282. margin-right:31px;
  3283. position: relative;
  3284. &::after{
  3285. content:'';
  3286. display: block;
  3287. width:1px;
  3288. height:100%;
  3289. background: #535353;
  3290. position: absolute;
  3291. top:50%;
  3292. width:1px;
  3293. height:15px;
  3294. right:-16px;
  3295. transform: translateY(-50%);
  3296. }
  3297. &:last-child{
  3298. margin-right:0px;
  3299. &::after{
  3300. display: none;
  3301. }
  3302. }
  3303. }
  3304. }
  3305. }
  3306. }
  3307. .footer--right{
  3308. min-width: 320px;
  3309. display: flex;
  3310. gap:50px;
  3311. a{
  3312. color: #FFF;
  3313. font-size: 16px;
  3314. font-style: normal;
  3315. font-weight: 500;
  3316. line-height: 1.4;
  3317. letter-spacing: -0.32px;
  3318. text-transform: uppercase;
  3319. }
  3320. }
  3321. }
  3322. }
  3323. .top--btn{
  3324. background-color: #2ECC71;
  3325. border-radius: 50%;
  3326. position: fixed;
  3327. right: 30px;
  3328. width: 70px;
  3329. cursor: pointer;
  3330. box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  3331. height: 70px;
  3332. bottom: 30px;
  3333. z-index: 100;
  3334. background-repeat: no-repeat;
  3335. background-position: center;
  3336. background-image: url(../img/ico--top.svg);
  3337. opacity: 0;
  3338. transition: opacity 0.3s ease;
  3339. &.actv{
  3340. opacity: 1;
  3341. }
  3342. }
  3343. /*! 20250904 수정 */
  3344. main .section--container .process--plan--wrap .content--wrap .direct--wrap .bar{
  3345. position: relative;
  3346. &::after{
  3347. position: absolute;
  3348. right: 0;
  3349. content: '';
  3350. display: inline-block;
  3351. background-image: url(../img/ico--bar.svg);
  3352. width: 12px;
  3353. height: 12px;
  3354. background-repeat: no-repeat;
  3355. transform: rotate(45deg);
  3356. top: -4.5px;
  3357. }
  3358. &.mo2{
  3359. display: none;
  3360. }
  3361. }
  3362. main .section--container .process--plan--wrap .content--wrap .direct--wrap .circle{
  3363. &:nth-of-type(2){
  3364. &::before{
  3365. content: '';
  3366. width: 12px;
  3367. height: 12px;
  3368. background-image: url(../img/ico--bar.svg);
  3369. display: inline-block;
  3370. transform: rotate(135deg);
  3371. position: absolute;
  3372. top: calc(100% + 32px);
  3373. left: calc(50% - 4.5px);
  3374. }
  3375. }
  3376. &.mo{
  3377. display: none;
  3378. &:nth-of-type(5){
  3379. background-color: #188345;
  3380. }
  3381. }
  3382. }
  3383. main .section--container .process--plan--wrap .content--wrap .process--wrap .process--title .arrow--wrap{
  3384. display: none;
  3385. }