@charset "UTF-8";
/* 변수설정 */
/* 믹스인 MIXIN */
/* 웹폰트 */
@font-face {
  font-family: 'NanumGothic';
  font-style: normal;
  font-weight: 300;
  src: url("/assets/webfonts/NanumGothic-Light.woff2") format("woff2"), url("/assets/webfonts/NanumGothic-Light.woff") format("woff"), url("/assets/webfonts/NanumGothic-Light.otf") format("opentype");
}

@font-face {
  font-family: 'NanumGothic';
  font-style: normal;
  font-weight: 400;
  src: url("/assets/webfonts/NanumGothic-Regular.woff2") format("woff2"), url("/assets/webfonts/NanumGothic-Regular.woff") format("woff"), url("/assets/webfonts/NanumGothic-Regular.otf") format("opentype");
}

@font-face {
  font-family: 'NanumGothic';
  font-style: normal;
  font-weight: 700;
  src: url("/assets/webfonts/NanumGothic-Bold.woff2") format("woff2"), url("/assets/webfonts/NanumGothic-Bold.woff") format("woff"), url("/assets/webfonts/NanumGothic-Bold.otf") format("opentype");
}

@font-face {
  font-family: 'NanumGothic';
  font-style: normal;
  font-weight: 800;
  src: url("/assets/webfonts/NanumGothic-ExtraBold.woff2") format("woff2"), url("/assets/webfonts/NanumGothic-ExtraBold.woff") format("woff"), url("/assets/webfonts/NanumGothic-ExtraBold.otf") format("opentype");
}

/* 디폴트 */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

html {
  height: 100%;
  font-size: 10px;
  -webkit-text-size-adjust: none;
}

