@charset "utf-8";
/******************************************************
    font
******************************************************/
/* Notosanskr */
@font-face {
  font-family: 'NotosanskrB';
  src: local('※'), url('/resource/css/fonts/NotosanskrBold.woff') format('woff');
}
@font-face {
  font-family: 'NotosanskrM';
  src: local('※'), url('/resource/css/fonts/NotosanskrMedium.woff') format('woff');
}
@font-face {
  font-family: 'NotosanskrR';
  src: local('※'), url('/resource/css/fonts/NotosanskrRegular.woff') format('woff');
}
@font-face {
  font-family: 'NotosanskrL';
  src: local('※'), url('/resource/css/fonts/NotosanskrLight.woff') format('woff');
}
@font-face {
  font-family: 'NotosanskrT';
  src: local('※'), url('/resource/css/fonts/NotosanskrThin.woff') format('woff');
}

/* NanumSquareRound */
@font-face {
  font-family: 'NanumSquareRoundEB';
  src: local('※'), url('/resource/css/fonts/NanumSquareRoundEB.woff') format('woff');
}
@font-face {
  font-family: 'NanumSquareRoundB';
  src: local('※'), url('/resource/css/fonts/NanumSquareRoundB.woff') format('woff');
}
@font-face {
  font-family: 'NanumSquareRoundR';
  src: local('※'), url('/resource/css/fonts/NanumSquareRoundR.woff') format('woff');
}
@font-face {
  font-family: 'NanumSquareRoundL';
  src: local('※'), url('/resource/css/fonts/NanumSquareRoundL.woff') format('woff');
}

/* NanumSquare */
@font-face {
  font-family: 'NanumSquareEB';
  src: local('※'), url('/resource/css/fonts/NanumSquareEB.woff') format('woff');
}
@font-face {
  font-family: 'NanumSquareB';
  src: local('※'), url('/resource/css/fonts/NanumSquareB.woff') format('woff');
}
@font-face {
  font-family: 'NanumSquareR';
  src: local('※'), url('/resource/css/fonts/NanumSquareR.woff') format('woff');
}

/******************************************************
    common
******************************************************/
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,
textarea,
input,
select {
  margin: 0;
  padding: 0;
  border: 0;
  word-break: break-all; /*모바일기기 터치시 하이라이트 방지->*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /*웹킷기반 모바일 가로전환시 폰트크기 자동변경방지->*/
  -webkit-text-size-adjust: none;
}
html,
body {
  overflow-x: hidden;
}
body {
  font-size: 14px;
  color: #323232;
  letter-spacing: -1px;
  line-height: 1.3;
  font-family: NotosanskrRegular;
}
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;
}
img {
  width: 100%;
  vertical-align: top;
}
select,
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline-style: none;
  border: none;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
