@font-face { font-family: 'GmarketSansLight'; src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff'); font-weight: normal; font-style: normal; }
@font-face { font-family: 'GmarketSansMedium'; src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff'); font-weight: normal; font-style: normal; }
@font-face { font-family: 'GmarketSansBold'; src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');font-weight: normal; font-style: normal;}


body {
    font-family: 'Pretendard', sans-serif;
}




.top_bar {
  border-top: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--line-color);
}

.top_bar .top_wrap {
  display: flex;
  justify-content: flex-end;
  height: 3.2rem;

  line-height: 3.2rem;
}

.top_bar .adm {
  position: relative;
  display: flex;
  gap: 2.4rem;
}

.top_bar .adm .icon {
  width: 0.875rem;
  height: 0.875rem;
  vertical-align: -2px;
  margin-right: 8px;
  stroke: var(--body-color);
  stroke-width: 2;
}

@media (max-width: 1024px) {
  .top_bar .adm {
    flex-direction: column;
    gap: 0;
  }

  .top_bar .adm li ~ li::before {
    display: none;
  }
}

/* .top_bar .adm a {
  display: block;
} */

@media (max-width: 1024px) {
  .top_bar {
    border-bottom: none;
  }

  .top_bar .top_wrap {
    display: none;
  }
}

.adm {
  position: relative;
  display: flex;
  gap: 2.4rem;
  margin-left: 8rem;
  white-space: nowrap;
}

.adm .icon {
  width: 1.4rem;
  height: 1.4rem;
  vertical-align: -2px;
  margin-right: 8px;
  stroke: var(--body-color);
  stroke-width: 2;
}

#header {
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--line-color);
  background: var(--white-color);
}

#header.on {
  border-bottom: 1px solid var(--line-color);
}

#header h1 {
  flex: 0 0 auto;
  font-size: 3.2rem;
  font-weight: 800;
  white-space: nowrap;
  user-select: none;
}

/* #header h1 img {
  height: 40px;
} */

#header .hd_wrap {
  display: flex;
  align-items: center;
}

.sitemap {
  display: flex;
  align-items: center;
  height: 9.6rem;
  margin-left: 6.4rem;
}

.sitemap_btn .icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--body-color);
  stroke-width: 2;
}

@media (max-width: 1280px) {
  .sitemap {
    display: none !important;
  }
}

#siteMap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
}

#siteMap .inbox {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40rem;
  right: 0;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 12rem 8rem;
  /* border-left: 1px solid var(--secondary-color); */

  /* border-radius: 4rem; */
}

#siteMap .inbox > ul {
  display: flex;
}

#siteMap .inbox > ul > li {
  flex: 1;
  min-height: 24rem;
  padding: 2rem;
  min-width: 24rem;
}

#siteMap .inbox > ul > li > a {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 6.4rem;
  font-weight: 500;
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

#siteMap .inbox > ul ul a {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  line-height: 4.8rem;
  font-size: 1.7rem;
}

#siteMap .inbox button {
  position: absolute;
  top: 8rem;
  right: 8rem;

  width: 4rem;
  height: 4rem;
  color: var(--white-color);
  background: url(../lib/icon/x.svg) no-repeat center center/2.4rem;
  filter: invert();
  cursor: pointer;
  text-transform: uppercase;
}

.gnb {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.gnb > ul {
  display: flex;
}

.gnb > ul > li > a {
  position: relative;
  display: block;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 9.6rem;
  padding: 0 3.2rem;
  text-transform: uppercase;

  white-space: nowrap;
}

.gnb > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 4;
  transform: translate(-50%, 1px);

  width: 0;
  height: 1px;
  background: var(--primary-color);

  transition: 0.4s;
}

.gnb > ul > li:hover > a::after {
  width: 100%;
}

.gnb > ul > li {
  position: relative;
}

.gnb > ul > li:hover {
  background: #f9f9f9;
}
.gnb > ul > li:hover ul {
  background: #f9f9f9;
}

.gnb > ul > li ul {
  position: absolute;
  top: auto;
  left: 0;

  z-index: 3;

  width: 100%;
  overflow: hidden;

  height: 0;

  transition: 0.2s;
}

.gnb:hover > ul > li ul {
  padding-top: 1.6rem;
  height: 28rem;
}

.gnb > ul > li:focus-within ul {
  padding-top: 1.6rem;
  height: 28rem;
}

.gnb::before {
  content: "";
  position: absolute;
  top: 9.7rem;
  left: 0;
  right: 0;
  z-index: 2;
  height: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: 0.2s;
}
.gnb:hover::before {
  height: 28rem;
  background: #ffffff;
  border-bottom: 1px solid var(--line-color);
}
.gnb > ul > li ul li a {
  display: block;
  line-height: 4rem;
  white-space: nowrap;

  font-size: 1.6rem;

  text-align: center;
}

.mbtn {
  display: none;
}