body {
  position: relative;
  min-width: 320px;
  color: #515251;
  font-weight: 400;
  font-size: 1.4rem;
  font-family: "NanumGothic", "HelveticaNeue-Light", "AppleSDGothicNeo-Light", "Open Sans", "Noto Sans KR", "Malgun Gothic", "돋움", dotum, sans-serif;
  line-height: 1.65;
  word-break: keep-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5 {
  margin-top: 0;
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
strong,
b,
th {
  font-weight: 700;
}

pre {
  white-space: pre-wrap;
}

img {
  max-width: 100%;
  vertical-align: middle;
  border: 0;
}

ul,
ol {
  margin-bottom: 0;
}

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

p {
  margin-bottom: 0;
}

a,
select,
button,
input,
textarea {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover, a:focus, a:visited {
  text-decoration: none;
}

dl {
  margin-bottom: 0;
}

button,
input[type=submit] {
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  cursor: pointer;
  background: transparent;
}

input::-ms-clear,
input::-ms-reveal {
  display: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  margin: 0 !important;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

caption.sr-only {
  position: static;
  width: auto;
  height: 0;
}

.clearfix {
  position: relative;
}

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

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

.vertical-top {
  vertical-align: top !important;
}

.vertical-middle {
  vertical-align: middle !important;
}

.vertical-bottom {
  vertical-align: bottom !important;
}

.mobile-only {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  body {
    overflow-x: hidden;
  }
  .pc-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
}

/* 공통 컴포넌트 */
/* 간격 */
.mt-none {
  margin-top: 0 !important;
}

.mt-xs {
  margin-top: .5rem !important;
}

.mt-sm {
  margin-top: 1rem !important;
}

.mt-md {
  margin-top: 1.5rem !important;
}

.mt-lg {
  margin-top: 2rem !important;
}

.mt-xl {
  margin-top: 2.5rem !important;
}

.mt-xxl {
  margin-top: 3rem !important;
}

.mb-none {
  margin-bottom: 0 !important;
}

.mb-xs {
  margin-bottom: .5rem !important;
}

.mb-sm {
  margin-bottom: 1rem !important;
}

.mb-md {
  margin-bottom: 1.5rem !important;
}

.mb-lg {
  margin-bottom: 2rem !important;
}

.mb-xl {
  margin-bottom: 2.5rem !important;
}

.mb-xxl {
  margin-bottom: 3rem !important;
}

.mr-none {
  margin-right: 0 !important;
}

.mr-xs {
  margin-right: .5rem !important;
}

.mr-sm {
  margin-right: 1rem !important;
}

.mr-md {
  margin-right: 1.5rem !important;
}

.mr-lg {
  margin-right: 2rem !important;
}

.mr-xl {
  margin-right: 2.5rem !important;
}

.mr-xxl {
  margin-right: 3rem !important;
}

.ml-none {
  margin-left: 0 !important;
}

.ml-xs {
  margin-left: .5rem !important;
}

.ml-sm {
  margin-left: 1rem !important;
}

.ml-md {
  margin-left: 1.5rem !important;
}

.ml-lg {
  margin-left: 2rem !important;
}

.ml-xl {
  margin-left: 2.5rem !important;
}

.ml-xxl {
  margin-left: 3rem !important;
}

/* 입력요소 */
input,
label,
select {
  display: inline-block;
  vertical-align: middle;
}

input:not([type=checkbox]):not([type=radio]),
select,
textarea {
  width: 100%;
  min-height: 3.5rem;
  color: #373737;
  font-size: inherit;
  padding: .7rem 1.8rem .5rem;
  border: 1px solid #b6b6b6;
  line-height: 1.5;
  background-color: #ffffff;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input:not([type=checkbox]):not([type=radio]):focus,
select:focus,
textarea:focus {
  outline: none;
}

input:not([type=checkbox]):not([type=radio]):disabled, input:not([type=checkbox]):not([type=radio]).disabled,
select:disabled,
select.disabled,
textarea:disabled,
textarea.disabled {
  color: #747474;
  background-color: #f6f6f6;
}

input:not([type=checkbox]):not([type=radio]):-moz-read-only, input:not([type=checkbox]):not([type=radio])[readonly],
textarea:-moz-read-only,
textarea[readonly] {
  color: #747474;
  background-color: #f6f6f6;
}

input:not([type=checkbox]):not([type=radio]):read-only, input:not([type=checkbox]):not([type=radio])[readonly],
textarea:read-only,
textarea[readonly] {
  color: #747474;
  background-color: #f6f6f6;
}

input:not([type=checkbox]):not([type=radio]):-moz-placeholder,
textarea:-moz-placeholder {
  color: #6d6c6c !important;
}

input:not([type=checkbox]):not([type=radio])::-moz-placeholder,
textarea::-moz-placeholder {
  color: #6d6c6c !important;
  opacity: 1;
}

input:not([type=checkbox]):not([type=radio])::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #6d6c6c !important;
}

select {
  padding-right: 4.2rem;
  background: url(/assets/images/common/icon/ico-select.png) no-repeat center right;
  background-size: auto 3.4rem;
}

textarea {
  line-height: 1.75;
}

input[type=checkbox],
input[type=radio] {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: -.2rem;
  margin-right: .7rem;
  border: 0;
  border-radius: 0;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: auto 1.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

input[type=checkbox] + label,
input[type=radio] + label {
  margin-right: 3rem;
}

input[type=checkbox] {
  background-image: url(/assets/images/common/icon/ico-check.png);
}

input[type=checkbox]:checked {
  background-image: url(/assets/images/common/icon/ico-check-on.png);
}

input[type=radio] {
  background-image: url(/assets/images/common/icon/ico-radio.png);
}

input[type=radio]:checked {
  background-image: url(/assets/images/common/icon/ico-radio-on.png);
}

label {
  cursor: pointer;
}

.form-group {
  display: table;
  width: calc(100% + .6rem);
  margin-right: -.3rem;
  margin-left: -.3rem;
}

.form-group .form-item {
  display: table-cell;
  padding: 0 .3rem;
}

.form-group .form-addon {
  display: table-cell;
  width: 1%;
  padding: 0 .3rem;
  vertical-align: middle;
}

.form-group .form-addon .btn {
  margin: 0;
}

.form-group + .form-group {
  margin-top: .7rem;
}

.input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.input-group input:not([type=checkbox]):not([type=radio]) {
  padding-right: 4rem;
}

.input-group .item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}

.input-group .item:first-child {
  margin-right: -.1rem;
}

.input-tel input {
  width: 10rem !important;
}

.input-tel .dash {
  display: inline-block;
  width: 8px;
  height: 2px;
  margin: -2px 2px 0 3px;
  vertical-align: middle;
  background-color: #b7b7b7;
}

.input-address .form-group {
  width: 46rem;
}

.input-address .form-group + .form-group {
  width: 46rem;
}

.input-address .btn {
  min-width: 10rem;
  font-size: 1.2rem;
}

.input-pw .item {
  margin-bottom: .7rem;
}

.input-pw label {
  width: 10rem;
}

.w-sm {
  width: 22rem !important;
}

.w-md {
  width: 27rem !important;
}

@media screen and (max-width: 768px) {
  input:not([type=checkbox]):not([type=radio]),
  select,
  textarea {
    min-height: auto;
    padding: .7rem 1rem .5rem;
    font-size: 1.2rem;
  }
  input[type=checkbox],
  input[type=radio] {
    width: 1.3rem;
    height: 1.3rem;
    margin-right: .5rem;
    background-size: auto 1.3rem;
  }
  input[type=checkbox] + label,
  input[type=radio] + label {
    margin-right: 2rem;
  }
  .form-group + .form-group {
    margin-top: .5rem;
  }
  .input-tel {
    white-space: nowrap;
  }
  .input-tel input {
    width: 5.5rem !important;
    padding-right: 0 !important;
  }
  .input-tel .dash {
    width: .3rem;
    height: .1rem;
    margin-right: 0;
    margin-left: .1rem;
  }
  .input-address .form-group {
    width: calc(100% + .6rem);
    margin-right: -.3rem;
    margin-left: -.3rem;
  }
  .input-address .form-group .form-addon .btn {
    min-width: auto;
    height: 3.2rem;
    padding: 0 .7rem;
  }
  .input-address .form-group + .form-group {
    width: calc(100% + .6rem);
    margin-right: -.3rem;
    margin-left: -.3rem;
  }
  .w-md {
    width: 100% !important;
    max-width: 27rem;
  }
  .w-sm {
    width: 100% !important;
    max-width: 22rem;
  }
}

/* 버튼 */
.btn-area {
  margin-top: 5rem;
  text-align: center;
}

.btn-area .arr {
  font-size: 1.2rem;
}

button:disabled, button.disabled,
a:disabled,
a.disabled {
  color: #e3e3e3;
  background-color: #b7b7b7;
  cursor: text;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-width: 12rem;
  height: 3.5rem;
  margin: 0 .8rem;
  padding: 0 3rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  vertical-align: middle;
}

.btn-style1 {
  background-color: #0071bb;
}

.btn-style2 {
  background-color: #78aa33;
}

.btn-style3 {
  background-color: #c14138;
}

.btn-style4 {
  background-color: #b7b7b7;
}

.btn-style5 {
  background-color: #505050;
}

.btn-style6 {
  background-color: #515151;
}

.btn-style7 {
  background-color: #78aa33;
}

.btn-style8 {
  background-color: #2d81ba;
}

.btn-sm {
  min-width: auto;
  height: 2.8rem;
  padding: 0 .8rem;
  border-radius: .5rem;
  font-weight: 400;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .btn-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: calc(100% + 1rem);
    margin: 3.5rem -.5rem 0;
  }
  .btn-area .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: auto;
    height: 3.5rem;
    margin: 0 .5rem;
    padding: 0 .2rem;
    font-size: 1.3rem;
  }
  .btn-area .btn .arr {
    position: absolute;
    top: calc(50% - 1.2rem);
    font-size: 1.1rem;
    line-height: 2.1;
  }
  .btn-area .btn .arr-left {
    left: 1rem;
  }
  .btn-area .btn .arr-right {
    right: 1rem;
  }
  .btn-sm {
    min-width: 12.5rem;
    height: 2.3rem;
    font-size: 1.1rem;
  }
}

/* 글꼴(타이포) */
.title1 {
  color: #141414;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
}

.title2 {
  margin: 2.7rem 0 1rem;
  color: #141414;
  font-weight: 700;
}

.title3 {
  margin: 3.1rem 0 .5rem;
  position: relative;
  padding-left: 2rem;
  color: #141414;
  font-size: 1.6rem;
}

.title3:before {
  content: '';
  position: absolute;
  top: .4rem;
  left: 0;
  width: 1.3rem;
  height: 1.5rem;
  background: url(/assets/images/common/icon/ico-hexagon.png) no-repeat;
}

.text-xxs {
  font-size: 1rem !important;
}

.text-xs {
  font-size: 1.2rem !important;
}

.text-sm {
  font-size: 1.3rem !important;
}

.text-md {
  font-size: 1.4rem !important;
}

.text-lg {
  font-size: 1.6rem !important;
}

.text-xl {
  font-size: 1.8rem !important;
}

.text-xxl {
  font-size: 2rem !important;
}

.text-normal {
  font-weight: 400;
}

.text-bold {
  font-weight: 700;
}

.text-color1 {
  color: #0071bb !important;
}

.text-color2 {
  color: #ffffff !important;
}

.text-color3 {
  color: #ff0000 !important;
}

.text-color4 {
  color: #db0101 !important;
}

.text-color5 {
  color: #afafaf !important;
}

.text-underline {
  text-decoration: underline;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

@media screen and (max-width: 768px) {
  .title2 {
    margin: 2rem 0 .5rem;
    font-size: 1.2rem;
  }
  .title3 {
    margin: 2rem 0 .5rem;
    padding-left: 1.5rem;
    font-size: 1.3rem;
  }
  .title3:before {
    width: 1rem;
    height: 1.2rem;
    background-size: auto 1.2rem;
  }
}

/* 목록 */
.list .text {
  padding-left: 1.8rem;
}

.bul-dot {
  text-align: left;
  position: relative;
  padding-left: .6rem;
  color: #909090;
  font-size: 1.6rem;
  line-height: 1.3;
}

.bul-dot:before {
  display: block;
  position: absolute;
  left: 0;
  top: .7rem;
  width: .2rem;
  height: .2rem;
  border-radius: 50%;
  background-color: #909090;
  content: '';
}

.bul-dot > li {
  position: relative;
  padding-left: .6rem;
  line-height: 1.5;
}

.bul-dot > li:before {
  display: block;
  position: absolute;
  left: 0;
  top: .7rem;
  width: .2rem;
  height: .2rem;
  border-radius: 50%;
  background-color: #909090;
  content: '';
}

.bul-dot.text-color4:before {
  background-color: #db0101;
}

.bul-dot.text-color4 > li:before {
  background-color: #db0101;
}

.bul-hyphen {
  text-align: left;
  position: relative;
  padding-left: 1rem;
}

.bul-hyphen > li {
  padding-left: 1rem;
  position: relative;
}

.bul-hyphen:before {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  content: '- ';
}

.bul-hyphen > li:before {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  content: '- ';
}

.bul-mark {
  text-align: left;
  position: relative;
  padding-left: 1.7rem;
  color: inherit;
  line-height: 1.8;
}

.bul-mark:before {
  display: block;
  position: absolute;
  left: 0;
  top: -.1rem;
  content: '※ ';
}

.bul-mark > li {
  position: relative;
  padding-left: 1.7rem;
}

.bul-mark > li:before {
  display: block;
  position: absolute;
  left: 0;
  top: -.1rem;
  content: '※ ';
}

ul.bul-dot, ul.bul-hyphen, ul.bul-mark {
  padding-left: 0;
}

ul.bul-dot:before, ul.bul-hyphen:before, ul.bul-mark:before {
  display: none;
}

@media screen and (max-width: 768px) {
  .bul-dot, .bul-hyphen, .bul-mark {
    font-size: 1.2rem;
  }
  .bul-mark {
    padding-left: 1.5rem;
  }
}

/* 테이블 */
.table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  border-top: 2px solid #303546;
  font-size: 1.6rem;
}

.table th,
.table td {
  height: 5.2rem;
  padding: .9rem .5rem;
  border-bottom: 1px solid #e3e3e3;
  color: #141414;
}

.table th {
  text-align: center;
}

.table-list th {
  position: relative;
}

.table-list th:before {
  content: '';
  position: absolute;
  top: calc(50% - 4px);
  left: 0;
  width: 1px;
  height: 8px;
  background-color: #e3e3e3;
}

.table-list th:first-child:before {
  display: none;
}

.table-list td {
  color: #545454;
  font-weight: 700;
  text-align: center;
}

.table-list td img {
  height: 2rem;
}

/*.table-write th,*/
.table-write td {
  height: 6rem;
  padding: 1.2rem 3.5rem;
}

.table-write th {
  background-color: #f4f4f8;
  line-height: 1.5;
}

.table-write td {
  color: #373737;
  font-weight: 700;
}

.table-write td img {
  width: auto !important;
  height: auto !important;
}

.table-notice td {
  padding-right: 1rem;
  padding-left: 1rem;
}

@media screen and (max-width: 768px) {
  .table th,
  .table td {
    font-size: 1.2rem;
  }
  .table-list th,
  .table-list td {
    height: 4rem;
  }
  .table-responsive {
    display: block;
  }
  .table-responsive colgroup {
    display: none;
  }
  .table-responsive thead,
  .table-responsive tbody,
  .table-responsive tr,
  .table-responsive th,
  .table-responsive td {
    display: block;
  }
  .table-responsive thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .table-responsive tr {
    margin: 0 0 1rem 0;
  }
  .table-responsive th,
  .table-responsive td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    text-align: left;
  }
  .table-responsive td {
    position: relative;
    padding-right: 2rem;
    padding-left: 40%;
    border: 0;
    border-bottom: 1px solid #e3e3e3;
  }
  .table-responsive td:before {
    position: absolute;
    top: calc(50% - 1rem);
    left: 2rem;
    width: 25%;
    padding-right: .5rem;
    color: #141414;
    white-space: nowrap;
  }
  .table-responsive td:after {
    content: '';
    position: absolute;
    top: calc(50% - 3px);
    left: 10.7rem;
    width: 1px;
    height: 6px;
    background-color: #e3e3e3;
  }
  .table-responsive td:nth-of-type(1):before {
    content: "사업지";
  }
  .table-responsive td:nth-of-type(2):before {
    content: "청약일시";
  }
  .table-responsive td:nth-of-type(3):before {
    content: "당첨자 발표일";
  }
  .table-responsive td:nth-of-type(4):before {
    content: "상태";
  }
  .table-responsive .btn {
    margin: 0;
  }
  .table-responsive.table-type2 td:nth-of-type(1):before {
    content: "사업지";
  }
  .table-responsive.table-type2 td:nth-of-type(2):before {
    content: "타입";
  }
  .table-responsive.table-type2 td:nth-of-type(3):before {
    content: "청약 일시";
  }
  .table-responsive.table-type2 td:nth-of-type(4):before {
    content: "당첨자 발표일";
  }
  .table-responsive.table-type2 td:nth-of-type(5):before {
    content: "조회";
  }
  .table-responsive.table-type3 td:nth-of-type(1):before {
    content: "사업지";
  }
  .table-responsive.table-type3 td:nth-of-type(2):before {
    content: "공급실수";
  }
  .table-responsive.table-type3 td:nth-of-type(3):before {
    content: "당첨자 발표일";
  }
  .table-responsive.table-type3 td:nth-of-type(4):before {
    content: "조회";
  }
  .table-nodata td {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-right: 0;
    padding-left: 0;
    text-align: center;
  }
  .table-nodata td:before, .table-nodata td:after {
    display: none;
  }
  .table-write colgroup {
    display: none;
  }
  .table-write tr {
    display: block;
    position: relative;
    border-bottom: 1px solid #e3e3e3;
  }
  .table-write tr:after {
    display: block;
    clear: both;
    content: '';
  }
  .table-write tr:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    width: 10rem;
    background-color: #f4f4f8;
    z-index: -1;
  }
  .table-write th,
  .table-write td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    float: left;
    height: 4.5rem;
    padding: 1rem 1.5rem;
    border-bottom: 0;
  }
  .table-write th:nth-child(3), .table-write th:nth-child(4),
  .table-write td:nth-child(3),
  .table-write td:nth-child(4) {
    border-top: 1px solid #e3e3e3;
  }
  .table-write th {
    width: 10rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .table-write td {
    width: calc(100% - 10rem);
  }
  .table-write .h-auto th,
  .table-write .h-auto td {
    height: 100%;
  }
  .table-write .h-auto td {
    display: block;
  }
  .table-notice th:nth-child(3),
  .table-notice th:nth-child(4),
  .table-notice td:nth-child(3),
  .table-notice td:nth-child(4),
  .table-notice colgroup{
    display: none;
  }
  .table-notice:not(.table-nodata) td:first-child {
    position: relative;
    min-width: 6.4rem;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .table-notice td:first-child {
    min-width: 4.5rem;
  }
}

/* 박스 */
.info-box {
  margin-bottom: 1.3rem;
  padding: 1rem 1.2rem;
  font-size: 1.6rem;
  background-color: #f8f8f8;
}

.notice-box {
  margin-bottom: 5rem;
  padding: 3.6rem 38.2rem 3.6rem 3rem;
  background-color: #edf6f1;
  background-repeat: no-repeat;
  background-position: right 9.1rem bottom;
}

.notice-box .text {
  color: #292929;
  font-weight: 700;
  font-size: 2rem;
}

.notice-box.complete {
  background-image: url(/assets/images/common/icon/ico-notice1.png);
}

.notice-box.info {
  padding-right: 35rem;
  background-image: url(/assets/images/common/icon/ico-notice2.png);
  background-position: right 6rem bottom 2.4rem;
}

.notice-box.inquiry {
  display: table;
  width: 100%;
  background-image: url(/assets/images/common/icon/ico-notice3.png);
  background-position: right 8.4rem bottom 2.4rem;
}

.notice-box.inquiry .text {
  display: table-cell;
  vertical-align: middle;
}

.notice-box.search {
  display: table;
  width: 100%;
  padding-right: 18rem;
  padding-left: 18rem;
  text-align: center;
  background-image: url(/assets/images/common/icon/ico-notice4.png);
  background-position: right bottom;
}

.notice-box.search .search-area {
  display: table-cell;
  position: relative;
  width: 100%;
  vertical-align: middle;
}

.result-box2 {
  display: table;
  width: 100%;
  color: #141414;
  background-color: #f9f9f9;
}

.result-box2 .cont {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.result-box2 .type {
  display: inline-block;
  margin-bottom: .8rem;
  font-weight: 700;
  font-size: 1.8rem;
  text-align: left;
}

.result-box2 .type span {
  margin-left: 1.6rem;
  color: #7b7b7b;
}

.result-box2 .msg {
  font-weight: 700;
  font-size: 1.7rem;
  text-align: center;
}

.result-box2 .msg .win {
  color: #fa9800;
  font-size: 2rem;
}

@media screen and (min-width: 769px) {
  .notice-box {
    min-height: 18.5rem;
  }
  .result-box2 {
    min-height: 22.7rem;
  }
}

@media screen and (max-width: 1024px) {
  .notice-box {
    padding-right: 30rem;
  }
}

@media screen and (max-width: 768px) {
  .info-box {
    margin-bottom: 1rem;
    padding: .8rem 1rem;
    font-size: 1.2rem;
  }
  .notice-box {
    margin-bottom: 2.5rem;
    padding: 1.8rem 1.5rem 6rem;
  }
  .notice-box .text {
    font-size: 1.2rem;
    line-height: 1.6;
  }
  .notice-box.complete {
    background-size: auto 6rem;
    background-position: right 1.5rem bottom;
  }
  .notice-box.info {
    padding-right: 1.5rem;
    padding-bottom: 7.5rem;
    background-size: auto 6rem;
    background-position: right 1.5rem bottom 1.5rem;
  }
  .notice-box.inquiry {
    min-height: 10rem;
    padding-right: 9.5rem;
    padding-bottom: 1.8rem;
    background-size: auto 6rem;
    background-position: right 1.7rem bottom 2rem;
  }
  .notice-box.search {
    padding: 2rem 7.8rem 2rem 2rem;
    background-size: auto 5.8rem;
  }
  .notice-box.search .btn {
    min-width: auto;
    height: 3.2rem;
    padding: 0 2rem;
    font-size: 1.2rem;
  }
  .result-box2 {
    min-height: 15rem;
  }
  .result-box2 .type {
    font-size: 1.3rem;
  }
  .result-box2 .type span {
    margin-left: .9rem;
  }
  .result-box2 .msg {
    font-size: 1.2rem;
  }
  .result-box2 .msg .win {
    font-size: 1.5rem;
  }
}

/* 레이어팝업 */
.layer-popup {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  z-index: 50;
}

.layer-popup.show {
  display: block;
}

.layer-popup.layer-full .modal-dialog {
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0;
}

.layer-popup.layer-full .modal-content {
  width: 100%;
  height: calc(100% - 5rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.layer-popup.layer-full .modal-content .btn-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
}

.modal-dialog {
  width: 44rem;
  max-width: calc(100vw - 5rem);
  margin: 4rem auto;
  background-color: #ffffff;
}

.modal-dialog.modal-sm {
  width: 30rem;
  max-width: calc(100vw - 6rem);
  margin: 5rem auto;
}

.modal-dialog.modal-sm .modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 4.5rem;
}

.modal-dialog.modal-sm .modal-header .modal-tit {
  font-weight: 800;
  font-size: 1.6rem;
}

.modal-dialog.modal-sm .modal-header .btn-close {
  width: 4.5rem;
  height: 4.5rem;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 4.5rem;
  border-bottom: 1px solid #c6c6c6;
}

.modal-header .modal-tit {
  max-width: 65%;
  color: #141414;
  font-weight: 700;
  font-size: 1.6rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.modal-header .btn-close {
  display: inline-block;
  text-indent: -9999px;
  white-space: nowrap;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  width: 5rem;
  height: 5rem;
  background-image: url(/assets/images/common/button/btn-close2.png);
  background-size: auto 1.8rem;
}

.layer-modal {
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* 레이아웃 */
.inner {
  width: 100rem;
  margin: 0 auto;
}

#header > .inner {
  position: relative;
  width: 132.4rem;
}

#header .logo {
  padding: 1.5rem 0 1.5rem;
  text-align: center;
}

#header .logo a {
  display: inline-block;
  height: 4.6rem;
}

#header .logo a img {
  height: 100%;
}

