@charset "UTF-8";
/* -------------------------------------------------------------------
  파일정의 : PC 스타일
  속성순서 : 레이아웃 > 사이징 > 박스 > 글자 > 기타
  분류순서 : @Common, 
------------------------------------------------------------------- */
/* -------------------------------------------------------------------
  @Common
------------------------------------------------------------------- */
/* -------- Import -------- */
@import url(jquery.fullpage.min.css);
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap&subset=korean);
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap);
/* -------- Setting -------- */
/* -------- Reset -------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, a, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

html {
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -webkit-tap-highlight-color: transparent;
  cursor: default;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
}

b, strong {
  font-weight: 700;
}

address, em {
  font-style: inherit;
  font-weight: inherit;
}

a {
  display: inline-block;
  background-color: transparent;
  color: inherit;
  vertical-align: top;
  text-decoration: none;
}

img {
  max-width: 100%;
  border-style: none;
  vertical-align: top;
}
@media screen and (max-width: 1023px) {
  img {
    width: 100%;
  }
}

ol, ul {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  text-indent: 0;
  table-layout: fixed;
}

/* -------- Hide -------- */
.blind {
  overflow: hidden;
  position: absolute;
  width: 0;
  height: 0;
  line-height: 0;
  text-indent: -9999px;
}

/* -------- Font -------- */
body {
  font: 400 3.73vw/1.5 "Noto Sans KR", "Malgun Gothic", sans-serif;
  color: #222;
  letter-spacing: -1px;
}
@media screen and (min-width: 1024px) {
  body {
    font-size: 20px;
    line-height: 1.6;
  }
}

/* -------- Layout -------- */
.inner {
  position: relative;
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .inner {
    max-width: 1240px;
    margin: auto;
  }
}

@media screen and (min-width: 1024px) {
  .only_mobile {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .only_desktop {
    display: none !important;
  }
}

/* -------- Typography -------- */
.tit-main {
  font-weight: 300;
  font-size: 9.44vw;
  line-height: 1.2;
  letter-spacing: -2px;
}
.tit-main strong {
  font-weight: 500;
}
.tit-sub {
  font-weight: 300;
  font-size: 7.77vw;
  line-height: 1.4;
  letter-spacing: -2px;
}
.tit-page {
  margin-top: 106px;
  font-size: 7.77vw;
  line-height: 1.4;
  color: #333;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .tit-main {
    font-size: 50px;
  }
  .tit-sub {
    font-size: 42px;
  }
}
@media screen and (min-width: 1024px) {
  .tit-main {
    font-size: 68px;
    line-height: 86px;
    letter-spacing: -3px;
  }
  .tit-sub {
    font-size: 54px;
    line-height: 72px;
    letter-spacing: -2.6px;
  }
  .tit-page {
    margin-top: 64px;
    font-size: 42px;
  }
}

.desc {
  margin-top: 3.1%;
  color: #989898;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .desc {
    font-size: 22px;
  }
}
@media screen and (min-width: 1024px) {
  .desc {
    margin-top: 16px;
  }
}

.color-gray {
  color: #989898;
}
.color-white {
  color: #fff;
}

.text-left {
  text-align: left;
}

