@charset "UTF-8";
/* 버튼 - content.css, layout.css */
#container {
  padding-bottom: 64px;
}

/* header */
.header-banner {
  height: 32px;
  background-color: #edf1f5;
  color: #333;
}
.header-banner .inner {
  height: 100%;
}
.header-banner-txt {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 15px;
  padding-left: 32px;
  background: url("../images/common/img_header_flag.png") no-repeat 0 center;
  background-size: 24px;
}

.header {
  position: relative;
  z-index: 2;
}

.header-info {
  background-color: #fff;
  height: 112px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid #CDD1D5;
}

.header-info-inner {
  max-width: 1380px;
  margin: 0 auto;
  height: 100%;
  width: 94%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 0 30px;
}

.header-logo-box {
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  margin-right: auto;
}

.header-logo {
  width: 244px;
  height: 84px;
  background: url("../images/common/logo.svg") no-repeat center;
  background-size: contain;
}

.header-search {
  display: inline-flex;
  margin: 0 auto;
  max-width: 503px;
  width: 100%;
  position: relative;
}
.header-search form {
  width: 100%;
}
.header-search .search-inp {
  width: 100%;
  height: 56px;
  border: 2px solid #256EF4;
  border-radius: 4px;
  font-size: 19px;
  padding: 13px 76px 13px 16px;
  outline-offset: 2px;
}
.header-search .form-control-clear {
  position: absolute;
  right: 46px;
  top: 50%;
  transform: translateY(-50%);
  min-width: auto;
  box-sizing: border-box;
  padding: 0;
  width: 17px;
  height: 17px;
  background: #CDD1D5 url("../images/common/ico_delete.svg") no-repeat center;
  z-index: 1;
  margin-top: 0;
}
.header-search .form-control-clear::before, .header-search .form-control-clear::after {
  display: none;
}
.header-search .search-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/common/ico_header_search.svg") no-repeat center;
  width: 24px;
  height: 24px;
  padding: 26px;
  box-sizing: border-box;
}

.search-close-btn {
  display: none;
  position: absolute;
  border: 1px solid #ddd;
  background: #f7f7f7 url("../images/common/ico_delete.svg") no-repeat center;
  text-indent: -99999px;
  left: 50%;
  border-radius: 100px;
  width: 40px;
  height: 40px;
  padding: 0;
  bottom: -20px;
  transform: translate3d(-50%, 0, 0);
}

.header-link {
  display: inline-flex;
  vertical-align: middle;
  justify-content: end;
}
.header-link .link-list {
  font-size: 0;
}
.header-link .link-list > li {
  display: inline-block;
  font-size: 15px;
  padding: 0 14px;
  border-left: 1px solid #CDD1D5;
  vertical-align: middle;
  position: relative;
}
.header-link .link-list > li:first-child {
  padding-left: 0;
  border-left: 0;
}
.header-link .link-list > li:last-child {
  padding-right: 0;
}
.header-link .eng {
  padding-left: 20px;
  background: url("../images/common/ico_global.svg") no-repeat 0 center;
}
.header-link .font-control-btn {
  padding: 3px 27px 3px 26px;
  background: url("../images/common/ico_fontsize.svg") no-repeat 6px center;
  font-weight: 400;
  border-radius: 100px;
  transition: 0.3s ease;
}
.header-link .font-control-btn::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background: url("../images/common/ico_gnb_dropdown.png") no-repeat center;
  background-size: 10px;
  position: absolute;
  right: 5px;
}
.header-link .font-control-btn:hover,
.header-link .font-control-btn.open {
  background-color: #F5F7FA;
}
.header-link .font-control-btn.open::after {
  transform: rotate(180deg);
}

.font-control-box {
  display: none;
  position: absolute;
  background-color: #fff;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #CDD1D5;
  border-radius: 8px;
  width: 150px;
  margin-top: 10px;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}
