:root {
    --main-color: #74AE67;
    --bg-color: #F9F9F9;
    --black-color: #2A2A2A;
    --sub-txt-color-01: #555555;
    --sub-txt-color-02: #777777;
    --sub-txt-color-03: #999999;
    --border-color: #D9D9D9;
    --naver-color: #03C75A;
    --kakao-color: #FFCD00;
    --red-color: #EA4335;
}
* {
  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: 3px;
  height: 3px;
}
*::-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;
  overflow: hidden;
  overflow-y: auto;
}

/*공통*/
.wrap {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
}
.sm-wrap {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
.top-btn {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    cursor: pointer;
}
.top-btn img {
    width: 24px;
    height: 24px;
}
.btn {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
    border-radius: 3px;
}
.btn.short {
    max-width: 200px;
}
.btn.solid-btn {
    background-color: var(--main-color);
    color: #fff;
}
.btn.solid-btn:hover {
    opacity: .9;
}
.btn.basic-btn {
    background-color: #fff;
    border: 1px solid var(--border-color);
}
.btn.basic-btn:hover {
    background-color: var(--bg-color);
}
.btn-wrap {
    display: flex;
    justify-content: center;
    gap: 8px;
}

/*모달*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 102;
  display: none;
}
.modal .modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1270px;
}
.modal .modal-box .modal-tit-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background-color: var(--main-color);
}
.modal .modal-box .modal-tit-box span {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.modal .modal-box .modal-tit-box button {
  display: inline-block;
}
.modal .modal-box .modal-tit-box img {
  width: 24px;
  height: 24px;
}
.modal .modal-box .content {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    height: auto;
    min-height: 500px;
    max-height: 700px;
    overflow-y: auto;
    padding: 24px;
}

.modal .archive-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 800px;
  height: calc(100vh - 200px);
  overflow: hidden;
  padding: 48px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}
.modal .archive-box .hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}
.modal .archive-box .hd .info p:first-child {
    font-size: 16px;
    font-weight: 400;
    color: var(--main-color);
    margin-bottom: 12px;
}
.modal .archive-box .hd .info p:nth-child(2) {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
}
.modal .archive-box .hd button {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    background-color: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal .archive-box .hd button img {
    width: 24px;
    height: 24px;
}
.modal .archive-box .content {
    width: 100%;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}
.modal .archive-box .content img {
    vertical-align: bottom;
}
.modal .archive-box .content video, .modal .archive-box .content iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
}

/*header*/
.header-wrap {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: #fff;
}
.header-wrap.main {
    background-color: transparent;
}
.header-wrap.hover-on, .header-wrap.on:hover {
    height: 320px;
    box-shadow: 0 1px 1px var(--border-color);
    background-color: #fff;
}
.header-wrap.on {
    background-color: #fff;
}
.header-wrap .container {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
}
.header-wrap.main .container {
    border-bottom: 1px solid transparent;
}
.header-wrap.hover-on .container, .header-wrap.on .container {
    border-bottom: 1px solid var(--border-color) !important;
}
.header-wrap .gnb-area {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
    width: 200px;
    height: 40px;
    display: block;
    background-image: url('../images/logo/logo_mc.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.header-wrap.main .logo {
    background-image: url('../images/logo/logo_wc.png');
}
.header-wrap.hover-on .logo, .header-wrap.on .logo {
    background-image: url('../images/logo/logo_mc.png');
}

.rt-area {
    display: flex;
    align-items: center;
    gap: 36px;
}
.social {
    display: flex;
    gap: 16px;
}
.social a {
    display: block;
    width: 20px;
}
.social a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.rt-area .user-btn {
    display: flex;
    align-items: center;
}
.rt-area .user-btn a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.header-wrap.main .rt-area .user-btn a {
    color: #fff;
}
.header-wrap.hover-on .rt-area .user-btn a, .header-wrap.on .rt-area .user-btn a {
    color: var(--sub-txt-color-02); 
}
.rt-area .user-btn a:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: var(--border-color);
    margin: 0 16px;
}
.header-wrap.main .rt-area .user-btn a:not(:last-child)::after {
    background-color: rgba(255, 255, 255, 0.2);
}
.header-wrap.hover-on .rt-area .user-btn a:not(:last-child)::after, .header-wrap.on .rt-area .user-btn a:not(:last-child)::after {
    background-color: var(--border-color) !important;
}
.rt-area .user-btn a:hover {
    color: var(--main-color);
}
.header-wrap.main .rt-area .user-btn a:hover {
    color: var(--main-color);
}
.ham {
    display: none;
}
#ham_btn {
    display: none;
}
#ham_btn + label {
  position: relative;
  display: block;
  width: 36px;
  height: 20px;
  cursor: pointer;
  z-index: 10;
}
#ham_btn + label > span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--black-color);
  border-radius: 5px;
  transition: all 300ms;
}
.header-wrap.main #ham_btn + label > span {
    background-color: #fff;
}
.header-wrap.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);
}