@media (max-width: 1023px) {

#header h1 img {width:80%;}
  .mbtn {
    display: flex;
    align-items: center;

    position: fixed;
    top: 3rem;
    right: 1.6rem;
    z-index: 999;

    width: 32px;
    height: 32px;

    /*background: var(--lightgray-color);
    border: 1px solid var(--line-color);
    border-radius: 4px;
    /* background: rgba(255, 255, 255, 0.25); */
    font-size: 0;
  }

  .mbtn::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 4px;
    right: 4px;

    height: 2px;
    background: var(--body-color);
  }

  .mbtn.on::before {
    display: none;
  }

  .mbtn::after {
    content: "";
    position: absolute;
    bottom: 7px;
    left: 4px;
    right: 4px;

    height: 2px;
    background: var(--body-color);
  }

  .mbtn.on::after {
    display: none;
  }

  .mbtn span::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 4px;
    right: 4px;

    height: 2px;
    background: #ffffff;
  }

  .mbtn.on span::before {
    transform: rotate(45deg);
  }

  .mbtn span::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 4px;
    right: 4px;

    height: 2px;
    background: var(--body-color);
  }

  .mbtn.on span::after {
    transform: rotate(-45deg);
  }

  #header {
    height: 10rem;
  }

  #header .hd_wrap {
    height: 10rem;
  }

  #header h1.on {
    position: fixed;
    z-index: 1000;
  }




    /* =========================
       모바일 GNB
    ========================= */

    .gnb {
        position: fixed;
        top: 0;
        right: -85%;
        left: auto;

        z-index: 999;

        width: 85%;
        max-width: 420px;
        height: 100vh;

        padding: 100px 25px 40px;

        background: #0B1F3A;

        display: block;

        overflow-y: auto;

        transition: right 0.35s ease;

        box-shadow: -5px 0 25px rgba(0,0,0,0.18);
    }


    /* 메뉴 열림 */
    .gnb.on {
        right: 0;
        left: auto;
    }


    /* 기존 PC GNB 배경 제거 */
    .gnb::before,
    .gnb:hover::before {
        display: none;
    }


    /* 메뉴 리스트 */
    .gnb > ul {
        display: block;

        width: 100%;

        max-height: none;

        overflow: visible;

        border-top: 1px solid rgba(255,255,255,0.2);

        background: transparent;
    }


    /* 1차 메뉴 */
    .gnb > ul > li {
        position: relative;

        width: 100%;

        border-bottom: 1px solid rgba(255,255,255,0.2);

        background: transparent;
    }


    .gnb > ul > li:hover {
        background: transparent;
    }


    /* 1차 메뉴 링크 */
    .gnb > ul > li > a {
        position: relative;

        display: block;

        padding: 0 45px 0 15px;

        line-height: 60px;

        border-bottom: 0;

        color: #fff;

        font-size: 18px;
        font-weight: 400;

        text-align: left;
    }


    /* PC용 밑줄 제거 */
    .gnb > ul > li > a::after {
        content: "";

        position: absolute;

        top: 50%;
        right: 15px;
        left: auto;
        bottom: auto;

        width: 10px;
        height: 10px;

        border-right: 1px solid #fff;
        border-bottom: 1px solid #fff;

        background: none;

        transform: translateY(-70%) rotate(45deg);

        transition: transform 0.3s ease;
    }


    /* 아코디언 열린 메뉴 화살표 */
    .gnb > ul > li.active > a::after {
        width: 10px;
        height: 10px;

        transform: translateY(-30%) rotate(225deg);
    }


    /* 2차 메뉴 */
    .gnb > ul > li > ul {
        position: static;

        display: none;

        width: 100%;
        height: auto;

        padding: 0;

        overflow: hidden;

        border: 0;

        background: #e8e8e8;

        transition: none;
    }


    /* PC hover 무효화 */
    .gnb:hover > ul > li ul {
        height: auto;
        padding-top: 0;
    }


    .gnb > ul > li:hover ul {
        background: #e8e8e8;
    }


    /* 2차 메뉴 링크 */
    .gnb > ul > li ul li a {
        display: block;

        padding: 0 30px;

        line-height: 48px;

        background: #EAF1FA;

        color: #172A46;

        font-size: 15px;

        text-align: left;

        border-bottom: 1px solid #fff;
    }


    .gnb > ul > li ul li:last-child a {
        border-bottom: 0;
    }


    /* 메뉴 열린 동안 페이지 스크롤 방지 */
    body.gnb_open {
        overflow: hidden;
    }
	
	 .gnb > ul > li > a::after,
    .gnb > ul > li:hover > a::after {
        top: 50%;
        right: 15px;
        bottom: auto;
        left: auto;

        width: 10px;
        height: 10px;

        border-right: 1px solid #fff;
        border-bottom: 1px solid #fff;

        background: none;

        transform: translateY(-70%) rotate(45deg);
    }

    .gnb > ul > li.active > a::after,
    .gnb > ul > li.active:hover > a::after {
        width: 10px;
        height: 10px;

        transform: translateY(-30%) rotate(225deg);
    }
	  .mbtn.on span,
    .mbtn.on span::before,
    .mbtn.on span::after {
        background: #fff !important;
    }



/*
  .gnb {
    position: fixed;
    top: 0;
    left: -100vw;
    z-index: 999;

    width: 100vw;
    height: 150vh;

    background: var(--white-color);

    padding: 12rem 1.6rem 0 1.6rem;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 6.4rem;
  }

  .gnb.on {
    left: 0;
  }

  .gnb::before {
    display: none;
  }
  .gnb:hover::before {
    display: none;
  }

  .gnb > ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    background: var(--white-color);
    border-top: 1px solid var(--line-color);

    max-height: 44rem;
    overflow-y: auto;
  }

  .gnb .adm {
    position: relative;
    display: flex;
    gap: 2.4rem;
    margin-left: 0;

    order: -1;

    background: #f8f8f8;
    height: 6.4rem;
    align-items: center;
    width: 100%;
    padding: 0 2.4rem;
    font-size: 1.6rem;

    border-top: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
  }

  .gnb > ul > li > a {
    line-height: 5.6rem;
    border-bottom: 1px solid var(--line-color);
  }

  .gnb > ul > li {
    position: relative;
  }

  .gnb > ul > li ul {
    position: static;
    top: auto;
    left: 0;

    z-index: 3;

    width: 100%;
    overflow: hidden;

    height: auto;
    border-bottom: 1px solid var(--line-color);

    transition: none;

    display: none;
  }

  .gnb:hover > ul > li ul {
    padding-top: 0;
    height: auto;
  }

  .gnb > ul > li:focus-within ul {
    transform: translate(0, 0);

    opacity: 1;
    visibility: visible;

    display: none;
  }

  .gnb > ul > li:hover {
    background: #ffffff;
  }
  .gnb > ul > li:hover ul {
    background: #ffffff;
  }

  .gnb > ul > li > a {
    position: relative;
    line-height: 5.6rem;
    padding: 0 2.4rem;
  }

  .gnb > ul > li ul li a {
    display: block;
    padding: 0 2.4rem;
    line-height: 4.8rem;
    white-space: nowrap;

    text-align: left;

    background: var(--lightgray-color);
  }

  .gnb > ul > li ul li ~ li a {
    border-top: 1px solid var(--line-color);
  }
  
  */
  
  
}

.sub_title {
  position: relative;

  background-color: var(--primary-color);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  /* border-left: 4px solid var(--point-color); */
  /* border-top: 4px solid var(--point-color); */
  text-transform: uppercase;

  color: var(--white-color);
  /* border-radius: 4rem 0 0 0; */
  overflow: hidden;

  min-height: 50rem;
}

/*.sub_title::before {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  background: rgba(0, 0, 0, 0.3) url(../images/pt-bg01.png);
}*/

.sub_title .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: calc(100% - 3.2rem);
  margin: 0 0;
  margin-bottom: 0;

  text-align: center;
}

.sub_title .title h2 {
  font-size: 6.4rem;
  font-weight: 800;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.sub_title .title h2::after {
  content: "";
  display: block;
  margin: 2.4rem auto;
  width: 12rem;
  height: 1px;

  background: var(--point-color);
}
.sub_title .title p {
  margin-top: 1.6rem;
  font-size: 1.5rem;
  font-weight: 300;
}


@media (max-width: 1023px) {

    #header {
        position: sticky;
        top: 0;
        z-index: 999;
        background: #fff;
    }

    #header .hd_wrap {
        position: relative;
    }

    .mbtn {
        display: flex;
        align-items: center;

        position: absolute;
        top: 50%;
        right: 1.6rem;
        transform: translateY(-50%);
        z-index: 1000;
    }
}