.font-control-box li button {
  transition: 0.3s ease;
  background: url("../images/common/ico_fontsize_txt.svg") no-repeat 10px center;
  text-align: left;
  width: 100%;
  background-size: 22px;
  padding: 12px 10px 12px 50px;
  font-size: 17px;
  margin: 2px 0;
}
.font-control-box li button:hover {
  background-color: #F5F7FA;
}
.font-control-box .font-control-medium {
  background-size: 26px;
}
.font-control-box .font-control-large {
  background-size: 30px;
}
.font-control-box .font-reset-btn {
  border-top: 1px solid #CDD1D5;
  width: 100%;
  padding: 10px 5px;
  font-size: 17px;
  vertical-align: middle;
  background-color: transparent;
  margin-top: 10px;
  padding-top: 15px;
}
.font-control-box .font-reset-btn::before {
  content: "";
  display: inline-block;
  width: 20px;
  transition: 0.3s ease;
  height: 20px;
  background: url("../images/common/ico_reset.svg") no-repeat center;
  margin-right: 4px;
  vertical-align: middle;
}
.font-control-box .font-reset-btn:hover::before {
  transform: rotate(45deg);
}
.font-control-box.active {
  display: block;
}

.header-gnb {
  border-bottom: 1px solid #CDD1D5;
}
.header-gnb .gnb-1depth-item {
  display: inline-block;
  vertical-align: top;
  margin-right: 16px;
}
.header-gnb .gnb-1depth-item:last-child {
  margin-right: 0;
}
.header-gnb .gnb-1depth-item > a {
  display: block;
  padding: 13px 38px 13px 10px;
  font-size: 19px;
  font-weight: 700;
  color: #464C53;
  position: relative;
  transition: 0.3s ease;
}
.header-gnb .gnb-1depth-item > a.active,
.header-gnb .gnb-1depth-item > a:hover {
  background-color: #eef2f7;
}
.header-gnb .gnb-1depth-item > a::before {
  content: "";
  display: inline-block;
  background: url("../images/common/ico_gnb_dropdown.png") no-repeat center;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.header-gnb .gnb-1depth-item > a.active::before {
  transform: translateY(-50%) rotate(180deg);
}
.header-gnb .gnb-1depth-item > a:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  transform: translateX(-50%);
  border-bottom: 3px solid #003675;
  transition: all 0.3s;
  z-index: 1;
}
.header-gnb .gnb-1depth-item > a.active:after,
.header-gnb .gnb-1depth-item > a:hover::after {
  width: 100%;
}
.header-gnb .gnb-2depth {
  position: absolute;
  z-index: 1;
  display: none;
  background-color: #fff;
  width: 100%;
  overflow: hidden;
  left: 0;
  transform: translateY(1px);
  padding: 0 10px;
}
.header-gnb .gnb-2depth ul {
  margin-top: 16px;
  display: flex;
  gap: 8px 24px;
  flex-wrap: wrap;
}
.header-gnb .gnb-2depth li {
  display: inline-block;
  width: calc(25% - 18px);
}
.header-gnb .gnb-2depth li a {
  position: relative;
  display: block;
  padding: 12px 20px;
  transition: 0.3s ease;
  border-radius: 6px;
}
.header-gnb .gnb-2depth li a::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 10px;
  background-color: #1E2124;
  vertical-align: middle;
  position: absolute;
  left: 10px;
  top: 20px;
}
.header-gnb .gnb-2depth li a:hover {
  background-color: #EEF2F7;
  font-weight: 600;
}
.header-gnb .gnb-2depth.active {
  display: block;
}
.header-gnb .gnb-2depth-header {
  margin-top: 26px;
}
.header-gnb .gnb-2depth-header .gnb-title {
  font-size: 24px;
  font-weight: 700;
  color: #1E2124;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.header-gnb .gnb-2depth-header .more-btn {
  padding: 5px 30px 5px 13px;
  display: inline-block;
  vertical-align: middle;
  transition: 0.3s ease;
  position: relative;
  border-radius: 100px;
}
.header-gnb .gnb-2depth-header .more-btn::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: calc(100% - 43px);
  height: 1px;
  left: 13px;
  bottom: 5px;
  transition: 0.3s ease;
  background-color: #1E2124;
}
.header-gnb .gnb-2depth-header .more-btn::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  right: 10px;
  vertical-align: middle;
  background: url("../images/common/ico_arrow.svg") no-repeat center;
  transition: 0.3s ease;
}
.header-gnb .gnb-2depth-header .more-btn:hover {
  background-color: #F5F7FA;
}
.header-gnb .gnb-2depth-header .more-btn:hover::after {
  right: 5px;
}

