@charset "UTF-8";
/* *******************************************************
 * filename : sub.css
 * description : 주소록관리, 고객센터 및 기타 CSS
 * date : 2023-05-23
******************************************************** */
/* ***************************
 * 1:1 온라인 상담
 *************************** */
/* 목록 */
article.DesignLineListTypeA .listTR .post_item .info .icon.status_complete {
  border-color: #e9e9e9;
  color: #333333;
  background: #e9e9e9;
  letter-spacing: -0.5px; /* update 2023/10/13 lyh */
}

/* 목록상단 상담글 등록 Heros */
div.online_inquiry {
  overflow: hidden;
  position: relative;
  background-color: #E9ECEF;
  padding: 20px 40px;
  color: #bbe8df;
}
div.online_inquiry.bbslist {
  padding: 0 40px;
}
div.online_inquiry.innerbx-inq {
  display: flex;
  align-items: center;
  gap: 24px;
}
div.online_inquiry.innerbx-inq .innerbxq.left {
  min-width: calc(100% - 400px);
  display: flex;
  flex-direction: row;
  gap: 24px; /*update 2023/10/06 jh*/
  align-items: center;
}
div.online_inquiry.innerbx-inq .innerbxq.left.bbslist {
  gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 400px;
}
div.online_inquiry.innerbx-inq .innerbxq.left.bbslist h3 {
  max-width: 100%;
}
div.online_inquiry div.alphabtns {
  width: 100%;
}
div.online_inquiry div.alphabtns .alphabtn {
  max-width: 400px;
}
div.online_inquiry h3 {
  color: #333;
  font-size: 26px; /* update 2023/10/11 lyh */
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: 200px;
  letter-spacing: -2.2px; /* update 2023/10/11 lyh */
}
div.online_inquiry h3 > strong {
  font-weight: 700;
  color: #333;
}
div.online_inquiry p.desc {
  color: #333;
  font-size: 14px;
  font-weight: 400;
}
div.online_inquiry p.desc em {
  font-weight: 700;
}
div.online_inquiry div.callmesg {
  background-color: #868B97;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  /*gap: 10px;*/
  min-width: 380px;   /* update 2023/10/11 lyh */
}
div.online_inquiry div.callmesg div.callcenter {
  flex: 0 1 40%;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
div.online_inquiry div.callmesg div.callcenter div.callphone {
  flex: none;
  width: 205px;   /* update 2023/11/13 lyh */
  padding: 0 10px 0 40px; /* update 2023/11/13 lyh */
  background: url(../img/icon/callcenter.svg) no-repeat 0 1px;
  background-size: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
div.online_inquiry div.callmesg div.callcenter div.callphone a {
  white-space: initial;
  display: block;
  font-size: 20px;
  line-height: 1em;
  font-weight: 700;
  color: #fff;
}
div.online_inquiry div.callmesg div.callcenter div.callphone span {
  display: block;
  white-space: initial;
  font-size: 12px;
  color: #CACACA;
}
div.online_inquiry div.callmesg ul.right {
  flex: 0 1 60%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  border-left: solid 1px rgba(255, 255, 255, 0.3);
  padding-left: 10px;
}
div.online_inquiry div.callmesg ul.right li {
  flex: 1;
  cursor: pointer;
  text-align: left;
}
div.online_inquiry div.callmesg ul.right li a {
  position: relative;
  display: inline-block;
  padding: 0px 10px 0px 31px;
}
div.online_inquiry div.callmesg ul.right li a span,
div.online_inquiry div.callmesg ul.right li a strong {
  display: block;
  color: #fff;
  white-space: nowrap;
  text-align: left;
}
div.online_inquiry div.callmesg ul.right li a span {
  font-size: 12px;
  line-height: 16px;
}
div.online_inquiry div.callmesg ul.right li a strong {
  font-size: 14px;
  max-width: 120px;
  white-space: initial;
}
div.online_inquiry div.callmesg ul.right li a::before {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -12px;
  left: 0;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 24px;
  filter: saturate(200%);
  content: "";
}
div.online_inquiry div.callmesg ul.right li.telegram a::before {
  background-image: url(../img/sub/telegram.png);
}
div.online_inquiry div.callmesg ul.right li.kakaotalk a::before {
  background-image: url(../img/sub/kakao-talk.png);
}

/* 그냥 중간정렬해버림.. 임팀장 요구사항: 하나만 나올수 있다. */
@media screen and (max-width: 390px) {
  div.online_inquiry div.callmesg {
    flex-direction: column;
  }
  div.online_inquiry div.callmesg div.callcenter {
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    border-right: 0;
    padding-bottom: 5px;
  }
  div.online_inquiry div.callmesg ul.right {
    padding-top: 5px;
    flex-direction: column;
    gap: 5px;
  }
  div.online_inquiry div.callmesg ul.right li {
    width: 100%;
    text-align: center;
    padding-bottom: 5px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  }
  div.online_inquiry div.callmesg ul.right li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  div.online_inquiry div.callmesg ul.right li a {
    width: 120px;
    padding-left: 55px;
  }
}
/* ***************************
 * 고객센터 공통
 *************************** */
fieldset.ccenter {
  padding: 0;
  background-color: #E9ECEF;
}
fieldset.ccenter form .elewrap {
  border-color: rgba(0, 0, 0, 0.1) !important;
}
fieldset.ccenter form .elewrap input::placeholder {
  color: #ddd;
}

/* create 2023/09/15 정재홍 */
/* ***************************
 * 카카오 변수설명
 *************************** */
fieldset.kakaoTemplate {
  background-color: #E9ECEF;
  border-radius: 8px;
}

/* ***************************
 * 주소록관리 공통
 *************************** */
.DesignTableListTypeA .contactphone {
  font-family: Helvetica;
}
.DesignTableListTypeA .callblock {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/icon/ico_block.svg) no-repeat 50%/contain;
}

div.bottomFixControl {
  max-width: 695px;
  margin: 24px auto 0 auto;
}
div.bottomFixControl.fixed {
  position: fixed;
  width: 100vw;
  left: 0;
  right: 0;
  bottom: 15px;
  z-index: 1;
  max-width: 1000px;
  margin: auto;
}
div.bottomFixControl.fixed .sendMesgForms {
  margin-top: 10px;
}
div.bottomFixControl .botctrlbtns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0;
  gap: 6px;
}
div.bottomFixControl .botctrlbtns button.botctrlbtn {
  flex: 1;
  display: flex;
  color: #fff;
  background-color: #868B8F;
  height: 50px;
  border: solid 1px #646464;
  font-size: 0;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
}
div.bottomFixControl .botctrlbtns button.botctrlbtn span {
  display: block;
  position: relative;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  text-align: center;
}
div.bottomFixControl .botctrlbtns button.botctrlbtn span::before {
  margin-right: 8px;
  content: "";
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  position: relative;
  display: inline-block;
  top: 2px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
}
div.bottomFixControl .botctrlbtns button.botctrlbtn span.delete::before {
  background-image: url(../img/icon/ico_delete.svg);
}
div.bottomFixControl .botctrlbtns button.botctrlbtn span.modify::before {
  background-image: url(../img/icon/ico_modify.svg);
}
div.bottomFixControl .botctrlbtns button.botctrlbtn span.move::before {
  background-image: url(../img/icon/ico_move.svg);
}
div.bottomFixControl .botctrlbtns button.botctrlbtn span.copy::before {
  background-image: url(../img/icon/ico_copy.svg);
}
div.bottomFixControl .botctrlbtns button.botctrlbtn span.reject::before {
  background-image: url(../img/icon/ico_cross.svg);
}
div.bottomFixControl .botctrlbtns button.botctrlbtn span.empty::before {
  background-image: url(../img/icon/ico_empty.svg);
}
div.bottomFixControl .botctrlbtns button.botctrlbtn span.add::before {
  background-image: url(../img/icon/ico_add.svg);
}
div.bottomFixControl .botctrlbtns button.botctrlbtn + button.botctrlbtn {
  border-left: 0;
}
div.bottomFixControl .sendMesgForms {
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0;
  gap: 16px;
  margin-top: 24px;
}
div.bottomFixControl .sendMesgForms .mesgCombo {
  position: relative;
  width: 50%;
  min-width: 145px;
  height: 48px;
  border: solid 1px #033F7B;
  background-color: #fff;
  padding-left: 15px;
  box-sizing: border-box;
  border-radius: 6px;
}
div.bottomFixControl .sendMesgForms .mesgCombo select {
  display: block;
  appearance: none;
  border: 0;
  width: 100%;
  height: 50px;
  font-size: 16px;
  color: #1976d2;
  outline: none;
  text-align: center;
  font-weight: 500;
  line-height: 48px;
  background: url(../img/icon/ico_dropdown.svg) no-repeat calc(100% - 20px)/16px;
}
div.bottomFixControl .sendMesgForms button.botSendBtn {
  display: block;
  box-sizing: border-box;
  width: 50%;
  background-color: #1976d2;
  border: solid 1px #033f7b;
  border-bottom: 0;
  border-radius: 6px;
}
div.bottomFixControl .sendMesgForms button.botSendBtn span {
  display: block;
  height: 50px;
  font-size: 16px;
  line-height: 48px;
  font-weight: 700;
  color: #fff;
}