#header .tel {
  position: absolute;
  top: 2.3rem;
  right: 0;
  color: #231f20;
  font-weight: 800;
  font-size: 2.6rem;
}

#header .tel:before {
  content: '';
  display: inline-block;
  background-repeat: no-repeat;
  vertical-align: middle;
  width: 2rem;
  height: 2rem;
  margin: -.2rem .9rem 0 0;
  background-image: url(/assets/images/common/icon/ico-tel1.png);
  background-size: auto 2rem;
}

.gnb {
  height: 6rem;
  border-top: 1px solid #d2d2d2;
  background-color: #0071bb;
}

.gnb .inner {
  width: 70rem;
  height: 100%;
}

.gnb label,
.gnb .btn-allmenu {
  display: none;
}

.gnb-menu {
  height: 100%;
  display: flex;
  justify-content: center;
}

.gnb-menu:after {
  display: block;
  clear: both;
  content: '';
}

.gnb-menu li {
  flex-grow: 1;
  height: 100%;
}

.gnb-menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  color: #ffffff;
  font-size: 1.8rem;
}

#content {
  background: url(/assets/images/common/bg-content.jpg) no-repeat 50% 0;
  background-size: auto 20.9rem;
}

.content-body {
  width: 100rem;
  margin: 0 auto;
  padding: 20rem 0;
}

