@charset "UTF-8";

/* header */
#header {
  position: sticky;
  top: 0;
  z-index: 999;
}

#header .header-top {
  height: 80px;
  background: #fff;
}

#header .header-top > .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
}

#header .header-top .mo-btn {
  display: flex;
  column-gap: 20px;
  align-items: center;
}

#header .header-top .mo-btn button {
  cursor: pointer;
}

#header .header-top .nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header .header-top .nav > .nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header .header-top .nav > .nav-item:not(:first-of-type)::after {
  position: absolute;
  width: 1px;
  height: 20px;
  background: #dbdbdb;
  display: block;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  content: "";
}

#header .header-top .nav > .nav-item > .nav-link {
  width: 100%;
  height: 100%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: #707070;
}

#header .header-top .nav > .nav-item:hover > .nav-link {
  color: #2941a1 !important;
  transition: all 0.2s;
}

#header .header-top .nav > .nav-item:hover > .nav-link svg path {
  fill: #fff;
}

#header .header-logo {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

#header .header-logo .logo-text {
  font-size: 28px;
  font-weight: 700;
  padding-bottom: 6px;
}

#header .header-logo img {
  width: 250px;
  margin-top: 0;
  margin-bottom: 0;
}

#header .header-bottom {
  background: #147f6f;
}

#header .header-bottom .text-white {
  color: #2941a1 !important;
  font-weight: 600 !important;
}

#header .header-nav {
  justify-content: flex-start !important;
}

#header .header-nav-main {
  width: 100%;
}

#header .header-nav-main .nav {
  width: 100%;
  display: flex;
  align-items: center;
}

#header .header-nav-main .nav > li {
  position: relative;
  width: calc(100% / 3);
}

#header .header-nav-main .nav > li > a {
  width: 100%;
  display: flex;
  color: #fff;
  font-size: 21px;
  font-weight: 500;
  padding: 18px 0;
  justify-content: center;
  border-radius: 0;
}
#header .header-nav-main .nav > li.active > a,
#header .header-nav-main .nav > li > a:hover {
  background: #2941a1;
  transition: all 0.2s;
}

#header .header-top .nav > .nav-item.nav-user svg,
#header .header-top .nav > .nav-item.nav-login svg {
  display: none;
}

#header .header-top .nav > .nav-item.nav-login p {
  color: #707070;
}

#header .header-top .nav > .nav-item.nav-sitemap {
  height: 44px;
}

#header .header-top .nav > .nav-item.nav-sitemap > .nav-link {
  column-gap: 6px;
  border: 1px solid #2941a1;
  border-radius: 40px;
  padding: 3px 20px;
}

#header .header-top .nav > .nav-item.nav-sitemap > .nav-link p {
  color: #2941a1;
  font-size: 18px;
}

#header .header-top .nav > .nav-item.nav-sitemap:hover > .nav-link {
  border: 1px solid #2941a1;
  background: #2941a1;
  transition: all 0.2s;
}

#header .header-top .nav > .nav-item.nav-sitemap:hover > .nav-link p {
  color: #fff;
  transition: all 0.2s;
}

#header .header-top .nav > .nav-item.nav-sitemap > .nav-link svg {
  display: none;
  width: 22px;
  height: 22px;
}

.nav-gnb {
  position: relative;
}

.nav-gnb .header-bg {
  position: absolute;
  width: 100%;
  height: 0;
  background: #f2f8ff;
  top: 61px;
  transition: all 0.4s;
}

.nav-gnb .nav {
  display: flex;
  justify-content: end;
}

.nav-gnb .nav .sub-menu .sub-downmenu {
  position: absolute;
  background: #f2f8ff;
  width: 100%;
  height: 0;
  top: 61px;
  overflow: hidden;
  transition: all 0.4s;
  box-sizing: border-box;
}

.nav-gnb:hover .nav .sub-menu .sub-downmenu {
  height: 374px;
}

.nav-gnb:hover .header-bg {
  height: 374px;
}

.nav-gnb .nav .sub-menu .sub-downmenu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  padding: 12px;
  color: #111 !important;
  line-height: 1.42857143;
}

