@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
html,
body {
  font-family: "Pretendard", sans-serif;
  letter-spacing: -0.02em;
}

/* 공통 컨텐츠 font */
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("/assets/font/pretendard/Pretendard-Thin.woff") format("woff");
  font-weight: 100;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("/assets/font/pretendard/Pretendard-ExtraLight.woff") format("woff");
  font-weight: 200;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("/assets/font/pretendard/Pretendard-Light.woff") format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("/assets/font/pretendard/Pretendard-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("/assets/font/pretendard/Pretendard-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("/assets/font/pretendard/Pretendard-SemiBold.woff") format("woff");
  font-weight: 600;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("/assets/font/pretendard/Pretendard-Bold.woff") format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("/assets/font/pretendard/Pretendard-ExtraBold.woff") format("woff");
  font-weight: 800;
}
/* 여기어대 */
@font-face {
  font-family: "Jalnan Gothic";
  font-style: normal;
  src: url("/assets/font/JalanGothic/JalnanGothic.woff") format("woff");
}
html {
  font-size: 62.5%;
}

body.floating_bg {
  position: relative;
}
body.floating_bg::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
body.has_gray {
  background-color: #F5F5F5;
}

.blind {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
}

.pc_hidden {
  display: none;
}

.mo_hidden {
  display: block;
}

a,
button {
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .pc_hidden {
    display: block;
  }
  .mo_hidden {
    display: none;
  }
  body.has_gray {
    background-color: #fff;
  }
}
/* 기본 모달 스타일 */
.modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal .modal_content {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 40rem;
  max-height: 66rem;
  height: 90%;
  padding: 3.2rem 3.2rem 2.8rem;
  background-color: #f5f5f5;
  border-radius: 1.2rem;
}
.modal .modal_content .btn_close {
  position: absolute;
  top: 3rem;
  right: 2.4rem;
  width: 1.8rem;
  height: 1.8rem;
  background: url(/assets/images/icon/ic_close.png) no-repeat center/cover;
}
.modal .modal_content .modal_title {
  margin-bottom: 3rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #002142;
}
.modal .modal_content .counsel_wrap {
  overflow-y: auto;
  max-height: calc(100% - 16.4rem);
}
.modal .modal_content .counsel_wrap .counsel_item ~ .counsel_item {
  margin-top: 3.2rem;
}
.modal .modal_content .counsel_wrap .counsel_item .tit {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #002142;
}
.modal .modal_content .counsel_wrap .counsel_item .tit .txt_blue {
  color: #006ce9;
}
.modal .modal_content .counsel_wrap .counsel_item .btn_wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.modal .modal_content .counsel_wrap .counsel_item .btn_wrap button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 1.8rem) / 3);
  height: 5.8rem;
  background-color: #fff;
  border: 0.1rem solid #fff;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #232323;
  box-shadow: 0 0 0.8rem 0 rgba(0, 0, 0, 0.04);
}
.modal .modal_content .counsel_wrap .counsel_item .btn_wrap button.active {
  border: 0.1rem solid #565b64;
}
.modal .modal_content .counsel_wrap .counsel_item .btn_wrap button.btn_network img {
  width: 6.7rem;
}
.modal .modal_content .counsel_wrap .counsel_item .btn_wrap button.btn_network img.img_kt {
  width: 2rem;
}
.modal .modal_content .counsel_wrap .counsel_item .btn_wrap button.btn_network img.img_sk {
  width: 6.4rem;
}
.modal .modal_content .counsel_wrap .counsel_item .btn_wrap.btn_product_wrap {
  gap: 0.8rem;
  flex-wrap: wrap;
}
.modal .modal_content .counsel_wrap .counsel_item .btn_wrap.btn_product_wrap button {
  flex-direction: column;
  width: calc((100% - 0.8rem) / 2);
  height: 7.2rem;
}
.modal .modal_content .counsel_wrap .counsel_item .btn_wrap.btn_product_wrap button .tit {
  margin-bottom: 0.6rem;
  font-weight: 700;
  color: #232323;
}
.modal .modal_content .counsel_wrap .counsel_item .btn_wrap.btn_product_wrap button .detail {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 0.8rem;
  color: #727f97;
}
.modal .modal_content .btn_blue_wrap {
  margin-top: auto;
}
.modal .modal_content .btn_blue_wrap .desc {
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 0.8rem;
  color: #727f97;
  text-align: center;
}
.modal .modal_content .btn_blue_wrap button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 4.6rem;
  background-color: #006ce9;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.modal .modal_content .btn_blue_wrap button .page {
  display: none;
}
.modal#phoneModal .modal_content {
  height: auto;
}
.modal#phoneModal .modal_content .modal_title {
  margin-bottom: 1.6rem;
}
.modal#phoneModal .modal_content .desc {
  margin-bottom: 2rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #002142;
}
.modal#phoneModal .modal_content .desc .txt_blue {
  color: #006ce9;
}
.modal#phoneModal .modal_content .desc br {
  display: none;
}
.modal#phoneModal .modal_content .input_box_group .input_box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  position: relative;
}
.modal#phoneModal .modal_content .input_box_group .input_box ~ .input_box {
  margin-top: 1rem;
}
.modal#phoneModal .modal_content .input_box_group .input_box ~ .input_box label {
  display: none;
}
.modal#phoneModal .modal_content .input_box_group .input_box label {
  width: 100%;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4rem;
  color: #6f6f6f;
}
.modal#phoneModal .modal_content .input_box_group .input_box input {
  width: 100%;
  height: 4.4rem;
  padding: 1.3rem 1.8rem;
  background-color: #fff;
  border-radius: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #727f97;
}
.modal#phoneModal .modal_content .input_box_group .input_box input::placeholder {
  font-size: 1.5rem;
  font-weight: 500;
  color: #727f97;
}
.modal#phoneModal .modal_content .input_box_group .input_box .btn_request {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8.3rem;
  height: 4.4rem;
  background-color: #dcdde5;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #232323;
}
.modal#phoneModal .modal_content .input_box_group .input_box .timer {
  position: absolute;
  top: 1.4rem;
  right: 1.8rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: #9d9d9d;
}
.modal#phoneModal .modal_content .input_box_group .input_box:first-child input {
  width: calc(100% - 9.1rem);
}
.modal#phoneModal .modal_content .btn_blue_wrap {
  margin-top: 2.8rem;
}
.modal#completeModal .modal_content {
  height: auto;
}
.modal#completeModal .modal_content .complete_wrap {
  text-align: center;
}
.modal#completeModal .modal_content .complete_wrap .tit_wrap {
  margin: 1.2rem 0 3.2rem;
}
.modal#completeModal .modal_content .complete_wrap .tit_wrap .tit {
  margin-bottom: 0.6rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.8rem;
  color: #002142;
}
.modal#completeModal .modal_content .complete_wrap .tit_wrap .txt {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.8rem;
  color: #006ce9;
}
.modal#completeModal .modal_content .complete_wrap .complete_box {
  padding: 2rem;
  background-color: #e5eef7;
  border-radius: 1.2rem;
  color: #727f97;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: left;
}
.modal#completeModal .modal_content .complete_wrap .complete_box .time_desc {
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  line-height: 1.6rem;
}
.modal#completeModal .modal_content .complete_wrap .complete_box .time {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 3.2rem;
  font-size: 1.3rem;
  line-height: 1.6rem;
}
.modal#completeModal .modal_content .complete_wrap .complete_box .time span:last-child {
  margin-left: -0.2rem;
  font-weight: 600;
  color: #565b64;
}
@media (max-width: 768px) {
  .modal .modal_content {
    width: 100%;
    height: 100%;
    max-height: 100%;
    padding: 8rem 2rem 3rem;
    border-radius: 0;
  }
  .modal .modal_content .btn_close {
    top: 8rem;
    right: 2rem;
  }
  .modal .modal_content .modal_title {
    margin-bottom: 3.3rem;
    font-size: 2rem;
  }
  .modal .modal_content .counsel_wrap {
    width: calc(100% + 4rem);
    max-height: calc(100% - 12.9rem);
    margin-left: -2rem;
    padding: 0 2rem 3.5rem;
  }
  .modal .modal_content .counsel_wrap .counsel_item ~ .counsel_item {
    margin-top: 5rem;
  }
  .modal .modal_content .counsel_wrap .counsel_item .tit {
    gap: 0.6rem;
    margin-bottom: 1.4rem;
    font-size: 1.6rem;
  }
  .modal .modal_content .counsel_wrap .counsel_item .btn_wrap button {
    height: 6.6rem;
  }
  .modal .modal_content .counsel_wrap .counsel_item .btn_wrap.btn_product_wrap {
    gap: 1rem;
  }
  .modal .modal_content .counsel_wrap .counsel_item .btn_wrap.btn_product_wrap button {
    width: 100%;
    height: 8rem;
  }
  .modal .modal_content .counsel_wrap .counsel_item .btn_wrap.btn_product_wrap button .detail {
    font-size: 1.4rem;
    line-height: 1;
  }
  .modal .modal_content .btn_blue_wrap {
    position: fixed;
    left: 2rem;
    bottom: 2rem;
    width: calc(100% - 4rem);
    margin-top: 1.5rem;
  }
  .modal .modal_content .btn_blue_wrap button {
    gap: 0.5rem;
    line-height: 1.7rem;
  }
  .modal .modal_content .btn_blue_wrap button .page {
    display: block;
  }
  .modal#phoneModal .modal_content {
    height: 100%;
  }
  .modal#phoneModal .modal_content .modal_title {
    margin-bottom: 3.3rem;
  }
  .modal#phoneModal .modal_content .desc {
    margin-bottom: 2.6rem;
    font-size: 2.2rem;
    line-height: 3rem;
  }
  .modal#phoneModal .modal_content .desc br {
    display: block;
  }
  .modal#phoneModal .modal_content .input_box_group .input_box label {
    font-size: 1.4rem;
    line-height: 1.7rem;
  }
  .modal#phoneModal .modal_content .input_box_group .input_box input {
    height: 5.6rem;
    border-radius: 0.8rem;
  }
  .modal#phoneModal .modal_content .input_box_group .input_box .btn_request {
    height: 5.6rem;
  }
  .modal#phoneModal .modal_content .input_box_group .input_box .timer {
    top: 2rem;
    right: 1.6rem;
    font-size: 1.4rem;
  }
  .modal#completeModal .modal_content {
    height: 100%;
  }
  .modal#completeModal .modal_content .complete_wrap {
    padding-top: 9rem;
  }
  .modal#completeModal .modal_content .complete_wrap .tit_wrap .tit {
    max-width: 15rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.2rem;
    line-height: 2.8rem;
    word-break: keep-all;
  }
  .modal#completeModal .modal_content .complete_wrap .tit_wrap .txt {
    font-size: 1.6rem;
  }
  .modal#completeModal .modal_content .complete_wrap .complete_box {
    padding: 2.7rem 2rem;
  }
  .modal#completeModal .modal_content .complete_wrap .complete_box .time_desc {
    text-align: center;
  }
  .modal#completeModal .modal_content .complete_wrap .complete_box .time {
    justify-content: center;
  }
  .modal#completeModal .modal_content .complete_wrap .complete_box p:last-child {
    width: 15.6rem;
    margin: auto;
    text-align: center;
    word-break: keep-all;
  }
}

#header {
  display: flex;
  justify-content: center;
  position: fixed;
  top: 2rem;
  left: 0;
  z-index: 10;
  width: 100%;
  transition: transform 0.2s linear;
}
#header.down {
  transform: translateY(-12rem);
}
#header .content_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 132rem;
  width: 100%;
  height: 7rem;
  margin: 0 2rem;
  padding: 0 6rem 0 4rem;
  background-color: #fff;
  border-radius: 6rem;
  box-shadow: 0 0 2.6rem 0 rgba(0, 0, 0, 0.06);
}
#header .content_wrap nav ul {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#header .content_wrap nav ul > li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 7rem;
  position: relative;
  cursor: pointer;
}
#header .content_wrap nav ul > li a.depth1 {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.9rem;
  color: #405063;
}
#header .content_wrap nav ul > li .depth2 {
  display: none;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 17.4rem;
  height: 11rem;
  padding: 1.2rem;
  background: #fff;
  border: 0.1rem solid #e5eef7;
  border-radius: 1.2rem;
  box-shadow: -4px 4px 16px 0 rgba(41, 68, 109, 0.05);
}
#header .content_wrap nav ul > li .depth2 li {
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
}
#header .content_wrap nav ul > li .depth2 li a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 1.6rem;
  border-radius: 0.6rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #405063;
}

