@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&display=swap');
@import url(https://cdn.jsdelivr.net/gh/moonspam/NanumSquare@1.0/nanumsquare.css);
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  font-family: 'NanumSquare', 'Noto sans kr', sans-serif;
  font-weight: 400;
  letter-spacing: -0.5;
  line-height: 1.1;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul,
li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  outline: 0;
  border: none;
  cursor: pointer;
}

caption {
  position: absolute;
  top: -9999px;
  left: -9999px;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  text-indent: -9999em;
}

a {
  text-decoration: none;
  color: #333;
}

/* 웹폰트 */
.wrap {
  padding: 0 20px;
  position: relative;
}

.none {
  display: none;
}

.color_skyblue {
  color: #2a85f5 !important;
}

.color_blue {
  color: #0053ba !important;
}

.color_white {
  color: #fff !important;
}

.color_yellow {
  color: #fae100 !important;
}

.color_lightgrey {
  color: #898989;
}

.slant_exclamation {
  transform: rotate(15deg);
  display: inline-block;
  -webkit-transform: rotate(15deg);
  -moz-transform: rotate(15deg);
  -ms-transform: rotate(15deg);
  -o-transform: rotate(15deg);
  margin-left: 2px;
  font-weight: 900;
}

input[type='checkbox'] {
  display: none;
}

/* label */
input[type='checkbox'] + label {
  position: relative;
  display: inline-block;
  top: 0;
  padding-left: 15px;
  padding-top: 1px;
  line-height: 1.2em;
  font-size: 12px;
  cursor: pointer;
}

input[type='checkbox'] + label.bold {
  font-weight: 800;
}

/* label::before : 체크박스 커스텀 */
input[type='checkbox'] + label::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid #2e2e2e;
  background: #fff;
  cursor: pointer;
  position: absolute;
  left: 0px;
  top: 50%;
  transition: all 0.2s;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

/* label::before 체크박스 체크되었을 때 */
input[type='checkbox']:checked + label::before {
  background: url('../images/input_check.png') #2e2e2e no-repeat center;
  background-size: 7px;
  transform: scale3d(1, 1, 1) translateY(-50%);
  -webkit-transform: scale3d(1, 1, 1) translateY(-50%);
  -moz-transform: scale3d(1, 1, 1) translateY(-50%);
  -ms-transform: scale3d(1, 1, 1) translateY(-50%);
  -o-transform: scale3d(1, 1, 1) translateY(-50%);
}

/* label */
input.check_custom + label {
  position: relative;
  display: inline-block;
  top: 0;
  padding-left: 24px;
  padding-top: 1px;
  line-height: 1.2em;
  font-size: 11px;
  cursor: pointer;
}

/* label::before : 체크박스 커스텀 */
input.check_custom + label::before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid #d7d7d7;
  background: #fff;
  cursor: pointer;
  border-radius: 100%;
  position: absolute;
  left: 0px;
  top: 50%;
  transition: all 0.2s;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

/* label::before 체크박스 체크되었을 때 */
input.check_custom:checked + label::before {
  background: url('../images/input_radio.png') no-repeat center center;
  background-size: 10px;
  transform: scale3d(1, 1, 1) translateY(-50%);
  -webkit-transform: scale3d(1, 1, 1) translateY(-50%);
  -moz-transform: scale3d(1, 1, 1) translateY(-50%);
  -ms-transform: scale3d(1, 1, 1) translateY(-50%);
  -o-transform: scale3d(1, 1, 1) translateY(-50%);
}

@-webkit-keyframes arrowAni {
  0% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
  50% {
    transform: translateY(15px);
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
  }
  100% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
}

@keyframes arrowAni {
  0% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
  50% {
    transform: translateY(15px);
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
  }
  100% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
}
@-webkit-keyframes scaleAni {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  50% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}
@keyframes scaleAni {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  50% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}
.bold {
  font-weight: 900;
}

.inner {
  position: relative;
  margin: 0 auto;
  width: 900px;
  box-sizing: border-box;
}

.blind {
  position: absolute;
  top: -9999px;
  left: -9999px;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  text-indent: -9999em;
}

.ani_scale {
  display: inline-block;
  animation: scaleAni 1s;
  -webkit-animation: 0.7s scaleAni 0.5s 2;
}