.nav-gnb .nav .sub-menu .sub-downmenu li:first-of-type a {
  padding: 18px 24px 14px 24px !important;
}

.nav-gnb .nav .sub-menu .sub-downmenu li:last-of-type a {
  padding: 14px 24px 18px 24px !important;
}

.nav-gnb .nav .sub-menu .sub-downmenu li:hover > a,
.nav-gnb .nav .sub-menu .sub-downmenu li:focus > a {
  transform: none;
  color: #2941a1 !important;
  font-weight: 600;
  transition: all 0.2s;
}

#header .header-btn-collapse-nav {
  display: none;
  background: transparent;
  color: #1c1f21;
  outline: 0;
  border: none;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 16px 0;
}

#header .header-btn-collapse-nav .hamburguer span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #1c1f21;
  transition: ease width 300ms;
  transform: translateY(-50%);
}

#header .header-btn-collapse-nav .hamburguer span:nth-child(1) {
  top: 30%;
}

#header .header-btn-collapse-nav .hamburguer span:nth-child(2) {
  transition-delay: 100ms;
}

#header .header-btn-collapse-nav .hamburguer span:nth-child(3) {
  top: 70%;
  transition-delay: 200ms;
}

#header .header-btn-collapse-nav .close {
  opacity: 0;
  transition: ease all 300ms;
}

#header .header-btn-collapse-nav .close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 1px;
  background: #1c1f21;
  transition: ease all 300ms;
  transform-origin: 50% 0;
}

#header .header-btn-collapse-nav .close span:nth-child(1) {
  transform: translateX(-50%) rotate(45deg);
}

#header .header-btn-collapse-nav .close span:nth-child(2) {
  transform: translateX(-50%) rotate(-45deg);
}

#header .header-btn-collapse-nav.active .hamburguer {
  opacity: 0;
}

#header .header-btn-collapse-nav.active .hamburguer span {
  width: 0;
}

#header .header-btn-collapse-nav.active .close {
  opacity: 1;
  transition: ease all 300ms;
}

#header .header-btn-collapse-nav.active .close span {
  width: 80%;
  transition: ease all 300ms;
}

#header .header-btn-collapse-nav.active .close span:nth-child(2) {
  transition-delay: 300ms;
}

/* 고객센터 */
.main-service-section .main-container > div:not(.tit) {
  display: flex;
  column-gap: 30px;
}

.main-service-section .main-container > div:not(.tit) a {
  display: block;
  border-radius: 12px;
  background: #fff;
  padding: 40px 130px 40px 50px;
}

.main-service-section .main-container > div:not(.tit) a .info {
  word-break: keep-all;
}

.main-service-section .main-container > div:not(.tit) a .info h2 {
  font-size: 30px;
  font-weight: 700;
}

.main-service-section .main-container > div:not(.tit) a .info span {
  color: #111;
  font-size: 24px;
  padding-bottom: 2px;
  font-weight: 500;
  display: inline-block;
}

.main-service-section .main-container > div:not(.tit) a .info p {
  color: #707070;
}

.main-service-section .main-container > div:not(.tit) > a {
  flex-shrink: 0;
}

.main-service-section .main-container > div:not(.tit) > a.kakao {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 20px;
  height: 333px;
  background: #fff9e7;
  padding: 60px 50px;
  cursor: pointer;
}

.main-service-section .main-container > div:not(.tit) > a.kakao .info p {
  text-align: center;
  padding-top: 4px;
  display: block;
}

.main-service-section .main-container > div:not(.tit) > a.kakao:hover {
  background: #fae100;
  transition: all 0.2s;
}

.main-service-section .main-container > div:not(.tit) > a.kakao svg path {
  fill: #3c1d1e;
}

.main-service-section .main-container > div:not(.tit) > a.kakao svg {
  width: 85px;
  height: 85px;
}

.main-service-section .main-container > div:not(.tit) > a.location {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding: 40px 50px;
  background: #e9fcf8;
}

.main-service-section .main-container > div:not(.tit) > a.location svg {
  width: 70px;
  height: 70px;
}