/* ***************************
 * 주소록관리 등록/수정 화면
 *************************** */
.aboutSyncContact .checklabel {
  padding-right: 2px !important;
}
.aboutSyncContact i {
  position: relative;
  top: 2px;
  cursor: pointer;
  margin-left: -2px;
  font-size: 19px;
  color: #999;
}

.whatSyncContact {
  display: none;
  padding: 10px;
  border-radius: 5px;
  background-color: #3a3d57;
  color: #fff;
  font-size: 12px;
  line-height: 1.4em;
}
.whatSyncContact span {
  color: #00d1ff;
}

/* ***************************
 * 메모장 간편등록/ 엑셀 대량 업로드 공통
 *************************** */
.noteRegisterHeros {
  overflow: hidden;
  position: relative;
  background-color: var(--color_mypage);
  background-image: var(--gradient_variety);
  padding: 0 20px;
  color: #bbe8df;
  height: 160px;
}
.noteRegisterHeros.cmx {
  background-image: none;
  background-color: #fff;
}
.noteRegisterHeros.cmx .titx {
  position: absolute;
  left: 0;
  bottom: 32px;
}
.noteRegisterHeros.cmx h3 {
  color: #1E1E23;
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  /* 145.455% */
  padding-top: 0;
  height: auto;
  width: auto;
}
.noteRegisterHeros.cmx:before, .noteRegisterHeros.cmx:after {
  display: none;
}
.noteRegisterHeros.cmx .innerbx {
  max-width: 420px;
  height: 100%;
  position: relative;
  margin: auto;
}
.noteRegisterHeros.cmx .innerbx:after {
  width: 115px;
  height: 115px;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url(../img/sub/contact/notebg.svg);
  background-size: 100%;
  background-position: center;
}
.noteRegisterHeros h3 {
  position: relative;
  z-index: 2;
  width: 200px;
  height: 80px;
  padding-top: 40px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2em;
  word-spacing: -1px;
  text-shadow: var(--color_mypage_txt_shadow);
}
.noteRegisterHeros h3 strong {
  color: #fff;
  font-weight: 900;
  text-shadow: var(--color_mypage_txt_shadow);
}
.noteRegisterHeros h3 span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  word-spacing: 0;
}
.noteRegisterHeros::before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 192px;
  height: 80px;
  width: 80px;
  background: url(../img/sub/contact/notepad1.png) no-repeat 0 0/contain;
  transform: rotate(-19deg);
  filter: blur(2px);
}
.noteRegisterHeros::after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 229px;
  height: 160px;
  width: 160px;
  background: url(../img/sub/contact/notepad2.png) no-repeat 0 0/contain;
  transform: rotate(30deg);
}