@media (max-width: 768px) {

.sub_title {min-height:30rem;}
  .sub_title .title h2 {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  }
}

.sub_nav {
  position: relative;
  margin-bottom: 8rem;

  background: var(--white-color);

  line-height: 6.4rem;
}

.sub_nav .inner {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-color);
}

.sub_nav .lnb ul {
  display: flex;
  justify-content: flex-end;
  gap: 0;
}

.sub_nav .lnb ul a {
  display: block;
  background: var(--white-color);

  white-space: nowrap;

  padding: 0 4rem;
}

.sub_nav .lnb ul li ~ li {
  border-left: 1px solid var(--line-color);
}

.sub_nav .lnb ul li.on a {
  border-top: 4px solid var(--point-color);
  margin-top: -4px;
}

.sub_nav .navigation {
  padding-left: 1.6rem;
  font-size: 1.4rem;
  white-space: nowrap;
}

.sub_nav .navigation .icon {
  width: 1.4rem;
  height: 1.4rem;
  vertical-align: -1px;
  stroke: var(--body-color);
  stroke-width: 2;
}

.sub_nav .lnb > a {
  display: none;
}

@media (max-width: 1200px) {
  .sub_nav .navigation {
    display: none;
  }

  .sub_nav .inner {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .sub_nav {
    position: relative;
    margin-top: -4rem;
    margin-bottom: 4rem;

    background: var(--white-color);
    border: 0px solid var(--line-color);

    border-top: 4px solid var(--primary-color);

    line-height: 6.4rem;
  }
  .sub_nav .inner {
    display: block;
    margin: 0 0;
  }

  .sub_nav .lnb ul {
    display: none;
  }

  .sub_nav .lnb > a {
    position: relative;
    display: block;
    padding: 0 1.6rem;
  }

  .sub_nav .lnb > a::after {
    content: "";
    position: absolute;
    top: 50%;

    transform: translate(0, -50%);
    right: 1.6rem;
    width: 24px;
    height: 24px;

    background: url(../lib/icon/chevron-down.svg) no-repeat center center/22px;
    opacity: 0.5;
  }

  .sub_nav .lnb > a.on::after {
    background: url(../lib/icon/chevron-up.svg) no-repeat center center/22px;
  }

  .sub_nav .lnb ul li ~ li {
    border-left: 0px solid var(--line-color);
  }
  .sub_nav .lnb ul li {
    border-top: 1px solid var(--line-color);
  }

  .sub_nav .lnb ul a {
    display: block;
    /* background: var(--white-color); */
    background: var(--background-color);
    white-space: nowrap;

    padding: 0 0;
    padding: 0 1.6rem;
  }

  .sub_nav .lnb ul li.on a {
    border-top: 0px solid var(--point-color);
    margin-top: 0px;
  }
}

.sub_content {
  margin-top: 8rem;
  margin-bottom: 20rem;
}

.sub_content .page_title {
  margin-bottom: 2.4rem;
}

.sub_content .page_title h3 {
  position: relative;
  padding: 1.6rem 0;
  /* border-bottom: 1px solid var(--line-color); */
  white-space: nowrap;

  text-align: center;
}

.sub_content .page_title h3::after {
  content: "";
  display: block;
  margin: 2.4rem auto;
  width: 12rem;
  height: 1px;

  background: var(--point-color);
}

.sub_content .page_title h3 strong {
  font-size: 4rem;
  font-weight: 700;
}

@media (max-width: 1440px) {
}
/*
.sub_content .content p {
  font-size: 1.7rem;
  line-height: 2.4rem;
  opacity: 0.9;
}
*/

.sub_content .content .sub_title_desc {
  line-height: 1.5;
  margin-bottom: 8rem;

  text-align: center;
}

#footer {
  padding: 8rem 0 5.6rem 0;
  background: var(--footerbg-color);
  /* color: var(--lightgray-color); */
  /* border-top: 1px solid var(--line-color); */

  font-size: 1.5rem;
  line-height: 2.4rem;
}

#footer .con_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

#footer .info {
  display: flex;
  gap: 2.4rem;
}

#footer .info li {
  position: relative;
  /* text-align: center; */
  white-space: nowrap;
}

#footer .info li ~ li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;

  transform: translate(0, -50%);

  width: 1px;
  height: 0.5em;

  background: #ccc;
}

#footer .f_logo {
  max-width: 24rem;
  margin-bottom: 4rem;
}

#footer .lnk {
  margin-bottom: 5.6rem;
  padding: 5.6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#footer .lnk > ul {
  display: flex;
  gap: 8rem;
}

#footer .lnk > ul > li > a {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.6rem;
}

#footer .lnk > ul ul a {
  display: block;
  line-height: 1.5;
}

#footer .customer_list {
  display: flex;
  gap: 1.6rem;

  margin-bottom: 1.6rem;
}

@media (max-width: 768px) {
  #footer .lnk {
    display: none;
  }

  #footer .customer_list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
}

#flnk {
  position: relative;
  height: 3.2rem;
  line-height: 3.2rem;
  padding: 0 4rem 0 2.4rem;
  border: 1px solid var(--line-color);
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 1.4rem;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.f_lnk {
  position: relative;
}

.f_lnk::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.8rem;
  width: 1.6rem;
  height: 1.6rem;

  background: url(../lib/icon/chevron-down.svg) no-repeat center center/1.6rem;
  filter: invert(100%);

  transform: translate(0, -50%);
}

.f_lnk #flnk option {
}
.s_link {
  text-align: right;
  margin-top: 1.6rem;
}
.s_link #slink a {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  width: 4rem;
  height: 4rem;

  background: var(--body-color);
}

.s_link #slink a img {
  width: 2.4rem;
  height: 2.4rem;
}

@media (max-width: 768px) {
  #footer .con_wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  #footer .info {
    flex-direction: column;
    gap: 0;
  }

  #footer .info li ~ li::before {
    display: none;
  }
}

#side_lnk {
  position: fixed;
  bottom: 12rem;
  right: -16rem;
  z-index: 100;

  display: flex;
  flex-direction: column;
  align-items: center;

  opacity: 1;
  visibility: hidden;

  transition: 0.8s;
}

#side_lnk.on {
  right: 1.6rem;
  opacity: 1;
  visibility: visible;
}

#side_lnk .lnk_wrap {
  background: var(--white-color);
  border-radius: 0.8em;
  box-shadow: 0 0 1.6rem rgba(0, 0, 0, 0.1);
  padding: 0.8rem 0.8rem;
  margin-bottom: 4rem;
}

#side_lnk .lnk_wrap > a {
  display: block;
  text-align: center;
  padding: 1.6rem 0.8rem;

  white-space: nowrap;
}