.gnb {
  display: flex;
  align-items: center;
  gap: 60px;
}
.gnb > li {
  position: relative;
}
.gnb > li::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  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: block;
  padding: 24px 0;
  color: var(--black-color);
}
.header-wrap.main .gnb > li > a {
    color: #fff;
}
.header-wrap.hover-on .gnb > li > a, .header-wrap.on .gnb > li > a {
    color: var(--black-color);
}
.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: 15px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    white-space: nowrap;
}
.header-wrap.hover-on .gnb-sub > li:hover > a {
    color: var(--main-color);
}

/*footer*/
.footer-wrap .wrap:first-child {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.footer-wrap .hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 48px 0;
}
.footer-wrap .hd .f-logo {
    display: inline-block;
    width: 200px;
}
.footer-wrap .hd .f-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer-wrap .hd .fnb {
    display: flex;
    gap: 24px;
}
.footer-wrap .hd .fnb li a {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    cursor: pointer;
}
.footer-wrap .hd .fnb li:last-child a {
    color: var(--main-color);
}
.footer-wrap .bt {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
    padding: 48px 0;
}
.footer-wrap .bt .lt {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-wrap .bt .lt p {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.footer-wrap .bt .rt {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}
.footer-wrap .bt .rt .copy {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.cover::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
/*main*/
.main-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.banner-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.banner-slider .swiper-slide {
    width: 100%;
    height: 100%;
}
.banner-slider .swiper-slide .img-box {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.banner-slider .swiper-slide .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 10s ease-out;
}
.main-banner .swiper-slide.swiper-slide-active .img-box img {
    transform: scale(1.1);
}
.control {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.pager {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  min-width: 40px;
  color: transparent;
  font-size: 0;
  text-align: right;
}
.swiper-pagination-current {
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 15px;
}
.swiper-pagination-current::after {
    content: "";
    display: block;
    height: 1px;
    width: 20px;
    margin: 6px auto;
    background-color: #d1d1d1;
}
.swiper-pagination-total {
    color: #d1d1d1;
    font-size: 15px;
}
/*scroll down*/
.scroll-down .scroll-arrow {
  padding-top: 80px;
  position: relative;
}
.scroll-down .scroll-arrow span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: scroll_arorw 2s infinite;
  animation: scroll_arorw 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}
.scroll-down .scroll-arrow span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.scroll-down .scroll-arrow span:nth-of-type(2) {
  top: 12px;
  -webkit-animation-delay: .15s;
  animation-delay: .15s;
}
.scroll-down .scroll-arrow span:nth-of-type(3) {
  top: 24px;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}
@-webkit-keyframes scroll_arorw {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scroll_arorw {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.main-banner .txt {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 16px;
}
.main-banner .txt .tit {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
.main-banner .txt .copy-main {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.main-banner .txt .copy-sub {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    text-align: center;
}
.main-banner .txt .typing-txt {
    display: flex;
    align-items: center;
    gap: 2px;
}
.main-banner .txt .typing-txt .cursor {
  border-left: 2px solid #fff;
  animation: blink 0.7s infinite;
  display: inline-block;
  margin-left: 2px;
  height: 20px;
  vertical-align: middle;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.main-area {
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    gap: 150px;
}
.tit-area {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 36px;
}
.main-tit p:first-child {
    font-size: 48px;
    font-weight: 600;
    color: var(--black-color);
}
.main-tit p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    margin-top: 24px;
    line-height: 1.3;
}
.main-tit.wc {
    align-items: center;
    text-align: center;
}
.main-tit.wc p:first-child {
    color: #fff;
}
.main-tit.wc p.xs {
    font-size: 36px;
}
.main-tit.wc p:nth-child(2) {
    color: #fff;
    word-break: keep-all;
}
.main-01 {
    display: flex;
    align-items: stretch;
    gap: 48px;
}
.main-01 .lt {
    width: 50%;
    border-right: 1px solid var(--border-color);
    padding-right: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}
.main-01 .lt .bt {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 36px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.main-01 .lt .bt > p {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.main-link {
    display: flex;
    gap: 24px;
}
.main-link a {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
    font-size: 20px;
    font-weight: 300;
    color: var(--black-color);
}
.main-link.wc a {
    border-bottom: 1px solid #fff;
    color: #fff;
}
.main-link a img {
    width: 16px;
    transition: transform 0.3s ease;
}
.main-link a:hover img {
    transform: translate(3px, -3px);
}
.main-01 .rt {
    width: 50%;
    position: relative;
}
.main-01 .rt .img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
}
.main-01 .rt .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-01 .rt .txt {
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 16px;
}
.main-02 {
    position: relative;
    width: 100%;
    height: 800px;
}
.main-02 .bg {
    position: relative;
    width: 100%;
    height: 100%;
}
.main-02 .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-02 .txt {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-02 .txt .main-link {
    margin-top: 60px;
}
.main-03 {
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}
.board-area {
    margin-bottom: 36px;
}
.category {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
}
.category a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
    cursor: pointer;
}
.category a.on {
    color: var(--black-color);
}
.category a::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--sub-txt-color-03);
}
.category a.on::before {
    background-color: var(--main-color);
}
.board-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 24px;
    display: none;
}
.board-grid.active {
    display: grid;
}
.board-grid .item {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    position: relative;
}
.board-grid .item::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--main-color);
    transition: all .3s ease;
}
.board-grid .item:hover::before {
    width: 100%;
}
.board-grid .item .tp {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.board-grid .item .info {
    display: flex;
    align-items: center;
}
.board-grid .item .info span {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.board-grid .item .info span:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 10px;
    background-color: var(--border-color);
    margin: 0 16px;
}
.board-grid .item .info span.cate {
    color: var(--main-color);
}
.board-grid .item .tit {
    font-size: 18px;
    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;
}
.board-grid .item .content {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.3;
}
.board-grid .item .img-box {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid #efefef;
}
.board-grid .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
}
.main-04 {
    width: 100%;
    height: 800px;
    overflow: hidden;
    position: relative;
}
.main-04 .wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;

}
.main-04 .bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: var(--black-color);
}
.main-04 .bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .6s ease;
}