.excelRegisterHeros {
  overflow: hidden;
  position: relative;
  background-color: var(--color_mypage);
  background-image: var(--gradient_variety);
  padding: 0 20px;
  color: #bbe8df;
  height: 160px;
}
.excelRegisterHeros h3 {
  position: relative;
  z-index: 2;
  width: 200px;
  height: 80px;
  padding-top: 40px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2em;
  word-spacing: -1px;
  text-shadow: var(--color_mypage_txt_shadow);
}
.excelRegisterHeros h3 strong {
  color: #fff;
  font-weight: 900;
  text-shadow: var(--color_mypage_txt_shadow);
}
.excelRegisterHeros h3 span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  word-spacing: 0;
}
.excelRegisterHeros::before {
  content: "";
  display: block;
  position: absolute;
  top: -18px;
  left: 146px;
  height: 80px;
  width: 80px;
  background: url(../img/sub/contact/notepad1.png) no-repeat 0 0/contain;
  transform: rotate(-19deg);
  filter: blur(2px);
}
.excelRegisterHeros::after {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 185px;
  height: 160px;
  width: 160px;
  background: url(../img/sub/contact/addressbook.png) no-repeat 0 0/contain;
  transform: rotate(10deg);
}

.contactStep {
  position: relative;
  background-color: #d9dde3;
  border-radius: 7px;
  padding: 10px;
  /*letter-spacing: -1px;*/ /*update hj 230908*/
  /*word-spacing: -1px;*/   /*update hj 230908*/
  font-size: 14px;
}