#side_lnk .lnk_wrap > a .icon {
  width: 2.4rem;
  height: 2.4rem;
  stroke: var(--body-color);
  stroke-width: 1;
}

#side_lnk .lnk_wrap > a ~ a {
  border-top: 1px solid var(--line-color);
}

#side_lnk .lnk_wrap > a span {
  display: block;
  margin-top: 0.8rem;

  font-size: 1.4rem;
}

#side_lnk .d_btn {
  position: relative;
  display: block;
  width: 6.4rem;
  height: 6.4rem;
  background: var(--primary-color);
  border-radius: 3.2em;
  box-shadow: 0 0 1.6rem rgba(0, 0, 0, 0.1);
  text-align: center;
}

#side_lnk .d_btn .icon {
  width: 2.4rem;
  height: 2.4rem;
  stroke: var(--white-color);
  stroke-width: 2;
}

#side_lnk a.naver,
#side_lnk a.kakao {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 6.4rem;
  height: 6.4rem;
  margin-bottom: 1.6rem;
  background: var(--white-color);
  border-radius: 3.2em;
  box-shadow: 0 0 1.6rem rgba(0, 0, 0, 0.1);

  line-height: 6.4rem;
  color: var(--white-color);
  font-size: 1.2rem;

  overflow: hidden;
  transition: all 0.3s;
}

#side_lnk a.naver::after,
#side_lnk a.kakao::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6.4rem;
  height: 6.4rem;
}

#side_lnk a.naver::after {
  background: url(../lib/images/sns_naver.png) no-repeat center center/3.2rem;
}

#side_lnk a.kakao::after {
  background: url(../lib/images/sns_kakao.png) no-repeat center center/3.2rem;
}

#side_lnk a.naver:hover::after {
  background: url(../lib/images/sns_naver_w.png) no-repeat center center/3.2rem;
}

#side_lnk a.kakao:hover::after {
  background: url(../lib/images/sns_kakao_w.png) no-repeat center center/3.2rem;
}

#side_lnk a.naver:hover,
#side_lnk a.kakao:hover {
  width: 22rem;
}

#side_lnk .kakao:hover {
  background: #fee500;
  color: #3c1e1e;
}

#side_lnk .naver:hover {
  background: #03c75a;
  color: #ffffff;
}

#side_lnk a.naver span,
#side_lnk a.kakao span {
  margin-left: 3.2rem;
  width: 0;

  font-size: 1.4rem;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  #side_lnk {
    bottom: 4rem;
  }
}

@media (max-width: 768px) {
  #side_lnk .lnk_wrap {
    display: none;
  }
}

#side_lnk a.naver:hover span,
#side_lnk a.kakao:hover span {
  width: 16rem;
}

.btel {
  text-align: right;
  overflow: hidden;
}

.btel i {
  font-size: 4rem;
  font-weight: 600;
}

.btel i .icon {
  width: 2rem;
  height: 2rem;
  stroke: var(--white-color);
  stroke-width: 1;
}

.btel strong {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0.8rem 0 0.8rem 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .btel {
    text-align: left;
    overflow: hidden;
  }
}

#sns_link {
  margin-bottom: 2.4rem;
  text-align: right;
}

#sns_link a {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  width: 4rem;
  height: 4rem;

  border-radius: 50%;

  background: var(--primary-color);
  color: var(--white-color);

  font-size: 1.8rem;
}

#footer .ft_wrap {
  position: relative;
}

#family_link {
  position: absolute;
  top: 8rem;
  right: 0;
  z-index: 5;

  white-space: nowrap;

  text-align: right;
}

@media (max-width: 768px) {
  #family_link {
    position: static;
  }
}

#family_link .f_link {
  position: relative;
  display: block;
  width: 16rem;
  height: 4rem;
  padding: 0 2.4rem;
  text-align: left;
  font-size: 1.4rem;
  text-align: left;
  color: var(--line-color);
  text-transform: uppercase;
  background: var(--primary-color);

  border-radius: 2rem 2rem 2rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

#family_link .f_link.on {
  border-radius: 0 0 2rem 2rem;
  background: var(--body-color);
}

#family_link .f_link svg {
  position: absolute;
  right: 0.8rem;
  top: 1rem;
}

#family_link .f_link.on svg {
  transform: rotate(180deg);
}

#family_link ul {
  display: none;
  position: absolute;
  bottom: 4rem;
  width: 100%;

  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: -1px;
  z-index: 2;

  background: var(--body-color);

  border-radius: 2rem 2rem 0 0;
  overflow: hidden;
}

#family_link ul > li > a {
  display: block;
  padding: 0 2.4rem;
  font-size: 1.4rem;
  line-height: 3.9rem;
  color: var(--line-color);
}

#family_link ul > li ~ li > a {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#family_link ul > li > a:hover {
  background: var(--point-color);
}

.to_top {
  position: fixed;
  right: 4rem;
  bottom: 16rem;
  z-index: 101;

  opacity: 0;
  visibility: hidden;

  transition: 0.5s;
}

.to_top button {
  width: 6.4rem;
  height: 6.4rem;
  background: var(--white-color);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.to_top button svg {
  margin-top: 2px;
}

.to_top.on {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .to_top {
    position: fixed;
    left: auto;
    right: -1.6rem;
    bottom: 14rem;

    width: auto;
  }

  .to_top.on {
    right: 1.6rem;
  }

  .to_top button {
    width: 4rem;
    height: 4rem;
    background: var(--white-color);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    border-radius: 0;
  }
}


/*상단 전화번호추가*/
.hd_wrap {
    display: flex;
    align-items: center;
}

/*.gnb {
    flex: 1;
}*/

.header_tel {
    margin-left: 30px;
    font-size: 30px;
    font-weight: 800;
    color: #1557d8;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

/* 태블릿 */
@media (max-width: 1200px) {
    .header_tel {
        margin-left: 20px;
        font-size: 22px;
    }
}

/* 모바일 */
@media (max-width: 768px) {
    .header_tel {
        display: none;
    }
}




/*메인컨텐츠 추가*/

/*1단*/
.manage_sec {
    padding: 16rem 0 16rem;
    background: url('../images/bg_mc1.jpg') no-repeat center center /cover;
    font-family: 'Pretendard', sans-serif;
}

.manage_sec .inner {
    max-width: 1500px;
    width: calc(100% - 4rem);
    margin: 0 auto;
}

.manage_sec .sec_tit {
    text-align: center;
}

.manage_sec .sec_tit h2 {
    font-family: "GmarketSansBold", "Gmarket Sans", sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.04em;
    color: #171717;
}

.manage_sec .sec_tit h2 span {
    color: #244cff;
}

.manage_sec .sec_tit p {
    margin-top: 2.2rem;
    font-size: 2.0rem;
    line-height: 1.65;
    color: #111;
    letter-spacing: -0.03em;
}

.tool_list {
    display: flex;
    justify-content: center;
    gap: 9rem;
    margin-top: 5.2rem;
}

.tool_list li {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    color: #111;
}

.tool_list li img {
    display: block;
    width: 8.2rem;
    height: 8.2rem;
    margin: 0 auto 1.8rem;
    border-radius: 50%;
}

.problem_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
    margin-top: 7rem;
}

.problem_box {
    padding: 2rem;
    border: 0.2rem solid #ff1d1d;
    border-radius: 1rem;
    background: rgba(255,255,255,.8);
}

.problem_item + .problem_item {
    margin-top: 2.2rem;
}

.problem_item strong {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.3rem 1.6rem;
    border-radius: 0.8rem;
    background: #fff0f0;
    font-size: 2.2rem;
    font-weight: 600;
    color: #e71919;
    letter-spacing: -0.03em;
}

.problem_item strong span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 2.6rem;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: #fff;
    color: #ff1d1d;
    font-weight: 900;
}

