@charset "UTF-8";
/*반응형 화면 크기*/
/*-------------------------------------------------------------------
파일 : default.css
파일정의 : Settings
CSS 적용 순서 : 아이디> 태그와 클래스> 클래스> 태그
CSS 선택자 선언 순서 : Type Selector, Layout Selector, Class Selector 등
CSS 속성 선언 순서 :
display,
position
z-index,
float / clear,
overflow,
width / height,
padding / margin,
border,
background,
font: color/font-weight/font-size/line-height/font-family
align,
etc
-------------------------------------------------------------------*/
.wrap {
  width: 100%;
  text-align: center;
  font-size: 1em;
  background: #fff;
}

.inner {
  width: 100%;
  margin: 0 auto;
}

.df-pd1 {
  padding-left: 15px;
  padding-right: 15px;
}

.header {
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 10;
}

.header:after {
  display: block;
  position: relative;
  z-index: 1;
  top: 2px;
  width: 100%;
  height: 1px;
  background: #ddd;
  content: '';
}

.header .hd-top {
  position: relative;
  height: 7.4em;
  padding: 22px 0 11px;
  background: #fff;
}

.header .hd-top .toplogo {
  display: block;
  width: 6.9em;
  height: 1.95em;
  margin: 0 auto;
}

.header .hd-top .topcall {
  position: fixed;
  bottom: 130px;
  right: 10px;
  z-index: 8;
  width: 50px;
  height: 50px;
}

.header .hd-top .topcall i {
  display: inline-block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(82, 83, 193, 0.9) url(../images/ic-call1@2x.png) no-repeat 50% 50%;
  background-size: 46%;
  -webkit-box-shadow: 3px 3px 3px 1px rgba(8, 10, 21, 0.2);
          box-shadow: 3px 3px 3px 1px rgba(8, 10, 21, 0.2);
}

.header .hd-top .topcall .itemtitle {
  display: none;
}

.header .hd-top .topcall .num {
  display: none;
}

.header .hd-top .topcall .mocall {
  position: relative;
  top: -50px;
  height: 50px;
}

.header.sticky {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0 !important;
  width: 100%;
  -webkit-transition: top .035s ease-in;
  transition: top .035s ease-in;
}

.header .nav {
  position: relative;
  background: #fff;
}

.header .nav .gnb {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: auto;
}

.header .nav .gnb li {
  position: relative;
  width: 80px;
  height: 44px;
  color: #666;
  font-size: 1.3em;
  line-height: 44px;
}

.header .nav .gnb li:after {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 0.05s;
  transition: width 0.05s;
  height: 3px;
  background: #5253c1;
  content: '';
}

.header .nav .gnb li a {
  width: 80px;
}

.header .nav .gnb li.on, .header .nav .gnb li:hover {
  color: #111;
  font-weight: 700;
}

.header .nav .gnb li.on:after, .header .nav .gnb li:hover:after {
  width: 100%;
}

.header .ic-mo-nav {
  position: absolute;
  top: 22px;
  right: 12px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: url(../images/btn-navopen@2x.png) no-repeat 50% 50%;
  background-size: 60% auto;
}

.header .ic-mo-navclose {
  position: absolute;
  top: 22px;
  right: 19px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: url(../images/btn-navclose@2x.png) no-repeat 50% 50%;
  background-size: 60% auto;
}

