@charset "UTF-8";
@font-face {
  font-family: pretendard;
  font-style: normal;
  font-weight: 300;
  src: local("pretendard"), local("pretendard"), url("../fonts/Pretendard-Regular.woff2") format("woff");
}
@font-face {
  font-family: pretendardBold;
  font-style: normal;
  font-weight: 400;
  src: local("pretendardBold"), local("pretendardBold"), url("../fonts/Pretendard-Bold.woff2") format("woff");
}
@font-face {
  font-family: pretendardExtraBold;
  font-style: normal;
  font-weight: 500;
  src: local("pretendardExtraBold"), local("pretendardExtraBold"), url("../fonts/Pretendard-ExtraBold.woff2") format("woff");
}
@keyframes imgZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
* {
  box-sizing: border-box;
}

body {
  font-family: "pretendard", sans-serif !important;
  font-size: 18px;
}
body a, body button, body ul, body li {
  font-family: "pretendard", sans-serif;
}
body a {
  display: block;
  color: inherit;
  text-decoration: none;
}
body button {
  cursor: pointer;
}
body .inner {
  width: 1320px;
  height: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
body .flex_row {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .flex_col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .metric {
  opacity: 0.6;
}
body .bold {
  font-family: "pretendardBold" !important;
}
body .orange {
  color: #f9811a;
}
body .blue {
  color: #10488c;
}
body .blue_back {
  background-color: #10488c;
  color: #fff;
}
body .section_title {
  gap: 20px;
  margin-bottom: 40px;
}
body .section_title p {
  font-size: 33px;
}
body .section_title span {
  font-size: 20px;
  color: #535353;
}
body #loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 99;
  display: none;
}
body #loading img {
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body header {
  width: 100%;
  height: 120px;
  position: relative;
  background-color: #fff;
}
body header .sign_area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}
body header .sign_area div {
  gap: 10px;
}
body header #search_area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 52px;
  border-radius: 26px;
  border: 2px solid #10488c;
}
body header #search_area i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #10488c;
  cursor: pointer;
}
body header #search_area label {
  display: block;
  width: 100%;
  height: 100%;
}
body header #search_area label input {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  outline: none;
}
body header #search_area label input::-moz-placeholder {
  color: #959595;
}
body header #search_area label input::placeholder {
  color: #959595;
}
body nav {
  position: relative;
  width: 100%;
  height: 80px;
  background-color: #fff;
  border-bottom: 1px solid #c9c9c9;
}
body nav ul {
  justify-content: space-between;
}
body nav ul.mo {
  display: none;
}
body nav ul li {
  cursor: pointer;
}
body nav ul li i {
  font-size: 30px;
}
body #footerSiteMap {
  width: 100%;
  height: 95px;
  border-top: 1px solid #c9c9c9;
}
body #footerSiteMap ul {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body #footerSiteMap ul .family_site {
  position: relative;
  width: 240px;
  height: 40px;
  border: 1px solid #dcdcdc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  color: #a0a0a0;
  cursor: pointer;
}
body #footerSiteMap ul .family_site .arrow {
  transition: all 0.2s ease-in-out;
}
body #footerSiteMap ul .family_site .arrow.active {
  transform: rotate(180deg);
}
body #footerSiteMap ul .family_site .slideSiteMap {
  width: 100%;
  display: none;
  position: absolute;
  top: 39px;
  left: 0;
  z-index: 9;
}
body #footerSiteMap ul .family_site .slideSiteMap .subSiteMap {
  width: 240px;
  height: 180px;
  background-color: #fff;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 15px;
}
body #footerSiteMap ul .family_site .slideSiteMap .subSiteMap li {
  width: 100%;
  height: 20px;
  line-height: 20px;
}
body #footerSiteMap ul .family_site .slideSiteMap .subSiteMap li a {
  display: block;
}
body #footerSiteMap ul .family_site .slideSiteMap .subSiteMap li a:hover {
  color: #10488c;
  font-family: "pretendardBold";
}
body footer {
  width: 100%;
  background-color: #1d2e42;
  padding: 50px 0;
  box-sizing: border-box;
}
body footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
body footer .inner .left {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
body footer .inner .left .address {
  color: #fff;
  line-height: 1.8;
}
body footer .inner .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 30px;
}
body footer .inner .right .group {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #fff;
}
body footer .inner .right .group img {
  width: 250px;
}
body footer .inner .right .group button {
  border: none;
  background-color: transparent;
  color: #fff;
  font-size: 18px;
}
body #footerTerms {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
}
body #footerTerms .back {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
body #footerTerms .close_btn {
  position: absolute;
  font-size: 26px;
  color: #fff;
  font-weight: 900;
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}
body #footerTerms .popup_area {
  position: absolute;
  width: 80vw;
  height: 70vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 20px;
  padding: 50px 35px;
  overflow: hidden;
  display: none;
}
body #subPageBanner {
  width: 100%;
  height: 255px;
  position: relative;
  overflow: hidden;
}
body #subPageBanner img {
  width: 100%;
  animation: imgZoom 5s linear both;
}
body #subPageBanner .section_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  color: #fff;
}
body #subPageBanner .section_title span {
  color: #fff;
}
body #contnet_area {
  width: 100%;
  padding: 150px 0 200px;
}
body #contnet_area .inner {
  display: flex;
}
body #contnet_area .inner .nav {
  width: 240px;
  flex-shrink: 0;
}
body #contnet_area .inner .nav h3 {
  width: 100%;
  font-size: 28px;
  font-family: "pretendardBold";
  padding-bottom: 30px;
  border-bottom: 1px solid #000;
}
body #contnet_area .inner .nav ul {
  width: 100%;
  align-items: flex-start;
}
body #contnet_area .inner .nav ul li {
  width: 100%;
  height: 50px;
  line-height: 50px;
  border-bottom: 1px solid #e5e5e5;
  color: #535353;
  cursor: pointer;
}
body #contnet_area .inner .nav ul li a.active {
  font-family: "pretendardBold";
  color: #000;
}
body #contnet_area .inner .content_box {
  position: relative;
  padding-left: 70px;
  width: 100%;
}
body #contnet_area .inner .content_box .sub_title {
  align-items: flex-start;
  gap: 15px;
}
body #contnet_area .inner .content_box .sub_title .content_nav {
  font-size: 20px;
  color: #a6a6a6;
}
body #contnet_area .inner .content_box .sub_title p {
  font-size: 24px;
}
body #contnet_area .inner .content_box .content_img {
  position: absolute;
  bottom: -50px;
  right: -50px;
}
body #contnet_area .inner .content_box .content#mypage .form_area .row {
  align-items: flex-start;
}
body #contnet_area .inner .content_box .content#mypage .form_area .row .input_box {
  width: 420px;
}
body #contnet_area .inner .content_box .content#mypage .form_area .row .input_box .adrrBox {
  display: flex;
  gap: 15px;
}
body #contnet_area .inner .content_box .content#mypage .form_area .row .input_box .adrrBox #addr {
  width: 340px;
}
body #contnet_area .inner .content_box .content#mypage .form_area .row .input_box .adrrBox .submit_btn {
  width: 110px;
  background-color: #313131;
  color: #fff;
  height: 50px;
  border-radius: 5px;
  border: none;
  font-size: 18px;
  font-family: "pretendardBold";
  flex-shrink: 0;
  cursor: pointer;
}
body #contnet_area .form_area {
  width: 100%;
  background-color: #f5f5f5;
  padding: 50px 60px;
  border-radius: 10px;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