.header .dim {
  position: absolute;
  left: 0;
  right: 0;
  top: 111px;
  width: 100%;
  height: 1px;
  display: block;
  transition: 0.3s ease;
  background-color: #fff;
  border-top: 1px solid #D8D8D8;
}

.header .dim.dim-open {
  transform: translateY(0);
  border-bottom: 1px solid #DDDDDD;
  height: 250px;
}

.header .dim.active {
  display: block;
}

/* 1200px 부터 보이도록 설정 */
.header-mobile-link {
  display: none;
}
.header-mobile-link button {
  font-size: 13px;
  width: 53px;
  height: 48px;
  background-color: #fff;
  position: relative;
  padding: 33px 0 0 0;
  margin-left: 8px;
}
.header-mobile-link button:first-child {
  margin-left: 0;
}
.header-mobile-link button::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.header-mobile-link .header-link-search {
  display: none;
}
.header-mobile-link .header-link-search::before {
  background: url("../images/common/ico_header_search.svg") no-repeat center;
  top: 5px;
}
.header-mobile-link .header-mobile-button {
  display: none;
}
.header-mobile-link .header-mobile-button::before {
  background: url("../images/common/ico_header_menu.svg") no-repeat center;
  top: 5px;
}

.mobile-gnb-wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  max-width: 100%;
  width: 100%;
  height: calc(100vh - 110px);
  box-sizing: border-box;
  transition: 0.5s ease;
  z-index: 100;
}
.mobile-gnb-wrap.active {
  display: block;
}
.mobile-gnb-wrap .mobile-gnb-header {
  padding: 20px;
  border-bottom: 4px solid #E4E4E4;
  height: 70px;
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
}
.mobile-gnb-wrap .utility-list {
  display: inline-flex;
  vertical-align: middle;
  justify-content: end;
}
.mobile-gnb-wrap .utility-list > li {
  display: inline-block;
  font-size: 15px;
  padding: 0 14px;
  border-left: 1px solid #CDD1D5;
  vertical-align: middle;
  position: relative;
}
.mobile-gnb-wrap .utility-list > li:first-child {
  padding-left: 0;
  border-left: 0;
}
.mobile-gnb-wrap .utility-list > li:last-child {
  padding-right: 0;
}
.mobile-gnb-wrap .utility-list .eng {
  padding-left: 20px;
  background: url("../images/common/ico_global.svg") no-repeat 0 center;
}
.mobile-gnb-wrap .banner-link-box {
  position: static;
  display: block;
  width: 100%;
  height: 52px;
  padding: 10px 24px;
  background: #FFFFFF;
  overflow-x: auto;
  white-space: nowrap;
}
.mobile-gnb-wrap .banner-link-box::-webkit-scrollbar {
  display: none;
}
.mobile-gnb-wrap .header-search-box {
  position: relative;
  display: block;
  padding: 0 24px;
  padding-bottom: 16px;
  background: #FFFFFF;
  border-bottom: 4px solid #E4E4E4;
}
.mobile-gnb-wrap .header-search-box .inp {
  width: 100%;
  padding-right: 48px;
  border: 1px solid #2d2d2d;
  border-radius: 8px;
  font-size: 17px;
  color: #333;
  height: 48px;
  font-weight: 300;
}
.mobile-gnb-wrap .header-search-box .inp::-moz-placeholder {
  color: #767676;
}
.mobile-gnb-wrap .header-search-box .inp::placeholder {
  color: #767676;
}
.mobile-gnb-wrap .header-search-box button {
  position: absolute;
  top: 0;
  right: 24px;
  width: 48px;
  height: 48px;
  display: inline-block;
  background: url("../images/common/ico_mobile_srch.png") center no-repeat;
}