.main-service-section .main-container .location_multi {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
}

.main-service-section .main-container .location_multi > a.location {
  display: flex;
  flex-direction: column;
  height: 100%;
  row-gap: 10px;
  padding: 15px;
  background: #e9fcf8;
}

.main-service-section .main-container .location_multi > a.location svg {
  width: 60px;
  height: auto;
}

.main-service-section .main-container > div:not(.tit) .right {
  width: 100%;
  max-width: 492px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.main-service-section .main-container > div:not(.tit) .right li a {
  position: relative;
  background: #f2f8ff;
}

.main-service-section
  .main-container
  > div:not(.tit)
  .right
  li
  a
  div:not(.info) {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translate(0, -50%);
}

.main-service-section
  .main-container
  > div:not(.tit)
  .right
  li
  a
  div:not(.info)
  svg {
  width: 70px;
  height: 70px;
}

.main-link-section {
  padding: 40px 0;
  background: #f5f5f5;
}

.main-link-section .inner ul {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.main-link-section .inner ul li {
  width: calc(100% / 5);
  height: 90px;
  background: #fff;
  border-radius: 12px;
}

.main-link-section .inner ul li a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 30px;
  padding: 0 20px;
}

.main-link-section .inner ul li h2 {
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
}

.main-link-section .inner ul li:nth-child(1) h2 br {
  display: none;
}

.main-link-section .inner ul li:hover {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transition: all 0.2s;
}

.main-link-section .inner ul li a img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

/* footer */
.footer_info {
  background-color: #111;
  padding: 50px 0;
}

.footer_info .policy_txt {
  padding-bottom: 30px;
  border-bottom: 1px solid rgb(255, 255, 255, 0.2);
}

.footer_info .policy_txt ul li {
  display: inline-block;
  margin-right: 30px;
}

.footer_info .policy_txt ul li a {
  color: #aaa;
}

.footer_info .policy_txt ul li a:hover {
  color: #147f6f !important;
}

.footer_info .policy_txt ul li a.white {
  color: #fff;
}

.footer_info .footer_txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}

.footer_info .footer_txt .left {
}

.footer_info .footer_txt .left .logo {
  display: block;
  margin-bottom: 10px;
}

.footer_info .footer_txt .left .logo img {
  width: 200px;
}

.footer_info .footer_txt .left p {
  display: inline-block;
  color: #aaa !important;
  margin-right: 30px;
}

.footer_info .footer_txt .left p.white {
  color: #fff;
}

.footer_info .footer_txt .left p:nth-child(6),
.footer_info .footer_txt .left p:last-child {
  display: block;
  margin-top: 15px;
}

.footer_info .footer_copyright {
  color: #aaa;
}

/* quick-menu */
.quick-menu {
  position: fixed;
  right: 2vw;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.2s;
}

.quick-menu li {
  width: 112px;
  height: 182px;
}

.quick-menu li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 8px;
  border: 1px solid #dbdbdb;
}

.quick-menu li a img {
  width: 72px;
  height: auto;
  flex-shrink: 0;
}

.quick-menu .hover {
  display: none;
}

.quick-menu li a:hover {
  background: #125ba2;
  border: 1px solid #125ba2;
}

.quick-menu li a:hover .hover {
  display: block;
}

.quick-menu li a:hover .default {
  display: none;
}

/* 해체공사감리교육 내용 */
.dismantlingconstruct-section {
  margin-bottom: 40px;
}

.dismantlingconstruct-section ._bullet.important {
  margin-top: 14px;
}

.dismantlingconstruct-section ._bullet.important p {
  color: #ff0000;
}

.dismantlingconstruct-section .schedule {
  width: 100%;
}

.dismantlingconstruct-section .schedule > span {
  font-size: 30px;
  font-weight: 600;
}

.dismantlingconstruct-section .schedule ul {
  display: flex;
  flex-wrap: wrap;
}

.dismantlingconstruct-section .schedule ul li {
  position: relative;
  height: 42px;
  border-bottom: 1px solid #d2d2d2;
  border-right: 1px solid #d2d2d2;
}