.header {
  background: #0053ba;
  padding: 18px 0;
}
.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo--img {
  width: 135px;
}
.header__logo--txt {
  margin-top: 10px;
  transform: rotate(0.04deg);
  font-size: 15px;
  color: #fff;
}
.header__tel {
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  transform: rotate(0.04deg);
}
.header__tel--img {
  margin-right: 5px;
  width: 17px;
}

.visual {
  background: url(../images/visual_bg.png) no-repeat left -90px;
  background-size: cover;
}
.visual .wrap {
  padding: 25px 20px 35px;
}
.visual__check--list {
  display: flex;
  justify-content: center;
}
.visual__check--list:not(:last-child) {
  margin-bottom: 10px;
}
.visual__check--list li {
  position: relative;
  padding-left: 25px;
  margin-right: 30px;
  font-size: 16px;
  font-weight: 800;
  transform: rotate(0.04deg);
}
.visual__check--list li::before {
  content: '';
  display: block;
  width: 19px;
  height: 19px;
  position: absolute;
  left: 0;
  top: calc(50% - 3px);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  background: url(../images/ic_check.png) no-repeat;
  background-size: 100%;
}
.visual__title {
  font-size: 35px;
  text-align: center;
  color: #0053ba;
  margin-top: 25px;
  line-height: 1.8;
}
.visual__title .txt_point {
  position: relative;
}
.visual__title .txt_point::before,
.visual__title .txt_point::after {
  content: '';
  display: block;
  position: absolute;
  width: 4px;
  height: 4px;
  background: #0053ba;
  top: -7px;
}
.visual__title .txt_point::before {
  left: 17px;
}
.visual__title .txt_point::after {
  left: 51px;
}
.visual__title .bold {
  font-weight: 900;
}
.visual__form {
  margin-top: 30px;
  padding: 20px 28px;
  box-shadow: 5px 5px 8px -1px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.visual__form_title {
  font-size: 24px;
  text-align: center;
  font-weight: 700;
}
.visual__form--wrap {
  margin-top: 10px;
}
.visual__form_input--txt {
  width: 100%;
  height: 40px;
  border: none;
  background: #ebebeb;
  padding-left: 17px;
}
.visual__form_input--txt:not(:first-child) {
  margin-top: 5px;
}
.visual__form_box.check {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}
.visual__form__btn--modal {
  padding: 3px 7px;
  background: none;
  font-size: 10px;
  border: 1px solid #2d2d2d;
  color: #333;
}
.visual .check__normal--box {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}
.visual .check__all--box {
  display: flex;
  align-items: center;
}
.visual__form_btn--consulting,
.visual__form_btn--kakao {
  display: flex;
  height: 40px;
  justify-content: center;
  align-items: center;
}
.visual__form_btn--smscafe {
	margin-top: 5px;
	background-image:url(/images/smc_cafe.jpg);
	background-position:center;
	background-size:cover;
	display: flex;
  height: 40px;
  justify-content: center;
  align-items: center;
}
.visual__form_btn--consulting {
  margin-top: 10px;
  font-weight: 900;
  background: #2a85f5;
  color: #fff;
}
.visual__form_btn--kakao_txt {
  font-weight: 900;
}
.visual__form_btn--kakao {
  margin-top: 5px;
  background: #fae100;
  color: #3b1c1e;
  font-size: 14px;
}
.visual__form_btn--kakao .kakao_logo {
  width: 23px;
  margin-right: 5px;
}
.visual__form_btn--kakao .kakao_plus_logo {
  width: 80px;
  margin-left: 15px;
}
.visual__form_txt {
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  margin-top: 5px;
}

.arrow__area--btn {
  display: block;
  background: none;
  margin: 10px auto 60px;
}
.arrow__area--btn img {
  width: 27px;
  animation: arrowAni 1.3s infinite;
  -webkit-animation: arrowAni 1.3s infinite;
}

.section__title {
  font-size: 35px;
  font-weight: 300;
  color: #343434;
  text-align: center;
  line-height: 1.3;
}
.section__title .bold {
  font-weight: 900;
}
.section__subtitle {
  margin-top: 20px;
  text-align: center;
  line-height: 1.5;
}

.info1 {
  padding-bottom: 65px;
}
.info1__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-betweenm;
}
.info1__list li {
  margin-top: 45px;
  position: relative;
  padding-top: 36px;
  width: calc(50% - 3.5px);
  background: #ebebeb;
  text-align: center;
  height: 165px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.info1__list li:nth-child(odd) {
  margin-right: 7px;
}
.info1__list li:nth-child(1) .info1__item--icon img {
  width: 50px;
}
.info1__list li:nth-child(2) .info1__item--icon img {
  width: 37px;
}
.info1__list li:nth-child(3) .info1__item--icon img {
  width: 65px;
}
.info1__list li:nth-child(4) .info1__item--icon img {
  width: 70px;
}
.info1__item--icon {
  position: absolute;
  background: #fff;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
}
.info1__item--icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.info2 {
  padding: 65px 0;
  background: #ebebeb;
}
.info2__list {
  margin-top: 30px;
}
.info2__list li {
  border: 1px solid #fff;
  box-shadow: 5px 5px 8px -1px rgba(0, 0, 0, 0.1);
  padding-top: 30px;
  text-align: center;
  height: 305px;
}
.info2__list li:not(:first-child) {
  margin-top: 17px;
}
.info2__list li:nth-child(1) {
  background: url('../images/img_benefit1.png') no-repeat bottom left;
  background-size: 65%;
}
.info2__list li:nth-child(2) {
  background: url('../images/img_benefit2.png') no-repeat bottom center;
  background-size: 65%;
}
.info2__list li:nth-child(3) {
  background: url('../images/img_benefit3.png') no-repeat bottom center;
  background-size: 48%;
}
.info2__list li:nth-child(4) {
  background: url('../images/img_benefit4.png') no-repeat bottom center;
  background-size: 55%;
}
.info2__item--title {
  font-weight: 900;
  font-size: 23px;
}
.info2__item--content {
  margin-top: 10px;
  line-height: 1.3;
}

.info3 {
  background: #0053ba;
  padding: 65px 0;
}
.info3 .section__subtitle {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 45px;
  font-weight: 300;
}
.info3 .section__subtitle.last {
  font-weight: 400;
  line-height: 1.4;
}
.info3 .section__subtitle--p {
  line-height: 1.5;
  font-weight: 300;
}
.info3__img--box {
  text-align: center;
  margin-top: 40px;
}
.info3__img--box img {
  width: 160px;
}

.caution {
  margin-top: 50px;
  padding: 20px 35px;
  background: #266dc4;
}
.caution__img {
  display: block;
  margin: 0 auto 5px;
  width: 45px;
}
.caution__img--box {
  text-align: center;
  font-size: 16px;
  font-weight: 900;
}
.caution__list {
  margin-top: 15px;
}
.caution__list li {
  color: #fff;
  line-height: 1.5;
  position: relative;
  padding-left: 15px;
  font-size: 12px;
}
.caution__list li:not(first-child) {
  margin-top: 5px;
}
.caution__list li::before {
  content: '※';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.info4 {
  padding: 65px 0 195px;
  background: #2e3233;
}
.info4__list {
  color: #fff;
}
.info4__list:not(first-child) {
  margin-top: 28px;
}
.info4__list li {
  position: relative;
  padding-left: 10px;
  font-size: 16px;
}
.info4__list li:not(:first-child) {
  margin-top: 7px;
  line-height: 1.5;
}
.info4__list li::before {
  content: '';
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 6px;
}

.floating {
  background: #f0f0f0;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 215px;
  padding: 20px 0;
}
.floating__input--txt {
  display: block;
  width: 100%;
  height: 30px;
  background: #fff;
  border: 1px solid #d7d7d7;
  padding-left: 10px;
  font-size: 14px;
}
.floating__input--txt:not(:first-child) {
  margin-top: 5px;
}
.floating__btn--detail {
  font-size: 11px;
}
.floating__check--box {
  margin-top: 6px;
}
.floating__btn--consulting,
.floating__btn--kakao {
  display: block;
  width: calc(50% - 5px);
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.floating__btn--consulting {
  background: #2a85f5;
  color: #fff;
}
.floating__btn--kakao {
  background: #fae100;
  border: 1px solid #e8c800;
  color: #3b1c1e;
}
.floating__btn--wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}

.btn__top {
  position: fixed;
  bottom: 185px;
  width: 45px;
  height: 45px;
  background: #fff;
  right: 20px;
  border-radius: 100%;
}
.btn__top img {
  width: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.modal__bg {
  position: fixed;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
}
.modal__content {
  padding: 25px 20px;
  width: 90%;
  height: 70vh;
  position: fixed;
  z-index: 101;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  background: #fff;
  overflow-y: auto;
}
.modal__title {
  font-weight: 700;
  font-size: 16px;
  -moz-text-align-last: center;
  text-align-last: center;
  margin-bottom: 15px;
}
.modal__header {
  position: relative;
}
.modal__btn--close {
  position: absolute;
  right: 0;
  top: 0;
  width: 13px;
  height: 13px;
  border: 1px solid #333;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__btn--close img {
  width: 5px;
}
.modal__p {
  font-size: 10px;
  line-height: 1.3;
}
.modal__box--p {
  margin-top: 10px;
}
.modal__subtitle {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}
.modal__list li {
  position: relative;
  line-height: 1.3;
  font-size: 11px;
	padding:0 10px;
	box-sizing:border-box;
}
.modal__list li:not(:last-child) {
  margin-bottom: 5px;
}
.modal__list li::before {
  content: '-';
  display: block;
  position: absolute;
  left: 4px;
  top: 0;
} /*# sourceMappingURL=index.css.map */


.header__logo--txt {font-size:24px;}
.header__tel {font-size:24px;}
.header__logo--img {width:260px;}
.info4__list li {font-size:24px;}
	
.header__logo {font-size:31px;font-weight:700;}
.btns {padding:0 0 40px 0;}
.btns > a > .btn_view {font-size:20px;color:#FFF;border:1px solid #FFF;padding:10px 20px;}
.company_wrap_pop {display:none;position:fixed;width:90%;height:400px;background:#FFFFFF;margin-left:5%;top:30px;z-index:9;}
.company_wrap_pop  > .close {float:right;padding:5px 10px;border:1px solid #CCC;margin-right:10px;margin-top:10px;}
.company_wrap_pop  > .content {padding:70px 20px 20px 20px;font-size:18px;line-height:1.5;}

.company_wrap_privacy_pop {display:none;position:fixed;width:100%;height:100%;left:0;top:0;;z-index:9;background-color:rgba(0,0,0,.7);}
.company_wrap_privacy_pop .company_wrap_privacy{position:relative;width:98%;height:600px;margin:0 auto;background:#FFFFFF;margin-top:2%;margin-left:1%;}
.company_wrap_privacy_pop .company_wrap_privacy > .close {position:absolute;right:20px;;padding:5px 10px;border:1px solid #CCC;margin-right:10px;margin-top:10px;background:#FFFFFF;z-index:10;}
.company_wrap_privacy_pop .company_wrap_privacy > .content {padding:100px 20px 20px 20px;font-size:18px;line-height:1.5;height:500px;overflow:auto;line-height:1.4;}
.company_wrap_privacy_pop .company_wrap_privacy > .content  .p_head{font-weight:700;text-align:center;width:100%;margin-bottom:50px;}
.company_wrap_privacy_pop .company_wrap_privacy > .content  .ttl{font-weight:700;margin-bottom:10px;}
.company_wrap_privacy_pop .company_wrap_privacy > .content  span{display:block;font-weight:700;margin-bottom:10px;}

.company_wrap_privacy_pop .company_wrap_privacy > .content  table{width:100%;border:1px solid #DEDEDE;}
.company_wrap_privacy_pop .company_wrap_privacy > .content  table.cmp th{border:1px solid #DEDEDE;padding:15px 0;text-align:center;font-weight:700;}
.company_wrap_privacy_pop .company_wrap_privacy > .content  table.cmp td{width:50%;border:1px solid #DEDEDE;padding:15px 10px;text-align:center;box-sizing:border-box;}

.company_wrap_privacy_pop .company_wrap_privacy > .content  table.manager th{width:50%;border:1px solid #DEDEDE;padding:15px 0;text-align:center;font-weight:700;}
.company_wrap_privacy_pop .company_wrap_privacy > .content  table.manager td{border:1px solid #DEDEDE;padding:15px 10px;text-align:center;box-sizing:border-box;}