/* ✅ 기본 상태: 첫 번째 이미지 */
.main-04 .bg img:first-child {
    opacity: 1;
}

/* ✅ 두 번째 item hover 시 */
.main-04:has(.item:last-child:hover) .bg img:first-child {
    opacity: 0;
}

.main-04:has(.item:last-child:hover) .bg img:last-child {
    opacity: 1;
}

.main-04 .item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 150px 48px;
}
.main-04 .item:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.main-04 .item .main-link {
    margin-top: 60px;
}

/*pages*/
.basic-page {
    width: 100%;
    padding: 200px 0 150px;
    min-height: 600px;
}
.user-page {
    padding-top: 150px;
    width: 100%;
    max-width: 400px;

}
.user-box {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.user-box .hd {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}
.user-box .hd p:first-child {
    font-size: 36px;
    font-weight: 700;
    color: var(--black-color);
}
.user-box .hd p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
    line-height: 1.3;
    text-align: center;
}
.input-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.input-box .box {
    display: flex;
    align-items: center;
    gap: 6px;
}
.input-box .box button {
   width: 120px;
   min-width: 120px;
}
.input-box p {
    font-size: 13px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.input-box p::after {
    content: "*";
    font-size: 14px;
    font-weight: 700;
    color: var(--red-color);
    margin-left: 4px;
}
.input-box p b {
    color: var(--red-color);
}
.input-box p.ns::after {
    display: none;
}
.input-box input[type="text"], .input-box input[type="password"], .input-box input[type="email"], .input-box input[type="number"] {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
    border: 1px solid var(--border-color);
    border-radius: 3px;
}
.input-box input[type="text"]:focus, .input-box input[type="password"]:focus, .input-box input[type="email"]:focus, .input-box input[type="email"]:focus {
    border: 1px solid var(--main-color);
}
.input-box input:read-only {
    background-color: #F5F5F5;
}

.find-link {
    text-align: right;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
    margin-bottom: 12px;
}
.sign-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.sign-btn .divider {
    width: 1px;
    height: 10px;
    background-color: var(--border-color);
    margin: 0 16px;
}
.sign-btn a {
    display: flex;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.sign-btn a:last-child {
    font-size: 14px;
    font-weight: 400;
    color: var(--main-color);
    text-decoration: underline;
}
.user-expl {
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-top: 24px;
}
.user-expl span:first-child {
    display: inline-block;
    font-weight: 400;
    color: var(--black-color);
}
.user-expl span:first-child.lg {
    font-size: 24px;
    font-weight: 600;
}
.user-expl span:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
    display: inline-block;
}
.user-expl span:nth-child(2)::before {
    content: "*";
    margin-right: 6px;
    color: var(--red-color);
}

.agree-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 6px;
}
.agree-box .agree-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.agree-box .agree-item label {
    font-size: 14px;
    color: var(--sub-txt-color-02);
    display: flex;
    align-items: center;
    cursor: pointer;
}
.agree-box .agree-item label input {
    margin: 0;
    width: 14px;
    height: 14px;
    margin-right: 6px;
}
.agree-box .agree-item label span {
    color: var(--red-color);
}
.agree-box .agree-item a {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    text-decoration: underline;
    cursor: pointer;
}
.user-tab-menu {
    border-bottom: 1px solid var(--border-color);
    display: flex;
    margin-top: 24px;
}
.user-tab-menu a {
    width: 100%;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    text-align: center;
    padding-bottom: 12px;
}
.user-tab-menu a.on {
    color: var(--black-color);
    border-bottom: 2px solid var(--main-color);
    padding-bottom: 10px;
}
.mypage-tit {
    font-size: 36px;
    font-weight: 700;
    color: var(--black-color);
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--border-color);
}
.mypage-tab {
    display: flex;
    margin-bottom: 60px;
    position: sticky;
    top: 0;
    left: 0;
}
.mypage-tab button, .mypage-tab a {
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--bg-color);
    margin-left: -1px;
    border: 1px solid var(--border-color);
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.mypage-tab button.on, .mypage-tab a.on {
    background-color: #fff;
    color: var(--black-color);
    border-bottom: 3px solid var(--main-color);
} 
/*Pagination*/
.pagination {
  position: relative;
  margin-top: 24px;
}
.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: 32px;
  height: 32px;
}
.pagination li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  color: var(--black-color);
}
.pagination li a:not(.arrow):hover {
  color: var(--main-color);
  text-decoration: underline;
}
.pagination li.on {
  color: var(--main-color) !important;
  text-decoration: underline;
}
.pagination li.on a {
  color: var(--main-color) !important;
}
.pagination li a img {
  height: 6px;
  object-fit: cover;
}
table {
    width: 100%;
    border-top: 2px solid var(--main-color);
    border-bottom: 1px solid var(--border-color);
    border-collapse: collapse !important;
}
table th, table td {
    padding: 16px 8px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    vertical-align: middle;
}
table th {
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
}
table td {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.delete-expl {
    background-color: var(--bg-color);
    border-radius: 3px;
    padding: 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
    text-align: center;
    word-break: keep-all;
}

.page-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 130px;
}
.page-intro .intro-copy {
    font-size: 48px;
    font-weight: 700;
    color: var(--black-color);
    line-height: 1.2;
}
.page-intro .intro-copy span {
    color: var(--main-color);
}
.page-intro .location {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.page-intro .location img {
    width: 16px;
}
.page-tab {
    display: flex;
    gap: 36px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 100px;
}
.page-tab a {
    font-size: 20px;
    font-weight: 500;
    color: var(--sub-txt-color-03);
    padding-bottom: 16px;
}
.page-tab a.on {
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
}

.faq-list {
    border-top: 2px solid var(--main-color);
    border-bottom: 1px solid var(--border-color);
}
.faq-list > li {
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.faq-list > li.empty {
    align-items: center;
    padding: 48px 24px;
}
.faq-list > li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}
.faq-list > li .tit-box {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.faq-list > li .tit-box .box {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}
.faq-list > li .tit-box .que {
    white-space: nowrap;
    font-weight: 600;
    color: var(--main-color);
    min-width: 100px;
}
.faq-list > li .tit-box .tit {
    width: 100%;
    font-weight: 400;
    color: var(--black-color);
    line-height: 1.3;
}
.faq-list > li .faq-arrow {
    width: 20px;
    transition: .2s ease-in-out;
}
.faq-list > li .faq-arrow.active {
    transform: rotate(90deg);
    transition: .2s ease-in-out;
}
.faq-list > li .toggle-content {
    background-color: var(--bg-color);
    padding: 24px;
    line-height: 1.5;
    color: var(--sub-txt-color-02);
    display: none;
}
.total {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    margin-bottom: 16px;
}
.total span {
    font-weight: 500;
    color: var(--main-color);
}
.txt-list {
    display: flex;
    flex-direction: column;
    border-top: 2px solid var(--main-color);
    border-bottom: 1px solid var(--border-color);
}
.txt-list li.empty {
    padding: 36px 0;
    text-align: center;
}
.txt-list li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}
.txt-list li {
    position: relative;
}
.txt-list li.empty::after {
    display: none;
}
.txt-list li::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--main-color);
    transition: all .2s ease-in-out;
}
.txt-list li:hover::after {
    width: 100%;
}
.txt-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 36px;
}
.txt-list li a span {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.txt-list li a span.num {
    min-width: 40px;
    text-align: center;
    color: var(--main-color);
}
.txt-list li a span.tit {
    color: var(--black-color);
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.search {
    width: 300px;
    border: 1px solid var(--border-color);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 24px auto 0;
}
.search input[type="text"] {
    width: 100%;
    border: none;
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
}
.search button {
    width: 16px;
    height: 16px;
}
.search button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.view-tit-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}
.view-tit-box .tit {
    font-size: 22px;
    font-weight: 500;
    color: var(--black-color);
    line-height: 1.3;
}
.view-tit-box .info {
    display: flex;
    align-items: center;
}
.view-tit-box .info span {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--sub-txt-color-02);
}
.view-tit-box .info span:first-child::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 14px;
    background-color: var(--border-color);
    margin: 0 12px;
}
.file-box {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.file-box a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.file-box a img {
  height: 18px;
}
.file-box a span {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: var(--black-color);
}
.file-box a:hover span {
  text-decoration: underline;
}
.file-box a.empty {
  font-weight: 500;
}
.editor-area {
    padding: 48px 0;
    min-height: 250px;
    line-height: 1.3;
}
.other-area {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}
.other-area a {
    padding: 24px 0;
    display: flex;
    gap: 48px;
}
.other-area a:first-child {
    border-bottom: 1px solid var(--border-color);
}
.other-area a .other-front {
    display: inline-block;
    color: var(--main-color);
}
.other-area a .other-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;
}
.other-area a:hover .other-tit {
    color: var(--sub-txt-color-02);
}