.dismantlingconstruct-section .schedule ul li:not(.multi) {
  width: calc(100% / 5);
}

.dismantlingconstruct-section .schedule ul li.multi {
  width: calc(100% / 5 * 3);
}

.dismantlingconstruct-section .schedule ul li:not(.day) {
  height: 64px;
}

.dismantlingconstruct-section .schedule ul li:nth-of-type(5n + 1),
.dismantlingconstruct-section .schedule ul li:last-of-type {
  border-left: 1px solid #d2d2d2;
}

.dismantlingconstruct-section .schedule ul li:last-of-type {
  border-right: 1px solid #d2d2d2;
  border-left: 0;
}

.dismantlingconstruct-section .schedule ul li.day {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 2px solid #111;
}

.dismantlingconstruct-section .schedule ul li.bg_navy {
  background: #f2f8ff;
}

.dismantlingconstruct-section .schedule ul li.bg_green {
  background: #e9fcf8;
}

.dismantlingconstruct-section .schedule ul li.bg_gray {
  background: #f5f5f5;
}

.dismantlingconstruct-section .schedule ul li.day span {
  font-size: 20px;
  font-weight: 700;
}

.dismantlingconstruct-section .schedule ul li:not(.day) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dismantlingconstruct-section .schedule ul li .date {
  position: absolute;
  top: 12px;
  left: 12px;
  font-weight: 700;
  font-size: 24px;
}