.content-title {
  color: #515251;
  font-size: 4.2rem;
  text-align: center;
}

.breadcrumb {
  margin-top: -3.3rem;
  margin-bottom: 4.5rem;
  text-align: right;
}

.breadcrumb .breadcrumb-item {
  display: inline-block;
  color: #676767;
}

.breadcrumb .breadcrumb-item:before {
  content: '>';
  display: inline-block;
  margin: 0 1rem 0 .8rem;
  font-size: 1rem;
  vertical-align: middle;
}

.breadcrumb .breadcrumb-item:first-child:before {
  display: none;
}

.breadcrumb .breadcrumb-item img {
  margin-top: -.2rem;
}

#footer {
  background-color: #231f20;
  height: 14.5rem;
}

#footer:after {
  display: block;
  clear: both;
  content: '';
}

#footer .inner {
  height: 100%;
  padding-right: 5.5rem;
  padding-left: 5.5rem;
}

#footer .company,
#footer address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

#footer .company {
  float: left;
  width: 150px;
}

#footer address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  float: right;
  color: #c0c0c0;
  font-style: normal;
  font-size: 1.3rem;
}

@media screen and (min-width: 1025px) {
  .gnb-menu li.active {
    background-color: #0f4e77;
  }
  #content {
    min-height: calc(100vh - 285px);
  }
}