.mobile-gnb {
  background-color: #FFFFFF;
  padding-bottom: 60px;
  width: 100%;
  height: calc(100% - 110px);
  overflow-y: auto;
}
.mobile-gnb .gnb-2depth-header {
  display: none;
}
.mobile-gnb .gnb-1depth-item {
  border-top: 4px solid #E4E4E4;
}
.mobile-gnb .gnb-1depth-item:first-child {
  border-top: 0;
}
.mobile-gnb .gnb-1depth-item > a {
  position: relative;
  display: block;
  padding: 17px 54px 17px 24px;
  font-size: 19px;
  font-weight: 700;
}
.mobile-gnb .gnb-1depth-item > a.dropdown::after {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../images/common/ico_gnb_dropdown.png") no-repeat center;
  background-size: 10px;
  transition: 0.2s ease;
  content: "";
}
.mobile-gnb .gnb-1depth-item > a.active::after {
  transform: translateY(-50%) rotate(180deg);
}
.mobile-gnb .gnb-1depth-item:last-child {
  border-bottom: 4px solid #E4E4E4;
}
.mobile-gnb .gnb-2depth {
  display: none;
  padding: 8px 0 16px 24px;
  font-size: 17px;
  font-weight: 400;
  position: relative;
}
.mobile-gnb .gnb-2depth.active {
  display: block;
}
.mobile-gnb .gnb-2depth::before {
  content: "";
  display: inline-block;
  width: calc(100% - 40px);
  left: 20px;
  top: 0;
  height: 1px;
  background-color: #D8D8D8;
  position: absolute;
}
.mobile-gnb .gnb-2depth-item > a {
  position: relative;
  display: block;
  padding: 14px 0;
}
.mobile-gnb .gnb-2depth-item > a span {
  vertical-align: middle;
}
.mobile-gnb .gnb-2depth-item > a .icon {
  display: inline-block;
  margin-left: 8px;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  transition: 0.2s ease;
  content: "";
}
.mobile-gnb .gnb-2depth-item > a.active .icon {
  transform: rotate(180deg);
}
.mobile-gnb .gnb-3depth {
  display: none;
  padding-left: 10px;
  padding-bottom: 16px;
}
.mobile-gnb .gnb-3depth.active {
  display: block;
}
.mobile-gnb .gnb-3depth-item > a {
  display: block;
  padding: 14px 0;
}
.mobile-gnb .gnb-3depth-item > a::before {
  display: inline-block;
  margin-right: 8px;
  width: 3px;
  height: 3px;
  border-radius: 50px;
  background-color: #555;
  vertical-align: middle;
  content: "";
}

.mobile-gnb-close {
  font-size: 14px;
  position: absolute;
  right: 10px;
  top: 0;
  width: 62px;
  height: 60px;
  padding: 38px 0 0 0;
  background-color: transparent;
}
.mobile-gnb-close::before {
  content: "";
  display: inline-block;
  height: 20px;
  background: url("../images/common/ico_delete.svg") no-repeat center;
  position: absolute;
  width: 20px;
  top: 15px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  background-size: 15px;
}

.dim {
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
}