.dismantlingconstruct-section .schedule ul li p {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

.dismantlingconstruct-section .schedule .fixed-class {
  width: 100%;
  display: flex;
  column-gap: 20px;
  padding-top: 20px;
}

.dismantlingconstruct-section .schedule .fixed-class > div {
  width: 70%;
}

.dismantlingconstruct-section .schedule .fixed-class > div:first-of-type {
  width: 30%;
}

.dismantlingconstruct-section .schedule .fixed-class > div ul li.day,
.dismantlingconstruct-section .schedule .fixed-class > div ul li:not(.multi) {
  width: calc(100% / 2);
}

.dismantlingconstruct-section .schedule .fixed-class .busan .flex {
  width: 100%;
  display: flex;
}

.dismantlingconstruct-section .schedule .fixed-class > div ul li.bg_green {
  border-left: 1px solid #d2d2d2;
}

.dismantlingconstruct-section .schedule .fixed-class > div ul li.multi {
  width: 100%;
}

.dismantlingconstruct-section .schedule .fixed-class .busan .flex > div {
  width: 50%;
  display: flex;
}

.dismantlingconstruct-section .schedule .fixed-class .busan .flex > div ul {
  width: 100%;
}

.dismantlingconstruct-section
  .schedule
  .fixed-class
  .busan
  .flex
  > div.left
  ul
  li:nth-of-type(1),
.dismantlingconstruct-section
  .schedule
  .fixed-class
  .busan
  .flex
  > div.left
  ul
  li:nth-of-type(3),
.dismantlingconstruct-section
  .schedule
  .fixed-class
  .busan
  .flex
  > div.right
  ul
  li:nth-of-type(1),
.dismantlingconstruct-section
  .schedule
  .fixed-class
  .busan
  .flex
  > div.right
  ul
  li:nth-of-type(3) {
  border-left: 1px solid #147f6f;
}

.dismantlingconstruct-section .schedule .fixed-class .busan .flex > div > span {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  background: #147f6f;
  text-align: center;
  color: #fff;
  word-break: keep-all;
}

/* 반응형 */
@media screen and (max-width: 1440px) {
  .quick-menu {
    display: none;
  }
}

@media screen and (max-width: 1350px) {
  .main-service-section .main-container > div:not(.tit) {
    flex-wrap: wrap;
    row-gap: 30px;
  }

  .main-service-section .main-container .location_multi,
  .main-service-section .main-container .location_multi > a.location {
    width: 100%;
  }

  .main-service-section .main-container > div:not(.tit) > a.kakao {
    width: 400px;
  }

  .main-service-section .main-container > div:not(.tit) > a.location {
    width: 100%;
    flex-direction: row;
    column-gap: 20px;
  }

  .main-service-section
    .main-container
    > div:not(.tit)
    > a.location
    .info:nth-child(2) {
    padding-right: 60px;
  }

  .main-service-section .main-container > div:not(.tit) .right {
    width: calc(100% - 430px);
    max-width: 100%;
  }

  .main-link-section .inner ul li:nth-child(1) h2 br {
    display: block;
  }
}

@media screen and (max-width: 1200px) {
  #header .header-top {
    border-bottom: 1px solid #cacacc;
  }

  #header .header-nav-main {
    position: absolute;
    top: 99%;
    right: 0;
    left: 0;
    background: transparent;
    margin-top: 0px;
    z-index: 1;
  }

  #header .header-nav-main:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    background: #252a2c;
    z-index: -1;
    transform: translateX(-50%);
  }

  #header .header-btn-collapse-nav {
    display: flex;
    position: relative;
    z-index: 1;
  }

  .header-nav-main nav {
    max-height: 0; /* 기본적으로 숨김 */
    overflow: hidden; /* 내용이 넘치지 않도록 설정 */
    transition: max-height 0.5s ease; /* 부드러운 전환 효과 */
  }

  .header-nav-main nav.open {
    max-height: 100vh; /* 최대 높이를 제한하여 자연스럽게 나타남 */
    overflow: visible;
  }

  #header .header-nav-main .nav {
    flex-wrap: wrap;
    padding: 0;
  }

  #header .header-nav-main .nav > li {
    width: 100%;
  }

  #header .header-nav-main .nav > li > a {
    padding: 22px !important;
    justify-content: flex-start;
  }

  .nav-gnb .header-bg {
    display: none;
  }

  .nav-gnb .nav .sub-menu .sub-downmenu {
    position: revert;
    height: auto;
  }

  .nav-gnb .nav .sub-menu .sub-downmenu.open {
    max-height: 500px; /* 충분히 큰 값으로 설정 */
  }

  .nav-gnb:hover .nav .sub-menu .sub-downmenu {
    height: auto;
  }

  .nav-gnb .nav .sub-menu .sub-downmenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  .nav-gnb .nav .sub-menu .sub-downmenu li a {
    justify-content: flex-start;
    padding: 12px 24px !important;
  }

  .main-service-section .main-container > div:not(.tit) {
    row-gap: 20px;
    column-gap: 20px;
  }
  .main-service-section .main-container > div:not(.tit) > a.kakao {
    width: 320px;
    padding: 50px 40px;
  }

  .main-service-section .main-container > div:not(.tit) a {
    padding: 36px 110px 36px 40px;
  }

  .main-service-section .main-container > div:not(.tit) .right {
    width: calc(100% - 350px);
  }

  .main-service-section .main-container > div:not(.tit) > a.location {
    padding: 36px 40px;
  }

  .main-service-section .main-container > div:not(.tit) a .info span {
    font-size: 20px;
  }

  .main-service-section .main-container > div:not(.tit) a .info h2 {
    font-size: 28px;
  }

  .main-service-section .main-container > div:not(.tit) a .info p {
    font-size: 16px;
  }

  .main-service-section
    .main-container
    > div:not(.tit)
    .right
    li
    a
    div:not(.info) {
    right: 40px;
  }

  .main-service-section .main-container > div:not(.tit) > a.kakao svg {
    width: 72px;
    height: 72px;
  }

  .main-service-section .main-container > div:not(.tit) > a.location svg,
  .main-service-section
    .main-container
    > div:not(.tit)
    .right
    li
    a
    div:not(.info)
    svg {
    width: 64px;
    height: 64px;
  }

  .main-service-section
    .main-container
    > div:not(.tit)
    > a.location
    .info:nth-child(2) {
    padding-right: 40px;
  }

  .main-link-section .inner ul {
    column-gap: 30px;
  }

  .main-link-section .inner ul li a {
    align-items: flex-start;
    flex-direction: column;
    row-gap: 20px;
  }

  .main-link-section .inner ul li h2 {
    font-size: 26px;
  }

  .main-link-section .inner ul li h2 br,
  .main-link-section .inner ul li:nth-child(1) h2 br {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .main-link-section .inner ul {
    column-gap: 12px;
  }

  .main-link-section .inner ul li {
    height: 78px;
  }

  .main-link-section .inner ul li h2 {
    word-break: keep-all;
  }
}