@media screen and (max-width: 1024px) {
  .inner {
    width: 100%;
  }
  #header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 6rem;
    -webkit-transition: .3s;
    transition: .3s;
    background-color: #ffffff;
    z-index: 20;
  }
  #header .logo {
    padding: .6rem 0 .8rem;
  }
  #header .logo a {
    height: 3.2rem;
  }
  #header .tel {
    display: inline-block;
    text-indent: -9999px;
    white-space: nowrap;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    overflow: hidden;
    top: 0;
    width: 6.8rem;
    height: 100%;
    background-color: #0071bb;
    background-image: url(/assets/images/common/icon/ico-tel2.png);
    background-size: auto 1.6rem;
  }
  .gnb {
    height: auto;
    background-color: #ffffff;
  }
  .gnb .inner {
    width: 100%;
  }
  .gnb label {
    display: inline-block;
    text-indent: -9999px;
    white-space: nowrap;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    overflow: hidden;
    position: absolute;
    top: 1.4rem;
    left: 1.6rem;
    width: 3.3rem;
    height: 3.3rem;
    border: 1px solid #666464;
    background-image: url(/assets/images/common/button/btn-menu.png);
    background-size: auto 1.5rem;
  }
  .gnb .btn-allmenu {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
  }
  .gnb .btn-allmenu ~ ul {
    flex-direction: column;
  }
  .gnb .btn-allmenu:checked ~ ul {
    max-height: 28.5rem;
  }
  .gnb-menu {
    max-height: 0;
    -webkit-transition: max-height .2s ease-out;
    transition: max-height .2s ease-out;
    overflow: hidden;
    background-color: #ffffff;
  }
  .gnb-menu li {
    float: none;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
  }
  .gnb-menu li a {
    display: block;
    position: relative;
    padding: 1.2rem 2rem;
    color: #363636;
    font-weight: 700;
    font-size: 1.4rem;
  }
  .gnb-menu li a:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6.8rem;
    height: 4.5rem;
    background: url(/assets/images/common/icon/ico-arr-right2.png) no-repeat 50% 50%;
    background-size: auto 1.7rem;
  }
  #content {
    min-height: calc(100vh - 126px);
    background-image: url(/assets/images/common/bg-content-m.jpg);
    background-position: 50% 6rem;
    background-size: 100% 9.8rem;
  }
  .content-body {
    width: 100%;
    padding: 9.6rem 2rem 8.5rem;
  }
  .content-title {
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }
  .breadcrumb {
    display: none;
  }
  #footer {
    height: auto;
  }
  #footer .inner {
    padding: 2.2rem 2rem 3rem;
    text-align: center;  
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #footer .company,
  #footer address {
    display: block;
    float: none;
    height: auto;
  }
  #footer .company img {
    width: 100%;
  }
  #footer address {
    margin-top: 1.3rem;
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 680px) {
  #content {
    min-height: calc(100vh - 164px);
  }
}