.footer {
  border-top: 1px solid #ddd;
  padding: 40px 0 74px;
  position: relative;
  color: #1E2124;
}
.footer .footer-logo {
  display: inline-block;
}
.footer .footer-desc {
  margin-top: 40px;
}
.footer .footer-desc .txt {
  margin-top: 16px;
  display: inline-block;
}
.footer .footer-desc .bold {
  margin-right: 8px;
  font-weight: 700;
}
.footer .footer-desc .num {
  position: relative;
}
.footer .footer-desc .num::after {
  content: "";
  margin: 0 8px;
  display: inline-block;
  width: 1px;
  height: 12px;
  background-color: #6D7882;
}
.footer .family-site-wrap {
  position: absolute;
  right: 0;
  bottom: 15px;
  z-index: 1;
}
.footer .family-site-wrap .family-site {
  width: 360px;
  display: inline-block;
}
.footer .family-site-wrap .family-site-button {
  overflow: hidden;
  width: 100%;
  display: block;
  background-color: #fff;
  padding: 11px 44px 11px 16px;
  border: 1px solid #58616A;
  text-align: left;
  color: #464C53;
  border-radius: 6px;
  position: relative;
  transition: 0.3s ease;
}
.footer .family-site-wrap .family-site-button::before {
  content: "";
  display: inline-block;
  width: 45px;
  height: 100%;
  position: absolute;
  right: 0;
  transition: 0.3s ease;
  top: 0;
}
.footer .family-site-wrap .family-site-button::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/common/ico_dropdown.svg") no-repeat center;
  transition: 0.3s ease;
}
.footer .family-site-wrap .family-site-button.active {
  background-color: #EEF2F7;
}
.footer .family-site-wrap .family-site-button.active::before {
  background-color: #fff;
}
.footer .family-site-wrap .family-site-button.active::after {
  transform: translateY(-50%) rotate(-180deg);
}
.footer .family-site-wrap .family-site-list {
  background-color: #fff;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  border: 1px solid #ddd;
  position: absolute;
  bottom: 100%;
  margin-bottom: 10px;
  overflow-y: auto;
  left: 0;
  display: none;
  width: 100%;
  max-height: 300px;
}
.footer .family-site-wrap .family-site-list li {
  border-top: 1px solid #ddd;
}
.footer .family-site-wrap .family-site-list li:first-child {
  border-top: 0;
}
.footer .family-site-wrap .family-site-list a {
  display: block;
  padding: 13px;
  transition: 0.3s ease;
}
.footer .family-site-wrap .family-site-list a:hover {
  background-color: #EEF2F7;
  text-decoration: underline;
}
.footer .family-site-wrap .family-site-list.active {
  display: block;
}
.footer .privacy-link-list {
  margin-top: 10px;
  display: flex;
  gap: 5px 10px;
  flex-wrap: wrap;
}
.footer .privacy-link-list li {
  display: inline-block;
  vertical-align: top;
  font-size: 15px;
}
.footer .privacy-link-list .privacy {
  font-weight: 700;
  color: #052B57;
}
.footer .footer-copyright {
  margin-top: 40px;
  border-top: 1px solid #CDD1D5;
  padding: 30px 0;
  font-size: 15px;
  color: #464C53;
}
.footer .link-list {
  margin-top: 40px;
  display: flex;
  align-items: center;
}
.footer .link-list .link {
  position: relative;
  display: inline-block;
  font-size: 17px;
  position: relative;
  padding: 0 14px;
}
.footer .link-list .link::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  background-color: #ddd;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.footer .link-list .link:first-child {
  padding-left: 0;
}
.footer .link-list .link:first-child::before {
  display: none;
}
.footer .link-list .link img {
  height: 25px;
}

.mobile-gnb-wrap, .global-search, .header-mobile-button {
  display: none;
}

.mobile-gnb-wrap.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1;
  height: 100vh;
  overflow-y: auto;
}