.contact-form {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.contact-form .input-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-form .input-box > p {
    font-size: 16px;
    font-weight: 500;
    color: var(--sub-txt-color-02);
}
.contact-form .input-box > p b {
    color: var(--main-color);
    margin-left: 4px;
}
.contact-form .input-box input {
    padding: 8px 0 16px;
    border: none;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    color: var(--black-color);
}
.contact-form .input-box textarea {
    padding: 16px;
    border: 1px solid var(--border-color);
    height: 200px;
    font-size: 16px;
}
.contact-terms {
    padding-top: 36px;
    border-top: 1px solid var(--border-color);
}
.contact-terms .content {
    width: 100%;
    height: 100px;
    border: 1px solid var(--border-color);
    padding: 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.5;
    overflow: hidden;
    overflow-y: auto;
    margin-bottom: 36px;
}
.contact-terms .terms-chk {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.contact-terms .terms-chk label {
    cursor: pointer;
    display: flex;
    align-items: center;
}
.contact-terms .terms-chk label input {
    width: 16px;
    height: 16px;
    margin: 0 6px 0 0;
}
.contact-terms .terms-chk label span {
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
}
.contact-terms .terms-chk label span b {
    color: var(--red-color);
}

.page-gap {
    display: flex;
    flex-direction: column;
    gap: 150px;
}

.about-01-01 {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 100px;
}
.about-01-01::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background-color: var(--border-color);
}
.about-01-01 .item {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 96px;
}
.about-01-01 .item .img-box {
    width: 50%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.about-01-01 .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-01-01 .item .img-box p {
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 16px;
}
.about-01-01 .tit {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    background-color: var(--bg-color);
    border-radius: 12px;
    padding: 48px;
}
.about-01-01 .tit .tit-sub {
    font-size: 16px;
    font-weight: 600;
    color: var(--main-color);
}
.about-01-01 .tit .tit-main {
    font-size: 36px;
    font-weight: 600;
    color: var(--black-color);
    line-height: 1.3;
    word-break: keep-all;
}
.about-01-01 .tit .content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}
.about-01-01 .tit .content p {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    line-height: 1.5;
}
.about-01-02 {
    position: relative;
    width: 100%;
    height: 700px;
}
.about-01-02 .banner {
    width: 100vw;
    height: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.about-01-02 .banner .bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.about-01-02 .banner .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-01-02 .banner .txt {
    width: 100%;
    max-width: 1520px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.about-01-02 .banner .txt p:first-child {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
.about-01-02 .banner .txt p:nth-child(2) {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    word-break: keep-all;
}
.about-01-02 .banner .txt p:last-child {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    margin-top: 16px;
}
.about-01-03 .hd {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.about-01-03 .hd p {
    font-size: 36px;
    font-weight: 600;
    color: var(--black-color);
    text-align: center;
}
.about-01-03-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}
.about-01-03-grid .item {
    background-color: var(--bg-color);
    border-radius: 12px;
    padding: 48px;
    font-size: 20px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    line-height: 1.3;
    text-align: center;
    word-break: keep-all;
}
.about-01-03 > p {
    font-size: 20px;
    font-weight: 600;
    color: var(--black-color);
    text-align: center;
}

.about-02-01 {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
}
.about-02-01 .lt {
    position: sticky;
    top: 104px;
    left: 0;
}
.about-02-01 .lt p {
    font-size: 36px;
    font-weight: 500;
    color: var(--black-color);
    line-height: 1.2;
    word-break: keep-all;
    margin-top: 16px;
}
.about-02-01 .rt {
    width: 1000px;
    min-width: 1000px;
}
.about-02-01 .rt .img-box {
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 60px;
}
.about-02-01 .rt .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-02-01 .rt .content .hd {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}
.about-02-01 .rt .content .hd p:first-child {
    font-size: 28px;
    font-weight: 600;
    color: var(--black-color);
}
.about-02-01 .rt .content .hd p:last-child {
    font-size: 28px;
    font-weight: 600;
    color: var(--black-color);
    line-height: 1.2;
}
.about-02-01 .rt .content .txt {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.about-02-01 .rt .content .txt p {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    line-height: 1.5;
}
.about-02-01 .rt .content .txt p:last-child {
    font-weight: 500;
    color: var(--black-color);
}
.about-02-01 .rt .content .txt p:last-child b {
    font-size: 28px;
    font-weight: 600;
    color: var(--black-color);
}
.about-03-01 {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.about-03-01 .banner {
    position: relative;
    width: 100%;
    height: 700px;
}
.about-03-01 .banner .bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.about-03-01 .banner .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-03-01 .banner .txt {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 24px;
    padding: 60px;
}
.about-03-01 .banner .txt p:first-child {
    font-size: 48px;
    font-weight: 600;
    color: #fff;
}
.about-03-01 .banner .txt p:last-child {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
}
.history-list {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.history-list .item {
    display: flex;
    gap: 48px;
}
.history-list .item.reverse {
    flex-direction: row-reverse;
}
.history-list .item .content {
    width: 50%;
}
.history-list .item .content .year {
    width: max-content;
    font-size: 36px;
    font-weight: 700;
    color: var(--black-color);
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 8px;
    margin-bottom: 24px;
}
.history-list .item .content .list {
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.history-list .item .content .list .list-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.history-list .item .content .list .list-item p:first-child {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    line-height: 1.2;
}
.history-list .item .content .list .list-item p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.5;
}
.history-list .item .img-box {
    width: 50%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
}
.history-list .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-04-01 .dir-wrap {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.dir-wrap .box .tit {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 24px;
}
.dir-wrap .box .tit span {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    padding-left: 16px;
    border-left: 3px solid var(--main-color);
}
.dir-wrap .dir-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 24px;
}
.dir-wrap .dir-grid .item {
    display: flex;
    gap: 24px;
}
.dir-wrap .dir-grid .item .img-box {
    width: 200px;
    min-width: 200px;
    aspect-ratio: 1 / 1.41;
    overflow: hidden;
}
.dir-wrap .dir-grid .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dir-wrap .dir-grid .item .txt {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.dir-wrap .dir-grid .item .txt > p {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    font-size: 20px;
    font-weight: 500;
    color: var(--black-color);
}
.dir-wrap .dir-grid .item .txt .career {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.dir-wrap .dir-grid .item .txt .career p {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.5;
}
.about-05-01 .img-box {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.about-05-01 .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-06-01 {
    width: 100%;
}
.root_daum_roughmap {
    width: 100% !important;
}
.root_daum_roughmap .wrap_map {
    height: 550px !important;
}
.root_daum_roughmap .wrap_controllers {
    display: none !important;
}

.about-06-01 .map-area {
    margin-bottom: 48px;
}
.about-06-01 .map-info {
    display: flex;
    gap: 80px;
}
.about-06-01 .map-info .lt {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.about-06-01 .map-info .tit span {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    padding-left: 16px;
    border-left: 3px solid var(--main-color);
}
.about-06-01 .map-info .list {
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}
.about-06-01 .map-info .list .item {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
}
.about-06-01 .map-info .list .item p:first-child {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
}
.about-06-01 .map-info .list .item p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.about-06-01 .map-btn-wrap {
    display: flex;
}
.about-06-01 .map-btn-wrap a {
    width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 500;
}
.about-06-01 .map-btn-wrap a:hover {
    opacity: .8;
}
.about-06-01 .map-btn-wrap a img {
    width: 20px;
}
.about-06-01 .map-btn-wrap a:first-child {
    background-color: var(--kakao-color);
    color: #000;
}
.about-06-01 .map-btn-wrap a:nth-child(2) {
    background-color: var(--naver-color);
    color: #fff;
}
.about-06-01 .rt {
    width: 50%;
    background-color: var(--bg-color);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.about-06-01 .rt .item > p {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 16px;
}
.about-06-01 .rt .item .subway {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
}
.about-06-01 .rt .item .subway .badge {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    display: flex;
    align-items: center;
    gap: 8px;
}
.about-06-01 .rt .item .subway .badge span {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    padding: 4px 6px;
    font-size: 12px;
    color: #fff;
}
.about-06-01 .rt .item .subway .badge span.line-4 {
    background-color: #09B4EA;
}
.about-06-01 .rt .item .subway .badge span.line-6 {
    background-color: #B45D15;
}
.about-06-01 .rt .item .subway .badge span.line-1 {
    background-color: #3356B4;
}
.about-06-01 .rt .item .subway .badge span.line-etc {
    width: auto;
    background-color: #85D4D4;
    border-radius: 24px;
}
.about-06-01 .rt .item .bus {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.about-06-01 .rt .item .bus .bus-item {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.about-06-01 .rt .item .bus .bus-item .badge {
    padding: 4px 6px;
    font-size: 12px;
    color: #fff;
    border-radius: 24px;
    display: inline-block;
}
.about-06-01 .rt .item .bus .bus-item .badge.purple {
    background-color: #6372D7;
}
.about-06-01 .rt .item .bus .bus-item .badge.brown {
    background-color: #957766;
}
.about-06-01 .rt .item .bus .bus-item .badge.green {
    background-color: #5FB73C;
}
.data-01-01 {
    width: 100%;
    height: auto;
    position: relative;
}
.data-01-01 .box {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: var(--black-color);
}
.data-01-01 .box::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.7);
}
.grid-track {
    position: relative;
    width: 100%;
    height: max-content;
    animation: trackMove 30s linear infinite;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 96px;
}
.data-01-01-grid {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 96px;
    position: relative;
    z-index: 1;
}
.data-01-01-grid .img-box {
    width: 100%;
    aspect-ratio: 4 / 3;
}
.data-01-01-grid .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@keyframes trackMove {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}
.data-01-01 .box .txt {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    padding: 0 16px;
}
.data-01-01 .box .txt p:first-child {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    word-break: keep-all;
    line-height: 1.2;
}
.data-01-01 .box .txt p:last-child {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    word-break: keep-all;
    line-height: 1.2;
}
.trace-list {
    padding-top: 150px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 150px;
}
.trace-list .line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    background-color: var(--border-color);
    width: 2px;
    height: 100%;
    overflow: hidden;
}
.trace-list .line .line-active {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background-color: var(--main-color);
    transition: height 0.15s ease-out;
}
.trace-list .item {
    width: calc(50% - 48px);
    margin: 0 0 0 auto;
}
.trace-list .item:not(:first-child) {
    margin: -300px 0 0 auto;
}
.trace-list .item:not(:first-child).left {
    margin: -300px auto 0 0;
}
.trace-list .item .year {
    font-size: 24px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 12px;
    position: relative;
}
.trace-list .item.left .year::before {
    display: none;
}
.trace-list .item .year::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--main-color);
    position: absolute;
    top: 50%;
    left: -53px;
    transform: translateY(-50%);
    z-index: 2;
}
.trace-list .item.left .year::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--main-color);
    position: absolute;
    top: 50%;
    right: -53px;
    transform: translateY(-50%);
    z-index: 2;
}
.trace-list .item .tit {
    font-size: 24px;
    font-weight: 700;
    color: var(--black-color);
    line-height: 1.2;
    margin-bottom: 24px;
    position: relative;
}
.trace-list .item .content {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.5;
    margin-bottom: 24px;
}
.trace-list .item .img-box {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.trace-list .item .img-box img {
    width: 100%;
    height: 100%;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    display: none;
}
.archive-grid.active {
    display: grid;
}
.archive-grid .item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.archive-grid .item .bg {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}
.archive-grid .item .bg::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.8) 100%);
}
.archive-grid .item .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .2s ease-in-out;
}
.archive-grid .item:hover .bg img {
    scale: 1.1;
}
.archive-grid .item .txt {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
}
.archive-grid .item .txt p:first-child {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.archive-grid .item .txt p:nth-child(2) {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}
.popup-layer {
    position: absolute;
    z-index: 98;
    border-radius: 16px;
    overflow: hidden;
}
.popup-layer .img-box {
    display: block;
    width: 100%;
    height: calc(100% - 50px);
}
.popup-layer .img-box img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    vertical-align: bottom;
}
.popup-layer .popup-btn {
    display: flex;
}
.popup-layer .popup-btn button {
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    height: 50px;
    background-color: var(--black-color);
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-03);
}
.popup-layer .popup-btn button:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.popup-layer .popup-btn button:hover {
    background-color: #3A3A3A;
}