/* 메인 */
.main-visual .inner {
  width: 192rem;
}

.main-content .inner {
  width: 132.4rem;
  padding: 4.5rem 0 4.3rem;
}

.main-content .inner:after {
  display: block;
  clear: both;
  content: '';
}

.main-content .shortcut {
  float: left;
  width: 70.7rem;
}

.main-content .shortcut:after {
  display: block;
  clear: both;
  content: '';
}

.main-content .shortcut a {
  display: block;
  float: left;
  margin-right: 1rem;
}

.main-content .notice {
  position: relative;
  background-color: #f7f5f8;
  float: right;
  width: calc(100% - 70.7rem);
  height: 32.5rem;
  padding: 4.5rem 5rem;
}

.main-content .notice .title {
  color: #231f20;
  font-size: 3rem;
}

.main-content .notice .list {
  margin-top: 1.4rem;
}

.main-content .notice .list li {
  position: relative;
  padding-right: 10rem;
  padding-bottom: .5rem;
}

.main-content .notice .list li a {
  font-size: 1.6rem;
  display: block;
  color: #575757;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.main-content .notice .list .date {
  position: absolute;
  top: 0;
  right: 0;
  color: #787878;
}

.main-content .notice .btn-more {
  position: absolute;
  top: 6.2rem;
  right: 4.6rem;
  color: #231f20;
  font-weight: 700;
}

.main-content .notice .btn-more:after {
  content: '';
  display: inline-block;
  width: .8rem;
  height: 1.2rem;
  margin: -.2rem 0 0 1.4rem;
  vertical-align: middle;
  background: url(/assets/images/common/icon/ico-arr-right1.png) no-repeat;
  background-size: auto 1.2rem;
}

@media screen and (max-width: 1920px) {
  .main-visual .inner {
    width: 100%;
  }
}

@media screen and (max-width: 1324px) {
  #header > .inner {
    width: 100%;
  }
  .main-content .inner {
    width: 100%;
  }
  .main-content .notice {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media screen and (max-width: 1024px) {
  #content {
    padding-top: 6rem;
  }
  .main-visual .inner {
    position: relative;
    padding-top: 110.27%;
  }
  .main-visual .inner img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .main-content .inner {
    padding: 1.2rem 1.2rem 1.4rem;
  }
  .main-content .shortcut {
    float: none;
    width: calc(100% + .8rem);
    margin-right: -.4rem;
    margin-left: -.4rem;
  }
  .main-content .shortcut:after {
    display: block;
    clear: both;
    content: '';
  }
  .main-content .shortcut a {
    float: left;
    position: relative;
    width: calc(50% - .8rem);
    margin: 0 .4rem;
    padding-top: 45.04%;
  }
  .main-content .shortcut a img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .main-content .notice {
    float: none;
    width: 100%;
    height: auto;
    min-height: 16.5rem;
    margin-top: 1.2rem;
    padding: 1.4rem 1.9rem;
  }
  .main-content .notice .title {
    font-size: 2rem;
  }
  .main-content .notice .list {
    margin-top: .8rem;
  }
  .main-content .notice .list li {
    padding-right: 8.5rem;
  }
  .main-content .notice .list li a {
    font-size: 1.2rem;
  }
  .main-content .notice .list .date {
    font-size: 1.2rem;
  }
  .main-content .notice .btn-more {
    top: 2.4rem;
    right: 1.5rem;
    font-size: 1.2rem;
  }
  .main-content .notice .btn-more:after {
    height: .8rem;
    margin-left: 1rem;
    background-size: auto .8rem;
  }
}

/* 컨텐츠 */
.apply-process {
  margin-bottom: 4.5rem;
}

.apply-process:after {
  display: block;
  clear: both;
  content: '';
}

.apply-process li {
  float: left;
  position: relative;
  color: #aaaaaa;
  font-weight: 700;
  width: 20%;
  height: 9rem;
  font-size: 1.6rem;
  padding: .9rem .9rem .9rem 1.7rem;
}

.apply-process li:nth-child(1) {
  border-top-left-radius: .5rem;
  border-bottom-left-radius: .5rem;
  background-color: #515151;
}

.apply-process li:nth-child(2) {
  background-color: #7b7b7b;
}

.apply-process li:nth-child(2):after {
  border-left-color: #7b7b7b;
}

.apply-process li:nth-child(3) {
  color: #868686;
  background-color: #b7b7b7;
}

.apply-process li:nth-child(3):after {
  border-left-color: #b7b7b7;
}