@media (min-width: 769px) {
  #header .content_wrap nav ul > li:hover a {
    color: #006ce9;
  }
  #header .content_wrap nav ul > li:hover .depth2 {
    display: flex;
  }
  #header .content_wrap nav ul > li:hover .depth2 li a:hover {
    background-color: #fbfbfb;
  }
}
@media (max-width: 768px) {
  #header {
    top: 6rem;
  }
  #header .content_wrap {
    height: 5rem;
    padding: 0 4.4rem 0 2rem;
  }
  #header .content_wrap .logo_wrap {
    height: 2.2rem;
  }
  #header .content_wrap .logo_wrap img {
    height: 100%;
  }
  #header .content_wrap nav ul {
    gap: 1.8rem;
  }
  #header .content_wrap nav ul li {
    position: static;
    width: auto;
    height: 5rem;
  }
  #header .content_wrap nav ul li a.depth1 {
    font-size: 1.4rem;
    line-height: 1.7rem;
    color: #000;
  }
  #header .content_wrap nav ul li a.depth1.active ~ .depth2 {
    display: flex;
    width: calc(100vw - 4rem);
    left: auto;
    right: 2rem;
    transform: translateX(0);
    height: auto;
    font-size: 1.4rem;
  }
  #header .content_wrap nav ul li a.depth1.active ~ .depth2 li a {
    height: 3.9rem;
  }
}
#footer {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 10rem 0 14.4rem;
  background: #1b2028 url(/assets/images/main/bg_footer.png) no-repeat center bottom/cover;
}
#footer .content_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 132rem;
  width: 100%;
  margin: 0 2rem;
}
#footer .content_wrap .info_wrap h4 {
  margin-bottom: 1.6rem;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 4.8rem;
  color: #fff;
}
#footer .content_wrap .info_wrap .num {
  margin-bottom: 4rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.4rem;
  color: #84bdff;
}
#footer .content_wrap .info_wrap .btn_blue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 17.2rem;
  height: 6rem;
  padding-left: 1rem;
  background-color: #006ce9;
  box-shadow: 0 0.2rem 2rem 0 rgba(0, 0, 0, 0.12);
  border-radius: 1.2rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.1rem;
  color: #fff;
}
#footer .content_wrap .img_wrap {
  width: 14.9rem;
}

@media (max-width: 991px) {
  #footer .content_wrap .info_wrap .btn_blue {
    display: none;
  }
  #footer .content_wrap .info_wrap .num {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  #footer {
    padding: 3.5rem 0 12.3rem;
    background: #1b2028 url(/assets/images/main/bg_footer_mo.png) no-repeat right top/contain;
  }
  #footer .content_wrap .info_wrap h4 {
    max-width: 20.5rem;
    margin-bottom: 2rem;
    font-size: 2.4rem;
    line-height: 3.2rem;
    word-break: keep-all;
  }
  #footer .content_wrap .img_wrap {
    position: absolute;
    right: 2rem;
    top: 11.7rem;
    width: 9.5rem;
  }
}
#footerBottom {
  width: 100%;
  height: 47.7rem;
  background-color: #E6E5EB;
  padding: 6.8rem 2rem 0;
}
#footerBottom .content_wrap {
  max-width: 132rem;
  width: 100%;
  margin: auto;
}
#footerBottom .content_wrap .link_wrap {
  display: flex;
  align-items: center;
  gap: 3.3rem;
}
#footerBottom .content_wrap .link_wrap li {
  position: relative;
}
#footerBottom .content_wrap .link_wrap li ~ li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.2rem;
  left: -1.6rem;
  width: 0.1rem;
  height: 1.1rem;
  background-color: #D9D9D9;
}
#footerBottom .content_wrap .link_wrap li a {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #565B64;
}
#footerBottom .content_wrap .info_wrap {
  margin-top: 2.4rem;
  padding-top: 4.2rem;
  border-top: 0.1rem solid #D9D9D9;
}
#footerBottom .content_wrap .info_wrap .logo {
  width: 4.7rem;
  height: 3rem;
  background-image: url(/assets/images/main/logo_gray.svg);
  background-size: contain;
  background-repeat: no-repeat;
  filter: grayscale(100%);
}
#footerBottom .content_wrap .info_wrap .info_box .info_top {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  margin: 2.4rem 0 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: #6F6F6F;
}
#footerBottom .content_wrap .info_wrap .info_box .info_top .company {
  display: flex;
  gap: 1.7rem;
}
#footerBottom .content_wrap .info_wrap .info_box .info_top .company span {
  display: block;
}
#footerBottom .content_wrap .info_wrap .info_box .info_top .company span ~ span {
  position: relative;
}
#footerBottom .content_wrap .info_wrap .info_box .info_top .company span ~ span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -0.8rem;
  transform: translateY(-50%);
  width: 0.1rem;
  height: 1.2rem;
  background-color: rgba(111, 111, 111, 0.4);
}
#footerBottom .content_wrap .info_wrap .info_box .info_top .btn_info_more {
  display: none;
}
#footerBottom .content_wrap .info_wrap .info_box .info_bottom li {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1;
  color: #9B9B9B;
}
#footerBottom .content_wrap .info_wrap .info_box .info_bottom li ~ li {
  margin-top: 1.2rem;
}
#footerBottom .content_wrap .info_wrap .info_box .info_bottom li p {
  position: relative;
}
#footerBottom .content_wrap .info_wrap .info_box .info_bottom li p ~ p::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -1.2rem;
  transform: translateY(-50%);
  width: 0.1rem;
  height: 1.1rem;
  background-color: #CCCCCC;
}
#footerBottom .content_wrap .info_wrap .copyright {
  display: flex;
  gap: 1.3rem;
  align-items: center;
  margin: 4rem 0 2.4rem;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #AAAAAA;
}
#footerBottom .content_wrap .info_wrap .copyright span {
  position: relative;
}
#footerBottom .content_wrap .info_wrap .copyright span ~ span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -0.6rem;
  transform: translateY(-50%);
  width: 0.1rem;
  height: 1rem;
  background-color: rgba(170, 170, 170, 0.6);
}
@media (max-width: 991px) {
  #footerBottom {
    height: auto;
    padding-bottom: 12rem;
  }
  #footerBottom.sub {
    padding-bottom: 30rem;
  }
}
@media (max-width: 768px) {
  #footerBottom {
    padding-top: 4.8rem;
  }
  #footerBottom .content_wrap .link_wrap {
    flex-wrap: wrap;
    gap: 1rem 2rem;
    max-width: 25rem;
  }
  #footerBottom .content_wrap .link_wrap li ~ li::before {
    left: -1rem;
  }
  #footerBottom .content_wrap .link_wrap li:nth-child(3)::before {
    display: none;
  }
  #footerBottom .content_wrap .link_wrap li a {
    font-size: 1.4rem;
  }
  #footerBottom .content_wrap .info_wrap {
    position: relative;
    z-index: 2;
    margin-top: 2rem;
    padding-top: 3.4rem;
  }
  #footerBottom .content_wrap .info_wrap .logo {
    height: 2.4rem;
  }
  #footerBottom .content_wrap .info_wrap .info_box .info_top {
    gap: 1.2rem;
    margin: 2rem 0 1.8rem;
    font-size: 1.3rem;
  }
  #footerBottom .content_wrap .info_wrap .info_box .info_top .btn_info_more {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.2rem;
    height: 1.2rem;
    margin-left: -0.4rem;
    transform: rotate(0);
    pointer-events: auto;
  }
  #footerBottom .content_wrap .info_wrap .info_box .info_top .btn_info_more.active {
    transform: rotate(180deg);
  }
  #footerBottom .content_wrap .info_wrap .info_box .info_bottom {
    max-height: 0;
    overflow: hidden;
  }
  #footerBottom .content_wrap .info_wrap .info_box .info_bottom.active {
    max-height: 500px;
    margin-bottom: 3.2rem;
  }
  #footerBottom .content_wrap .info_wrap .info_box .info_bottom li {
    gap: 1rem 1.7rem;
    flex-wrap: wrap;
    align-items: flex-start;
    font-size: 1.2rem;
  }
  #footerBottom .content_wrap .info_wrap .info_box .info_bottom li:nth-child(1) {
    flex-direction: column;
  }
  #footerBottom .content_wrap .info_wrap .info_box .info_bottom li:nth-child(1) p ~ p::before {
    display: none;
  }
  #footerBottom .content_wrap .info_wrap .info_box .info_bottom li:nth-child(2) p:nth-child(1) {
    width: 100%;
  }
  #footerBottom .content_wrap .info_wrap .info_box .info_bottom li:nth-child(2) p:nth-child(2)::before {
    display: none;
  }
  #footerBottom .content_wrap .info_wrap .info_box .info_bottom li p ~ p::before {
    left: -0.8rem;
  }
  #footerBottom .content_wrap .info_wrap .copyright {
    flex-wrap: wrap;
    margin-top: 0;
    font-size: 1.2rem;
  }
}

#aside {
  position: fixed;
  top: 50%;
  right: 2rem;
  z-index: 2;
  transform: translateY(-50%);
  width: 15rem;
}
#aside .mo_hidden h4 {
  background-color: #fff;
  border-radius: 2rem 2rem 0 0;
  box-shadow: 0 0.2rem 2rem rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(0.5rem);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 2.3rem;
  color: #95a1af;
}
#aside .mo_hidden .group {
  background-color: rgba(255, 255, 255, 0.86);
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 0.2rem 2rem 0 rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(1rem);
}
#aside .mo_hidden .group ul {
  padding: 1rem;
}
#aside .mo_hidden .group ul li ~ li {
  margin-top: 0.8rem;
}
#aside .mo_hidden .group ul li a {
  display: block;
  width: 100%;
  box-shadow: 0 0 1.2rem 0 rgba(0, 0, 0, 0.06);
}
#aside .mo_hidden .group ul li a.btn_info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 3.6rem;
  background-color: #27140D;
  border-radius: 2.6rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}
#aside .mo_hidden .group ul li a.btn_counseling {
  position: relative;
  padding: 1.5rem;
  border-radius: 1.4rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.7rem;
  color: #fff;
}
#aside .mo_hidden .group ul li a.btn_counseling img {
  display: block;
  margin-bottom: 0.6rem;
}
#aside .mo_hidden .group ul li a.btn_counseling::after {
  content: "";
  display: block;
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  border-right: 0;
}
#aside .mo_hidden .group ul li a.btn_counseling.baren {
  background-color: #006ce9;
}
#aside .mo_hidden .group ul li a.btn_counseling.baren::after {
  border-top: 0.4rem solid transparent;
  border-bottom: 0.4rem solid transparent;
  border-left: 0.5rem solid #6da0db;
}
#aside .mo_hidden .group ul li a.btn_counseling.secret {
  background-color: #FFE121;
  color: #1C1B1F;
}
#aside .mo_hidden .group ul li a.btn_counseling.secret::after {
  border-top: 0.4rem solid transparent;
  border-bottom: 0.4rem solid transparent;
  border-left: 0.5rem solid #535353;
}
#aside .mo_hidden .group .num {
  padding: 2rem 0 2.5rem;
  border-top: 0.1rem solid rgba(0, 0, 0, 0.08);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.6rem;
  color: #00142b;
  text-align: center;
}
#aside .mo_hidden .group .num strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.4rem;
}
#aside .pc_hidden {
  display: none;
}