/* -------- Motion -------- */
.fade-up {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.fade-up.is_active {
  transform: translateY(0);
  opacity: 1;
}

@keyframes show {
  100% {
    opacity: 1;
  }
}
@keyframes fadeUp {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* -------------------------------------------------------------------
  @Header
------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 3.6% 0;
  background: rgba(255, 255, 255, 0.5);
  /* 화이트버전 */
}
.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__link {
  font-weight: 700;
  font-size: 3.33vw;
  color: #333;
}
.header__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22.2%;
  padding-top: 5%;
  background: url(/assets/images/logo.svg) no-repeat 50%/100% auto;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.header__logo a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.header__download {
  padding: 0 3.1%;
  border-radius: 20px;
  background: #0ec4cf;
  font-weight: 700;
  font-size: 3.33vw;
  line-height: 2.5;
  color: #fff;
  text-align: center;
}
.header.is_white {
  background: transparent;
}
.header.is_white .header__link {
  color: #fff;
}
.header.is_white .header__logo {
  background-image: url(/assets/images/logo-w.svg);
}
.header.is_white .header__download {
  background: #fff;
  color: #3ec6c2;
}
@media screen and (min-width: 768px) {
  .header {
    padding: 26px 0;
  }
  .header__link {
    font-size: 16px;
  }
  .header__logo {
    width: 148px;
    height: 30px;
  }
  .header__download {
    width: 120px;
    padding: 0;
    font-size: 15px;
    line-height: 40px;
  }
}

/* -------------------------------------------------------------------
  @Nav
------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 50%;
  right: 45px;
  z-index: 100;
  transform: translateY(-50%);
}
.nav li {
  width: 8px;
  height: 8px;
  margin: 14px 0;
}
.nav a {
  width: 8px;
  height: 8px;
  position: relative;
  border-radius: 50%;
  background: #dadada;
}
.nav .active a {
  background: #0ec4cf;
}
.nav .active a::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(14, 196, 207, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  content: "";
}
.nav.is_white a {
  background: #fff;
  opacity: 0.6;
}
.nav.is_white .active a {
  opacity: 1;
}
.nav.is_white .active a::after {
  border-color: rgba(255, 255, 255, 0.4);
}

/* -------------------------------------------------------------------
  @Content
------------------------------------------------------------------- */
@media screen and (max-width: 1023px) {
  .container {
    text-align: center;
  }
}

.section {
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .section .fp-tableCell {
    vertical-align: bottom;
  }
}
@media screen and (min-width: 1024px) {
  .section .inner {
    display: flex;
    height: 100%;
    align-items: center;
  }
}

/* -------- Sec-visual -------- */
.sec-visual__txt-cont {
  position: relative;
  z-index: 1;
}
.sec-visual__txt {
  display: block;
  overflow: hidden;
}
.sec-visual__txt span {
  display: inline-block;
  transform: translateY(100%);
}
.sec-visual__btn-wrap {
  display: inline-flex;
  margin-top: 6.25%;
  opacity: 0;
}
.sec-visual__btn {
  transition: all 0.3s ease-in-out;
  display: flex;
  width: 31.1vw;
  padding: 3.1% 0;
  border: 1px solid #ccc;
  border-radius: 100px;
  background: #fff;
  justify-content: center;
  align-items: center;
}
.sec-visual__btn:not(:last-child) {
  margin-right: 10px;
}
.sec-visual__btn:hover {
  transform: scale(1.05);
}
.sec-visual__img {
  margin: 3.1% -20px 0;
  opacity: 0;
}
.fp-viewing-0 .sec-visual__txt span, .fp-viewing-6 .sec-visual__txt span, .fp-viewing-7 .sec-visual__txt span {
  animation: txtUp 0.3s ease-in-out forwards;
}
@keyframes txtUp {
  100% {
    transform: translateY(0);
  }
}
.fp-viewing-0 .sec-visual__txt:first-child span, .fp-viewing-6 .sec-visual__txt:first-child span, .fp-viewing-7 .sec-visual__txt:first-child span {
  animation-delay: 0.2s;
}
.fp-viewing-0 .sec-visual__txt:nth-child(2) span, .fp-viewing-6 .sec-visual__txt:nth-child(2) span, .fp-viewing-7 .sec-visual__txt:nth-child(2) span {
  animation-delay: 0.6s;
}
.fp-viewing-0 .sec-visual__txt:last-child span, .fp-viewing-6 .sec-visual__txt:last-child span, .fp-viewing-7 .sec-visual__txt:last-child span {
  animation-delay: 1s;
}
.fp-viewing-0 .sec-visual__btn-wrap, .fp-viewing-6 .sec-visual__btn-wrap, .fp-viewing-7 .sec-visual__btn-wrap {
  animation: show 0.5s ease-in-out 1.2s forwards;
}
.fp-viewing-0 .sec-visual__img, .fp-viewing-6 .sec-visual__img, .fp-viewing-7 .sec-visual__img {
  animation: show 0.5s ease-in-out 1.6s forwards;
}

@media screen and (max-width: 1023px) {
  .sec-visual__btn img {
    width: 60.7%;
  }
  .sec-visual__img img {
    max-width: 500px;
  }
}
@media screen and (min-width: 1024px) {
  .sec-visual__img {
    position: absolute;
    top: 50%;
    right: 0;
    width: 64.52%;
    max-width: 800px;
    margin: 0;
    transform: translateY(-50%);
  }
  .sec-visual__btn-wrap {
    margin-top: 50px;
  }
  .sec-visual__btn {
    width: 184px;
    height: 50px;
  }
  .sec-visual__btn:first-child img {
    width: 98px;
  }
  .sec-visual__btn:last-child img {
    width: 92px;
  }
}

/* -------- Sec-01 -------- */
.sec-01__mouse {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 26px;
  height: 38px;
  border: 2px solid #444;
  border-radius: 60px;
  transform: translateX(-50%);
  opacity: 0;
}
.sec-01__mouse::before {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 2px;
  height: 6px;
  margin-left: -1px;
  border-radius: 60px;
  background: #444;
  animation: mouseMove 0.6s ease-in-out infinite;
  content: "";
}
@keyframes mouseMove {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(0);
  }
}
.sec-01__bg {
  position: absolute;
  bottom: -28%;
  left: 50%;
  z-index: -1;
  width: 180vw;
  margin-left: -90vw;
  opacity: 0;
}
.fp-viewing-0 .sec-01__mouse {
  animation: show 0.3s ease-in-out 1.5s forwards;
}
.fp-viewing-0 .sec-01__bg {
  animation: bgChange 7s linear 1.8s infinite;
}
@keyframes bgChange {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  10% {
    opacity: 0;
    transform: scale(0.5);
  }
  20% {
    opacity: 1;
    transform: scale(0.6);
  }
  50% {
    opacity: 0.7;
    transform: scale(1);
  }
  65% {
    opacity: 0.4;
    transform: scale(1);
  }
  80% {
    opacity: 0.1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

@media screen and (min-width: 1024px) {
  .sec-01__mouse {
    bottom: 60px;
  }
  .sec-01__bg {
    width: 76.82%;
    right: -2%;
    bottom: -23%;
    left: auto;
    margin: 0;
  }
}

/* -------- Sec-02 -------- */
.sec-02__item {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  transition: opacity 0.5s ease-in-out;
}
.sec-02__bubble, .sec-02__sub-tit, .sec-02__phone-cont, .sec-02__txt {
  opacity: 0;
  transform: translateY(20px);
}
.sec-02__item_01 {
  background: #fff;
}
.sec-02__img-cont {
  position: relative;
}
.sec-02__object {
  position: absolute;
}
.sec-02__object path {
  stroke-dashoffset: 1000;
  stroke-dasharray: 1000;
}
@keyframes lineDraw {
  100% {
    stroke-dashoffset: 0;
  }
}
.sec-02__item_02 {
  position: absolute;
  bottom: -100%;
  left: 0;
  opacity: 0;
}
.sec-02__txt {
  position: absolute;
  left: 50%;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
}
.sec-02__txt_01.is_active {
  transition-delay: 3.5s;
}
.sec-02__txt_02.is_active {
  transition-delay: 3.7s;
}
.sec-02__txt_03.is_active {
  transition-delay: 3.9s;
}
.sec-02.sec-02_01 .sec-02__item_01 {
  opacity: 1;
}
.sec-02.sec-02_01 .sec-02__object {
  opacity: 1;
}
.sec-02.sec-02_01 .sec-02__object path {
  animation: lineDraw 3s linear 0.4s forwards;
}
.sec-02.sec-02_01 .sec-02__bubble {
  animation: fadeUp 0.3s ease-in-out 0.8s forwards;
}
.sec-02.sec-02_01 .sec-02__item_02 {
  opacity: 0;
}
.sec-02.sec-02_02 .sec-02__item_01 {
  opacity: 0;
}
.sec-02.sec-02_02 .sec-02__item_02 {
  bottom: 0;
  opacity: 1;
}
.sec-02.sec-02_02 .sec-02__sub-tit {
  animation: fadeUp 0.3s ease-in-out 0.8s forwards;
}
.sec-02.sec-02_02 .sec-02__phone-cont {
  animation: fadeUp 0.3s ease-in-out 1.2s forwards;
}
.sec-02.sec-02_02 .sec-02__txt_01 {
  animation: fadeUp 0.3s ease-in-out 1.4s forwards;
}
.sec-02.sec-02_02 .sec-02__txt_02 {
  animation: fadeUp 0.3s ease-in-out 1.8s forwards;
}
.sec-02.sec-02_02 .sec-02__txt_03 {
  animation: fadeUp 0.3s ease-in-out 2.2s forwards;
}
@media screen and (max-width: 1023px) {
  .sec-02__img-cont {
    margin: 6.25% auto 8.75%;
    max-width: 500px;
    text-align: left;
  }
  .sec-02__bubble img {
    width: 87.81%;
    margin: 0 0 -15.3% -20px;
  }
  .sec-02__person {
    margin-top: 7%;
    text-align: right;
  }
  .sec-02__person img {
    width: 58.12%;
    margin-right: 5.3%;
  }
  .sec-02__quot_l {
    position: absolute;
    bottom: 20.6%;
    left: 15.6%;
    width: 14%;
  }
  .sec-02__object {
    right: 1.6%;
    bottom: 56%;
    width: 12.1%;
  }
  .sec-02__phone-cont {
    position: relative;
    margin: 7.5% auto 0;
    max-width: 500px;
  }
  .sec-02__phone {
    width: 84.3%;
  }
  .sec-02__item_02 {
    background: linear-gradient(180deg, #31C3C3 0%, #72D1B6 107.03%);
  }
  .sec-02__txt {
    width: 78.12%;
    margin-left: -39.06%;
  }
  .sec-02__txt_01 {
    bottom: 40.8%;
  }
  .sec-02__txt_02 {
    bottom: 23%;
  }
  .sec-02__txt_03 {
    bottom: 5%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .sec-02__img-cont {
    margin-bottom: 2%;
  }
}
@media screen and (min-width: 1024px) {
  .sec-02 .inner {
    justify-content: space-between;
  }
  .sec-02__img-cont {
    height: 100%;
    flex: 1;
  }
  .sec-02__img-cont img {
    position: absolute;
  }
  .sec-02__person {
    right: 51px;
    bottom: 23.14%;
    width: 209px;
  }
  .sec-02__quot_l {
    right: 498px;
    bottom: 35.27%;
  }
  .sec-02__quot_r {
    right: -2px;
    bottom: 75.5%;
  }
  .sec-02__object {
    right: 46px;
    bottom: 43.2%;
  }
  .sec-02__bubble_01 {
    right: 175px;
    bottom: 36.66%;
    width: 271px;
  }
  .sec-02__bubble_02 {
    right: -90px;
    bottom: 42.5%;
    width: 339px;
  }
  .sec-02__bubble_03 {
    right: 306px;
    bottom: 47.96%;
    width: 283px;
  }
  .sec-02__bubble_04 {
    right: 0;
    bottom: 61.85%;
    width: 328px;
  }
  .sec-02__phone-cont {
    position: relative;
    margin-right: 83px;
    text-align: center;
  }
  .sec-02__phone {
    width: 393px;
  }
  .sec-02__item_02 {
    background: linear-gradient(to right, #31C4C4 0%, #72D1BA 100%);
  }
  .sec-02__txt {
    margin-left: -190px;
    width: 380px;
  }
  .sec-02__txt_01 {
    bottom: 322px;
  }
  .sec-02__txt_02 {
    bottom: 217px;
  }
  .sec-02__txt_03 {
    bottom: 112px;
  }
  .sec-02.sec-02_01 .sec-02__bubble_02 {
    animation-delay: 1.2s;
  }
  .sec-02.sec-02_01 .sec-02__bubble_03 {
    animation-delay: 1.6s;
  }
  .sec-02.sec-02_01 .sec-02__bubble_04 {
    animation-delay: 2s;
  }
}

/* -------- Sec-03 -------- */
@media screen and (max-width: 1023px) {
  .sec-03__txt-cont {
    margin-bottom: 128.75%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .sec-03 .fp-tableCell {
    vertical-align: top;
  }
  .sec-03__txt-cont {
    margin: 15% 0 0;
  }
}

/* -------- Sec-04 -------- */
@media screen and (max-width: 1023px) {
  .sec-04__txt-cont {
    margin-bottom: 115.62%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .sec-04 .fp-tableCell {
    vertical-align: top;
  }
  .sec-04__txt-cont {
    margin: 15% 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .sec-04 .inner {
    justify-content: center;
    align-items: flex-start;
    text-align: center;
  }
  .sec-04__txt-cont {
    margin-top: 10%;
  }
}
@media screen and (min-width: 1200px) {
  .sec-04__txt-cont {
    margin-top: 20.5%;
  }
}

/* -------- Sec-05 -------- */
@media screen and (max-width: 1023px) {
  .sec-05__txt-cont {
    margin-bottom: 128.12%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .sec-05 .fp-tableCell {
    vertical-align: top;
  }
  .sec-05__txt-cont {
    margin: 15% 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .sec-05 .inner {
    justify-content: space-between;
  }
  .sec-05__img-cont {
    position: relative;
    margin-left: -16px;
  }
  .sec-05__bg {
    position: absolute;
    top: -137px;
    left: -114px;
    z-index: -1;
    width: 498px;
    height: 498px;
    opacity: 0;
  }
  .sec-05__phone {
    width: 479px;
    margin-bottom: -140px;
  }
  .sec-05__telephone {
    position: absolute;
    top: 189px;
    left: 0;
    width: 100%;
    color: #333;
    text-align: center;
    transition-delay: 0.2s;
  }
  .sec-05__telephone p {
    margin-top: 16px;
    font-weight: 700;
    font-size: 24px;
  }
  .sec-05__telephone div {
    margin-top: 6px;
    font-size: 16px;
    font-family: "Roboto";
    opacity: 0.5;
  }
  .sec-05__call {
    width: 46px;
  }
  .sec-05__warning {
    position: absolute;
    right: -62px;
    bottom: -57px;
    width: 236px;
    opacity: 0;
  }
  .fp-viewing-4 .sec-05__bg {
    animation: show 0.3s ease-in-out 1s forwards;
  }
  .fp-viewing-4 .sec-05__warning {
    animation: warningShow 4s ease 1.2s forwards;
  }
  @keyframes warningShow {
    0% {
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    15% {
      opacity: 1;
    }
    20% {
      opacity: 0.2;
    }
    25% {
      opacity: 1;
    }
    30% {
      opacity: 0.2;
    }
    35% {
      opacity: 1;
    }
    50% {
      opacity: 1;
    }
    55% {
      opacity: 0.2;
    }
    60% {
      opacity: 1;
    }
    65% {
      opacity: 0.2;
    }
    70% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
}

/* -------- Sec-06 -------- */
.sec-06__img-cont {
  position: relative;
  margin-top: 22.5%;
}
.sec-06__list {
  padding-bottom: 43.12%;
}
.sec-06__list li {
  padding: 5% 5% 5% 20%;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  font-size: 3.33vw;
  line-height: 1.5;
  text-align: left;
  box-shadow: -10px 10px 20px 5px rgba(0, 0, 0, 0.05);
}
.sec-06__list li:nth-child(2) {
  transition-delay: 0.4s;
}
.sec-06__list li:nth-child(3) {
  transition-delay: 0.8s;
}
.sec-06__list li ~ li {
  margin-top: 5%;
}
.sec-06__item_red {
  border: 1px solid rgba(238, 238, 238, 0.3) !important;
  background: rgba(255, 255, 255, 0.3) !important;
}
.sec-06__item_red .sec-06__answer {
  color: #ff1e1e;
}
.sec-06__item_red .sec-06__flag {
  background: #fef0f1;
  color: #ff1e1e;
}
.sec-06__head {
  display: flex;
  align-items: center;
}
.sec-06__answer {
  position: absolute;
  top: 17.5%;
  left: 5%;
  font-weight: 500;
  color: #00ace2;
}
.sec-06__tit {
  font-weight: 500;
  color: #444;
}
.sec-06__flag {
  margin-left: auto;
  padding: 0 4px;
  border-radius: 4px;
  background: #edfbff;
  font-size: 2.77vw;
  line-height: 2;
  color: #00ace2;
}
.sec-06__body {
  display: flex;
  margin-top: 6px;
  justify-content: space-between;
  align-items: flex-end;
}
.sec-06__desc {
  color: #686868;
}
.sec-06__date {
  font-size: 2.77vw;
  color: #c8c8c8;
}
.sec-06__cursor {
  position: absolute;
  right: 16%;
  bottom: 37%;
  width: 10%;
  opacity: 0;
}
.sec-06__qna {
  position: absolute;
  right: -5%;
  bottom: 19%;
  z-index: -1;
  width: 77.5%;
}
.fp-viewing-5 .sec-06__list li:nth-child(2) {
  animation: borderColor 0.3s ease 2.5s forwards;
}
@keyframes borderColor {
  100% {
    border-color: #00ace2;
  }
}
.fp-viewing-5 .sec-06__cursor {
  animation: cursorMove 1s ease-in-out 1.8s forwards;
}
@keyframes cursorMove {
  0% {
    transform: translate(50%, 180%);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .sec-06__img-cont {
    max-width: 600px;
    margin: 2% auto 0;
  }
  .sec-06__list li {
    font-size: 18px;
  }
  .sec-06__flag, .sec-06__date {
    font-size: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .sec-06 .inner {
    justify-content: space-between;
  }
  .sec-06__img-cont {
    margin: 0 60px 0 0;
  }
  .sec-06__list {
    padding-bottom: 0;
  }
  .sec-06__list li {
    width: 404px;
    padding: 18px 20px 18px 80px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.46;
  }
  .sec-06__list li ~ li {
    margin-top: 18px;
  }
  .sec-06__item_hide {
    opacity: 0;
    transform: translateY(20px);
  }
  .sec-06__flag {
    padding: 0 6px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 26px;
  }
  .sec-06__body {
    margin-top: 8px;
  }
  .sec-06__date {
    font-size: 12px;
  }
  .sec-06__cursor {
    right: 62px;
    bottom: 122px;
    width: 40px;
  }
  .sec-06__qna {
    right: auto;
    bottom: -84px;
    left: 166px;
    width: 501px;
    max-width: inherit;
  }
  .fp-viewing-5 .sec-06__list li:nth-child(2) {
    animation: none;
  }
  .fp-viewing-5 .sec-06__list li:nth-child(3) {
    animation: borderColor 0.3s ease 2.6s forwards;
  }
  .fp-viewing-5 .sec-06__item_hide {
    animation: itemShow 0.3s ease-in-out 1.8s forwards;
  }
  @keyframes itemShow {
    100% {
      opacity: 0.35;
      transform: translateY(0);
    }
  }
  .fp-viewing-5 .sec-06__cursor {
    animation-delay: 2s;
  }
}

/* -------- Footer -------- */
.footer {
  background: #f9f9f9;
  line-height: 1.42;
}
.footer .inner {
  padding-top: 7.77%;
  padding-bottom: 11.11%;
}
.footer__logo img {
  width: 31.56%;
}
.footer__terms {
  display: inline-flex;
  margin-top: 6.25%;
  font-weight: 500;
  font-size: 3.88vw;
  color: #444;
}
.footer__terms li {
  padding: 0 15px;
}
.footer__detail {
  margin-top: 6.6%;
  font-size: 3.33vw;
  color: #acacac;
}
.footer__detail span {
  display: inline-block;
  padding: 3px 5px;
}
.footer__review {
  margin-top: 2.4%;
  font-size: 3.33vw;
  color: #c8c8c8;
}
.footer__review span {
  display: inline-block;
  padding: 3px 5px;
}
.footer__info {
  margin-top: 9.3%;
  font-size: 3.33vw;
  color: #acacac;
}
.footer__info strong {
  font-weight: 500;
  font-size: 4.44vw;
  font-family: "Roboto";
  letter-spacing: 0;
}
.footer__share {
  display: inline-flex;
  margin-top: 9.1%;
}
.footer__share li {
  margin: 0 2.5vw;
}
.footer__share img {
  width: 6vw;
  height: 6vw;
}
@media screen and (max-width: 1023px) {
  .footer {
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .footer .inner {
    display: block;
    padding-top: 28px;
    padding-bottom: 32px;
    text-align: left;
  }
  .footer__top {
    display: flex;
    align-items: center;
  }
  .footer__bot {
    display: flex;
    flex-direction: column;
  }
  .footer__logo img {
    width: 111px;
  }
  .footer__terms {
    margin: 0 0 0 97px;
    font-size: 14px;
  }
  .footer__terms li {
    margin-right: 30px;
    padding: 0;
  }
  .footer__share {
    margin: 0 0 0 auto;
    height: 22px;
  }
  .footer__share li {
    margin: 0 0 0 20px;
  }
  .footer__share img {
    width: 22px;
    height: 22px;
  }
  .footer__detail {
    margin: 40px 0 0 203px;
    font-size: 12px;
  }
  .footer__review {
    margin: 11px 0 0 203px;
    font-size: 12px;
  }
  .footer__info {
    margin: 0 0 0 auto;
    font-size: 12px;
    text-align: right;
  }
  .footer__info strong {
    font-size: 16px;
  }
}

/* -------------------------------------------------------------------
  @Phone-frame
------------------------------------------------------------------- */
.phone-frame {
  position: fixed;
  bottom: -100%;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  /* sec-03 */
  /* sec-04 */
}
.phone-frame__sec {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.phone-frame__sec.is_show {
  display: block;
}
.phone-frame__tit {
  font-weight: 700;
  font-size: 4.44vw;
  color: #333;
}
.phone-frame__desc {
  margin-top: 1.1%;
  font-size: 3.33vw;
  color: #989898;
}
.phone-frame__plan {
  margin-top: 22.2%;
}
.phone-frame__plan ul {
  display: inline-flex;
  margin-top: 2.5%;
  transition-delay: 0.2s;
}
.phone-frame__plan li {
  margin: 0 3px;
  padding: 0 8px;
  border-radius: 40px;
  background: #edfbff;
  font-size: 2.77vw;
  line-height: 2.2;
  color: #00ace2;
}
.phone-frame__card-cont {
  position: absolute;
  bottom: 10.8%;
  left: 31.66%;
  display: flex;
  width: 100%;
  white-space: nowrap;
}
.phone-frame__card-cont img {
  width: 36.38vw;
  height: 49.16vw;
  opacity: 0;
  transform: translateX(150px);
  box-shadow: -10px 10px 20px 5px rgba(0, 0, 0, 0.01);
}
.phone-frame__card-cont img:not(:first-child) {
  margin-left: 5.5%;
}
.phone-frame__cursor {
  position: absolute;
  bottom: 6.5%;
  left: 56.3%;
  width: 8.88%;
  opacity: 0;
}
.fp-viewing-2 .phone-frame {
  bottom: 0;
  opacity: 1;
  transition-delay: 0.3s;
}
.fp-viewing-2 .phone-frame__card-cont img {
  animation: bookMove 0.3s linear 1s forwards;
}
.fp-viewing-2 .phone-frame__card-cont img:nth-child(2) {
  animation-delay: 1.4s;
}
.fp-viewing-2 .phone-frame__card-cont img:last-child {
  animation-delay: 1.8s;
}
@keyframes bookMove {
  50% {
    opacity: 1;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fp-viewing-2 .phone-frame__cursor {
  animation: cursorMove 1s ease-in-out 2s forwards;
}

.phone-frame__round {
  position: absolute;
  top: 48%;
  left: 50%;
  z-index: -1;
  width: 124vw;
  height: 124vw;
  margin-left: -62vw;
  transform: translateY(100%);
}
.phone-frame__round::before, .phone-frame__round::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: "";
}
.phone-frame__round::before {
  border: 1px solid #333;
  transform: translateX(4px);
}
.phone-frame__round::after {
  background: linear-gradient(122.56deg, #0EC4CF 7.9%, #0EC4CF 7.9%, #0089B5 84.93%);
  opacity: 0.65;
  transform: translateX(-4px);
}
.phone-frame__analyze {
  margin-top: 35.5%;
}
.phone-frame__glasses {
  width: 18.33%;
  margin-bottom: 3.33%;
  animation: glassesMove 1s linear infinite;
}
@keyframes glassesMove {
  0%, 100% {
    transform: translate(0, -2px);
  }
  12.5% {
    transform: translate(1.5px, -1.5px);
  }
  25% {
    transform: translate(2px, 0);
  }
  37.5% {
    transform: translate(1.5px, 1.5px);
  }
  50% {
    transform: translate(0, 2px);
  }
  62.5% {
    transform: translate(-1.5px, 1.5px);
  }
  75% {
    transform: translate(-2px, 0);
  }
  87.5% {
    transform: translate(-1.5px, -1.5px);
  }
}
.phone-frame__product li {
  position: absolute;
  top: -3%;
  right: 10.2%;
  width: 36.11vw;
  height: 25vw;
  padding: 4.1%;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-position: right 11.5% bottom 16.6%;
  background-size: 25.3% auto;
  font-size: 3.88vw;
  text-align: left;
  box-shadow: -5px 5px 20px 5px rgba(0, 0, 0, 0.06);
}
.phone-frame__product li:first-child {
  border: 1px solid #f1f7f8;
  background-color: #f7fcfd;
  background-image: url(/assets/images/img-object-01.svg);
  color: #8eacaf;
}
.phone-frame__product li:last-child {
  background-color: #fff;
  background-image: url(/assets/images/img-object-02.svg);
  color: #989898;
}
.fp-viewing-3 .phone-frame {
  bottom: -7%;
  opacity: 1;
}
.fp-viewing-3 .phone-frame__round {
  animation: roundShow 0.5s ease-in-out 0.5s forwards;
}
@keyframes roundShow {
  100% {
    transform: translateY(0);
  }
}

@media screen and (max-width: 1023px) {
  .phone-frame {
    /* sec-04 */
    /* sec-05 */
  }
  .phone-frame__product li {
    opacity: 0;
  }
  .fp-viewing-3 .phone-frame__analyze {
    transition-delay: 0.2s;
  }
  .fp-viewing-3 .phone-frame__product li {
    transition: transform 0.4s cubic-bezier(0.8, 0.2, 0.1, 0.8) 0.4s;
  }
  .fp-viewing-3 .phone-frame__product li:first-child {
    animation: show 0.3s ease-in-out 0.8s forwards;
  }
  .fp-viewing-3 .phone-frame__product li.is_current {
    z-index: 10;
    opacity: 1;
    transform: translate(0px, 0px) rotate(0);
    animation: none;
  }
  .fp-viewing-3 .phone-frame__product li.is_out {
    z-index: 1;
    opacity: 0.8;
    transform: translate(12px, -12px) rotate(0);
    animation: productMove 0.8s cubic-bezier(0.8, 0.2, 0.1, 0.8);
  }
  @keyframes productMove {
    0% {
      z-index: 20;
      transform: translate(0, 0) rotate(0);
    }
    50% {
      z-index: 20;
      transform: translate(60px, -120px) rotate(30deg);
    }
    51% {
      z-index: 1;
      transform: translate(60px, -120px) rotate(30deg);
    }
    100% {
      z-index: 1;
      transform: translate(12px, -12px) rotate(0);
    }
  }
  .phone-frame__bg {
    position: absolute;
    top: -30%;
    left: 50%;
    z-index: -1;
    width: 100vw;
    margin-left: -50vw;
    opacity: 0;
    animation: show 0.3s ease-in-out 0.6s forwards;
  }
  .phone-frame__telephone {
    margin-top: 39%;
  }
  .phone-frame__telephone p {
    font-size: 5vw;
  }
  .phone-frame__telephone div {
    font-size: 3.88vw;
    font-family: "Roboto";
    letter-spacing: 0;
  }
  .phone-frame__call {
    width: 9.72%;
    margin-bottom: 3.33%;
  }
  .phone-frame__warning {
    position: absolute;
    top: -5%;
    right: 5.5%;
    z-index: 1;
    width: 43.88%;
    opacity: 0;
    animation: warningShow 4s ease 1.2s forwards;
  }
  @keyframes warningShow {
    0% {
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    15% {
      opacity: 1;
    }
    20% {
      opacity: 0.2;
    }
    25% {
      opacity: 1;
    }
    30% {
      opacity: 0.2;
    }
    35% {
      opacity: 1;
    }
    50% {
      opacity: 1;
    }
    55% {
      opacity: 0.2;
    }
    60% {
      opacity: 1;
    }
    65% {
      opacity: 0.2;
    }
    70% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  .fp-viewing-4 .phone-frame {
    bottom: -7%;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .phone-frame {
    left: 50%;
    max-width: 70%;
    margin-left: -35%;
    /* sec-03 */
    /* sec-04 */
    /* sec-05 */
  }
  .phone-frame__tit {
    font-size: 24px;
  }
  .phone-frame__desc {
    font-size: 18px;
  }
  .phone-frame__plan li {
    font-size: 15px;
  }
  .phone-frame__card-cont img {
    width: 190px;
    height: auto;
  }
  .phone-frame__product li {
    width: 180px;
    height: 125px;
    font-size: 18px;
  }
  .phone-frame__telephone p {
    font-size: 26px;
  }
  .phone-frame__telephone div {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .phone-frame {
    left: auto;
    bottom: auto;
    width: 42%;
    max-width: 480px;
    text-align: center;
    /* sec-03 */
    /* sec-04 */
  }
  .phone-frame__tit {
    font-size: 22px;
  }
  .phone-frame__desc {
    font-size: 14px;
  }
  .phone-frame__plan {
    margin-top: 34.79%;
  }
  .phone-frame__plan li {
    font-size: 12px;
    line-height: 2;
  }
  .phone-frame__card-cont {
    bottom: 24.6%;
    left: 33.54%;
  }
  .phone-frame__card-cont img {
    width: 165px;
    height: auto;
  }
  .phone-frame__card-cont img:not(:first-child) {
    margin-left: 17px;
  }
  .phone-frame__cursor {
    bottom: 177px;
    left: 261px;
    width: 40px;
  }
  .fp-viewing-2 .phone-frame {
    right: 2%;
    bottom: 50%;
    left: auto;
    transform: translateY(50%);
  }
  .phone-frame__round {
    width: 1432px;
    height: 1432px;
    top: 27%;
    left: 50%;
    margin-left: -716px;
  }
  .phone-frame__round::before, .phone-frame__round::after {
    left: 50%;
  }
  .phone-frame__round::before {
    transform: translateX(-49%);
  }
  .phone-frame__round::after {
    transform: translateX(-51%);
  }
  .phone-frame__analyze {
    margin-top: 196px;
  }
  .phone-frame__glasses {
    width: 66px;
    margin-bottom: 10px;
  }
  .phone-frame__product li {
    padding: 20px;
    background-position: right 20px bottom 20px;
    box-shadow: -10px 10px 20px 5px rgba(0, 0, 0, 0.06);
    transform: translateY(20px);
    opacity: 0;
  }
  .phone-frame__product li:first-child {
    width: 146px;
    height: 186px;
    top: -5.6%;
    right: 0;
    background-size: auto 33px;
  }
  .phone-frame__product li:last-child {
    width: 209px;
    height: 162px;
    top: 10.7%;
    right: -50.6%;
    background-size: 36px auto;
  }
  .phone-frame__product p {
    font-size: 12px;
  }
  .phone-frame__product div {
    margin-top: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #555;
  }
  .phone-frame__proposal-cont div {
    position: absolute;
    width: 78%;
    max-width: 370px;
    opacity: 0;
  }
  .phone-frame__proposal-cont div::after {
    position: absolute;
    top: 9.46%;
    right: 7.02%;
    width: 86.4%;
    height: 81.06%;
    border-radius: 12px;
    background: #fff;
    opacity: 0;
    content: "";
  }
  .phone-frame__proposal_01 {
    top: 177px;
    left: -89.58%;
  }
  .phone-frame__proposal_02 {
    top: 159px;
    left: -85.83%;
    z-index: 1;
  }
  .phone-frame__proposal_03 {
    top: 141px;
    left: -82.08%;
    z-index: 2;
  }
  .phone-frame__proposal_04 {
    top: 123px;
    left: -78.33%;
    z-index: 3;
  }
  .phone-frame__proposal_05 {
    top: 105px;
    left: -74.58%;
    z-index: 4;
  }
  .fp-viewing-3 .phone-frame {
    bottom: -300px;
    right: 50%;
    transform: translateX(50%);
  }
  .fp-viewing-3 .phone-frame__product li {
    animation: fadeUp 0.3s ease-in-out 1s forwards;
  }
  .fp-viewing-3 .phone-frame__product li:last-child {
    animation-delay: 1.4s;
  }
  .fp-viewing-3 .phone-frame__proposal-cont div:not(:last-child)::after {
    animation: show 0.3s ease-in-out 2.2s forwards;
  }
  .fp-viewing-3 .phone-frame__proposal_01 {
    animation: proposal1 0.3s ease-in-out 0.6s forwards;
  }
  @keyframes proposal1 {
    100% {
      opacity: 0.25;
    }
  }
  .fp-viewing-3 .phone-frame__proposal_02 {
    animation: proposal2 0.3s ease-in-out 1s forwards;
  }
  @keyframes proposal2 {
    100% {
      opacity: 0.4;
    }
  }
  .fp-viewing-3 .phone-frame__proposal_03 {
    animation: proposal3 0.3s ease-in-out 1.4s forwards;
  }
  @keyframes proposal3 {
    100% {
      opacity: 0.6;
    }
  }
  .fp-viewing-3 .phone-frame__proposal_04 {
    animation: proposal4 0.3s ease-in-out 1.8s forwards;
  }
  @keyframes proposal4 {
    100% {
      opacity: 0.9;
    }
  }
  .fp-viewing-3 .phone-frame__proposal_05 {
    animation: proposal5 0.3s ease-in-out 2.2s forwards;
  }
  @keyframes proposal5 {
    100% {
      opacity: 1;
    }
  }
}
@media screen and (min-width: 1440px) {
  .phone-frame {
    /* sec-03 */
  }
  .fp-viewing-2 .phone-frame {
    right: 19.5%;
  }
}

/* -------------------------------------------------------------------
  @Terms
------------------------------------------------------------------- */
.breadcrumb {
  display: flex;
  margin-top: 122px;
  font-size: 14px;
  font-family: "Roboto", "Noto Sans KR", sans-serif;
  justify-content: flex-end;
}
.breadcrumb li:first-child {
  color: #787878;
}
.breadcrumb li:last-child {
  position: relative;
  padding-left: 20px;
  color: #333;
}
.breadcrumb li:last-child::before {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #dedede;
  transform: translateY(-50%);
  content: "";
}

.terms-wrap {
  padding: 30px 0 40px;
  font-size: 3.88vw;
  color: #333;
  text-align: left;
}
.terms-wrap__item:not(:first-child) {
  margin-top: 40px;
}
.terms-wrap__tit {
  margin-bottom: 18px;
  font-size: 5.55vw;
}
.terms-wrap dl ~ dl {
  margin-top: 18px;
}
.terms-wrap dt {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 4.44vw;
}
.terms-wrap dd,
.terms-wrap p {
  color: #888;
}
.terms-wrap ol li {
  position: relative;
  padding-left: 5.62%;
}
.terms-wrap ol li .num {
  position: absolute;
  top: 0;
  left: -1px;
}
@media screen and (min-width: 1024px) {
  .terms-wrap {
    padding: 60px 0;
    font-size: 18px;
  }
  .terms-wrap__item:not(:first-child) {
    margin-top: 60px;
  }
  .terms-wrap__tit {
    margin-bottom: 30px;
    font-size: 28px;
  }
  .terms-wrap dl ~ dl {
    margin-top: 30px;
  }
  .terms-wrap dt {
    margin-bottom: 16px;
    font-size: 22px;
  }
  .terms-wrap ol li {
    padding-left: 24px;
  }
}

.terms-table {
  margin: 20px 0;
  border-top: 1px solid #333;
  text-align: center;
}
.terms-table th,
.terms-table td {
  padding: 15px 10px;
  border: 1px solid #dedede;
  vertical-align: middle;
}
.terms-table th:first-child,
.terms-table td:first-child {
  border-left: 0;
}
.terms-table th:last-child,
.terms-table td:last-child {
  border-right: 0;
}
.terms-table th {
  border-top: 0;
  background: #fbfbfb;
  font-weight: 500;
  color: #333;
}
.terms-table td {
  color: #787878;
}
@media screen and (min-width: 1024px) {
  .terms-table {
    margin: 30px 0;
  }
  .terms-table th,
  .terms-table td {
    padding-left: 35px;
    padding-right: 35px;
  }
}

.terms-date {
  margin-top: 50px;
  font-weight: 500;
  font-size: 3.88vw;
  color: #787878;
  text-align: center;
}
.terms-date select {
  width: 72.18%;
  margin: 12px 0 0;
  padding: 15px 20px;
  border: 1px solid #eee;
  border-radius: 0;
  background: url(/assets/images/icon-arrow.png) no-repeat right 20px center/14px auto;
  font-size: inherit;
  font-family: inherit;
  letter-spacing: -1px;
  color: #787878;
  text-transform: none;
  text-align: left;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
}
.terms-date select::-ms-check {
  display: none;
}
@media screen and (min-width: 1024px) {
  .terms-date {
    margin-top: 80px;
    text-align: right;
    font-size: 18px;
  }
  .terms-date select {
    margin-top: 15px;
    width: 305px;
  }
}/*# sourceMappingURL=main.css.map */