@media screen and (max-width: 991px) {
}

@media screen and (max-width: 917px) {
  #header .header-top .nav > .nav-item > .nav-link {
    padding: 0 20px;
  }

  .main-service-section .main-container > div:not(.tit) > a.kakao {
    width: 280px;
  }

  .main-service-section .main-container > div:not(.tit) .right {
    width: calc(100% - 300px);
  }

  .main-service-section .main-container > div:not(.tit) > a.kakao {
    padding: 40px 30px;
  }

  .main-service-section .main-container > div:not(.tit) a {
    padding: 32px 110px 32px 40px;
  }

  .main-service-section .main-container > div:not(.tit) > a.location {
    padding: 32px 40px;
  }

  .main-service-section
    .main-container
    > div:not(.tit)
    > a.location
    .info:nth-child(2) {
    padding-right: 20px;
  }

  .main-service-section .main-container > div:not(.tit) > a.location svg,
  .main-service-section
    .main-container
    > div:not(.tit)
    .right
    li
    a
    div:not(.info)
    svg {
    width: 60px;
    height: 60px;
  }

  .main-service-section
    .main-container
    > div:not(.tit)
    .right
    li
    a
    div:not(.info) {
    right: 30px;
  }
}

@media screen and (max-width: 768px) {
  #header .header-logo .logo-text {
    font-size: 20px;
  }

  #header .header-top .mo-btn {
    column-gap: 10px;
  }

  #header .header-logo img {
    width: 220px;
  }

  #header .header-top .nav > .nav-item > .nav-link {
    padding: 0;
  }

  #header .header-top .nav > .nav-item.nav-login svg {
    display: block;
    width: 24px;
    height: 24px;
  }

  #header .header-top .nav > .nav-item.nav-login svg path {
    fill: #707070;
  }

  #header .header-top .nav > .nav-item.nav-login:hover svg path {
    fill: #2941a1;
  }

  #header .header-top .nav > .nav-item.nav-login {
    padding-left: 20px;
  }

  #header .header-top .nav > .nav-item.nav-login p {
    display: none;
  }

  #header .header-top .nav > .nav-item:not(:first-of-type)::after {
    display: none;
  }

  #header .header-top .nav > .nav-item.nav-sitemap {
    height: auto;
  }

  #header .header-top .nav > .nav-item.nav-sitemap > .nav-link {
    padding: 0;
    border-radius: 0;
    border: 0;
  }

  #header .header-top .nav > .nav-item.nav-sitemap > .nav-link p {
    color: #707070;
  }

  #header .header-top .nav > .nav-item.nav-sitemap:hover > .nav-link {
    border: 0;
    background: transparent;
  }

  #header .header-top .nav > .nav-item.nav-sitemap:hover > .nav-link p {
    color: #2941a1;
  }

  .main-service-section .main-container > div:not(.tit) > a.kakao {
    width: 100%;
  }

  .main-service-section .main-container > div:not(.tit) .right {
    width: 100%;
  }

  .main-service-section .main-container > div:not(.tit) > a.location {
    flex-direction: column;
  }

  .main-service-section
    .main-container
    > div:not(.tit)
    > a.location
    .info:nth-child(2) {
    padding-right: 0;
  }

  .main-service-section .main-container .location_multi {
    width: 100%;
    flex-direction: column;
    row-gap: 20px;
  }

  .main-service-section .main-container .location_multi > a.location {
    width: 100%;
  }

  .main-service-section .main-container .location_multi > a.location svg {
    width: auto;
    height: 64px;
  }

  .main-link-section {
    padding: 40px 0;
  }

  .main-link-section .inner {
    column-gap: 60px;
  }

  .main-link-section .inner ul {
    flex-wrap: wrap;
    gap: 12px;
  }

  .main-link-section .inner ul li {
    width: calc(100% / 2 - 6px);
  }

  .footer_info {
    padding: 30px 0;
  }

  .footer_info .policy_txt {
    padding-bottom: 10px;
  }

  .footer_info .policy_txt ul li {
    margin-right: 20px;
  }

  .footer_info .policy_txt ul li a {
    font-size: 14px;
  }

  .footer_info .footer_txt {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 20px 0;
  }

  .footer_info .footer_txt .left .logo img {
    width: 180px;
  }

  .footer_info .footer_txt .left p {
    font-size: 14px;
  }

  .footer_info .footer_txt .left p:last-child {
    margin-top: 0;
  }

  .footer_info .footer_txt .right {
    margin-bottom: 10px;
  }

  .footer_info .footer_txt .right img {
    max-width: 70%;
  }

  .footer_info .footer_copyright {
    font-size: 14px;
  }
}