body #contnet_area .form_area .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body #contnet_area .form_area .row .input_box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body #contnet_area .form_area .row .input_box input, body #contnet_area .form_area .row .input_box select {
  width: 420px;
  height: 50px;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  padding: 0 20px;
  outline: none;
  font-size: 18px;
}
body #contnet_area .form_area .row .input_box input:focus, body #contnet_area .form_area .row .input_box select:focus {
  border: 1px solid #114896;
}
body #contnet_area .form_area .row .input_box input::-moz-placeholder, body #contnet_area .form_area .row .input_box select::-moz-placeholder {
  color: #959595;
  font-size: 18px;
  font-family: "pretendard";
}
body #contnet_area .form_area .row .input_box input::placeholder, body #contnet_area .form_area .row .input_box select::placeholder {
  color: #959595;
  font-size: 18px;
  font-family: "pretendard";
}
body #contnet_area .form_area .row .input_box select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("/static/images/user/select_down.png") no-repeat 97% 50%/10px auto;
  background-color: #fff;
  color: #959595;
  font-size: 18px;
  font-family: "pretendard";
}
body #contnet_area .form_area .row .input_box select option {
  height: 30px;
}
body #contnet_area .form_area .row .input_box label {
  font-family: "pretendardBold";
  color: #535353;
}
body #contnet_area .form_area .row .input_box label .nomal {
  font-family: "pretendard";
}
body #contnet_area .form_area .row .input_box textarea {
  width: 900px;
  height: 150px;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  outline: none;
  padding: 15px;
  resize: none;
}
body #contnet_area .form_area .row .input_box textarea:focus {
  border: 1px solid #114896;
}
body #contnet_area .form_area .row .input_box textarea::-moz-placeholder {
  color: #959595;
  font-size: 18px;
  font-family: "pretendard";
}
body #contnet_area .form_area .row .input_box textarea::placeholder {
  color: #959595;
  font-size: 18px;
  font-family: "pretendard";
}
body #contnet_area .form_area .row .input_box.file .file_box {
  display: flex;
  gap: 15px;
  align-items: center;
}
body #contnet_area .form_area .row .input_box.file .file_box .file_btn {
  width: 120px;
  height: 34px;
  border-radius: 5px;
  border: none;
  background-color: #535353;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