/* modal popup */
.modal-wrap {
  position: fixed !important;
  left: 0;
  top: 0 !important;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
.modal-wrap > .f_wrapper {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  transform: translateY(-50%) translateX(-50%);
  padding: 40px;
  margin: auto;
  width: 95%;
  max-width: 1180px;
  max-height: 95vh;
  background-color: #FFFFFF;
  border-radius: 10px;
}
.modal-wrap.type2 > .f_wrapper {
  max-width: 600px;
}
.modal-wrap.type3 > .f_wrapper {
  max-width: 700px;
}
.modal-wrap.type4 > .f_wrapper {
  max-width: 1080px;
}
.modal-wrap.type5 > .f_wrapper {
  max-width: 845px;
}
.modal-wrap.type6 > .f_wrapper {
  max-width: 800px;
}
.modal-wrap.type7 > .f_wrapper {
  max-width: 1200px;
}
.modal-wrap.type8 > .f_wrapper {
  max-width: 1360px;
}
.modal-wrap .tit-h2, .modal-wrap .tit-h3, .modal-wrap .tit-h4 {
  position: relative;
  margin-bottom: 9px;
}
.modal-wrap .tit-h2::before, .modal-wrap .tit-h3::before, .modal-wrap .tit-h4::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 3px;
  height: 3px;
  background: #eee;
  border-radius: 3px;
}
.modal-wrap .modal-head {
  position: relative;
  text-align: center;
}
.modal-wrap .modal-head h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  color: #333;
}
.modal-wrap .modal-head h2.type2 {
  font-size: 24px;
}
.modal-wrap .modal-head h2 + p {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
}
.modal-wrap .modal-cont-wrap {
  box-sizing: border-box;
  border-radius: 2px;
  overflow: hidden;
  max-height: calc(95vh - 60px);
  overflow-y: auto;
  border-radius: 2px;
}
.modal-wrap .modal-cont-wrap h3 {
  margin: 0;
}
.modal-wrap .modal-cont {
  margin-top: 20px;
  min-height: 160px;
  box-sizing: border-box;
  height: 100%;
  font-size: 17px;
}
.modal-wrap .modal-cont .inner2 {
  margin: 0 auto;
  max-width: 780px;
}
.modal-wrap .modal-cont .cont-top {
  margin-bottom: 12px;
}
.modal-wrap .modal-cont .btn-block {
  margin-top: 30px;
}
.modal-wrap .modal-cont .cont-txt {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-top: 15px;
}
.modal-wrap .modal-cont .search-box {
  font-size: 14px;
}
.modal-wrap .modal-cont .search-box label {
  color: #333;
}
.modal-wrap .modal-cont .inp-group {
  margin: 0 -13px;
}
.modal-wrap .modal-cont .inp-group .inp {
  margin: 0 13px;
}
.modal-wrap .modal-cont .inp-group button {
  font-weight: 300;
}
.modal-wrap .modal-cont .board-search {
  display: flex;
}
.modal-wrap .modal-cont .board-search button {
  width: 100px;
}
.modal-wrap select.select:not(.ui-datepicker-year):not(.ui-datepicker-month) {
  max-width: 432px;
  height: 49px;
  font-size: 17px;
  color: #666;
  border: 1px solid #666;
  box-sizing: border-box;
  border-radius: 2px;
  background-color: #f8f8f8;
  width: 100%;
  padding-left: 16px;
}
.modal-wrap .modal-close {
  position: absolute;
  right: 40px;
  top: 40px;
  width: 30px;
  height: 30px;
  text-indent: -99999px;
  overflow: hidden;
  background: url("../images/common/ico_close2.png") no-repeat 50% 50%;
}
.modal-wrap .modal-basic {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin: 30px 0 0;
}
.modal-wrap .basic {
  padding-left: 0;
  color: #666;
}
.modal-wrap .gray-box {
  padding: 30px 45px;
}
.modal-wrap .tbl-view td {
  background-color: transparent;
}
.modal-wrap.on {
  display: block;
}
.modal-wrap.modal-type-img .f_wrapper {
  max-width: 1000px;
  width: auto;
  min-width: 200px;
}
.modal-wrap.modal-type-img .modal-cont-wrap {
  padding-bottom: 0;
}
.modal-wrap.modal-type-img .modal-cont {
  padding: 0;
}
.modal-wrap .cancel-btn {
  margin-top: 14px;
}
.modal-wrap .modal-btn-box {
  width: 100%;
  text-align: center;
  height: 58px;
}
.modal-wrap .popup-btn {
  width: 100%;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  height: 100%;
}
.modal-wrap .btn-box {
  margin: 38px -10px 0;
  text-align: center;
}
.modal-wrap .btn-box .btn {
  height: 40px;
  padding: 7px 10px;
  max-width: 160px;
  font-weight: 600;
  margin: 0 10px;
  width: 100%;
}
.modal-wrap .btn-box .btn.btn1 {
  background: #003586;
  border: 1px solid #003586;
  color: #fff;
}
.modal-wrap .btn-box .btn.btn1:hover {
  background-color: #062657;
}
.modal-wrap .btn-box .btn.btn2 {
  border: 2px solid #003586;
  color: #003586;
  background: none;
  width: 100%;
}
.modal-wrap .btn-box .btn.btn2:hover {
  background-color: #f0f1f7;
}
.modal-wrap .btn-box .btn.btn3 {
  background-color: #003586;
  color: #fff;
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-color: #fff;
  color: #003586;
  border: 2px solid #003586;
  z-index: 1;
}
.modal-wrap .btn-box .btn.btn3:hover {
  color: #003586;
}
.modal-wrap .btn-box .btn.btn3::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  box-sizing: border-box;
  border: 2px solid #003586;
  color: #003586;
  z-index: -1;
  transition: 0.3s ease;
}
.modal-wrap .btn-box .btn.btn3:hover::after {
  height: 100%;
  opacity: 1;
  background-color: #fff;
  border-color: #003586;
  color: #003586;
}
.modal-wrap .btn-box .btn.btn3:hover {
  color: #fff;
}
.modal-wrap .btn-box .btn.btn3::after {
  z-index: -1;
  background-color: #003586;
  border-width: 1px;
  top: -2px;
}
.modal-wrap .btn-box .btn.btn3:hover::after {
  background-color: #003586;
  border-width: 2px;
  top: 0;
}
.modal-wrap .btn-box .btn.btn4 {
  background-color: #003586;
  color: #fff;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.modal-wrap .btn-box .btn.btn4:hover {
  color: #003586;
}
.modal-wrap .btn-box .btn.btn4::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  box-sizing: border-box;
  border: 2px solid #003586;
  color: #003586;
  z-index: -1;
  transition: 0.3s ease;
}
.modal-wrap .btn-box .btn.btn4:hover::after {
  height: 100%;
  opacity: 1;
  background-color: #fff;
  border-color: #003586;
  color: #003586;
}
.modal-wrap .btn-box .btn.btn4:hover {
  border: 0;
}
.modal-wrap .pagination--text p {
  font-size: 16px;
  font-weight: 600;
}
.modal-wrap .pagination--text span {
  color: #333;
  font-size: 16px;
}

