.page__top__wrap {
  position: relative;
  width: 100%;
  background: var(--top_background);
  border-radius: 0  0 var(--top_r_right) var(--top_r_left);
  animation: wrap_bg 50s linear infinite;;
  overflow: hidden;
}

@keyframes wrap_bg {
  100% {
    background-position: 200%;
  }
}

.page__top__inline {
  width: 100%;
  padding: var(--top_padding_top) 2rem var(--top_padding_bottom);
  border-radius: 5px;
}

.page__top__content {
  position: relative;
  max-width: var(--max_width);
  width: 100%;
  margin: 0 auto;
  line-height: 1.5;
  text-align: left
}

.page__top__content > h2 {
  font-size: var(--top_h2_size);
  color: var(--top_h2_color);
  font-family: var(--top_font_family);
  letter-spacing: -0.035em;
}

.page__top__content > p {
  font-size: var(--top_desc_size);
  color: var(--top_desc_color);
  padding-top: .5rem;
}

.page__top__content strong {
  font-size: var(--top_strong_size);
  color: var(--top_strong_color);
}

.page__top__content svg {
  width: var(--svg_size);
  height: var(--svg_size);
  stroke-width: var(--svg_stroke);
  stroke: var(--svg_stroke_color);
}

.point_stroke {
  stroke: var(--svg_point_stroke);
}

main.sitcky {
    max-width: 830px;
}

.cont_flex {
    display: flex;
    justify-content: center;
    gap: 14rem;
}

.sitcky_nav {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 160px;
    left: 0;
    width: 210px;
    height: 260px;
    align-items: center;
    justify-content: space-between;
    padding: 38px 0;
    background-color: #fff;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    border: 1px solid #DDD;
    font-size: 1.85rem;
    color: #121212;
    font-weight: 600;
}

.sticky_nav a {
    color: inherit;
}

a:visited {
    color: inherit;
}

/* DEBUG: top__line */

.top__line {
  display: inline-block;
  max-width: 4rem;
  width: 0;
  height: .3rem;
  background: var(--top_line_color);
  margin: 2rem auto;
  opacity: .8;
  border-radius: .4rem;
  animation: line 4s .7s both;
}

@keyframes line {
  100% {
    width: 100%;
  }
}


.top__smy {
  font-size: var(--top_desc_size);
  color: var(--top_desc_color);
}




/* DEBUG: 고객센터 메뉴 */

.cs__menu {
  padding-top: 3rem;
}

.cs__menu a {
  position: relative;
  display: inline-block;
  padding: .5rem 1.4rem;
  margin: 0 .4rem;
  font-size: 1.4rem;
  color: var(--top_cs_menu_color);
  z-index: 1;
}

.cs__menu a::before {
  content: '';
  position: absolute;
  top: -.2rem;
  left: -.2rem;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 2em;
  background: var(--top_cs_menu_bg);
  z-index: -1;
  transition: .4s;
}


.cs__menu a:hover::before {
  border-color: var(--top_cs_menu_hover);
  opacity: 1;
}

.cs__menu a.active {
  color: #fff;
}

.cs__menu a.active::before {
  background: var(--top_cs_menu_hover);
  opacity: .8;
}

.cs__menu strong {
  font-size: 1.4rem;
  color: inherit;
}







@media all and (max-width: 810px) {
  .page__top__inline {
    padding: 8rem 1.5rem 3rem;
  }
}


@media all and (max-width: 769px) {
  .page__top__content > h2 {
    font-size: 2.2rem
  }
}


@media all and (max-width: 440px) {
  .cs__menu a,
  .cs__menu strong {
    font-size: 1.2rem;
    padding: .3rem .8rem;
  }
}