@media (max-width: 991px) {
  #aside {
    z-index: 3;
    top: auto;
    bottom: 3.5rem;
    right: auto;
    left: 2rem;
    transform: translateY(0);
    width: calc(100% - 4rem);
  }
  #aside .mo_hidden {
    display: none;
  }
  #aside .pc_hidden {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  #aside .pc_hidden .btn_blue {
    width: calc(100% - 6.4rem);
    height: 5.4rem;
    background: linear-gradient(90deg, #2E2E2E 0%, #131313 100%);
    box-shadow: 0 0.4rem 1.6rem 0 rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2.2rem);
    border-radius: 1.4rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
  }
  #aside .pc_hidden .floating_wrap .floating_btn {
    width: 5.4rem;
    height: 5.4rem;
    background: #fff url(/assets/images/icon/ic_aside_support.svg) no-repeat center;
    box-shadow: 0 0 1.2rem 0 rgba(0, 0, 0, 0.12);
    border-radius: 1.4rem;
    transition: all 0.3s;
  }
  #aside .pc_hidden .floating_wrap .floating_btn.active {
    background-image: url(/assets/images/icon/ic_aside_close.svg);
  }
  #aside .pc_hidden .floating_wrap .floating_menu {
    position: absolute;
    bottom: 7.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
    opacity: 0;
    pointer-events: none;
  }
  #aside .pc_hidden .floating_wrap .floating_menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  #aside .pc_hidden .floating_wrap .floating_menu .menu_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.4rem;
    height: 5.4rem;
    border-radius: 1.4rem;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.06);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 2rem;
  }
  #aside .pc_hidden .floating_wrap .floating_menu .menu_btn.info {
    position: relative;
    background-color: #FFE121;
  }
  #aside .pc_hidden .floating_wrap .floating_menu .menu_btn.info .info_bubble {
    position: absolute;
    top: 1.2rem;
    left: -14.7rem;
  }
  #aside .pc_hidden .floating_wrap .floating_menu .menu_btn.info .info_bubble img {
    width: 14.7rem;
  }
  #aside .pc_hidden .floating_wrap .floating_menu .menu_btn.baren {
    background-color: #006CE9;
  }
  #aside .pc_hidden .floating_wrap .floating_menu .menu_btn.kakao {
    background-color: #27140D;
  }
  #aside .pc_hidden .floating_wrap .floating_menu .menu_btn img {
    width: 2.4rem;
  }
  #aside .pc_hidden .bubble_wrap {
    position: absolute;
    right: 0;
    bottom: 5rem;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
  }
  #aside .pc_hidden .bubble_wrap .bubble {
    position: absolute;
    right: -1rem;
    bottom: 0;
    width: 11.7rem;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  #aside .pc_hidden .bubble_wrap .bubble.active {
    opacity: 1;
  }
  #aside .pc_hidden .bubble_wrap.active {
    opacity: 0;
    pointer-events: none;
  }
}
.container {
  /* mobile */
}
.container section {
  overflow: hidden;
}
.container section .content_wrap {
  max-width: 136rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
.container section .content_wrap h3 {
  margin-bottom: 8rem;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 5.3rem;
  text-align: center;
}
.container .intro {
  height: 100vh;
  background: #f2f8ff url(/assets/images/main/bg_intro.png) no-repeat right bottom/contain;
}
.container .intro .content_wrap {
  display: flex;
  align-items: center;
  position: relative;
  height: 100vh;
}
.container .intro .content_wrap .txt_wrap {
  position: relative;
  z-index: 2;
  margin-bottom: 2.6rem;
}
.container .intro .content_wrap .txt_wrap .status {
  display: inline-flex;
  gap: 0.3rem;
  justify-content: center;
  align-items: center;
  height: 4.8rem;
  margin-bottom: 3rem;
  padding: 0 2rem 0 2.2rem;
  border-radius: 8rem;
  background: linear-gradient(90deg, #006CE9 0%, #0045E5 100%);
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
}
.container .intro .content_wrap .txt_wrap .status span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.6rem;
  opacity: 0.4;
}
.container .intro .content_wrap .txt_wrap h2 {
  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
  max-width: 61rem;
  margin-bottom: 2.7rem;
  font-size: 9rem;
  font-weight: 800;
  line-height: 8.7rem;
  letter-spacing: -0.01em;
  color: #070707;
}
.container .intro .content_wrap .txt_wrap h2 .has_font {
  font-family: "Jalnan Gothic";
  font-size: 7rem;
  font-weight: 400;
}
.container .intro .content_wrap .txt_wrap .intro_txt {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 3.9rem;
  color: #202020;
}
.container .intro .content_wrap .img_wrap {
  position: absolute;
  right: -11.6rem;
  bottom: 0;
  width: 86.4rem;
  height: 71.3rem;
}
.container .intro .content_wrap .img_wrap .phone {
  position: relative;
  height: 100%;
  animation: phoneUp 0.8s ease-out forwards;
  opacity: 1;
}
.container .intro .content_wrap .img_wrap .phone img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: max-content;
  width: auto;
  height: 100%;
}
.container .intro .content_wrap .img_wrap .coin01 {
  position: absolute;
  bottom: 44.3rem;
  left: 0;
  z-index: 1;
  width: 24.6rem;
  animation: coinUpLeft 0.8s ease-out forwards, coinFloatLeft 3s ease-in-out infinite 0s;
  opacity: 1;
}
.container .intro .content_wrap .img_wrap .coin02 {
  position: absolute;
  right: 2.4rem;
  bottom: -1.7rem;
  z-index: 1;
  width: 29rem;
  animation: coinUpRight 0.8s ease-out forwards, coinFloatRight 4s ease-in-out infinite 0s;
  opacity: 1;
}
.container .intro .content_wrap .img_wrap .circle {
  display: none;
}
.container .intro .content_wrap .img_wrap_mo {
  display: none;
}
.container .intro .content_wrap .btn_blue {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 50%;
  bottom: 5rem;
  transform: translateX(-50%);
  z-index: 1;
  height: 6.6rem;
  padding: 0 8.2rem 0 9.2rem;
  background: linear-gradient(90deg, #2E2E2E 0%, #131313 100%);
  border-radius: 5rem;
  box-shadow: 0 0.4rem 1.6rem 0 rgba(0, 0, 0, 0.3);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
@keyframes phoneUp {
  from {
    transform: translateY(20rem);
    opacity: 0;
  }
}
@keyframes coinUpLeft {
  from {
    bottom: -10rem;
    opacity: 0;
  }
}
@keyframes coinUpRight {
  from {
    bottom: -15rem;
    opacity: 0;
  }
}
@keyframes coinFloatLeft {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes coinFloatRight {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4rem);
  }
  100% {
    transform: translateY(0);
  }
}
.container .benefit {
  padding: 8rem 0 12rem;
  background-color: #18202d;
}
.container .benefit .content_wrap h3 {
  color: #fff;
}
.container .benefit .content_wrap h3 br {
  display: none;
}
.container .benefit .content_wrap .benefit_list {
  display: flex;
  gap: 2.4rem;
}
.container .benefit .content_wrap .benefit_list_pc {
  display: flex;
}
.container .benefit .content_wrap .benefit_list_mo {
  display: none;
}
.container .benefit .content_wrap .benefit_list li {
  flex: 1;
  position: relative;
  min-height: 42rem;
  padding: 4.5rem 4rem 4rem;
  background-color: #fff;
  border-radius: 4rem;
}
.container .benefit .content_wrap .benefit_list li .point {
  margin-bottom: 0.8rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.6rem;
  color: #006ce9;
  word-break: keep-all;
}
.container .benefit .content_wrap .benefit_list li .tit {
  margin-bottom: 2.4rem;
  font-size: 4rem;
  font-weight: 700;
  line-height: 4.8rem;
  color: #252d39;
  word-break: keep-all;
}
.container .benefit .content_wrap .benefit_list li .txt {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2.7rem;
  color: #3e4e5f;
}
.container .benefit .content_wrap .benefit_list li .benefit_icon {
  position: absolute;
  right: 4rem;
  bottom: 4rem;
}
.container .process {
  position: relative;
  height: 100vh;
  background-color: #006ce9;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.container .process .process_scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #006ce9;
  will-change: scroll-position;
}
.container .process .process_scroll .content_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-top: -13.2rem;
  font-size: 5.8rem;
  font-weight: 800;
  color: #fff;
}
.container .process .process_scroll .content_wrap .txt_left span {
  display: block;
}
.container .process .process_scroll .content_wrap .txt_left span ~ span {
  margin-top: 1rem;
}
.container .process .process_scroll .content_wrap .txt_right {
  opacity: 0.6;
}
.container .process .process_scroll .content_wrap .process_wrap {
  position: absolute;
  top: -5rem;
  left: 33.3rem;
  z-index: 1;
  transform: translate(0, 40%);
}
.container .process .process_scroll .content_wrap .process_wrap li {
  opacity: 0.3;
  position: relative;
  width: 46rem;
  height: 30rem;
  padding: 3rem 3.5rem;
  border-radius: 3rem;
}
.container .process .process_scroll .content_wrap .process_wrap li.process01 {
  background: #fff url("/assets/images/main/img_process01.png") no-repeat left bottom/contain;
}
.container .process .process_scroll .content_wrap .process_wrap li.process02 {
  background: #fff url("/assets/images/main/img_process02.png") no-repeat left bottom/contain;
}
.container .process .process_scroll .content_wrap .process_wrap li.process03 {
  background: #fff url("/assets/images/main/img_process03.png") no-repeat left bottom/contain;
}
.container .process .process_scroll .content_wrap .process_wrap li ~ li {
  margin-top: 10rem;
}
.container .process .process_scroll .content_wrap .process_wrap li p {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 700;
  line-height: 3.8rem;
  color: #232323;
}
.container .process .process_scroll .content_wrap .process_wrap li p .num {
  display: block;
  font-size: 2.7rem;
}
.container .process .process_scroll .content_wrap .process_wrap li p .txt {
  display: block;
  font-size: 3.2rem;
}
.container .process .process_scroll .bg_circle {
  display: block;
  position: absolute;
  top: -60%;
  left: -70%;
  width: 132.6rem;
  height: 132.6rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff 0%, #2baaff 100%);
  opacity: 0.1;
}
.container .process_mo {
  display: none;
}
.container .review {
  padding: 8rem 0 12rem;
  background-color: #f4f9ff;
}
.container .review .content_wrap h3 {
  color: #232323;
}
.container .review .content_wrap h3 span {
  color: #006ce9;
}
.container .review .review_wrap {
  display: flex;
  flex-wrap: nowrap;
  gap: 3rem;
  transform: translateX(0);
  transition: transform 0.03s linear;
}
.container .review .review_wrap .review_box {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 43.2rem;
  height: 34rem;
  padding: 3rem;
  background-color: #e6f2ff;
  border-radius: 4rem;
}
.container .review .review_wrap .review_box .txt_wrap .num {
  display: inline-block;
  margin-bottom: 2.5rem;
  padding: 0.6rem 1rem;
  background-color: rgba(196, 216, 246, 0.7);
  border-radius: 3rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.7rem;
  letter-spacing: 0;
  color: #006ce9;
}
.container .review .review_wrap .review_box .txt_wrap .tit {
  margin-bottom: 1.6rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2.8rem;
  letter-spacing: 0;
  color: #00224a;
}
.container .review .review_wrap .review_box .txt_wrap .txt {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2.8rem;
  color: #4f657c;
}
.container .review .review_wrap .review_box .txt_wrap .txt span {
  color: #006ce9;
}
.container .review .review_wrap .review_box .name {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.9rem;
  color: #006ce9;
}
.container .faq {
  padding: 10rem 0 20rem;
}
.container .faq .content_wrap h3 {
  color: #232323;
}
.container .faq .content_wrap .accordion {
  overflow: hidden;
  border-radius: 0.6rem;
}
.container .faq .content_wrap .accordion .accordion_item {
  padding-bottom: 3rem;
  border-bottom: 0.1rem solid rgba(35, 35, 35, 0.1);
  color: #232323;
}
.container .faq .content_wrap .accordion .accordion_item:first-child {
  border-top: 0.1rem solid rgba(35, 35, 35, 0.1);
}
.container .faq .content_wrap .accordion .accordion_item .accordion_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 3rem 0 0rem 3.5rem;
  text-align: left;
  transition: padding-bottom 400ms ease-out;
}
.container .faq .content_wrap .accordion .accordion_item .accordion_btn[aria-expanded=true] {
  padding-bottom: 2rem;
}
.container .faq .content_wrap .accordion .accordion_item .accordion_btn[aria-expanded=true] + .accordion_content {
  opacity: 1;
  max-height: 16rem;
  transition: opacity 200ms linear, max-height 400ms ease-out;
  will-change: opacity, max-height;
}
.container .faq .content_wrap .accordion .accordion_item .accordion_btn[aria-expanded=true] .accordion_icon::before, .container .faq .content_wrap .accordion .accordion_item .accordion_btn[aria-expanded=true] .accordion_icon:after {
  transform: rotate(0);
}
.container .faq .content_wrap .accordion .accordion_item .accordion_btn .accordion_tit {
  position: relative;
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.4rem;
}
.container .faq .content_wrap .accordion .accordion_item .accordion_btn .accordion_tit::before {
  content: "Q.";
  display: block;
  position: absolute;
  left: -3.5rem;
  top: 0;
  font-size: 2rem;
  line-height: 2.4rem;
  color: #006ce9;
}
.container .faq .content_wrap .accordion .accordion_item .accordion_btn .accordion_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 4rem;
  height: 4rem;
}
.container .faq .content_wrap .accordion .accordion_item .accordion_btn .accordion_icon:before, .container .faq .content_wrap .accordion .accordion_item .accordion_btn .accordion_icon:after {
  content: "";
  display: block;
  position: absolute;
  width: 1.8rem;
  height: 0.2rem;
  background-color: #232323;
  transition: transform 400ms ease;
  transform: rotate(180deg);
}
.container .faq .content_wrap .accordion .accordion_item .accordion_btn .accordion_icon:after {
  transform-origin: center;
  transform: rotate(90deg);
}
.container .faq .content_wrap .accordion .accordion_item .accordion_content {
  overflow: hidden;
  max-height: 0;
  transition: opacity 200ms linear, max-height 400ms ease-out;
  will-change: opacity, max-height;
  padding: 0 3.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.6rem;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .container .benefit .content_wrap .benefit_list li .txt br {
    display: none;
  }
  .container .process {
    display: none;
  }
  .container .process_mo {
    display: block;
    padding: 12rem 0;
    background-color: #006ce9;
  }
  .container .process_mo .content_wrap {
    font-size: 4.6rem;
    line-height: 6.6rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
  }
  .container .process_mo .content_wrap .txt_top {
    margin-bottom: 2.5rem;
  }
  .container .process_mo .content_wrap .txt_bottom {
    margin-top: 3.2rem;
  }
  .container .process_mo .content_wrap .process_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .container .process_mo .content_wrap .process_wrap li {
    position: relative;
    width: 100%;
    max-width: 76rem;
    height: 50rem;
    padding: 3rem 3.5rem;
    border-radius: 3rem;
  }
  .container .process_mo .content_wrap .process_wrap li.process01 {
    background: #fff url("/assets/images/main/img_process01.png") no-repeat left bottom/contain;
  }
  .container .process_mo .content_wrap .process_wrap li.process02 {
    background: #fff url("/assets/images/main/img_process02.png") no-repeat left bottom/contain;
  }
  .container .process_mo .content_wrap .process_wrap li.process03 {
    background: #fff url("/assets/images/main/img_process03.png") no-repeat left bottom/contain;
  }
  .container .process_mo .content_wrap .process_wrap li ~ li {
    margin-top: 10rem;
  }
  .container .process_mo .content_wrap .process_wrap li p {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-weight: 700;
    line-height: 3.8rem;
    color: #232323;
  }
  .container .process_mo .content_wrap .process_wrap li p .num {
    display: block;
    font-size: 2.7rem;
  }
  .container .process_mo .content_wrap .process_wrap li p .txt {
    display: block;
    font-size: 3.2rem;
  }
}
@media (max-width: 991px) {
  .container .intro {
    background-image: none;
  }
  .container .intro .content_wrap {
    flex-direction: column;
    padding-top: 14.8rem;
  }
  .container .intro .content_wrap .txt_wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 0;
  }
  .container .intro .content_wrap .txt_wrap .status {
    gap: 0;
    height: 3.7rem;
    margin-bottom: 1.7rem;
    padding: 0 1.5rem;
    font-size: 1.8rem;
  }
  .container .intro .content_wrap .txt_wrap .status span {
    width: 0.5rem;
    margin: 0 0.1rem 0 0.3rem;
    font-size: 1.7rem;
  }
  .container .intro .content_wrap .txt_wrap h2 {
    gap: 0;
    justify-content: center;
    max-width: 56rem;
    margin-bottom: 1.3rem;
    font-size: 4.8rem;
    line-height: 4.7rem;
    text-align: center;
  }
  .container .intro .content_wrap .txt_wrap h2 .has_font {
    font-size: 3.7rem;
    line-height: 4.7rem;
  }
  .container .intro .content_wrap .txt_wrap .intro_txt {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  .container .intro .content_wrap .img_wrap {
    right: 50%;
    transform: translateX(50%);
    width: 50rem;
    height: 44.2rem;
  }
  .container .intro .content_wrap .img_wrap .phone {
    z-index: 1;
    width: 50rem;
  }
  .container .intro .content_wrap .img_wrap .coin01 {
    left: -3rem;
    bottom: 26rem;
    width: 11.4rem;
  }
  .container .intro .content_wrap .img_wrap .coin02 {
    right: 9.6rem;
    bottom: 3rem;
    width: 11.4rem;
  }
  .container .intro .content_wrap .img_wrap .circle {
    display: block;
    position: absolute;
    bottom: -15rem;
  }
  .container .intro .content_wrap .btn_blue {
    display: none;
  }
  .container .benefit .content_wrap .benefit_list {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .container .benefit .content_wrap .benefit_list_pc {
    display: none;
  }
  .container .benefit .content_wrap .benefit_list_mo {
    display: block;
    width: calc(100% + 4rem);
    margin-left: -2rem;
    padding: 0 3rem 3rem;
  }
  .container .benefit .content_wrap .benefit_list li {
    flex: auto;
    width: 100%;
    min-height: 30rem;
  }
  .container .benefit .content_wrap .benefit_list .swiper-pagination {
    display: flex;
    justify-content: center;
    bottom: 0;
    height: 0.8rem;
  }
  .container .benefit .content_wrap .benefit_list .swiper-pagination-bullet {
    background-color: #D1E1FF;
    opacity: 0.3;
    margin: 0 0.3rem;
  }
  .container .benefit .content_wrap .benefit_list .swiper-pagination-bullet-active {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .container section .content_wrap h3 {
    font-size: 2.8rem;
    line-height: 3.7rem;
    margin-bottom: 4rem;
  }
  .container .intro {
    position: relative;
    height: 73.6rem;
  }
  .container .intro .content_wrap {
    height: 100%;
  }
  .container .intro .content_wrap .img_wrap {
    height: 34.2rem;
  }
  .container .intro .content_wrap .img_wrap .phone {
    bottom: -0.1rem;
  }
  .container .intro .content_wrap .img_wrap .coin01 {
    bottom: 22rem;
    left: 6.5rem;
    width: 10rem;
  }
  .container .intro .content_wrap .img_wrap .coin02 {
    right: 8.6rem;
    bottom: -0.7rem;
    width: 11rem;
  }
  .container .intro .content_wrap .img_wrap .circle {
    bottom: -21rem;
    left: 4rem;
    width: 52rem;
  }
  .container .benefit {
    padding: 6rem 0 5rem;
  }
  .container .benefit .content_wrap h3 {
    margin-bottom: 2.5rem;
  }
  .container .benefit .content_wrap h3 br {
    display: block;
  }
  .container .benefit .content_wrap .benefit_list li {
    padding: 3rem 1.6rem 2rem 2.6rem;
  }
  .container .benefit .content_wrap .benefit_list li .point {
    font-size: 1.4rem;
    line-height: 1.7rem;
    margin-bottom: 0.6rem;
  }
  .container .benefit .content_wrap .benefit_list li .tit {
    margin-bottom: 2rem;
    font-size: 2.4rem;
    line-height: 2.9rem;
  }
  .container .benefit .content_wrap .benefit_list li .txt {
    max-width: 22.1rem;
    font-size: 1.4rem;
    line-height: 2.4rem;
    word-break: keep-all;
  }
  .container .benefit .content_wrap .benefit_list li .benefit_icon {
    width: 8rem;
    right: 1.6rem;
    bottom: 2rem;
  }
  .container .process_mo {
    padding: 6rem 0 5rem;
  }
  .container .process_mo .content_wrap {
    font-size: 2.8rem;
    line-height: 3.7rem;
  }
  .container .process_mo .content_wrap .txt_top {
    margin-bottom: 2.5rem;
  }
  .container .process_mo .content_wrap .txt_bottom {
    margin-top: 3.2rem;
  }
  .container .process_mo .content_wrap .process_wrap .swiper-slide {
    width: calc(100% - 6rem);
  }
  .container .process_mo .content_wrap .process_wrap li {
    height: 22rem;
    padding: 2.5rem;
  }
  .container .process_mo .content_wrap .process_wrap li ~ li {
    margin-top: 2rem;
  }
  .container .process_mo .content_wrap .process_wrap li p {
    line-height: 2.7rem;
  }
  .container .process_mo .content_wrap .process_wrap li p .num {
    font-size: 2rem;
  }
  .container .process_mo .content_wrap .process_wrap li p .txt {
    font-size: 2rem;
  }
  .container .review {
    padding: 6rem 0 5rem;
  }
  .container .review .review_wrap {
    gap: 1rem;
  }
  .container .review .review_wrap .review_box {
    width: 29.9rem;
    height: 36rem;
    padding: 2.5rem 3.4rem 2.5rem 2.5rem;
  }
  .container .review .review_wrap .review_box .txt_wrap .tit {
    width: 16rem;
    font-size: 2.2rem;
    word-break: keep-all;
  }
  .container .review .review_wrap .review_box .txt_wrap .txt {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
  .container .faq {
    padding: 6rem 0;
  }
  .container .faq .content_wrap .accordion .accordion_item {
    gap: 1rem;
    padding-bottom: 1.6rem;
  }
  .container .faq .content_wrap .accordion .accordion_item .accordion_btn {
    padding: 1.8rem 0 0 4.5rem;
  }
  .container .faq .content_wrap .accordion .accordion_item .accordion_btn[aria-expanded=true] {
    padding-bottom: 1.8rem;
  }
  .container .faq .content_wrap .accordion .accordion_item .accordion_btn .accordion_tit {
    max-width: 26rem;
    font-size: 1.7rem;
    line-height: 2.3rem;
    word-break: keep-all;
  }
  .container .faq .content_wrap .accordion .accordion_item .accordion_btn .accordion_tit::before {
    top: -0.3rem;
  }
  .container .faq .content_wrap .accordion .accordion_item .accordion_btn .accordion_icon {
    width: 2rem;
    height: 2rem;
  }
  .container .faq .content_wrap .accordion .accordion_item .accordion_btn .accordion_icon::before, .container .faq .content_wrap .accordion .accordion_item .accordion_btn .accordion_icon::after {
    width: 1.5rem;
  }
  .container .faq .content_wrap .accordion .accordion_item .accordion_content {
    padding: 0 4.5rem;
    font-size: 1.5rem;
    line-height: 2.4rem;
  }
}
@media (max-width: 360px) {
  .container .intro .content_wrap .txt_wrap h2 {
    font-size: 4.4rem;
    line-height: 4.4rem;
  }
  .container .intro .content_wrap .txt_wrap h2 .has_font {
    font-size: 3.5rem;
    line-height: 4.4rem;
  }
}

.container.secret {
  /* mobile */
}
.container.secret .secret-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 87rem;
  padding-top: 9rem;
  background: #006ce9 url(/assets/images/secret/bg_intro.png) no-repeat center bottom/cover;
}
.container.secret .secret-intro .title {
  font-size: 2.6rem;
  font-weight: 600;
  color: #c8d5fb;
  text-align: center;
}
.container.secret .secret-intro .title h3 {
  margin-top: 1.6rem;
  font-size: 5.8rem;
  font-weight: 700;
  line-height: 6.8rem;
  letter-spacing: -0.01em;
  color: #fff;
}
.container.secret .secret-intro .agree_box {
  max-width: 40rem;
  width: 100%;
  margin-top: 2.8rem;
  padding: 4rem 3.2rem 3.2rem;
  background-color: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2.4rem 5.2rem 0 rgba(0, 58, 128, 0.2);
}
.container.secret .secret-intro .agree_box .agree_title {
  margin-bottom: 2.4rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.5rem;
  color: #002142;
  text-align: center;
}
.container.secret .secret-intro .agree_box .agree_title span {
  color: #006ce9;
}
.container.secret .secret-intro .agree_box .input_box {
  margin-bottom: 1rem;
}
.container.secret .secret-intro .agree_box .input_box:first-child {
  margin-bottom: 0.4rem;
}
.container.secret .secret-intro .agree_box .input_box label {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
}
.container.secret .secret-intro .agree_box .input_box input {
  width: 100%;
  height: 5rem;
  padding: 1.6rem 1.8rem;
  border: 0.1rem solid #eaeaea;
  border-radius: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #656565;
}
.container.secret .secret-intro .agree_box .input_box input::placeholder {
  font-family: "Pretendard", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #656565;
}
.container.secret .secret-intro .agree_box .checkbox_box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 5rem;
  margin-bottom: 0.4rem;
  padding: 0 1.2rem 0 1.8rem;
  background-color: #f9fafc;
  border-radius: 1.2rem;
}
.container.secret .secret-intro .agree_box .checkbox_box label {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.8rem;
  color: #002142;
}
.container.secret .secret-intro .agree_box .checkbox_box label::before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 0.4rem;
  background: #e8e9eb url(/assets/images/secret/ic_checkbox.svg) no-repeat center;
  transition: 0.3s ease;
}
.container.secret .secret-intro .agree_box .checkbox_box input[type=checkbox]:checked ~ label::before {
  background-color: #006ce9;
}
.container.secret .secret-intro .agree_box .checkbox_group .checkbox_box {
  margin-bottom: 0;
  background-color: transparent;
}
.container.secret .secret-intro .agree_box .checkbox_group .checkbox_box ~ .checkbox_box {
  margin-top: 0.2rem;
}
.container.secret .secret-intro .agree_box .checkbox_group .checkbox_box .btn_arrow {
  margin-left: auto;
}
.container.secret .secret-intro .agree_box .btn_notice {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 5rem;
  margin: 1.8rem 0 1.6rem;
  background-color: #006ce9;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}
.container.secret .secret-intro .agree_box .btn_info {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2rem;
  color: #006ce9;
}
.container.secret .secret-intro .agree_box.payment .logo_box {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .container.secret .secret-intro {
    min-height: 81rem;
    padding-top: 13.2rem;
    justify-content: flex-start;
    background: #006ce9 url(/assets/images/secret/bg_intro_mo.png) no-repeat center bottom/cover;
  }
  .container.secret .secret-intro .title {
    font-size: 1.8rem;
  }
  .container.secret .secret-intro .title h3 {
    margin-top: 1.6rem;
    font-size: 3.4rem;
    line-height: 4.6rem;
  }
  .container.secret .secret-intro .agree_box {
    max-width: 32rem;
    margin-top: 4.2rem;
    padding: 2rem 2.6rem 2.4rem;
  }
  .container.secret .secret-intro .agree_box .agree_title {
    font-size: 1.6rem;
  }
  .container.secret .secret-intro .agree_box .input_box {
    margin-bottom: 0.8rem;
  }
  .container.secret .secret-intro .agree_box .input_box input {
    height: 4rem;
  }
  .container.secret .secret-intro .agree_box .checkbox_box {
    height: 4rem;
    padding: 0 1rem 0 1.4rem;
  }
  .container.secret .secret-intro .agree_box .btn_notice {
    height: 4rem;
    margin: 1.4rem 0;
  }
  .container.secret .secret-intro .agree_box.payment {
    padding-top: 3.4rem;
    margin-top: 3.2rem;
  }
  .container.secret .secret-intro .agree_box.payment .logo_box {
    margin-bottom: 1.2rem;
  }
}

.container.news_service .introduction {
  display: flex;
  align-items: flex-end;
  height: 36rem;
  padding-bottom: 5.4rem;
  background: #18202d;
}
.container.news_service .introduction .content_wrap h3 {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  margin-bottom: 0.4rem;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 5.4rem;
  color: #d2e6ff;
  text-align: left;
}
.container.news_service .introduction .content_wrap h3 span {
  font-size: 2.8rem;
}
.container.news_service .introduction .content_wrap h4 {
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
}
.container.news_service .product {
  padding: 8rem 0 12rem;
  background-color: #f4f9ff;
}
.container.news_service .product .content_wrap .product_wrap {
  position: relative;
}
.container.news_service .product .content_wrap .product_wrap ~ .product_wrap {
  margin-top: 8rem;
}
.container.news_service .product .content_wrap .product_wrap.phone .title img {
  transform: scaleX(-1);
}
.container.news_service .product .content_wrap .product_wrap .title {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 3.2rem;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 3.1rem;
  color: #002142;
}
.container.news_service .product .content_wrap .product_wrap .checkbox_wrap {
  display: flex;
  gap: 3.2rem;
  align-items: center;
  margin-bottom: 2.2rem;
}
.container.news_service .product .content_wrap .product_wrap .checkbox_wrap label {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2rem;
  color: #232323;
}
.container.news_service .product .content_wrap .product_wrap .checkbox_wrap label::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 0.4rem;
  background: #fff url(/assets/images/sub/ic_checkbox.svg) no-repeat center;
  border: 0.1rem solid #ececec;
  transition: 0.3s ease;
  box-sizing: border-box;
}
.container.news_service .product .content_wrap .product_wrap .checkbox_wrap input[type=checkbox]:checked ~ label::before {
  background-color: #232323;
  border-color: #232323;
}
.container.news_service .product .content_wrap .product_wrap .btn_wrap {
  display: flex;
  gap: 2.4rem;
  position: relative;
}
.container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product {
  flex-shrink: 0;
  width: calc((100% - 4.8rem) / 3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 20.4rem;
  padding: 2.6rem 3.5rem;
  background-color: #fff;
  border-radius: 2rem;
  backdrop-filter: blur(4rem);
  border: 0.2rem solid #fff;
  box-shadow: 0 0 2.4rem 0 rgba(0, 0, 0, 0.04);
}
.container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product.active {
  border: 0.2rem solid #003a80;
}
.container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .top {
  text-align: left;
}
.container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .top .tit {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.2rem;
  color: #003a80;
}
.container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .top .data {
  display: block;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 4.3rem;
  color: #252d39;
}
.container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .top .data span {
  margin-left: 0.4rem;
  font-size: 2.4rem;
  font-weight: 600;
}
.container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .top .data_detail {
  display: block;
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #727f97;
}
.container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .bottom {
  display: flex;
  align-items: flex-end;
  width: 100%;
}
.container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .bottom .detail_wrap {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .bottom .detail_wrap span {
  font-size: 1.6rem;
  font-weight: 500;
  color: #727f97;
  text-align: left;
}
.container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .bottom .detail_wrap span.detail {
  text-align: left;
  line-height: 2.7rem;
}
.container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .bottom .detail_wrap span.detail.checkbox_wrap {
  gap: 0;
  margin-top: 0.7rem;
  margin-bottom: 0;
}
.container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .bottom .detail_wrap span.detail.checkbox_wrap label {
  gap: 1rem;
  font-size: 1.6rem;
  color: #727f97;
}
.container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .bottom .price {
  margin-left: auto;
  font-size: 2.2rem;
  font-weight: 700;
  color: #252d39;
}
.container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .bottom .price .num {
  font-size: 3.8rem;
  color: #006ce9;
}
.container.news_service .product .content_wrap .product_wrap .slide_btn_wrap {
  overflow: hidden;
}
.container.news_service .product .content_wrap .product_wrap .nav_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 7.9rem;
  z-index: 1;
  width: 2.9rem;
  height: 4.6rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0.6rem;
}
.container.news_service .product .content_wrap .product_wrap .nav_btn::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  font-size: 0;
  background: url(/assets/images/sub/ic_slide_arrow.svg) no-repeat center;
}
.container.news_service .product .content_wrap .product_wrap .nav_btn.left {
  left: -4.9rem;
  transform: scaleX(-1);
}
.container.news_service .product .content_wrap .product_wrap .nav_btn.right {
  right: -4.9rem;
}
.container.news_service .product .content_wrap .product_wrap .nav_btn.disabled {
  background-color: rgba(0, 0, 0, 0.1);
}
.container.news_service .calculate {
  padding: 6.7rem 0;
  background-color: #0360ff;
}
.container.news_service .calculate .content_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.container.news_service .calculate .content_wrap .tit_wrap .tit {
  margin-bottom: 0.9rem;
  font-size: 3.6rem;
  font-weight: 700;
}
.container.news_service .calculate .content_wrap .tit_wrap .txt {
  font-size: 2rem;
  font-weight: 500;
}
.container.news_service .calculate .content_wrap .result_wrap {
  display: flex;
  gap: 2.8rem;
}
.container.news_service .calculate .content_wrap .result_wrap .result {
  display: flex;
  gap: 1.5rem;
  align-items: flex-end;
}
.container.news_service .calculate .content_wrap .result_wrap .result .cash {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  padding-bottom: 0.6rem;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 2.6rem;
  color: #caf0f8;
}
.container.news_service .calculate .content_wrap .result_wrap .result .discount {
  text-align: right;
}
.container.news_service .calculate .content_wrap .result_wrap .result .discount .before {
  position: relative;
  padding-right: 2.1rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.9rem;
  color: rgba(255, 255, 255, 0.5);
}
.container.news_service .calculate .content_wrap .result_wrap .result .discount .before::after {
  content: "";
  display: block;
  position: absolute;
  top: 1rem;
  right: 0;
  width: 100%;
  height: 1.2rem;
  background: url(/assets/images/sub/ic_dash.svg) no-repeat right;
}
.container.news_service .calculate .content_wrap .result_wrap .result .discount .after {
  font-size: 4rem;
  font-weight: 700;
}
.container.news_service .calculate .content_wrap .result_wrap .result .discount .after .num {
  font-size: 4.6rem;
}
.container.news_service .calculate .content_wrap .result_wrap .btn_signup {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  align-items: center;
  width: 18.8rem;
  height: 6.6rem;
  background-color: #18202d;
  border-radius: 1.6rem;
  font-size: 2rem;
  font-weight: 700;
}
.container.news_service .table_list {
  padding: 12rem 0 20rem;
}
.container.news_service .table_list .content_wrap .table_list_wrap ~ .table_list_wrap {
  margin-top: 8rem;
}
.container.news_service .table_list .content_wrap .table_list_wrap .title {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  margin-bottom: 2.4rem;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 3.1rem;
  color: #232323;
}
.container.news_service .table_list .content_wrap .table_list_wrap .title .desc {
  margin-left: auto;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.7rem;
  color: #565b63;
}
.container.news_service .table_list .content_wrap .table_list_wrap .title_desc {
  margin: 3.2rem 0 2rem;
  font-size: 2rem;
  font-weight: 500;
  color: #565b64;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap {
  display: inline-block;
  width: 100%;
  border: 0.1rem solid #dcdde5;
  border-radius: 0.7rem;
  overflow: hidden;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap + .table_wrap {
  margin-top: 1.6rem;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table {
  width: 100%;
  border-collapse: collapse;
  border-style: hidden;
  text-align: center;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table thead tr th {
  padding: 2.1rem 0;
  background-color: #f1f3f7;
  border: 0.1rem solid #dcdde5;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.1rem;
  color: #232323;
  text-align: center;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table thead tr:nth-child(2) th {
  background-color: #e5eef7;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table tbody tr td {
  padding: 2.1rem 0;
  border: 0.1rem solid #dcdde5;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.1rem;
  color: #565b64;
  text-align: center;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table tbody tr td.bg_gray {
  background-color: #fbfbfb;
  font-weight: 600;
  color: #232323;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table tbody tr td.bg_gray.no_bg {
  background-color: #fff;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table tbody tr td.bg_gray.txt_color {
  font-weight: 500;
  color: #6f6f6f;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table tbody tr td.bg_gray.txt_color span {
  font-weight: 600;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table tbody tr td.bg_gray.txt_color span:first-child {
  color: #3617ce;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table tbody tr td.bg_gray.txt_color span:last-child {
  color: #000;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table tbody tr td.bg_gray .point {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.2rem;
  background-color: #e6f2ff;
  border-radius: 0.8rem;
  font-size: 1.5rem;
  line-height: 1.8rem;
  color: #006ce9;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table tbody tr td.txt_blue {
  font-weight: 600;
  color: #006ce9;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table tbody tr td.bg_blue {
  background-color: #e5eef7;
  font-weight: 600;
  color: #232323;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table tbody tr td.txt_semi {
  font-weight: 600;
  color: #232323;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table tbody tr td.txt_medium {
  font-weight: 500;
  color: #000;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table tbody tr td .prepayment {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4.2rem;
  height: 2.3rem;
  margin-left: 0.7rem;
  background-color: rgba(54, 23, 206, 0.1);
  border-radius: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #3617ce;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table .txt_grayblue {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
  color: #727f97;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table.table_file tbody tr td:not(.txt_blue, .bg_gray) {
  color: #6f6f6f;
  font-weight: 400;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table.table_file tbody tr:nth-child(even) td {
  font-weight: 500;
  color: #000;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table.table_file.kt_skylife tbody tr:not(.add, .sale) td {
  font-weight: 400;
  color: #6f6f6f;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table.table_file.kt_skylife tbody tr:not(.add, .sale) td.bg_gray {
  font-weight: 600;
  color: #232323;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table.table_file.kt_skylife tbody tr:not(.add, .sale) td.txt_blue {
  font-weight: 700;
  color: #006ce9;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table.table_file.kt_skylife tbody tr.add td {
  font-weight: 500;
  color: #000;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table.table_file.kt_skylife tbody tr.add td.txt_blue {
  color: #006ce9;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table.table_file.kt_skylife tbody tr.sale td {
  font-weight: 500;
  color: #1c3b6d;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table.table_file.kt_skylife tbody tr.sale td.txt_blue {
  color: #006ce9;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table.table_card tbody tr td:first-child {
  font-weight: 600;
  color: #232323;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table.table_card tbody tr td.bg_gray {
  font-weight: 500;
}
.container.news_service .table_list .content_wrap .table_list_wrap .table_wrap table.table_card tbody tr td.txt_gray {
  font-weight: 500;
  color: #565b64;
}
.container.customer_support .introduction {
  height: 50.5rem;
  background-color: #e8f0ff;
}
.container.customer_support .introduction .content_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
  padding-bottom: 4.3rem;
}
.container.customer_support .introduction .content_wrap .txt_wrap {
  padding-bottom: 3rem;
}
.container.customer_support .introduction .content_wrap .txt_wrap .top {
  margin-bottom: 4.2rem;
  color: #002142;
}
.container.customer_support .introduction .content_wrap .txt_wrap .top p {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 500;
}
.container.customer_support .introduction .content_wrap .txt_wrap .top h3 {
  margin-bottom: 0;
  font-size: 5rem;
  line-height: 4.8rem;
}
.container.customer_support .introduction .content_wrap .txt_wrap .top h3 br {
  display: none;
}
.container.customer_support .introduction .content_wrap .txt_wrap .bottom .num {
  margin-bottom: 2rem;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 5.3rem;
  color: #006ce9;
}
.container.customer_support .introduction .content_wrap .txt_wrap .bottom ul li {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1.9rem;
}
.container.customer_support .introduction .content_wrap .txt_wrap .bottom ul li ~ li {
  margin-top: 0.8rem;
}
.container.customer_support .introduction .content_wrap .txt_wrap .bottom ul li .type {
  padding: 0 0.7rem 0 1.2rem;
  font-weight: 500;
  color: #565b64;
}
.container.customer_support .introduction .content_wrap .txt_wrap .bottom ul li .time {
  font-weight: 700;
  color: #232323;
}
.container.customer_support .introduction .content_wrap .img_wrap {
  position: relative;
  width: 50.9rem;
}
.container.customer_support .introduction .content_wrap .img_wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: -4.3rem;
  right: 0.8rem;
  width: 43.2rem;
  height: 43.2rem;
  background: url(/assets/images/sub/support_intro_bg.png) no-repeat center/contain;
}
.container.customer_support .introduction .content_wrap .img_wrap img {
  position: relative;
  z-index: 1;
}
.container.customer_support .introduction .content_wrap .btn_contact {
  display: none;
}
.container.customer_support .introduction.board {
  height: 36rem;
}
.container.customer_support .introduction.board .content_wrap {
  padding-bottom: 0;
}
.container.customer_support .introduction.board .content_wrap h3 {
  margin-bottom: 5.4rem;
  font-size: 4.5rem;
  line-height: 5.4rem;
  color: #232323;
}
.container.customer_support .tab .content_wrap .tab_list {
  display: flex;
  align-items: center;
  width: 56.4rem;
  height: 6.9rem;
  margin: 6rem auto 0;
  padding: 0.7rem;
  background-color: #f6f6f6;
  border-radius: 10rem;
}
.container.customer_support .tab .content_wrap .tab_list li {
  flex: 1;
  height: 100%;
}
.container.customer_support .tab .content_wrap .tab_list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  font-weight: 600;
  color: #727f97;
}
.container.customer_support .tab .content_wrap .tab_list li.active a {
  background-color: #fff;
  border-radius: 100px;
  color: #000;
}
.container.customer_support .faq {
  padding: 8rem 0 20rem;
}
.container.customer_support .contact {
  padding: 8rem 0 20rem;
}
.container.customer_support .contact .content_wrap .contact_wrap {
  border-bottom: 0.1rem solid rgba(35, 35, 35, 0.1);
}
.container.customer_support .contact .content_wrap .contact_wrap .contact_item {
  border-top: 0.1rem solid rgba(35, 35, 35, 0.1);
}
.container.customer_support .contact .content_wrap .contact_wrap .contact_item .contact_title {
  display: flex;
  align-items: center;
  padding: 3rem 2rem;
}
.container.customer_support .contact .content_wrap .contact_wrap .contact_item .contact_title p {
  margin: 0;
  padding: 0 0.5rem;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.1rem;
  color: #6f6f6f;
  white-space: nowrap;
  text-align: center;
}
.container.customer_support .contact .content_wrap .contact_wrap .contact_item .contact_title p.num {
  flex: 0 0 auto;
  min-width: 5rem;
  font-weight: 600;
  color: #232323;
}
.container.customer_support .contact .content_wrap .contact_wrap .contact_item .contact_title p.tit {
  flex: 1;
  overflow: hidden;
  color: #232323;
  text-align: left;
  text-overflow: ellipsis;
}
.container.customer_support .contact .content_wrap .contact_wrap .contact_item .contact_title p.name {
  flex: 0 0 auto;
  min-width: 10rem;
}
.container.customer_support .contact .content_wrap .contact_wrap .contact_item .contact_title p.date {
  flex: 0 0 auto;
  min-width: 10rem;
}
.container.customer_support .contact .content_wrap .contact_wrap .contact_item .contact_title p.status {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  width: 7.6rem;
  height: 3.5rem;
  margin-left: 1%;
  background-color: #f1f1f1;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
}
.container.customer_support .contact .content_wrap .contact_wrap .contact_item .contact_title p.status.complete {
  background-color: #f4f9ff;
  color: #006ce9;
}
.container.customer_support .contact .content_wrap .contact_wrap .contact_item .contact_title.answer {
  border-top: 0.1rem solid rgba(35, 35, 35, 0.1);
}
.container.customer_support .contact .content_wrap .contact_wrap .contact_item .contact_title.answer .tit_answer {
  flex: 1;
  display: flex;
  gap: 1.6rem;
  align-items: center;
  position: relative;
  padding-left: 5.5rem;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
}
.container.customer_support .contact .content_wrap .contact_wrap .contact_item .contact_title.answer .tit_answer::before {
  content: "";
  flex: 0 0 auto;
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background: url(/assets/images/sub/ic_answer.svg) no-repeat left top/100%;
}
.container.customer_support .contact .content_wrap .contact_wrap .contact_item .contact_title.answer .tit_answer span {
  overflow: hidden;
  text-overflow: ellipsis;
}
.container.customer_support .contact .content_wrap .contact_wrap .contact_item .contact_title.answer .null {
  flex: 0 0 auto;
  width: 7.6rem;
  margin-left: 1%;
}
.container.customer_support .contact .content_wrap .btn_contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15rem;
  height: 4.9rem;
  margin-top: 2.8rem;
  margin-left: auto;
  background-color: #323232;
  border-radius: 5rem;
  font-size: 1.7rem;
  font-weight: 600;
  color: #fff;
}
.container.customer_support .contact_detail_wrap {
  padding: 14rem 0 20rem;
}
.container.customer_support .contact_detail_wrap .detail_box {
  width: 70rem;
  margin: auto;
}
.container.customer_support .contact_detail_wrap .detail_box .detail_info {
  padding-bottom: 3rem;
  border-bottom: 0.1rem solid #EAEAEA;
}
.container.customer_support .contact_detail_wrap .detail_box .detail_info .sort {
  font-size: 1.4rem;
  font-weight: 600;
  color: #006ce9;
}
.container.customer_support .contact_detail_wrap .detail_box .detail_info .tit {
  margin: 1.6rem 0;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 4.6rem;
  color: #232323;
}
.container.customer_support .contact_detail_wrap .detail_box .detail_info .detail {
  display: flex;
  gap: 2.1rem;
  align-items: center;
}
.container.customer_support .contact_detail_wrap .detail_box .detail_info .detail .user {
  font-size: 1.4rem;
  font-weight: 500;
  color: #232323;
}
.container.customer_support .contact_detail_wrap .detail_box .detail_info .detail .date {
  position: relative;
  font-size: 1.4rem;
  color: #A0A0A0;
}
.container.customer_support .contact_detail_wrap .detail_box .detail_info .detail .date::before {
  content: "";
  display: block;
  opacity: 0.5;
  position: absolute;
  top: 0.4rem;
  left: -1.1rem;
  width: 0.1rem;
  height: 0.9rem;
  background-color: #A0A0A0;
}
.container.customer_support .contact_detail_wrap .detail_box .detail_desc {
  padding: 4rem 0 8rem;
  border-bottom: 0.1rem solid #EAEAEA;
  font-size: 1.6rem;
  line-height: 2.6rem;
  letter-spacing: -0.02em;
  color: #232323;
}
.container.customer_support .contact_detail_wrap .detail_box .detail_answer {
  display: flex;
  gap: 0.8rem;
  padding-top: 1.6rem;
}
.container.customer_support .contact_detail_wrap .detail_box .detail_answer .img_wrap {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
}
.container.customer_support .contact_detail_wrap .detail_box .detail_answer .img_wrap img {
  width: 1.2rem;
}
.container.customer_support .contact_detail_wrap .detail_box .detail_answer .txt01 {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #405063;
  letter-spacing: -0.02em;
}
.container.customer_support .contact_detail_wrap .detail_box .detail_answer .txt02 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #565B64;
  letter-spacing: -0.02em;
}
.container.customer_support .contact_detail_wrap .detail_box .go_list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16rem;
  height: 6rem;
  margin: 8rem auto 0;
  background-color: #F2F3F6;
  border-radius: 10rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #232323;
}
.container.customer_support .pagination {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 4.3rem;
}
.container.customer_support .pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #b1bad0;
}
.container.customer_support .pagination a.active {
  background-color: #edf2f9;
  color: #006ce9;
}
.container.customer_support .pagination .btn_wrap button {
  width: 2.4rem;
  height: 2.4rem;
}
.container.customer_support .pagination .btn_wrap button.btn_prev, .container.customer_support .pagination .btn_wrap button.btn_next {
  background: url(/assets/images/sub/ic_arrow.svg) no-repeat center;
}
.container.customer_support .pagination .btn_wrap button.btn_prev:disabled, .container.customer_support .pagination .btn_wrap button.btn_next:disabled {
  background-image: url(/assets/images/sub/ic_arrow_disabled.svg);
}
.container.customer_support .pagination .btn_wrap button.btn_prev.double, .container.customer_support .pagination .btn_wrap button.btn_next.double {
  background: url(/assets/images/sub/ic_arrow_double.svg) no-repeat center;
}
.container.customer_support .pagination .btn_wrap button.btn_prev.double:disabled, .container.customer_support .pagination .btn_wrap button.btn_next.double:disabled {
  background-image: url(/assets/images/sub/ic_arrow_double_disabled.svg);
}
.container.customer_support .pagination .btn_wrap button.btn_prev {
  margin-right: 2.2rem;
  transform: scaleX(-1);
}
.container.customer_support .pagination .btn_wrap button.btn_prev:disabled {
  transform: scaleX(1);
}
.container.customer_support .pagination .btn_wrap button.btn_next {
  margin-left: 2.2rem;
}
.container.customer_support .pagination .btn_wrap button.btn_next:disabled {
  transform: scaleX(-1);
}
.container.customer_support .board_wrap {
  padding: 8rem 0 20rem;
}
.container.customer_support .board_wrap .content_wrap .board_list {
  display: flex;
  gap: 6rem 2.4rem;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.container.customer_support .board_wrap .content_wrap .board_list li {
  flex: 1 1 calc(25% - 2.4rem);
}
.container.customer_support .board_wrap .content_wrap .board_list li a {
  overflow: hidden;
  display: block;
  height: 33rem;
  background-color: #f4f9ff;
  border-radius: 2.4rem;
}
.container.customer_support .board_wrap .content_wrap .board_list li a .top {
  display: block;
  height: 20rem;
  padding: 3.6rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 3.2rem;
}
.container.customer_support .board_wrap .content_wrap .board_list li a .bottom {
  display: block;
  padding: 2rem;
}
.container.customer_support .board_wrap .content_wrap .board_list li a .bottom .category {
  display: block;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
  font-weight: 700;
}
.container.customer_support .board_wrap .content_wrap .board_list li a .bottom .category_tit {
  font-size: 2rem;
  font-weight: 700;
}
.container.customer_support .board_wrap .content_wrap .board_list li a.blue .top {
  background: url(/assets/images/sub/support_board_blue.png) no-repeat center/cover;
}
.container.customer_support .board_wrap .content_wrap .board_list li a.blue .bottom .category {
  color: #006ce9;
}
.container.customer_support .board_wrap .content_wrap .board_list li a.green .top {
  background: url(/assets/images/sub/support_board_green.png) no-repeat center/cover;
}
.container.customer_support .board_wrap .content_wrap .board_list li a.green .bottom .category {
  color: #18bea2;
}
.container.customer_support .board_wrap .content_wrap .board_list li a.black .top {
  background: url(/assets/images/sub/support_board_black.png) no-repeat center/cover;
}
.container.customer_support .board_wrap .content_wrap .board_list li a.black .top .tit {
  color: #fff;
}
.container.customer_support .board_wrap .content_wrap .board_list li a.black .bottom .category {
  color: #4a4a4a;
}
.container.customer_support .board_detail_wrap {
  padding: 14rem 0 20rem;
}
.container.customer_support .board_detail_wrap .content_wrap {
  max-width: 74rem;
}
.container.customer_support .board_detail_wrap .content_wrap .thumbnail {
  overflow: hidden;
  margin-bottom: 3.2rem;
  max-width: 70rem;
  height: 40rem;
  border-radius: 2.4rem;
}
.container.customer_support .board_detail_wrap .content_wrap .thumbnail img {
  width: 100%;
}
.container.customer_support .board_detail_wrap .content_wrap .board_txt_wrap .tit_wrap {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 0.1rem solid #EAEAEA;
}
.container.customer_support .board_detail_wrap .content_wrap .board_txt_wrap .tit_wrap .top {
  display: flex;
  gap: 2.1rem;
  align-items: center;
  margin-bottom: 1.6rem;
}
.container.customer_support .board_detail_wrap .content_wrap .board_txt_wrap .tit_wrap .top .category {
  font-size: 1.4rem;
  font-weight: 500;
}
.container.customer_support .board_detail_wrap .content_wrap .board_txt_wrap .tit_wrap .top .category.green {
  color: #18BEA2;
}
.container.customer_support .board_detail_wrap .content_wrap .board_txt_wrap .tit_wrap .top .category.blue {
  color: #006ce9;
}
.container.customer_support .board_detail_wrap .content_wrap .board_txt_wrap .tit_wrap .top .category.black {
  color: #4a4a4a;
}
.container.customer_support .board_detail_wrap .content_wrap .board_txt_wrap .tit_wrap .top .date {
  position: relative;
  font-size: 1.4rem;
  color: #A0A0A0;
}
.container.customer_support .board_detail_wrap .content_wrap .board_txt_wrap .tit_wrap .top .date::before {
  content: "";
  display: block;
  opacity: 0.5;
  position: absolute;
  top: 0.5rem;
  left: -1rem;
  width: 0.1rem;
  height: 0.9rem;
  background-color: #A0A0A0;
}
.container.customer_support .board_detail_wrap .content_wrap .board_txt_wrap .tit_wrap h4 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 4.6rem;
  color: #232323;
}
.container.customer_support .board_detail_wrap .content_wrap .board_txt_wrap .desc p {
  font-size: 1.6rem;
  line-height: 2rem;
}
.container.customer_support .board_detail_wrap .content_wrap .board_txt_wrap .desc p.point {
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.6rem;
}
.container.customer_support .board_detail_wrap .content_wrap .prev_next_wrap {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 8rem;
  padding-top: 2rem;
  border-top: 0.1rem solid #EAEAEA;
}
.container.customer_support .board_detail_wrap .content_wrap .prev_next_wrap a {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.container.customer_support .board_detail_wrap .content_wrap .prev_next_wrap a.next_btn img {
  transform: rotate(180deg);
}
.container.customer_support .board_detail_wrap .content_wrap .prev_next_wrap a .txt {
  font-size: 1.5rem;
  font-weight: 600;
  color: #405063;
}
.container.customer_support .board_detail_wrap .content_wrap .prev_next_wrap a .tit {
  max-width: calc(100% - 78px);
  width: 100%;
  margin-left: 1.2rem;
  font-size: 1.5rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.container.customer_support .board_detail_wrap .content_wrap .go_board {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 16rem;
  height: 6rem;
  margin: 8rem auto 0;
  background-color: #F2F3F6;
  border-radius: 10rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #232323;
}
.container.customer_support .inquiry_wrap {
  padding: 16.7rem 0 20rem;
}
.container.customer_support .inquiry_wrap .inquiry_box {
  width: 70rem;
  margin: auto;
  padding: 3.6rem 3rem 3.2rem;
  background-color: #fff;
  border-radius: 2.4rem;
}
.container.customer_support .inquiry_wrap .inquiry_box .tit_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 2.4rem;
  border-bottom: 0.1rem solid #EAEAEA;
}
.container.customer_support .inquiry_wrap .inquiry_box .tit_box h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.6rem;
}
.container.customer_support .inquiry_wrap .inquiry_box .tit_box p {
  display: flex;
  gap: 0.2rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: #232323;
}
.container.customer_support .inquiry_wrap .inquiry_box .tit_box p .point {
  font-weight: 600;
  color: #EA002C;
}
.container.customer_support .inquiry_wrap .inquiry_box .input_group {
  display: flex;
  gap: 0.8rem;
  flex-direction: column;
  position: relative;
  margin-top: 3rem;
}
.container.customer_support .inquiry_wrap .inquiry_box .input_group label {
  display: flex;
  gap: 0.4rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.6rem;
}
.container.customer_support .inquiry_wrap .inquiry_box .input_group label .point {
  color: #EA002C;
}
.container.customer_support .inquiry_wrap .inquiry_box .input_group input {
  height: 5rem;
  padding: 0 1.6rem;
  border: 0.1rem solid #EAEAEA;
  border-radius: 1.2rem;
  font-family: "Pretendard", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8rem;
  color: #232323;
}
.container.customer_support .inquiry_wrap .inquiry_box .input_group input::placeholder {
  color: #565B64;
}
.container.customer_support .inquiry_wrap .inquiry_box .input_group .textarea_box {
  width: 100%;
  height: 23rem;
  padding: 1.6rem 0.6rem 4rem 1.6rem;
  border: 0.1rem solid #EAEAEA;
  border-radius: 1.2rem;
}
.container.customer_support .inquiry_wrap .inquiry_box .input_group .textarea_box textarea {
  width: 100%;
  height: 100%;
  padding-right: 1rem;
  border: none;
  font-family: "Pretendard", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8rem;
  color: #232323;
}
.container.customer_support .inquiry_wrap .inquiry_box .input_group .textarea_box textarea::placeholder {
  color: #565B64;
}
.container.customer_support .inquiry_wrap .inquiry_box .input_group .textarea_box textarea::-webkit-scrollbar {
  width: 0.3rem;
}
.container.customer_support .inquiry_wrap .inquiry_box .input_group .textarea_box textarea::-webkit-scrollbar-thumb {
  background-color: #D9D9D9;
  border-radius: 3rem;
}
.container.customer_support .inquiry_wrap .inquiry_box .input_group .textarea_box textarea::-webkit-scrollbar-track {
  background-color: transparent;
}
.container.customer_support .inquiry_wrap .inquiry_box .input_group .textarea_box .count_box {
  display: flex;
  gap: 0.2rem;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  left: 0.1rem;
  bottom: 0.1rem;
  width: calc(100% - 0.2rem);
  height: 3.2rem;
  padding: 0 2rem 1.6rem;
  background-color: #fff;
  border-radius: 1.2rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: #727F97;
}
.container.customer_support .inquiry_wrap .inquiry_box .input_group .textarea_box .count_box .count {
  font-weight: 600;
  color: #232323;
}
.container.customer_support .inquiry_wrap .inquiry_box .btn_register {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 5rem;
  margin-top: 5rem;
  background: rgba(0, 108, 233, 0.5);
  border-radius: 1.2rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  pointer-events: none;
}
.container.customer_support .inquiry_wrap .inquiry_box .btn_register.active {
  background: rgb(0, 108, 233);
  pointer-events: auto;
}

