:root {
  --main-color: #4787C7;
  --bg-color: #F9F9F9;
  --black-color: #2A2A2A;
  --sub-txt-color-01: #555555;
  --sub-txt-color-02: #777777;
  --border-color: #D9D9D9;
}
* {
  box-sizing: border-box;
  /*
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  */
  -webkit-tap-highlight-color : transparent;
}
*::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
*::-webkit-scrollbar-thumb {
  height: 10%;
  background: var(--main-color);
  border-radius: 10px;
}
*::-webkit-scrollbar-track {
  background: rgba(33, 122, 244, .1);
}
html {
  scroll-behavior : smooth;
}
body {
  font-family: "Pretendard", "Open Sans";
  position: relative;
}

/*공통*/
.wrap {
  width: 100%;
  max-width: 1888px;
  margin: 0 auto;
}
.wrap-sm {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.top-btn {
  position: fixed;
  bottom: 8px;
  right: 8px;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--main-color);
  cursor: pointer;
  z-index: 98;
}
.top-btn img {
  width: 24px;
  opacity: .8;
}

/*header*/
#ham_btn {
    display: none;
}
#ham_btn + label {
  position: relative;
  display: block;
  width: 42px;
  height: 26px;
  cursor: pointer;
  z-index: 10;
}
#ham_btn + label > span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 5px;
  transition: all 300ms;
}
.header-wrap.on #ham_btn + label > span {
    background-color: var(--black-color);
}
.header-wrap.hover-on #ham_btn + label > span {
    background-color: var(--black-color);
}
#ham_btn:checked + label > span:nth-child(1) {
  top: 50%;
  transform: translate(0, -50%);
  transform: rotate(45deg);
}
#ham_btn + label > span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}
#ham_btn:checked + label > span:nth-child(2) {
  opacity: 0;
}
#ham_btn + label > span:nth-child(3) {
  bottom: 0;
  background-color: var(--main-color) !important;
}
#ham_btn:checked + label > span:nth-child(3) {
  top: 50%;
  transform: translate(0, -50%);
  transform: rotate(-45deg);
}


.header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 80px;
    transition: .1s ease-in-out;
}
.header-wrap.on {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
}
.header-wrap.hover-on {
    background-color: #fff;
    height: 230px;
}
.header-wrap .container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: 1888px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.header-wrap .h-logo {
    width: 250px;
    height: 60px;
    background-image: url('../images/logo/logo_wc_new.png');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}
.header-wrap.on .h-logo {
    background-image: url('../images/logo/logo_mc_new.png');
}
.header-wrap.hover-on .h-logo {
    background-image: url('../images/logo/logo_mc_new.png');
}
.header-wrap.hover-on .gnb {
    gap: 80px;
    transition: .2s ease-in-out;
}
.header-wrap .fixed-area {
    height: 80px;
}
.gnb {
    display: flex;
    align-items: center;
    gap: 48px;
    transition: .2s ease-in-out;
}
.gnb > li {
    display: flex;
    flex-direction: column;
    position: relative;
}
.gnb > li::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--main-color);
  transition: .2s ease-in-out;
}
.gnb > li:hover::after {
    width: 100%;
    transition: .2s ease-in-out;
}
.gnb > li > a {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    transition: .2s ease-in-out;
}
.header-wrap.on .gnb > li > a {
    color: var(--black-color);
}
.header-wrap.hover-on .gnb > li > a {
    color: var(--black-color);
}
.gnb > li:hover > a {
    color: var(--sub-txt-color-02);
}
.header-wrap.on .gnb > li:hover > a {
    color: var(--sub-txt-color-02);
}

.header-wrap.hover-on .gnb-sub {
    display: flex;
}
.gnb-sub {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    display: none;
}
.gnb-sub > li > a {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    white-space: nowrap;
}
.header-wrap.hover-on .gnb-sub > li:hover > a {
    color: var(--sub-txt-color-02);
}