.problem_item p {
    margin: 1.3rem 0 0;
    padding: 0 1.8rem;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #111;
}


.tool_list li{
    text-align:center;
    transition:.35s ease;
}

.tool_list li img{
    display:block;
    width:8.2rem;
    height:8.2rem;
    margin:0 auto 1.8rem;
    border-radius:50%;
    transition:.35s ease;
}

.tool_list li:hover img{
    transform:translateY(-0.8rem);
    box-shadow:0 1.2rem 2.5rem rgba(36,76,255,.18);
}

.tool_list li:hover{
    color:#244cff;
}

.problem_box{
    transition:.35s ease;
}

.problem_box:hover{
    transform:translateY(-1rem);
    box-shadow:0 2rem 4rem rgba(0,0,0,.12);
}

.tool_list li:hover img{
    transform:translateY(-0.8rem) scale(1.06);
}


@media (max-width:1100px){

    .manage_sec{
        padding:10rem 0;
    }

    .manage_sec .sec_tit h2{
        font-size:4rem;
    }

    .tool_list{
        gap:2rem;
        flex-wrap:wrap;
    }

    .tool_list li{
        width:calc(33.333% - 2.4rem);
    }

    .problem_grid{
        grid-template-columns:1fr;
        max-width:76rem;
        margin:6rem auto 0;
    }

}



@media (max-width:768px){

    .manage_sec{
        padding:7rem 0;
        background-position:center top;
    }

    .manage_sec .inner{
        width:calc(100% - 4.5rem);
    }

    .manage_sec .sec_tit h2{
        font-size:3rem;
        word-break:keep-all;
    }

    .manage_sec .sec_tit p{
        font-size:1.4rem;
    }

    .manage_sec .sec_tit p br{
        display:none;
    }

    .tool_list{
        gap:2.6rem 1.2rem;
        margin-top:3.8rem;
    }

    .tool_list li{
        width:calc(33.333% - 0.8rem);
        font-size:1.5rem;
    }

    .tool_list li img{
        width:6.4rem;
        height:6.4rem;
        margin-bottom:1rem;
    }

    .problem_grid{
        margin-top:4.5rem;
        gap:1.8rem;
    }

    .problem_box{
        padding:1.4rem;
    }

    .problem_item + .problem_item{
        margin-top:1.6rem;
    }

    .problem_item strong{
        font-size:1.7rem;
        padding:1.1rem 1.2rem;
    }

    .problem_item p{
        font-size:1.4rem;
        padding:0 0.8rem;
    }

}

/*2단*/

.effect_sec {
    padding: 16rem 0 16rem;
    background: url('../images/bg_mc2.jpg') no-repeat center center / cover;
    font-family: 'Pretendard', sans-serif;
}

.effect_sec .inner {
    max-width: 1500px;
    width: calc(100% - 4rem);
    margin: 0 auto;
}

.effect_sec .sec_tit {
    text-align: center;
}

.effect_sec .sec_tit h2 {
    font-family: "GmarketSansBold", "Gmarket Sans", sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.04em;
    color: #fff;
}

.effect_sec .sec_tit h2 span {
    color: #8fb4ff;
}

.effect_sec .sec_tit p {
    margin-top: 1.6rem;
    font-size: 2rem;
    line-height: 1.6;
    color: rgba(255,255,255,.75);
}

.effect_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 6rem;
}

.effect_list li {
    min-height: 20rem;
    padding: 4rem 3rem 4rem;
    border-radius: .5rem;
    background: #fff;
    text-align: center;
    transition: .35s ease;
}

.effect_list li:hover {
    transform: translateY(-.8rem);
    box-shadow: 0 2rem 4rem rgba(0,0,0,.18);
}

.effect_list h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111;
}

.effect_list em {
    display: block;
    margin-top: 1.8rem;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 800;
    color: #153d9b;
}

.effect_list strong {
    display: block;
    margin-top: .4rem;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #153d9b;
    letter-spacing: -0.04em;
}

.effect_list p {
    margin-top: 2rem;
    font-size: 1.6rem;
    line-height: 1.55;
    color: #111;
    word-break: keep-all;
}

.effect_btn {
    margin-top: 5.5rem;
    text-align: center;
}

.effect_btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 25rem;
    height: 6rem;
    padding: 0 3rem;
    border-radius: .6rem;
    background: #0087c6;
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none;
    transition: .3s ease;
}

.effect_btn a:hover {
    background: #244cff;
    transform: translateY(-.3rem);
}

.effect_list li{
    background:#fff;
    border:.1rem solid transparent;
    transition:.35s ease;
}

.effect_list li:hover{
    background:#f5f9ff;
    border-color:#b9d7ff;
    transform:translateY(-.8rem);
    box-shadow:0 2rem 4rem rgba(36,76,255,.12);
}


@media (max-width:1100px) {
    .effect_sec {
        padding: 10rem 0 10rem;
    }

    .effect_sec .inner {
        max-width: 86rem;
    }

    .effect_sec .sec_tit h2 {
        font-size: 4rem;
    }

    .effect_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.6rem;
    }
}

@media (max-width:768px) {
    .effect_sec {
        padding: 7rem 0;
        background-position: center top;
    }

    .effect_sec .inner {
        width: calc(100% - 4.5rem);
    }

    .effect_sec .sec_tit h2 {
        font-size: 3rem;
        word-break: keep-all;
    }

    .effect_sec .sec_tit p {
        font-size: 1.4rem;
        word-break: keep-all;
    }

    .effect_list {
        grid-template-columns: 1fr;
		 margin-top: 3.8rem;
    }

    .effect_list li {
        min-height: auto;
        padding: 2.4rem 1.8rem;
    }

    .effect_list strong {
        font-size: 3.4rem;
    }

    .effect_list p br {
        display: none;
    }

    .effect_btn {
        margin-top: 4rem;
    }
}

