media.scss 29 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337
  1. @media(max-width: 1200px){
  2. header{
  3. .header--contents--wrap{
  4. .header--contents{
  5. .header--logo--wrap{
  6. .logo--wrap{
  7. padding: 20px;
  8. }
  9. }
  10. .header--gnb--wrap{
  11. .gnb--wrap{
  12. >ul{
  13. li{
  14. &:nth-child(1){
  15. width: 26%;
  16. }
  17. &:nth-child(2),
  18. &:nth-child(3){
  19. width: 30%;
  20. }
  21. a{
  22. font-size: 16px;
  23. }
  24. }
  25. }
  26. }
  27. }
  28. }
  29. }
  30. }
  31. main{
  32. .section--container{
  33. padding-left: 20px!important;
  34. padding-right: 20px!important;
  35. .title--wrap{
  36. &.big{
  37. >h2{
  38. font-size: 36px;
  39. }
  40. }
  41. >h2{
  42. font-size: 30px;
  43. }
  44. }
  45. .growth--logic--wrap{
  46. gap: 20px;
  47. .title--box{
  48. width: calc(50% - 10px);
  49. h2{
  50. font-size: 36px;
  51. }
  52. }
  53. .logic--box{
  54. min-height: 300px;
  55. padding: 40px 35px 40px;
  56. width: calc(50% - 10px);
  57. &.special{
  58. width: calc(50% - 10px);
  59. }
  60. }
  61. }
  62. .best--service--wrap{
  63. gap: 20px;
  64. .service--box{
  65. width: calc((100% - 40px) / 3);
  66. padding: 20px 25px 40px;
  67. h3{
  68. font-size: 18px;
  69. margin-top: 30px;
  70. margin-bottom: 20px;
  71. }
  72. }
  73. }
  74. .now--box--wrap{
  75. .box--top{
  76. .box{
  77. >p{
  78. font-size: 16px;
  79. }
  80. }
  81. }
  82. .box--bot{
  83. gap: 20px;
  84. }
  85. }
  86. .process--plan--wrap{
  87. .title--wrap{
  88. p{
  89. font-size: 15px;
  90. }
  91. }
  92. .content--wrap{
  93. .direct--wrap{
  94. gap: 0;
  95. .bar{
  96. width: 3%;
  97. }
  98. }
  99. .process--wrap{
  100. .process--cont{
  101. .process--top{
  102. .process--circle{
  103. .circle{
  104. gap: 20px;
  105. p{
  106. font-size: 16px;
  107. }
  108. }
  109. }
  110. }
  111. .process--bot{
  112. .process--blue--circle{
  113. padding: 20px 40px;
  114. font-size: 16px;
  115. }
  116. }
  117. }
  118. }
  119. }
  120. }
  121. .four--strategy--wrap{
  122. .strategy--cont1{
  123. gap: 20px;
  124. justify-content: space-between;
  125. .cont--left{
  126. .box--wrap{
  127. gap: 20px;
  128. li{
  129. max-width: 185px;
  130. }
  131. }
  132. }
  133. .cont--right{
  134. width: 40%;
  135. dl{
  136. dt{
  137. font-size: 24px;
  138. }
  139. dd{
  140. div{
  141. font-size: 18px;
  142. margin-bottom: 15px;
  143. }
  144. span{
  145. font-size: 16px;
  146. }
  147. }
  148. }
  149. }
  150. }
  151. }
  152. .mna--dream--wrap{
  153. gap: 20px;
  154. .dream--cont{
  155. padding: 30px 30px 50px;
  156. .sub--txt{
  157. margin-bottom: 20px;
  158. font-size: 16px;
  159. }
  160. h4{
  161. font-size: 24px;
  162. margin-bottom: 20px;
  163. }
  164. .chat{
  165. gap: 20px;
  166. .chat--img{
  167. width: 60px;
  168. min-width: 60px;
  169. height: 60px;
  170. background-size: 60px 60px;
  171. }
  172. .chat--bubble{
  173. margin-bottom: 30px;
  174. }
  175. }
  176. .box{
  177. margin-bottom: 30px;
  178. }
  179. .chat--answer{
  180. margin-bottom: 30px;
  181. }
  182. }
  183. }
  184. .family--business--wrap{
  185. .family--cont--wrap{
  186. .cont--left{
  187. h2{
  188. font-size: 30px;
  189. }
  190. span{
  191. font-size: 16px;
  192. }
  193. .btn--wrap{
  194. flex-wrap: wrap;
  195. }
  196. }
  197. .cont--right{
  198. gap: 20px;
  199. .family--box--wrap{
  200. gap: 20px;
  201. .family--box{
  202. }
  203. }
  204. }
  205. }
  206. }
  207. .impt--search--wrap{
  208. >ul{
  209. gap: 15px;
  210. li{
  211. cursor: pointer;
  212. gap: 10px;
  213. padding: 15px 20px;
  214. width: calc((100% - 30px) / 3);
  215. .thumbs{
  216. width: 24px;
  217. height: 24px;
  218. min-width: 24px;
  219. background-size: cover;
  220. }
  221. .title{
  222. font-size: 16px;
  223. width: calc(100% - 62px);
  224. }
  225. }
  226. }
  227. }
  228. .impt--list--wrap{
  229. ul{
  230. gap: 20px;
  231. }
  232. }
  233. }
  234. .mna--reason--wrap{
  235. .swiper-slide{
  236. .reason--box{
  237. padding: 25px 25px 40px;
  238. }
  239. }
  240. }
  241. .faq--wrapper{
  242. .inner--contents{
  243. .section--title{
  244. font-size: 30px;
  245. }
  246. }
  247. }
  248. }
  249. footer{
  250. section{
  251. padding-left: 20px;
  252. padding-right: 20px;
  253. }
  254. }
  255. }
  256. @media(max-width: 1000px){
  257. main{
  258. .section--container{
  259. .four--strategy--wrap{
  260. .strategy--cont3{
  261. .box{
  262. background-size: 20%;
  263. background-position: right 20px bottom;
  264. padding: 20px 25px 60px 25px;
  265. &:nth-child(1){
  266. background-size: 15%;
  267. }
  268. &:nth-child(2){
  269. background-size: 12%;
  270. background-position: right 20px bottom;
  271. }
  272. dt{
  273. font-size: 18px;
  274. }
  275. dd{
  276. font-size: 16px;
  277. ul{
  278. gap: 10px;
  279. }
  280. }
  281. }
  282. }
  283. }
  284. .mna--dream--wrap{
  285. flex-direction: column;
  286. .dream--cont{
  287. width: 100%;
  288. }
  289. }
  290. .family--business--wrap{
  291. .family--cont--wrap{
  292. flex-direction: column;
  293. gap: 60px;
  294. .cont--left{
  295. h2{
  296. margin-top: 0!important;
  297. margin-bottom: 20px;
  298. }
  299. span{
  300. margin-bottom: 40px;
  301. }
  302. .family--img{
  303. top: 0;
  304. bottom: auto;
  305. width: 40%;
  306. z-index: -1;
  307. img{
  308. width: 100%;
  309. }
  310. }
  311. }
  312. .cont--right{
  313. width: 100%;
  314. flex-direction: column;
  315. .family--box--wrap{
  316. flex-direction: row;
  317. width: 100%;
  318. flex-wrap: wrap;
  319. .family--box{
  320. width: calc(50% - 10px);
  321. margin-top: 0!important;
  322. }
  323. &:last-child{
  324. .family--box{
  325. &:last-child{
  326. width: 100%;
  327. }
  328. }
  329. }
  330. }
  331. }
  332. }
  333. }
  334. .process--plan--wrap{
  335. .content--wrap{
  336. .process--wrap{
  337. .process--title{
  338. padding: 20px 25px;
  339. }
  340. .process--cont{
  341. .process--top{
  342. .process--circle{
  343. width: calc(100% - 240px);
  344. height: 360px;
  345. .circle{
  346. gap: 10px;
  347. .ico{
  348. width: 60px;
  349. height: 60px;
  350. }
  351. p{
  352. font-size: 15px;
  353. }
  354. }
  355. }
  356. .process--side{
  357. width: 110px;
  358. gap: 5px;
  359. .circle{
  360. font-size: 15px;
  361. }
  362. .line{
  363. height: 30px;
  364. }
  365. }
  366. }
  367. .process--bot{
  368. .process--side{
  369. gap: 5px;
  370. justify-content: space-between;
  371. .line{
  372. flex: 1;
  373. background-image: none;
  374. }
  375. .circle{
  376. width: 110px;
  377. font-size: 15px;
  378. &:nth-of-type(2), &:nth-of-type(4){
  379. position: relative;
  380. &::after{
  381. content: "";
  382. background-repeat: no-repeat;
  383. background-position: center;
  384. display: inline-block;
  385. width: 100%;
  386. left: 0;
  387. height: 71px;
  388. transform: rotate(180deg);
  389. background-image: url(../img/ico--rainbow--arrow3.svg);
  390. position: absolute;
  391. bottom: 75px;
  392. }
  393. }
  394. }
  395. .arrow{
  396. display: none;
  397. }
  398. }
  399. }
  400. }
  401. }
  402. .direct--wrap{
  403. .circle{
  404. min-width: 140px;
  405. padding: 15px 20px;
  406. p{
  407. font-size: 14px;
  408. }
  409. }
  410. .bar{
  411. width: 5%;
  412. }
  413. }
  414. }
  415. }
  416. .all--progress--wrap{
  417. .compatibility--inner--conls{
  418. height: auto;
  419. .btn--wrapper{
  420. top: 30px;
  421. right: 30px;
  422. }
  423. .desc{
  424. }
  425. }
  426. }
  427. }
  428. }
  429. }
  430. @media(max-width: 768px){
  431. .mb--80{
  432. margin-bottom: 40px!important;
  433. }
  434. .mb--70{
  435. margin-bottom: 35px!important;
  436. }
  437. .mb--50{
  438. margin-bottom: 30px!important;
  439. }
  440. .pb--80{
  441. padding-bottom: 40px!important;
  442. }
  443. .pb--100{
  444. padding-bottom: 50px!important;
  445. }
  446. .mt--110{
  447. margin-top: 50px!important;
  448. }
  449. .mb--110{
  450. margin-bottom: 50px!important;
  451. }
  452. .pt--120{
  453. padding-top: 60px!important;
  454. }
  455. .pb--120{
  456. padding-bottom: 60px!important;
  457. }
  458. .mb--140{
  459. margin-bottom: 60px!important;
  460. }
  461. br{
  462. &.web{
  463. display: none;
  464. }
  465. &.mo{
  466. display: block;
  467. }
  468. }
  469. header{
  470. .header--line--banner--wrap{
  471. .inner--contents{
  472. h3{
  473. font-size: 18px;
  474. margin-bottom: 0;
  475. }
  476. p{
  477. font-size: 14px;
  478. }
  479. }
  480. }
  481. .header--contents--wrap{
  482. .header--contents{
  483. .header--logo--wrap{
  484. .logo--wrap{
  485. gap: 20px;
  486. .txt{
  487. gap: 5px;
  488. p{
  489. font-size: 14px;
  490. &:last-child{
  491. font-size: 15px;
  492. }
  493. }
  494. }
  495. }
  496. }
  497. .header--gnb--wrap{
  498. .gnb--wrap{
  499. >ul{
  500. flex-wrap: wrap;
  501. li{
  502. &:nth-child(1){
  503. width: 30%;
  504. }
  505. &:nth-child(2),
  506. &:nth-child(3){
  507. width: 35%;
  508. }
  509. width: 50%;
  510. a{
  511. font-size: 15px;
  512. height: 45px;
  513. line-height: 45px;
  514. }
  515. }
  516. }
  517. }
  518. }
  519. }
  520. }
  521. }
  522. main{
  523. padding-top: 290px!important;
  524. &.actv{
  525. padding-top: 190px!important;
  526. }
  527. .main--visual--section{
  528. .main--visual--wrap{
  529. .main--visual--img{
  530. .main--visual--txt{
  531. gap: 20px;
  532. h3{
  533. font-size: 36px;
  534. }
  535. p{
  536. font-size: 16px;
  537. }
  538. }
  539. }
  540. }
  541. .main--visual--pager{
  542. width: calc(100% - 40px);
  543. bottom: 20px;
  544. .main--visual--pagination{
  545. display: none;
  546. }
  547. }
  548. }
  549. .section--container{
  550. &.p--120{
  551. padding: 60px 0;
  552. }
  553. &.p--100{
  554. padding: 60px 0;
  555. }
  556. .title--wrap{
  557. &.big{
  558. >h2{
  559. font-size: 30px;
  560. margin-bottom: 30px;
  561. }
  562. >p{
  563. font-size: 15px;
  564. }
  565. }
  566. }
  567. .best--service--wrap{
  568. flex-direction: column;
  569. .service--box{
  570. width: 100%;
  571. h3{
  572. margin-top: 15px;
  573. margin-bottom: 10px;
  574. br{
  575. display: none;
  576. }
  577. }
  578. p{
  579. font-size: 15px;
  580. line-height: 1.4;
  581. }
  582. }
  583. }
  584. .growth--logic--wrap{
  585. .title--box{
  586. h2{
  587. font-size: 30px;
  588. }
  589. }
  590. .logic--box{
  591. padding: 20px;
  592. dt{
  593. font-size: 18px;
  594. margin-bottom: 15px;
  595. }
  596. dd{
  597. font-size: 14px;
  598. }
  599. }
  600. }
  601. .now--box--wrap{
  602. .box--bot{
  603. flex-direction: column;
  604. .box{
  605. width: 100%;
  606. }
  607. }
  608. }
  609. .process--plan--wrap{
  610. .content--wrap{
  611. h3{
  612. margin-bottom: 20px;
  613. }
  614. .direct--wrap{
  615. flex-wrap: wrap;
  616. row-gap: 60px;
  617. column-gap: 15px;
  618. .circle{
  619. width: calc((100% - 60px) / 2);
  620. min-width: 0;
  621. &:nth-of-type(2){
  622. position: relative;
  623. &::after{
  624. content: '';
  625. position: absolute;
  626. width: 1px;
  627. height: 30px;
  628. display: inline-block;
  629. border-right: 3px dashed #2ecc71;
  630. top: calc(100% + 15px);
  631. left: 50%;
  632. }
  633. }
  634. }
  635. .bar{
  636. width: 30px;
  637. &.mo{
  638. display: none;
  639. }
  640. }
  641. }
  642. .process--wrap{
  643. .process--cont{
  644. padding-top: 60px;
  645. .process--top{
  646. .process--side{
  647. gap: 15px;
  648. }
  649. .process--circle{
  650. background-image: none;
  651. gap: 60px;
  652. height: auto;
  653. flex-direction: column;
  654. .circle{
  655. height: 60px;
  656. width: 100%;
  657. display: flex;
  658. align-items: center;
  659. justify-content: center;
  660. text-align: center;
  661. &::after{
  662. display: none;
  663. }
  664. .ico{
  665. display: none;
  666. }
  667. }
  668. &::after{
  669. top: auto;
  670. bottom: -85px;
  671. }
  672. }
  673. }
  674. .process--box{
  675. .box{
  676. padding: 25px 25px 60px 25px;
  677. background-size: 20%;
  678. background-position: right 20px bottom -10px !important;
  679. &:nth-child(1){
  680. }
  681. h4{
  682. font-size: 18px;
  683. margin-bottom: 15px;
  684. }
  685. }
  686. }
  687. .process--bot{
  688. padding-top: 105px;
  689. .process--side{
  690. gap: 15px;
  691. }
  692. }
  693. }
  694. }
  695. }
  696. }
  697. .four--strategy--wrap{
  698. .strategy--cont1{
  699. flex-direction: column;
  700. align-items: center;
  701. gap: 60px;
  702. margin-bottom: 60px;
  703. .cont--left{
  704. width: 100%;
  705. display: flex;
  706. justify-content: center;
  707. .box--wrap{
  708. width: 100%;
  709. max-width: 440px;
  710. justify-content: center;
  711. align-items: center;
  712. li{
  713. max-width: 185px;
  714. width: calc(50% - 10px);
  715. padding: 20px 10px;
  716. height: 150px!important;
  717. div{
  718. span{
  719. font-size: 12px!important;
  720. }
  721. }
  722. }
  723. }
  724. }
  725. .cont--right{
  726. width: 100%;
  727. justify-content: center;
  728. text-align: center;
  729. }
  730. }
  731. .strategy--cont2{
  732. .question2{
  733. font-size: 20px;
  734. margin-bottom: 20px;
  735. }
  736. .answer2{
  737. font-size: 16px;
  738. }
  739. .result{
  740. font-size: 16px;
  741. text-align: center;
  742. }
  743. }
  744. }
  745. .family--business--wrap{
  746. .family--cont--wrap{
  747. .cont--right{
  748. .family--box--wrap{
  749. .family--box{
  750. padding: 25px;
  751. border-radius: 10px;
  752. .ico{
  753. width: 40px;
  754. margin-bottom: 20px;
  755. background-size: 25px 25px;
  756. height: 40px;
  757. }
  758. p{
  759. font-size: 18px;
  760. margin-bottom: 15px;
  761. }
  762. }
  763. }
  764. }
  765. }
  766. }
  767. .impt--search--wrap{
  768. >ul{
  769. padding-top: 30px;
  770. li{
  771. width: calc(50% - 7.5px);
  772. &:last-child{
  773. width: 100%;
  774. }
  775. }
  776. }
  777. }
  778. .impt--list--wrap{
  779. ul{
  780. li{
  781. padding: 30px 25px;
  782. h3{
  783. font-size: 18px;
  784. }
  785. .captions{
  786. padding-top: 15px;
  787. font-size: 15px;
  788. line-height: 1.7;
  789. margin-bottom: 30px;
  790. }
  791. }
  792. }
  793. }
  794. .all--progress--wrap{
  795. .month--text--contents{
  796. >p{
  797. font-size: 15px;
  798. }
  799. .month--gap{
  800. >span{
  801. &:nth-of-type(1){
  802. padding: 15px;
  803. margin-right: 10px;
  804. }
  805. &:nth-of-type(2){
  806. font-size: 18px;
  807. }
  808. }
  809. }
  810. }
  811. .progress--section{
  812. .progress--step{
  813. &.step--01{
  814. .step--label{
  815. font-size: 18px;
  816. }
  817. }
  818. }
  819. }
  820. .compatibility--inner--conls{
  821. padding: 20px 25px 30px 25px;
  822. >h2{
  823. font-size: 18px;
  824. margin-left: -25px;
  825. margin-bottom: 5px;
  826. padding-left: 25px;
  827. }
  828. .captions{
  829. font-size: 15px;
  830. line-height: 1.4;
  831. }
  832. .desc{
  833. margin-top: 15px;
  834. line-height: 1.4;
  835. font-size: 15px;
  836. }
  837. .btn--wrapper{
  838. right: 25px;
  839. gap: 10px;
  840. button{
  841. padding: 15px;
  842. }
  843. }
  844. }
  845. .step--section{
  846. .inner--s--title{
  847. span{
  848. &:nth-of-type(1){
  849. margin-right: 10px;
  850. font-size: 18px;
  851. }
  852. &:nth-of-type(2){
  853. margin-top: 10px;
  854. display: block;
  855. font-size: 15px;
  856. }
  857. }
  858. }
  859. .inner--grid{
  860. flex-wrap: wrap;
  861. row-gap: 30px;
  862. &::before{
  863. content: "";
  864. display: block;
  865. width: 100%;
  866. height: 1px;
  867. background: rgba(46, 204, 113, 0.5);
  868. position: absolute;
  869. width:calc(100% - 180px);
  870. left: 90px;
  871. top: calc(50% + 65px);
  872. z-index: -1;
  873. }
  874. .grid{
  875. width: 33.3333%;
  876. &.web{
  877. display: none;
  878. }
  879. &.mo{
  880. display: flex;
  881. }
  882. .desc{
  883. padding-top: 10px;
  884. font-size: 13px;
  885. }
  886. &:last-child{
  887. position: relative;
  888. &::after{
  889. content: '';
  890. display: inline-block;
  891. background: rgba(46, 204, 113, 0.5);
  892. position: absolute;
  893. width: 1px;
  894. height: 20px;
  895. top: -20px;
  896. left: 50%;
  897. }
  898. }
  899. }
  900. }
  901. }
  902. }
  903. }
  904. .faq--wrapper{
  905. .inner--contents{
  906. .faq--list--wrap{
  907. ul{
  908. li{
  909. .faq--item--title{
  910. >p{
  911. font-size: 15px;
  912. }
  913. }
  914. .faq--item--content{
  915. >p{
  916. font-size: 15px;
  917. }
  918. }
  919. }
  920. }
  921. }
  922. }
  923. }
  924. .mna--reason--wrap{
  925. .swiper-slide{
  926. transform: translateX(20px);
  927. }
  928. }
  929. .faq--wrapper{
  930. .inner--contents{
  931. .faq--list--wrap{
  932. padding-top: 30px;
  933. }
  934. }
  935. }
  936. }
  937. .top--btn{
  938. right: 20px;
  939. bottom: 20px;
  940. width: 45px;
  941. height: 45px;
  942. }
  943. footer{
  944. section{
  945. align-items: flex-start;
  946. flex-direction: column;
  947. .footer--left{
  948. .copy--text{
  949. gap: 5px;
  950. margin-top: 20px;
  951. p{
  952. font-size: 14px;
  953. span{
  954. font-size: 14px;
  955. margin-right: 20px;
  956. &::after{
  957. right: -10px;
  958. height: 12px;
  959. }
  960. }
  961. }
  962. }
  963. }
  964. .footer--right{
  965. gap: 10px;
  966. a{
  967. font-size: 14px;
  968. }
  969. }
  970. }
  971. }
  972. }
  973. @media(max-width: 500px){
  974. header{
  975. .header--line--banner--wrap{
  976. .inner--contents{
  977. h3{
  978. font-size: 16px;
  979. }
  980. .close--btn{
  981. width: 30px;
  982. height: 30px;
  983. top: 0px;
  984. }
  985. }
  986. }
  987. }
  988. main{
  989. .main--visual--section{
  990. .main--visual--pager{
  991. padding: 10px 20px;
  992. height: 70px;
  993. .prev--next--wrap{
  994. gap: 5px;
  995. }
  996. .main--visual--progress{
  997. margin-right: 10px;
  998. .progress-text{
  999. display: none;
  1000. }
  1001. .main--visual--progress--bar{
  1002. .progress-bar{
  1003. width: 140px;
  1004. }
  1005. }
  1006. .progress-title{
  1007. width: 140px;
  1008. font-size: 14px;
  1009. margin-bottom: 10px;
  1010. padding-left: 0;
  1011. }
  1012. }
  1013. }
  1014. .main--visual--wrap{
  1015. .main--visual--img{
  1016. .main--visual--txt{
  1017. h3{
  1018. font-size: 30px;
  1019. }
  1020. p{
  1021. font-size: 15px;
  1022. }
  1023. }
  1024. }
  1025. }
  1026. }
  1027. .section--container{
  1028. .process--plan--wrap{
  1029. .title--wrap{
  1030. margin-bottom: 30px;
  1031. >h2{
  1032. font-size: 24px;
  1033. }
  1034. }
  1035. .content--wrap{
  1036. .direct--wrap{
  1037. .circle{
  1038. &:nth-of-type(3), &:nth-of-type(4){
  1039. width: 100%;
  1040. }
  1041. &:nth-of-type(3){
  1042. position: relative;
  1043. &::after{
  1044. content: '';
  1045. position: absolute;
  1046. width: 1px;
  1047. height: 30px;
  1048. display: inline-block;
  1049. border-right: 3px dashed #2ecc71;
  1050. top: calc(100% + 15px);
  1051. left: 50%;
  1052. }
  1053. }
  1054. }
  1055. .bar{
  1056. &.mo2{
  1057. display: none;
  1058. }
  1059. }
  1060. }
  1061. .process--wrap{
  1062. .process--title{
  1063. width: calc(100% - 24px);
  1064. font-size: 15px;
  1065. padding: 20px 5px;
  1066. }
  1067. .process--cont{
  1068. .process--top{
  1069. .process--side{
  1070. &::after{
  1071. width: 44px;
  1072. background-size: 100%;
  1073. left: calc(100% - 20px);
  1074. }
  1075. &:last-child{
  1076. &::after{
  1077. right: calc(100% - 20px);
  1078. }
  1079. }
  1080. }
  1081. .process--circle{
  1082. &::after{
  1083. width: 20px;
  1084. background-size: 100%;
  1085. background-position: top;
  1086. }
  1087. }
  1088. }
  1089. .process--bot{
  1090. padding-top: 85px;
  1091. .line{
  1092. width: 20px;
  1093. height: 44px;
  1094. background-size: 100%;
  1095. }
  1096. .process--side{
  1097. gap: 5px;
  1098. .line{
  1099. display: none;
  1100. }
  1101. .circle{
  1102. &:nth-of-type(2), &:nth-of-type(4){
  1103. &::after{
  1104. background-size: 20px 44px;
  1105. bottom: 100%;
  1106. background-position: bottom;
  1107. }
  1108. }
  1109. }
  1110. }
  1111. }
  1112. }
  1113. }
  1114. }
  1115. }
  1116. .title--wrap{
  1117. >h2{
  1118. font-size: 24px;
  1119. }
  1120. &.big{
  1121. >h2{
  1122. font-size: 24px;
  1123. }
  1124. }
  1125. }
  1126. .now--box--wrap{
  1127. .box--top{
  1128. flex-wrap: wrap;
  1129. gap: 20px;
  1130. margin-bottom: 50px;
  1131. .box{
  1132. width: 100%;
  1133. flex-direction: row;
  1134. gap: 20px;
  1135. .box--img{
  1136. width: 80px;
  1137. min-width: 80px;
  1138. img{
  1139. width: 100%;
  1140. }
  1141. }
  1142. >p{
  1143. width: calc(100% - 120px);
  1144. text-align: left;
  1145. }
  1146. }
  1147. }
  1148. }
  1149. .four--strategy--wrap{
  1150. .strategy--cont1{
  1151. .cont--left{
  1152. .box--wrap{
  1153. &::before{
  1154. width: 300px;
  1155. height: 300px;
  1156. top: 10px;
  1157. left: calc(50% - 150px);
  1158. }
  1159. }
  1160. }
  1161. }
  1162. .strategy--cont3{
  1163. .box{
  1164. background-size: 40%;
  1165. &:nth-child(1){
  1166. background-size: 25%;
  1167. }
  1168. &:nth-child(2){
  1169. background-size: 20%;
  1170. }
  1171. dt{
  1172. font-size: 16px;
  1173. }
  1174. dd{
  1175. font-size: 15px;
  1176. ul{
  1177. gap: 5px;
  1178. }
  1179. }
  1180. }
  1181. }
  1182. }
  1183. .growth--logic--wrap{
  1184. .title--box{
  1185. width: 100%;
  1186. }
  1187. .logic--box{
  1188. width: 100%;
  1189. min-height: 240px;
  1190. &.special{
  1191. width: 100%;
  1192. }
  1193. }
  1194. }
  1195. .mna--dream--wrap{
  1196. .dream--cont{
  1197. padding: 20px;
  1198. h4{
  1199. font-size: 20px;
  1200. }
  1201. .box{
  1202. padding: 20px;
  1203. margin-bottom: 20px;
  1204. }
  1205. .chat{
  1206. gap: 10px;
  1207. .chat--bubble{
  1208. padding: 15px;
  1209. margin-bottom: 20px;
  1210. }
  1211. }
  1212. .chat--answer{
  1213. margin-bottom: 20px;
  1214. }
  1215. }
  1216. }
  1217. .family--business--wrap{
  1218. .family--cont--wrap{
  1219. .cont--left{
  1220. h2{
  1221. font-size: 24px;
  1222. }
  1223. span{
  1224. font-size: 14px;
  1225. }
  1226. }
  1227. .cont--right{
  1228. .family--box--wrap{
  1229. .family--box{
  1230. width: 100%;
  1231. }
  1232. }
  1233. }
  1234. }
  1235. .family--table--wrap{
  1236. table{
  1237. tr{
  1238. td{
  1239. padding: 15px 10px;
  1240. font-size: 14px;
  1241. ul{
  1242. li{
  1243. padding-left: 6px;
  1244. font-size: 14px;
  1245. &::before{
  1246. }
  1247. }
  1248. }
  1249. }
  1250. }
  1251. }
  1252. }
  1253. }
  1254. .impt--search--wrap{
  1255. >ul{
  1256. li{
  1257. width: 100%;
  1258. text-align: center;
  1259. }
  1260. }
  1261. }
  1262. .impt--list--wrap{
  1263. ul{
  1264. flex-wrap: wrap;
  1265. width: 100%;
  1266. li{
  1267. width: 100%;
  1268. .thumb{
  1269. margin-left: auto;
  1270. }
  1271. }
  1272. }
  1273. }
  1274. .all--progress--wrap{
  1275. .step--section{
  1276. .inner--grid{
  1277. &::after{
  1278. top: 45px;
  1279. }
  1280. &::before{
  1281. top: calc(50% + 60px);
  1282. }
  1283. .grid{
  1284. .thumb{
  1285. width: 90px;
  1286. height: 90px;
  1287. }
  1288. &:first-child{
  1289. .desc{
  1290. width: 90px;
  1291. }
  1292. }
  1293. }
  1294. }
  1295. }
  1296. .compatibility--inner--conls{
  1297. .btn--wrapper{
  1298. margin-top: 20px;
  1299. width: 100%;
  1300. justify-content: flex-end;
  1301. position: static;
  1302. }
  1303. }
  1304. }
  1305. }
  1306. .mna--prof--wrap{
  1307. .prof--man--swiper{
  1308. padding: 0 20px;
  1309. .swiper-slide{
  1310. .prof--card{
  1311. gap: 20px;
  1312. padding: 25px 30px;
  1313. .thumb{
  1314. width: 100px;
  1315. height: 100px;
  1316. min-width: 100px;
  1317. img{
  1318. width: 100%;
  1319. }
  1320. }
  1321. }
  1322. }
  1323. }
  1324. }
  1325. .faq--wrapper{
  1326. .inner--contents{
  1327. .section--title{
  1328. font-size: 24px;
  1329. }
  1330. }
  1331. }
  1332. }
  1333. }