.registerAvailable {
  padding: 15px 15px 0;
  border-bottom: solid 1px #f1f1f1;
}
.registerAvailable .contactStep {
  margin-top: 0;
  margin-bottom: 10px;
}
.registerAvailable .registerResult {
  display: flex;
  flex-direction: column;
  gap: 1px;
  box-sizing: border-box;
  background-clip: padding-box;
  margin-bottom: 10px;
}
.registerAvailable .registerResult li {
  cursor: pointer;
  background: #e1e7e8;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  border: solid 2px #e1e7e8;
}
.registerAvailable .registerResult li:first-child {
  border-radius: 7px 7px 0 0;
}
.registerAvailable .registerResult li:last-child {
  border-radius: 0 0 7px 7px;
}
.registerAvailable .registerResult li:hover, .registerAvailable .registerResult li.on {
  background-color: #fff;
  border-color: #444;
}
.registerAvailable .registerResult li span,
.registerAvailable .registerResult li em,
.registerAvailable .registerResult li strong {
  display: inline-block;
  line-height: 20px;
}
.registerAvailable .registerResult li em {
  font-size: 12px;
  width: 50px;
  color: #555;
}
.registerAvailable .registerResult li span {
  text-align: right;
  display: block;
}
.registerAvailable .registerResult li span strong {
  font-family: Helvetica;
  color: #666;
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
  padding-right: 2px;
}

@media screen and (min-width: 301px) {
  .registerAvailable .registerResult {
    flex-direction: row;
    gap: 10px;
  }
  .registerAvailable .registerResult li {
    flex: 1;
    flex-direction: column;
    border-radius: 7px !important;
  }
  .registerAvailable .registerResult li.req em::before {
    background-image: url(../img/icon/ico_readreq.svg);
  }
  .registerAvailable .registerResult li.suc em::before {
    background-image: url(../img/icon/ico_readsuc.svg);
  }
  .registerAvailable .registerResult li.err em::before {
    background-image: url(../img/icon/ico_readerr.svg);
  }
  .registerAvailable .registerResult li em,
  .registerAvailable .registerResult li span {
    line-height: 18px;
  }
  .registerAvailable .registerResult li em {
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
  }
  .registerAvailable .registerResult li em::before {
    display: block;
    height: 35px;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 35px;
    content: "";
  }
  .registerAvailable .registerResult li > span {
    display: block;
    padding-top: 2px;
    text-align: center;
  }
  .registerAvailable .registerResult li > span strong {
    padding-top: 5px;
    font-size: 17px;
    padding-right: 1px;
  }
}
.readResultList {
  padding-top: 0;
}
.readResultList table.fixed tbody th {
  vertical-align: middle;
}
.readResultList table.fixed tbody th i.xi-check-circle-o,
.readResultList table.fixed tbody th i.xi-close-circle-o {
  position: relative;
  font-size: 20px;
}
.readResultList table.fixed tbody th i.xi-check-circle-o {
  color: var(--color_status_succ);
}
.readResultList table.fixed tbody th i.xi-close-circle-o {
  color: var(--color_status_fail);
}

/* ***************************
 * 메모장, 엑셀업로드 광고
 *************************** */