/*3단*/
.allinone_sec {
    padding: 16rem 0 16rem;
    background: url('../images/bg_mc3.jpg') no-repeat center center / cover;
    font-family: 'Pretendard', sans-serif;
}

.allinone_sec .inner {
    max-width: 1500px;
    width: calc(100% - 4rem);
    margin: 0 auto;
}

.allinone_sec .sec_tit {
    text-align: center;
}

.allinone_sec .sec_tit h2 {
    font-family: "GmarketSansBold", "Gmarket Sans", sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.04em;
    color: #171717;
}

.allinone_sec .sec_tit h2 span {
    color: #244cff;
}

.allinone_sec .sec_tit p {
    margin-top: 1.8rem;
    font-size: 2rem;
    line-height: 1.6;
    color: #111;
    letter-spacing: -0.03em;
}

.allinone_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin: 6rem auto 0;
}

.allinone_list li {
    min-height: 25rem;
    padding: 4rem 3rem 4rem;
    border: .1rem solid #d8d8d8;
    border-radius: .8rem;
    background: rgba(255,255,255,.88);
    text-align: center;
    box-shadow: 0 .8rem 2rem rgba(0,0,0,.04);
    transition: .35s ease;
}

.allinone_list li:hover {
    transform: translateY(-.8rem);
    border-color: #b9d7ff;
    box-shadow: 0 2rem 4rem rgba(36,76,255,.12);
}

.allinone_list h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #171717;
    letter-spacing: -0.04em;
}

.allinone_list img {
    display: block;
    width: 7.2rem;
    height: 7.2rem;
    object-fit: contain;
    margin: 1.4rem auto 1.8rem;
    transition: .35s ease;
}

.allinone_list li:hover img {
    transform: translateY(-.5rem) scale(1.06);
}

.allinone_list p {
    min-height: 4.6rem;
    font-size: 1.6rem;
    line-height: 1.55;
    color: #111;
    word-break: keep-all;
}

.allinone_list em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 15rem;
    height: 2.8rem;
    margin-top: 1.6rem;
    padding: 0 1.4rem;
    border-radius: .4rem;
    background: #eef5ff;
    color: #1d64ff;
    font-size: 1.4rem;
    font-weight: 700;
    font-style: normal;
}

@media (max-width:1100px) {
    .allinone_sec {
        padding: 10rem 0 10rem;
    }

    .allinone_sec .sec_tit h2 {
        font-size: 4rem;
    }

    .allinone_list {
        grid-template-columns: repeat(2, 1fr);
        max-width: 78rem;
        gap: 1.8rem;
    }
}

@media (max-width:768px) {
    .allinone_sec {
        padding: 7rem 0;
        background-position: center top;
    }

    .allinone_sec .inner {
        width: calc(100% - 4.5rem);
    }

    .allinone_sec .sec_tit h2 {
        font-size: 3rem;
        word-break: keep-all;
    }

    .allinone_sec .sec_tit p {
        font-size: 1.4rem;
        word-break: keep-all;
    }

    .allinone_list {
        grid-template-columns: 1fr;
        max-width: 42rem;
        margin-top: 3.8rem;
    }

    .allinone_list li {
        min-height: auto;
        padding: 2.6rem 1.8rem 2.2rem;
    }

    .allinone_list p {
        min-height: auto;
    }

    .allinone_list p br {
        display: none;
    }
}





/*4단*/
.translate_sec {
    padding: 14rem 0;
    background: url('../images/bg_mc4.jpg') no-repeat center center / cover;
    font-family: 'Pretendard', sans-serif;
}

.translate_sec .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7rem;
    max-width: 1400px;
    width: calc(100% - 4rem);
    margin: 0 auto;
}

.translate_sec .txt_box {
    flex: 1 1 48%;
}

.translate_sec .txt_box h2 {
    font-family: "GmarketSansBold", "Gmarket Sans", sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.04em;
    color: #171717;
}

.translate_sec .txt_box h2 span {
    color: #244cff;
}

.translate_sec .txt_box p {
    margin-top: 2.6rem;
    font-size: 2rem;
    line-height: 1.75;
    letter-spacing: -0.03em;
    color: #111;
    word-break: keep-all;
}

.translate_sec .txt_box ul {
    margin-top: 3.8rem;
}

.translate_sec .txt_box li {
    position: relative;
    padding-left: 3.2rem;
    font-size: 1.8rem;
    line-height: 1.8;
    color: #111;
    word-break: keep-all;
}

.translate_sec .txt_box li + li {
    margin-top: .8rem;
}

.translate_sec .txt_box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: .45rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: #1f86ff;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 900;
}

.translate_sec .img_box {
    flex: 1 1 52%;
    text-align: right;
}

.translate_sec .img_box img {
    display: inline-block;
    max-width: 100%;
    width: 62rem;
    border-radius: 2rem;
}

@media (max-width:1100px) {
    .translate_sec {
        padding: 10rem 5rem;
    }

    .translate_sec .inner {
        gap: 4rem;
    }

    .translate_sec .txt_box h2 {
        font-size: 3.8rem;
    }

    .translate_sec .txt_box p {
        font-size: 1.6rem;
    }

    .translate_sec .txt_box li {
        font-size: 1.6rem;
    }

    .translate_sec .img_box img {
        width: 52rem;
    }
}

@media (max-width:768px) {
    .translate_sec {
        padding: 7rem 0;
        background-position: center top;
    }

    .translate_sec .inner {
        display: block;
        width: calc(100% - 4.5rem);
    }

    .translate_sec .txt_box h2 {
        font-size: 3rem;
        word-break: keep-all;
    }

    .translate_sec .txt_box p {
        margin-top: 2rem;
        font-size: 1.5rem;
    }

    .translate_sec .txt_box p br {
        display: none;
    }

    .translate_sec .txt_box ul {
        margin-top: 2.8rem;
    }

    .translate_sec .txt_box li {
        font-size: 1.5rem;
        line-height: 1.7;
    }

    .translate_sec .img_box {
        margin-top: 4rem;
        text-align: center;
    }

    .translate_sec .img_box img {
        width: 100%;
        max-width: 48rem;
    }
}




/*5단*/

.review_sec {
    padding: 16rem 0 16rem;
    background: url('../images/bg_mc5.jpg') no-repeat center center / cover;
    font-family: 'Pretendard', sans-serif;
}

.review_sec .inner {
    max-width: 1500px;
    width: calc(100% - 4rem);
    margin: 0 auto;
}

.review_sec .sec_tit {
    text-align: center;
}