.rt-area {
    display: flex;
    align-items: center;
    gap: 24px;
}
.rt-area .lang-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 4px;
    position: relative;
}
.rt-area .lang-btn .lang-sub {
    width: 100%;
    position: absolute;
    top: 100%;
    display: none;
    margin-top: 8px;
}
.rt-area .lang-btn .lang-sub .box {
    display: flex;
    padding: 6px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    border: 1px solid var(--border-color);
}
.rt-area .lang-btn .lang-sub .box > span {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--sub-txt-color-01);
}
.rt-area .lang-btn .lang-sub .box:hover > span {
    color: var(--sub-txt-color-02);
}
.rt-area .lang-btn .lang-sub .box > img {
    width: 14px;
    transform: rotate(-90deg);
}
.rt-area .lang-btn > span {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.header-wrap.on .rt-area .lang-btn > span {
    color: var(--black-color);
}
.header-wrap.hover-on .rt-area .lang-btn > span {
    color: var(--black-color);
}
.rt-area .lang-btn > img {
    width: 14px;
}



.all-gnb {
    width: 100%;
    height: 100vh;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 0 8px;
    display: none;
}
.all-gnb .tp {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.all-gnb .tp .all-logo {
    display: block;
    width: 250px;
    height: 60px;
}
.all-gnb .tp .all-logo img {
    width: 100%;
    height: 100%;
}
.all-gnb .box {
    width: 100%;
    display: flex;
    gap: 48px;
    padding: 48px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.all-gnb .box .lt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    order: 1;
    flex: 1;
}
.all-gnb .box .wc-txt {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.all-gnb .box .wc-txt p:first-child {
    font-size: 38px;
    font-weight: 700;
    color: var(--black-color);
    line-height: 1.3;
}
.all-gnb .box .wc-txt p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    line-height: 1.5;
}
.all-gnb .box .lt .info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.all-gnb .box .lt .info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--sub-txt-color-02);
}
.all-gnb .box .lt .info span::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: var(--main-color);
}
.all-gnb .box .lt .info span b {
    font-weight: 700;
    color: var(--black-color);
    margin-right: 8px;
}

.gnb-grid {
    flex: 1;
    order: 2;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}
.gnb-grid .item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 16px;
    border-bottom: 1px solid var(--border-color);
}
.gnb-grid .item:last-child {
    border-bottom: none;
}
.gnb-grid .item .nm {
    font-size: 28px;
    font-weight: 600;
    color: var(--black-color);
    display: flex;
    align-items: flex-end;
    gap: 12px;
}
.gnb-grid .item .nm::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: var(--main-color);
}
.gnb-grid .item .sub {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    letter-spacing: -1px;
}
.gnb-grid .item a {
    display: block;
    font-size: 18px;
    color: var(--sub-txt-color-02);
}
.gnb-grid .item a:hover {
    color: var(--sub-txt-color-01);
}


/*footer*/
footer {
    border-top: 1px solid var(--border-color);
    margin-top: 100px;
}
.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 48px 0;
}
.footer-wrap .info-area {
    display: flex;
    align-items: flex-start;
    gap: 100px;
}
.footer-wrap .info-area .f-logo {
    width: 300px;
}
.footer-wrap .info-area .f-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer-wrap .info-area .info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-wrap .info-area .info .item {
    display: flex;
    align-items: center;
    gap: 24px;
}
.footer-wrap .info-area .info .item span:first-child {
    display: flex;
    align-items: center;
    min-width: 75px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
}
.footer-wrap .info-area .info .item span:first-child::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: var(--main-color);
    margin-right: 8px;
}
.footer-wrap .info-area .info .item span:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.footer-wrap .copy {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
/*메인*/
.main-banner {
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  position: relative;
}
.main-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.main-slider .swiper-slide .img-box {
    width: 100%;
    height: 100%;
    position: relative;
}
.main-slider .swiper-slide .img-box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
}
.main-slider .swiper-slide .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-slider .swiper-slide .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.main-slider .swiper-slide .txt .txt-hidden {
  overflow: hidden;
}
.main-slider .swiper-slide .txt .txt-hidden span {
  display: block;
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  text-align: center;
  word-break: keep-all;
}
.main-slider .swiper-slide.swiper-slide-active .txt .txt-hidden span {
  animation: txt-over 1.5s ease-in-out;
  animation-fill-mode: forwards;
}
.main-slider .swiper-slide .txt .sm-txt {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    text-align: center;
}

@keyframes txt-over {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}