.adscrollArea {
  position: relative;
}
.adscrollArea .swipeArea {
  display: flex;
  gap: 15px;
  position: relative;
  padding: 0 15px 15px 10px;
  overflow: scroll hidden;
  height: 81px;
  white-space: nowrap;
  width: 100%;
  scrollbar-width: none;
}
.adscrollArea .swipeArea::-webkit-scrollbar {
  display: none;
}
.adscrollArea::before, .adscrollArea::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15px;
  z-index: 1;
  display: none;
}
.adscrollArea::before {
  left: -3px;
  background-image: linear-gradient(-270deg, #e8ebee 6px, rgba(244, 246, 248, 0));
}
.adscrollArea::after {
  right: -3px;
  background-image: linear-gradient(270deg, #e8ebee 6px, rgba(244, 246, 248, 0));
}

a.banner_mobileContacts,
a.banner_noteRegister,
a.banner_excelUpload {
  width: 270px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: var(--shadow_content);
  box-sizing: border-box;
  display: flex;
  padding: 15px 10px 15px 5px;
  text-decoration: none;
  align-items: center;
  line-height: 1em;
}
a.banner_mobileContacts figure,
a.banner_noteRegister figure,
a.banner_excelUpload figure {
  width: 60px;
  height: 50px;
  font-size: 0;
  background: url(../img/sub/contact/notepad2.png) no-repeat 50%/50px;
}
a.banner_mobileContacts > span,
a.banner_noteRegister > span,
a.banner_excelUpload > span {
  flex: 1 1;
  display: inline-block;
  padding: 0 10px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
}
a.banner_mobileContacts > span span,
a.banner_noteRegister > span span,
a.banner_excelUpload > span span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
}
a.banner_mobileContacts > span em,
a.banner_noteRegister > span em,
a.banner_excelUpload > span em {
  font-weight: 700;
  color: #09aa5c;
}

a.banner_excelUpload figure {
  background-image: url(../img/sub/contact/addressbook.png);
}
a.banner_excelUpload > span em {
  color: #1976d2;
}

a.banner_mobileContacts figure {
  background-image: url(../img/sub/contact/naveraddress.png);
  background-size: 60px;
}
a.banner_mobileContacts > span em {
  color: #129fb0;
}

/* ***************************
 * 모바일 주소록가져오기 가이드
 *************************** */
.mobileContactGuide {
  position: relative;
  padding: 0;
  text-align: center;
}
.mobileContactGuide article.step {
  padding: 60px 15px 20px;
}
.mobileContactGuide article.step:last-child {
  padding-bottom: 200px;
}
.mobileContactGuide article.step h3 {
  padding: 10px 0 20px;
  font-size: 25px;
  font-weight: 700;
  line-height: 29px;
  word-spacing: -1px;
  color: #333940;
}
.mobileContactGuide article.step h4 {
  font-size: 15px;
  font-weight: 500;
  line-height: 17px;
  color: #444;
  padding-bottom: 20px;
}
.mobileContactGuide article.step p {
  font-size: 13px;
  color: #999;
  line-height: 17px;
  padding-bottom: 20px;
  word-spacing: -1px;
}
.mobileContactGuide article.step figure.imgwrap {
  overflow: hidden;
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
.mobileContactGuide article.step figure.imgwrap.w250 img {
  width: 250px;
}
.mobileContactGuide article.step figure.imgwrap img {
  width: 100%;
  border: 0;
}
.mobileContactGuide article.step figure.imgwrap::after {
  content: "";
  display: block;
  height: 40px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-image: linear-gradient(0deg, #fff 6px, rgba(255, 255, 255, 0));
}

/* ***************************
 * 회사소개
 *************************** */
.aboutservice {
  position: relative;
  padding: 20px 20px 50px;
  background-color: var(--color_bg_main);
  color: #fff;
  border-radius: 8px 8px 0px 0px;
}
.aboutservice .keyvisual {
  text-align: center;
  padding: 0px 0 40px;
}
.aboutservice .keyvisual span {
  display: inline-block;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  word-spacing: -0.05em;
  color: #fff;
}
.aboutservice .keyvisual .logo {
  display: block;
  height: 60px;
  font-size: 0;
  background-size: contain;
}
.aboutservice .keyvisual .logo img {
  width: 100%;
}
.aboutservice .servicetype {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.aboutservice .servicetype dl {
  position: relative;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  min-height: 50px;
  box-sizing: border-box;
  overflow: hidden;
  background-clip: border-box;
  display: flex;
  flex-direction: column;
}
.aboutservice .servicetype dl dt {
  height: 55px;
  position: relative;
  background: #fff;
}
.aboutservice .servicetype dl dt::before {
  position: absolute;
  top: 3px;
  left: 50%;
  margin-left: -25px;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50px 50px;
  content: "";
}
.aboutservice .servicetype dl dd {
  padding: 16px 10px;
  background: #E0E6F0;
  text-align: center;
}
.aboutservice .servicetype dl h4.tit {
  color: #000;
  font-size: 18px;
  font-weight: 700;
}
.aboutservice .servicetype dl h4.tit.hidden-text {
  display: none;
}
.aboutservice .servicetype dl p.desc {
  color: #222;
  font-size: 14px;
  font-weight: 500;
}
.aboutservice .servicetype dl.nsms dt::before {
  background-image: url(../img/icon/m_nmms_c.svg);
}
.aboutservice .servicetype dl.esms dt::before {
  background-image: url(../img/icon/m_esms_c.svg);
}
.aboutservice .servicetype dl.kkoa dt::before {
  background-image: url(../img/icon/m_kkoc_c.svg);
}
.aboutservice .servicetype dl.rsms dt::before {
  background-image: url(../img/icon/m_rsms_c.svg);
}
.aboutservice p.etcmesg {
  text-align: center;
  margin-top: 13px;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.44);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

.bettermessage {
  position: relative;
  background-color: var(--color_bg_main);
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding: 40px 0;
  border-radius: 0px 0px 8px 8px;
}
.bettermessage p {
  margin-bottom: 20px;
}
.bettermessage p span {
  display: block;
  color: #adc7fb;
  font-size: 20px;
  line-height: 1.2em;
  font-weight: 700;
  text-align: center;
}
.bettermessage p span em {
  color: #fff;
  font-weight: 700;
}
.bettermessage .btnabout {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  border: solid 2px #fff;
  border-radius: 20px;
  padding: 2px 10px;
}

.aboutMesg {
  background-color: #e5e3dd;
  padding: 24px 0;
  text-align: center;
}

.aboutMesg h3 {
  color: #000;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}
.aboutMesg p {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 25px;
}
.aboutMesg ul.tab_round {
  background-color: #fff;
  border-radius: 32px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 300px;
  margin-bottom: 10px;
  margin-top: 15px;
}
.aboutMesg ul.tab_round li {
  width: 33.3%;
  font-size: 15px;
  font-weight: 700;
  line-height: 32px;
  font-family: Helvetica;
  color: #555;
  border-radius: 32px;
  cursor: pointer;
}
.aboutMesg ul.tab_round li.on {
  background-color: var(--color_bg_main);
  color: #fff;
}
.aboutMesg.kakaotalk ul.tab_round li {
  width: 50%;
}
.aboutMesg .desc {
  width: 100%;
  max-width: 360px;
  margin: auto;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.aboutMesg .desc .descimgwrap {
  width: 100%;
  padding-top: 30px;
}
.aboutMesg .desc .descimgwrap .mesgImg {
  position: relative;
  width: 100%;
  text-align: center;
  display: none;
}
.aboutMesg .desc .descimgwrap .mesgImg:first-child {
  display: block;
}
.aboutMesg .desc .descimgwrap .mesgImg h4 {
  color: #222;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  /* 110% */
}
.aboutMesg .desc .descimgwrap .mesgImg span {
  color: #222;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}
.aboutMesg .desc .descimgwrap .mesgImg figure {
  display: block;
  margin: 0 auto;
  width: calc(100% - 60px);
  box-sizing: border-box;
  text-align: center;
  min-height: 380px;
  border-bottom: solid 1px #d6d1c6;
}
.aboutMesg .desc .descimgwrap .mesgImg figure img {
  width: 260px;
}

/* ***************************
 * 선거문자 이용가이드
 *************************** */
.electionGuide .sec_intro {
  height: 320px;
  position: relative;
  background-image: linear-gradient(170.83deg, #ffffff 17.82%, #b6f0b5 31.89%, #6ca9e2 46.97%, #1976d2 62.55%, #004386 114.32%);
}
.electionGuide .sec_intro h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -60px;
  text-align: right;
  color: #fff;
  padding: 0 15px;
}
.electionGuide .sec_intro h2 strong {
  text-align: right;
  display: block;
  width: 260px;
  height: 81px;
  background: url(../img/sub/txt_electionguide.png) no-repeat top right/contain;
}
.electionGuide .sec_intro h2 em {
  display: block;
  font-size: 12px;
  word-spacing: -2.4px;
  font-weight: 400;
}
.electionGuide .sec_help {
  position: relative;
}
.electionGuide .sec_help .topwrap {
  height: 320px;
  position: relative;
}
.electionGuide .sec_help .topwrap:before {
  content: "";
  left: 0;
  top: 0;
  width: 30%;
  height: 100%;
  position: absolute;
  background: url(../img/sub/flowerrain.png) no-repeat top left/contain;
  transform: rotateY(180deg);
}
.electionGuide .sec_help .topwrap:after {
  content: "";
  right: 15%; /* update 2023/08/25 lyh */
  top: 0;
  width: 30%;
  position: absolute;
  height: 100%;
  background: url(../img/sub/flowerrain.png) no-repeat top right/contain;
}
.electionGuide .sec_help .topwrap h3 {
  padding: 66px 15px 54px;
  font-size: 34px;
  line-height: 41px;
  text-align: center;
}
.electionGuide .sec_help .topwrap h3 span {
  display: block;
  font-size: 17px;
  line-height: 25px;
  font-weight: 500;
  color: #222;
}
.electionGuide .sec_help .topwrap h3 strong {
  font-weight: 700;
  color: #555;
  word-spacing: -2.4px;
}
.electionGuide .sec_help .topwrap h3 strong em {
  font-weight: 700;
}
.electionGuide .sec_help .topwrap h3 strong em.blue {
  color: #207fdd;
  font-weight: 900;
}
.electionGuide .sec_help .topwrap h3 strong em.orange {
  color: #ff7a00;
  font-weight: 900;
}
.electionGuide .sec_help .topwrap h3 p {
  font-size: 14px;
  padding: 15px 0 30px;
  font-weight: 500;
}
.electionGuide .sec_help .topwrap h3 p em {
  display: inline-block;
  padding: 0 5px;
  background-color: #1976d2;
  color: #fff;
  font-weight: 700;
}
.electionGuide .sec_help .meritwrap {
  height: 100%;
  padding: 40px 15px;
  background-color: var(--color_bg_main);
  color: #fff;
  text-align: center;
}
.electionGuide .sec_help .meritwrap h4 {
  font-size: 24px;
  margin-bottom: 36px;
  font-weight: 400;
  background: url(../img/sub/bgbluestrong.svg) no-repeat center bottom/185px;
}
.electionGuide .sec_help .meritwrap ul.merits {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 0 70px;
}
.electionGuide .sec_help .meritwrap ul.merits li {
  flex-basis: calc(33.33% - 20px);
  position: relative;
  padding: 5px 10px 10px 47px;
  font-size: 12px;
  line-height: 17px;
  text-align: left;
}
.electionGuide .sec_help .meritwrap ul.merits li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 40px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 20px;
}
.electionGuide .sec_help .meritwrap ul.merits li.callblock::before {
  content: "080";
  font-family: Helvetica;
  color: #1976d2;
  text-align: center;
  line-height: 40px;
  font-weight: 900;
  font-size: 16px;
}
.electionGuide .sec_help .meritwrap ul.merits li.telecom::before {
  background-image: url(../img/icon/telecom3connect.svg);
}
.electionGuide .sec_help .meritwrap ul.merits li.return::before {
  background-image: url(../img/icon/ico_refresh.svg);
}
.electionGuide .sec_help .meritwrap ul.merits li.recharge::before {
  background-image: url(../img/icon/ico_impression.svg);
}
.electionGuide .sec_help .meritwrap ul.merits li.schedule::before {
  background-image: url(../img/icon/ico_schedule.svg);
}
.electionGuide .sec_help .meritwrap ul.merits li.result::before {
  background-image: url(../img/icon/ico_searchround.svg);
}
.electionGuide .sec_know .topwrap {
  padding: 80px 15px 20px;
}
.electionGuide .sec_know .topwrap h3 {
  text-align: center;
  margin-bottom: 10px;
}
.electionGuide .sec_know .topwrap h3 strong {
  position: relative;
  display: block;
  font-size: 26px;
  line-height: 27px;
  word-spacing: -2px;
  font-weight: 700;
}
.electionGuide .sec_know .topwrap h3 strong::before {
  position: relative;
  margin: 0 auto;
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  background: url(../img/sub/blueelectionbox.png) no-repeat 50%/contain;
}
.electionGuide .sec_know .topwrap h3 span {
  font-size: 20px;
  line-height: 27px;
}
.electionGuide .sec_know .topwrap div.pxs {
  text-align: center;
  display: flex;
  max-width: 360px;
  margin: auto auto 40px auto;
  gap: 30px;
}
.electionGuide .sec_know .topwrap div.pxs .innerpbx {
  flex: 1;
}
.electionGuide .sec_know .topwrap div.pxs span {
  display: block;
  font-size: 13px;
  line-height: 1.6em;
  padding: 10px 0 5px;
}
.electionGuide .sec_know .topwrap div.pxs a {
  display: inline-block;
  background-color: #a7a7a7;
  padding: 1px 10px;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
}
.electionGuide .sec_know .chklist {
  height: 100%;
  background-color: #d8d7d0;
  padding: 50px 0px 40px;
}
.electionGuide .sec_know .chklist h4 {
  text-align: center;
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 6px;
}
.electionGuide .sec_know .chklist h4 strong {
  font-weight: 700px;
  color: #581212;
}
.electionGuide .sec_know .chklist p {
  padding: 1px 0 40px;
  font-size: 11px;
  line-height: 15px;
  text-align: center;
}
.electionGuide .sec_know .chklist p strong {
  font-size: 12px;
  color: #ba0c0c;
}
.electionGuide .sec_know .chklist ul.chknumlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 0 34px;
}
.electionGuide .sec_know .chklist ul.chknumlist li {
  position: relative;
  width: calc(100% / 4 - 10px);
  padding: 5px 0 10px 47px;
  font-size: 11px;
  line-height: 15px;
  word-spacing: -1.2px;
  text-align: left;
  color: #636053;
}
.electionGuide .sec_know .chklist ul.chknumlist li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 40px;
  height: 40px;
  display: block;
  font-family: Helvetica, Noto Sans CJK KR;
  font-size: 13px;
  font-weight: 900;
  color: #32363E;
  line-height: 40px;
  text-align: center;
  border-radius: 40px;
  background-color: #fff;
}
.electionGuide .sec_know .chklist ul.chknumlist li.chknum1::before {
  content: "8";
}
.electionGuide .sec_know .chklist ul.chknumlist li.chknum2::before {
  content: "24";
}
.electionGuide .sec_know .chklist ul.chknumlist li.chknum3::before {
  content: "포토";
}
.electionGuide .sec_know .chklist ul.chknumlist li.chknum4::before {
  content: "1";
}
.electionGuide .sec_know .chklist ul.chknumlist li.chknum5::before {
  content: "118";
}
.electionGuide .sec_know .chklist ul.chknumlist li.chknum6::before {
  content: "080";
}
.electionGuide .sec_know .chklist ul.chknumlist li.chknum7::before {
  content: "제목";
}
.electionGuide .sec_know .chklist ul.chknumlist li.chknum8::before {
  content: "20";
}
.electionGuide .sec_notation {
  padding-top: 100px;
  text-align: center;
}
.electionGuide .sec_notation h3 {
  font-size: 26px;
  line-height: 35px;
  color: #222;
  word-spacing: -1.4px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
}
.electionGuide .sec_notation p {
  text-align: center;
  font-size: 10px;
  color: #999;
  line-height: 1.4em;
  margin-bottom: 30px;
}
.electionGuide .sec_notation .notation {
  padding: 0 20px 50px;
}
.electionGuide .sec_notation .notation img {
  width: 100%;
  max-width: 320px;
  border: 0;
}
.electionGuide .sec_notation .calsendnum {
  padding: 20px;
  text-align: left;
  background-color: #ecedee;
}
.electionGuide .sec_notation .calsendnum h4 {
  font-size: 22px;
  line-height: 35px;
  color: #222;
  word-spacing: -1.4px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}
.electionGuide .sec_notation .calsendnum h5 {
  font-size: 14px;
  line-height: 30px;
  font-weight: 500;
  color: #222;
  word-spacing: -1.4px;
}
.electionGuide .sec_notation .calsendnum ul.disc li {
  font-size: 11px;
  padding-bottom: 1px;
}
.electionGuide .sec_howto {
  padding-top: 100px;
}
.electionGuide .sec_howto h3 {
  font-size: 26px;
  line-height: 35px;
  color: #222;
  word-spacing: -1.4px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
}
.electionGuide .sec_howto p {
  text-align: center;
  font-size: 10px;
  color: #999;
  line-height: 1.4em;
  margin-bottom: 30px;
}
.electionGuide .sec_howto ol {
  padding: 0 15px 40px;
}
.electionGuide .sec_howto ol > li {
  margin-bottom: 20px;
  text-align: left;
}
.electionGuide .sec_howto ol > li a {
  display: block;
  width: 150px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #333;
  word-spacing: -1.4px;
  white-space: nowrap;
}
.electionGuide .sec_howto ol > li a em {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  color: #fff;
  background-color: #fff;
  border-radius: 20px;
  margin-right: 5px;
  font-weight: 700;
  font-family: Helvetica;
  text-align: center;
}
.electionGuide .sec_howto ol > li ul.disc {
  width: 100%;
  padding: 6px 0 10px 20px;
}
.electionGuide .sec_howto ol > li ul.disc li {
  text-align: left;
}
.electionGuide .sec_qna {
  padding-top: 100px;
}
.electionGuide .sec_qna h3 {
  padding: 0 20px;
  font-size: 26px;
  line-height: 35px;
  color: #222;
  word-spacing: -1.4px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
}
.electionGuide .sec_qna article.DesignFAQList {
  border-top: 0 none;
  background-color: #fff;
  padding: 40px 0 90px 0px;
}
.electionGuide .sec_qna article.DesignFAQList .qna_list .qna_item button.btn_more {
  padding: 17px 20px 15px 40px;
  background-color: #fff;
  border-radius: 0;
}
.electionGuide .sec_qna article.DesignFAQList .qna_list .qna_item:first-child button.btn_more {
  border-radius: 10px 10px 0 0;
}
.electionGuide .sec_qna article.DesignFAQList .answer_box {
  border-radius: 0;
}