.review_sec .sec_tit h2 {
    font-family: "GmarketSansBold", "Gmarket Sans", sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.04em;
    color: #171717;
}

.review_sec .sec_tit h2 span {
    color: #244cff;
}

.review_sec .sec_tit p {
    margin-top: 1.6rem;
    font-size: 2rem;
    color: #111;
}

.review_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
    max-width: 1500px;
    margin: 4.6rem auto 0;
}

.review_list li {
    padding: 3rem 2.6rem 2.6rem;
    border: .1rem solid #d8d8d8;
    border-radius: 1.2rem;
    background: rgba(255,255,255,.92);
    box-shadow: 0 .8rem 2rem rgba(0,0,0,.04);
    transition: .35s ease;
}

.review_list li:hover {
    transform: translateY(-.8rem);
    background: #f5f9ff;
    border-color: #b9d7ff;
    box-shadow: 0 2rem 4rem rgba(36,76,255,.12);
}

.review_list .stars {
    color: #f8b51d;
    font-size: 2.4rem;
    letter-spacing: .3rem;
    line-height: 1;
}

.review_list .review_txt {
    min-height: 7.2rem;
    margin-top: 2.2rem;
    font-size: 1.7rem;
    line-height: 1.7;
    color: #111;
    word-break: keep-all;
}

.review_list .user {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: .1rem solid #ddd;
}

.review_list .user img {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    object-fit: cover;
}

.review_list .user strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #111;
}

.review_list .user p {
    margin-top: .4rem;
    font-size: 1.5rem;
    color: #111;
}

@media (max-width:1100px) {
    .review_sec {
        padding: 10rem 0 10rem;
    }

    .review_sec .sec_tit h2 {
        font-size: 4rem;
    }

    .review_list {
        grid-template-columns: repeat(2, 1fr);
        max-width: 110rem;
    }
}

@media (max-width:768px) {
    .review_sec {
        padding: 7rem 0;
        background-position: center top;
    }

    .review_sec .inner {
        width: calc(100% - 3.2rem);
    }

    .review_sec .sec_tit h2 {
        font-size: 3rem;
        word-break: keep-all;
    }

    .review_sec .sec_tit p {
        font-size: 1.5rem;
    }

    .review_list {
        grid-template-columns: 1fr;
        max-width: 42rem;
        margin-top: 3.8rem;
    }

    .review_list li {
        padding: 2.6rem 2.2rem;
    }

    .review_list .review_txt {
        min-height: auto;
    }

    .review_list .review_txt br {
        display: none;
    }
	
	.review_list .review_txt {
    min-height: 5rem;
    margin-top: 2.2rem;
    font-size: 1.4rem;}
	
	.review_list .user {margin-top:2rem;}


}


/*6단*/
.process_sec {
    padding: 15rem 0 15rem;
    background: url('../images/bg_mc6.jpg') no-repeat center center / cover;
    font-family: 'Pretendard', sans-serif;
}

.process_sec .inner {
    max-width: 1500px;
    width: calc(100% - 4rem);
    margin: 0 auto;
}

.process_sec .sec_tit {
    text-align: center;
}

.process_sec .sec_tit h2 {
    font-family: "GmarketSansBold", "Gmarket Sans", sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.04em;
    color: #171717;
}

.process_sec .sec_tit h2 span {
    color: #244cff;
}

.process_sec .sec_tit p {
    margin-top: 1.4rem;
    font-size: 2rem;
    color: #111;
}

.process_list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
    max-width: 1500px;
    margin: 4.5rem auto 0;
}

.process_list li {
    min-height: 22rem;
    padding: 4rem 2rem 4rem;
    border: .1rem solid #d8d8d8;
    border-radius: .8rem;
    background: rgba(255,255,255,.92);
    text-align: center;
    box-shadow: 0 .8rem 2rem rgba(0,0,0,.04);
    transition: .35s ease;
}

.process_list li:hover {
    transform: translateY(-.8rem);
    background: #f5f9ff;
    border-color: #b9d7ff;
    box-shadow: 0 2rem 4rem rgba(36,76,255,.12);
}

.process_list img {
    display: block;
    width: 8rem;
    height: 8rem;
    object-fit: contain;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    transition: .35s ease;
}

.process_list li:hover img {
    transform: translateY(-.4rem) scale(1.06);
}

.process_list em {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    font-style: normal;
    color: #4b83ff;
}

.process_list h3 {
    margin-top: 2rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: #153d9b;
    letter-spacing: -0.04em;
}

.process_list p {
    margin-top: .8rem;
    font-size: 1.6rem;
    color: #555;
}

.process_list strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 6.5rem;
    height: 3rem;
    margin-top: 1.2rem;
    padding: 0 1rem;
    border-radius: .3rem;
    background: #edf4ff;
    color: #2e6dff;
    font-size: 1.4rem;
    font-weight: 800;
}

@media (max-width:1100px) {
    .process_sec {
        padding: 10rem 0 10rem;
    }

    .process_sec .sec_tit h2 {
        font-size: 4rem;
    }

    .process_list {
        grid-template-columns: repeat(3, 1fr);
        max-width: 110rem;
        gap: 1.6rem;
    }
}

@media (max-width:768px) {
    .process_sec {
        padding: 7rem 0;
        background-position: center top;
    }

    .process_sec .inner {
        width: calc(100% - 3.2rem);
    }

    .process_sec .sec_tit h2 {
        font-size: 3rem;
        word-break: keep-all;
    }

    .process_sec .sec_tit p {
        font-size: 1.5rem;
        word-break: keep-all;
    }

    .process_list {
        grid-template-columns: repeat(2, 1fr);
        max-width: 42rem;
        margin-top: 3.8rem;
        gap: 1.2rem;
    }

    .process_list li {
        min-height: auto;
        padding: 2rem 1.2rem;
    }

    .process_list h3 {
        font-size: 2rem;
    }
	.process_list em {font-size:2rem;}
}









/*7단*/
.start_sec {
    padding: 14rem 0 14rem;
    background: url('../images/bg_mc7.jpg') no-repeat center center / cover;
}

.start_sec .inner {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    width: calc(100% - 4rem);
    margin: 0 auto;
}

.start_content {
    text-align: center;
}

.start_content > em {
    display: block;
    margin-bottom: 1.6rem;
    color: #b5c7e7;
    font-family: "GmarketSansBold", "Gmarket Sans", sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    font-style: normal;
    letter-spacing: -.02em;
}

.start_content h2 {
    color: #fff;
    font-family: "GmarketSansBold", "Gmarket Sans", sans-serif;
    font-size: 4.4rem;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -.04em;
    text-shadow: 0 .4rem 1.5rem rgba(0,0,0,.2);
}