.header .mo-navwrap {
  position: fixed;
  top: 0;
  right: -100vw;
  z-index: 1000;
  width: 83vw;
  height: 100vh;
  padding: 14.3em 11% 0;
  background: #5253c1;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header .mo-navwrap .mo-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}

.header .mo-navwrap .mo-nav li {
  width: 100%;
  padding: 1.1764705em 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 1.7em;
  text-align: left;
}

.header .mo-navwrap .mo-nav li.on, .header .mo-navwrap .mo-nav li:hover {
  font-weight: 700;
  background: url(../images/ic-lr-arrow1@2x.png) no-repeat 100% 50%;
  background-size: 0.411764em 0.5588235em;
}

.header .mo-navwrap.expand {
  right: 0 !important;
}

.mainvisual {
  position: relative;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.mainvisual.bg1 {
  background: -webkit-gradient(linear, left top, right top, color-stop(50.4%, #94b83c), color-stop(50.5%, #bad183));
  background: linear-gradient(to right, #94b83c 50.4%, #bad183 50.5%);
}

.mainvisual.bg2 {
  background: -webkit-gradient(linear, left top, right top, color-stop(50.4%, #ebf2f2), color-stop(50.5%, #36b5b0));
  background: linear-gradient(to right, #ebf2f2 50.4%, #36b5b0 50.5%);
}

.mainvisual.bg3 {
  background: -webkit-gradient(linear, left top, right top, color-stop(50.4%, #8d9099), color-stop(50.5%, #9594a2));
  background: linear-gradient(to right, #8d9099 50.4%, #9594a2 50.5%);
}

.mainvisual.bg4 {
  background: -webkit-gradient(linear, left top, right top, color-stop(50.4%, #f8e9ea), color-stop(50.5%, #d03260));
  background: linear-gradient(to right, #f8e9ea 50.4%, #d03260 50.5%);
}

.mainvisual.bg5 {
  background: -webkit-gradient(linear, left top, right top, color-stop(50.4%, #f8888c), color-stop(50.5%, #fde3e4));
  background: linear-gradient(to right, #f8888c 50.4%, #fde3e4 50.5%);
}

.mainvisual.bg6 {
  background: -webkit-gradient(linear, left top, right top, color-stop(50.4%, #fbeee5), color-stop(50.5%, #f17843));
  background: linear-gradient(to right, #fbeee5 50.4%, #f17843 50.5%);
}

.mainvisual.bg7 {
  background: -webkit-gradient(linear, left top, right top, color-stop(50.4%, #e90a4d), color-stop(50.5%, #f2ea61));
  background: linear-gradient(to right, #e90a4d 50.4%, #f2ea61 50.5%);
}

.mainvisual.bg8 {
  background: -webkit-gradient(linear, left top, right top, color-stop(50.4%, #e90a4d), color-stop(50.5%, #f2ea61));
  background: linear-gradient(to right, #00c5e2 50.4%, #2fa3b1 50.5%);
}

.mainvisual .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: auto;
  margin: 0 auto;
}

.mainvisual .prd-visual {
  text-align: center;
}

.mainvisual .prd-visual img {
  height: auto;
}

#container {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: -1px;
}

.sloganwrap {
  position: relative;
  top: -2px;
  background: #291f70;
}

.sloganwrap .sloganlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.sloganwrap .sloganlist li {
  width: 50%;
  padding: 16px 0 14px;
  color: #fff;
  font-family: 'GmarketSans','Spoqa Han Sans Neo','Noto Sans KR', 'Dotum', '돋움', 'Apple SD Gothic Neo', sans-serif;
  letter-spacing: -.55em;
}

.sloganwrap .sloganlist li:nth-child(1) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.sloganwrap .sloganlist li:nth-child(2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.sloganwrap .sloganlist li:nth-child(3) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.sloganwrap .sloganlist li:nth-child(1) em {
  color: #f4ff7c;
}

.sloganwrap .sloganlist li:nth-child(2) em {
  color: #ee93ff;
}

.sloganwrap .sloganlist li:nth-child(3) em {
  color: #6ce9ff;
}

.sloganwrap .sloganlist li:nth-child(4) em {
  color: #a8ff79;
}

.sloganwrap .sloganlist li .sm1 {
  display: block;
  margin-bottom: .36em;
  font-size: 1.25em;
  font-weight: 500;
}

.sloganwrap .sloganlist li em {
  font-size: 1.7em;
  font-weight: 700;
}

.sloganwrap:after {
  display: block;
  clear: both;
  content: '';
}

.counselwrap {
  position: relative;
  padding: 4.2em 0 5.1em;
  background: #f3f3f9;
}
.counselwrap .deco-p1 {
  margin-bottom: .75em;
  color: #222357;
  font-size: 1em;
  font-family: 'GmarketSans','Spoqa Han Sans Neo','Noto Sans KR', 'Dotum', '돋움', 'Apple SD Gothic Neo', sans-serif !important;
  font-weight: 500;
}
.counselwrap h2 {
  color: #222356;
  font-size: 2.25em;
  font-family: 'GmarketSans','Spoqa Han Sans Neo','Noto Sans KR', 'Dotum', '돋움', 'Apple SD Gothic Neo', sans-serif !important;
  font-weight: 700;
}
.counselwrap em {
  color: #5253c1;
}

.counselwrap .input-sec {
  padding: 2.55em 0 1.6em;
}
.counselwrap .input-sec li {
  padding: .45em 0;
}

.counselwrap .input-sec label {
  display: none;
}
.counselwrap .input-sec input[type="text"],
.counselwrap .input-sec input[type="number"] {
  width: 100%;
  font-size: 1.5em;
}
.counselwrap .chk-sec h3 {
  display: none;
}

.counselwrap .chk-sec li {
  padding: .7em 3em .7em 3em;
  text-align: left;
}

.counselwrap .chk-sec li [type="checkbox"] + label {
  font-size: 1.2em;
}

.counselwrap .chk-sec li .agreeview {
  float: right;
  padding: .1em 0;
  background: transparent;
  color: #666;
  font-size: 1.2em;
  font-weight: 500;
  text-decoration: underline;
  text-underline-position: under;
}

.counselwrap .chk-sec li a {
  height: auto;
}

.counselwrap .counsel-accept {
  width: 100%;
  height: 3.2352em;
  margin-top: 2.7em;
  border-radius: 5px;
  background: #222357;
  color: #fff;
  font-size: 1.7em;
  font-family: 'GmarketSans','Spoqa Han Sans Neo','Noto Sans KR', 'Dotum', '돋움', 'Apple SD Gothic Neo', sans-serif !important;
  font-weight: 700;
}
.counselwrap.sticky{
  position: fixed;
  overflow: hidden;
  z-index: 9;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  border-radius: 1.5em 1.5em 0 0;
  padding: 0;
  -webkit-box-shadow: 0 -7px 5px -2px rgba(8, 10, 21, 0.2);
          box-shadow: 0 -7px 5px -2px rgba(8, 10, 21, 0.2);
  transition: all .35s;
}
.counselwrap.sticky.expand {
  border-radius: 3em 3em 0 0;
  transition: all .35s;
}
.counselwrap.sticky .fixbg {
  display: block;
  padding: 1em 15px;
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 1.05em;
}
.counselwrap.sticky.expand .fixbg {
  display: none;
}
.counselwrap.sticky .counsel-accept.expand {
  margin-top: 0;
}
.counselwrap.sticky .folding {
  display: none;
}
.counselwrap.sticky.expand .folding {
  display: block;
  padding: 3.5em 15px 1.2em;
}
.counselwrap .folding .ic-mo-counselclose {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  padding: 4px;
  background: url(../images/btn-navclose@2x-b.png) no-repeat 50% 50%;
  background-size: 60% auto;
}
.counselwrap .folding .counsel-accept{
  margin-top: 1.25em;
}
.cfwrap {
  position: relative;
  z-index: 0;
}

.cfwrap .cfinner {
  position: relative;
  z-index: 1;
}

.cfwrap .btnwrap {
  display: none;
}

.cfwrap .mvpop {
  display: none;
  position: absolute;
  width: 100%;
}

.cfwrap .cfthum1 {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.cfwrap .cfthum1 img {
  width: 100%;
  vertical-align: top;
}

.cfwrap .cfthum1 .cf {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 56.25%;
}

.cfwrap .cfthum1 iframe,
.cfwrap .cfthum1 object,
.cfwrap .cfthum1 embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.prdwrap .prdinfo1-1 {
  height: 1900px;
  overflow: hidden;
}

.prdwrap .prdinfo1-1 img {
  width: 100%;
}

.prdwrap .prdinfo1-1.expand {
  height: auto;
  overflow: visible;
}

.prdwrap .detail-more {
  width: 100%;
  height: 45px;
  border: 1px solid #1b1b1d;
  background-color: #1b1b1d;
  color: #fff;
  line-height: 47px;
  font-size: 1.3em;
  font-weight: 700;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.prdwrap .detail-more i {
  width: 0.92307em;
  height: 0.625em;
  margin-left: 10px;
  background: url(../images/ic-more1w@2x.png) no-repeat 50% 50%;
  background-size: contain;
}

.prdwrap .detail-more.expand i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.tbTy1 {
  margin: 1.5em 0 2.5em;
  border-top: 2px solid #5253c1;
  font-size: 1em;
}

.tbTy1 .w1-1 {
  width: 25%;
}

.tbTy1 .w1-2 {
  width: 75%;
}

.tbTy1 th {
  padding: .8em 0;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #d8d8e2;
  background: #f8f8fd;
  font-size: 1.4em;
  text-align: center;
}

.tbTy1 th:last-child {
  border-right-width: 0;
}

.tbTy1 td {
  padding: 1em 0;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #eee;
  background: #fff;
  font-size: 1.3em;
  text-align: center;
  line-height: 1.3;
}

.tbTy1 td:last-child {
  border-right-width: 0;
}

.tbTy1 .malpac {
  padding: 0 .5em;
  text-align: left !important;
}

.go-top {
  position: fixed;
  bottom: 80px;
  right: 10px;
  z-index: 10;
  width: 50px;
  height: 50px;
}

.go-top a {
  width: 45px;
  height: 45px;
  padding: 12px 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  -webkit-box-shadow: 3px 3px 3px 1px rgba(8, 10, 21, 0.2);
          box-shadow: 3px 3px 3px 1px rgba(8, 10, 21, 0.2);
}

.go-top a i {
  display: block;
  width: 11px;
  height: 7px;
  margin: 0 auto 6px;
  background: url(../images/ic-gotop@2x.png) no-repeat;
  background-size: cover;
}

.go-top a span {
  color: #999;
  font-size: 1.1em;
  font-weight: 700;
}

.go-top a:active {
  background: #5253c1;
}

.go-top2 {
  position: fixed;
  bottom: 10px;
  right: -15px;
  z-index: 10;
  width: 50px;
  height: 50px;
}

.go-top2 a {
  width: 45px;
  height: 45px;
  padding: 12px;
  text-align: center;
}

.go-top2 a i {
  display: block;
  width: 11px;
  height: 7px;
  margin: 0 auto 6px;
  background: url(../images/ic-gotop@2x.png) no-repeat;
  background-size: cover;
}

.go-top2 a span {
  color: #999;
  font-size: 1.1em;
  font-weight: 700;
}

.footer {
  position: relative;
  padding: 1.5em 0 5em;
  margin-bottom: 4em;
  color: #666;
  font-size: 1.1em;
}

.footer .ftinner {
  padding: 0 20px;
  text-align: left;
}

.footer .ftinner .p1 {
  padding: 5px 0;
}

.footer span {
  display: inline-block;
}

.footer .company {
  margin-right: 1.4em;
}

.footer .itemtitle {
  margin-right: 0.3636em;
  color: #999;
  font-weight: 700;
}

.footer .priv {
  color: #5253c1;
  font-weight: 700;
}

.footer .item {
  color: #666;
}

.footer .item + .itemtitle {
  margin-left: 1.4em;
  margin-right: 0.3636em;
}

.footer .moenter {
  display: none;
}

.footer .moenter + .itemtitle {
  margin-left: 1.4em;
  margin-right: 0.3636em;
}

.footer .ftlogo {
  display: block;
  width: 8.6em;
  height: 2.6em;
  margin: 1.4em auto 0;
}

.listbox1 {
  padding: 1.45em 2em 1.55em;
  margin: 1.65em 0 3em;
  border-top: 2px solid #5253c1;
  background: #f8f8fd;
  color: #111;
}

.listwrap1 {
  display: -ms-grid;
  display: grid;
  grid: repeat(18, 1fr)/repeat(1, 1fr);
  grid-auto-flow: column;
}

.listwrap1 li {
  font-size: 1.3em;
  letter-spacing: -.04em;
}

.listwrap1 li a {
  padding: 0.4em 0;
}

.listwrap1 li:active, .listwrap1 li:hover {
  color: #5253c1;
}

.pop-wrap {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-transition: all .4s;
  transition: all .4s;
}

.pop-wrap > .ic-popclose {
  position: absolute;
  z-index: 1001;
  top: calc(50% - 35vh - 35px);
  right: 19px;
  width: 30px;
  height: 30px;
  padding: 4px;
  border: none;
  background: #5253c1 url(../images/btn-navclose@2x.png) no-repeat 50% 50%;
  background-size: 60% auto;
}

.pop-wrap.open {
  display: block;
  z-index: 10000;
}

.pop-wrap.process-ing {
  display: block;
  z-index: 100000;
  background-color: rgba(0, 0, 0, 0.65);
}

.pop-ing {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1000;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  padding: 3em 5em;
  background: #000;
  border-radius: 1.5em;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2em;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all .4s;
  transition: all .4s;
}

.main-popwrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 2.75em 2.75em 0 0;
  background: #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-shadow: 15px 15px 15px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 15px 15px 15px 1px rgba(0, 0, 0, 0.2);
}

.main-popwrap .popimg {
  position: relative;
  width: 100%;
  height: 100%;
}

.main-popwrap .popimg.popimg1 {
  background: #eef6ff;
}

.main-popwrap .popimg.popimg2 {
  background: #3cb686;
}

.main-popwrap .popimg a {
  display: block;
  width: 100%;
  height: 100%;
}

.main-popwrap .swiper-container {
  position: relative;
}

.main-popwrap .main-pop-pagination {
  position: absolute;
  z-index: 15;
  top: 2em;
  left: calc(100% - 4.5em);
  width: 5em;
  height: 2.2em;
  margin: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 1.1em;
  line-height: 2em;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.main-popwrap .main-pop-pagination span {
  display: inline-block;
  padding: 0 .25em;
  vertical-align: middle;
  font-size: 1.1em;
  font-weight: 300;
}

.main-popwrap .main-pop-pagination span.swiper-pagination-total {
  color: rgba(255, 255, 255, 0.75);
}

.main-popwrap .swiper-pagination {
  position: relative;
  z-index: 10;
  margin: -4em auto 1em;
  text-align: center;
}

.main-popwrap .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 1.2em;
  height: 1.2em;
  margin: 0 .6em;
  background: transparent;
  border: 2px solid white;
}

.main-popwrap .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: #fff;
}

.main-popwrap .popbtn {
  width: 100%;
  background: #fff;
}

.main-popwrap .popbtn button {
  display: inline-block;
  width: calc(50% - 2px);
  height: 4.166em;
  background: #fff;
  color: #333;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
}

.pop-agreewrap {
  position: relative;
  overflow: hidden;
  z-index: 1000;
  top: 50%;
  left: 50%;
  width: calc(100% - 30px);
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all .4s;
  transition: all .4s;
}

.pop-agreewrap.df {
  height: 95vh;
}

.pop-agreewrap.short1 {
  height: 63vh;
}

.pop-agreewrap.short2 {
  height: 35.5vh;
}

.pop-agreewrap .ic-popclose {
  position: absolute;
  z-index: 1001;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: #fff url(../images/btn-navclosegray@2x.png) no-repeat 50% 50%;
  background-size: 25% auto;
}

.pop-agreewrap .policy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2.5em 2em;
  color: #111;
  text-align: left;
}

.pop-agreewrap .policy .agree-txtwrap {
  overflow-y: auto;
  height: calc(100% - 5em);
}

.pop-agreewrap .policy h2 {
  padding-bottom: 0.7474em;
  margin-bottom: 1.407407em;
  border-bottom: 1px solid #ddd;
  color: #111;
  font-size: 1.5em;
  font-weight: 700;
}

.pop-agreewrap .policy h3 {
  margin-bottom: .6em;
  font-size: 1.4em;
  font-weight: 500;
}

.pop-agreewrap .policy h4 {
  margin-bottom: .5em;
  font-size: 1.3em;
}

.pop-agreewrap .policy h4 + p.paragraph2 {
  margin: 0 0 .5em;
}

.pop-agreewrap .policy h4 + p.title {
  margin-top: -.75em;
}

.pop-agreewrap .policy h5 {
  padding: 0.5625em 0;
  font-size: 1.3em;
  font-weight: 400;
}

.pop-agreewrap .policy .paragraph1 {
  margin-bottom: 3.6em;
  color: #222;
}

.pop-agreewrap .policy .paragraph1.circle_item .bul1 {
  display: block;
  position: absolute;
  top: .3em;
  left: 0;
  margin-right: 1em;
}

.pop-agreewrap .policy .paragraph1.circle_item > li {
  position: relative;
  padding: .3em 0 .3em 1.3em;
}

.pop-agreewrap .policy .paragraph1.circle_item > li > .paragraph2 {
  margin-left: 0;
}

.pop-agreewrap .policy .paragraph1.num_item .bul1 {
  display: block;
  position: absolute;
  top: .2em;
  left: 0;
  margin-right: 1em;
}

.pop-agreewrap .policy .paragraph1.num_item > li {
  position: relative;
  padding: .2em 0 .2em 1.1em;
}

.pop-agreewrap .policy .paragraph1.num_item > li > .paragraph2 {
  margin-left: 0;
}

.pop-agreewrap .policy .paragraph1 li {
  padding: .3em 0;
  font-size: 1.3em;
  line-height: 1.625;
}

.pop-agreewrap .policy .paragraph1 h3, .pop-agreewrap .policy .paragraph1 h4, .pop-agreewrap .policy .paragraph1 h5, .pop-agreewrap .policy .paragraph1 p {
  color: inherit;
  font-size: inherit;
  font-weight: 400;
}

.pop-agreewrap .policy .paragraph1 h3 {
  margin-bottom: .2em;
}

.pop-agreewrap .policy .paragraph2 {
  margin-left: 1em;
}

.pop-agreewrap .policy .paragraph2 li {
  padding: 0;
  color: #666;
  font-size: .95em;
  line-height: 1.666;
  letter-spacing: -.04em;
}

.pop-agreewrap .policy .paragraph2 li a {
  display: inline-block;
}

.pop-agreewrap .policy p {
  font-size: 1.3em;
  line-height: 1.625;
}

.pop-agreewrap .policy p.hp1 {
  margin: -.5em 0;
}

.pop-agreewrap .policy p.paragraph2 {
  margin: -.5em 0;
  color: #666;
  font-size: .95em;
  line-height: 1.666;
}

.pop-agreewrap .policy p.paragraph2line1 {
  margin: -.5em 0 -.15em;
  color: #666;
  font-size: .95em;
  line-height: 1.666;
}

.pop-agreewrap .policy p.secend {
  margin-bottom: 3.6em;
}

.pop-agreewrap .policy p.title {
  padding: 0.5625em 0;
}

.pop-agreewrap .policy .swiper {
  width: 100%;
  height: calc(100% - 5em);
}

.pop-agreewrap .policy .swiper-slide {
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 0;
}

.pop-cfwrap {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: calc(100% - 40px);
  height: auto;
  -webkit-box-shadow: 2px 2px 10px 3px rgba(51, 51, 51, 0.2);
          box-shadow: 2px 2px 10px 3px rgba(51, 51, 51, 0.2);
  -webkit-transition: all 0.25s cubic-bezier(0, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0, 0, 0.2, 1);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.pop-cfwrap .ic-popclose {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 4px;
  border: 1px solid #fff;
  background: transparent url(../images/btn-navclose@2x.png) no-repeat 50% 50%;
  background-size: 60% auto;
}

.pop-cfwrap .cf {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 56.25%;
}

.pop-cfwrap iframe,
.pop-cfwrap object,
.pop-cfwrap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.error-wrap {
  width: 100%;
  padding: 5em 0;
}

.error-wrap .pg-wrap1 {
  width: 90vw;
  margin: 0 auto;
}

.error-wrap .pg-wrap1 .pg-hd {
  position: relative;
  height: 7.4em;
}

.error-wrap .pg-wrap1 .pg-hd .toplogo {
  display: block;
  width: 7.59em;
  height: 1.375em;
  margin: 0 auto;
}

.error-wrap .pg-wrap1 .box1 {
  overflow: hidden;
  padding: 3em 2.5em;
  margin: 0 auto;
  font-size: 1.35em;
  line-height: 1.5;
  -webkit-box-shadow: 5px 5px 10px 6px rgba(8, 10, 21, 0.15);
          box-shadow: 5px 5px 10px 6px rgba(8, 10, 21, 0.15);
}

.error-wrap .pg-wrap1 .box1 svg {
  display: inline-block;
  margin-right: .5em;
  width: 2.5em;
  height: auto;
}

.error-wrap .pg-wrap1 .box1 h2 {
  display: inline-block;
  margin-bottom: 1.2em;
  font-size: 1.6em;
  line-height: 1.3;
  vertical-align: top;
}

.error-wrap .pg-wrap1 .box1 .error1-1 {
  margin-bottom: 1.5em;
}

.error-wrap .pg-wrap1 .box1 .error1-2 li {
  padding: .1em 0;
}

.error-wrap .pg-wrap1 .btnwrap {
  width: 100%;
  margin-top: 3em;
  text-align: center;
}

.error-wrap .pg-wrap1 .btnwrap button {
  display: inline-block;
  width: calc(50% - 2px);
  height: 4.333em;
  background: #eee;
  font-size: 1.4rem;
  font-weight: 500;
}

.error-wrap .pg-wrap1 .btnwrap button.func-btn.inact {
  background: #eee;
}

.error-wrap .pg-wrap1 .btnwrap button.func-btn.act {
  color: #fff;
  background: #5253c1;
}

.error-wrap .pg-footer {
  margin-top: 3em;
  color: #999;
  font-size: 1.1em;
  letter-spacing: -0.04em;
  text-align: center;
}

@media (max-width: 580px) {
  /*브라우저 사이즈580px이하일때*/
  .inner {
    width: 100%;
  }
  .df-pd1 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .header .nav .gnb {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footer .moenter {
    display: block;
    height: .8em;
  }
  .footer .moenter + .itemtitle {
    margin-left: 0;
    margin-right: 0.3636em;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /*브라우저 사이즈1023px이하일때*/
  .wrap {
    font-size: 1.2em;
  }
  .df-pd1 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header .nav {
    padding: 0 20px;
  }
  .header .nav .gnb {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header .nav .gnb li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 50px;
  }
  .header .nav .gnb li a {
    width: 100%;
    height: 50px;
  }
  .header.sticky {
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  .header.sticky .hd-top {
    display: none;
  }
  .header.sticky .ic-mo-nav {
    top: -30px;
    -webkit-transition: all .2s;
    transition: all .2s;
  }
  .counselwrap {
    z-index: 0;
    padding: 4em 2em 3em;
    background: url(../images/counselbg1.jpg) no-repeat 50% 0;
  }
  .counselwrap:before {
    display: block;
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: #fff;
  }
  .counselwrap.posi-ft:before {
    display: none;
  }
  .counselwrap.posi-ft .deco-p1 {
    color: #fff;
  }
  .counselwrap.posi-ft h2 {
    color: #fff;
  }
  .counselwrap.posi-ft h2 em {
    color: #a0a4ff;
  }
  .counselwrap .deco-p1 {
    margin-bottom: .75em;
    font-size: 1.3em;
  }
  .counselwrap h2 {
    margin-bottom: .69875em;
    font-size: 2.6em;
  }
  .counselwrap .secwrap {
    overflow: hidden;
    background: #eaeaf6;
    -webkit-box-shadow: 25px 25px 25px 1px rgba(8, 10, 21, 0.15);
            box-shadow: 25px 25px 25px 1px rgba(8, 10, 21, 0.15);
  }
  .counselwrap .input-sec {
    float: left;
    width: 50%;
    padding: 2.7em 3.69em 2.88em;
    background: #f3f3f9;
  }
  .counselwrap .input-sec li {
    padding: .5em 0;
  }
  .counselwrap .input-sec input[type="text"],
  .counselwrap .input-sec input[type="number"] {
    width: 100%;
    height: 3.52083em;
    border-radius: 7px;
    font-size: 1.2em;
  }
  .counselwrap .chk-sec {
    float: left;
    width: 50%;
    padding: 2.7em 3.69em 2.88em;
    background: #eaeaf6;
  }
  .counselwrap .chk-sec li {
    padding: .9em 0;
    text-align: left;
  }
  .counselwrap .chk-sec li [type="checkbox"] + label {
    display: inline-block;
    font-size: 1.25em;
  }
  .counselwrap .chk-sec li .agreeview {
    padding: .1em 0;
    font-size: 1.2em;
    font-weight: 500;
  }
  .counselwrap .counsel-accept {
    height: 2.8em;
    margin-top: 2.8em;
    font-size: 1.5em;
  }
  .counselwrap:after {
    display: block;
    clear: both;
    content: '';
  }
  .counselwrap.sticky {
    display: none;
  }
  .footer {
    padding-bottom: 3em;
    margin-bottom: 0;
  }
  .listbox1 {
    padding: 1.5em 1em 1.5em;
  }
  .listwrap1 {
    grid: repeat(9, 1fr)/repeat(2, 1fr);
  }
  .listwrap1 li a {
    padding: 0.5625em 0;
  }
  .pop-wrap > .ic-popclose {
    position: absolute;
    z-index: 10001;
    top: calc(50% - 35vh - 40px);
    right: 19px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: #5253c1 url(../images/btn-navclose@2x.png) no-repeat 50% 50%;
    background-size: 50% auto;
  }
  .main-popwrap {
    top: 50%;
    bottom: auto;
    left: 50%;
    width: 48em;
    height: 64em;
    border-radius: 2.5em;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-box-shadow: 30px 30px 35px 1px rgba(0, 0, 0, 0.2);
            box-shadow: 30px 30px 35px 1px rgba(0, 0, 0, 0.2);
  }
  .main-popwrap .popimg {
    width: 100%;
    height: 100%;
  }
  .main-popwrap .main-pop-pagination {
    top: 2em;
    left: calc(100% - 4.5em);
    width: 5em;
    height: 2.2em;
    border-radius: 1.1em;
    line-height: 2em;
  }
  .main-popwrap .main-pop-pagination span {
    padding: 0 .25em;
    font-size: 1.1em;
  }
  .main-popwrap .swiper-pagination {
    margin: -4em auto 1em;
  }
  .main-popwrap .popbtn button {
    height: 4.333em;
    font-size: 1.5rem;
    font-weight: 400;
  }
  .pop-agreewrap {
    position: relative;
    top: 50%;
    left: 50%;
    width: calc(100% - 40px);
    height: 70vh;
    background: #fff;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .pop-agreewrap.df {
    height: 80vh;
  }
  .pop-agreewrap.short1 {
    height: 55vh;
  }
  .pop-agreewrap.short2 {
    height: 40vh;
  }
  .pop-agreewrap .policy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 3em 2em;
    text-align: left;
  }
  .pop-agreewrap .policy h2 {
    font-size: 1.6em;
  }
  .pop-agreewrap .policy h3 {
    margin-bottom: .5em;
    font-size: 1.5em;
  }
  .pop-agreewrap .policy h4 {
    margin-bottom: .5em;
    font-size: 1.4em;
  }
  .pop-agreewrap .policy h5 {
    margin-bottom: .35em;
    font-size: 1.2em;
  }
  .pop-agreewrap .policy .paragraph1 li {
    padding: .3em 0;
    font-size: 1.3em;
    font-weight: 400;
  }
  .pop-agreewrap .policy .paragraph2 li {
    padding: 0;
    font-size: .95em;
  }
  .pop-agreewrap .policy .swiper {
    height: calc(100% - 6em);
  }
  .pop-agreewrap .policy .swiper-slide {
    padding: 20px 0;
  }
  .pop-cfwrap .ic-popclose {
    background: transparent url(../images/btn-navclose@2x.png) no-repeat 50% 50%;
    background-size: 50% auto;
  }
  .error-wrap {
    padding: 10em 0 0;
  }
  .error-wrap .pg-wrap1 {
    width: 65vw;
  }
  .error-wrap .pg-wrap1 .pg-hd .toplogo {
    width: 7.59em;
    height: 1.375em;
  }
  .error-wrap .pg-wrap1 .box1 {
    padding: 3em 3em 4em;
    font-size: 1.4em;
    -webkit-box-shadow: 15px 15px 15px 10px rgba(8, 10, 21, 0.15);
            box-shadow: 15px 15px 15px 10px rgba(8, 10, 21, 0.15);
  }
  .error-wrap .pg-wrap1 .box1 svg {
    margin-right: .5em;
    width: 3em;
    height: auto;
    margin-top: -9px;
  }
  .error-wrap .pg-wrap1 .box1 h2 {
    font-size: 1.6em;
  }
  .error-wrap .pg-wrap1 .btnwrap button {
    font-size: 1.5rem;
  }
  .error-wrap .pg-footer {
    font-size: 1.1em;
  }
}

@media (min-width: 1024px) {
  /*브라우저 사이즈1024px이상일때*/
  .inner {
    width: 100%;
  }
  .df-pd1 {
    padding-left: 15px;
    padding-right: 15px;
  }
  img {
    width: auto;
  }
  .header .hd-top {
    height: 126px;
    padding: 36px 0 18px;
  }
  .header .hd-top .toplogo {
    width: 270px;
    height: 76px;
  }
  .header .hd-top .topcall {
    position: absolute;
    top: 50px;
    right: 0;
    bottom: auto;
    z-index: 1;
    width: 230px;
    height: 50px;
    text-align: left;
  }
  .header .hd-top .topcall i {
    display: block;
    float: left;
    width: 50px;
    height: 50px;
    background: #5253c1 url(../images/ic-call1@2x.png) no-repeat 50% 50%;
    background-size: 47%;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header .hd-top .topcall .itemtitle {
    display: block;
    padding: 5px 0 5px 62px;
    color: #333;
    font-size: 1.4em;
  }
  .header .hd-top .topcall .num {
    display: block;
    padding: 2px 0 3px 62px;
    color: #5253c1;
    font-size: 2.3em;
    font-family: 'GmarketSans','Spoqa Han Sans Neo','Noto Sans KR', 'Dotum', '돋움', 'Apple SD Gothic Neo', sans-serif !important;
    letter-spacing: 0;
    font-weight: 700;
    letter-spacing: -0.06em;
  }
  .header .hd-top .topcall .mocall {
    display: none;
  }
  .header .nav {
    padding: 0 15px;
  }
  .header .nav .gnb li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 2em;
    height: 68px;
    line-height: 68px;
  }
  .header .nav .gnb li a {
    width: 100%;
    height: 68px;
  }
  .header .nav .gnb li:after {
    -webkit-transition: width 0.06s;
    transition: width 0.06s;
    height: 5px;
  }
  .header .ic-mo-nav {
    display: none;
  }
  .header .mo-navwrap {
    display: none;
  }
  .header.sticky .hd-top {
    display: none;
  }
  .mainvisual {
    height: 36em;
  }
  .mainvisual .prd-visual {
    height: 100%;
  }
  .mainvisual .prd-visual.img1 {
    background: url(../images/main-visual1.jpg) no-repeat 50% 0;
    background-size: auto 101%;
  }
  .mainvisual .prd-visual.img2 {
    background: url(../images/main-visual2.jpg) no-repeat 50% 0;
    background-size: auto 101%;
  }
  .mainvisual .prd-visual.img3 {
    background: url(../images/main-visual3.jpg) no-repeat 50% 0;
    background-size: auto 101%;
  }
  .mainvisual .prd-visual.img4 {
    background: url(../images/main-visual4.jpg) no-repeat 50% 0;
    background-size: auto 101%;
  }
  .mainvisual .prd-visual.img5 {
    background: url(../images/main-visual5.jpg) no-repeat 50% 0;
    background-size: auto 101%;
  }
  .mainvisual .prd-visual.img6 {
    background: url(../images/main-visual6.jpg) no-repeat 50% 0;
    background-size: auto 101%;
  }
  .mainvisual .prd-visual.img7 {
    background: url(../images/main-visual7.jpg) no-repeat 50% 0;
    background-size: auto 101%;
  }
  .mainvisual .prd-visual.img8 {
    background: url(../images/main-visual8.jpg) no-repeat 50% 0;
    background-size: auto 101%;
  }
  .mainvisual .prd-visual img {
    height: 100%;
  }
  .mainvisual .inner {
    height: 100%;
  }
  .mainvisual .maintxt1,
  .mainvisual .maintxt7 {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    z-index: 2;
    margin-top: -.7em;
    margin-left: 2em;
    width: 42%;
    height: 52.34%;
  }
  .mainvisual .maintxt1 img,
  .mainvisual .maintxt7 img {
    width: auto;
    height: 100%;
  }
  .mainvisual .maintxt2,
  .mainvisual .maintxt4,
  .mainvisual .maintxt6 {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    z-index: 2;
    margin-top: -.6em;
    margin-left: 4em;
    width: 37.0492%;
    height: 62.44%;
  }
  .mainvisual .maintxt2 img,
  .mainvisual .maintxt4 img,
  .mainvisual .maintxt6 img {
    width: auto;
    height: 100%;
  }
  .mainvisual .maintxt3,
  .mainvisual .maintxt5 {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    z-index: 2;
    margin-top: -3em;
    margin-left: 9em;
    width: 24.5%;
    height: 62.889%;
  }
  .mainvisual .maintxt3 img,
  .mainvisual .maintxt5 img {
    width: auto;
    height: 100%;
  }
  .mainvisual .mainobj {
    position: absolute;
  }
  .mainvisual .mainobj img {
    max-width: auto;
  }
  .mainvisual .mainobj.img1-1, .mainvisual .mainobj.img4-1 {
    z-index: 3;
    left: 42.65233%;
    top: 2em;
    width: 62.625%;
    height: 126%;
  }
  .mainvisual .mainobj.img2-1 {
    z-index: 3;
    left: 43.9475%;
    top: 4em;
    width: 56.6406%;
    height: 115%;
  }
  .mainvisual .mainobj.img2-2 {
    z-index: 2;
    left: calc(100% - 16.22% - 20px);
/*    top: 10.2em;*/
    width: 16.22%;
    height: 44%;
  }
  .mainvisual .mainobj.img3-1 {
    z-index: 3;
    left: 64%;
    top: 2.4em;
    width: 26.9531%;
    height: 128.88%;
  }
  .mainvisual .mainobj.img3-2 {
    z-index: 1;
    left: 51%;
    top: -8.5em;
    width: 44.1406%;
    height: auto;
  }
  .mainvisual .mainobj.img3-3 {
    z-index: 2;
    left: calc(100% - 16.22%);
    top: 14.5em;
    width: 16.22%;
    height: 44%;
  }
  .mainvisual .mainobj.img5-1 {
    z-index: 3;
    left: 40.0563%;
    top: -1em;
    width: 64.0625%;
    height: 120.889%;
  }
  .mainvisual .mainobj.img6-1 {
    z-index: 2;
    left: 50.9688%;
    top: 3em;
    width: 45%;
    height: 102%;
  }
  .mainvisual .mainobj.img6-2 {
    z-index: 3;
    left: 72.3438%;
    top: 30.3em;
    width: 7.8125%;
    height: 22.222%;
  }
  .mainvisual .mainobj.img6-3 {
    z-index: 3;
    left: 80.2344%;
    top: 24.6em;
    width: 9.76563%;
    height: 27.778%;
  }
  .mainvisual .mainobj.img6-4 {
    z-index: 3;
    left: calc(100% - 11.4844%);
    top: 15.2em;
    width: 11.4844%;
    height: 32.667%;
  }
  .mainvisual .mainobj.img7-1 {
    z-index: 2;
    left: 56.4844%;
    top: 6.3em;
    width: 51.25%;
    height: 73.552%;
  }
  .mainvisual .mainobj.img8-1 {
    z-index: 2;
    left: 40%;
    top: 6.3em;
    width: 51.25%;
    height: 83%;
  }
  .sloganwrap {
    top: 0;
    padding: 30px 0;
  }
  .sloganwrap .sloganlist li {
    padding: 10px 0;
  }
  .sloganwrap .sloganlist li:nth-child(1) {
    width: 24.2%;
    border-bottom: none;
  }
  .sloganwrap .sloganlist li:nth-child(2) {
    width: 25.7%;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: none;
  }
  .sloganwrap .sloganlist li:nth-child(3) {
    width: 25.7%;
  }
  .sloganwrap .sloganlist li:nth-child(4) {
    width: 24.2%;
  }
  .sloganwrap .sloganlist li .sm1 {
    margin-bottom: 7px;
    font-size: 2.5em;
  }
  .sloganwrap .sloganlist li em {
    font-size: 3.4em;
  }
  .counselwrap {
    padding: 9.9em 0 5.1em;
    background: url(../images/counselbg1.jpg) no-repeat 50% 100%;
    background-size: 100% 280px;
  }
  .counselwrap.posi-ft {
    background-position: 50% 0;
    background-size: 100% 675px;
  }
  .counselwrap.posi-ft .deco-p1 {
    color: #fff;
  }
  .counselwrap.posi-ft h2 {
    color: #fff;
  }
  .counselwrap.posi-ft h2 em {
    color: #a0a4ff;
  }
  .counselwrap .deco-p1 {
    font-size: 2em;
    margin-bottom: .6em;
  }
  .counselwrap h2 {
    margin-bottom: 1em;
    font-size: 4em;
  }
  .counselwrap .secwrap {
    overflow: hidden;
    background: #eaeaf6;
    -webkit-box-shadow: 25px 25px 25px 1px rgba(8, 10, 21, 0.15);
            box-shadow: 25px 25px 25px 1px rgba(8, 10, 21, 0.15);
  }
  .counselwrap .input-sec {
    float: left;
    width: 50%;
    padding: 5.1em 6em 4.9em;
    background: #f3f3f9;
  }
  .counselwrap .input-sec li {
    padding: 10px 0;
  }
  .counselwrap .input-sec label {
    display: inline-block;
    width: 18.75%;
    height: 65px;
    color: #222;
    font-size: 2em;
    font-family: 'GmarketSans','Spoqa Han Sans Neo','Noto Sans KR', 'Dotum', '돋움', 'Apple SD Gothic Neo', sans-serif !important;
    font-weight: 700;
    line-height: 67px;
    text-align: left;
  }
  .counselwrap .input-sec input[type="text"],
  .counselwrap .input-sec input[type="number"] {
    display: inline-block;
    width: 80.8%;
    height: 65px;
    padding: 0 10px 0 22px;
    border-radius: 7px;
    font-size: 1.8em;
    line-height: 67px;
  }
  .counselwrap .chk-sec {
    float: left;
    width: 50%;
    padding: 8em 6em 5.4em;
    background: #eaeaf6;
  }
  .counselwrap .chk-sec h3 {
    display: block;
    margin-bottom: 1.3125em;
    color: #111;
    font-size: 2em;
    font-family: 'GmarketSans','Spoqa Han Sans Neo','Noto Sans KR', 'Dotum', '돋움', 'Apple SD Gothic Neo', sans-serif !important;
    font-weight: 700;
    text-align: left;
  }
  .counselwrap .chk-sec li {
    padding: 6px 0;
    text-align: left;
  }
  .counselwrap .chk-sec li [type="checkbox"] + label {
    display: inline-block;
    font-size: 1.6em;
  }
  .counselwrap .chk-sec li .agreeview {
    padding: .1em 0;
    font-size: 1.5em;
  }
  .counselwrap .counsel-accept {
    height: 75px;
    margin-top: 1em;
    font-size: 2.4em;
  }
  .counselwrap.sticky {
    display: none;
  }
  .cfwrap {
    padding: 4.875em 5.2em 4.875em 5.85em;
    margin: 4em 0;
    background-size: cover;
  }
  .cfwrap.cf12 {
    background: url(../images/nucare-tvcf-bg1.jpg) no-repeat;
  }
  .cfwrap.cf34 {
    background: url(../images/nucare-tvcf-bg2.jpg) no-repeat;
  }
  .cfwrap .cfinner {
    overflow: hidden;
  }
  .cfwrap .btnwrap {
    display: block;
    position: absolute;
    left: 3em;
    bottom: 0;
    width: 30%;
    height: auto;
    text-align: left;
  }
  .cfwrap .btnwrap button {
    width: calc((226px + 26px + 30px)*0.85);
    height: 60px;
    padding: 0 26px 0 30px;
    margin: 5px 0;
    color: #fff;
    font-size: 1.8em;
    text-align: left;
    letter-spacing: -.065em;
  }
  .cfwrap .btnwrap button.btn-play1 {
    background: #af7b41;
  }
  .cfwrap .btnwrap button.btn-play2 {
    background: #94b327;
  }
  .cfwrap .btnwrap button.btn-play3 {
    background: #2c3da1;
  }
  .cfwrap .btnwrap button.btn-play4 {
    background: #30c7d1;
  }
  .cfwrap .btnwrap button em {
    font-weight: 700;
  }
  .cfwrap .btnwrap button i {
    display: block;
    float: right;
    width: 11px;
    height: 20px;
    background: url(../images/ic-lr-arrow1@2x.png) no-repeat 50% 50%;
    background-size: contain;
  }
  .cfwrap .cfthum1 {
    float: right;
    width: 62%;
  }
  .cfwrap:after {
    display: block;
    clear: both;
    content: '';
  }
  .prdwrap .prdinfo1-1 {
    height: 4800px;
    padding: 0 2.6em;
  }
  .prdwrap .prdinfo1-1 img {
    width: 100%;
  }
  .prdwrap .detail-more {
    height: 80px;
    margin-bottom: 3.75em;
    border: 1px solid #ddd;
    border-radius: 12px;
    background-color: #fff;
    color: #222;
    line-height: 82px;
    font-size: 1.6em;
    font-weight: 500;
    text-align: center;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .prdwrap .detail-more i {
    width: 0.875em;
    height: 0.625em;
    margin-left: 13px;
    background: url(../images/ic-more1@2x.png) no-repeat 50% 50%;
    background-size: contain;
  }
  .tbTy1 {
    margin: 2.1em 0 3.5em;
    font-size: 1em;
  }
  .tbTy1 .w1-1 {
    width: 50%;
  }
  .tbTy1 .w1-2 {
    width: 50%;
  }
  .tbTy1 th {
    padding: 1.125em 0;
    font-size: 1.35em;
  }
  .tbTy1 td {
    padding: 1.125em 0;
    font-size: 1.3em;
    line-height: 1;
  }
  .tbTy1 .malpac {
    text-align: center !important;
  }
  .policy .paragraph1 + .tbTy1 {
    font-size: 1.2em;
  }
  .go-top {
    bottom: 50px;
    right: 10px;
    width: 60px;
    height: 60px;
  }
  .go-top a {
    width: 60px;
    height: 60px;
    padding: 11px;
    -webkit-box-shadow: 3px 3px 3px 1px rgba(8, 10, 21, 0.2);
            box-shadow: 3px 3px 3px 1px rgba(8, 10, 21, 0.2);
  }
  .go-top a i {
    display: block;
    width: 20px;
    height: 12px;
    margin: 0 auto 6px;
    background: url(../images/ic-gotop@2x.png) no-repeat;
    background-size: cover;
  }
  .go-top a span {
    font-size: 1em;
  }
  .go-top2 {
    bottom: 30px;
    right: 15px;
    z-index: 10;
  }
  .go-top2 a {
    width: 45px;
    height: 45px;
    padding: 12px;
  }
  .go-top2 a i {
    display: block;
    width: 11px;
    height: 7px;
    margin: 0 auto 6px;
    background: url(../images/ic-gotop@2x.png) no-repeat;
    background-size: cover;
  }
  .go-top2 a span {
    font-size: 1.1em;
  }
  .footer {
    padding: 5em 0;
    margin-bottom: 0;
    font-size: 1.5em;
  }
  .footer .ftinner {
    position: relative;
    padding: 0 15px;
    margin: 0 auto;
  }
  .footer .ftinner address.p1 {
    display: inline-block;
  }
  .footer .ftinner .p1 {
    padding: 5px 0;
  }
  .footer .ftinner .agreebtn {
    display: inline-block;
  }
  .footer span {
    display: inline-block;
  }
  .footer .itemtitle {
    margin-right: 1em;
  }
  .footer .item {
    color: #666;
  }
  .footer .item + .itemtitle {
    margin-left: 1.4em;
    margin-right: 1.2727em;
  }
  .footer .moenter {
    display: none;
  }
  .footer .moenter + .itemtitle {
    margin-left: 1.4em;
  }
  .footer .ftlogo {
    position: absolute;
    top: -8px;
    right: 15px;
    width: 210px;
    height: 58px;
    margin: 0;
  }
  .listbox1 {
    padding: 2.9em 5em 3.1em;
    margin: 2.3em 0 6em;
    border-top: 2px solid #5253c1;
    background: #f8f8fd;
    color: #111;
  }
  .listwrap1 {
    grid: repeat(9, 1fr)/repeat(2, 1fr);
  }
  .listwrap1 li {
    font-size: 1.6em;
  }
  .listwrap1 li a {
    padding: 0.5625em 0;
  }
  .pop-wrap .ic-popclose {
    position: absolute;
    z-index: 10001;
    top: calc(50% - 38vh - 50px);
    right: 19px;
    width: 50px;
    height: 50px;
    padding: 8px;
    background: #5253c1 url(../images/btn-navclose@2x.png) no-repeat 50% 50%;
    background-size: 60% auto;
  }
  .main-popwrap {
    top: 50%;
    bottom: auto;
    left: 50%;
    width: 48em;
    height: 64em;
    overflow: hidden;
    border-radius: 2.5em;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-box-shadow: 30px 30px 35px 1px rgba(0, 0, 0, 0.2);
            box-shadow: 30px 30px 35px 1px rgba(0, 0, 0, 0.2);
  }
  .main-popwrap .popimg {
    width: 100%;
    height: 57.5em;
  }
  .main-popwrap .swiper-wrapper {
    height: 57.5em;
  }
  .main-popwrap .main-pop-pagination {
    top: 2em;
    left: calc(100% - 4.5em);
    width: 5em;
    height: 2.2em;
    color: #fff;
    border-radius: 1.1em;
  }
  .main-popwrap .main-pop-pagination span {
    padding: 0 .25em;
    font-size: 1.1em;
  }
  .main-popwrap .main-pop-pagination span.swiper-pagination-total {
    color: rgba(255, 255, 255, 0.75);
  }
  .main-popwrap .swiper-pagination {
    margin: -4em auto 1em;
  }
  .main-popwrap .popbtn button {
    height: 4.333em;
    font-size: 1.5rem;
    font-weight: 400;
  }
  .pop-agreewrap.df {
    height: 80vh;
  }
  .pop-agreewrap.short1 {
    height: 65vh;
  }
  .pop-agreewrap.short2 {
    height: 50vh;
  }
  .pop-agreewrap .ic-popclose {
    top: 0;
    right: 0;
    width: 84px;
    height: 84px;
    background: #fff url(../images/btn-navclosegray@2x.png) no-repeat 50% 50%;
    background-size: 25% auto;
  }
  .pop-agreewrap .policy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 55px 80px 80px;
  }
  .pop-agreewrap .policy h2 {
    font-size: 2.7em;
  }
  .pop-agreewrap .policy h3 {
    margin-bottom: .5em;
    font-size: 2em;
  }
  .pop-agreewrap .policy h4 {
    margin-bottom: .5em;
    font-size: 1.6em;
  }
  .pop-agreewrap .policy h5 {
    margin-bottom: .35em;
    font-size: 1.6em;
  }
  .pop-agreewrap .policy .paragraph1 li {
    padding: .3em 0;
    font-size: 1.6em;
  }
  .pop-agreewrap .policy .paragraph2 {
    margin-left: 1em;
  }
  .pop-agreewrap .policy .paragraph2 li {
    padding: 0;
    font-size: .9375em;
  }
  .pop-agreewrap .policy p {
    font-size: 1.6em;
  }
  .pop-agreewrap .swiper {
    height: calc(100% - 135px);
  }
  .pop-cfwrap .ic-popclose {
    top: -50px;
    right: 0;
    background: transparent url(../images/btn-navclose@2x.png) no-repeat 50% 50%;
    background-size: 60% auto;
  }
  .error-wrap {
    padding: 12em 0;
  }
  .error-wrap .pg-wrap1 {
    width: 60em;
  }
  .error-wrap .pg-wrap1 .pg-hd .toplogo {
    width: 8.28em;
    height: 2.5em;
  }
  .error-wrap .pg-wrap1 .box1 {
    padding: 4.5em 4em 5em;
    font-size: 1.45em;
    -webkit-box-shadow: 20px 20px 20px 15px rgba(8, 10, 21, 0.125);
            box-shadow: 20px 20px 20px 15px rgba(8, 10, 21, 0.125);
  }
  .error-wrap .pg-wrap1 .box1 svg {
    margin-top: -6px;
  }
  .error-wrap .pg-wrap1 .box1 h2 {
    font-size: 1.6em;
  }
  .error-wrap .pg-wrap1 .btnwrap button {
    font-size: 1.5rem;
  }
  .error-wrap .pg-footer {
    font-size: 1.1em;
  }
}

@media (min-width: 1280px) {
  /*브라우저 사이즈1208px이상일때*/
  .inner {
    width: 1280px;
  }
  .df-pd1 {
    padding-left: 0;
    padding-right: 0;
  }
  .header .nav .gnb {
    width: calc(1280px - 314px);
    padding: 0 157px;
  }
  .mainvisual {
    height: 45em;
  }
  .mainvisual .prd-visual.img1, .mainvisual .prd-visual.img2, .mainvisual .prd-visual.img3, .mainvisual .prd-visual.img4, .mainvisual .prd-visual.img5, .mainvisual .prd-visual.img6, .mainvisual .prd-visual.img7 {
    background-position: 50% 50%;
  }
  .sloganwrap .sloganlist li {
    padding: 21px 36px;
  }
  .sloganwrap .sloganlist li i {
    margin-right: 30px;
  }
  .counselwrap {
    position: relative;
    z-index: 0;
    padding: 9.9em 0 7.5em;
    background: url(../images/counselbg1.jpg) no-repeat 50% -20px;
    background-size: 1920px auto;
  }
  .counselwrap.posi-ft {
    background-size: 1920px 675px;
  }
  .counselwrap.posi-ft:before {
    display: none;
  }
  .counselwrap.posi-ft .deco-p1 {
    color: #fff;
  }
  .counselwrap.posi-ft h2 {
    color: #fff;
  }
  .counselwrap.posi-ft h2 em {
    color: #a0a4ff;
  }
  .counselwrap:before {
    display: block;
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 280px;
    background: #fff;
  }
  .counselwrap .deco-p1 {
    font-size: 2em;
  }
  .counselwrap h2 {
    margin-bottom: 1em;
    font-size: 4em;
  }
  .counselwrap .secwrap {
    overflow: hidden;
    -webkit-box-shadow: 25px 25px 25px 1px rgba(8, 10, 21, 0.15);
            box-shadow: 25px 25px 25px 1px rgba(8, 10, 21, 0.15);
  }
  .counselwrap .input-sec {
    padding: 5.7em 8em 6.2em;
  }
  .counselwrap .input-sec li {
    padding: 9px 0;
  }
  .counselwrap .input-sec label {
    width: 18.75%;
    height: 65px;
    font-size: 2em;
  }
  .counselwrap .input-sec input[type="text"],
  .counselwrap .input-sec input[type="number"] {
    width: 80.8%;
  }
  .counselwrap .chk-sec {
    padding: 8em 8em 6.2em;
  }
  .cfwrap {
    max-width: 1280px;
    padding: 9.5em 8em 7.5em 9em;
    margin: 7em auto 8em;
    background: url(../images/newcare-tvcf-bg1.jpg) no-repeat 50% 0;
    background-size: cover;
  }
  .cfwrap .btnwrap {
    position: absolute;
    left: -5px;
    bottom: 0;
    width: 475px;
    height: 60px;
    text-align: left;
  }
  .cfwrap .btnwrap button {
    width: 225px;
    height: 60px;
    padding: 0 26px 0 30px;
    margin: 0 5px;
  }
  .cfwrap .btnwrap button em {
    font-weight: 700;
  }
  .cfwrap .btnwrap button i {
    display: block;
    float: right;
    width: 11px;
    height: 20px;
    background: url(../images/ic-lr-arrow1@2x.png) no-repeat 50% 50%;
    background-size: contain;
  }
  .cfwrap .cfthum1 {
    float: right;
    width: 560px;
    height: 300px;
  }
  .cfwrap .cfthum1 .cf {
    padding-bottom: 53.57143%;
  }
  .cfwrap .cfthum1 .cf iframe {
    width: 560px;
    height: 315px;
  }
  .cfwrap .mvpop {
    display: none;
    position: absolute;
    width: 100%;
  }
  .cfwrap:after {
    display: block;
    clear: both;
    content: '';
  }
  .prdwrap .prdinfo1-1 {
    padding: 0 4em;
  }
  .prdwrap .prdinfo1-1 img {
    max-width: 1280px;
  }
  .prdwrap .detail-more {
    width: 1280px;
  }
  .go-top {
    bottom: 50px;
    right: 10px;
    width: 80px;
    height: 80px;
  }
  .go-top a {
    width: 80px;
    height: 80px;
    padding: 21px;
    -webkit-box-shadow: 3px 3px 3px 1px rgba(8, 10, 21, 0.2);
            box-shadow: 3px 3px 3px 1px rgba(8, 10, 21, 0.2);
  }
  .go-top a i {
    display: block;
    width: 20px;
    height: 12px;
    margin: 0 auto 11px;
    background: url(../images/ic-gotop@2x.png) no-repeat;
    background-size: cover;
  }
  .go-top a span {
    font-size: 1.1325em;
  }
  .footer .ftinner {
    width: 1280px;
  }
  .footer .ftlogo {
    right: 0;
  }
  .listbox1 {
    padding: 2.9em 6em 3.1em;
  }
  .pop-wrap .ic-popclose {
    position: absolute;
    z-index: 10001;
    top: calc(50% - 38vh - 50px);
    right: calc(50% - 640px);
    width: 50px;
    height: 50px;
    padding: 8px;
    background: #5253c1 url(../images/btn-navclose@2x.png) no-repeat 50% 50%;
    background-size: 60% auto;
  }
  .pop-agreewrap {
    width: 1280px;
  }
  .pop-agreewrap .ic-popclose {
    top: 0;
    right: 0;
    width: 84px;
    height: 84px;
    background: #fff url(../images/btn-navclosegray@2x.png) no-repeat 50% 50%;
    background-size: 25% auto;
  }
  .pop-cfwrap {
    width: 1024px;
  }
  .pop-cfwrap .ic-popclose {
    top: -50px;
    right: 0;
    width: 50px;
    height: 50px;
    padding: 4px;
    background: transparent url(../images/btn-navclose@2x.png) no-repeat 50% 50%;
    background-size: 60% auto;
  }
}

.w100 {
  width: 100%;
}

.al {
  text-align: left;
}

/*deco*/
.pfont1 {
  font-family: 'GmarketSans','Spoqa Han Sans Neo','Noto Sans KR', 'Dotum', '돋움', 'Apple SD Gothic Neo', sans-serif !important;
  letter-spacing: 0;
}