.apply-process li:nth-child(4) {
  background-color: #eaeaea;
}

.apply-process li:nth-child(4):after {
  border-left-color: #eaeaea;
}

.apply-process li:nth-child(4) span {
  color: #7b7b7b;
}

.apply-process li:nth-child(5) {
  border-top-right-radius: .5rem;
  border-bottom-right-radius: .5rem;
  background-color: #f6f6f6;
}

.apply-process li:nth-child(5):after {
  display: none;
}

.apply-process li:nth-child(5) span {
  color: #7b7b7b;
}

.apply-process li:after {
  content: '';
  position: absolute;
  top: calc(50% - .8rem);
  right: -.7rem;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #515151;
  z-index: 10;
}

.apply-process li span {
  display: block;
  color: #ffffff;
  margin-top: -.2rem;
  line-height: 1.4;
}

.apply-process li.active {
  color: #aaaaaa;
  background-color: #0f4e77;
}

.apply-process li.active:after {
  border-left: 8px solid #0f4e77;
}

.apply-process li.active span {
  color: #ffffff;
}

.terms-area {
  margin-top: -1.4rem;
}

.terms-box {
  height: 21rem;
  margin-bottom: 1.2rem;
  padding: .9rem 1.6rem;
  border: 1px solid #e3e3e3;
  color: #373737;
  font-size: 1.4rem;
  line-height: 1.7;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.terms-area label {
  color: #373737;
  font-size: 1.3rem;
}

.logo-wrap img{
  max-width: 100%;
  height: auto;
}
.logo-wrap {
  width: 20rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.complete-msg {
  margin-bottom: 3rem;
  padding: 1.7rem 3rem;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  text-align: center;
}

.complete-msg .main {
  color: #292929;
  font-weight: 700;
  font-size: 2.1rem;
}

.complete-msg .sub {
  margin-top: -.2rem;
  color: #6d6c6c;
  font-size: 1.5rem;
}

.complete-msg.inquiry {
  border-top: 0;
  margin-top: -.4rem;
  padding: 0 0 1.1rem;
}

.complete-msg.inquiry .main {
  margin-bottom: 2.4rem;
}

.complete-msg.inquiry .sub {
  padding-top: 1.2rem;
  border-top: 1px solid #e3e3e3;
  font-weight: 700;
  font-size: 1.8rem;
}

.result-box {
  padding: 3.6rem 6rem 2.1rem;
  background-color: #f9f9f9;
}

.result-box .list:after {
  display: block;
  clear: both;
  content: '';
}

.result-box .list li {
  float: left;
  width: 57.5%;
  margin-bottom: 1.4rem;
  padding-right: 1rem;
  color: #7b7b7b;
  font-weight: 700;
}

.result-box .list li strong {
  margin-right: 1rem;
  color: #141414;
}

.result-box .list li.right {
  width: 42.5%;
}

.result-box .note {
  margin: 2.4rem -6rem 0;
  padding: 4.2rem 6rem 2.3rem;
  border-top: 1px dashed #c7c7c7;
}

.result-box .note .title {
  position: relative;
  margin: 0 0 .6rem;
  padding-left: 3rem;
  color: #141414;
  font-weight: 700;
  font-size: 1.6rem;
}

.result-box .note .title:before {
  content: '';
  position: absolute;
  top: .1rem;
  left: 0;
  width: 2.2rem;
  height: 2.2rem;
  background: url(/assets/images/common/icon/ico-note.png) no-repeat;
}

.result-box .note .bul-mark {
  font-size: 1.3rem;
  line-height: 1.6;
}

.survey-item + .survey-item {
  margin-top: 2rem;
}

.inquiry-area {
  margin: 5rem auto 0;
  width: 32rem;
}

.input-inquiry .item {
  margin-bottom: .7rem;
}

.input-inquiry label {
  width: 10rem;
  font-weight: 700;
}

.input-inquiry input[type=text],
.input-inquiry input[type=password] {
  width: calc(100% - 10rem);
}

.inquiry-area .btn-area {
  width: 100%;
  margin: 1.5rem 0 0;
}

.inquiry-area .btn {
  width: 100%;
  margin: 0;
}

.link:hover {
  text-decoration: underline;
}

.file:before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin: -.2rem .5rem 0 0;
  vertical-align: middle;
  background: url(/assets/images/common/icon/ico-clip.png) no-repeat;
  background-size: auto 2rem;
}

.file:hover {
  text-decoration: underline;
}

.guide-slider .guide-mobile {
  display: none !important;
}

.guide-slider .owl-carousel {
  border: 1px solid #c9c9c9;
}

.guide-slider .owl-nav {
  margin-top: 0;
}

@media screen and (min-width: 769px) {
  .guide-slider {
    position: relative;
  }
  .guide-slider .owl-carousel .owl-nav > button {
    position: absolute;
    top: calc(50% - 2.5rem);
    display: inline-block;
    width: 5.1rem;
    height: 5.1rem;
    margin: 0;
    text-indent: -9999px;
    white-space: nowrap;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    overflow: hidden;
    z-index: 10;
  }
  .guide-slider .owl-carousel .owl-nav .owl-prev {
    left: -8.1rem;
    background-image: url(/assets/images/common/button/btn-prev.png);
  }
  .guide-slider .owl-carousel .owl-nav .owl-next {
    right: -8.1rem;
    background-image: url(/assets/images/common/button/btn-next.png);
  }
}

@media screen and (max-width: 768px) {
  .apply-process {
    margin-bottom: 2.7rem;
  }
  .apply-process:after {
    display: block;
    clear: both;
    content: '';
  }
  .apply-process li {
    width: 33.33333%;
    height: 5.3rem;
    padding: .3rem .5rem .3rem 1rem;
    font-size: 1.1rem;
  }
  .apply-process li:nth-child(3) {
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
  }
  .apply-process li:nth-child(3):after {
    display: none;
  }
  .apply-process li:nth-child(4) {
    width: 50%;
    margin-top: .1rem;
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
    clear: both;
  }
  .apply-process li:nth-child(5) {
    width: 50%;
    margin-top: .1rem;
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
  }
  .apply-process li:after {
    top: calc(50% - .4rem);
    right: -.4rem;
    border-top-width: .4rem;
    border-bottom-width: .4rem;
    border-left-width: .4rem;
  }
  .apply-process li.active:after {
    border-left-width: .4rem;
  }
  .terms-area {
    margin-top: -.6rem;
  }
  .terms-box {
    height: 10.5rem;
    margin-bottom: .5rem;
    padding: .7rem 1rem;
    font-size: 1.1rem;
  }
  .terms-area label {
    font-size: 1.2rem;
  }
  .logo-wrap {
    height: 3.2rem;
    margin-top: 4.7rem;
    margin-bottom: 1.5rem;
  }
  .logo-wrap img {
    height: 100%;
  }
  .complete-msg {
    margin-bottom: 2rem;
    padding: 1rem 1.2rem;
  }
  .complete-msg .main {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .complete-msg .sub {
    margin-top: .5rem;
    font-size: 1.2rem;
  }
  .complete-msg.inquiry {
    margin-top: -.2rem;
    padding: 0 0 1.1rem;
  }
  .complete-msg.inquiry .main {
    margin-bottom: 1rem;
  }
  .complete-msg.inquiry .sub {
    padding-top: 1.2rem;
    font-size: 1.4rem;
  }
  .result-box {
    padding: 2rem 2rem 1rem;
  }
  .result-box .list li {
    float: none;
    width: 100%;
    margin-bottom: 1rem;
    padding-right: 0;
    font-size: 1.2rem;
  }
  .result-box .list li.right {
    width: 100%;
  }
  .result-box .list li strong {
    margin-right: .6rem;
  }
  .result-box .note {
    margin: 2rem -2rem 0;
    padding: 2.2rem 2rem 1rem;
  }
  .result-box .note .title {
    margin-bottom: .8rem;
    padding-left: 2.3rem;
    font-size: 1.3rem;
  }
  .result-box .note .title:before {
    width: 1.8rem;
    height: 1.8rem;
    background-size: 1.8rem;
  }
  .result-box .note .bul-mark {
    font-size: 1.2rem;
  }
  .file:before {
    width: 1.6rem;
    height: 1.6rem;
    margin-right: .3rem;
    background-size: auto 1.6rem;
  }
  .file:hover {
    text-decoration: underline;
  }
  .guide-slider {
    padding-top: 4.5rem;
  }
  .guide-slider .guide-pc {
    display: none !important;
  }
  .guide-slider .guide-mobile {
    display: block !important;
  }
  .guide-slider .owl-carousel .owl-nav {
    position: absolute;
    top: -4.5rem;
    right: 0;
    left: 0;
    width: calc(100% + 1rem);
    margin: 0 -.5rem;
  }
  .guide-slider .owl-carousel .owl-nav > button {
    position: absolute;
    top: 0;
    width: calc(50% - 1rem);
    min-width: auto;
    height: 3rem;
    margin: 0 .5rem;
    padding: 0 .2rem;
    border-radius: 0;
    color: #ffffff;
    font-size: 1.2rem;
    background-color: #515151;
  }
  .guide-slider .owl-carousel .owl-nav > button:after {
    color: #ffffff;
  }
  .guide-slider .owl-carousel .owl-nav > button:hover {
    background-color: #515151;
  }
  .guide-slider .owl-carousel .owl-nav > button span {
    position: absolute;
    top: calc(50% - 2.1rem);
    color: #ffffff;
    font-size: 2.6rem;
  }
  .guide-slider .owl-carousel .owl-nav .owl-prev {
    left: 0;
  }
  .guide-slider .owl-carousel .owl-nav .owl-prev:after {
    content: '이전';
  }
  .guide-slider .owl-carousel .owl-nav .owl-prev span {
    left: 1rem;
  }
  .guide-slider .owl-carousel .owl-nav .owl-next {
    right: 0;
  }
  .guide-slider .owl-carousel .owl-nav .owl-next:before {
    content: '다음';
  }
  .guide-slider .owl-carousel .owl-nav .owl-next span {
    right: 1rem;
  }
  .inquiry-area {
    margin-top: 3.5rem;
    max-width: 100%;
  }
  .input-inquiry label {
    width: 8rem;
    font-size: 1.3rem;
  }
  .input-inquiry input[type=text],
  .input-inquiry input[type=password] {
    width: calc(100% - 8rem);
  }
  .inquiry-area .btn-area {
    margin-top: 1.2rem;
  }
}

.title_flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 3.1rem 0 1.8rem;
}
.title_flex_download{
  font-size: 16px;
  color: #000;
  font-weight: 700;
  text-decoration: underline;
  position: relative;
}
.title_flex_download::after{
  position: absolute;
  background-color: #0f4e77;
  border-radius: calc(1px / 0);
  width: 24px;
  height: 24px;
  content: "";
  left: -29px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.title_flex_download::before{
  content: "+";
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(calc(-50% + 2px));
}
.title_sub_detail li{
  padding-left: 1.5em;
  position: relative;
  font-size: 1.6rem;
}
.title_sub_detail li:not(:last-child){
  margin-bottom: 2px;
}
.title_sub_detail li:last-child{
  margin-bottom: 20px;
}
.title_sub_detail li::before{
  position: absolute;
  content: '-';
  left: -.5em;
  padding-left: 1em;
}
.title_sub_detail{
  font-size: 14px;
  color: #888;
}

/*alert button*/
.alert_content {
	text-align: center;
	font-weight: 700;
}

.alert_buttons .alert_btn {
	font-weight: 700;
}

.alert_buttons .alert_btn.alert_btn_ok {
	background: #0071bb;
	color: #fff;
}

.alert_buttons .alert_btn:first-child+.alert_btn {
	border-left: 1px solid #0071bb;
}

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

.pop_complex_wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
}

.pop_complex_inner {
  padding: 2rem;
  text-align: center;
  overflow-y: scroll;
  width: 90dvw;
  height: 100%;
  max-width: 1600px;
  max-height: 90dvh;
}

.pop_complex_close {
	margin: 1rem auto;
	height: 3.5rem;
  width: 12rem;
  font-size: 1.6rem;
  font-weight: 700;
	background: #0071bb;
	color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
	text-decoration: none;
}