.start_content h2 span {
    color: #adc8ff;
}

.start_btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 4rem;
}

.start_btns .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 16rem;
    height: 5.2rem;
    padding: 0 2.4rem;
    border-radius: .7rem;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: .35s ease;
}

.start_btns .btn.primary {
    border: .1rem solid transparent;
    background: linear-gradient(135deg, #6226ff, #165dff);
    box-shadow: 0 1rem 2.5rem rgba(61, 57, 255, .25);
}

.start_btns .btn.line {
    border: .1rem solid rgba(255,255,255,.55);
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(.5rem);
}

.start_btns .btn:hover {
    transform: translateY(-.4rem);
}

.start_btns .btn.primary:hover {
    box-shadow: 0 1.5rem 3rem rgba(61,57,255,.35);
}

.start_btns .btn.line:hover {
    border-color: #fff;
    background: rgba(255,255,255,.1);
}

.start_info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    margin-top: 2.5rem;
    color: rgba(255,255,255,.72);
    font-size: 1.7rem;
}

.start_info .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    background: #198cff;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 900;
}

@media (max-width:1100px) {
    .start_sec {
        padding: 10rem 0 10rem;
    }

    .start_content > em {
        font-size: 2rem;
    }

    .start_content h2 {
        font-size: 3.8rem;
    }
}

@media (max-width:768px) {
    .start_sec {
        padding: 7rem 0;
    }

    .start_sec .inner {
        width: calc(100% - 3.2rem);
    }

    .start_content > em {
        margin-bottom: 1.2rem;
        font-size: 1.6rem;
    }

    .start_content h2 {
        font-size: 2.8rem;
        line-height: 1.3;
        word-break: keep-all;
    }

    .start_btns {
        flex-direction: column;
        gap: 1rem;
        margin-top: 3rem;
    }

    .start_btns .btn {
        width: 100%;
        max-width: 32rem;
        height: 5rem;
    }

    .start_info {
        margin-top: 2rem;
        font-size: 1.4rem;
    }
}




/*하단*/
.footer{
    background:#010e2a;
    color:#fff;
}

.footer .inner{
    max-width:150rem;
    width:calc(100% - 4rem);
    margin:0 auto;

    display:grid;
    grid-template-columns:1.5fr 1fr 1.5fr;
    gap:7rem;

    padding:7rem 0;
}

.footer .ft_logo img{
    height:17rem;
}

.footer .ft_info{
    margin-top:3rem;
}

.footer .ft_info li{
    display:flex;
    align-items:center;
    gap:1rem;

    color:rgba(255,255,255,.75);
    font-size:1.8rem;

    line-height:1.8;
}

.footer .ft_info li+li{
    margin-top:1.2rem;
}

.footer .ft_info i{
    color:#8fb8ff;
    font-size:2rem;
    width:2rem;
}

.footer .ft_center{
    padding-left:4rem;
    border-left:.1rem solid rgba(255,255,255,.08);
}

.footer .ft_center h3{
    color:#2286ff;
    font-size:2rem;
    font-weight:700;
	margin-top:3rem;
    margin-bottom:2.6rem;
}

.footer .ft_center li+li{
    margin-top:2.5rem;
}

.footer .ft_center a{
    display:flex;
    justify-content:space-between;
    align-items:center;

    color:rgba(255,255,255,.8);

    font-size:1.8rem;

    transition:.3s;
}

.footer .ft_center a::after{
    content:"›";
    font-size:2rem;
    color:#2f8dff;

    transition:.3s;
}

.footer .ft_center a:hover{
    color:#fff;
    padding-left:.5rem;
}

.footer .ft_right{
    padding-left:4rem;
    border-left:.1rem solid rgba(255,255,255,.08);
}

.footer .ft_right span{
	margin-top:3rem;
    display:block;

    color:#2d90ff;

    font-size:1.7rem;

    font-weight:700;
}

.footer .ft_right strong{

    display:block;

    margin-top:1.4rem;

    font-size:5.4rem;

    font-weight:800;

    letter-spacing:-.03em;

    background:linear-gradient(90deg,#42b4ff,#5d4cff);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.footer .ft_right p{

    margin-top:1.6rem;

    color:rgba(255,255,255,.72);

    font-size:1.6rem;

    line-height:1.8;
}

.footer .copy{

    border-top:.1rem solid rgba(255,255,255,.08);

    padding:2.5rem 0;

    text-align:center;

    color:rgba(255,255,255,.55);

    font-size:1.4rem;
}

.footer a{
    transition:.3s;
}

.footer a:hover{
    color:#58a8ff;
}

.footer .ft_right span{
    display:flex;
    align-items:center;
    gap:.8rem;

    color:#2d90ff;
    font-size:1.7rem;
    font-weight:700;
}

.footer .ft_right span i{
    font-size:2rem;
}


@media (max-width:1100px){

.footer .inner{

    grid-template-columns:1fr 1fr;

    gap:5rem;

}

.footer .ft_right{

    grid-column:1 / 3;

    border-left:0;

    border-top:.1rem solid rgba(255,255,255,.08);

    padding:4rem 0 0;

}

}


@media (max-width:768px){

    .footer .inner{
        display:grid;
        grid-template-columns:1fr;
        gap:4rem;
        width:calc(100% - 3.2rem);
        padding:5rem 0;
    }

    .footer .ft_left,
    .footer .ft_center,
    .footer .ft_right{
        grid-column:auto;
        width:100%;
        padding:0;
        border-left:0;
        text-align:center;
    }

    .footer .ft_left{
        order:1;
    }

    .footer .ft_center{
        order:2;
    }

    .footer .ft_right{
        order:3;
        padding-top:4rem;
        border-top:.1rem solid rgba(255,255,255,.08);
    }

    .footer .ft_logo{
        display:block;
        text-align:center;
    }

    .footer .ft_logo img{
        width:18rem;
        height:auto;
    }

    .footer .ft_info{
        margin-top:2.5rem;
    }

    .footer .ft_info li{
        justify-content:center;
        text-align:center;
    }

    .footer .ft_center h3{
        margin-bottom:2rem;
    }

    .footer .ft_center ul{
        max-width:24rem;
        margin:0 auto;
    }

    .footer .ft_center a{
        justify-content:space-between;
        text-align:left;
    }

    .footer .ft_right span{
        justify-content:center;
    }

    .footer .ft_right strong{
        font-size:4.4rem;
    }

    .footer .ft_right p{
        text-align:center;
    }
	
	.sub_content {margin-bottom:10rem;}
	
	
	.sub_content .page_title h3 strong { font-size: 3rem;}
	.sub_content {margin-top:0rem;}
	.sub_content .page_title {margin-bottom:0;}
	
}



.effect_list strong.stars {
    color: #f5b800;
}