.modal-wrap.open {
  display: block;
}

/* width */
@media screen and (max-width: 1500px) {
  .header-logo {
    width: 200px;
  }
  .header-search {
    width: 400px;
  }
  .header-link .link-list > li {
    padding: 0 7px;
  }
  .header-gnb .gnb-1depth-item {
    margin-right: 5px;
  }
  .header-gnb .gnb-1depth-item > a {
    font-size: 16px;
    padding: 13px 28px 13px 10px;
  }
  .header-gnb .gnb-1depth-item > a::before {
    right: 5px;
  }
}
@media screen and (max-width: 1300px) {
  /*레이어 팝업*/
  .modal-wrap.popup-zone .swiper-slide a {
    display: block;
    transform: scale(0.8);
  }
  .modal-wrap.popup-zone .swiper-slide .img {
    width: 100%;
    height: 450px;
    border: 15px solid #fff;
    border-radius: 40px;
  }
  .modal-wrap.popup-zone .swiper-slide-active a {
    transform: scale(1);
  }
  .kohi-wrap .header {
    height: auto;
  }
  .kohi-wrap .header__blank-item {
    font-size: 14px;
  }
  .kohi-wrap .header__logo {
    width: 208px;
  }
}
@media screen and (max-width: 1200px) {
  .header-info-inner {
    gap: 0;
  }
  .header-gnb {
    display: none;
  }
  .header-search {
    display: none;
  }
  .header-mobile-link {
    display: inline-flex;
    margin-left: 15px;
  }
  .header-mobile-link .header-link-search {
    display: block;
  }
  .header-mobile-link .header-mobile-button {
    display: block;
  }
  .header-link .link-list > li {
    font-size: 14px;
  }
  /* 통합검색 */
  .header-search.active {
    display: block;
    position: absolute;
    max-width: 100%;
    width: 100%;
    top: 112px;
    left: 0;
    background-color: #fff;
    z-index: 1;
    padding: 20px 20px 40px;
    border-bottom: 1px solid #ddd;
    box-shadow: 10px 20px 10px 10px rgba(0, 0, 0, 0.15);
  }
  .header-search.active .search-input-box {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
  }
  .search-close-btn {
    display: block;
  }
  .footer .family-site-wrap .family-site {
    width: 220px;
  }
}
@media screen and (max-width: 900px) {
  .modal-wrap.popup-zone .swiper-container {
    overflow: visible;
  }
  .modal-wrap.popup-zone .swiper-slide a {
    display: block;
    transform: scale(1);
  }
  .modal-wrap.popup-zone .swiper__button--prev {
    left: -16px;
  }
  .modal-wrap.popup-zone .swiper__button--next {
    right: -16px;
  }
  .search.global-search {
    padding: 60px 0 20px;
  }
  .search.global-search .inner {
    width: 100%;
    padding: 0 20px;
  }
  .search.global-search .close {
    top: 10px;
  }
  .search.global-search .search-filtering__input-box {
    min-width: auto;
  }
  .search.global-search .search-filtering__input-button {
    font-size: 16px;
  }
  .search__tag-box {
    margin-top: 20px;
    gap: 10px;
  }
  .search__tag-title {
    font-size: 14px;
    min-width: 66px;
  }
  .search__tag-item {
    min-width: 60px;
  }
}
@media screen and (max-width: 768px) {
  .header-logo {
    width: 136px;
    height: 43px;
  }
  .header-info {
    height: 64px;
  }
  .header .dim {
    display: none;
  }
  .header-search.active {
    top: 64px;
  }
  .header-search .search-inp {
    font-size: 15px;
  }
  .header-link {
    display: none;
  }
  .header-mobile-link button {
    width: 53px;
    height: 40px;
    padding: 28px 0 0 0;
  }
  .header-mobile-link .header-link-search::before,
  .header-mobile-link .header-mobile-button::before {
    width: 16px;
    height: 16px;
    background-size: contain;
  }
  .footer {
    border-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .footer .family-site-wrap {
    position: relative;
    bottom: auto;
    top: 0;
    width: 100%;
  }
  .footer .family-site-wrap .family-site {
    width: 100%;
  }
  .footer .footer-logo {
    width: 136px;
    height: 42px;
  }
  .footer {
    background-color: #F0F0F0;
  }
  .footer > .inner {
    width: 100%;
  }
  .footer .footer-info {
    position: relative;
    max-width: 1380px;
    margin: 32px auto 0;
    width: 94%;
    box-sizing: border-box;
    padding: 0 0;
  }
  .footer .family-site-wrap .family-site-button {
    border-radius: 0;
    border: 1px solid #D8D8D8;
    border-left: 0;
    border-right: 0;
    height: 56px;
  }
  .footer .family-site-wrap .family-site-list {
    margin-bottom: 0;
    border-bottom: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
}
@media screen and (max-width: 600px) {
  /*레이어 팝업*/
  .modal-wrap.popup-zone .swiper-slide a {
    height: auto;
  }
  .modal-wrap.popup-zone .swiper-slide .img {
    position: relative;
    padding-bottom: 100%;
    height: auto;
    background-color: #fff;
    overflow: hidden;
  }
  .modal-wrap.popup-zone .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 390px) {
  .header-banner-txt {
    font-size: 12px;
  }
  .header {
    height: auto;
  }
  .header__inner {
    height: 64px;
  }
  .header__logo-box {
    left: 16px;
  }
  .header__logo {
    width: 160px;
    height: 30px;
  }
  .header__blank-wrap {
    display: none;
  }
  .footer .link-list {
    margin-top: 30px;
  }
  .footer .footer-copyright {
    padding: 15px 0 30px;
    margin-top: 15px;
  }
}