@media screen and (max-width: 600px) {
  #header .header-logo .logo-text {
    font-size: 3vw;
    padding-bottom: 0;
    word-break: keep-all;
  }

  #header .header-logo img {
    width: 40vw;
  }

  #header .header-bottom .inner {
    padding: 0;
  }

  #header .header-nav-main .nav > li > a {
    font-size: 20px;
  }

  #header .header-top .nav > .nav-item.nav-sitemap > .nav-link p {
    font-size: 3vw;
    word-break: keep-all;
    text-align: center;
  }
}

@media screen and (max-width: 500px) {
  #header .header-top {
    height: 16vw;
  }

  #header .header-top > .inner {
    column-gap: 2vw;
  }

  #header .header-logo {
    column-gap: 2vw;
  }

  #header .header-logo .logo-text {
    font-size: 3.4vw;
  }

  #header .header-top .mo-btn {
    column-gap: 3vw;
  }

  #header .header-top .nav > .nav-item.nav-user p {
    font-size: 3vw;
  }

  #header .header-top .nav > .nav-item.nav-login {
    padding-left: 2.5vw;
  }

  #header .header-top .nav > .nav-item.nav-user p {
    display: none;
  }

  #header .header-top .nav > .nav-item.nav-user svg {
    display: block;
    width: 5vw;
    height: 5vw;
  }

  #header .header-top .nav > .nav-item.nav-login svg {
    width: 4vw;
    height: 4vw;
  }

  #header .header-top .nav > .nav-item.nav-sitemap > .nav-link svg {
    width: 4.6vw;
    height: 4.6vw;
  }

  #header .header-top .nav > .nav-item.nav-sitemap > .nav-link svg {
    display: block;
  }

  #header .header-top .nav > .nav-item.nav-sitemap > .nav-link p {
    display: none;
  }

  #header .header-top .nav > .nav-item > .nav-link svg path {
    fill: #707070;
  }

  #header .header-top .nav > .nav-item:hover > .nav-link svg path {
    fill: #2941a1;
  }

  .main-link-section .inner {
    column-gap: 7vw;
  }

  #header .header-top .nav > .nav-item > .nav-link {
    padding: 0;
    font-size: 17px;
    word-break: keep-all;
  }
}

@media screen and (max-width: 375px) {
  .main-service-section
    .main-container
    > div:not(.tit)
    .right
    li
    a
    div:not(.info) {
    position: revert;
    transform: none;
    margin-bottom: 20px;
    text-align: center;
  }

  .main-service-section .main-container > div:not(.tit) a,
  .main-service-section .main-container > div:not(.tit) > a.location {
    padding: 30px;
  }

  .main-service-section
    .main-container
    > div:not(.tit)
    > a.location
    div:not(.info) {
    text-align: center;
  }

  .main-service-section .main-container > div:not(.tit) a .info h2 {
    font-size: 26px;
  }

  .main-service-section
    .main-container
    .location_multi
    > a.location
    > div:first-of-type {
    text-align: center;
  }
}

@media screen and (max-width: 340px) {
  #header .header-nav-main .nav > li > a {
    font-size: 18px;
    padding: 16px 0;
  }
}