body #contnet_area .form_area .row .input_box.file .file_box .file_name {
  color: #535353;
  display: flex;
  align-items: center;
  gap: 5px;
}
body #contnet_area .form_area .row .input_box.file .file_box .file_name i {
  cursor: pointer;
}
body #contnet_area .term_area {
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #535353;
}
body #contnet_area .term_area input[type=checkbox] {
  display: none;
}
body #contnet_area .term_area input[type=checkbox] + .checkbox {
  width: 32px;
  height: 32px;
  border: 1px solid #dcdcdc;
  position: relative;
  border-radius: 5px;
}
body #contnet_area .term_area input[id=term]:checked + .checkbox::after {
  content: "✔";
  font-size: 25px;
  width: 32px;
  height: 32px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 3px;
  color: #10488c;
}
body #contnet_area .button_area {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
body #contnet_area .button_area .applicationBtn {
  width: 220px;
  height: 50px;
  border: none;
  border-radius: 5px;
  background-color: #10488c;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
body #termsPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
}
body #termsPopup .back {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
body #termsPopup .term_content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1.5;
  font-size: 16px;
}
body #termsPopup .term_content .xi-close {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 24px;
  cursor: pointer;
}

@media screen and (max-width: 1320px) {
  body {
    font-size: 15px;
  }
  body .pc {
    display: none;
  }
  body .inner {
    width: 100%;
    padding: 0 20px;
  }
  body header {
    height: 90px;
  }
  body #subPageBanner {
    height: 150PX;
  }
  body #subPageBanner img {
    height: 100%;
    width: auto;
  }
  body #subPageBanner .section_title {
    width: 80vw;
    text-align: center;
  }
  body #subPageBanner .section_title p {
    font-size: 30px;
  }
  body #subPageBanner .section_title span {
    font-size: 16px;
  }
  body nav {
    height: 50px;
  }
  body nav .inner {
    padding: 0 5px;
  }
  body nav .inner ul.flex_row {
    justify-content: space-between;
  }
  body nav .inner ul.flex_row li a {
    font-size: 12px;
  }
  body .section_title {
    gap: 10px;
  }
  body .section_title p {
    font-size: 18px;
  }
  body .section_title span {
    width: 70vw;
    font-size: 14px;
    text-align: center;
  }
  body #contnet_area {
    padding: 40px 0 100px;
  }
  body #contnet_area .inner {
    flex-direction: column;
    gap: 20px;
  }
  body #contnet_area .inner .nav {
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
  }
  body #contnet_area .inner .nav h3 {
    width: 35%;
    font-size: 20px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    border-bottom: 2px solid #000;
  }
  body #contnet_area .inner .nav ul {
    width: 65%;
    flex-direction: row;
    font-size: 12px;
  }
  body #contnet_area .inner .nav ul li {
    height: 40px;
    line-height: 40px;
    padding: 0;
    text-align: center;
  }
  body #contnet_area .inner .nav ul li a {
    line-height: 1.1;
  }
  body #contnet_area .inner .content_box {
    padding: 0;
  }
  body #contnet_area .inner .content_box .sub_title {
    gap: 10px;
  }
  body #contnet_area .inner .content_box .sub_title .content_nav {
    font-size: 14px;
  }
  body #contnet_area .inner .content_box .sub_title p {
    display: none;
  }
  body #contnet_area .inner .content_box .content_img {
    right: 0;
    z-index: -1;
    opacity: 0.3;
    width: 250px;
  }
  body #contnet_area .form_area {
    padding: 15px 15px;
  }
  body #contnet_area .form_area .row {
    flex-direction: column;
    gap: 15px;
  }
  body #contnet_area .form_area .row .input_box {
    width: 100%;
  }
  body #contnet_area .form_area .row .input_box input {
    width: 100%;
    font-size: 16px;
  }
  body #contnet_area .form_area .row .input_box input::-moz-placeholder {
    font-size: 16px;
  }
  body #contnet_area .form_area .row .input_box input::placeholder {
    font-size: 16px;
  }
  body #contnet_area .form_area .row .input_box select {
    width: 100%;
    font-size: 16px;
  }
  body #contnet_area .form_area .row .input_box select::-moz-placeholder {
    font-size: 16px;
  }
  body #contnet_area .form_area .row .input_box select::placeholder {
    font-size: 16px;
  }
  body #contnet_area .form_area .row .input_box textarea {
    width: 100%;
    font-size: 16px;
  }
  body #contnet_area .form_area .row .input_box textarea::-moz-placeholder {
    font-size: 16px;
  }
  body #contnet_area .form_area .row .input_box textarea::placeholder {
    font-size: 16px;
  }
  body #contnet_area .term_area {
    align-items: flex-start;
  }
  body #contnet_area .term_area input[type=checkbox] + .checkbox {
    flex-shrink: 0;
  }
  body #termsPopup .term_content {
    width: 80vw;
    height: 80vh;
  }
  body #termsPopup .term_content .xi-close {
    top: 5px;
    right: 5px;
  }
  body #footerSiteMap {
    height: 65px;
  }
  body #footerSiteMap .family {
    justify-content: flex-end;
  }
  body #footerSiteMap .family > li:not(:last-child) {
    display: none;
  }
  body footer {
    padding: 15px 0 80px;
    font-size: 14px;
    position: relative;
  }
  body footer .inner {
    align-items: flex-start;
  }
  body footer .inner .left {
    gap: 20px;
  }
  body footer .inner .right {
    gap: 10px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    flex-direction: row;
  }
  body footer .inner .right .group {
    gap: 15px;
  }
  body footer .inner .right .group img {
    width: 100px;
  }
  body footer .inner .right .group button {
    font-size: 14px;
  }
  body #footerTerms .popup_area {
    position: absolute;
    padding: 30px 15px;
  }
}/*# sourceMappingURL=common.css.map */