/*Scorll Down*/
.scroll-downs {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-downs p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 300;
}
.mousey {
  width: 2px;
  padding: 2px 6px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  opacity: 0.75;
  box-sizing: content-box;
  margin: 0 auto 8px;
}
.scroller {
  width: 2px;
  height: 6px;
  border-radius: 25%;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}
@keyframes scroll {
  0% { opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0;}
}

.control {
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
}
.control .navigation {
  display: flex;
  align-items: center;
  gap: 12px;
}
.control .navigation > span {
  cursor: pointer;
}
.control .navigation > span img {
  width: 6px;
}
.control .navigation > button img {
  width: 13px;
}
.pager {
    min-width: 53px;
  display: inline-block;
  width: max-content;
  position: relative;
  top: unset;
  left: unset;
  bottom: unset;
  color: #fff;
}
.swiper-pagination-total {
  color: #ddd;
}
.swiper-progress-bar {
  position: relative;
  width: 100px;
  display: block;
  z-index: 1;
  height: 3px;
  .slide_progress-bar {
    position: absolute;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    width: auto;
    clear: both;
    opacity: 0;
    left: 0;
    right: 0;
    &:after {
      position: absolute;
      top: 0;
      left: 0;
      background: var(--main-color);
      height: 100%;
      width: 0;
      content: "";
      transition: 0.1s width linear;
    }
  }
  &.active {
    .slide_progress-bar {
      opacity: 1;
    }
  }
  &.animate {
    .slide_progress-bar {
      &:after {
        transition: width linear;
        transition-delay: unset;
        width: 100%;
        transition-duration: 4s;
      }
    }
  }
}
.swiper-button-lock {
  display: block !important;
}

.main-about {
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 150px;
}
.main-about .img-box {
    width: 100%;
    height: 100%;
}
.main-about .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-about .txt {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.main-about .txt .txt-lg {
  font-size: 48px;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-about .txt .txt-lg .pr {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  margin-left: 12px;
}
.main-about .txt .txt-lg .pr::before {
  content: "[";
  color: var(--main-color);
}
.main-about .txt .txt-lg .pr::after {
  content: "]";
  color: var(--main-color);
}
.main-about .txt .txt-sm {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  text-align: center;
}



.more-btn {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s ease-in-out;
}
.more-btn img {
  width: 24px;
}
.more-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transition: .2s ease-in-out;
}

.main-business {
  padding-bottom: 150px;
}
.main-tit {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.main-tit p:first-child {
  font-size: 18px;
  font-weight: 400;
  color: var(--main-color);
  letter-spacing: 5px;
}
.main-tit p:nth-child(2) {
  font-size: 38px;
  font-weight: 600;
  color: var(--black-color);
  line-height: 1.3;
}



.member-banner {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
}
.member-banner .img-box {
  width: 100%;
  height: 100%;
  position: relative;
}
.member-banner .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.member-banner .img-box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
}
.member-banner .content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 0 150px;
}
.member-banner .content .txt {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.member-banner .content .txt .txt-lg {
  font-size: 38px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 4px;
}
.member-banner .content .txt .txt-sm {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
}
.member-banner .content .logo-img {
  width: 150px;
}
.member-banner .content .logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .2;
}