@media (max-width: 1440px) {
  .container.news_service .product .content_wrap .product_wrap .nav_btn.left {
    left: 0;
  }
  .container.news_service .product .content_wrap .product_wrap .nav_btn.right {
    right: 0;
  }
}
@media (max-width: 1280px) {
  .container.news_service .product .content_wrap .product_wrap .btn_wrap {
    gap: 1rem;
  }
  .container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product {
    width: calc((100% - 20px) / 3);
    padding: 2rem;
  }
  .container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .top .data_detail {
    font-size: 1.4rem;
  }
  .container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .bottom .detail_wrap span.detail.checkbox_wrap {
    gap: 0;
  }
  .container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .bottom .detail_wrap span.detail.checkbox_wrap label {
    gap: 0.4rem;
  }
  .container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .bottom .price {
    font-size: 2rem;
  }
  .container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .bottom .price .num {
    font-size: 2.6rem;
  }
  .container.customer_support .introduction .content_wrap .txt_wrap .top h3 {
    font-size: 4.4rem;
  }
  .container.customer_support .introduction .content_wrap .img_wrap {
    width: 47rem;
  }
  .container.customer_support .board_wrap .content_wrap .board_list li {
    flex: 1 1 calc(33% - 0.8rem);
  }
}
@media (max-width: 991px) {
  .container.news_service .product {
    padding: 3rem 0 6rem;
  }
  .container.news_service .product .content_wrap .product_wrap ~ .product_wrap {
    margin-top: 6rem;
  }
  .container.news_service .product .content_wrap .product_wrap .title {
    gap: 0.7rem;
    margin-bottom: 2rem;
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .container.news_service .product .content_wrap .product_wrap .btn_wrap {
    flex-direction: column;
    gap: 1.4rem;
    max-height: 55.6rem;
  }
  .container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product {
    width: 100%;
    height: 15.6rem;
    padding: 2rem;
  }
  .container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .top .tit {
    font-size: 1.6rem;
    line-height: 1.9rem;
  }
  .container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .top .data {
    font-size: 2.4rem;
    line-height: 2.9rem;
  }
  .container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .bottom .detail_wrap {
    gap: 0;
  }
  .container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .bottom .detail_wrap span {
    font-size: 1.4rem;
  }
  .container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .bottom .detail_wrap span.detail.checkbox_wrap {
    gap: 0;
  }
  .container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .bottom .detail_wrap span.detail.checkbox_wrap label {
    font-size: 1.4rem;
    gap: 0.4rem;
  }
  .container.news_service .product .content_wrap .product_wrap .btn_wrap .btn_product .bottom .detail_wrap span.detail.checkbox_wrap label::before {
    width: 1.8rem;
    height: 1.8rem;
  }
  .container.news_service .product .content_wrap .product_wrap .nav_btn.right {
    left: 50%;
    right: auto;
    bottom: 0;
    transform: translateX(-50%) rotate(90deg);
  }
  .container.news_service .product .content_wrap .product_wrap .nav_btn.left {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) rotate(-90deg);
  }
  .container.news_service .product .content_wrap .product_wrap.has_slide .btn_wrap {
    position: relative;
  }
  .container.news_service .product .content_wrap .product_wrap.has_slide .btn_wrap::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0rem;
    width: 100%;
    height: 6rem;
    background-color: #f4f9ff;
  }
  .container.news_service .calculate {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3.6rem 2rem 3rem;
    z-index: 10;
  }
  .container.news_service .calculate .content_wrap {
    flex-direction: column;
    gap: 5.4rem;
    padding: 0;
  }
  .container.customer_support .introduction .content_wrap .txt_wrap .top h3 {
    text-align: left;
    font-size: 4rem;
  }
  .container.customer_support .introduction .content_wrap .txt_wrap .top h3 br {
    display: block;
  }
  .container.customer_support .introduction .content_wrap .img_wrap {
    width: 40rem;
  }
}
@media (max-width: 768px) {
  .container.news_service .introduction {
    height: 23rem;
    padding-bottom: 3.2rem;
  }
  .container.news_service .introduction .content_wrap h3 {
    font-size: 2.8rem;
    line-height: 3.3rem;
  }
  .container.news_service .introduction .content_wrap h3 span {
    font-size: 2rem;
  }
  .container.news_service .introduction .content_wrap h4 {
    font-size: 2rem;
  }
  .container.news_service .calculate .content_wrap {
    align-items: flex-start;
    gap: 2rem;
    padding: 0;
  }
  .container.news_service .calculate .content_wrap .tit_wrap {
    padding: 0 0.4rem;
  }
  .container.news_service .calculate .content_wrap .tit_wrap .tit {
    margin-bottom: 0.4rem;
    font-size: 2rem;
  }
  .container.news_service .calculate .content_wrap .tit_wrap .txt {
    font-size: 1.5rem;
  }
  .container.news_service .calculate .content_wrap .result_wrap {
    gap: 1.4rem;
    flex-direction: column;
    width: 100%;
  }
  .container.news_service .calculate .content_wrap .result_wrap .result {
    justify-content: space-between;
    padding: 0 0.4rem;
  }
  .container.news_service .calculate .content_wrap .result_wrap .result .cash {
    gap: 0.4rem;
    padding-bottom: 0.3rem;
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
  .container.news_service .calculate .content_wrap .result_wrap .result .discount .before {
    padding-right: 1.3rem;
    font-size: 1.4rem;
    line-height: 1.7rem;
  }
  .container.news_service .calculate .content_wrap .result_wrap .result .discount .after {
    font-size: 2rem;
  }
  .container.news_service .calculate .content_wrap .result_wrap .result .discount .after .num {
    font-size: 2.6rem;
  }
  .container.news_service .calculate .content_wrap .result_wrap .btn_signup {
    gap: 0.6rem;
    width: 100%;
    height: 5.4rem;
    border-radius: 1.2rem;
    font-size: 1.6rem;
    font-weight: 600;
  }
  .container.news_service .table_list {
    padding: 6rem 0 10rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap ~ .table_list_wrap {
    margin-top: 4.6rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .title {
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 2rem;
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .title img {
    width: 2rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .title .desc {
    width: 100%;
    margin-top: 0.3rem;
    margin-left: 0;
    font-size: 1.4rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .title_desc {
    margin: -1rem 0 2rem;
    font-size: 1.6rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    width: calc(100% + 4rem);
    margin-left: -2rem;
    padding: 0 2rem 2rem;
    box-sizing: border-box;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap::-webkit-scrollbar {
    height: 0.6rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap::-webkit-scrollbar-thumb {
    background-color: #d9d9d9;
    border-radius: 3rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap::-webkit-scrollbar-track {
    margin-left: 2rem;
    background-color: #f3f3f3;
    border-radius: 3rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap .table_wrap {
    width: auto;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap .table_wrap + .table_wrap table.table_combination thead tr:first-child th {
    min-width: 12.7rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap .table_wrap + .table_wrap table.table_combination thead tr:first-child th:first-child {
    min-width: 18.4rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap .table_wrap + .table_wrap table.table_combination thead tr:first-child th:last-child {
    min-width: 12.7rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap .table_wrap table {
    width: auto;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap .table_wrap table thead tr th {
    padding: 1.6rem 0;
    font-size: 1.6rem;
    line-height: 1.9rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap .table_wrap table tbody tr td {
    padding: 1.6rem 0;
    font-size: 1.6rem;
    line-height: 1.9rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap .table_wrap table tbody tr td.bg_gray .point {
    font-size: 1.4rem;
    padding: 0.7rem 1.1rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap .table_wrap table .txt_grayblue {
    font-size: 1.4rem;
    line-height: 1.9rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap .table_wrap table.table_file thead tr:first-child th {
    min-width: 21.1rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap .table_wrap table.table_file thead tr:first-child th:first-child {
    min-width: 20.5rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap .table_wrap table.table_file thead tr:first-child th:nth-child(2) {
    min-width: 29.8rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap .table_wrap table.table_file thead tr:nth-child(2) th {
    width: 50%;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap .table_wrap table.table_combination thead tr:first-child th {
    min-width: 23rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap .table_wrap table.table_combination thead tr:first-child th:first-child {
    min-width: 18.4rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap .table_wrap table.table_combination thead tr:first-child th:last-child {
    min-width: 30rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap .table_wrap table.table_combination.lg_uplus thead tr:first-child th {
    min-width: 13.5rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap .table_wrap table.table_combination.lg_uplus thead tr:first-child th:last-child {
    min-width: 13.5rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap .table_wrap table.table_card thead tr:first-child th {
    min-width: 35.4rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap .table_wrap table.table_card thead tr:first-child th:first-child {
    min-width: 18.4rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap .table_wrap table.table_card thead tr:first-child th:nth-child(2) {
    min-width: 26rem;
  }
  .container.news_service .table_list .content_wrap .table_list_wrap .table_scroll_wrap .table_wrap table.table_coin thead tr:first-child th {
    min-width: 14.8rem;
  }
  .container.customer_support .introduction {
    height: 54rem;
  }
  .container.customer_support .introduction.board {
    height: 23rem;
  }
  .container.customer_support .introduction.board .content_wrap {
    justify-content: center;
  }
  .container.customer_support .introduction.board .content_wrap h3 {
    margin-bottom: 5rem;
    font-size: 2.8rem;
    line-height: 3.3rem;
  }
  .container.customer_support .introduction .content_wrap {
    position: relative;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 13.4rem;
    padding-bottom: 0rem;
  }
  .container.customer_support .introduction .content_wrap .txt_wrap {
    position: relative;
    z-index: 2;
    padding-left: 1rem;
    padding-bottom: 0;
  }
  .container.customer_support .introduction .content_wrap .txt_wrap .top {
    margin-bottom: 1.5rem;
  }
  .container.customer_support .introduction .content_wrap .txt_wrap .top p {
    margin-bottom: 1.5rem;
    font-size: 1.7rem;
  }
  .container.customer_support .introduction .content_wrap .txt_wrap .top h3 {
    font-size: 3.4rem;
    line-height: 4.2rem;
  }
  .container.customer_support .introduction .content_wrap .txt_wrap .bottom .num {
    margin-bottom: 1rem;
    font-size: 3rem;
    line-height: 3.6rem;
  }
  .container.customer_support .introduction .content_wrap .txt_wrap .bottom ul li {
    font-size: 1.4rem;
    line-height: 1.7rem;
  }
  .container.customer_support .introduction .content_wrap .txt_wrap .bottom ul li .ic {
    padding-top: 0.1rem;
  }
  .container.customer_support .introduction .content_wrap .txt_wrap .bottom ul li .type {
    padding: 0 0.8rem 0 1rem;
  }
  .container.customer_support .introduction .content_wrap .img_wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 50rem;
    width: calc(100% - 3rem);
  }
  .container.customer_support .introduction .content_wrap .img_wrap::after {
    display: none;
  }
  .container.customer_support .introduction .content_wrap .btn_contact {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    bottom: 2.7rem;
    transform: translateX(-50%);
    z-index: 1;
    width: 15rem;
    height: 4.9rem;
    background-color: #323232;
    border-radius: 5rem;
    box-shadow: 0 0 1.4rem 0 rgba(0, 0, 0, 0.15);
    font-size: 1.7rem;
    font-weight: 600;
    color: #fff;
  }
  .container.customer_support .tab .content_wrap .tab_list {
    max-width: 33.5rem;
    width: 100%;
    height: 5.4rem;
  }
  .container.customer_support .tab .content_wrap .tab_list li a {
    font-size: 1.6rem;
  }
  .container.customer_support .faq {
    padding: 4rem 0 10rem;
  }
  .container.customer_support .pagination {
    display: none;
  }
  .container.customer_support .contact {
    padding: 4rem 0 10rem;
  }
  .container.customer_support .contact .content_wrap .contact_wrap .contact_item .contact_title {
    flex-wrap: wrap;
    padding: 1.6rem 1rem 1.2rem;
  }
  .container.customer_support .contact .content_wrap .contact_wrap .contact_item .contact_title p.num {
    min-width: 3.5rem;
    padding: 0;
    text-align: left;
  }
  .container.customer_support .contact .content_wrap .contact_wrap .contact_item .contact_title p.tit {
    width: calc(100% - 4.5rem);
    flex: auto;
    padding-left: 0;
  }
  .container.customer_support .contact .content_wrap .contact_wrap .contact_item .contact_title p.name {
    min-width: auto;
    margin-top: 1.4rem;
    padding-left: 3.5rem;
    padding-right: 0;
    font-size: 1.4rem;
  }
  .container.customer_support .contact .content_wrap .contact_wrap .contact_item .contact_title p.date {
    min-width: auto;
    margin-top: 1.4rem;
    padding-left: 1.6rem;
    font-size: 1.4rem;
  }
  .container.customer_support .contact .content_wrap .contact_wrap .contact_item .contact_title p.status {
    width: 5.8rem;
    height: 2.6rem;
    margin-top: 1rem;
    margin-left: auto;
    font-size: 1.2rem;
  }
  .container.customer_support .contact .content_wrap .contact_wrap .contact_item .contact_title.answer {
    padding: 1.6rem 3.2rem 1.6rem 1rem;
  }
  .container.customer_support .contact .content_wrap .contact_wrap .contact_item .contact_title.answer .tit_answer {
    flex: auto;
    gap: 1.9rem;
    align-items: flex-start;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .container.customer_support .contact .content_wrap .contact_wrap .contact_item .contact_title.answer .tit_answer span {
    display: block;
    width: 100%;
    white-space: pre-wrap;
  }
  .container.customer_support .contact .content_wrap .btn_contact {
    margin: 3.6rem auto 0;
  }
  .container.customer_support .contact_detail_wrap {
    padding: 16rem 0 10rem;
  }
  .container.customer_support .contact_detail_wrap .detail_box {
    width: 100%;
    padding: 0 2rem;
  }
  .container.customer_support .contact_detail_wrap .detail_box .detail_info .tit {
    margin: 1.2rem 0 1.6rem;
    font-size: 3rem;
    line-height: 4rem;
  }
  .container.customer_support .contact_detail_wrap .detail_box .detail_desc {
    padding: 3.7rem 0 10rem;
  }
  .container.customer_support .contact_detail_wrap .detail_box .go_list {
    margin-top: 5.4rem;
    width: 100%;
    height: 5.2rem;
  }
  .container.customer_support .board_wrap {
    padding: 4rem 0 10rem;
  }
  .container.customer_support .board_wrap .content_wrap .board_list {
    gap: 2rem;
  }
  .container.customer_support .board_wrap .content_wrap .board_list li {
    flex: 1 1 100%;
  }
  .container.customer_support .board_wrap .content_wrap .board_list li a {
    height: 31rem;
  }
  .container.customer_support .board_wrap .content_wrap .board_list li a .top {
    padding: 3rem;
    font-size: 2.2rem;
    line-height: 3rem;
  }
  .container.customer_support .board_wrap .content_wrap .board_list li a .bottom .category {
    margin-bottom: 1.4rem;
    font-size: 1.4rem;
    line-height: 1.7rem;
  }
  .container.customer_support .board_wrap .content_wrap .board_list li a .bottom .category_tit {
    font-size: 1.8rem;
    line-height: 2.1rem;
  }
  .container.customer_support .board_detail_wrap {
    padding: 14.8rem 0 10rem;
  }
  .container.customer_support .board_detail_wrap .content_wrap .thumbnail {
    height: auto;
  }
  .container.customer_support .board_detail_wrap .content_wrap .board_txt_wrap .tit_wrap {
    padding-bottom: 3.5rem;
  }
  .container.customer_support .board_detail_wrap .content_wrap .board_txt_wrap .tit_wrap .top {
    margin-bottom: 1.2rem;
  }
  .container.customer_support .board_detail_wrap .content_wrap .board_txt_wrap .tit_wrap h4 {
    font-size: 3rem;
    line-height: 4rem;
  }
  .container.customer_support .board_detail_wrap .content_wrap .prev_next_wrap {
    margin-top: 10rem;
  }
  .container.customer_support .board_detail_wrap .content_wrap .prev_next_wrap a .tit {
    font-weight: 500;
  }
  .container.customer_support .board_detail_wrap .content_wrap .go_board {
    max-width: 100%;
    height: 5.2rem;
    margin-top: 5.4rem;
  }
  .container.customer_support .inquiry_wrap {
    min-height: calc(100vh - 33rem);
    padding: 14.6rem 0 10rem;
  }
  .container.customer_support .inquiry_wrap .inquiry_box {
    width: 100%;
    padding: 0 2rem;
  }
  .container.customer_support .inquiry_wrap .inquiry_box .tit_box h3 {
    line-height: 2rem;
  }
  .container.customer_support .inquiry_wrap .inquiry_box .input_group {
    margin-top: 2rem;
  }
  .container.customer_support .inquiry_wrap .inquiry_box .input_group:first-child {
    margin-top: 2.4rem;
  }
  .container.customer_support .inquiry_wrap .inquiry_box .btn_register {
    margin-top: 2rem;
  }
}

/*# sourceMappingURL=style.css.map */