img,
fieldset {
  border: 0;
}
fieldset,
legend,
caption,
hr {
  display: none;
}
textarea {
  resize: none;
}
td,
th {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a,
a:hover,
a:link,
a:active,
a:visited {
  color: #323232;
  text-decoration: none;
}
button {
  padding: 0;
  margin: 0;
  outline-style: none;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: NotosanskrRegular;
}
em,
i,
address {
  font-style: normal;
}
::-webkit-input-placeholder {
  font-size: 15px;
  color: #c0bfc5;
  -webkit-text-fill-color: #c0bfc5;
  font-family: NotosanskrRegular;
}

/* dim */
.dim {
  display: none;
  z-index: 5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

/* popup */
.noScroll {
  overflow: hidden;
  position: fixed;
}

/* 대체 텍스트 숨김시 사용 하는 클래스 */
.text_hidden {
  overflow: hidden;
  white-space: nowrap;
  text-indent: -1000px;
  font-size: 0;
  line-height: 0;
}

/*****************************  
flex 
*****************************/
.flexSb {
  display: -webkit-box; /*=flex*/
  display: -webkit-flex;
  display: flex;
  flex-direction: row; /*가로,세로*/
  flex-wrap: wrap; /*영역오버시 하단으로 줄바꿈*/
  align-content: flex-start; /*줄바꿈시 여백 탑정렬*/
  -webkit-justify-content: space-between;
  justify-content: space-between; /*좌우정렬(item안쪽여백)*/
  -webkit-align-items: center;
  align-items: center; /*상하정렬(가운데)*/
  -webkit-box-orient: horizontal; /*=fles-direction*/
  -webkit-box-pack: justify; /*=justify-content*/
  -webkit-box-align: center; /*=align-items*/
}
.flexSt {
  display: -webkit-box; /*=flex*/
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: center; /*상하정렬(자동채움)*/
  -webkit-box-orient: horizontal;
  -webkit-box-pack: justify;
  -webkit-box-align: center;
}
.flexSa {
  display: -webkit-box; /*=flex*/
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  -webkit-justify-content: space-around;
  justify-content: space-around; /*좌우정렬(item안쪽여백)*/
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-pack: justify;
  -webkit-box-align: center;
}
.flexCen {
  display: -webkit-box; /*=flex*/
  display: -webkit-flex;
  display: flex;
  flex-direction: row; /*가로,세로*/
  flex-wrap: wrap; /*영역오버시 하단으로 줄바꿈*/
  align-content: flex-start; /*줄바꿈시 여백 탑정렬*/
  -webkit-justify-content: center;
  justify-content: center; /*좌우정렬(item안쪽여백)*/
  -webkit-align-items: center;
  align-items: center; /*상하정렬(가운데)*/
  -webkit-box-orient: horizontal; /*=fles-direction*/
  -webkit-box-pack: justify; /*=justify-content*/
  -webkit-box-align: center; /*=align-items*/
}
.flexSb > *,
.flexSt > *,
.flexSa > * {
  display: block;
}
.flex_1 {
  -webkit-flex: 1;
  -webkit-box-flex: 1;
  flex: 1;
}

/*****************************  
Helper Class 
*****************************/
/* display */
.dsNone {
  display: none !important;
}
.dsBlock {
  display: block !important;
}

/* overflow */
.overflowH {
  overflow: hidden !important;
}

/* float */
.floatLeft {
  float: left !important;
}
.floatRight {
  float: right !important;
}
.clearBoth:after {
  content: '';
  display: block;
  clear: both;
}

/* text-align */
.tc {
  text-align: center !important;
}
.tl {
  text-align: left !important;
}
.tr {
  text-align: right !important;
}

/* margin */
.m0 {
  margin: 0 !important;
}
.ml5 {
  margin-left: 5px !important;
}
.ml10 {
  margin-left: 10px !important;
}
.ml15 {
  margin-left: 15px !important;
}
.ml20 {
  margin-left: 20px !important;
}

.mt0 {
  margin-top: 0 !important;
}
.mt5 {
  margin-top: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt25 {
  margin-top: 25px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mt35 {
  margin-top: 35px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt45 {
  margin-top: 45px !important;
}
.mt50 {
  margin-top: 50px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}
.mb5 {
  margin-bottom: 5px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb25 {
  margin-bottom: 25px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb35 {
  margin-bottom: 35px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb45 {
  margin-bottom: 45px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}

/* padding */
.p0 {
  padding: 0 !important;
}
.p5 {
  padding: 5px !important;
}
.p10 {
  padding: 10px !important;
}
.p15 {
  padding: 15px !important;
}
.p20 {
  padding: 20px !important;
}
.p25 {
  padding: 25px !important;
}
.p30 {
  padding: 30px !important;
}

.pt0 {
  padding-top: 0 !important;
}
.pt5 {
  padding-top: 5px !important;
}
.pt10 {
  padding-top: 10px !important;
}
.pt15 {
  padding-top: 15px !important;
}
.pt20 {
  padding-top: 20px !important;
}
.pt25 {
  padding-top: 25px !important;
}
.pt30 {
  padding-top: 30px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}
.pb5 {
  padding-bottom: 5px !important;
}
.pb10 {
  padding-bottom: 10px !important;
}
.pb15 {
  padding-bottom: 15px !important;
}
.pb20 {
  padding-bottom: 20px !important;
}
.pb25 {
  padding-bottom: 25px !important;
}
.pb30 {
  padding-bottom: 30px !important;
}

/* word-break */
.wordKeep {
  word-break: keep-all;
}
.wordBreak {
  word-break: break-all;
}

/* font-size */
.font12 {
  font-size: 12px !important;
}
.font14 {
  font-size: 14px !important;
}
.font16 {
  font-size: 16px !important;
}
.font18 {
  font-size: 18px !important;
}
.font20 {
  font-size: 20px !important;
}

/* border */
.bdn {
  border-bottom: none !important;
}
.bdb {
  border-bottom: 1px solid #ccc !important;
}

/*--------------------
TEXT
---------------------*/
.phone_num {
  color: #584bff;
  font-family: NotosanskrBold;
}
.profile_infor .name {
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.5px;
  color: #373250;
  font-family: NotosanskrMedium;
}
.profile_infor .number {
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.5px;
  color: #373250;
  font-family: NotosanskrMedium;
}

/*--------------------
TITLE
---------------------*/
.main_title.main {
  font-size: 24px;
  line-height: 35px;
  color: #373250;
}
.infor_title.sub {
  font-size: 13px;
  color: #584bff;
}

/*--------------------
BUTTON
---------------------*/
.btn_look {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.5px;
  color: #bfbfbf;
  text-decoration: underline;
}

/*--------------------
INPUT
---------------------*/
.input_inner.tel {
  overflow: hidden;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.input_inner.tel .input {
  width: 70%;
}
.input_inner.tel .btn_confirm {
  width: 30%;
  height: 48px;
  background: #584bff;
  font-size: 15px;
  line-height: 20px;
  color: #fff;
}

.input.error {
  border: 2px solid #ff2900;
}
.error_mes {
  margin-top: 4px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.5px;
  color: #ff2900;
}
.s_point {
  color: #584bff;
}

/*--------------------
SWIPER
---------------------*/
.swiper-container {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
  transform: translate3d(0, 0, 0);
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff; /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-pagination {
  width: 100%;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination-bullet {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 9px;
  border-radius: 100%;
  background: #fff;
}
.swiper-pagination-bullet-active {
  width: 35px;
  background: #0b00d1;
  -webkit-border-radius: 7.5px;
  border-radius: 7.5px;
}

/*****************************  
Base layout
*****************************/
div.layout {
  width: 100%;
}
div.container {
  width: 100%;
}
div.content {
  width: 100%;
}

/*****************************  
nav or header
*****************************/
nav.nav {
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
nav.nav.on,
div.upstairs nav.nav.on {
  background: rgba(255, 255, 255, 0.9);
}
button.menu_open {
  display: none;
  float: right;
  width: 70px;
  height: 70px;
  background: url(/resource/images/common/icon_menu_open.svg) no-repeat center center;
  background-size: 29px auto;
}
div.upstairs nav.nav {
  background: #364f7e;
}
nav.nav div.nav_inner {
  position: relative;
  max-width: 1024px;
  min-width: 320px;
  margin: 0 auto;
}
nav.nav div.nav_list {
  float: right;
  margin: 26px 0 0 0;
}
nav.nav div.nav_list a.link {
  margin-left: 40px;
  font-size: 17px;
  letter-spacing: 0.8px;
  color: #000;
  font-family: NanumSquareR;
}
nav.nav div.nav_list a.link.active {
  font-family: NanumSquareEB;
}
nav.nav div.nav_list a.link:first-child {
  margin-left: 0;
}
nav.nav div.nav_list.text_white a.link {
  color: #fff;
}
a.logo_upstairs {
  float: left;
  display: block;
  width: 138px;
  height: 29px;
  margin: 20px 0 20px 0;
  background: url(/resource/images/common/img_nav_logo.svg) no-repeat;
  background-size: 100% auto;
}
a.logo_upstairs.white {
  background: url(/resource/images/common/img_nav_logo_white.svg) no-repeat right bottom;
  background-size: 100% auto;
}
a.logo_upstairs.blue {
  background: url(/resource/images/common/img_nav_logo_blue.svg) no-repeat right bottom;
  background-size: 100% auto;
}

nav.nav_mobile {
  z-index: 10;
  position: fixed;
  top: 0;
  right: 0;
  width: 220px;
  height: 100%;
  background: #fff;
  padding: 65px 48px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
}
nav.nav_mobile.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
nav.nav_mobile div.nav_inner {
  text-align: center;
}
nav.nav_mobile a.logo_upstairs {
  float: none;
  display: inline-block;
  width: 124px;
  height: 26px;
  margin: 0;
  text-align: center;
}
nav.nav_mobile div.nav_list {
  margin-top: 18px;
}
nav.nav_mobile a.link {
  display: block;
  padding: 18px 0;
  font-size: 14px;
  letter-spacing: 0.7px;
  color: #000;
  font-family: NanumSquareR;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
nav.nav_mobile button.menu_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 57px;
  height: 57px;
  background: url(/resource/images/common/icon_menu_close.svg) no-repeat center center;
  background-size: 29px auto;
}

/*****************************  
footer
*****************************/
footer.footer {
  background: #f6f6f6;
}
div.footer_inner {
  letter-spacing: normal;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  min-width: 320px;
  max-width: 1024px;
  height: 300px;
  padding: 40px 20px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a.footer_logo {
  display: block;
  width: 114px;
  height: 24px;
  padding-top: 58px;
  margin-bottom: 17px;
  background: url(/resource/images/common/img_footer_logo.svg) no-repeat right bottom;
  background-size: 114px auto;
}
p.text_footer {
  font-size: 12px;
  line-height: 20px;
  color: #303030;
  font-family: NotosanskrR;
}
p.text_service {
  margin-top: 29px;
  font-size: 13px;
  line-height: 20px;
  color: #000;
  font-family: NotosanskrR;
}
a.link_email {
  font-size: 13px;
  line-height: 20px;
  color: #000;
  font-family: NanumSquareR;
}
p.text_copyright {
  margin-top: 5px;
  font-size: 11px;
  line-height: 20px;
  color: #303030;
  font-family: NanumSquareR;
}
div.footer_inner li.link_item {
  text-align: center;
}
/* 기존코드 a.btn_shape { display: inline-block; padding: 15px 30px; background: #fff; -webkit-border-radius: 4px; border-radius: 4px; -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1); box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1); font-size: 14px; line-height: 20px; color: #222; font-family: NanumSquareR; text-align: center; -webkit-box-sizing: border-box; box-sizing: border-box; }*/
a.btn_shape {
  display: inline-block;
  width: calc(100%);
}
a.btn_shape.channel {
  margin-right: 24px;
}
a.btn_app {
  display: inline-block;
  width: 172px;
  height: auto;
}
a.btn_app.channel {
  margin-right: 24px;
}
footer.footer table.btn {
  margin-top: 40px;
}
#ttitle {
  font-size: 15px;
  font-weight: bold;
  padding-bottom: 5px;
}
td.tbtn {
  padding-top: 15px;
  padding-bottom: -5px;
  font-size: 12px;
  vertical-align: middle;
  max-width: 150px;
}
img.btn_snsimg {
  width: 25px;
  margin-top: -5px;
  padding-right: 3px;
}
img.btn_storeimg {
  width: calc(80%);
}
img.cert_umts {
  width: 64px;
}

/*****************************  
content
*****************************/
/* home */
div.wrap_home {
  overflow: hidden;
}
div.inner_home {
  position: relative;
  width: 100%;
  min-width: 320px;
  max-width: 1024px;
  margin: 0 auto;
}
div.inner_home:after {
  z-index: -1;
  content: '';
  position: absolute;
  top: 386px;
  right: -260px;
  width: 693px;
  height: 569px;
  background: url(/resource/images/home/img_home.png) no-repeat;
  background-size: 100% auto;
}
div.inner_home div.text_box {
  padding-top: 239px;
  margin-right: 30px;
}
div.inner_home p.title_home {
  font-size: 60px;
  letter-spacing: -0.86px;
  color: #000;
  font-family: NanumSquareRoundEB;
  word-break: break-word;
}
div.inner_home span.text_point {
  font-size: 60px;
  letter-spacing: -0.86px;
  color: #0065ff;
  font-family: NanumSquareRoundEB;
  word-break: break-word;
}
div.inner_home span.text_highlight {
  color: #0065ff;
}
div.inner_home p.title_sub {
  margin-top: 25px;
  font-size: 19px;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: #000;
  font-family: NotosanskrR;
  word-break: break-word;
}
div.inner_home div.list_history {
  padding: 20px 0 200px;
}
div.inner_home div.list_inner {
  position: relative;
}
div.inner_home div.list_inner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 7px;
  width: 1px;
  height: 100%;
  background: #e1e7ef;
}
div.inner_home p.list_text {
  position: relative;
  margin-top: 28px;
  padding-left: 28px;
  font-size: px;
  letter-spacing: -0.5px;
  color: #303030;
  font-family: NotosanskrR;
}
div.inner_home p.list_text:before {
  z-index: 1;
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 15px;
  height: 15px;
  margin-top: -7px;
  background: #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 3px solid #0065ff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
div.inner_home p#height {
  height: 5px;
}
div.inner_home span.plain_text {
  position: relative;
  margin-top: 28px;
  padding-left: 28px;
  font-size: 14px;
  letter-spacing: -0.5px;
  color: #303030;
  font-family: NotosanskrR;
}
div.inner_home span.year {
  position: relative;
  margin-top: 28px;
  margin-bottom: -20px;
  padding-top: 155px;
  font-size: 30px;
  letter-spacing: -0.5px;
  color: #0065ff;
  font-family: NanumSquareRoundEB;
}
div.inner_home span.month {
  position: relative;
  margin-top: 28px;
  margin-bottom: -20px;
  padding-right: 5px;
  font-size: 15px;
  letter-spacing: -0.5px;
  color: black;
  font-family: NanumSquareRoundEB;
}
div.inner_home span.nonemonth {
  position: relative;
  margin-top: 28px;
  margin-bottom: -20px;
  padding-right: 25px;
  font-size: 15px;
  letter-spacing: -0.5px;
  color: black;
  font-family: NanumSquareRoundEB;
}
div.inner_home td.month-area {
  padding-left: 28px;
  min-width: 60px;
  vertical-align: text-top;
}
div.inner_home p.infotext {
  position: relative;
  font-size: 14px;
  letter-spacing: -0.5px;
  color: #303030;
  font-family: NotosanskrR;
}
div.inner_home strong {
  color: black;
  font-family: NanumSquareRoundEB;
}
div.mobile_area {
  display: none;
}

/* upstairs */
div.wrap_infor {
  background: #364f7e;
}
div.inner_infor {
  position: relative;
  width: 100%;
  min-width: 320px;
  max-width: 1024px;
  margin: 0 auto;
}
div.inner_infor:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -213px;
  width: 718px;
  height: 592px;
  background: url(/resource/images/upstairs/img_it.png) no-repeat;
  background-size: 100% auto;
}
p.title_it {
  z-index: 1;
  position: relative;
  padding-top: 277px;
  font-size: 30px;
  line-height: 50px;
  letter-spacing: -0.5px;
  color: #fff;
  font-family: NotosanskrB;
}
p.text_it {
  z-index: 1;
  position: relative;
  padding: 16px 0 225px;
  font-size: 17px;
  line-height: 26px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.6);
  font-family: NanumSquareR;
}
div.wrap_grow {
  background: #fafbff;
}
div.inner_grow {
  position: relative;
  width: 100%;
  min-width: 320px;
  max-width: 1024px;
  margin: 0 auto;
}
p.text_grow {
  position: relative;
  padding: 338px 20px 99px 25px;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: #000;
  font-family: NotosanskrR;
  text-align: center;
  word-break: break-word;
}
p.text_grow.mobile {
  display: none;
}
p.text_grow:after {
  content: '';
  position: absolute;
  top: 93px;
  left: 50%;
  width: 453px;
  height: 228px;
  margin-left: -226.5px;
  background: url(/resource/images/upstairs/img_grow.png) no-repeat;
  background-size: 100% auto;
}
div.wrap_place {
  background: #fff;
}
div.inner_place {
  position: relative;
  width: 100%;
  min-width: 320px;
  max-width: 1024px;
  margin: 0 auto;
}
p.text_place {
  position: relative;
  padding: 487px 20px 87px 25px;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: #000;
  font-family: NotosanskrR;
  text-align: center;
}
p.text_place.mobile {
  display: none;
}
p.text_place:after {
  content: '';
  position: absolute;
  top: 77px;
  left: 50%;
  width: 570px;
  height: 389px;
  margin-left: -285px;
  background: url(/resource/images/upstairs/it_place.png) no-repeat;
  background-size: 100% auto;
}
div.wrap_deal {
  background: #0065ff;
}
div.inner_deal {
  position: relative;
  width: 100%;
  min-width: 320px;
  max-width: 1024px;
  margin: 0 auto;
}
p.text_deal {
  position: relative;
  padding: 487px 20px 90px 25px;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: #fff;
  font-family: NotosanskrR;
  text-align: center;
}
p.text_deal.mobile {
  display: none;
}
p.text_deal:after {
  content: '';
  position: absolute;
  top: 80px;
  left: 50%;
  width: 1132px;
  height: 400px;
  margin-left: -566px;
  background: url(/resource/images/upstairs/it_deal.png) no-repeat;
  background-size: 100% auto;
}

/* product */
div.wrap_joongabi {
  background: linear-gradient(180deg, #f5f7fb, #d5dce8);
}
div.inner_joongabi {
  position: relative;
  width: 100%;
  min-width: 320px;
  max-width: 1024px;
  margin: 0 auto;
  text-align: ;
}
div.inner_joongabi:after {
  content: '';
  position: absolute;
  top: 178px;
  left: -280px;
  width: 880px;
  height: 823px;
  background: url(/resource/images/product/img_joongabi.png) no-repeat;
  background-size: 100% auto;
}
div.cover_joongabi {
  padding: 451px 0 300px 600px;
}
p.title_joongabi {
  display: inline-block;
  padding-left: 148px;
  background: url(/resource/images/product/img_text_joongabi.png) no-repeat;
  background-size: 140px auto;
  font-size: 31px;
  line-height: 46px;
  letter-spacing: -0.94px;
  color: #425cc7;
  font-family: NanumSquareEB;
}
p.title_fongabi {
  margin-top: 50px;
  display: inline-block;
  width: 300px;
  height: 60px;
  background: url(/resource/images/product/img_text_fongabi.png) no-repeat;
  background-size: 100% auto;
}
p.text_joongabi {
  margin-top: 26px;
  font-size: 16px;
  letter-spacing: -0.5px;
  color: #303030;
  font-family: NotosanskrR;
}
a.btn_direct {
  display: inline-block;
  min-width: 210px;
  margin-top: 65px;
  padding: 15px 30px;
  font-size: 15px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background: #4c556b;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

div.wrap_joongabi.mobile {
  background: linear-gradient(180deg, #a2b1c7, #c8d0dd);
}
div.wrap_joongabi.mobile div.inner_joongabi:after {
  content: '';
  position: absolute;
  top: 154px;
  left: 225px;
  width: 1065px;
  height: 599px;
  background: url(/resource/images/product/img_mockup_joongabi.png) no-repeat;
  background-size: 100% auto;
}
div.wrap_joongabi.mobile div.cover_joongabi {
  padding: 367px 0 211px;
}

div.wrap_joongabi.phone {
  background: linear-gradient(180deg, #f5f7fb, #e1e6ed);
}
div.wrap_joongabi.phone div.inner_joongabi:after {
  content: '';
  position: absolute;
  top: 183px;
  left: -242px;
  width: 840px;
  height: 647px;
  background: url(/resource/images/product/img_invalid_name.png) no-repeat;
  background-size: 100% auto;
}
div.wrap_joongabi.phone div.cover_joongabi {
  padding: 319px 0 270px 600px;
}

/* culture */
div.wrap_infor.culture {
  background: #0065ff;
}
div.wrap_infor.culture div.inner_infor:after {
  content: '';
  position: absolute;
  top: 157px;
  right: -65px;
  width: 570px;
  height: 542px;
  background: url(/resource/images/culture/img_culture.png) no-repeat;
  background-size: 100% auto;
}
div.wrap_infor.culture p.title_it {
  padding-top: 256px;
}
div.wrap_we div.inner_we {
  position: relative;
  width: 100%;
  min-width: 320px;
  max-width: 1024px;
  padding: 185px 0;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
div.inner_we p.title_main {
  position: relative;
  margin-top: 185px;
  font-size: 35px;
  line-height: 50px;
  letter-spacing: -0.5px;
  color: #000;
  font-family: NotosanskrB;
}
div.inner_we div.text_group:first-child p.title_main {
  margin: 0;
}
div.inner_we div.text_group p.title_main:after {
  position: absolute;
  top: -5px;
  left: -7px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  font-family: NotosanskrB;
}
div.inner_we div.text_group.one p.title_main:after {
  content: '1';
}
div.inner_we div.text_group.two p.title_main:after {
  content: '2';
}
div.inner_we div.text_group.three p.title_main:after {
  content: '3';
}
div.inner_we p.title_sub {
  font-size: 19px;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: #000;
  font-family: NotosanskrR;
}
div.inner_we div.text_box {
  padding-left: 269px;
}
div.inner_we div.text_list {
  padding-top: 26px;
}
div.inner_we div.text_list p.list_mes {
  font-size: 15px;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: #000;
}
div.wrap_promise {
  width: 100%;
  padding: 120px 0 136px;
  background: #e6ebf1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
div.wrap_promise div.inner_promise {
  position: relative;
  width: 100%;
  min-width: 320px;
  max-width: 1024px;
  margin: 0 auto;
}
div.inner_promise p.title_promise {
  font-size: 35px;
  line-height: 50px;
  letter-spacing: -0.5px;
  color: #000;
  font-family: NotosanskrB;
}
div.inner_promise div.cover_promise {
  overflow: hidden;
}
div.cube_promise {
  float: left;
  width: 40%;
  margin-top: 60px;
}
div.cube_promise.n3 {
  width: 20%;
}
div.cube_promise.n6 {
  width: 20%;
}
div.cube_promise.n9 {
  width: 20%;
}
div.cube_promise p.order_num {
  font-size: 27px;
  letter-spacing: 0px;
  color: #000;
  font-family: NotosanskrB;
}
div.cube_promise p.order_text {
  margin-top: 7px;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #303030;
  font-family: NotosanskrR;
}

/* career */
div.wrap_infor.grow {
  background: #fff;
}
div.wrap_infor.grow div.inner_infor {
  position: relative;
  width: 100%;
  min-width: 320px;
  max-width: 1024px;
  margin: 0 auto;
}
div.wrap_infor.grow div.inner_infor:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  height: auto;
  background: none;
}
div.wrap_infor.grow p.title_it {
  font-size: 30px;
  line-height: 50px;
  letter-spacing: -0.5px;
  color: #000;
  font-family: NotosanskrB;
}
div.wrap_infor.grow p.text_it {
  font-size: 17px;
  line-height: 26px;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 0.6);
  font-family: NotosanskrR;
}
div.swiper_member {
  width: 100%;
  padding: 78px 0 44px;
  background: #0065ff;
}
div.wrap_profile {
  width: 100%;
  padding: 44px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
div.cover_profile {
  overflow: hidden;
}
div.wrap_profile p.text_feel {
  font-size: 22px;
  line-height: 35px;
  letter-spacing: -0.48px;
  color: #000;
  font-family: NotosanskrB;
  text-align: left;
}
div.wrap_profile p.text_name {
  margin-top: 20px;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0;
  color: #0065ff;
  font-family: NotosanskrL;
  text-align: left;
}
div.cover_profile p.text_question {
  float: left;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: -0.5px;
  color: #7f7f7f;
  font-family: NotosanskrB;
}
div.cover_profile img.img_profile {
  float: right;
  width: 93px;
}
div.slide_member div.swiper-slide {
  width: 498px;
  -webkit-border-radius: 17px;
  border-radius: 17px;
  -webkit-box-shadow: 0 7px 25px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 7px 25px 0 rgba(0, 0, 0, 0.25);
}
div.slide_member div.swiper-slide:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 101, 255, 0.3);
}
div.slide_member div.swiper-slide.swiper-slide-active:after {
  display: none;
}
div.pagination_member.swiper-pagination {
  margin-top: 58px;
}

div.wrap_welfare {
  width: 100%;
  padding: 114px 0 86px;
  background: #fafbff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
div.inner_welfare {
  position: relative;
  width: 100%;
  min-width: 320px;
  max-width: 1024px;
  margin: 0 auto;
}
p.title_welfare {
  font-size: 35px;
  line-height: 50px;
  letter-spacing: -0.5px;
  color: #000;
  font-family: NotosanskrB;
}
div.cover_welfare {
  overflow: hidden;
}
div.cube_welfare {
  float: left;
  width: 55%;
  margin-top: 70px;
}
div.cube_welfare p.title_sub {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: #303030;
  font-family: NotosanskrB;
}
div.cube_welfare div.text_list {
  margin-top: 18px;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #303030;
  font-family: NotosanskrR;
}
div.cube_welfare.n2,
div.cube_welfare.n4 {
  width: 45%;
}
div.cube_welfare.n3,
div.cube_welfare.n4 {
  margin-top: 83px;
}

div.wrap_career {
  width: 100%;
  padding: 114px 0 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
div.inner_career {
  position: relative;
  width: 100%;
  min-width: 320px;
  max-width: 1024px;
  margin: 0 auto;
}
p.title_career {
  font-size: 35px;
  line-height: 50px;
  letter-spacing: -0.5px;
  color: #000;
  font-family: NotosanskrB;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
div.tab_content {
  margin-top: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
div.tab_career {
  margin-top: 44px;
}
div.tab_career button.btn_career {
  margin-left: 10px;
  padding: 9px 22px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: #f0f1f5;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  letter-spacing: 0;
  color: #000;
  font-family: NotosanskrM;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
div.tab_career button.btn_career:first-child {
  margin-left: 0;
}
div.tab_career button.btn_career.on {
  color: #fff;
  background: #62738e;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
}
div.tab_inner {
  display: none;
}
p.slider_title {
  position: relative;
  padding: 22px 0;
  border-bottom: 1px solid #f1f0f0;
  font-size: 19px;
  letter-spacing: 0;
  font-family: NotosanskrM;
  color: #000;
  cursor: pointer;
}
p.slider_title:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 18px;
  height: 12px;
  margin-top: -6px;
  background: url(/resource/images/career/icon_list_arrow.svg) no-repeat;
  background-size: 100% auto;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
}
p.slider_title.on:after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
div.slier_content {
  display: none;
  padding: 47px 40px;
  background: #f9f9f9;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
p.title_slide {
  margin: 25px 0 7px;
  font-size: 16px;
  letter-spacing: -0.5px;
  font-family: NotosanskrB;
  color: #303030;
}
p.text_slide {
  font-size: 14px;
  line-height: 27px;
  letter-spacing: -0.5px;
  font-family: NotosanskrR;
  color: #303030;
}

div.wrap_contact {
  width: 100%;
}
div.inner_contact {
  position: relative;
  width: 100%;
  min-width: 320px;
  max-width: 1024px;
  margin: 0 auto;
  padding: 123px 0 112px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
p.title_contact {
  font-size: 35px;
  line-height: 50px;
  letter-spacing: -0.5px;
  color: #000;
  font-family: NotosanskrB;
}
div.map_contact {
  margin: 50px 0 27px;
}
p.title_map {
  margin-bottom: 6px;
  font-size: 16px;
  letter-spacing: -0.23px;
  color: #303030;
  font-family: NotosanskrB;
}
p.text_map {
  font-size: 15px;
  letter-spacing: -0.5px;
  color: #303030;
  font-family: NotosanskrR;
}
#map {
  width: 100%;
}

/* blog */
div.wrap_blog {
  width: 100%;
  padding: 128px 20px 92px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
div.menu_blog {
  overflow: hidden;
}
div.inner_blog {
  position: relative;
  width: 100%;
  min-width: 320px;
  max-width: 1024px;
  margin: 0 auto;
}
p.title_blog {
  position: relative;
  float: left;
  padding-right: 62px;
  font-size: 40px;
  letter-spacing: -0.57px;
  color: #000;
  font-family: NanumSquareRoundEB;
}
p.title_blog:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 30px;
  width: 1px;
  height: 13px;
  margin-top: -3px;
  background: #bdbdbd;
}
div.tab_blog {
  float: left;
  margin-top: 18px;
}
div.tab_blog button.btn_blog {
  margin-left: 26px;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0;
  color: #303030;
  font-family: NotosanskrR;
}
div.tab_blog button.btn_blog.total {
  margin-left: 0;
}
div.tab_blog button.btn_blog.on {
  font-family: NotosanskrB;
}

div.report_wrap.top {
  overflow: hidden;
  padding-bottom: 59px;
  border-bottom: 1px solid #f1f0f0;
}
div.report_wrap.bottom {
  padding: 59px 0 68px;
}
a.report_link {
  float: left;
  display: block;
  width: 48%;
  margin-left: 4%;
}
a.report_link:first-child {
  margin-left: 0;
}
a.report_link .img_cover {
  overflow: hidden;
  width: 100%;
  margin-bottom: 27px;
  background: #ccc;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
div.report_wrap.top p.report_title span.head_sum {
  display: inline-block;
  width: 12%;
  margin: 0 12px 0 6px;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0;
  color: #a8a8a8;
  font-family: NotosanskrR;
  vertical-align: middle;
}
div.report_wrap.top p.report_title span.con_sum {
  display: inline-block;
  width: 83%;
  font-size: 23px;
  letter-spacing: -1.05px;
  color: #303030;
  font-family: NotosanskrB;
  vertical-align: middle;
}
div.report_wrap.top p.report_text {
  margin-top: 11px;
  padding: 0 6px;
  font-size: 15px;
  line-height: 23px;
  letter-spacing: -0.5px;
  color: #303030;
  font-family: NotosanskrR;
}
a.link_list {
  overflow: hidden;
  display: block;
  margin-top: 43px;
  cursor: pointer;
}
a.link_list:first-child {
  margin-top: 0;
}
a.link_list div.img_cover {
  overflow: hidden;
  float: left;
  width: 209px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
a.link_list div.text_cover {
  float: left;
  width: 773px;
  margin-left: 42px;
}
div.report_wrap.bottom p.head_sum {
  margin-top: 12px;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0;
  color: #a8a8a8;
  font-family: NotosanskrR;
  vertical-align: middle;
}
div.report_wrap.bottom p.con_sum {
  margin-top: 3px;
  font-size: 19px;
  letter-spacing: -0.86px;
  color: #303030;
  font-family: NotosanskrB;
  vertical-align: middle;
}
div.report_wrap.bottom p.report_text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: -0.5px;
  color: #303030;
  font-family: NotosanskrR;
}
div.page_step {
  text-align: center;
}
div.page_step ul.step_box {
  display: inline-block;
}
ul.pagination:after {
  clear: both;
}
ul.pagination > li {
  float: left;
  margin: 0 2px;
  padding: 0;
}
ul.pagination > li > a {
  display: inline-block;
  margin: 0 7px;
  padding: 0 7px;
  vertical-align: middle;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
  color: #303030;
  font-family: NanumSquareR;
  cursor: pointer;
}
ul.pagination > li > a.btn_prev {
  width: 7px;
  height: 13px;
  line-height: 1;
  background: url(/resource/images/blog/icon_prev.png) no-repeat;
  background-size: 7px auto;
}
ul.pagination > li > a.btn_next {
  width: 7px;
  height: 13px;
  line-height: 1;
  background: url(/resource/images/blog/icon_next.png) no-repeat;
  background-size: 7px auto;
}
ul.pagination > li > a.btn_prev_more {
  width: 14px;
  height: 13px;
  line-height: 1;
  background: url(/resource/images/blog/icon_more_prev.png) no-repeat;
  background-size: 14px auto;
}
ul.pagination > li > a.btn_next_more {
  width: 14px;
  height: 13px;
  line-height: 1;
  background: url(/resource/images/blog/icon_more_next.png) no-repeat;
  background-size: 14px auto;
}
ul.pagination > li > a:hover {
  color: #5095ff;
  font-family: NanumSquareEB;
}
ul.pagination > li > span.more {
  letter-spacing: 2px;
}
ul.pagination > li.active > a,
ul.pagination > li.active > a:focus,
ul.pagination > li.active > a:hover {
  color: #5095ff;
  font-family: NanumSquareEB;
}
div.img_box {
  margin-top: 70px;
  text-align: center;
}
div.img_box.sec1 {
  margin-top: 28px;
}
div.img_box img.img_news {
  width: 620px;
}
p.text_category {
  margin-bottom: 7px;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0;
  color: #a8a8a8;
  font-family: NotosanskrR;
}
p.title_main {
  margin-bottom: 7px;
  font-size: 35px;
  letter-spacing: -1px;
  color: #303030;
  font-family: NotosanskrB;
}
p.text_date {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.45px;
  color: #303030;
  font-family: NotosanskrR;
}
p.text_news {
  margin-top: 43px;
  font-size: 17px;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #303030;
  font-family: NotosanskrR;
}

/*****************************  
media
*****************************/
/* PC 1070 이하 */
@media screen and (max-width: 1070px) {
  a.logo_upstairs {
    margin: 20px 0 20px 20px;
  }
  nav.nav div.nav_list {
    margin: 26px 20px 26px 0;
  }

  div.inner_home div.text_box {
    padding: 239px 20px 0;
  }

  div.wrap_infor {
    padding: 130px 30px 310px;
  }
  p.title_it {
    padding-top: 0;
    font-size: 24px;
    line-height: 35px;
  }
  p.text_it {
    padding: 8px 0 0;
    font-size: 17px;
    line-height: 24px;
  }
  div.inner_infor:after {
    right: -110px;
    bottom: -310px;
    width: 500px;
    height: 386px;
  }

  p.text_grow.pc {
    display: none;
  }
  p.text_grow.mobile {
    display: block;
  }

  p.text_place.pc {
    display: none;
  }
  p.text_place.mobile {
    display: block;
  }

  p.text_deal.pc {
    display: none;
  }
  p.text_deal.mobile {
    display: block;
  }

  div.cover_joongabi {
    padding: 465px 30px 75px 30px;
    text-align: center;
  }
  div.inner_joongabi:after {
    top: 90px;
    left: 50%;
    width: 450px;
    height: 400px;
    margin-left: -200px;
  }
  p.title_joongabi {
    height: 28px;
    line-height: 32px;
    padding-left: 98px;
    background-size: 93px auto;
    font-size: 25px;
    letter-spacing: -0.53px;
  }
  p.text_joongabi {
    font-size: 14px;
    line-height: 23px;
  }
  a.btn_direct {
    margin-top: 30px;
  }
  div.wrap_joongabi.mobile div.cover_joongabi {
    padding: 302px 0 55px;
  }
  div.wrap_joongabi.mobile div.inner_joongabi:after {
    top: 48px;
    left: 50%;
    width: 400px;
    height: 227px;
    margin-left: -208px;
    background: url(/resource/images/product/img_mockup_joongabi.png) no-repeat;
    background-size: 100% auto;
  }
  p.title_joongabi.mobile {
    height: 28px;
    padding-left: 100px;
    line-height: 34px;
    padding-left: 105px;
    background-size: 98px auto;
    font-size: 25px;
    letter-spacing: -0.53px;
  }
  div.wrap_joongabi.phone div.cover_joongabi {
    padding: 314px 30px 55px 30px;
  }
  div.wrap_joongabi.phone div.inner_joongabi:after {
    top: 65px;
    left: 50%;
    width: 390px;
    height: 265px;
    margin-left: -175px;
  }

  div.wrap_infor.culture {
    padding: 180px 30px 300px;
  }
  div.wrap_infor.culture p.title_it {
    padding-top: 0;
  }
  div.wrap_infor.culture div.inner_infor:after {
    top: 62px;
    right: -65px;
    width: 420px;
    height: 400px;
  }
  div.wrap_we div.inner_we {
    padding: 57px 26px 57px 36px;
  }
  div.inner_we p.title_main {
    margin-top: 72px;
    font-size: 24px;
    line-height: 38px;
    letter-spacing: -0.5px;
  }
  div.inner_we div.text_group p.title_main:after {
    left: -12px;
    font-size: 14px;
  }
  div.inner_we div.text_box {
    padding: 25px 0 0;
  }
  div.inner_we p.title_sub {
    font-size: 15px;
    line-height: 27px;
    letter-spacing: -0.5px;
  }
  div.inner_we div.text_list {
    padding-top: 30px;
  }
  div.inner_we div.text_list p.list_mes {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: -0.5px;
  }
  div.wrap_promise {
    padding: 70px 28px 50px;
  }
  div.inner_promise p.title_promise {
    font-size: 26px;
    line-height: 36px;
    letter-spacing: -0.5px;
  }
  div.cube_promise {
    width: 50%;
    margin-top: 29px;
    min-height: 78px;
  }
  div.cube_promise.n3 {
    width: 50%;
  }
  div.cube_promise.n6 {
    width: 50%;
  }
  div.cube_promise.n9 {
    width: 50%;
  }
  div.cube_promise p.order_num {
    font-size: 18px;
  }
  div.cube_promise p.order_text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.5px;
  }

  div.wrap_infor.grow p.title_it {
    font-size: 24px;
    line-height: 35px;
  }
  div.wrap_infor.grow p.text_it {
    font-size: 17px;
    line-height: 24px;
  }

  div.wrap_welfare {
    padding: 114px 28px 86px;
  }
  div.wrap_career {
    padding: 114px 28px 0;
  }
  div.inner_contact {
    padding: 123px 28px 112px;
  }
}

/* mobile 900 이하 */
@media screen and (max-width: 900px) {
  nav.nav a.logo_upstairs {
    width: 120px;
  }
  button.menu_open {
    display: block;
  }
  nav.nav div.nav_list a.link {
    display: none;
    margin: 0;
    font-size: 14px;
  }
  nav.nav div.nav_list a.link.active {
    display: block;
  }
  div.mobile_area {
    display: block;
  }
  div.pc_area {
    display: none;
  }

  div.inner_home div.text_box {
    padding: 114px 0 37px 34px;
  }
  div.inner_home p.title_home {
    font-size: 56px;
    line-height: 65px;
    letter-spacing: -0.5px;
  }
  div.inner_home span.text_point {
    font-size: 56px;
    line-height: 65px;
    letter-spacing: -0.5px;
  }
  div.inner_home p.title_sub {
    margin-top: 11px;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: -0.55px;
  }
  div.inner_home:after {
    top: 350px;
    right: -90px;
    width: 540px;
    height: 440px;
  }
  div.inner_home div.list_history {
    padding: 460px 0 0;
  }
  div.inner_home p.list_text {
    font-size: 15px;
    letter-spacing: -0.5px;
  }

  div.wrap_blog {
    padding: 74px 20px 70px;
  }
  div.tab_blog {
    float: none;
    margin-top: 10px;
  }
  div.tab_blog button.btn_blog {
    font-size: 13px;
  }
  p.title_blog:after {
    display: none;
  }
  p.text_category {
    font-size: 14px;
    margin-bottom: 3px;
  }
  p.title_main {
    font-size: 20px;
    margin-bottom: 10px;
  }
  p.text_date {
    font-size: 14px;
    line-height: 20px;
  }
  p.text_news {
    margin-top: 20px;
    font-size: 14px;
    line-height: 24px;
  }
  div.img_box img.img_news {
    width: 100%;
  }

  p.title_it {
    padding-top: 0;
    font-size: 24px;
    line-height: 35px;
  }
  p.text_it {
    padding-top: 8px;
    font-size: 17px;
    line-height: 24px;
  }
  div.inner_infor:after {
    right: -110px;
    bottom: -310px;
    width: 440px;
    height: 330px;
  }

  p.text_grow {
    padding-top: 294px;
    font-size: 16px;
    line-height: 26px;
  }
  p.text_grow:after {
    width: 320px;
    margin-left: -160px;
  }

  p.text_place {
    padding-top: 330px;
    font-size: 16px;
    line-height: 26px;
  }
  p.text_place:after {
    width: 340px;
    top: 70px;
    margin-left: -170px;
  }

  p.text_deal {
    padding-top: 365px;
    font-size: 16px;
    line-height: 26px;
  }
  p.text_deal:after {
    width: 700px;
    top: 75px;
    margin-left: -350px;
  }

  div.wrap_infor.culture {
    padding: 140px 30px 300px;
  }
  div.wrap_infor.culture div.inner_infor:after {
    top: 166px;
    right: -65px;
    width: 310px;
    height: 296px;
  }

  div.wrap_welfare {
    padding: 45px 28px;
  }
  p.title_welfare {
    font-size: 20px;
  }
  div.cube_welfare {
    float: none;
    width: 100%;
    margin-top: 25px;
  }
  div.cube_welfare.n2,
  div.cube_welfare.n4 {
    width: 100%;
  }
  div.cube_welfare p.title_sub {
    font-size: 12px;
    line-height: normal;
  }
  div.cube_welfare div.text_list {
    margin-top: 7px;
    font-size: 10px;
    line-height: 20px;
  }
  div.cube_welfare.n3,
  div.cube_welfare.n4 {
    margin-top: 25px;
  }
  div.wrap_career {
    padding: 39px 0;
  }
  p.title_career {
    font-size: 20px;
    padding: 0 28px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  div.tab_career {
    margin: 20px 0 0 28px;
    padding-bottom: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  div.tab_content {
    margin-top: 20px;
    padding: 0 28px;
  }
  div.tab_career button.btn_career {
    padding: 7px 19px;
    font-size: 13px;
    margin-left: 5px;
  }
  div.tab_career div.menu_inner {
    width: 420px;
  }
  p.slider_title {
    font-size: 14px;
    padding: 14px 0;
  }
  p.text_slide {
    font-size: 10px;
    line-height: 15px;
  }
  div.slier_content {
    padding: 29px 20px;
  }
  p.title_slide {
    font-size: 12px;
  }
  div.inner_contact {
    padding: 20px 28px 45px;
  }
  p.title_contact {
    font-size: 20px;
  }
  div.map_contact {
    margin: 15px 0 15px;
  }
  p.title_map {
    font-size: 11px;
  }
  p.text_map {
    font-size: 10px;
  }

  p.title_blog {
    float: none;
    font-size: 22px;
    letter-spacing: -0.55px;
  }
  a.report_link {
    float: none;
    width: 100%;
    margin-left: 0;
  }
  a.report_link .img_cover {
    margin: 28px 0 16px;
  }
  div.report_wrap.top p.report_title span.head_sum {
    display: block;
    width: 100%;
    margin: 0;
    font-size: 11px;
  }
  div.report_wrap.top p.report_title span.con_sum {
    display: block;
    width: 100%;
    font-size: 15px;
  }
  div.report_wrap.top p.report_text {
    margin-top: 5px;
    padding: 0;
    font-size: 11px;
    line-height: 17px;
  }
  a.link_list {
    margin-top: 20px;
  }
  a.link_list div.img_cover {
    width: 30%;
  }
  a.link_list div.text_cover {
    width: 65%;
    margin-left: 5%;
  }
  div.report_wrap.bottom p.head_sum {
    margin-top: 0;
    font-size: 11px;
  }
  div.report_wrap.bottom p.con_sum {
    font-size: 14px;
  }
  div.report_wrap.bottom p.report_text {
    display: none;
  }
  div.report_wrap.top {
    border-bottom: none;
    padding-bottom: 28px;
  }
  div.report_wrap.bottom {
    padding: 0 0 41px;
  }

  div.footer_inner {
    height: auto;
    padding: 27px 30px 43px;
  }
  a.footer_logo {
    padding-top: 37px;
  }
  div.link_group {
    position: relative;
    top: 0;
  }
  a.btn_shape {
    width: 100%;
    margin-top: 16px;
  }
  a.btn_app {
    width: 100%;
    margin-top: 16px;
  }

  td.tbtn {
    padding-top: 5px;
    padding-bottom: -5px;
    font-size: 12px;
    vertical-align: middle;
    max-width: 150px;
  }
  p.title_fongabi {
    margin-top: 35px;
    display: inline-block;
    width: 200px;
    height: 48px;
    background: url(/resource/images/product/img_text_fongabi.png) no-repeat;
    background-size: 100% auto;
  }
  img.btn_storeimg {
    width: calc(95%);
  }
}

/* mobile 600 이하 */
@media screen and (max-width: 600px) {
  nav.nav {
    height: 56px;
  }
  nav.nav a.logo_upstairs {
    width: 105px;
    height: 22px;
  }
  a.logo_upstairs {
    margin: 17px 0 17px 20px;
  }
  nav.nav div.nav_list {
    margin: 19px 0;
  }
  button.menu_open {
    width: 56px;
    height: 56px;
  }

  div.inner_home div.text_box {
    padding: 114px 0 37px 34px;
  }
  div.inner_home p.title_home {
    font-size: 46px;
    line-height: 55px;
  }
  div.inner_home span.text_point {
    font-size: 46px;
    line-height: 55px;
  }
  div.inner_home p.title_sub {
    margin-top: 11px;
    font-size: 13px;
    line-height: 24px;
  }
  div.inner_home:after {
    top: 332px;
    right: -70px;
    width: 400px;
    height: 354px;
  }
  div.inner_home div.list_history {
    padding: 370px 0 0;
  }
  div.inner_home p.list_text {
    font-size: 13px;
  }

  div.wrap_infor.grow {
    padding: 85px 30px 293px;
  }
  p.title_it {
    padding-top: 0;
    font-size: 17px;
    line-height: 26px;
  }
  p.text_it {
    padding-top: 8px;
    font-size: 11px;
    line-height: 18px;
  }

  p.text_grow {
    padding: 230px 45px 69px 45px;
    font-size: 11px;
    line-height: 18px;
  }
  p.text_grow:after {
    top: 44px;
    width: 314px;
    margin-left: -157px;
  }
  p.text_place {
    padding: 281px 27px 76px 27px;
    font-size: 11px;
    line-height: 18px;
  }
  p.text_place:after {
    top: 52px;
    width: 300px;
    margin-left: -150px;
  }
  p.text_deal {
    padding: 346px 40px 70px 40px;
    font-size: 11px;
    line-height: 18px;
  }
  p.text_deal:after {
    top: 70px;
    width: 700px;
    margin-left: -350px;
  }

  div.wrap_infor.culture {
    padding: 111px 30px 300px;
  }
  div.wrap_infor.culture div.inner_infor:after {
    top: 127px;
    width: 310px;
    height: 295px;
    margin-left: -98px;
  }
  div.inner_we p.title_main {
    font-size: 20px;
    line-height: 30px;
  }
  div.inner_we div.text_group p.title_main:after {
    left: -6px;
    font-size: 10px;
  }
  div.inner_we div.text_box {
    padding: 18px 0 0;
  }
  div.inner_we p.title_sub {
    font-size: 11px;
    line-height: 19px;
  }
  div.inner_we div.text_list p.list_mes {
    font-size: 10px;
    line-height: 20px;
  }
  div.inner_promise p.title_promise {
    font-size: 20px;
    line-height: 30px;
  }
  div.cube_promise {
    min-height: 66px;
  }
  div.cube_promise p.order_text {
    font-size: 11px;
    line-height: 18px;
  }

  div.wrap_infor.grow p.title_it {
    font-size: 17px;
    line-height: 25px;
  }
  div.wrap_infor.grow p.text_it {
    font-size: 10px;
    line-height: 15px;
  }
  div.slide_member div.swiper-slide {
    width: 80%;
  }
  div.cover_profile p.text_question {
    font-size: 11px;
  }
  div.cover_profile img.img_profile {
    width: 54px;
  }
  div.wrap_profile {
    padding: 23px;
  }
  div.wrap_profile p.text_feel {
    font-size: 13px;
    line-height: 22px;
  }
  div.wrap_profile p.text_name {
    font-size: 10px;
  }
  div.swiper_member {
    padding: 30px 0 26px;
  }
  div.pagination_member.swiper-pagination {
    margin-top: 24px;
  }
  .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0 5px;
  }
  .swiper-pagination-bullet-active {
    width: 21px;
  }
  div.tab_career {
    padding-right: 0;
    overflow-x: scroll;
  }

  div.inner_blog div.tab_content {
    padding: 0;
    margin-top: 0;
  }

  div.footer_inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  div.footer_inner .link_group_inner {
    margin-top: 40px;
  }
  div.footer_inner .link_list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}

/* mobile 420 이하 */
@media screen and (max-width: 420px) {
  p.text_category {
    font-size: 12px;
  }
  p.title_main {
    font-size: 18px;
    margin-bottom: 3px;
  }
  p.text_date {
    font-size: 13px;
    line-height: 18px;
  }
  div.img_box {
    margin-top: 50px;
  }
  p.text_news {
    margin-top: 20px;
    font-size: 14px;
    line-height: 24px;
  }
  div.img_box.sec1 {
    margin-top: 20px;
  }

  div.inner_home div.text_box {
    padding: 114px 0 37px 34px;
  }
  div.inner_home p.title_home {
    font-size: 42px;
    line-height: 50px;
  }
  div.inner_home span.text_point {
    font-size: 42px;
    line-height: 50px;
  }
  div.inner_home p.title_sub {
    font-size: 11px;
    line-height: 19px;
  }
  div.inner_home:after {
    top: 310px;
    right: -60px;
    width: 370px;
    height: 300px;
  }
  div.inner_home div.list_history {
    padding: 340px 0 0;
  }
  div.inner_home p.list_text {
    font-size: 10px;
  }

  p.text_grow {
    font-size: 11px;
    line-height: 18px;
  }

  div.cover_joongabi {
    padding: 417px 30px 55px 30px;
  }
  div.inner_joongabi:after {
    top: 90px;
    left: 50%;
    width: 374px;
    height: 328px;
    margin-left: -170px;
  }
  p.title_joongabi {
    height: 28px;
    line-height: 28px;
    padding-left: 90px;
    background-size: 88px auto;
    font-size: 20px;
    letter-spacing: -0.53px;
  }
  p.text_joongabi {
    font-size: 11px;
    line-height: 18px;
  }
  a.btn_direct {
    margin-top: 30px;
  }
  div.wrap_joongabi.mobile div.cover_joongabi {
    padding: 302px 0 55px;
  }
  div.wrap_joongabi.mobile div.inner_joongabi:after {
    top: 48px;
    left: 50%;
    width: 400px;
    height: 227px;
    margin-left: -208px;
    background: url(/resource/images/product/img_mockup_joongabi.png) no-repeat;
    background-size: 100% auto;
  }
  p.title_joongabi.mobile {
    padding-left: 104px;
  }
  div.wrap_joongabi.phone div.cover_joongabi {
    padding: 314px 30px 55px 30px;
  }
  div.wrap_joongabi.phone div.inner_joongabi:after {
    top: 65px;
    left: 50%;
    width: 390px;
    height: 265px;
    margin-left: -175px;
  }

  div.step_box button {
    margin: 0 9px;
  }
}

/* mobile 375 이하 */
@media screen and (max-width: 375px) {
  p.text_category {
    font-size: 10px;
  }
  p.title_main {
    font-size: 16px;
  }
  p.text_date {
    font-size: 10px;
  }
  p.text_news {
    font-size: 13px;
    line-height: 22px;
  }
}