.news-slider {
  width: 100%;
  overflow: hidden;
  padding-bottom: 12px;
  position: relative;
}
.news-slider .box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.news-slider .box .img-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid #eee;
}
.news-slider .box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .2s ease-in-out;
}
.news-slider .box:hover .img-box img {
    scale: 1.1;
    transition: .2s ease-in-out;
}
.news-slider .box .txt {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.news-slider .box .txt .cate {
    font-size: 14px;
    font-weight: 500;
    color: var(--main-color);
}
.news-slider .box .txt .tit {
    font-size: 20px;
    font-weight: 500;
    color: var(--black-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news-slider .box .txt .content {
    min-height: 40px;
    font-size: 15px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-slider .box .txt .date {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}

.news-slider .swiper-scrollbar {
	height: 2px !important;
    background: var(--border-color);
    width: 100%;
    top: unset;
    left: unset;
    bottom: unset;
    right: unset;
}

.news-slider .swiper-scrollbar-drag {
	height: 2px;
    background: var(--black-color);
}


.business-flex {
    width: 100%;
    height: 600px;
    display: flex;
    gap: 4px;
}
.business-flex .item {
    position: relative;
    flex: 1;
    transition: .2s ease-in-out;
}
.business-flex .item:hover {
    flex: 2;
}
.business-flex .item .img-box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.business-flex .item .img-box::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
}
.business-flex .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.business-flex .item .txt {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 16px;
    padding: 24px;
    overflow: hidden;
    transition: .2s ease-in-out;
}
.business-flex .item .txt p:first-child {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}
.business-flex .item .txt p:nth-child(2) {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    word-break: keep-all;
    transition: 0.1s ease-in-out;
    opacity: 0;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}
.business-flex .item:hover .txt p:nth-child(2) {
    transition: 1.5s ease-in-out;
    opacity: 1;
}



/*페이지*/
.sub-banner {
  position: relative;
  width: 100%;
  height: 700px;
}
.sub-banner .img-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.sub-banner .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub-banner .img-box::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background-color: rgba(0, 0, 0, 0.7);
}
.sub-banner .box {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.sub-banner .box .txt {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sub-banner .box .txt p:first-child {
    font-size: 48px;
    font-weight: 600;
    color: #fff;
}
.sub-banner .box .txt p:nth-child(2) {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
}

.sub-menu {
    position: absolute;
    right: 0;
    bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}
.sub-menu .home-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 100%;
    background-color: var(--main-color);
    transition: .2s ease-in-out;
}
.sub-menu .home-btn:hover {
    opacity: .8;
    transition: .2s ease-in-out;
}
.sub-menu .home-btn img {
    width: 24px;
    height: 24px;
}
.sub-menu > button {
    width: 250px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #fff;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding: 0 24px;
    background-color: transparent;
    position: relative;
    letter-spacing: -1px;
}
.sub-menu > button.on {
    background-color: rgba(255, 255, 255, 0.08);
}
.sub-menu > button > img {
    width: 20px;
    transition: .2s ease-in-out;
}
.sub-menu > button.on > img {
    transform: rotate(-45deg);
    transition: .2s ease-in-out;
}
.sub-menu .sub-list {
    position: absolute;
    left: 0;
    bottom: calc(100% + 16px);
    width: 250px;
    padding: 16px 36px;
    border: 1px solid #fff;
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.08);
    display: none;
}
.sub-menu .sub-list li:not(:last-child) {
    padding-bottom: 16px;
}

.page-tit {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    font-size: 48px;
    font-weight: 600;
    color: var(--black-color);
    margin: 100px 0 80px;
}
.page-tit::after {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: var(--main-color);
}
.page-banner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}


.lt-banner {
    width: 100%;
    max-width: calc(100dvw - ((100dvw - 1400px) / 2));
    height: 300px;
    display: flex;
    align-items: center;
    border-radius: 0 48px 48px 0;
    overflow: hidden;
    position: relative;
    margin-bottom: 80px;
}
.lt-banner .img-box {
    width: 100%;
    height: 100%;
    position: relative;
}
.lt-banner .img-box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
}
.lt-banner .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lt-banner .txt {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    position: absolute;
    left: calc((100dvw - 1400px) / 2);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}
.lt-banner .txt p:first-child {
    font-size: 38px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}
.lt-banner .txt p:nth-child(2) {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
}

.greetings-area {
    display: flex;
    gap: 60px;
}
.greetings-area .hd {
    flex: 1;
    font-size: 28px;
    font-weight: 700;
    color: var(--black-color);
    line-height: 1.3;
    word-break: keep-all;
}
.greetings-area .content {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.greetings-area .content span {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    line-height: 1.5;
    word-break: keep-all;
}
.greetings-area .content span:last-child {
    font-size: 20px;
    font-weight: 600;
    color: var(--black-color);
}


.history-area {
    display: flex;
    flex-direction: column;
}
.history-area .item {
    display: flex;
    gap: 80px;
}
.history-area .item .year {
    min-width: 300px;
    font-size: 32px;
    font-weight: 600;
    color: var(--black-color);
    padding: 36px 0;
    border-bottom: 1px solid var(--black-color);
}
.history-area .item:first-child .year {
    border-top: 1px solid var(--black-color);
}
.history-area .item .content {
    width: 100%;
    padding: 36px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.history-area .item:first-child .content {
    border-top: 1px solid var(--border-color);
}
.history-area .item .content .box {
    display: flex;
    gap: 48px;
}
.history-area .item .content .box .date {
    font-weight: 600;
    color: var(--black-color);
    line-height: 1.3;
    min-width: 50px;
}
.history-area .item .content .box .txt {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.history-area .item .content .box .txt span {
    display: block;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    line-height: 1.3;
    word-break: keep-all;
}

.link-area {
    display: flex;
    gap: 12px 6px;
    flex-wrap: wrap;
}
.link-area a {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--border-color);
    border-radius: 48px;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.link-area a:hover {
    background-color: #f9f9f9;
}
.link-area a img {
    width: 16px;
}

.map-area {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.root_daum_roughmap_landing {
    width: 100% !important;
}
.root_daum_roughmap .wrap_map {
    width: 100% !important;
    height: 500px !important;
}
.root_daum_roughmap .cont .section {
    margin: 0 !important;
}

.map-area .map-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.map-area .map-info .item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.map-area .map-info .item span:first-child {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}
.map-area .map-info .item span:first-child img {
    width: 24px;
}
.map-area .map-info .item span:nth-child(2) {
    font-size: 16px;
    font-weight: 500;
    color: var(--sub-txt-color-02);
}


.business-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 8px;
}
.business-menu a {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    border: 1px solid var(--border-color);
    cursor: pointer;
}
.business-menu a.on {
    background-color: var(--black-color);
    border: none;
    color: #fff;
}
.business-menu a.on:hover {
    background-color: var(--black-color);
    border: none;
    color: #fff;
}
.business-menu a:hover {
    background-color: #f5f5f5;
}

.business-banner {
    width: 100%;
    height: 300px;
    margin: 80px 0 48px;
    position: relative;
}
.business-banner .img-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.business-banner .img-box::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
}
.business-banner .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.business-banner .txt {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    word-break: keep-all;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 80px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.business-area .sub-txt {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    line-height: 1.5;
    word-break: keep-all;
    margin-bottom: 80px;
}

.grid-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.grid-content .item {
    display: flex;
    align-items: center;
    gap: 36px;
}
.grid-content .item.reverse {
    flex-direction: row-reverse;
}
.grid-content .item .img-box {
    width: 450px;
    min-width: 450px;
    aspect-ratio: 4 / 3;
}
.grid-content .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.grid-content .item .txt {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.grid-content .item .txt p {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    line-height: 1.5;
    word-break: keep-all;
}


.notice-list {
    border-top: 2px solid var(--black-color);
    border-bottom: 2px solid var(--black-color);
}
.notice-list.sm {
    border: none;
}
.notice-list li {
    padding: 24px;
}
.notice-list.sm li {
    padding: 12px 0;
}
.notice-list li.empty {
    text-align: center;
    padding: 48px 24px;
}
.notice-list li:hover {
    background-color: var(--bg-color);
}
.notice-list li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}
.notice-list.sm li:last-child {
    padding: 12px 0 0;
}
.notice-list li a {
    display: flex;
    align-items: center;
    gap: 36px;
}
.notice-list.sm li a {
    gap: 16px;
}
.notice-list li a .date {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.notice-list.sm li a .date {
    gap: 4px;
}
.notice-list li a .date .day {
    font-size: 28px;
    font-weight: 500;
    color: var(--main-color);
}
.notice-list.sm li a .date .day {
    font-size: 18px;
}
.notice-list li a .date .ym {
    font-weight: 500;
    color: var(--black-color);
}
.notice-list.sm li a .date .ym {
    font-size: 12px;
}
.notice-list li a .tit-box {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}
.notice-list li a .tit-box .img-box {
    width: 14px;
}
.notice-list li a .tit-box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.notice-list li a .tit {
    color: var(--black-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.notice-list.sm li a .tit {
    font-size: 14px;
}
.notice-list li a > img {
    width: 24px;
    transition: .2s ease-in-out;
}
.notice-list.sm li a > img {
    width: 16px;
}
.notice-list li a:hover > img {
    transform: translateX(10px);
    transition: .2s ease-in-out;
}


/*Pagination*/
.pagination {
  position: relative;
  margin-top: 48px;
}
.pagination.board {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination.mt-60 {
  margin-top: 60px;
}
.pagination.mt-24 {
  margin-top: 24px;
}
.pagination.mt-12 {
  margin-top: 12px;
}
.pagination > a {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.pagination li {
  width: 28px;
  height: 28px;
}
.pagination li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--black-color);
}
.pagination li a:not(.arrow):hover {
  color: var(--main-color);
  text-decoration: underline;
}
.pagination li.page-on {
  color: var(--main-color) !important;
  text-decoration: underline;
}
.pagination li.page-on a {
  color: var(--main-color) !important;
}
.pagination li a img {
  height: 10px;
  object-fit: cover;
}

.search-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}
.search-box select {
    width: 150px;
    height: 50px;
    border: none;
    border-bottom: 1px solid var(--black-color);
    padding: 0
}
.search-box .input-area {
    width: 250px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: none;
    border-bottom: 1px solid var(--black-color);
}
.search-box .input-area input {
    width: 100%;
    height: 100%;
    padding: 0 16px;
    border: none;
}
.search-box .input-area img {
    width: 18px;
}




.active-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 36px;
    padding-top: 48px;
    border-top: 2px solid var(--black-color);
}
.active-grid .item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}
.active-grid .item.empty {
    grid-column: span 3;
    text-align: center;
    padding: 0 24px 48px;
}
.active-grid .item.empty::after {
    display: none;
}
.active-grid .item::after {
    content: "";
    width: 0;
    height: 1px;
    background-color: var(--black-color);
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    transition: .2s ease-in-out;
}
.active-grid .item:hover::after {
    width: 100%;
    transition: .2s ease-in-out;
}

.active-grid .item .img-box {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid #eee;
}
.active-grid .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    scale: 1;
    transition: .2s ease-in-out;
}
.active-grid .item:hover .img-box img {
    scale: 1.1;
    transition: .2s ease-in-out;
}
.active-grid .item .txt {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.active-grid .item .txt .tit {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.active-grid .item .txt .date {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}


.view-area {
  border-top: 2px solid var(--black-color);
  border-bottom: 2px solid var(--black-color);
}
.view-area .tit-box {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.view-area .tit-box p {
  font-size: 28px;
  font-weight: 500;
  color: var(--black-color);
  line-height: 1.3;
}
.view-area .tit-box .category {
    font-size: 20px;
    font-weight: 600;
    color: var(--main-color);
}
.view-area .tit-box .info {
  display: flex;
  align-items: center;
}
.view-area .tit-box .info span {
  display: inline-block;
  font-weight: 400;
  color: var(--sub-txt-color-02);
}
.view-area .tit-box .info span:first-child::after {
  display: inline-block;
  content: "";
  width: 1px;
  height: 12px;
  background-color: var(--border-color);
  margin: 0 12px;
}
.view-area .file-box {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.view-area .file-box a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.view-area .file-box a img {
  height: 18px;
}
.view-area .file-box a span {
  display: inline-block;
  font-weight: 500;
  color: var(--black-color);
}
.view-area .file-box a:hover span {
  text-decoration: underline;
}
.view-area .file-box a.empty {
  font-weight: 500;
}
.editor-area {
  padding: 60px 16px;
  max-width: 100%;
  border-top: 1px solid var(--border-color);
}

.view-area .np-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-color);
}
.view-area .np-box .item {
  width: 100%;
  padding: 24px 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--border-color);
}
.view-area .np-box .item span {
  display: inline-flex;
  font-weight: 500;
}
.view-area .np-box .item span:first-child {
  font-weight: 600;
  color: var(--main-color);
  width: 100%;
  max-width: 100px;
  min-width: 100px;
}
.view-area .np-box .item span:nth-child(2) {
    font-weight: 400;
  color: var(--black-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.view-area .np-box .item span:nth-child(2) img {
  width: 42px;
  margin-right: 10px;
}
.view-area .np-box .item:hover span:nth-child(2) {
  text-decoration: underline;
}

.back-btn {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.back-btn button {
  width: 100%;
  max-width: 200px;
  height: 50px;
  background-color: var(--black-color);
  border-radius: 48px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-btn button:hover {
  opacity: .8;
}

.business-content {
    display: none;
}
.business-content.on {
    display: block;
}