@charset "utf-8";

/* -------------공통적용------------- */
/* 죄우 여백 필요시 최소 200px 입니다 (200px 이하 여백 사용 X -- 플로팅과 겹쳐요). */
/* "js__"로 시작하는 클래스는 only 자바스크립트용입니다.*/
/* XXXX js__넣어서 css 작성 금지 XXXX */
/* --------------------------------- */

/* 공통적용 - 컬러 */
:root {
  --color-primary: #ffde00;
  --color-accent: #370cb0;
}
button:disabled {
  color: #000;
}

/* 공통적용 - 페이지설정 */
html {
  overflow-y: auto;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  letter-spacing: -0.04em;
  scroll-behavior: smooth;
  user-select: auto;
  word-break: break-word;
}
.wrapper {
  width: 100%;
}
.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.brk {
  display: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-transition: background-color 9999s ease-out;
  -webkit-box-shadow: 0 0 0px 1000px #ffffff00 inset !important;
}
video::-webkit-media-controls {
  display: none !important;
}

/* 공통적용 - 스크롤 */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-thumb {
  background-color: #bbb;
  background-clip: padding-box;
  border: 2px solid transparent;
  border-radius: 10px;
}

/* 공통적용 - 텍스트 관련 */
a {
  color: inherit;
}
h2 {
  font-size: 70px;
  color: #fff;
}
.h_3 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -1px;
}
.h_4 {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -1px;
}
.grand_tit {
  font-size: 64px;
  font-weight: 700;
}
.mid_tit {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -1.5px;
}
.sub_tit {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
}
.sub_text {
  font-size: 20px;
  line-height: 30px;
  display: block;
}
font.tova {
  color: transparent;
  background-repeat: no-repeat;
  background-position: bottom 48% right;
  margin-right: 2px;
  padding: 0 1%;
  white-space: nowrap;
}

/* 공통적용 - ul li */
ul {
  line-height: 160%;
}
.road ul li,
.value ul li {
  position: relative;
  padding-left: 16px;
}
.road ul li::before,
.value ul li::before {
  position: absolute;
  content: "";
  top: 14px;
  left: 0;
  width: 5px;
  height: 4px;
  background-color: var(--color-accent);
  transform: skew(-40deg);
}

/* 공통적용 - 아이콘 관련 i */
i {
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
i.tova.k,
font.tova.k {
  background-image: url(../img/tova_k.svg);
}
i.tova.w,
font.tova.w {
  background-image: url(../img/tova_w.svg);
}
i.tova_obj.k {
  background-image: url(../img/tova_obj_k.svg);
}
i.tova_obj.w {
  background-image: url(../img/tova_obj_w.svg);
}

/* 공통적용 - 다이어그램 diagram_wrap */
.diagram_wrap {
  position: relative;
}
.diagram_wrap .dia_element {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.diagram_wrap .dia_element .dia_tit {
  font-size: 18px;
  font-weight: 500;
}
.diagram_wrap .dia_element .dia_text {
  font-size: 18px;
  font-weight: 500;
}
.diagram_wrap .dia_element .line {
  background-color: var(--color-accent);
  position: absolute;
}
.diagram_wrap .dia_circles_wrap {
  position: relative;
  width: 300px;
  aspect-ratio: 1/1;
  z-index: 1;
}
.diagram_wrap .dia_circles_wrap::after {
  position: absolute;
  content: "";
  width: 110%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed var(--color-accent);
  opacity: 0.5;
  z-index: -1;
}
.diagram_wrap .dia_circles_wrap div[class^="circle_"] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.diagram_wrap .dia_circles_wrap .circle_belt {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--color-accent);
  background: linear-gradient(180deg, #fbf9ff 0%, #edecf3 100%);
}
.diagram_wrap .dia_circles_wrap .circle_core {
  width: 70%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: linear-gradient(var(--color-primary) 0%, #d9be09 100%);
  box-shadow: inset 0 0 0 1px #00000022;
  filter: drop-shadow(-4px 8px 8px #00000033);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
  text-align: center;
}
.diagram_wrap .dia_circles_wrap .circle_dots {
  width: 100%;
  height: 100%;
}
.diagram_wrap .dia_circles_wrap .circle_dots.move {
  top: 0;
  left: 0;
  opacity: 0.3;
  animation-duration: 12s;
  animation-iteration-count: infinite;
  animation-name: dot-rotate;
}
.diagram_wrap .dia_circles_wrap .circle_dots.move .dot::after {
  display: none;
}
.diagram_wrap .dia_circles_wrap .circle_dots .dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent);
}
.diagram_wrap .dia_circles_wrap .circle_dots .dot:nth-child(1) {
  top: 50%;
  left: -4px;
  right: initial;
  transform: translateY(-50%);
}
.diagram_wrap .dia_circles_wrap .circle_dots .dot:nth-child(2) {
  top: 50%;
  left: initial;
  right: -4px;
  transform: translateY(-50%);
}
@keyframes dot-rotate {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* 공통적용 - 헤더 header */
header {
  width: 100%;
  height: 100px;
  padding: 0 48px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #00000033, transparent);
}
header h1 {
  flex: 1;
}
header h1 a {
  display: block;
  width: 140px;
  height: 34px;
  background: url(../img/tova_w.svg) center no-repeat;
  background-size: contain;
  background-position: left center;
}

header .language {
  color: #fff;
  padding-right: 24px;
}
header .language::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  background-image: url(../img/ico_language.svg);
  background-position: center;
  background-repeat: no-repeat;
  translate: 0 2px;
}
header .language a {
  padding: 0 5px;
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  opacity: 0.5;
}
header .language a:first-child::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  background-color: #fff;
  opacity: 0.8;
  margin-left: 10px;
}
header .language a.on {
  opacity: 1;
}

header .menu_my,
header .menu_ham,
header .menu_admin {
  padding: 10px;
  position: relative;
}
header .menu_my_list {
  display: flex;
  background: #fff;
  border-radius: 4px;
  box-sizing: border-box;
  border: 1px solid #131313;
  position: absolute;
  left: calc(25% - 60px);
  top: 50px;
  padding: 4px;
}
header .menu_my_list li {
  width: 68px;
  height: 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}
header .menu_my_list li:hover {
  background: var(--color-primary);
}
header .menu_my_list li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .menu_my_list::before {
  content: "";
  background: url(../img/tri_img.svg) no-repeat;
  background-size: cover;
  width: 12px;
  height: 10px;
  position: absolute;
  top: -9px;
  left: calc(50% - 6px);
}
header .menu_ham {
  cursor: pointer;
}
header .menu_ham a {
  display: block;
  width: 32px;
  height: 32px;
  position: relative;
}
header .menu_ham a div {
  width: 24px;
  height: 2px;
  position: absolute;
  left: 4px;
  background-color: #fff;
  transition: 0.2s;
}
header .menu_ham a div:nth-child(1) {
  top: 7px;
}
header .menu_ham a div:nth-child(2) {
  top: 15px;
}
header .menu_ham a div:nth-child(3) {
  bottom: 7px;
}

/* 공통적용 - 플로팅메뉴 floating_menu */
.floating_menu {
  position: fixed;
  top: 120px;
  right: 64px;
  z-index: 20;
}
.floating_menu li {
  width: 100px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: skew(-10deg);
  box-shadow: 4px 0px 15px #00000011;
}
.floating_menu li::after {
  content: "";
  width: 4px;
  height: 100%;
  background-color: inherit;
  position: absolute;
  top: 0;
  right: -8px;
}
.floating_menu li.floating_faq {
  background-color: #fff;
  margin-bottom: 8px;
}
.floating_menu li.floating_buy {
  background-color: var(--color-primary);
}
.floating_menu li a {
  transform: skew(10deg);
  display: block;
  font-weight: 700;
  font-size: 16px;
}
.floating_menu li a i {
  width: 24px;
  height: 24px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: none;
}
.floating_menu li.floating_faq a i {
  background-image: url(../img/ico_floating_faq_k.svg);
}
.floating_menu li.floating_buy a i {
  background-image: url(../img/ico_floating_buy.svg);
}

/* 공통적용 - 푸터 footer */
footer {
  width: 100%;
  background: #14100c;
  padding: 16px 60px;
  box-sizing: border-box;
  color: #fff;
}
footer.footer_on {
  display: block;
  animation: footer_up 0.3s ease forwards;
  position: relative;
  z-index: 100;
}
footer .footer_wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 40px;
}
footer .ceo {
  font-size: 14px;
  color: #ffffff80;
}
footer .ceo em {
  font-weight: 500;
  font-size: 18px;
  margin-left: 4px;
}
footer .comp_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
}
footer .comp_box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
footer .btn_privacy {
  font-size: 17px;
  color: #ffffff80;
  font-weight: 500;
}
footer .btn_privacy em {
  margin-right: 40px;
  position: relative;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.9;
}
footer .btn_privacy em::after {
  position: absolute;
  content: "|";
  font-weight: 300;
  font-size: 16px;
  color: #aaa;
  top: 1px;
  right: -22px;
}
footer .btn_privacy a:hover {
  color: #ffffff;
}
footer .footer_menu {
  display: flex;
  gap: 24px;
  align-items: center;
}
footer .footer_menu li {
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  white-space: nowrap;
}
footer .footer_menu li a:hover {
  color: var(--color-primary);
}
footer .footer_sitemap {
  align-self: flex-end;
  font-size: 18px;
  color: #ccc;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  align-items: center;
}
footer .footer_sitemap > span {
  display: none;
}
footer .footer_sitemap .tova_sns {
  display: flex;
  gap: 8px;
}
footer .footer_sitemap .tova_sns a {
  width: 40px;
  height: 40px;
  background-color: #2c2121;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer_sitemap .tova_sns a img {
  opacity: 0.5;
}
footer .footer_sitemap .tova_sns a:hover {
  background-color: #3d2d2d;
}
footer .footer_sitemap .tova_sns a:hover img {
  opacity: 1;
}
footer .footer_sitemap .family_wrap {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
}
footer .footer_sitemap .family_btn {
  background: #2c2121;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 160px;
}
footer .footer_sitemap .family_btn i {
  width: 12px;
  aspect-ratio: 1/1;
  background-image: url(../img/ico_angle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: scaleY(-1);
  transition: 0.2s;
}
footer .footer_sitemap:has(.family_on) .family_btn i {
  transform: scaleY(1);
}
footer .footer_sitemap .family_list {
  background: #fff;
  width: 100%;
  border-radius: 4px 4px 0 0;
  padding: 0 10px;
  box-sizing: border-box;
  box-shadow: 0px -2px 10px #00000022;
  display: none;
  position: absolute;
  bottom: 100%;
}
footer .footer_sitemap .family_list.family_on {
  display: block;
  z-index: 10000;
}
footer .footer_sitemap .family_list li {
  padding: 4px 0;
  border-bottom: 1px solid #ddd;
}
footer .footer_sitemap .family_list li {
  color: #777;
  width: 100%;
  display: block;
  font-size: 12px;
}
footer .footer_sitemap .family_list li a:hover {
  color: #000;
  font-weight: 500;
}
footer .comp_info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  max-width: 240px;
  width: 40%;
}
footer .comp_info .logo_baron {
  width: 240px;
  height: 45px;
  opacity: 0.8;
}
footer .comp_contact {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: max-content;
  gap: 42px;
}
footer .copyright {
  grid-row: 4;
  color: #ffffff80;
  font-size: 16px;
  align-self: flex-start;
  letter-spacing: 0;
}
footer .comp_copy {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0px;
  width: 100%;
  white-space: nowrap;
}
footer .address {
  color: #ffffffaa;
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 2px 24px;
  min-width: 58%;
}
footer .address em {
  font-weight: normal;
}
footer .address em.tel {
  letter-spacing: 0;
}

@keyframes footer_up {
  0% {
    bottom: -80px;
    opacity: 0.8;
  }
  100% {
    bottom: 0px;
    opacity: 1;
  }
}
@keyframes footer_down {
  0% {
    bottom: 0px;
    opacity: 1;
  }
  100% {
    bottom: -100px;
    opacity: 0;
    display: none;
  }
}
.btn_top {
  position: fixed;
  bottom: 60px;
  right: 60px;
  z-index: 10;
  width: 60px;
  height: 60px;
  background-color: #14100c;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0;
}
.btn_top::before {
  content: "";
  background: #fff;
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  top: 12px;
  left: calc(50% - 15px);
  border-radius: 20px;
}
.btn_top .arrow {
  width: 2px;
  height: 32px;
  background-color: #fff;
  position: absolute;
  bottom: 8px;
  left: 50%;
  border-radius: 20px;
}
.btn_top .arrow::after,
.btn_top .arrow::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 2px;
  background-color: #fff;
  top: 6px;
  left: 50%;
}
.btn_top .arrow::after {
  transform: translateX(calc(-50% + 6px)) rotate(45deg);
}
.btn_top .arrow::before {
  transform: translateX(calc(-50% - 6px)) rotate(-45deg);
}
.btn_top:hover .arrow {
  bottom: 14px;
  background-color: var(--color-primary);
  transition: 0.2s;
}
.btn_top:hover:before {
  background: var(--color-primary);
}
.btn_top:hover .arrow::after,
.btn_top:hover .arrow::before {
  bottom: 8px;
  background-color: var(--color-primary);
  transition: 0.2s;
}
.btn_top.topbtn_off {
  transition: opacity 0.3s;
  opacity: 0;
}
.btn_top.topbtn_on {
  transition: opacity 0.3s;
  opacity: 1;
}

/* 공통적용 - 인트로 intro */
.intro {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 120px;
  position: relative;
}
.intro::after {
  position: absolute;
  white-space: pre;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 85%;
}
.intro .top {
  width: 100%;
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.intro .top span {
  color: #fff;
  font-size: 22px;
}
.intro .keyword {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.intro .keyword i.tova_obj {
  width: 30px;
  height: 24px;
}
.intro .keyword span {
  font-weight: 700;
  font-size: 32px;
}
.intro .keyword p {
  font-size: 20px;
}

/* 공통적용 - 왼쪽고정페이지 */
.layout_fix_left {
  width: 100%;
  display: flex;
  position: relative;
}
.layout_fix_left .left {
  min-width: 700px; /* height: 100vh; */
  height: 200%;
  padding: 100px 0 0 200px;
  position: sticky;
  top: 0;
  left: 0;
  overflow: hidden;
}
.layout_fix_left .left .bg {
  width: 100%;
  height: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.layout_fix_left .left .bg.on {
  z-index: -1;
}
.layout_fix_left .left .mid_tit {
  color: #fff;
  display: block;
  opacity: 0.5;
}
.layout_fix_left .left .mid_tit.on {
  opacity: 1;
}
.layout_fix_left .right {
  width: 100%;
}

/* 공통적용 - 마우스 스크롤 마크 */
.mouse_mark {
  position: fixed;
  width: 64px !important;
  height: 64px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #370cb0cc;
  border-radius: 50%;
  transform: translate(-65%, -65%) !important;
  pointer-events: none;
  z-index: 100;
  transition: opacity 0.2s;
}
.mouse_mark span {
  position: relative;
  letter-spacing: 0.07rem;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}
.mouse_mark span::before,
.mouse_mark span::after {
  content: "";
  width: 4px;
  height: 4px;
  display: block;
  position: absolute;
  left: calc(50% - 2px);
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  animation: arrow 1.5s infinite ease;
}
.mouse_mark span::before {
  bottom: -10px;
}
.mouse_mark span::after {
  bottom: -16px;
  animation-delay: 0.35s;
}
@keyframes arrow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    margin-top: 10px;
  }
}

/* 여기서부터 개별페이지 */
/* --------------------------------- */
/* 메인 index */
/* --------------------------------- */
.wrapper:has(.main) {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.intro_wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.intro_wrap .intro_txt .txt_mask {
  overflow: hidden;
}
.intro_wrap .intro_txt .txt_mask span {
  display: block;
  font-size: 56px;
  text-align: center;
  position: relative;
  top: 80px;
}
.intro_wrap .intro_txt .txt_mask:nth-child(1) span {
  animation: txt_mask 1s ease 0s forwards;
}
.intro_wrap .intro_txt .txt_mask:nth-child(2) span {
  animation: txt_mask 1s ease 0.1s forwards;
}
.intro_wrap .intro_txt .txt_mask:nth-child(3) span {
  animation: txt_mask 1s ease 0.2s forwards;
}
@keyframes txt_mask {
  0% {
    top: 80px;
    opacity: 0;
  }
  100% {
    top: 0px;
    opacity: 1;
  }
}
.main_mask {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 100;
  top: -150px;
  clip-path: inset(50% 50% round 10px 10px 10px 10px);
  animation: clip_play .5s ease 1.5s 1 forwards;
}
@keyframes clip_play {
  0% {
    clip-path: inset(50% 50% round 10px 10px 10px 10px);
    top: -150px;
  }
  /*
  30% {
    clip-path: inset(49.5% 45% round 10px 10px 10px 10px);
    top: -150px;
  }
  60% {
    clip-path: inset(45% 45% round 10px 10px 10px 10px);
    top: -193px;
  }*/
  100% {
    clip-path: inset(0% 0% round 0px 0px 0px 0px);
    top: 0;
  }
}
.main_mask.skip {
  animation: none;
  clip-path: none;
  top: 0;
}
.main {
  width: 100%;
  height: 100%;
}
.main .btn_top {
  display: none;
}
.main .pagination_main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  text-align: center;
  position: absolute;
  bottom: calc((130 / 1080) * 100%);
  right: 24px;
  z-index: 1;
}

.main .pagination_main::before {
  content: " ";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  display: block;
  width: calc(100% + 54px);
  height: calc(100% + 48px);
  pointer-events: none;

  /* 중앙 0.4, 외곽으로 투명하게 */
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.2) 95%,
    rgba(0, 0, 0, 0) 105%
  );
  filter: blur(20px);
  border-radius: 20px;
  mix-blend-mode: multiply;
}

.main .pagination_main li {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  gap: 8px;
}
.main .pagination_main li div {
  width: max-content;
  cursor: pointer;
  position: relative;
  text-align: right;
  white-space: nowrap;
}
.main .pagination_main li img {
  height: 1em;
}
.main .pagination_main li span {
  display: block;
  width: 1.5em;
  font-size: 20px;
  color: #ffffff99;
  font-weight: 300;
  margin-left: 8px;
}
.main .pagination_main li div::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--color-primary);
  margin-top: 6px;
  opacity: 0;
  position: absolute;
  left: 0;
}
.main .pagination_main li .page_on::after {
  opacity: 1;
}
.main .main_link {
  width: 100%;
  height: 100%;
}
.main .main_link a {
  width: 100%;
  height: 100%;
  display: none;
}
.main .main_link .link_on {
  display: block;
}
.main .bg_video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100%;
  z-index: -1;
  background: #000;
  min-height: 100vh;
  min-height: 100dvh;
}
.main .bg_video video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.main footer.footer_on {
  position: absolute;
  bottom: 0;
  z-index: 100;
  background: #14100cdd;
}
.main footer.footer_off {
  animation: footer_down 0.2s ease forwards;
  display: none;
}
.main footer .footer_close {
  background: url("../img/ico_footer_close.svg") no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 40px;
  height: 36px;
  top: -36px;
  left: 0;
  cursor: pointer;
}
/* 페이지네이션 재생바 - 영상별로 재생시간 각각 설정해야함 */
.main .pagination_main .page_01.page_on::after {
  animation: page_play 12s linear 1 forwards;
}
.main .pagination_main .page_02.page_on::after {
  animation: page_play 19s linear 1 forwards;
}
.main .pagination_main .page_03.page_on::after {
  animation: page_play 21s linear 1 forwards;
}
.main .pagination_main .page_04.page_on::after {
  animation: page_play 19s linear 1 forwards;
}
.main .pagination_main.m .page_01.page_on::after {
  animation: page_play 6s linear 1 forwards;
}
.main .pagination_main.m .page_02.page_on::after {
  animation: page_play 16s linear 1 forwards;
}
.main .pagination_main.m .page_03.page_on::after {
  animation: page_play 15s linear 1 forwards;
}
.main .pagination_main.m .page_04.page_on::after {
  animation: page_play 13s linear 1 forwards;
}
@keyframes page_play {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* --------------------------------- */
/* TOVA소개 value */
/* --------------------------------- */
.value .intro {
  background-image: url(../img/value_intro_bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  color: #fff;
}
.value .intro .keyword i.tova.w {
  width: 600px;
  height: 150px;
  margin-top: 40px;
}
.value .intro .keyword span.full {
  font-size: 40px;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: -20px;
}
.value .intro .keyword span.full em {
  color: var(--color-primary);
}
.value .intro .summarys_wrap {
  width: 52%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
  margin: 100px auto;
}
.value .intro .summarys_wrap img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: center;
}
.value .intro .summarys_wrap p {
  font-size: 24px;
  line-height: 160%;
  text-align: left;
}
.value .intro .summarys_wrap p span {
  text-align-last: initial;
}
.value .intro .summarys_wrap p:first-child {
  align-self: flex-start;
  text-align: right;
}
.value .intro .summarys_wrap p:last-child {
  align-self: flex-end;
}
.value .feature_intro {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url(../img/value_feature_bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.value .feature_intro .grand_tit {
  width: 100%;
}
.value .feature_intro p {
  font-size: 24px;
  line-height: 160%;
}
.value .feature_intro .line {
  width: 1px;
  height: 500px;
  position: absolute;
  top: 65%;
  left: calc(50% - 1px);
  background-color: #aaa;
}
.value .feature_intro .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #555;
  position: absolute;
  top: 65%;
  left: calc(50% - 3px);
}

.value .features {
  width: 100%;
  height: 100vh;
  display: flex;
  gap: 40px;
  padding: 100px 20px 20px;
  position: relative;
  overflow: hidden;
}
.value .features .f_wrap {
  width: 100%;
  height: 100%;
  border-radius: 0px;
  padding: 0px 48px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: all 1s;
  background-color: #000;
  z-index: 1;
}
.value .features .f_wrap::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 1s;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(#000000bb 0%, #00000011 100%);
}
.value .features .f_wrap i {
  width: 48px;
  aspect-ratio: 1/1;
}
.value .features .f_wrap .sub_tit {
  color: #fff;
}
.value .features .f_wrap .sub_text {
  width: 100%;
  height: 320px;
  color: #ffffff55;
  font-weight: normal;
  text-align: left;
  line-height: 32px;
  transition: all 1s;
}
.value .features .f_wrap:hover {
  padding-bottom: 100px;
}
.value .features .f_wrap:hover::before {
  transform: scale(1.03);
}
.value .features .f_wrap:hover .sub_text {
  color: #ffffff;
}
.value .features .public::before {
  background-image: url(../img/value_feature_public_bg.jpg);
}
.value .features .frog::before {
  background-image: url(../img/value_feature_frog_bg.jpg);
}
.value .features .ktdb::before {
  background-image: url(../img/value_feature_ktdb_bg.jpg);
}
.value .features .user::before {
  background-image: url(../img/value_feature_user_bg.jpg);
}
.value .features .public i {
  background-image: url(../img/ico_value_public_w.svg);
}
.value .features .frog i {
  background-image: url(../img/ico_value_frog_w.svg);
}
.value .features .ktdb i {
  background-image: url(../img/ico_value_ktdb_w.svg);
}
.value .features .user i {
  background-image: url(../img/ico_value_user_w.svg);
}

@keyframes card1 {
  20% {
    transform: rotateY(0deg);
  }
  70% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(180deg);
  }
}
@keyframes card2 {
  40% {
    transform: rotateY(180deg);
  }
  90% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes card3 {
  30% {
    transform: rotateY(0deg);
  }
  80% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(180deg);
  }
}
@keyframes card4 {
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes noPoints {
  to {
    pointer-events: initial;
  }
}
.value .features .lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.value .features .lines.move_ani * {
  animation-duration: 1s;
  animation-fill-mode: both;
  position: absolute;
}
.value .features .lines.move_ani div[class^="v"] {
  top: 80px;
  border-left: 1px solid #aaa;
  width: 1px;
  height: 0;
}
.value .features .lines.move_ani div[class^="d"] {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #555;
}
.value .features .lines.move_ani .h {
  border: 1px solid #aaa;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: calc(100% - 80px);
  border-left: 0;
  border-right: 0;
  animation-name: h-draw;
}
.value .features .lines.move_ani .v1 {
  left: calc(50% - 1px);
  animation-name: v-center;
}
.value .features .lines.move_ani .v2 {
  left: 25%;
  animation-name: v-side;
}
.value .features .lines.move_ani .v3 {
  left: 75%;
  animation-name: v-side;
}
.value .features .lines.move_ani .d1 {
  animation-name: dot-center;
}
.value .features .lines.move_ani .d2 {
  animation-name: dot-side-left;
}
.value .features .lines.move_ani .d3 {
  animation-name: dot-side-right;
}
@keyframes h-draw {
  0% {
    width: 0;
  }
  30% {
    width: 0;
  }
  70% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}

@keyframes v-center {
  0% {
    top: 0;
  }
  30% {
    top: 0;
    height: 80px;
  }
  100% {
    top: 0;
    height: 100%;
  }
}

@keyframes v-side {
  0% {
    height: 0;
  }
  70% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

@keyframes dot-center {
  0% {
    top: 0;
    left: calc(50% - 3px);
  }
  30% {
    top: calc(80px - 3px);
    left: calc(50% - 3px);
  }
  100% {
    top: calc(80px - 3px);
    left: calc(50% - 3px);
  }
}

@keyframes dot-side-left {
  0% {
    top: 0;
    left: calc(50% - 3px);
  }
  30% {
    top: calc(80px - 3px);
    left: calc(50% - 3px);
  }
  70% {
    top: calc(80px - 3px);
    left: calc(25% - 3px);
  }
  100% {
    top: calc(80px - 3px);
    left: calc(25% - 3px);
  }
}

@keyframes dot-side-right {
  0% {
    top: 0;
    left: calc(50% - 3px);
  }
  30% {
    top: calc(80px - 3px);
    left: calc(50% - 3px);
  }
  70% {
    top: calc(80px - 3px);
    left: calc(75% - 3px);
  }
  100% {
    top: calc(80px - 3px);
    left: calc(75% - 3px);
  }
}
.value .system_bg {
  width: 100%;
  height: 0;
  position: sticky;
  top: 0;
  left: 0;
  z-index: -1;
}
.value .system_bg::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100vh;
  background-image: url(../img/value_system_bg.jpg);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.value .system {
  width: 100%;
  height: 1000px;
  overflow: hidden;
  position: relative;
}
.value .system .system_tit {
  width: 100%;
  height: 300px;
  background-color: #fff;
  padding-left: 200px;
}
.value .system .system_tit span {
  display: block;
  transform: translateY(141%);
  font-size: 88px;
  line-height: 90%;
  font-weight: 900;
}
.value .system .system_tit span em {
  color: #fff;
}

.value .system .diagram_wrap {
  width: 360px;
  aspect-ratio: 1/1;
  position: absolute;
  bottom: 100px;
  right: 24%;
}
.value .system .diagram_wrap .dia_circles_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.value .system .diagram_wrap .dia_circles_wrap::after {
  border: 1px solid #fff;
  background-color: #5b4326dd;
  width: 120%;
  height: 120%;
}
.value .system .diagram_wrap .dia_circles_wrap .circle_belt {
  background: none;
  border: 1px dashed #fff;
}
.value .system .diagram_wrap .dia_circles_wrap .circle_core {
  background: none;
  box-shadow: none;
  width: 100%;
  height: 100%;
}
.value .system .diagram_wrap .dia_circles_wrap .circle_core span {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  line-height: 130%;
  border-radius: 50%;
  width: 52%;
  height: 52%;
  color: #fff;
  box-shadow: 0 1px 4px #00000077;
}
.value .system .diagram_wrap .dia_circles_wrap .circle_core span:nth-child(1) {
  background: linear-gradient(var(--color-primary) 0%, #ffde0099 80%);
  top: 0;
  z-index: 2;
}
.value .system .diagram_wrap .dia_circles_wrap .circle_core span:nth-child(2) {
  background: linear-gradient(60deg, var(--color-accent) 0%, #370cb099 80%);
  bottom: 10%;
  left: 5%;
  z-index: 0;
}
.value .system .diagram_wrap .dia_circles_wrap .circle_core span:nth-child(3) {
  background: linear-gradient(-60deg, #317212 0%, #31721299 80%);
  bottom: 10%;
  right: 5%;
  z-index: 1;
}
.value .system .diagram_wrap .dia_circles_wrap .circle_core span:nth-child(4) {
  top: -3%;
  right: -31%;
  text-align: left;
  line-height: 26px;
  box-shadow: none;
}
.value .system .diagram_wrap .dia_circles_wrap .circle_dots .dot {
  background-color: #fff;
}
.value .system .diagram_wrap .dia_circles_wrap .circle_dots.move {
  animation-name: dot-rotate3;
}
.value .system .diagram_wrap .dia_circles_wrap .circle_dots .dot:nth-child(1) {
  top: 0;
  left: calc(50% - 4px);
}
.value .system .diagram_wrap .dia_circles_wrap .circle_dots .dot:nth-child(2) {
  top: initial;
  bottom: 23%;
  left: 6%;
}
.value .system .diagram_wrap .dia_circles_wrap .circle_dots .dot:nth-child(3) {
  top: initial;
  bottom: 23%;
  right: 6%;
}
.value .system .diagram_wrap .dia_circles_wrap .circle_dots .dot:nth-child(4) {
  top: 32%;
  left: initial;
  right: -9%;
}
@keyframes dot-rotate3 {
  0% {
    transform: rotate(0);
  }
  35% {
    transform: rotate(120deg);
  }
  70% {
    transform: rotate(240deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.value .system .diagram_wrap .dia_element {
  position: absolute;
  display: initial;
  width: max-content;
}
.value .system .diagram_wrap .dia_element .dia_text {
  color: #fff;
}
.value .system .diagram_wrap .dia_element .dia_text li {
  padding: 0;
}
.value .system .diagram_wrap .dia_element .dia_text li::before {
  display: none;
}
.value .system .diagram_wrap .e01 .dia_text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: right;
  column-gap: 16px;
}
.value .system .diagram_wrap .e01 {
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
}
.value .system .diagram_wrap .e02 {
  bottom: -3%;
  right: 116%;
  text-align: right;
}
.value .system .diagram_wrap .e03 {
  bottom: -7%;
  left: 115%;
}
.value .system .diagram_wrap .e04 {
  top: 29.5%;
  left: 123%;
}
.value .system .diagram_wrap .dia_element .line {
  position: absolute;
  width: 72px;
  height: 1px;
  background-color: #fff;
  z-index: 10;
}
.value .system .diagram_wrap .e01 .line {
  width: 1px;
  height: 50px;
  top: 110%;
  left: 50%;
}
.value .system .diagram_wrap .e02 .line {
  top: 50%;
  left: 110%;
  transform: rotate(-30deg);
}
.value .system .diagram_wrap .e03 .line {
  top: 35%;
  right: 110%;
  transform: rotate(30deg);
}
.value .system .diagram_wrap .e04 .line {
  width: 40px;
  top: 21%;
  right: 105%;
}

.value .screen {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 12vh;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.value .screen.m {
  display: none;
}
.value .screen .bg {
  position: absolute;
  width: 80%;
  height: 100%;
  top: 0;
  left: 200px;
  background: linear-gradient(
    180deg,
    transparent 20%,
    var(--color-primary) 100%
  );
  transform: skew(35deg);
  z-index: -1;
}
.value .screen::after,
.value .screen::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/value_screen_bg.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
}
.value .screen::after {
  top: 300px;
  left: 420px;
  z-index: -1;
}
.value .screen::before {
  transform: rotate(-180deg);
  top: -200px;
  left: -400px;
  z-index: -1;
}
.value .screen .grand_tit {
  width: 100%;
  text-align: center;
}
.value .screen .tip {
  display: block;
  position: relative;
  width: fit-content;
  margin: 16px auto 0;
  padding: 2px 10px 2px 40px;
  font-size: 16px;
  font-weight: 500;
  background-color: #0000000f;
  border-radius: 4px;
}
.value .screen .tip::after {
  position: absolute;
  content: "";
  top: 8px;
  left: 12px;
  width: 18px;
  height: 18px;
  background-image: url(../img/ico_value_screen.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.value .screen .btn_show {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 60px);
  left: calc(50% - 60px);
  background-color: #000;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 22px;
  opacity: 0;
}
.value .screen .btn_show::after {
  position: absolute;
  content: "All\AView";
  text-align: left;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
  white-space: pre;
}
.value .screen .btn_show .arrow {
  width: 28px;
  height: 1px;
  background-color: var(--color-primary);
  position: relative;
  transition: 0.2s;
}
.value .screen .btn_show .arrow::after,
.value .screen .btn_show .arrow::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 12px;
  height: 1px;
  background-color: var(--color-primary);
  transform-origin: bottom right;
}
.value .screen .btn_show .arrow::after {
  transform: rotate(45deg);
}
.value .screen .btn_show .arrow::before {
  transform: rotate(-45deg);
}
.value .screen .btn_show:hover {
  z-index: 10;
}
.value .screen .btn_show.on {
  z-index: 10;
}
.value .screen .btn_show.on::after {
  content: "설명\A닫기";
}
.value .screen .btn_show.on .arrow {
  transform: scaleX(-1);
}
.value .screen:has(.btn_show.on) .guide.full ul {
  pointer-events: none;
}
.value .screen .guide {
  width: 78%;
  aspect-ratio: 16/9;
  position: absolute;
  bottom: 50%;
  _transform: translateY(70%), scale(0.5);
  filter: drop-shadow(0 50px 60px #00000077);
  background-image: url(../img/value_screen1.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
/* 확대gif scale_ani */
.value .screen .guide .scale_ani {
  position: absolute;
  top: 42%;
  left: 52.2%;
}
.value .screen .guide .scale_ani i {
  width: 32px;
  height: 32px;
  background-image: url(../img/ico_value_cursor.svg);
  position: absolute;
  margin-top: 8px;
  z-index: 1;
}
.value .screen .guide .scale_ani > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  aspect-ratio: 1/1;
  opacity: 0;
  animation-duration: 1.8s;
  animation-iteration-count: infinite;
}
.value .screen .guide .scale_ani .s {
  width: 80px;
  background-color: var(--color-primary);
  animation-name: scaleAniS;
}
.value .screen .guide .scale_ani .m {
  width: 120px;
  background-color: var(--color-primary);
  animation-name: scaleAniM;
}
.value .screen .guide .scale_ani .l {
  width: 160px;
  background-color: var(--color-primary);
  animation-name: scaleAniL;
}
@keyframes scaleAniS {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes scaleAniM {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 0.4;
  }
  75% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.4;
  }
}
@keyframes scaleAniL {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.2;
  }
}
/* 메뉴 설명 ul li */
.value .screen .guide ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.value .screen .guide ul li {
  position: absolute;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.value .screen .guide ul li::before {
  display: none;
}
.value .screen .guide ul li .menu_tit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
  background-color: var(--color-primary);
  width: fit-content;
  height: fit-content;
  font-size: 18px;
  line-height: 100%;
  font-weight: 700;
  border-radius: 4px;
}
.value .screen .guide ul li .menu_tit span {
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  border-radius: 2px;
  font-size: 14px;
  padding-bottom: 1px;
  color: var(--color-primary);
}
.value .screen .guide ul li .menu_text {
  width: max-content;
  height: max-content;
  padding: 4px 8px;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  text-align: left;
  border-radius: 4px;
  position: relative;
  font-size: 16px;
  pointer-events: none;
  z-index: 100;
  filter: drop-shadow(-1px 0px 0px black) drop-shadow(0px -1px 0px black)
    drop-shadow(1px 0px 0px black) drop-shadow(0px 1px 0px black);
}
.value .screen .guide ul li .menu_text::after {
  position: absolute;
  content: "▲";
  top: -16px;
  left: 12px;
  color: #fff;
  font-size: 12px;
}
.value .screen .guide ul li:hover .menu_text {
  display: flex;
}
.value .screen .guide ul li:nth-of-type(1) {
  top: 10px;
  left: 53%;
}
.value .screen .guide ul li:nth-of-type(2) {
  top: 34px;
  left: 32%;
}
.value .screen .guide ul li:nth-of-type(3) {
  top: 50%;
  left: 127px;
}
.value .screen .guide ul li:nth-of-type(4) {
  top: 85%;
  left: 100px;
}
.value .screen .guide ul li:nth-of-type(5) {
  top: 40%;
  left: 50%;
}
.value .screen .guide ul li:nth-of-type(6) {
  top: 5%;
  right: 68px;
}
.value .screen .guide ul li:nth-of-type(7) {
  top: 65%;
  right: 68px;
  align-items: flex-end;
}
.value .screen .guide ul li:nth-of-type(7) .menu_text::after {
  left: initial;
  right: 10px;
}
.value .screen .guide ul li:nth-of-type(8) {
  bottom: 3%;
  left: 78%;
}
.value .screen .guide ul li:nth-of-type(6) {
  flex-direction: row-reverse;
  gap: 10px;
}
.value .screen .guide ul li:nth-of-type(6) .menu_text::after {
  content: "▶";
  top: 0px;
  left: initial;
  right: -7px;
}
.value .screen .guide ul li:nth-of-type(8) {
  flex-direction: column-reverse;
}
.value .screen .guide ul li:nth-of-type(8) .menu_text::after {
  content: "▼";
  top: initial;
  bottom: -14px;
}
/* 확대했을 때 guide full */
.value .screen .guide.full .scale_ani {
  display: none;
}
.value .screen .guide.full ul {
  pointer-events: initial;
}
.value .screen .guide.full .dim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000033;
  display: none;
  z-index: 5;
}
.value .screen .guide.full .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: none;
  z-index: 10;
}
.value .screen .guide.full div[class*="li"] {
  background-image: url(../img/value_screen1.png);
}
.value .screen .guide.full .mask.li1 {
  clip-path: inset(2.2% 46% 96% 0%);
}
.value .screen .guide.full .mask.li2 {
  clip-path: polygon(
    15.2% 2.2%,
    21.1% 2.2%,
    21.1% 3.9%,
    31.1% 3.9%,
    31.1% 40.4%,
    15.2% 40.4%
  );
  background-image: url(../img/value_screen2.png);
}
.value .screen .guide.full .mask.li3 {
  clip-path: inset(7.5% 83% 18% 0);
}
.value .screen .guide.full .mask.li4 {
  clip-path: inset(81.9% 83% 1.8% 0);
}
.value .screen .guide.full .mask.li5 {
  clip-path: inset(9.8% 13.2% 28.5% 17.5%);
}
.value .screen .guide.full .mask.li6 {
  clip-path: inset(9.8% 0 78.2% 87.2%);
}
.value .screen .guide.full .mask.li7 {
  clip-path: inset(22.2% 0 36% 87.2%);
}
.value .screen .guide.full .mask.li8 {
  clip-path: inset(71.2% 13.2% 1.8% 17.5%);
}
.value .screen:has(.guide.show_ani) * {
  pointer-events: none;
}
.value .screen .guide.show_ani * {
  animation-duration: 3s;
}
.value .screen .guide.show_ani {
  background-image: url(../img/value_screen2.png) !important;
}
.value .screen .guide.show_ani .dim {
  display: block;
}
.value .screen .guide.show_ani .mask {
  display: block !important;
  animation-name: show-mask-lis1;
  background-image: url(../img/value_screen2.png);
}
.value .screen .guide.show_ani ul li:nth-of-type(-n + 4) {
  animation-name: show-z-lis1;
}
.value .screen .guide.show_ani ul li:nth-of-type(-n + 4) .menu_text {
  animation-name: show-text-lis1;
  display: flex;
}
.value .screen .guide.show_ani ul li:nth-of-type(n + 5):nth-of-type(-n + 8) {
  animation-name: show-z-lis2;
}
.value
  .screen
  .guide.show_ani
  ul
  li:nth-of-type(n + 5):nth-of-type(-n + 8)
  .menu_text {
  animation-name: show-text-lis2;
  display: flex;
}
@keyframes show-mask-lis1 {
  0% {
    clip-path: polygon(
      0% 2.2%,
      54% 2.2%,
      54% 3.9%,
      31.1% 3.9%,
      31.1% 40.4%,
      17% 40.4%,
      17% 98.2%,
      0% 98.2%
    );
  }
  45% {
    clip-path: polygon(
      0% 2.2%,
      54% 2.2%,
      54% 3.9%,
      31.1% 3.9%,
      31.1% 40.4%,
      17% 40.4%,
      17% 98.2%,
      0% 98.2%
    );
  }
  50% {
    clip-path: inset(9.8% 0 1.8% 17.5%);
  }
  100% {
    clip-path: inset(9.8% 0 1.8% 17.5%);
  }
}

@keyframes show-z-lis1 {
  0% {
    z-index: 100;
  }
  45% {
    z-index: 100;
  }
  50% {
    z-index: initial;
  }
  100% {
    z-index: initial;
  }
}

@keyframes show-z-lis2 {
  0% {
    z-index: initial;
  }
  45% {
    z-index: initial;
  }
  50% {
    z-index: 100;
  }
  100% {
    z-index: 100;
  }
}

@keyframes show-text-lis1 {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes show-text-lis2 {
  0% {
    opacity: 0;
  }
  45% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

/* --------------------------------- */
/* 주요기능 primary */
/* --------------------------------- */
.primary .sub_text {
  text-align: justify;
  line-height: 1.4em;
}
.primary .intro {
  padding-bottom: 200px;
}
.primary .intro::after {
  bottom: -4px;
  left: 16px;
  content: "Key Features";
  font-size: 140px;
  opacity: 0.03;
  text-align: right;
}
.primary .intro .top {
  background-image: url(../img/primary_intro_bg.jpg);
}
.primary .intro .keyword em {
  display: inline-block;
  margin-top: 8px;
}
.primary .intro .diagram_wrap {
  width: 480px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  position: relative;
  background-image: url(../img/atom_obj.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}
.primary .intro .diagram_wrap::after {
  content: "";
  position: absolute;
  width: 102.2%;
  aspect-ratio: 1/1;
  top: -6px;
  left: 0;
  background-image: url(../img/atom_line.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  mix-blend-mode: soft-light;
}
.primary .intro .diagram_wrap .dia_circles_wrap {
  width: 100%;
  z-index: -1;
}
.primary .intro .diagram_wrap .dia_circles_wrap::after {
  display: none;
}
.primary .intro .diagram_wrap .circle_core {
  width: 52%;
  aspect-ratio: 1/1;
  padding-top: 20px;
}
.primary .intro .diagram_wrap .circle_core span {
  font-size: 24px;
  line-height: 120%;
  width: 100%;
  font-weight: 700;
}
.primary .intro .diagram_wrap .circle_dots .dot {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #b8afd2;
  color: #b8afd2;
}
.primary .intro .diagram_wrap .circle_core span font.tova.k {
  font-size: 52px;
}
.primary .intro .diagram_wrap .circle_dots .dot:nth-child(1) {
  top: 7%;
  left: 39%;
}
.primary .intro .diagram_wrap .circle_dots .dot:nth-child(2) {
  top: 80.5%;
  left: 20%;
}
.primary .intro .diagram_wrap .circle_dots .dot:nth-child(3) {
  top: 62.5%;
  right: 7%;
}
.primary .intro .diagram_wrap .circle_dots .dot::before {
  content: "";
  width: inherit;
  height: inherit;
  border-radius: inherit;
  position: absolute;
  z-index: -10;
  opacity: 0;
  animation: 2s expand cubic-bezier(0.29, 0, 0, 1) infinite;
  border: 2px solid;
}
@keyframes expand {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  99% {
    width: 500%;
    height: 500%;
    opacity: 0;
  }
  100% {
    opacity: 0;
    border-color: transparent;
  }
}
.primary .intro .diagram_wrap .dia_element {
  position: absolute;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 16px;
  text-align: right;
  font-size: 16px;
}
.primary .intro .diagram_wrap .dia_element i {
  width: 40px;
  aspect-ratio: 1/1;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.primary .intro .diagram_wrap .e01 {
  top: 0%;
  left: -14%;
}
.primary .intro .diagram_wrap .e02 {
  bottom: 6%;
  left: -25%;
}
.primary .intro .diagram_wrap .e03 {
  bottom: 30%;
  right: -40%;
  flex-direction: row;
  text-align: left;
}
.primary .intro .diagram_wrap .e01 i {
  background-image: url(../img/ico_dia_network.svg);
}
.primary .intro .diagram_wrap .e02 i {
  background-image: url(../img/ico_dia_public.svg);
}
.primary .intro .diagram_wrap .e03 i {
  background-image: url(../img/ico_dia_data.svg);
}

.primary .key {
  padding-bottom: 160px;
  padding-top: 320px;
  gap: 48px;
}
.primary .key .left {
  overflow: initial;
  z-index: 10;
  min-width: 680px;
}
.primary .key .left .mid_tit {
  width: calc(100vw - 200px);
  max-width: 1720px;
  height: 500px;
  transform: translateY(-320px);
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.primary .key .left .mid_tit span {
  position: absolute;
  bottom: -70px;
  left: 200px;
}
.primary .key .left .mid_tit span em {
  color: #000;
}
.primary .key .left ul {
  padding-top: 200px;
  _padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.primary .key .left ul li {
  font-size: 20px;
  font-weight: 300;
  display: flex;
  cursor: pointer;
}
.primary .key .left ul li:hover,
.primary .key .left ul li.on {
  font-size: 24px;
  color: var(--color-accent);
  font-weight: 700;
}
.primary .key .left ul li em {
  margin-right: 12px;
  color: inherit;
  font-weight: inherit;
}
.primary .key .left ul li span {
  display: inline-block;
  text-indent: -30px;
  padding-left: 18px;
  margin-left: 10px;
}
.primary .key .left ul li:hover span,
.primary .key .left ul li.on span {
  text-indent: -38px;
  padding-left: 20px;
}
.primary .key .right {
  padding: 300px 200px 80px 0;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.primary .key .right .sub_tit {
  margin-bottom: 20px;
}
.primary .key .right .sub_text {
  text-align: initial;
  margin-bottom: 32px;
}
.primary .key .right .sub_figs {
  background: #370cb00f;
  width: 100%;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 2.5fr 1fr;
}
.primary .key .right .sub_figs img,
.primary .key .right .sub_figs object {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.primary .key .right .fig_tit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  font-size: 14px;
  font-weight: 500;
  background-color: #000000bb;
  color: #fff;
  padding: 4px 0 4px;
}
.primary .key .right .fig_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.primary .key .right .top_text {
  font-size: 18px;
  font-weight: 500;
}
.primary .key .right .bottom_text {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.primary .key .right .bottom_text li {
  position: relative;
  padding-left: 24px;
}
.primary .key .right .bottom_text li::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url("../img/ico_network_bulit.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  aspect-ratio: 1/1;
}
.primary .key .right .hori_line {
  width: 90%;
  height: 12px;
  border-top: 1px solid #000;
  margin: 16px 0;
  position: relative;
}
.primary .key .right .hori_line::after {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 12px solid #000000;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
.primary .net.now .right {
  padding-top: 0;
  padding-left: 680px;
}
.primary .net.now .left .mid_tit {
  max-width: initial;
}
.primary .net.now .left {
  position: fixed;
  top: 0;
}
.primary .net .left .mid_tit {
  background-image: url(../img/primary_01.png);
}
.primary .net .net01 .sub_figs {
  grid-template-columns: 2fr 1fr 1fr;
}
.primary .net .net01 .before {
  width: 100%;
  height: 100%;
  display: flex;
  border: 2px dashed #000;
  border-radius: 4px;
  position: relative;
}
.primary .net .net01 .before img {
  width: 50%;
}
.primary .net .net01 .before .fig_tit {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
}
.primary .net .net01 .before .fig_tit:nth-child(2) {
  right: 0;
  left: initial;
  border-left: 1px solid #fff;
}
.primary .net .net01 .before i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 100px;
  border: 2px solid #fff;
  background-image: url(../img/ico_sync.svg);
  background-size: 60%;
  background-position: center;
  background-color: var(--color-primary);
}
.primary .net .net01 .fig_info {
  width: 100%;
  position: relative;
}
.primary .net .net01 .fig_info .comment {
  text-align: center;
  position: absolute;
  margin: 0 auto;
  display: block;
  width: 100%;
  top: 12%;
}
.primary .net .net01 .fig_info .arrow_text {
  align-self: center;
}
.primary .net .net01 .after {
  width: 100%;
  border: 2px solid var(--color-accent);
  border-radius: 4px;
  position: relative;
}
.primary .net .net01 .after .fig_tit {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  line-height: 16px;
  text-align: center;
  background-color: var(--color-accent);
}
.primary .net .net01 .arrow_text {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 700;
  z-index: 1;
}
.primary .net .net01 .arrow_text::after {
  position: absolute;
  content: "";
  top: calc(50% - 4px);
  right: 0;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 12px solid #000000;
}
.primary .net .net01 .arrow_text::before {
  position: absolute;
  top: 51%;
  left: 0;
  content: "";
  width: 99%;
  height: 1px;
  background-color: #000;
  z-index: -1;
}
.primary .net .net01 .arrow_text span {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  padding: 4px 16px;
  border-radius: 4px;
  text-align: center;
  width: 80%;
}
.primary .net .net02 .fig_info .top_text {
  background: #ddd;
  border: 1px dashed #000;
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.primary .net .net02 .fig_info .top_text img {
  width: 24px;
  object-fit: contain !important;
}
.primary .net .net02 .fig_info .top_text span {
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}
.primary .net .net02 .fig_info .arrow {
  position: relative;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.primary .net .net02 .fig_info .arrow::after {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid #000000;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}
.primary .net .net02 .fig_info .arrow::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 99%;
  border-left: 1px dashed #000;
}
.primary .net .net02 .fig_info .arrow span {
  font-size: 14px;
  padding-right: 60px;
  font-weight: 500;
}
.primary .net .net02 .fig_info .arrow.solid::before {
  border-left: 1px solid #000;
}
.primary .net .net02 .fig_info .mid_text {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
  height: 56px;
  position: relative;
}
.primary .net .net02 .fig_info .mid_text span {
  font-weight: 700;
  position: absolute;
  left: -46px;
}
.primary .net .net02 .fig_info .mid_text .link {
  width: max-content;
  height: fit-content;
  padding: 4px 16px;
  background-color: #000;
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 20px;
  z-index: 1;
  position: relative;
}
.primary .net .net02 .fig_info .mid_text .link img {
  width: 24px;
}
.primary .net .net02 .fig_info .mid_text .back {
  position: absolute;
  bottom: 72%;
  left: initial;
  right: -30%;
  width: fit-content;
  height: fit-content;
  color: #777;
  font-size: 14px;
}
.primary .net .net02 .fig_info .mid_text .back::after {
  content: "";
  position: absolute;
  top: 120%;
  left: -75%;
  width: 90px;
  height: 24px;
  background: #ddd;
  border: 1px dashed #00000033;
  border-radius: 20px;
}
.primary .net .net02 .fig_info .bottom_text {
  margin-top: 16px;
}
.primary .net .net02 .fig_info .bottom_text li {
  padding-left: 30px;
}
.primary .net .net02 .fig_info .bottom_text li::before {
  width: 20px;
}
.primary .net .net02 .fig_info .bottom_text li:nth-child(1)::before {
  background-image: url("../img/ico_way.svg");
}
.primary .net .net02 .fig_info .bottom_text li:nth-child(2)::before {
  background-image: url("../img/ico_change.svg");
}
.primary .net .net03 .fig_info img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}

.primary .pub .left .mid_tit {
  background-image: url(../img/primary_02.png);
  left: calc(176px - 12px);
  width: calc(100vw - 176px);
  max-width: 1744px;
}
.primary .pub .left .mid_tit span {
  left: 24px !important;
}
.primary .pub .right .sub_figs .pub_search {
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url(../img/asset_search.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.primary .pub .pub01 .img_wrap {
  position: relative;
}
.primary .pub .pub01 .img_wrap .pub_search {
  top: 40%;
  left: 42%;
  animation: searchMove 3s ease infinite;
}
.primary .pub .pub01 .fig_info .top_text {
  text-align: center;
  white-space: nowrap;
}
.primary .pub .pub01 .fig_info .bottom_text li {
  line-height: 140%;
  padding-left: 52px;
}
.primary .pub .pub01 .fig_info .bottom_text li::before {
  background-image: url("../img/ico_primary_pub01.svg");
  width: 40px;
}
.primary .pub .pub02 .img_wrap {
  position: relative;
}
.primary .pub .pub02 .img_wrap .pri_pub_slide_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.primary .pub .pub02 .img_wrap .pri_pub_slide_img {
  display: none;
}
.primary .pub .pub02 .img_wrap .pri_pub_slide_img.img_li_on {
  display: block;
}
.primary .pub .pub02 .fig_info .top_text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.primary .pub .pub02 .fig_info .top_text li {
  cursor: pointer;
  background-color: #ffffffaa;
  display: flex;
  gap: 8px;
  width: 100%;
  align-items: center;
  padding: 4px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -1px;
  border: 1px solid #fff;
}
.primary .pub .pub02 .fig_info .top_text li:hover {
  background-color: #fff;
}
.primary .pub .pub02 .fig_info .top_text li img {
  width: 24px;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.primary .pub .pub02 .fig_info .bottom_text li {
  line-height: 140%;
  padding-left: 52px;
}
.primary .pub .pub02 .fig_info .bottom_text li::before {
  background-image: url("../img/ico_primary_pub02.svg");
  width: 40px;
}
.primary .pub .pub03 .img_wrap {
  position: relative;
}
.primary .pub .pub03 .img_wrap .pub_search {
  top: 50%;
  left: 48%;
  animation: searchMove 3s ease infinite;
}
.primary .pub .pub03 .fig_info .top_text {
  text-align: center;
}
.primary .pub .pub03 .fig_info .bottom_text li {
  line-height: 140%;
  padding-left: 52px;
}
.primary .pub .pub03 .fig_info .bottom_text li::before {
  background-image: url("../img/ico_primary_pub03.svg");
  width: 40px;
}
.primary .pub .pub04 .fig_info img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}
.primary .pub .pub04 .fig_info .bottom_text li {
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -1px;
}
.primary .pub .pub04 .fig_info .bottom_text li::before {
  top: 4px;
  transform: initial;
}
@keyframes searchMove {
  0% {
    transform: translate(00px, 00px);
  }
  25% {
    transform: translate(80px, 20px);
  }
  50% {
    transform: translate(50px, 50px);
  }
  75% {
    transform: translate(30px, -20px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.primary .pub.now .right {
  padding-top: 0;
  padding-left: 680px;
}
.primary .pub.now .left .mid_tit {
  max-width: initial;
}
.primary .pub.now .left {
  position: fixed;
  top: 0;
}

.primary .zone .left .mid_tit {
  background-image: url(../img/primary_03.png);
}
.primary .zone .zone01 .sub_figs {
  gap: 16px;
  position: relative;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.primary .zone .zone01 .sub_figs > div {
  position: relative;
  border-radius: 4px;
}
.primary .zone .zone01 .before {
  border: 2px solid #000;
}
.primary .zone .zone01 .fig_tit {
  position: absolute;
  bottom: 0;
  left: 0;
}
.primary .zone .zone01 .after {
  border: 2px solid var(--color-accent);
}
.primary .zone .zone01 .after .fig_tit {
  background-color: var(--color-accent);
}
.primary .zone .zone01 .arrow {
  position: absolute;
  top: 50%;
  right: -15px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #000000;
}
.primary .zone .zone01 .fig_info {
  padding: 16px 0px;
  justify-content: space-between;
  height: 100%;
  position: relative;
}
.primary .zone .zone01 .fig_info .top_text {
  width: 100%;
  font-weight: 700;
}
.primary .zone .zone01 .fig_info img {
  object-fit: contain;
  object-position: center;
  height: 60%;
}
.primary .zone .zone01 .fig_info .comment {
  text-align: center;
}
.primary .zone .zone01 .fig_info::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 92%;
  top: 4%;
  right: -8px;
  background-color: #ccc;
}
.primary .zone .zone01 .fig_info:last-child::after {
  display: none;
}
.primary .zone .zone02 .fig_info .top_text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}
.primary .zone .zone02 .fig_info .top_text li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
}
.primary .zone .zone02 .fig_info .top_text img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.primary .zone .zone02 .fig_info .bottom_text li {
  padding: 0;
}
.primary .zone .zone02 .fig_info .bottom_text li::before {
  display: none;
}
.primary .zone .zone03 .fig_info .top_text {
  text-align: center;
}
.primary .zone .zone03 .fig_info .bottom_text li {
  line-height: 140%;
  padding-left: 48px;
}
.primary .zone .zone03 .fig_info .bottom_text li::before {
  background-image: url("../img/ico_refresh.svg");
  width: 32px;
}

.primary .zone.now {
  padding-top: 0;
}
.primary .zone.now .right {
  padding-top: 0;
  padding-left: 680px;
}
.primary .zone.now .left .mid_tit {
  max-width: initial;
}
.primary .zone.now .left {
  position: fixed;
  top: 0;
}

/* --------------------------------- */
/* 공로분석 road */
/* --------------------------------- */
.road .intro::after {
  bottom: -4px;
  right: 200px;
  content: "Road\A Analysis";
  font-size: 140px;
  opacity: 0.03;
  text-align: right;
}
.road .intro .top {
  background-image: url(../img/road_intro_bg.jpg);
}
.road .intro .condition {
  margin: 0 auto;
  text-align: center;
}
.road .intro .condition .diagram_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  height: 300px;
  margin: 60px 0;
}
.road .intro .condition .diagram_wrap .dia_element {
  width: 200px;
  height: 50%;
  gap: 8px;
  justify-content: flex-start;
}
.road .intro .condition .diagram_wrap .dia_element .line {
  width: 40px;
  height: 1px;
  top: calc(50% - 1px);
}
.road .intro .condition .diagram_wrap .dia_element i {
  width: 54px;
  height: 54px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.road .intro .condition .diagram_wrap .dia_element:first-child .line {
  left: 100%;
}
.road .intro .condition .diagram_wrap .dia_element:last-child .line {
  right: 100%;
}
.road .intro .condition .diagram_wrap .dia_element:first-child i {
  background-image: url(../img/ico_dia_proportionality.svg);
}
.road .intro .condition .diagram_wrap .dia_element:last-child i {
  background-image: url(../img/ico_dia_modal.svg);
}
.road .intro .condition .diagram_wrap .dia_circles_wrap .circle_core {
  line-height: 95%;
}
.road
  .intro
  .condition
  .diagram_wrap
  .dia_circles_wrap
  .circle_core
  span:first-child {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 8px;
}
.road .intro .condition .diagram_wrap .dia_circles_wrap .circle_dots.move {
  animation-name: dot-rotate-road;
}
@keyframes dot-rotate-road {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.road .intro .condition p {
  font-size: 24px;
}
.road .mid_tit {
  font-size: 42px;
}
.road .theorys {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px;
  background-image: url(../img/road_theorys_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
}
.road .theorys .mid_tit {
  text-align: center;
  white-space: nowrap;
}
.road .theorys .mid_tit font.assign {
  color: #bfa8ff;
}
.road .theorys .mid_tit font.warm {
  color: #62e225;
}
.road .theorys .diagram_wrap {
  width: 600px;
  height: max-content;
  position: relative;
}
.road .theorys .diagram_wrap .dia_elements_wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 3%;
  display: flex;
  gap: 120%;
  justify-content: center;
}
.road .theorys .diagram_wrap .dia_element {
  white-space: nowrap;
}
.road .theorys .diagram_wrap .dia_element .dia_text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  line-height: 120%;
}
.road .theorys .diagram_wrap .dia_element .line {
  width: 50px;
  height: 1px;
  top: calc(50% - 1px);
  background-color: #fff;
}
.road .theorys .diagram_wrap .dia_element:first-child .line {
  left: 105%;
}
.road .theorys .diagram_wrap .dia_element:last-child .line {
  right: 105%;
}
.road .theorys .diagram_wrap .dia_element ul li::before {
  background-color: #fff;
  top: 8px;
}
.road .theorys .diagram_wrap .dia_circles_wrap {
  width: 100%;
  display: flex;
  aspect-ratio: 2/1;
}
.road .theorys .diagram_wrap .dia_circles_wrap::after {
  width: 105%;
  height: 105%;
  border-color: #fff;
  border-radius: 200px;
  opacity: 1;
  background-color: #00000055;
}
.road .theorys .diagram_wrap .dia_circles_wrap::before {
  position: absolute;
  top: -2.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "Balancing Process";
  font-weight: 700;
  filter: drop-shadow(0 0 2px #000);
  font-size: 18px;
  line-height: 0;
}
.road .theorys .diagram_wrap .dia_circles_wrap .circle_belt {
  display: none;
}
.road .theorys .diagram_wrap .dia_circles_wrap .circle_core {
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 1px #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.road .theorys .diagram_wrap .dia_circles_wrap .circle_core i {
  width: 40%;
  aspect-ratio: 5/3;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.road .theorys .diagram_wrap .dia_circles_wrap .circle_dots .dot {
  background-color: #fff;
}
.road .theorys .diagram_wrap .dia_circles_wrap .circle_dots.move {
  opacity: 0.5;
  animation-duration: 5s;
}
.road .theorys .diagram_wrap .dia_circles_wrap > div {
  width: 100%;
  height: 100%;
  position: relative;
  transform: initial;
  top: initial;
  left: initial;
}
.road .theorys .diagram_wrap .dia_circles_wrap .circle_modal .circle_dots.move {
  animation-name: dot-rotate-modal;
}
.road .theorys .diagram_wrap .dia_circles_wrap .circle_modal .circle_core {
  background: linear-gradient(var(--color-accent) 0%, #1d0070 100%);
}
.road .theorys .diagram_wrap .dia_circles_wrap .circle_modal .circle_core i {
  background-image: url(../img/road_theorys_modal.svg);
}
.road .theorys .diagram_wrap .dia_circles_wrap .circle_algo {
  color: #000;
}
.road .theorys .diagram_wrap .dia_circles_wrap .circle_algo .circle_dots {
  transform: translate(-50%, -50%) rotate(180deg);
}
.road .theorys .diagram_wrap .dia_circles_wrap .circle_algo .circle_dots.move {
  animation-name: dot-rotate-algo;
}
.road .theorys .diagram_wrap .dia_circles_wrap .circle_algo .circle_core i {
  background-image: url(../img/road_theorys_algo.svg);
}
@keyframes dot-rotate-modal {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dot-rotate-algo {
  0% {
    transform: rotate(-180deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
.road .theorys .circle_warm {
  width: 260px;
  height: 120px;
  background-color: #317212;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 70px;
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px #fff;
  position: relative;
}
.road .theorys .circle_warm::before {
  position: absolute;
  top: -56px;
  left: 50%;
  transform: translateX(-50%);
  content: "+";
  font-weight: 700;
  filter: drop-shadow(0 0 2px #000);
  font-size: 32px;
}
.road .sub_figs {
  width: 100%;
  height: max-content;
  position: relative;
  display: flex;
  gap: 24px;
}
.road .sub_figs .fig_box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.road .sub_figs .fig_box img,
.road .sub_figs .fig_box object {
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  object-fit: contain;
  object-position: center;
  overflow: hidden;
}
.road .sub_figs .fig_tit {
  width: 100%;
  min-height: 28px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top: 2px solid #777;
  color: #777;
  font-size: 16px;
  font-weight: 500;
  text-align: right;
}
.road .process .left {
  height: 100vh;
  min-width: 600px;
  padding-left: 100px;
}
.road .process .left .bg:nth-child(1) {
  background-image: url(../img/road_process_bg1.jpg);
}
.road .process .left .bg:nth-child(2) {
  background-image: url(../img/road_process_bg2.jpg);
}
.road .process .left .mid_tit {
  transform: scale(0.7) translate(-30%, 0%);
  display: block;
  line-height: 160%;
}
.road .process .left .mid_tit.on {
  transform: initial;
  line-height: 56px;
}
.road .process .left .mid_tit.on em {
  color: var(--color-primary);
}
.road .process .left .mid_tit t {
  position: relative;
}
.road .process .left .mid_tit t::after {
  position: absolute;
  top: 104%;
  right: 0;
  font-size: 14px;
  line-height: 0;
  letter-spacing: -0.04em;
}
.road .process .left .mid_tit .t1::after {
  content: "(Precision)";
}
.road .process .left .mid_tit .t2::after {
  content: "(Perfect Solution)";
}
.road .process .right > div {
  width: 100%;
  padding: 100px 200px 0 60px;
}
.road .process .right .sub_tit {
  margin-bottom: 20px;
}
.road .process .right .sub_text {
  margin-bottom: 32px;
}
.road .process .right .fig_box img,
.road .process .right .fig_box object {
  padding: 16px 0;
}
.road .process .right .soba {
  padding-bottom: 200px;
}
.road .process .right .warmStart {
  padding-bottom: 200px;
  background-image: url(../img/road_process_warm_bg.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
}
.road .process .right .frogJump {
  background-color: #fbfaf2;
  padding-bottom: 100px;
}
.road .process .right .frogJump .sub_text span {
  display: block;
  padding: 16px 0 16px 16px;
  font-weight: 500;
  font-size: 22px;
}
.road .process .right .frogJump .sub_text span em {
  color: var(--color-accent);
}
.road .process .right .frogJump .sub_figs p {
  position: absolute;
  top: -28px;
  right: 4px;
  display: flex;
  gap: 48px;
}
.road .process .right .frogJump .sub_figs p span {
  position: relative;
}
.road .process .right .frogJump .sub_figs p span::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 4px;
  top: 8px;
  right: 120%;
}
.road .process .right .frogJump .sub_figs p span:first-of-type::after {
  background-color: red;
}
.road .process .right .frogJump .sub_figs p span:last-of-type::after {
  background-color: blue;
}
.road .process .right .frogJump .sub_figs .fig_box img,
.road .process .right .frogJump .sub_figs .fig_box object {
  background-color: #fff;
}
.road .process .right .frogJump .sub_figs .markup {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 2%;
  left: 3%;
}
.road .proportionality {
  width: 100%;
  height: 42vh;
  display: grid;
  gap: 8vh;
  justify-content: center;
  grid-auto-columns: minmax(auto, 720px);
  padding: 24vh 8% 0px;
  background-image: url(../img/road_proportionality_bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
}
.road .proportionality .mid_tit {
  text-align: center;
  grid-column: span 2;
}
.road .proportionality .mid_tit em {
  color: var(--color-accent);
}
.road .proportionality .sub_text {
  text-align: justify;
}
.road .proportionality .sub_text span {
  margin-bottom: 20px;
  display: block;
}
.road .proportionality .sub_figs {
  width: 100%;
  height: 240px;
  justify-content: center;
}
.road .proportionality .sub_figs .fig_tit {
  align-items: flex-start;
}
.road .proportionality .sub_figs .fig_box {
  width: initial;
}
.road .proportionality .sub_figs .fig_box:first-child img,
.road .proportionality .sub_figs .fig_box:first-child object {
  object-fit: cover;
}
.road .proportionality .sub_figs .fig_box:first-child span {
  position: absolute;
}
.road .proportionality .sub_figs .fig_box:first-child span:nth-of-type(1) {
  top: 25px;
  left: 90px;
}
.road .proportionality .sub_figs .fig_box:first-child span:nth-of-type(2) {
  top: 120px;
  left: 110px;
}
.road .proportionality .sub_figs .fig_box:first-child span:nth-of-type(3) {
  bottom: 35px;
  left: 40px;
}
.road .proportionality .sub_figs .fig_box:first-child span:nth-of-type(4) {
  bottom: 80px;
  right: 35px;
}
.road .conclusion {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
.road .conclusion .full_bg {
  background-image: url(../img/road_conclusion_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  width: 100%;
}
.road .conclusion span {
  position: absolute;
}
.road .conclusion span em {
  color: var(--color-primary);
}
.road .conclusion span em.m {
  display: none;
}
.road .conclusion i.tova {
  display: inline-block;
  width: 3.2em;
  height: 1em;
  position: relative;
  margin-right: 4px;
  transform: translateY(11%);
  background-image: url(../img/road_tova.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 92%;
  background-color: var(--color-primary);
  border-radius: 4px;
}

/* --------------------------------- */
/* 대중교통 public */
/* --------------------------------- */
.public .sub_text {
  text-align: justify;
  line-height: 1.4em;
}
.public .intro .top {
  background-image: url(../img/public_intro_bg.jpg);
}
.public .intro .condition {
  margin: 0 auto;
  text-align: center;
}

.public .intro .condition .diagram_wrap {
  width: 300px;
  aspect-ratio: 1/1;
  margin: 240px auto 120px;
  position: relative;
}
.public .intro .condition .diagram_wrap .dia_circles_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.public .intro .condition .diagram_wrap .dia_circles_wrap .circle_dots .dot:nth-child(1){
  top: 0;
  left: calc(50% - 4px);
}
.public .intro .condition .diagram_wrap .dia_circles_wrap .circle_dots .dot:nth-child(2){
  top: initial;
  bottom: 23%;
  left: calc(6% - 4px);
}
.public .intro .condition .diagram_wrap .dia_circles_wrap .circle_dots .dot:nth-child(3){
  top: initial;
  bottom: 23%;
  right: calc(6% - 4px);
}
.public .intro .condition .diagram_wrap .dia_circles_wrap .circle_dots.move {
  animation-name: dot-rotate3;
}
@keyframes dot-rotate3 {
  0% {
    transform: rotate(0deg);
  }
  35% {
    transform: rotate(120deg);
  }
  70% {
    transform: rotate(240deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.public .intro .condition .diagram_wrap .dia_circles_wrap .circle_core {
  line-height: 95%;
}
.public
  .intro
  .condition
  .diagram_wrap
  .dia_circles_wrap
  .circle_core
  span:first-child {
  font-size: 20px;
  font-weight: 400;
}
.public .intro .condition .diagram_wrap .dia_element {
  position: absolute;
  width: max-content;
  gap: 12px;
}
.public .intro .condition .diagram_wrap .dia_element i {
  width: 54px;
  aspect-ratio: 1/1;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.public .intro .condition .diagram_wrap .dia_element .line {
  width: 1px;
  height: 70px;
}
.public .intro .condition .diagram_wrap .e01 {
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
}
.public .intro .condition .diagram_wrap .e02 {
  top: 82.5%;
  right: 117%;
  flex-direction: row-reverse;
  text-align: right;
}
.public .intro .condition .diagram_wrap .e03 {
  top: 82.5%;
  left: 116%;
  flex-direction: row;
  text-align: left;
}
.public .intro .condition .diagram_wrap .e01 i {
  background-image: url(../img/ico_dia_bus.svg);
}
.public .intro .condition .diagram_wrap .e02 i {
  background-image: url(../img/ico_dia_subway.svg);
}
.public .intro .condition .diagram_wrap .e03 i {
  background-image: url(../img/ico_dia_trans.svg);
}
.public .intro .condition .diagram_wrap .e01 .line {
  top: 110%;
}
.public .intro .condition .diagram_wrap .e02 .line {
  bottom: 50%;
  left: 114%;
  transform: rotate(60deg);
}
.public .intro .condition .diagram_wrap .e03 .line {
  bottom: 50%;
  right: 120%;
  transform: rotate(-60deg);
}
.public .intro .condition p {
  font-size: 20px;
}
.public .intro .condition::before {
  position: absolute;
  bottom: 25px;
  right: 32px;
  content: "Public\A Transport";
  font-size: 120px;
  opacity: 0.03;
  text-align: right;
  font-weight: 900;
  white-space: pre;
  line-height: 0.8em;
  letter-spacing: -0.04em;
}
.public .route {
  width: 100%;
  height: 100%;
  position: relative;
}
.public .route div {
  width: 100%;
  height: 100vh;
  font-size: 30px;
}
.public .route #sec1 {
  position: absolute;
  top: 0;
}
.public .route .fix {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  grid-template-rows: 1fr 3fr;
  max-width: 1460px;
  margin: 0 auto;
  padding: 16vh 80px;
  row-gap: 40px;
  column-gap: 60px;
}
.public .route .tabs {
  width: 100%;
  display: flex;
  gap: 8px;
  align-items: center;
  align-self: flex-end;
}
.public .route .tabs li {
  width: 136px;
  height: 52px;
}
.public .route .tabs li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: #777;
  border-radius: 4px;
  background: #fafafa;
  border: 1px solid #00000011;
  font-size: 16px;
  cursor: pointer;
}
.public .route .tabs li i {
  display: none;
  width: 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.5;
}
.public .route .tabs li:nth-child(1) i {
  background-image: url(../img/ico_slide_bus.svg);
}
.public .route .tabs li:nth-child(2) i {
  background-image: url(../img/ico_slide_subway.svg);
}
.public .route .tabs li:nth-child(3) i {
  background-image: url(../img/ico_slide_trans.svg);
}
.public .route .tabs li:hover a {
  background-color: #f5f5f5;
  color: #000;
}
.public .route .tabs li.on a {
  background-color: var(--color-primary);
  color: #000;
  font-weight: 700;
}
.public .route .tabs li.on i {
  opacity: 1;
}
.public .route .subs {
  grid-area: 2/1;
  width: 100%;
  height: 100%;
  position: relative;
}
.public .route .subs li .sub_tit {
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 15px;
}
.public .route .subs li .mid_tit {
  font-size: 42px;
}
.public .route .subs li .sub_text {
  margin-top: 32px;
}
.public .route .subs li {
  display: none;
}
.public .route .subs li.on {
  display: initial;
}
.public .route .imgs {
  grid-row: span 2;
  width: 100%;
  height: 100%;
  max-height: 520px;
  align-self: center;
  display: flex;
  gap: 16px;
}
.public .route .imgs li {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 8px;
  opacity: 0.3;
  cursor: pointer;
}
.public .route .imgs li a {
  display: block;
  width: 100%;
  height: 100%;
}
.public .route .imgs li:nth-child(1) {
  background-image: url("../img/slide_img_bus.png");
}
.public .route .imgs li:nth-child(2) {
  background-image: url("../img/slide_img_subway.png");
}
.public .route .imgs li:nth-child(3) {
  background-image: url("../img/slide_img_trans.png");
}
.public .route .imgs li:hover {
  opacity: 1;
}
.public .route .imgs li.on {
  width: 300%;
  opacity: 1;
  transition: 1s ease;
}
.public .process .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  min-width: 560px;
  height: 100vh;
  padding: 0;
  padding-left: 150px;
}
.public .process .left .bg:nth-child(1) {
  background: linear-gradient(#00000055 0, #000000cc 100%),
    url(../img/public_od_bg.png);
  background-size: cover;
}
.public .process .left .bg:nth-child(2) {
  background: linear-gradient(#00000099 0, #000000dd 100%),
    url(../img/public_pay_bg.png);
  background-size: cover;
}
.public .process .left .bg:nth-child(3) {
  background: linear-gradient(#00000099 0, #000000dd 100%),
    url(../img/public_station_bg.png);
  background-size: cover;
}
.public .process .left .bg.on {
  transform: scale(1.05);
}
.public .process .left .mid_tit {
  transform: scale(0.7) translate(-47%, 0%);
  display: block;
  font-size: 42px;
  white-space: nowrap;
  cursor: pointer;
}
.public .process .left .mid_tit .num {
  display: none;
}
.public .process .left .mid_tit.on {
  transform: initial;
  text-indent: -66px;
}
.public .process .left .mid_tit:hover em,
.public .process .left .mid_tit.on em {
  font-weight: 700;
  color: var(--color-primary);
}
.public .process .left .mid_tit.on .num {
  display: initial;
  font-weight: 300;
  margin-right: 8px;
  position: relative;
}
.public .process .left .mid_tit.on .num::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
  background-color: #fff;
  border-radius: 50%;
}
.public .process .left .mid_tit.on .num::before {
  position: absolute;
  content: "";
  top: 50%;
  right: calc(100% + 24px);
  width: 240px;
  height: 1px;
  background: linear-gradient(90deg, transparent 50%, #fff 100%);
}
.public .process .right {
  padding: 200px 200px 100px 60px;
  display: flex;
  flex-direction: column;
  gap: 200px;
}
.public .process .right .sub_tit {
  display: flex;
  flex-direction: column;
  font-size: 28px;
  margin-bottom: 20px;
}
.public .process .right .sub_tit object {
  width: 48px;
  margin-bottom: 20px;
}
.public .process .right .sub_text {
  margin-bottom: 48px;
}
.public .process .right div > object {
  width: 100%;
  max-height: 520px;
}

/* --------------------------------- */
/* FAQ 그누보드 */
/* --------------------------------- */
/* 자주하는 질문 faq */
.faq .intro {
  padding: 0;
}
.faq .intro .top {
  background-image: url(../img/faq_intro_bg.png);
}
.faq .sub_tab {
  display: flex;
  width: 100%;
  height: 64px;
  position: absolute;
  bottom: 0;
  background-color: #00000077;
}
.faq .sub_tab li {
  width: 100%;
  height: 100%;
  color: #fff;

}
.faq .sub_tab li:not(:first-child, :last-child) {
    width: max-content;
}
.faq .sub_tab li a {
  width: 25vw;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.faq .sub_tab li:nth-child(1) a {
  justify-self: flex-end;
}
.faq .sub_tab li.on a {
  background-color: var(--color-primary);
  font-weight: 700;
  color: #000;
}
.faq .sub_tit {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  color: #000;
}
.faq #hd_login_msg {
  display: none;
}
.faq #wrapper {
  min-width: initial !important;
}
.faq #container_wr {
  width: 100%;
  margin: 40px 0 120px;
  min-height: auto;
}
.faq #container_wr * {
  font-size: 16px;
  box-shadow: none !important;
}
.faq #container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  float: initial;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 40px;
  min-height: auto;
}
.faq #container::after {
  display: none;
}
.faq #container_title {
  display: none;
}
.faq #faq_hhtml {
  display: none;
}
.faq #faq_thtml {
  display: none;
}
.faq #faq_sch {
  grid-column: 2;
  padding: 0;
  margin: 0;
  background-color: initial;
  justify-self: flex-end;
  width: 100%;
  max-width: 320px;
}
.faq #faq_sch form {
  display: flex;
  gap: 8px;
}
.faq #faq_sch form input {
  width: 100%;
  border: 1px solid #ddd;
}
.faq #faq_sch .btn_submit {
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 160px;
  padding: 0;
}
.faq #bo_cate {
  grid-area: 1/1;
  padding: 0;
  margin: 0;
}
.faq #bo_cate h2 {
  display: none;
}
.faq #bo_cate ul {
  display: flex;
  gap: 8px;
}
.faq #bo_cate li {
  padding: 0;
}
.faq #bo_cate li a {
  border: 1px solid #00000022 !important;
  color: #555;
  border-radius: 3px;
  height: 45px;
  display: flex;
  align-items: center;
}
.faq #bo_cate li a:hover {
  background-color: #fafafa;
  color: #000;
}
.faq #bo_cate #bo_cate_on {
  background-color: var(--color-primary);
  color: #000;
}
.faq #faq_wrap {
  margin: 0;
  grid-column: span 2;
}
.faq #faq_con li h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 56px 16px 16px;
  width: 100%;
  height: fit-content;
  min-height: 64px;
  font-size: 16px;
  font-weight: initial;
}
.faq #faq_con li h3 .tit_bg {
  font-weight: 700;
  font-size: 20px;
  position: initial;
  font-size: 16px;
  color: #555;
  align-self: flex-start;
}
.faq #faq_con li h3 a {
  flex: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.faq #faq_con li h3 .tit_btn {
  background: none;
}
.faq #faq_con li:hover h3 .tit_btn {
  color: #000;
}
.faq #faq_con li:has(.faq_li_open),
.faq #faq_con li:hover {
  background-color: #fafafa;
}
.faq #faq_con li .faq_li_open a {
  color: #000 !important;
}
.faq #faq_con .con_inner .closer_btn {
  border-radius: 3px;
  border: 1px solid #00000011;
  background-color: var(--color-primary);
  color: #000;
}

/* 1:1문의하기 q&a_list */
.faq #container:has(#bo_list) {
  display: block;
}
.faq #bo_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 40px;
}
.faq #bo_list #bo_btn_top {
  grid-column: 2;
  margin: 0;
  width: 100%;
  max-width: 320px;
  justify-self: flex-end;
}
.faq #bo_list #bo_btn_top #bo_list_total {
  display: none;
}
.faq #bo_list #bo_btn_top .bo_sch_wrap {
  display: block;
  position: initial;
}
.faq #bo_list #bo_btn_top .btn_bo_user {
  width: 100%;
}
.faq #bo_list #bo_btn_top .btn_bo_user li {
  margin: 0;
  width: 100%;
}
.faq #bo_list #bo_btn_top .btn_bo_user li:first-child .btn_bo_sch {
  display: none;
}
.faq #bo_list #bo_btn_top .btn_bo_user li:last-child {
  display: none;
}
.faq #bo_list #bo_btn_top .bo_sch {
  position: initial;
  margin: 0;
  border: none;
  background: none;
  width: 100%;
}
.faq #bo_list #bo_btn_top .bo_sch h3 {
  display: none;
}
.faq #bo_list #bo_btn_top .bo_sch form {
  padding: 0;
}
.faq #bo_list #bo_btn_top .bo_sch form #sfl {
  display: none;
}
.faq #bo_list #bo_btn_top .bo_sch form .sch_bar {
  margin: 0;
  height: 45px;
  width: 100%;
  border: none;
  display: flex;
  gap: 8px;
}
.faq #bo_list #bo_btn_top .bo_sch .sch_input {
  width: 100%;
  height: 100%;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 4px;
}
.faq #bo_list #bo_btn_top .bo_sch .sch_input::placeholder {
  color: transparent;
}
.faq #bo_list #bo_btn_top .bo_sch .sch_btn {
  width: 160px;
  height: 100%;
  background-color: #000;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 3px;
}
.faq #bo_list #bo_btn_top .bo_sch .sch_btn .sound_only {
  position: initial;
  width: initial;
  height: initial;
  overflow: visible !important;
  font-size: 16px;
}
.faq #bo_list #bo_btn_top .bo_sch form .bo_sch_cls {
  display: none;
}

.faq #bo_list #fqalist {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 40px;
}
.faq #bo_list::after {
  display: none;
}
.faq #bo_list #fqalist .tbl_wrap {
  margin: 0;
  grid-column: span 3;
}
.faq #bo_list #fqalist table {
  table-layout: fixed;
  border: none;
}
.faq #bo_list #fqalist caption {
  display: none;
}
.faq #bo_list #fqalist thead th {
  height: 48px;
  padding: 0;
  font-weight: 500;
  border-bottom: 1px solid #000;
  border-top: 2px solid #000;
  white-space: nowrap;
}
.faq #bo_list #fqalist tbody td {
  color: #555;
  height: 60px;
  word-break: break-all;
  text-align: center;
  border-bottom: 1px solid#eee;
}
.faq #bo_list #fqalist tbody tr td {
  background: none;
}
.faq #bo_list #fqalist tbody tr:hover td {
  background: #fafafa;
}
.faq #bo_list #fqalist tbody .td_subject {
  display: flex;
  align-items: center;
  border-top: none;
  gap: 16px;
}
.faq #bo_list #fqalist tbody .bo_tit {
  text-align: left;
  width: 100%;
  text-decoration: none;
  font-weight: 500;
}
.faq #bo_list #fqalist tbody .bo_cate_link {
  width: 58px;
  height: 28px;
  font-size: 14px;
  font-weight: 500 !important;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  background: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.faq #bo_list #fqalist tbody .bo_cate_link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.faq #bo_list #fqalist tbody .td_stat span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  width: 80px;
  margin: 0 auto;
  border: 1px solid #00000011;
}
.faq #bo_list #fqalist tbody .td_stat .txt_rdy {
  background-color: #fafafa;
}
.faq #bo_list #fqalist tbody .td_stat .txt_done {
  background-color: var(--color-primary);
  color: #000;
}
.faq #bo_list #fqalist .pg_wrap {
  grid-column: 2;
}
.faq #bo_list #fqalist .pg_wrap .pg {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 100%;
}
.faq #bo_list #fqalist .pg_wrap .pg * {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background: none;
  border: none;
  color: #000;
  margin: 0;
  padding: 0;
  background-position: center;
  background-repeat: no-repeat;
}
.faq #bo_list #fqalist .pg_wrap .pg .sound_only {
  display: none !important;
}
.faq #bo_list #fqalist .pg_wrap .pg_current {
  background-color: #000;
  color: #fff;
}
.faq #bo_list #fqalist .pg_wrap .pg_start {
  background-image: url(../img/ico_pg_left.svg);
}
.faq #bo_list #fqalist .pg_wrap .pg_end {
  background-image: url(../img/ico_pg_right.svg);
}
.faq #bo_list #fqalist .bo_fx {
  grid-column: span 3;
  margin: 0;
}
.faq #bo_list #fqalist .btn_bo_user li:nth-child(1) {
  display: none;
}
.faq #bo_list #fqalist .btn_bo_user .btn_b01 {
  background-color: #000;
  color: #fff;
  border-radius: 3px;
  width: 110px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.faq #bo_list #fqalist .btn_bo_user .btn_b01 .sound_only {
  position: initial;
  width: initial;
  height: initial;
  overflow: visible !important;
}

/* 답변등록 q&a_reply */
.faq #container:has(#bo_v) {
  display: block;
}
.faq header {
  position: initial;
  padding: initial;
  height: initial;
}
.faq header #bo_v_title {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  color: #000;
}
.faq header #bo_v_title .bo_v_cate {
  width: 58px;
  height: 28px;
  font-size: 14px;
  font-weight: 500 !important;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  background: none;
  position: relative;
  overflow: hidden;
}
.faq header #bo_v_title .bo_v_cate::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.02;
}
.faq #bo_v_info h2 {
  display: none;
}
.faq #bo_v_top .bo_v_com > li:nth-child(1) {
  display: none;
}
.faq #bo_v_top .bo_v_com > li:nth-child(2) {
  display: none;
}
.faq #bo_v_top .bo_v_com .more_opt li {
  width: 80px;
}
.faq #bo_v_top .bo_v_com .more_opt li i {
  margin-right: 4px;
}
.faq #bo_v_atc h2 {
  display: none;
}
.faq .bo_v_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq .bo_v_bottom .bo_v_nb li {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 3px;
  border: 1px solid #eee;
  height: 45px;
  width: 100px;
}
.faq .bo_v_bottom .bo_v_nb li a {
  width: 100%;
  color: #000000b5;
  font-weight: 500;
  height: 45px;
  line-height: 45px;
}
.faq .bo_v_bottom .bo_v_nb li i.fa-chevron-left {
  margin-right: 8px;
}
.faq .bo_v_bottom .bo_v_nb li i.fa-chevron-right {
  margin-left: 8px;
}
.faq .bo_v_bottom .bo_v_nb li:hover {
  background: #eeeeee;
}
.faq .bo_v_bottom .list_btn {
  background: #000;
  color: #fff;
  border-radius: 3px;
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
}
.faq .bo_v_bottom .list_btn a {
  color: #fff;
  width: 100%;
}
.faq .bo_v_bottom .list_btn a i {
  margin-right: 12px;
}
.faq #container_wr .bo_v_bottom,
.faq #container_wr #bo_v_ans_form {
  margin-top: 24px;
}
.faq #container_wr table tbody td {
  padding: 0;
}
.faq #bo_v_ans header {
  background: none;
  border-bottom: 1px solid #f1f1f1;
}
.faq #bo_v_ans #ans_datetime {
  border: 0;
}
.faq #bo_v_ans h2 span {
  padding: 2px 12px;
  height: auto;
  border-radius: 4px;
  font-size: 14px;
}

.faq #bo_v_ans_form h2 {
  display: flex;
  color: #000;
  overflow: visible;
  position: initial;
  font-size: 24px;
  line-height: initial;
  margin: 32px 0 16px;
}
.faq #bo_v_ans_form .btn_cke_sc {
  display: none;
}
.faq #bo_v_ans_form .btn_submit {
  background-color: var(--color-primary);
  color: #000;
}

.btn_confirm_re {
  width: 120px;
  display: flex;
  gap: 16px;
  float: right;
}
.btn_confirm_re button {
  width: 100%;
  background: linear-gradient(90deg, #53472e 0%, #3b3123 100%),
    linear-gradient(
      180deg,
      #886d35 0%,
      #423625 9%,
      #f3dba8 26%,
      #0e0b06 84%,
      #574b30 100%
    );
  background-origin: border-box;
  border: 1px solid transparent;
  font-size: 24px;
  font-weight: 700;
  padding: 0px 0;
  border-radius: 4px;
  margin-top: 12px;
  color: #fff;
}
.btn_confirm_re .btn_cancel {
  background: #8b8276;
  width: 30%;
  border: 1px solid #00000010;
  color: #ffffffb0;
  font-weight: 500;
}
.btn_confirm_re .btn_cancel:hover {
  background: #7a7165;
  color: #fff;
}

/* 1:1문의등록 q&a_write */
.faq #container:has(#bo_w) {
  display: block;
}
.faq #bo_w h2 {
  display: flex;
  color: #000;
  overflow: visible;
  position: initial;
  font-size: 24px;
  line-height: initial;
  margin-bottom: 16px;
}
.faq #bo_w .cke_sc {
  display: none;
}
.faq #bo_w .write_div {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.faq #bo_w .write_div .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content;
  height: 45px;
  padding: 0 16px;
  color: #000;
}
.faq #bo_w .write_div .btn_cancel {
  background-color: #eee;
}
.faq #bo_w .write_div.btn_confirm button.btn_submit {
  background: #000;
  color: #fff;
  margin-top: 0;
}
.faq .btn_submit:hover {
  background-image: linear-gradient(
    120deg,
    #ffffff40 0%,
    #27241d00 80%
  ) !important;
  color: #fff !important;
}
.faq .form_01 .bo_w_flie .lb_icon .fa-download {
  line-height: 38px;
}
.faq .form_01::after {
  content: "* 업로드 파일 용량제한 : 30MB이하";
  color: #ff5757;
  font-weight: 500;
  font-size: 16px;
  text-align: left;
}
.faq #bo_list #fqalist:has(th.all_chk) thead th:nth-child(1),
.faq #bo_list #fqalist:has(th.all_chk) tbody tr td:nth-child(1) {
  display: none;
}
.faq #bo_list #fqalist:has(th.all_chk) .btn_bo_user li:nth-child(2) {
  display: none;
}

/* --------------------------------- */
/* 구매하기 buy */
/* --------------------------------- */
.buy .intro .top {
  background-image: url(../img/buy_intro_bg.jpg);
}
.buy .contents_wrap {
  width: 100%;
  height: 100%;
  display: grid;
  gap: 80px;
  margin-bottom: 160px;
  padding: 0 200px 0 80px;
  grid-template-columns: 1fr 0.8fr;
}
.buy .contents_wrap .video_area {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  grid-row: span 2;
}
.buy .contents_wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid #000000;
}
.buy .contents_wrap .mid_tit {
  grid-column: span 2;
  font-size: 42px;
  margin-bottom: 8px;
  position: relative;
  white-space: nowrap;
}
.buy .contents_wrap .sub_text {
  margin-bottom: 12px;
  white-space: nowrap;
  line-height: 120%;
  font-size: 18px;
}
.buy .contents_wrap a:not([href^="tel:"]) {
  width: 100%;
  height: 64px;
  background-color: #222;
  border-radius: 4px;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: #fff;
}
.buy .contents_wrap a i {
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.buy .contents_wrap .download_area {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: min-content;
  align-self: flex-end;
  gap: 12px;
}
.buy .contents_wrap .download_area .mid_tit::after {
  position: absolute;
  content: "Purchase";
  top: -110px;
  left: 20px;
  color: #000;
  opacity: 0.03;
  font-size: 120px;
  font-weight: 900;
  letter-spacing: -0.05em;
  z-index: -1;
}
.buy .contents_wrap .download_area .sub_text {
  grid-column: span 2;
  font-size: 18px;
  position: relative;
  padding-left: 28px;
}
.buy .contents_wrap .download_area .sub_text::after {
  position: absolute;
  content: "";
  top: 6px;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(../img/ico_buy_alarm.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.buy .contents_wrap .download_area a.btn_download {
  grid-column: span 2;
  background-color: var(--color-primary);
  color: #000;
}
.buy .contents_wrap .download_area a.btn_brochure i {
  background-image: url(../img/ico_buy_brochure.svg);
}
.buy .contents_wrap .download_area a.btn_manual i {
  background-image: url(../img/ico_buy_manual.svg);
}
.buy .contents_wrap .contact_area {
  width: 100%;
  height: max-content;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: min-content;
  row-gap: 12px;
  column-gap: 32px;
  position: relative;
  align-self: flex-start;
}
.buy .contents_wrap .contact_area::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 60%;
  background-color: #aaa;
}
.buy .contents_wrap .contact_area ul {
  font-size: 18px;
  line-height: 32px;
}
.buy .contents_wrap .contact_area ul li em {
  padding-right: 16px;
}
.buy .contents_wrap .contact_area ul li a[href^="tel:"] {
  font-size: inherit;
}

/* --------------------------------- */
/* 팝업 popup */
/* --------------------------------- */
/* 팝업 공통 */
.popup_wrap {
  display: none;
  z-index: 1000;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
  top: 0;
  left: 0;
}
.popup_wrap::before {
  content: "";
  background: #000000aa;
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
.popup_wrap i {
  display: inline-block;
  width: 32px;
  aspect-ratio: 1/1;
  margin-left: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.popup_wrap i.id {
  background-image: url(../img/ico_id.svg);
}
.popup_wrap i.pw {
  background-image: url(../img/ico_pw.svg);
}
.popup_wrap i.arrow_r {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  background-image: url(../img/arrow_r.svg);
}
.popup_wrap i.signout {
  background-image: url(../img/ico_signout.svg);
}
.popup_wrap i.phone {
  background-image: url(../img/ico_phone.svg);
}
.popup_wrap i.email {
  background-image: url(../img/ico_email.svg);
}
.popup_wrap i.company {
  background-image: url(../img/ico_company.svg);
}
.popup_wrap i.send {
  background-image: url(../img/ico_send_email.svg);
}
.popup_wrap i.complete {
  background-image: url(../img/ico_complete.svg);
}
.popup_in {
  width: 100%;
  height: 100%;
  position: relative;
}
.popup_in .btn_close {
  position: fixed;
  top: 26px;
  right: 86px;
  z-index: 10000;
  width: 107px;
  height: 48px;
  background: transparent;
  background-image: url("../img/bg_close.png");
  background-size: cover;
  background-repeat: no-repeat;
  border: none;
}
.popup_in .close_div {
  text-align: right;
  margin-right: 26px;
}
.popup_container {
  width: 1140px;
  height: 725px;
  position: absolute;
  top: 72px;
  right: 86px;
  box-shadow: 20px -20px 50px #000000cc;
  border: 2px solid #000;
  background-image: url("../img/bg_pop.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  border-radius: 5px 0 5px 5px;
  display: flex;
  z-index: 100;
  overflow: hidden;
}
.popup_container::after,
.popup_container::before {
  position: absolute;
  top: -40px;
  left: 75px;
  font-size: 180px;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
  letter-spacing: -0.06em;
  mix-blend-mode: overlay;
  opacity: 0.5;
  z-index: 2;
}
.popup_container::before {
  left: 407px;
}
.popup_container .popup_tit {
  min-width: 420px;
  display: flex;
  flex-direction: column;
  padding: 120px 0 90px 48px;
  position: relative;
}
.popup_container .popup_tit .h_1 {
  font-size: 80px;
  font-weight: 900;
  margin-bottom: 38px;
}
.popup_container .popup_tit .h_3 {
  color: #222;
}
.popup_contents_wrap {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 48px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow-y: auto;
  box-shadow: -20px 20px 50px #00000011;
  z-index: 1;
  background-color: #ffffff77;
  backdrop-filter: blur(5px);
}
.popup_contents_wrap > * {
  max-width: 480px;
}
.popup_contents_wrap form {
  width: 100%;
  font-size: 20px;
  color: #000;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.popup_contents_wrap table {
  background: none;
  border: none;
  border-collapse: separate;
  border-spacing: 0 20px;
}
.popup_contents_wrap table tr {
  height: 42px;
}
.popup_contents_wrap table th {
  text-align: left;
  font-weight: 600;
  vertical-align: top;
  width: 24%;
  padding-top: 7px;
}
.popup_contents_wrap table td {
  text-align: left;
  _width: 75%;
}
.popup_contents_wrap table td div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 8px;
}
.popup_contents_wrap td button {
  width: 85px;
  background: #27241d;
  color: #fff;
  padding: 4px 8px;
  border-radius: 2px;
  font-size: 16px;
  position: absolute;
  right: 0;
}
.popup_contents_wrap input {
  border: none;
  border-bottom: 1px solid #777;
  padding: 8px 0 8px 4px;
  width: 100%;
  font-size: 18px;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.popup_contents_wrap input[readonly] {
  border-bottom: 1px solid #777;
}
.popup_contents_wrap input[readonly]:focus {
  border-bottom: 1px solid #777;
}
.popup_contents_wrap input::placeholder {
  color: #777;
  font-size: inherit;
  font-weight: normal;
}
.popup_contents_wrap select {
  border-bottom: 1px solid #777;
  padding: 8px 0px 8px 4px;
  width: 100%;
  font-size: 18px;
}
.popup_contents_wrap option {
  color: #777;
  font-size: 18px;
}
.popup_contents_wrap .important_msg {
  font-size: 12px;
  color: #fb3c00;
  font-weight: normal;
}
.popup_contents_wrap th .important_msg {
  font-size: inherit;
  padding: 0 3px;
}
.popup_contents_wrap .select_msg {
  font-size: 12px;
  color: #999;
  padding: 0 3px;
}
.popup_contents_wrap .pop_notice {
  width: 100%;
  text-align: right;
  margin-bottom: 16px;
}
.domain_list {
  height: 42px;
  padding-bottom: 8px;
}
.email_wrap .e_id {
  width: 120px;
}
.timer {
  position: absolute;
  right: 10px;
  top: 40%;
  transform: translateY(-50%);
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  padding: 0 80px;
  color: var(--color-accent);
}
.check.complete {
  background-color: #777;
  color: #ddd;
  cursor: default;
}
.messages {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  width: 100%;
}
.messages i.send {
  display: block;
  width: 88px;
  height: 88px;
  text-align: center;
  margin-left: 0;
  padding-bottom: 18px;
}
.messages i.complete {
  display: block;
  width: 88px;
  height: 88px;
  text-align: center;
  margin-left: 0;
  padding-bottom: 18px;
}
.messages span {
  border-bottom: 2px solid #777;
  border-top: 2px solid #777;
  padding: 24px 0;
}
.join_btn_wrap {
  width: 100%;
  display: flex;
  gap: 16px;
}
.join_btn_wrap button {
  width: 100%;
  background: var(--color-primary);
  color: #000;
  font-size: 24px;
  font-weight: 700;
  padding: 0px 0;
  border-radius: 4px;
  line-height: 80px;
}
.join_btn_wrap button:hover {
  background-color: #000;
  color: var(--color-primary);
}
.join_btn_wrap .btn_cancel {
  background-color: #eee;
  width: 30%;
  font-weight: 500;
}
.join_btn_wrap .btn_cancel:hover {
  background-color: #eee;
  color: #000;
}
.btn_confirm {
  width: 100%;
  display: flex;
  gap: 16px;
}
.btn_confirm button {
  width: 100%;
  background: var(--color-primary);
  color: #000;
  font-size: 24px;
  font-weight: 700;
  padding: 0px 0;
  border-radius: 4px;
  margin-top: 12px;
  line-height: 80px;
}
.btn_confirm button:hover {
  background-color: #000;
  color: var(--color-primary);
}
.btn_confirm .btn_cancel {
  background-color: #eee;
  width: 30%;
  font-weight: 500;
}
.btn_confirm .btn_cancel:hover {
  background-color: #eee;
  color: #000;
}

/* 로그인 */
/* .login::after {content: "Logi";}
.login::before {content: "n";} */
.login input {
  border-bottom: none;
  padding: 0;
}
.login form {
  gap: 24px;
}
.login .input_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-bottom: 1px solid #000;
  padding: 16px 0;
}
.login .input_wrap span {
  width: 150px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}
.login .inquiry {
  width: 100%;
  font-size: 14px;
  color: #777;
  text-align: right;
  margin-top: 24px;
}
.login .btn_go {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.login .btn_go div a {
  display: flex;
  align-items: center;
}
.login .btn_go div a span {
  color: #555;
  font-size: 18px;
  font-weight: 600;
}

/* 회원가입 */
/* .register::after {content: "Sign u"; left: -70px;}
.register::before {content: "p";} */
.register .popup_tit .h_3 {
  flex-grow: 1;
}
.register .popup_tit .join_step {
  display: flex;
  column-gap: 12px;
  margin-top: 24px;
  font-weight: 300;
  color: #00000044;
}
.register .popup_tit .join_step:first-child {
  margin-top: 0;
}
.register .popup_tit .join_step.on {
  color: #000;
}
.register .popup_tit .join_step.on h4.txt {
  font-weight: 600;
}
.register .checkbox_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
  padding-bottom: 8px;
}
.register .checkbox_wrap h4 {
  font-size: 18px;
}
.register .checkbox_wrap.all h4 {
  font-size: 20px;
}
.register .checkbox_wrap.all {
  padding-bottom: 20px;
}
.register .checkbox_wrap .important_msg {
  font-size: 18px;
  padding: 0 3px;
}
.register .terms_wrap {
  width: 100%;
  padding-bottom: 32px;
}
.register .terms {
  width: 100%;
  height: 128px;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 14px;
  text-align: left;
  box-sizing: border-box;
  background-color: #ffffff55;
  overflow-y: auto;
}
.register input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 28px;
  aspect-ratio: 1/1;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  border-bottom: 0;
  background-color: #ffffffaa;
  border: 1px solid #00000033;
  box-shadow: inset 0px 0px 4px #00000022;
  padding: 0;
  display: inline-block;
}
.register input[type="checkbox"]:checked {
  background-color: var(--color-primary);
}
.register input[type="checkbox"]:checked::before {
  content: "✔";
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000 !important;
}

/* 아이디/비밀번호 찾기 */
/* .search::after {content: "ID/P";}
.search::before {content: "W"; left: 415px;} */
.search .popup_tit .h_1 {
  font-size: 65px;
  line-height: 70px;
}
.search .popup_contents_wrap {
  gap: 24px;
  justify-content: flex-start;
  padding-top: 140px;
}
.search .btn_wrap {
  width: 100%;
  min-height: 67px;
  padding: 4px;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1;
}
.search .btn_wrap li {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search .btn_wrap li span {
  font-size: 18px;
  font-weight: 600;
}
.search .btn_wrap li.on {
  background-color: var(--color-primary);
}
.search .inquiry {
  width: 100%;
  font-size: 14px;
  color: #333;
  text-align: right;
}
.search .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.search .content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.search .content.pw .cert_number {
  width: 360px;
  margin-top: 10px;
  padding: 10px 0;
}
.search .radio_wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.search .radio_wrap label {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  gap: 8px;
}
.search input[type="radio"] {
  appearance: none;
  width: 24px;
  aspect-ratio: 1/1;
  border: 2px solid #aaa;
  padding: 0;
  border-radius: 50%;
  position: relative;
  outline: none;
  cursor: pointer;
}
.search input[type="radio"]:checked {
  border: 2px solid var(--color-primary);
  background-color: #00000022;
}
.search input[type="radio"]:checked::before {
  content: "";
  display: block;
  width: 70%;
  aspect-ratio: 1/1;
  background-color: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.search .content .find_box {
  width: 100%;
  background-color: #ffffff33;
  padding: 16px 0;
  margin: 8px 0;
  border-radius: 4px;
  font-size: 18px;
}

/* 마이페이지 */
/* .mypage::after, .mypage::before {font-size: 168px;}
.mypage::after {content: "My pa"; left: -29px;}
.mypage::before {content: "ge"; left: 414px;} */
.mypage.log {
  width: 1140px;
}
.mypage.log form {
  gap: 24px;
}
.mypage {
  width: 1300px;
}
.mypage .popup_contents_wrap {
  gap: 24px;
}
.mypage .popup_contents_wrap > div {
  max-width: initial;
}
.mypage .my_info {
  width: 100%;
  font-size: 20px;
  display: flex;
  flex-direction: column;
}
.mypage .my_info h4 {
  font-size: 24px;
}
.mypage .my_info i {
  width: 24px;
  aspect-ratio: 1/1;
  margin: 0;
  margin-right: 8px;
}
.mypage .my_info .name {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
}
.mypage .my_info .name h4 {
  font-size: 36px;
}
.mypage .my_info .name h4 span {
  font-weight: 500;
  color: #777;
  padding-bottom: 0;
}
.mypage .my_info .name button {
  padding: 6px 24px;
  margin-top: 6px;
  background-color: var(--color-primary);
  color: #000;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
}
.mypage .my_info .name button:hover {
  background-color: #000;
  color: var(--color-primary);
}
.mypage .my_info .detail {
  display: flex;
  justify-content: right;
}
.mypage .my_info .detail li {
  text-align: right;
  border-right: 1px solid #aaa;
  padding: 0 48px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mypage .my_info .detail li:last-child {
  border-right: none;
  padding-right: 0;
}
.mypage .my_info .detail li:nth-child(3) {
  max-width: 500px;
}
.mypage .my_info .detail li div {
  display: flex;
  align-items: center;
  justify-content: right;
  padding-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #777;
}
.mypage .my_info .detail li.license {
  display: none;
}
.mypage .my_qna {
  width: 100%;
}
.mypage .my_qna h4 {
  font-size: 24px;
  padding-bottom: 16px;
  text-align: left;
  width: 100%;
  border-bottom: 3px solid #000;
}
.mypage .my_qna table {
  border-collapse: collapse;
  border: 1px solid #00000020;
}
.mypage .my_qna thead tr {
  border-bottom: 1px solid #000;
  background: #ffffff80;
}
.mypage .my_qna thead tr th {
  padding: 10px 0;
  font-size: 18px;
  text-align: center;
  white-space: nowrap;
}
.mypage .my_qna tbody tr {
  border-bottom: 1px solid #777;
  background: #ffffff33;
}
.mypage .my_qna tbody tr:last-child {
  border-bottom: none;
}
.mypage .my_qna tbody tr td {
  padding: 16px 0;
  color: #00000080;
  font-weight: 500;
  text-align: center;
}
.mypage .my_qna tbody tr td.td_name {
  padding: 10px 8px;
  color: #000;
  text-align: left;
}
.mypage .my_qna tbody tr td.td_stat .txt_done {
  color: #000;
}
.mypage .my_qna tbody tr td.td_stat .txt_rdy {
  color: #777;
}
.mypage .my_qna tbody tr td .bo_cate_link {
  float: none;
  margin-right: 0;
  background: transparent;
  color: #000;
  height: auto;
  padding: 8px;
  display: inline-block;
  border-radius: 5px;
  line-height: 10px;
}
.mypage .my_qna tbody tr.answer td em {
  color: #00000080;
  font-weight: 500;
}
.mypage .my_qna tbody tr.answer {
  background-color: #ffdd0022;
}
.mypage .my_qna tbody tr.answer td.tit a {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 8px;
}
.mypage .my_qna i.answer {
  width: 18px;
  height: 18px;
  background-image: url(../img/ico_answer.svg);
  margin-right: 0;
  margin-bottom: 10px;
}
.mypage .my_qna i.lock {
  width: 18px;
  height: 18px;
  background-image: url(../img/ico_lock.svg);
  margin-left: 0;
}
.mypage .my_qna button.btn_prev {
  width: 18px;
  height: 18px;
  background-image: url(../img/ico_pg_left.svg);
}
.mypage .my_qna button.btn_next {
  width: 18px;
  height: 18px;
  background-image: url(../img/ico_pg_right.svg);
}
.mypage .my_qna .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  font-size: 18px;
  font-weight: 500;
}
.mypage .my_qna .pagination .pagination_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.mypage .my_qna .pagination .pagination_list li.on {
  width: 30px;
  height: 30px;
  background-color: var(--color-primary);
  border-radius: 50%;
}
.mypage .my_qna .pagination .pagination_list li.on a {
  color: #fff;
}
.mypage.edit {
  width: 1140px;
}
.mypage.edit .popup_tit .h_1 {
  font-size: 72px;
}
.mypage.edit input::placeholder {
  color: #000;
}
.mypage.edit .name_wrap input::placeholder,
.mypage.edit .id_wrap input::placeholder {
  color: #999;
}
.mypage.edit .sign_out a {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #777;
  padding-top: 16px;
  font-size: 16px;
}
.mypage.edit .sign_out i {
  width: 24px;
}

/* 개인정보보호정책 */
.popup_in:has(.privacy) {
  position: absolute;
  width: 800px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup_in:has(.privacy) .btn_close {
  top: -27px;
  right: 0;
}
.privacy {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 662px;
}
.privacy .popup_wrap {
  position: absolute;
  width: 800px;
  height: 662px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  box-shadow: 20px -20px 50px #000000cc;
}
.privacy .contents_wrap {
  width: 100%;
  height: 100%;
  gap: 0;
  padding-bottom: 40px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 9;
  background-color: #00000003;
  background-image: url("../img/bg_pop.png");
  overflow: hidden;
}
.privacy .tab_wrap {
  width: 100%;
  min-height: 67px;
  padding: 4px;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #ffffff;
  display: flex;
  gap: 4px;
}
.privacy .tab_wrap li {
  position: relative;
  width: 50%;
  height: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.privacy .tab_wrap li:not(.on):hover {
  background-color: #f5f5f5;
}
.privacy .tab_wrap li span {
  font-size: 18px;
  font-weight: 600;
}
.privacy .tab_wrap li.on {
  background-color: var(--color-primary);
}
.privacy .content {
  display: none;
  position: relative;
  width: 100%;
  border-radius: 4px;
  padding: 40px;
  font-size: 16px;
  text-align: left;
  box-sizing: border-box;
  overflow-y: scroll;
}
.privacy .content.show {
  display: block;
}
.privacy .tit {
  font-size: 18px;
  font-weight: 500;
}
.privacy .list_1 > li {
  margin-bottom: 40px;
}
.privacy .list_2 {
  margin-top: 16px;
}
.privacy .list_2 > li {
  list-style: square;
  padding-left: 8px;
  margin-left: 32px;
  margin-bottom: 16px;
}
.privacy .list_3 {
  margin-left: 8px;
  margin-top: 8px;
}
.privacy .list_3 > li {
  list-style-type: "-";
  margin-bottom: 4px;
}

/* 사이트맵 */
.popup_sitemap {
  position: fixed;
  width: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
  top: 0;
  right: 0;
  display: none;
  z-index: 1000;
  overflow: hidden;
  background-color: #111;
}
.popup_sitemap header .menu_my {
  display: none;
}
.popup_sitemap header .btn_map_close {
  background: none;
  border: none;
  z-index: 1;
}
.popup_sitemap header .btn_map_close a div:nth-child(1) {
  animation: btn-close-bar1 0.5s ease both;
}
.popup_sitemap header .btn_map_close a div:nth-child(2) {
  animation: btn-close-bar2 0.5s ease both;
}
.popup_sitemap header .btn_map_close a div:nth-child(3) {
  animation: btn-close-bar3 0.5s ease both;
}
@keyframes btn-close-bar1 {
  from {
    top: 7px;
  }
  to {
    top: 15px;
    transform: rotate(45deg);
  }
}
@keyframes btn-close-bar2 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes btn-close-bar3 {
  from {
    bottom: 7px;
  }
  to {
    bottom: 15px;
    transform: rotate(-45deg);
  }
}
.sitemap {
  width: 100%;
  height: 100%;
  background-color: #111;
  display: flex;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  position: relative;
  gap: 16px;
  padding: 20px;
  pointer-events: none;
  animation: enableHover 0.8s forwards;
  animation-delay: 0.3s;
}
@keyframes enableHover {
  to {
    pointer-events: auto;
  }
}
.sitemap div[class*="bg_line"] {
  position: relative;
  width: 1px;
  height: 100%;
  background-color: #fff;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}
.sitemap .bg_line1,
.sitemap .bg_line3 {
  animation-name: slideDown;
}
.sitemap .bg_line2 {
  animation-name: slideup;
}
@keyframes slideDown {
  0% {
    top: -1000px;
    opacity: 80%;
  }
  100% {
    top: 0;
    opacity: 20%;
  }
}
@keyframes slideup {
  0% {
    bottom: -1000px;
    opacity: 80%;
  }
  100% {
    bottom: 0;
    opacity: 20%;
  }
}
.sitemap div[class*="menu"] {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s;
  width: calc(100% / 4);
  z-index: 1;
}
.sitemap div[class*="menu"]::before,
.sitemap div[class*="menu"]:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sitemap div[class*="menu"]::before {
  background-color: #00000077;
  transition: 0.5s ease;
  z-index: -1;
}
.sitemap div[class*="menu"]:after {
  background-color: #111;
  z-index: 1;
  animation: slideRight 0.5s ease-in forwards;
  animation-delay: 0.1s;
}
@keyframes slideRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
.sitemap div[class*="menu"] a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding-left: 24px;
  padding-top: 20px;
  width: 100%;
  height: 100%;
  font-size: 60px;
  line-height: 120%;
  font-weight: 900;
  color: #fff;
  white-space: normal;
  transform-origin: left;
}

.sitemap div[class*="menu"] a span {
  position: relative;
}
.sitemap div[class*="menu"] a span:after {
  position: absolute;
  top: -100px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  font-weight: 900;
  line-height: 80%;
  font-size: 80px;
  display: none;
}
.sitemap div[class*="menu"] a .sub_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  height: 100px;
}
.sitemap div[class*="menu"] a em {
  font-weight: 700;
  color: var(--color-primary);
}
.sitemap .menu1 a span {
  display: block;
  width: 240px;
  height: 200px;
  position: relative;
  background-image: url(../img/tova_w.svg);
  background-repeat: no-repeat;
  background-position: center;
}
/* .sitemap .menu1 a span::after { content: "\AValue of"; transform: translate(-110px, 110px);} 
.sitemap .menu2 a span:after { content: "Key \A Features"; white-space: pre; } 
.sitemap .menu3 a span:after { content: "Road \A Analysis"; white-space: pre; } 
.sitemap .menu4 a span:after { content: "Public \A Transport"; white-space: pre; }  */
.sitemap .menu1 {
  background-image: url(../img/sitemap_menu01.jpg);
}
.sitemap .menu2 {
  background-image: url(../img/sitemap_menu02.jpg);
}
.sitemap .menu3 {
  background-image: url(../img/sitemap_menu03.jpg);
}
.sitemap .menu4 {
  background-image: url(../img/sitemap_menu04.jpg);
}
.sitemap div[class*="menu"]:hover {
  width: 60%;
}
.sitemap div[class*="menu"]:hover::before {
  display: none;
}
.sitemap div[class*="menu"]:hover a {
  opacity: 1;
  transform: scale(1.3);
}
.sitemap div[class*="menu"]:hover a span::after {
  display: initial;
}
.sitemap .menu1:hover a span {
  transform: translateX(140px);
}

@media (max-width: 1600px) {
  footer .footer_menu {
    display: none;
  }
  .main .pagination_main li span {
    display: none;
  }

  .sitemap div[class*="menu"] a {
    padding-left: 18px;
    font-size: 48px;
  }
  .sitemap div[class*="menu"] a span:after {
    font-size: 60px;
    top: -80px;
  }

  .sitemap div[class*="menu3"] a .sub_text br{
    display: none;
  }

  .floating_menu li {
    width: 80px;
    height: 40px;
  }
  .floating_menu li a {
    font-size: 14px;
  }

  

  .value .intro .keyword i.tova.w {
    width: 480px;
  }
  .value .intro .keyword span.full {
    font-size: 32px;
    margin-top: -32px;
  }
  .value .intro .summarys_wrap {
    width: 68%;
  }
  .value .features .f_wrap .sub_tit{
    font-size: 24px;
    line-height: 120%;
  }
  .value .features .f_wrap .sub_text{
    font-size: 16px;
    line-height: 160%;
  }
  .value .screen .guide ul li .menu_tit {
    font-size: 16px;
  }
  .value .screen .guide ul li .menu_tit span {
    width: 16px;
    height: 16px;
    font-size: 13px;
  }
  .value .screen .guide ul li .menu_text {
    font-size: 14px;
    line-height: 140%;
  }
  .value .screen .guide ul li .menu_text::after {
    top: -12px;
  }
  .value .screen .guide ul li .menu_text br.brk {
    display: initial;
  }
  .value .screen .guide ul li:nth-of-type(1) br {
    display: none;
  }
  .value .screen .guide ul li:nth-of-type(6) {
    top: 3%;
    right: 34px;
  }
  .value .screen .guide ul li:nth-of-type(6) .menu_text::after {
    top: 7px;
  }
  .value .screen .guide ul li:nth-of-type(7) {
    top: 60%;
  }
  .value .screen .guide ul li:nth-of-type(7) br {
    display: none;
  }

  .primary .key .left {
    padding-left: 120px;
    min-width: 500px;
  }
  .primary .key .left .mid_tit {
    width: calc(100vw - 120px);
  }
  .primary .key .left .mid_tit span {
    left: 120px;
    height: 146px;
    line-height: 100%;
    top: auto;
    bottom: -18%;
  }

  .primary .key .left .mid_tit span br{
    display: none;
  }

  .primary .key .left .mid_tit span em{
    width: 400px;
    display: block;
  }

  .primary .key .left .mid_tit span em br{
    display: none;
  }

  .primary .key .left ul li:hover,
.primary .key .left ul li.on{
    font-weight: normal;
}
  .primary .key .left ul li:hover span,
.primary .key .left ul li.on span{
    text-indent: -30px;
}

  .primary .key .left ul li:hover span br, .primary .key .left ul li span br{
    display: none;  
  }

  .primary .key .left ul{
    padding-top: 240px;
  }

  .primary .key .right {
    padding-right: 120px;
  }
  .primary .key .right .sub_figs img,
  .primary .key .right .sub_figs object {
    object-fit: cover;
  }
  .primary .key .right .top_text,
  .primary .key .right .bottom_text {
    font-size: 16px;
  }
  .primary .pub .left .mid_tit {
    left: calc(96px - 12px);
    width: calc(100vw - 96px);
  }
  .primary .pub .pub02 .fig_info .top_text li {
    padding: 4px;
    font-size: 14px;
  }
  .primary .pub .pub02 .fig_info .top_text li img {
    width: 20px;
  }
  .primary .pub .pub02 .bottom_text br {
    display: none;
  }
  .primary .pub .pub02 .bottom_text br.brk {
    display: initial;
  }
  .primary .pub .pub04 .bottom_text br.brk {
    display: initial;
  }
  .primary .zone .left ul li br.brk {
    display: initial;
  }
  .primary .zone .zone01 .fig_info img,
  .primary .zone .zone01 .fig_info object {
    object-fit: contain;
  }
  .primary .zone .zone01 .sub_figs .fig_info {
    padding: 8px 0;
  }

  .road .mid_tit {
    font-size: 34px;
  }
  .road .sub_figs .fig_tit {
    font-size: 14px;
    min-height: 22px;
  }
  .road .theorys .diagram_wrap {
    width: 540px;
  }
  .road .process .left {
    min-width: 460px;
    padding-left: 64px;
  }
  .road .process .left .mid_tit t::after {
    font-size: 12px;
  }
  .road .process .right > div {
    padding-right: 180px;
    padding-left: 48px;
  }
  .road .proportionality {
    gap: 4vh;
    padding-top: 16vh;
  }
  .road .proportionality .sub_figs {
    gap: 8px;
  }

  .public .process .left {
    min-width: 460px;
    padding-left: 160px;
  }
  .public .process .left .mid_tit{
    font-size: 32px;
  }
  .public .process .left .mid_tit.on .num::before {
    width: 160px;
  }
  .public .process .right {
    padding-left: 48px;
    padding-right: 180px;
  }

  .faq #container {
    padding: 0 80px;
  }

  .buy .contents_wrap {
    gap: 48px;
    padding: 0 160px 0 64px;
    grid-template-columns: 1fr 1fr;
  }
  .buy .contents_wrap .mid_tit {
    font-size: 34px;
    margin-bottom: 0;
  }
  .buy .contents_wrap .sub_text {
    _white-space: initial;
    font-size: 18px;
    margin-bottom: 8px;
  }
  .buy .contents_wrap a {
    height: 48px;
    font-size: 20px;
  }
}

@media (max-width: 1400px) {
  footer .comp_contact {
    width: initial;
    min-width: 30%;
    justify-content: end;
  }
  footer .footer_sitemap > span {
    display: none;
  }
  h2 {
    font-size: 64px;
  }
  .h_4 {
    font-size: 16px;
  }
  .grand_tit {
    font-size: 48px;
  }
  .sub_tit {
    font-size: 28px;
  }
  .sub_text {
    font-size: 18px;
    line-height: 28px
  }
  .road ul li::before {
    top: 11px;
  }

  .popup_container,
  .mypage.log,
  .mypage.edit {
    width: calc(100% - (86px * 2));
    height: calc(100% - 140px);
  }
  .popup_container .popup_tit {
    min-width: 340px;
    padding: 64px 0 48px 24px;
  }
  .popup_container .popup_tit .h_1 {
    font-size: 64px;
    margin-bottom: 8px;
  }
  .popup_container::after,
  .popup_container::before {
    font-size: 100px;
    top: -20px;
  }
  .join_btn_wrap button {
    font-size: 20px;
    line-height: 68px;
  }
  .btn_confirm button {
    font-size: 20px;
    line-height: 68px;
  }
  .login::after {
    left: 148px;
  }
  .login::before {
    left: 333px;
  }
  .search::after {
    left: 146px;
  }
  .search::before {
    left: 338px;
  }
  .search .popup_tit .h_1 {
    font-size: 54px;
  }
  .search .popup_contents_wrap {
    padding: 80px 48px 16px;
  }
  .register::after {
    left: 64px;
  }
  .register::before {
    left: 332px;
  }
  .register .popup_contents_wrap {
    justify-content: flex-start;
  }
  .mypage.edit .popup_tit .h_1 {
    font-size: 56px;
  }
  .mypage::after {
    left: 73px;
  }
  .mypage::before {
    left: 335px;
  }
  .mypage .my_info .name h4 {
    font-size: 28px;
  }
  .mypage .my_info .detail li {
    padding: 0 24px;
  }
  .popup_in:has(.privacy) {
    width: 70%;
    height: 70%;
  }
  .privacy {
    width: 100%;
    height: 100%;
  }
  .popup_in:has(.privacy) .btn_close {
    top: -44px;
  }
  .sitemap div[class*="menu"] a {
    font-size: 42px;
  }
  .sitemap div[class*="menu"] a .sub_text {
    line-height: 140% !important;
  }
  .sitemap div[class*="menu"] a .sub_text br.brk {
    display: initial;
  }
  .sitemap .menu1 a span {
    width: 200px;
  }

  .intro {
    padding-bottom: 80px;
  }
  .intro .top {
    height: 360px;
    gap: 8px;
  }

  .value .features {
    padding: 90px 10px 10px 10px;
    gap: 20px;
  }
  .value .features .f_wrap {
    padding: 100px 24px 24px 24px;
    pointer-events: none;
    transform: none !important;
  }
  .value .features .f_wrap .sub_text {
    color: #fff;
  }
  .value .system {
    height: 1100px;
  }
  .value .system .system_tit {
    padding: 0;
    padding-left: 32px;
  }
  .value .system .diagram_wrap {
    right: 50%;
    transform: translateX(50%);
  }

  .value .system .diagram_wrap .e03 .line{
    right: 104%;
  }

  .primary .key {
    padding-top: 200px;
  }
  .primary .key .left {
    padding-left: 80px;
    min-width: 450px;
  }
  .primary .key .left .mid_tit {
    width: calc(100vw - 80px);
    height: 360px;
    transform: translateY(-200px);
  }
  .primary .key .left .mid_tit span {
    left: 80px;
    bottom: -25%;
    font-size: 48px;
  }
  .primary .key .left ul {
    padding-top: 200px;
  }
  .primary .key .right {
    padding-right: 100px;
    padding-top: 255px;
  }
  .primary .key .right .sub_figs {
    grid-template-columns: 2fr 1fr;
  }
  .primary .key .right .sub_text br {
    display: none;
  }
  .primary .key .right .sub_figs .text br {
    display: none;
  }
  .primary .net .net01 .sub_figs {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .primary .net .net01 .fig_info .arrow_text {
    margin-top: 50%;
  }
  .primary .net .net01 .fig_info .arrow_text br.brk {
    display: initial;
  }
  .primary .net .net02 .fig_info .top_text {
    padding: 4px 20px;
  }
  .primary .net .net02 .fig_info .arrow {
    height: 24px;
  }
  .primary .pub .left .mid_tit {
    left: calc(56px - 12px);
    width: calc(100vw - 56px);
  }
  .primary .pub .left .mid_tit span {
    left: 56px;
  }
  .primary .pub .pub01 .sub_figs img,
  .primary .pub .pub01 .sub_figs object {
    object-position: right;
  }
  .primary .pub .pub01 .img_wrap .pub_search {
    top: 34%;
    left: 36%;
  }
  .primary .pub .pub02 .sub_figs img,
  .primary .pub .pub02 .sub_figs object {
    object-position: center;
  }
  .primary .pub .pub03 .sub_figs img,
  .primary .pub .pub03 .sub_figs object {
    object-position: right;
  }
  .primary .pub .pub03 .img_wrap .pub_search {
    top: 42%;
    left: 42%;
  }
  .primary .zone .zone01 .sub_figs {
    grid-template-columns: 0.8fr 0.8fr 1fr 1fr;
  }
  .primary .zone .zone01 .sub_figs .before img,
  .primary .zone .zone01 .sub_figs .before object {
    object-position: center;
  }
  .primary .zone .zone01 .fig_info .comment {
    font-size: 14px;
  }

    .primary .key .left ul li {
    font-size: 16px;
  }
  .primary .key .left ul li.on {
    font-size: 16px;
  }

  .road .intro::after {
    right: 64px;
  }
  .road .theorys .diagram_wrap {
    width: 400px;
  }
  .road .theorys .diagram_wrap .dia_elements_wrap {
    left: -1%;
  }
  .road .theorys .diagram_wrap .dia_circles_wrap .circle_core {
    font-size: 24px;
    gap: 12px;
  }
  .road .theorys .circle_warm {
    font-size: 28px;
    width: 200px;
    height: 80px;
  }
  .road .theorys .diagram_wrap .dia_element .dia_text {
    font-size: 16px;
  }
  .road .theorys .diagram_wrap br.brk {
    display: initial;
  }
  .road .proportionality {
    padding-top: 12vh;
    height: 72vh;
    /* grid-auto-columns: max-content; */
  }
  .road .proportionality .mid_tit {
    grid-column: initial;
  }
  .road .proportionality .sub_text {
    text-align: center;
  }
  .road .proportionality .sub_text span {
    margin-bottom: 8px;
  }
  .road .proportionality .sub_figs {
    height: initial;
  }
  .road .proportionality .sub_figs .fig_box img,
  .road .proportionality .sub_figs .fig_box object {
    height: initial;
  }

  .public .process .left {
    min-width: 380px;
    padding-left: 120px;
  }
  .public .process .left .mid_tit {
    font-size: 28px;
  }
  .public .process .left .mid_tit.on {
    text-indent: -54px;
  }
  .public .process .left .mid_tit.on .num::before {
    width: 120px;
  }
  .public .process .right .sub_tit br {
    display: none;
  }

  .buy .contents_wrap {
    grid-template-columns: initial;
    padding: 0 180px;
  }
  .buy .contents_wrap .video_area {
    grid-row: 2;
    aspect-ratio: 16/9;
  }
  .buy .contents_wrap a {
    height: 64px;
  }
  .buy .contents_wrap .sub_text br.brk {
    display: initial;
  }
  .buy .contents_wrap .download_area {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .buy .contents_wrap .download_area .mid_tit {
    grid-column: 1;
  }
  .buy .contents_wrap .download_area .sub_text {
    grid-column: 1;
    white-space: normal;
    text-wrap: balance;
    word-break: break-word;
  }
  .buy .contents_wrap .download_area a.btn_download {
    grid-area: 1/2/2/4;
  }
  .buy .contents_wrap .download_area a.btn_brochure {
    grid-area: 2/2;
  }
  .buy .contents_wrap .download_area a.btn_manual {
    grid-area: 2/3;
  }
  .buy .contents_wrap .contact_area {
    column-gap: 80px;
  }
  .buy .contents_wrap .download_area .mid_tit::after {
    top: -100px;
    font-size: 100px;
  }
}

@media (max-width: 1200px) {
  header {
    height: 48px;
    padding: 0 8px 0 16px;
  }
  header h1 a {
    height: 20px;
  }
  header .menu_my,
  header .menu_ham,
  header .menu_admin {
    padding: 6px;
  }
  header .menu_my_list {
    left: initial;
    right: 0;
  }
  header .menu_my_list::before {
    left: initial;
    right: 15px;
  }
  footer {
    padding: 16px 32px;
  }
  footer .footer_wrap {
    gap: 24px;
  }
  footer .comp_copy {
    flex-direction: column;
  }
  footer .btn_privacy {
    font-size: 16px;
  }
  footer .copyright {
    font-size: 13px;
  }
  footer .footer_sitemap .family_wrap {
    margin: 0;
  }
  h2 {
    font-size: 56px;
  }

  .floating_menu {
    top: 64px;
    right: 16px;
  }
  .floating_menu li {
    width: 36px;
    height: 36px;
    border-radius: 2px;
  }
  .floating_menu li::after {
    display: none;
  }
  .floating_menu li a span {
    display: none;
  }
  .floating_menu li a i {
    display: block;
  }
  .floating_menu li.floating_faq {
    margin-bottom: 8px;
  }

  .popup_in:not(:has(.privacy)) .btn_close {
    top: 0;
    right: 0;
    background: none;
  }
  .popup_container {
    width: 100%;
    height: 100vh;
    height: -webkit-fill-available;
    height: fill-available;
    top: 0;
    right: 0;
    left: 0;
    transform: initial;
    border: 0;
    border-radius: 0;
  }
  .search .radio_wrap label {
    font-size: 16px;
  }
  .search .content .find_box {
    font-size: 16px;
  }
  .register input[type="checkbox"] {
    width: 24px;
  }
  .register .checkbox_wrap.all h4 {
    font-size: 18px;
  }
  .popup_contents_wrap input {
    font-size: 16px;
  }
  .popup_in:has(.privacy) {
    width: 80%;
    height: 80%;
  }
  .popup_in:has(.privacy) .btn_close {
    top: -47px;
    right: -2px;
  }

  .sitemap {
    flex-direction: column;
    padding: 0;
  }
  .sitemap div[class*="bg_line"] {
    display: none;
  }
  .sitemap div[class*="menu"] a {
    padding: 0;
    text-align: center;
  }
  .sitemap div[class*="menu"] {
    width: 100%;
    height: 100%;
  }


  .sitemap div[class*="menu"] a span {
    font-size: 38px;
  }
  .sitemap div[class*="menu"] a span:after {
    font-size: 60px;
    top: -20px;
    left: 20px;
    text-align: left;
    opacity: 0.1;
    display: initial;
  }
  
  .sitemap div[class*="menu1"] a span{
    font-size: 0;
  }

  .sitemap .menu1 a span {
    width: 100%;
    height: 56px;
    background-size: 160px;
  }

  .sitemap .menu1 a span::after {
    content: "Value of TOVA";
    transform: initial;
  }
  .sitemap .menu2 a span:after {
    content: "Key Features";
  }
  .sitemap .menu3 a span:after {
    content: "Road Analysis";
  }
  .sitemap .menu4 a span:after {
    content: "Public Transport";
  }
  .sitemap div[class*="menu"] a .sub_text {
    display: none;
  }
  .sitemap div[class*="menu"]:hover {
    width: 100%;
  }
  .sitemap div[class*="menu"]:hover a {
    opacity: 1;
    transform: scale(1);
  }
  .sitemap .menu1:hover a span {
    transform: initial;    
  }

  .intro {
    padding-bottom: 80px;
  }
  .intro .top {
    height: 320px;
    gap: 16px;
  }
  .intro .keyword span {
    font-size: 28px;
  }

  .main .pagination_main {
    right: 24px;
    gap: 16px;
    font-size: 16px;
  }
  .main .pagination_main li span {
    font-size: 17px;
    margin-left: 4px;
  }

  .value .intro .summarys_wrap {
    width: 76%;
  }
  .value .intro .summarys_wrap p {
    font-size: 20px;
  }
  .value .intro .summarys_wrap img {
    height: 200px;
  }
  .value .features {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 16px;
    padding-bottom: 48px;
    gap: 20px;
  }
  .value .feature_bg {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: -2;
  }
  .value .feature_bg::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100vh;
    background-image: url(../img/value_feature_bg.jpg);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  .value .feature_intro {
    background: none;
  }
  .value .feature_intro p {
    font-size: 18px;
  }
  .value .feature_intro .line,
  .value .feature_intro .dot {
    display: none;
  }
  .value .features .lines {
    display: none;
  }
  .value .features .f_wrap {
    max-width: 640px;
    height: auto;
    border-radius: 24px;
    gap: 16px;
    justify-content: flex-end;
    padding: 32px;
  }
  .value .features .f_wrap i {
    width: 32px;
  }
  .value .features .f_wrap .sub_tit br {
    display: none;
  }
  .value .features .f_wrap .sub_text {
    line-height: 24px;
    height: initial;
  }
  .value .features .public::before {
    background-position: center 25%;
  }
  .value .features .frog::before {
    background-position: center 75%;
  }
  .value .features .ktdb::before {
    background-position: center 75%;
  }
  .value .features .user::before {
    background-position: center 93%;
  }
  .value .screen .tip {
    font-size: 14px;
    margin-top: 8px;
  }

  .value .system .diagram_wrap .dia_element.e01 .dia_text li{
    text-align: left;
  }
  .value .system .diagram_wrap .dia_element.e01 .dia_text li:nth-child(2n-1){
    text-align: right;
  }
  .value .system .diagram_wrap .e03 .line{
   top: 35%;
   right: 105%; 
  }

  .primary .intro .keyword p br.brk {
    display: initial;
  }
  .primary .key {
    margin-bottom: 40px;
  }
  .primary .key .left {
    min-width: 350px;
    padding-left: 64px;
  }
  .primary .key .left .mid_tit {
    width: calc(100vw - 64px);
  }
  .primary .key .left .mid_tit span {
    font-size: 40px;
    bottom: -28%;
    left: 64px;
  }
  .primary .key .left ul {
    padding-top: 180px;
    gap: 16px;
  }
  .primary .key .left ul li {
    font-size: 16px;
  }
  .primary .key .left ul li.on {
    font-size: 16px;
  }
  .primary .key .right {
    padding-right: 76px;
    padding-top: 240px;
  }
  .primary .key .right .sub_figs {
    grid-template-columns: initial;
  }
  .primary .key .right .fig_info {
    padding: 16px 0;
  }
  .primary .net .net01 .fig_info .comment br {
    display: none;
  }
  .primary .net .net01 .fig_info .comment br.brk {
    display: initial;
  }
  .primary .net .net01 .sub_figs {
    grid-template-columns: 1.6fr 1fr 1fr;
    min-height: 240px;
  }
  .primary .net .net01 .before img,
  .primary .net .net01 .before object {
    object-position: right;
  }
  .primary .net .net01 .before i {
    width: 48px;
    height: 48px;
  }
  .primary .pub .left .mid_tit {
    left: calc(64px - 12px);
  }
  .primary .pub .pub01 .fig_info .top_text br {
    display: none;
  }
  .primary .pub .pub01 .fig_info .top_text br.brk {
    display: initial;
  }
  .primary .pub .pub02 .fig_info .top_text {
    flex-direction: row;
    width: 92%;
    line-height: 120%;
  }
  .primary .pub .pub02 .fig_info .top_text li {
    padding: 12px 8px;
  }
  .primary .pub .pub02 .fig_info .top_text li br.brk {
    display: initial;
  }
  .primary .pub .pub02 .fig_info .bottom_text li br.brk {
    display: none;
  }
  .primary .pub .pub02 .fig_info .bottom_text li br {
    display: initial;
  }
  .primary .pub .pub03 .fig_info .top_text br {
    display: none;
  }
  .primary .pub .pub03 .fig_info .top_text br.brk {
    display: initial;
  }
  .primary .pub .pub04 .fig_info .bottom_text br {
    display: none;
  }
  .primary .zone .zone01 .sub_figs {
    grid-template-columns: 1fr 1fr;
  }
  .primary .zone .zone01 .sub_figs .fig_info {
    height: 280px;
    padding: 12px 24px;
  }
  .primary .zone .zone02 .fig_info .top_text {
    flex-direction: row;
    gap: 16px;
  }
  .primary .zone .zone02 .fig_info .top_text li {
    font-size: 16px;
    gap: 8px;
  }
  .primary .zone .zone03 .fig_info .bottom_text br {
    display: none;
  }
  .primary .zone .zone03 .fig_info .bottom_text br.brk {
    display: initial;
  }

  .road .mid_tit {
    font-size: 28px;
  }
  .road .process .left {
    padding-left: 48px;
    min-width: 400px;
  }
  .road .process .right > div {
    padding-right: 80px;
  }
  .road .process .right .frogJump .sub_text span {
    font-size: 20px;
  }
  .road .proportionality {
    grid-auto-columns: initial;
  }
  .road .proportionality .sub_text br {
    display: none;
  }
  .public .intro .condition .diagram_wrap {
    width: 240px;
    margin: 200px auto 80px;
  }
  .public .intro .condition .diagram_wrap .dia_circles_wrap .circle_core {
    width: 80%;
  }
  .public
    .intro
    .condition
    .diagram_wrap
    .dia_circles_wrap
    .circle_core
    span:first-child {
    font-size: 18px;
  }
  .public .intro .condition .diagram_wrap .e02,
  .public .intro .condition .diagram_wrap .e03 {
    top: 85%;
  }
  .public .intro .condition .diagram_wrap .dia_element {
    gap: 8px;
  }
  .public .intro .condition .diagram_wrap .dia_element i {
    width: 42px;
  }
  .public .intro .condition .diagram_wrap .dia_element .dia_tit {
    font-size: 14px;
  }
  .road .process .right .frogJump .sub_figs .markup {
    top: -0.5%;
  }

  .faq #container {
    padding: 0 64px;
  }
  .faq .sub_tab {
    height: 52px;
  }

  .buy .contents_wrap {
    padding: 0 80px;
  }
}

@media (max-width: 992px) {

  .cursor-text{
    display: none;
  }
  .btn_top {
    display: none;
  }
  .mouse_mark {
    display: none !important;
  }
  h2 {
    font-size: 48px;
  }
  .h_4 {
    font-size: 16px;
  }
  .grand_tit {
    font-size: 38px;
  }
  .intro {
    gap: 56px;
    padding-bottom: 56px;
  }
  .intro .top span {
    font-size: 14px;
  }
  .container .intro .top {
    margin-top: 0;
    height: 220px;
    gap: 8px;
  }
  .intro .keyword {
    gap: 24px;
  }
  i.egbim_obj {
    width: 48px !important;
  }
  .keyword span {
    font-size: 20px !important;
  }
  .keyword p {
    font-size: 16px !important;
    line-height: 140%;
  }
  .diagram_wrap .dia_element .dia_text {
    font-size: 16px;
  }

  .popup_in:not(:has(.privacy)) .close_div {
    margin-right: 16px;
  }
  .popup_container {
    flex-direction: column;
  }
  .popup_container::after,
  .popup_container::before {
    display: none;
  }
  .popup_container .popup_tit {
    width: 100%;
    min-width: initial;
    min-height: 160px;
    padding: 0;
    text-align: center;
    justify-content: center;
    gap: 16px;
  }
  .popup_container .popup_tit br {
    display: none;
  }
  .popup_container .popup_tit .h_1 {
    font-size: 34px !important;
    margin: 0;
  }
  .popup_container .popup_tit .h_3 {
    font-size: 14px;
  }
  .popup_contents_wrap {
    padding: 48px 16px 24px !important;
    justify-content: flex-start;
    position: relative;
  }
  .popup_contents_wrap input {
    font-size: 16px;
  }
  .popup_contents_wrap table th {
    _width: 32%;
    padding-top: 8px;
  }
  .popup_contents_wrap select {
    font-size: 16px;
  }
  .popup_contents_wrap .pop_notice {
    position: absolute;
    top: 8px;
    right: 8px;
  }
  .login .popup_tit .h_3 br {
    display: none;
  }
  .login input {
    font-size: 18px;
  }
  .login .btn_go div a span {
    font-size: 16px;
  }
  .search .popup_tit .h_1 {
    line-height: 130%;
  }
  .search .popup_tit .h_3 {
    display: none;
  }
  .search .btn_wrap {
    min-height: 56px;
  }
  .search .btn_wrap li span {
    font-size: 16px;
  }
  .search .radio_wrap label {
    font-size: 16px;
    gap: 4px;
  }
  .search input[type="radio"],
  .search input[type="radio"]:checked,
  .search input[type="radio"]:checked::before {
    all: initial;
    -webkit-appearance: radio;
  }
  .search .text_m {
    display: block !important;
  }
  .register .popup_tit .h_3 {
    flex-grow: initial;
  }
  .register .popup_tit .h_3 br {
    display: none;
  }
  .register .checkbox_wrap.all h4 {
    font-size: 16px;
  }
  .register .popup_tit ul {
    display: none;
  }
  .register .checkbox_wrap h4 {
    font-size: 16px;
  }
  .register input[type="checkbox"],
  .register input[type="checkbox"]:checked,
  .register input[type="checkbox"]:checked::before {
    all: initial;
    -webkit-appearance: checkbox;
  }
  .mypage h4 {
    font-size: 20px !important;
  }
  .mypage.log,
  .mypage.edit {
    width: 100% !important;
    height: 100vh;
    height: -webkit-fill-available;
    height: fill-available;
  }
  .mypage .popup_tit .h_3 br {
    display: none;
  }
  .mypage .popup_contents_wrap {
    gap: 48px;
  }
  .mypage .my_info {
    font-size: 18px;
  }
  .mypage .my_info .name {
    justify-content: flex-start;
    padding-bottom: 16px;
  }
  .mypage .my_info .name button {
    font-size: 14px;
    padding: 4px 16px;
  }
  .mypage .my_info .detail {
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
  }
  .mypage .my_info .detail li {
    padding: 0;
    text-align: initial;
    display: flex;
    border: 0;
    gap: 4px;
  }
  .mypage .my_info .detail li div {
    min-width: 120px;
    justify-content: flex-start;
    gap: 4px;
    padding: 0;
    font-size: 14px;
  }
  .mypage .my_info i {
    margin: 0;
    width: 18px;
  }
  .mypage .my_qna thead tr {
    height: 28px;
  }
  .mypage .my_qna thead tr th {
    font-size: 14px;
    padding: 2px 0;
  }
  .mypage .my_qna thead tr th:nth-child(1) {
    width: 8% !important;
  }

  .intro_wrap .intro_txt .txt_mask span {
    font-size: 34px;
  }
  @keyframes clip_play {
    0% {
      clip-path: inset(50% 50% round 10px 10px 10px 10px);
      top: -100px;
    }
    30% {
      clip-path: inset(49.5% 45% round 10px 10px 10px 10px);
      top: -100px;
    }
    60% {
      clip-path: inset(45% 45% round 10px 10px 10px 10px);
      top: -140px;
    }
    100% {
      clip-path: inset(0% 0% round 0px 0px 0px 0px);
      top: 0;
    }
  }

  .value .intro .keyword i.tova.w {
    width: 400px;
    margin: 0;
  }
  .value .intro .summarys_wrap {
    grid-template-columns: initial;
    width: 100%;
    max-width: 500px;
    padding: 0 24px;
  }
  .value .intro .summarys_wrap img {
    height: initial;
    aspect-ratio: 16/9;
  }
  .value .intro .summarys_wrap img:nth-of-type(1) {
    grid-row: 1;
  }
  .value .intro .summarys_wrap p:nth-of-type(1) {
    margin-bottom: 48px;
  }
  .value .feature_intro p br.brk {
    display: initial;
  }
  .value .system {
    height: 1000px;
  }
  .value .system .system_tit {
    height: 246px;
  }
  .value .system .system_tit span {
    font-size: 72px;
  }
  .value .system .diagram_wrap {
    width: 280px;
    bottom: 180px;
  }
  .value .system .diagram_wrap .dia_circles_wrap .circle_core span {
    font-size: 20px;
  }
  .value .system .diagram_wrap .e01 {
    top: -58%;
  }
  .value .system .diagram_wrap .e02 {
    bottom: -30%;
    right: 114%;
    text-align: left;
  }
  .value .system .diagram_wrap .e02 .line {
    top: 9%;
    left: 96%;
  }
  .value .system .diagram_wrap .e03 {
    bottom: -30%;
    left: 104%;
    text-align: right;
  }
  .value .system .diagram_wrap .e03 .line {
    top: -9%;
    right: 91%;
    width: 55px;
  }
  .value .system .diagram_wrap .e04 {
    left: 123%;
    text-align: left;
  }
  .value .system .diagram_wrap .e04 .line {
    right: 100%;
  }
  .value .screen {
    display: none;
  }
  .value .screen.m {
    display: initial;
  }
  .value .screen.m {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .value .screen.m::after,
  .value .screen.m::before {
    display: none;
  }
  .value .screen.m ul li::before {
    display: none !important;
  }
  .value .screen.m .bg {
    left: 50%;
    transform: translateX(-50%) skew(24deg);
  }
  .value .screen.m .fix {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    background-color: #fff;
    height: 100vh;
    overflow: hidden;
    padding: 80px 64px 64px;
  }
  .value .screen.m div {
    width: 100%;
    height: 100vh;
  }
  .value .screen.m .grand_tit[data-aos] {
    animation: none !important;
    opacity: 1 !important;
  }
  .value .screen.m .subs {
    width: 100%;
    min-height: 220px;
    display: flex;
    justify-content: center;
  }
  .value .screen.m .subs li {
    display: none;
    position: relative;
    text-align: left;
    padding: 0;
    width: 100%;
  }
  .value .screen.m .subs li span {
    position: relative;
    padding-left: 16px;
  }
  .value .screen.m .subs li span::before {
    position: absolute;
    content: "";
    top: 9px;
    left: 0;
    width: 5px;
    height: 4px;
    background-color: var(--color-accent);
    transform: skew(-40deg);
  }
  .value .screen.m .subs li.on {
    display: flex;
    animation: scrollUp 0.5s ease-in;
  }
  .value .screen.m .subs li .sub_text {
    text-align: center;
  }
  .value .screen.m .subs li {
    flex-direction: column;
    gap: 20px;
    font-size: 16px;
    line-height: 140%;
  }
  .value .screen.m .subs li em {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
  }
  .value .screen.m .subs li:nth-child(1) {
    align-self: center;
  }
  .value .screen.m .imgs {
    width: 100%;
    max-height: 420px;
    aspect-ratio: 16/9;
    display: flex;
    justify-content: center;
    position: relative;
    background: url(../img/value_screen1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
  }
  .value .screen.m .imgs::before,
  .value .screen.m .imgs::after {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    animation: arrow 2s infinite ease;
  }
  .value .screen.m .imgs::before {
    bottom: -8%;
  }
  .value .screen.m .imgs::after {
    bottom: calc(-8% - 8px);
    animation-delay: 0.5s;
  }
  .value .screen.m .imgs li {
    height: 100%;
    aspect-ratio: 16/9;
    display: none;
    background-repeat: no-repeat;
    position: relative;
    padding: 0;
  }
  .value .screen.m .imgs li.on {
    display: block;
    animation: scrollUp 0.5s ease-in;
    box-shadow: 0 4px 8px #00000055;
  }
  .value .screen.m .imgs li span {
    display: flex;
    padding: 4px 8px;
    background-color: var(--color-primary);
    width: fit-content;
    height: fit-content;
    font-size: 18px;
    line-height: 100%;
    font-weight: 700;
    border-radius: 4px;
    position: absolute;
    z-index: 1;
  }
  .value .screen.m .imgs li .img_box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0%;
  }
  .value .screen.m .imgs li .img_box object {
    position: absolute;
    filter: drop-shadow(0 0 8px #000000aa);
  }
  .value .screen.m .imgs li:nth-child(2) span:nth-child(1) {
    top: 5%;
    left: 60%;
  }
  .value .screen.m .imgs li:nth-child(2) span:nth-child(2) {
    top: 20%;
    left: 40%;
  }
  .value .screen.m .imgs li:nth-child(2) span:nth-child(3) {
    top: 60%;
    left: 15%;
  }
  .value .screen.m .imgs li:nth-child(2) .img_box object {
    width: 64%;
    top: 1%;
    left: 1%;
  }
  .value .screen.m .imgs li:nth-child(3) span:nth-child(1) {
    bottom: 15%;
    left: 15%;
  }
  .value .screen.m .imgs li:nth-child(3) span:nth-child(2) {
    top: 30%;
    left: 65%;
  }
  .value .screen.m .imgs li:nth-child(3) .img_box object {
    width: 90%;
    bottom: 1%;
    left: 1%;
  }
  .value .screen.m .imgs li:nth-child(4) span:nth-child(1) {
    top: 8%;
    left: 64%;
  }
  .value .screen.m .imgs li:nth-child(4) span:nth-child(2) {
    top: 35%;
    left: 64%;
  }
  .value .screen.m .imgs li:nth-child(4) span:nth-child(3) {
    bottom: 32%;
    left: 10%;
  }
  .value .screen.m .imgs li:nth-child(4) .img_box object {
    width: 98%;
    bottom: 1%;
    right: 1%;
  }
  .value .screen.m .imgs:has(li:nth-child(4).on)::before,
  .value .screen.m .imgs:has(li:nth-child(4).on)::after {
    display: none;
  }
  @keyframes scrollUp {
    0% {
      transform: translateY(40px);
      opacity: 0;
    }
    100% {
      transform: translateY(0px);
      opacity: 1;
    }
  }
  .primary .intro::after {
    font-size: 100px;
    bottom: 28px;
  }
  .primary .intro .diagram_wrap {
    width: 360px;
  }
  .primary .intro .diagram_wrap .circle_core span {
    font-size: 16px;
  }
  .primary .intro .diagram_wrap .circle_core span font.tova.k {
    font-size: 40px;
  }
  .primary .intro .diagram_wrap .dia_element .dia_tit {
    font-size: 16px;
  }
  .primary .intro .diagram_wrap .e01 {
    top: 0%;
    left: -17%;
  }
  .primary .intro .diagram_wrap .e02 {
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    bottom: -15%;
    left: -15%;
  }
  .primary .intro .diagram_wrap .e03 {
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    bottom: 13%;
    right: -13%;
  }
  .primary .key {
    flex-direction: column;
    padding: 0;
    margin-bottom: 120px;
  }
  .primary .key .left {
    width: 100%;
    min-width: initial;
    height: 100px;
    padding: 0;
    box-shadow: 0 8px 8px #00000011;
  }
  .primary .key .left .mid_tit {
    transform: initial;
    width: 100%;
    height: 100%;
    left: initial;
    background: #fff !important;
    color: #000;
  }
  .primary .key .left .mid_tit span {
    left: 48px;
    font-size: 30px;
    bottom: 8px;
    height: auto;
  }
  .primary .key .left .mid_tit span em {
    color: #000;
    display: inline-block;
    width: auto;
  }
  .primary .key .left .mid_tit span br {
    display: none;
  }
  .primary .key .left ul {
    display: none;
  }
  .primary .key .right {
    padding: 0 48px 48px;
  }
  .primary .key .right .sub_figs {
    grid-template-columns: 2fr 1fr;
  }
  .primary .key .right .sub_figs .text {
    padding: 24px 0;
    font-size: 16px;
  }
  .primary .key .right .sub_figs .text br {
    display: initial;
  }
  .primary .key .right .sub_figs .text br.brk {
    display: none;
  }
  .primary .key .right .sub_figs .line {
    width: 40%;
  }
  .primary .key .right .sub_figs .bottom img {
    width: 30px;
  }

  
  .primary .key .right .sub_tit br{
    display: none;
  }


  .primary .net .net01 .sub_figs {
    grid-template-columns: 1.6fr 1fr 1fr;
  }
  .primary .pub .left .mid_tit span {
    left: 48px !important;
    height: auto;
  }
  .primary .pub .pub01 .fig_info .top_text br.brk {
    display: none;
  }
  .primary .pub .pub01 .fig_info .top_text br {
    display: initial;
  }
  .primary .pub .pub02 .fig_info .top_text {
    flex-direction: column;
  }
  .primary .pub .pub02 .fig_info .top_text li br.brk {
    display: none;
  }
  .primary .pub .pub03 .fig_info .top_text br.brk {
    display: none;
  }
  .primary .pub .pub03 .fig_info .top_text br {
    display: initial;
  }
  .primary .pub .pub04 .fig_info .bottom_text br.brk {
    display: initial;
  }
  .primary .zone .zone01 .sub_figs {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .primary .zone .zone01 .sub_figs .fig_info {
    padding: 12px 8px;
  }
  .primary .zone .zone01 .sub_figs .fig_info br {
    display: none;
  }
  .primary .zone .zone02 .fig_info .top_text {
    flex-direction: column;
    gap: 8px;
  }
  .primary .zone .zone03 .fig_info .bottom_text br.brk {
    display: none;
  }
  .primary .zone .zone03 .fig_info .bottom_text br {
    display: initial;
  }

  .road .intro::after {
    font-size: 100px;
  }
  .road .intro .condition .diagram_wrap {
    margin: 20px 0;
    height: 240px;
  }
  .road .intro .condition .diagram_wrap .dia_circles_wrap {
    width: 220px;
  }
  .road .intro .condition .diagram_wrap .dia_circles_wrap::after {
    width: 105%;
  }
  .road .intro .condition .diagram_wrap .circle_core {
    width: 80%;
  }
  .road .intro .condition .diagram_wrap .dia_element {
    width: 140px;
  }
  .road .intro .condition .diagram_wrap .dia_tit {
    font-size: 16px;
  }
  .road .intro .condition p {
    font-size: 16px;
  }
  .road .theorys {
    height: initial;
    padding: 16vh 0;
  }
  .road .theorys .mid_tit br {
    display: none;
  }
  .road .theorys .mid_tit br.brk {
    display: initial;
  }
  .road .theorys .diagram_wrap {
    width: 70%;
    max-width: 560px;
    display: flex;
    flex-direction: column-reverse;
    gap: 24px;
  }
  .road .theorys .diagram_wrap .dia_elements_wrap {
    position: initial;
    gap: 12%;
    height: initial;
    align-items: flex-start;
  }
  .road .theorys .diagram_wrap .dia_element .line {
    display: none;
  }
  .road .process {
    flex-direction: column;
    gap: 80px;
  }
  .road .process .left {
    min-width: initial;
    width: 100%;
    height: initial;
    min-height: 140px;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 0 16px 64px;
    box-shadow: 0 8px 8px #00000011;
    border-radius: 0 0 16px 16px;
  }
  .road .process .left .bg {
    background: linear-gradient(0deg, #000 0%, #333 30%) !important;
  }
  .road .process .left .mid_tit {
    font-size: 30px;
    display: none;
    line-height: 124%;
    letter-spacing: -0.08em;
  }
  .road .process .left .mid_tit::before,
  .road .process .left .mid_tit::after {
    display: none !important;
  }
  .road .process .left .mid_tit.on {
    display: initial;
    text-indent: 0;
  }
  .road .process .left .mid_tit br {
    display: none;
  }
  .road .process .left .mid_tit br.brk {
    display: initial;
  }
  .road .process .left .mid_tit t::after {
    font-size: 9px;
    font-weight: 400;
  }
  .road .process .left .mid_tit .t1::after {
    top: -2%;
  }
  .road .process .right > div {
    padding: 0 64px;
  }
  .road .process .right .mid_tit.m {
    display: flex !important;
    width: 100%;
    height: 100px;
    box-shadow: 0 8px 8px #00000011;
    border-radius: 0 0 16px 16px;
    color: #aaa;
    align-items: flex-end;
    margin-bottom: 24px;
    padding-bottom: 12px;
  }
  .road .process .right .sub_tit {
    font-size: 22px;
  }
  .road .process .right .soba {
    min-height: initial;
    padding-bottom: 200px;
  }
  .road .process .right .warmStart {
    background-size: 112%;
  }
  .road .process .right .frogJump .sub_text span {
    font-size: 18px;
  }
  .road .process .right .frogJump .sub_figs .markup {
    top: 2%;
  }
  .road .conclusion span:nth-of-type(1) {
    display: none;
  }
  .road .proportionality {
    height: initial;
    padding: 16vh 8%;
  }
  .road .proportionality .mid_tit br.brk {
    display: initial;
  }
  .road .proportionality .sub_text {
    text-align: left;
  }
  .road .conclusion {
    height: initial;
  }
  .road .conclusion .full_bg {
    height: 100vh;
  }
  .road .conclusion span {
    filter: drop-shadow(0 0 20px #000) drop-shadow(0px 0px 4px #000000aa);
  }
  .road .conclusion span em.m {
    color: #fff;
    display: initial;
  }
  .road .conclusion i.tova {
    margin-left: 8px;
  }

  .public .route .fix {
    padding: 0;
    padding-top: 80px;
    grid-template-columns: initial;
    grid-template-rows: max-content 1fr 1.6fr;
  }
  .public .route .tabs,
  .public .route .subs {
    padding: 0 64px;
  }
  .public .route .tabs li {
    height: 48px;
  }
  .public .route .subs li .sub_text {
    margin-top: 16px;
  }
  .public .route .subs::before,
  .public .route .subs::after {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    animation: arrow 2s infinite ease;
  }
  .public .route .subs::before {
    bottom: 0%;
  }
  .public .route .subs::after {
    bottom: -8px;
    animation-delay: 0.5s;
  }
  .public .route .subs:has(li:nth-child(3).on)::before,
  .public .route .subs:has(li:nth-child(3).on)::after {
    display: none;
  }
  .public .route .imgs {
    grid-row: initial;
  }
  .public .route .imgs li {
    border-radius: 8px 8px 0 0;
  }
  .public .route .imgs li.on {
    width: 500%;
  }
  .public .process {
    flex-direction: column;
    gap: 80px;
  }
  .public .process .left {
    display: none;
  }
  .public .process .right {
    padding: 0;
    padding-bottom: 120px;
    gap: 64px;
  }
  .public .process .right > div {
    padding: 0 64px;
  }
  .public .process .right .mid_tit.m {
    position: sticky;
    top: 0;
    left: 0;
    display: flex !important;
    width: 100%;
    height: 100px;
    box-shadow: 0 8px 8px #00000011;
    align-items: flex-end;
    padding: 0 0 12px 64px;
    font-size: 30px;
    font-weight: 700;
    background-color: #fff;
  }
  .public .process .right .mid_tit.m .num {
    margin-right: 8px;
    font-weight: 300;
  }
  .public .process .right .sub_tit {
    font-size: 22px;
  }

  .faq .sub_tab {
    height: 42px;
  }
  .faq .sub_tab li {
      flex: 1;
  }
  .faq .sub_tab li a {
    font-size: 16px;
  }
  .faq #bo_list #fqalist tbody .td_stat span {
    width: 100%;
    padding: 0;
  }

  .buy .contents_wrap {
    padding: 0 64px;
  }
  .buy .contents_wrap .sub_text br.brk {
    display: none;
  }
  .buy .contents_wrap .download_area {
    grid-template-columns: 3fr 1fr 1fr;
  }
  .buy .contents_wrap .download_area .mid_tit {
    grid-column: span 3;
  }
  .buy .contents_wrap .download_area .sub_text {
    grid-column: span 3;
  }
  .buy .contents_wrap .download_area a.btn_download {
    grid-area: initial;
  }
  .buy .contents_wrap a i {
    width: 16px;
    height: 16px;
  }
  .buy .contents_wrap .download_area a.btn_brochure,
  .buy .contents_wrap .download_area a.btn_manual {
    grid-area: initial;
    font-size: 16px;
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 768px) {
  footer {
    height: initial;
    padding: 40px 32px;
  }
  footer * {
    font-size: 14px !important;
  }
  footer .footer_wrap {
    flex-direction: column;
    gap: 20px;
  }
  footer .comp_inner {
    display: grid;
    grid-template-columns: 100%;
    gap: 16px;
  }
  footer .comp_copy {
    margin-left: 0;
    gap: 4px;
  }
  footer .comp_copy > * {
    margin: 0;
  }
  footer .ceo {
    margin-top: 8px;
  }
  footer .comp_info {
    width: 100%;
  }
  footer .comp_info .logo_baron {
    width: 200px;
  }
  footer .address em.tel {
    margin: 0;
  }
  footer .comp_contact {
    max-width: 400px;
    grid-row: 3;
  }
  footer .footer_sitemap {
    width: 100%;
    align-items: flex-start;
    flex-direction: row;
  }
  footer .footer_sitemap .family_wrap {
    width: 100%;
    margin: 0;
  }
  footer .footer_sitemap .family_btn {
    width: 100%;
  }
  footer .btn_privacy em::after {
    font-size: 12px;
  }
  footer .copyright {
    font-size: 12px !important;
  }
  .main footer.footer_on {
    display: none;
  }
  .main .pagination_main {
    bottom: calc((60 / 1080) * 100%)
  }

  .sub_tit {
    font-size: 28px;
  }
  .sub_text {
    font-size: 16px;
    line-height: 26px !important;
  }
  .road ul li::before {
    top: 9px;
  }

  .mypage .my_qna thead tr th:nth-child(1),
  .mypage .my_qna tbody tr td:nth-child(1) {
    display: none;
  }
  .mypage .my_qna thead tr th:nth-child(2),
  .mypage .my_qna tbody tr td:nth-child(2) {
    display: none;
  }
  .sitemap {
    gap: 8px;
  }
  .sitemap div[class*="menu"] a span:after {
    font-size: 48px;
    bottom: -55px;
  }
  .popup_in:has(.privacy) {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: initial;
  }
  .popup_in:has(.privacy) .btn_close {
    top: 0;
    right: 0;
    background: none;
  }
  .popup_in:has(.privacy) .close_div {
    margin-right: 16px;
  }
  .privacy {
    top: 0;
    left: 0;
    transform: initial;
    border: 0;
  }
  .privacy .contents_wrap {
    padding: 56px 16px 16px;
    gap: 16px;
  }
  .privacy .content {
    padding: 8px;
  }

  .value .screen.m .subs {
    min-height: 240px;
  }
  .value .screen.m .subs li br {
    display: none;
  }
  .value .screen.m .imgs li:nth-child(3) span:nth-child(1) {
    bottom: 10%;
  }
  .value .screen.m .imgs li:nth-child(4) span:nth-child(1) {
    left: 55%;
  }
  .value .screen.m .imgs li:nth-child(4) span:nth-child(2) {
    left: 55%;
  }

  .primary .intro {
    padding-bottom: 140px;
  }
  .primary .intro::after {
    font-size: 72px;
    bottom: 28px;
  }
  .primary .key .right .sub_tit {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .primary .key .right .sub_figs {
    grid-template-columns: initial;
  }
  .primary .key .right .fig_info {
    padding: 24px 0;
  }
  .primary .net .net01 .fig_info .comment br {
    display: none;
  }
  .primary .net .net01 .fig_info .comment br.brk {
    display: initial;
  }
  .primary .net .net01 .sub_figs {
    grid-template-columns: 1.6fr 1fr 1fr;
    min-height: 240px;
  }
  .primary .net .net01 .before img,
  .primary .net .net01 .before object {
    object-position: right;
  }
  .primary .net .net01 .before i {
    width: 48px;
    height: 48px;
  }
  .primary .pub .pub01 .fig_info .top_text br {
    display: none;
  }
  .primary .pub .pub01 .fig_info .top_text br.brk {
    display: initial;
  }
  .primary .pub .pub02 .fig_info .top_text {
    flex-direction: row;
    width: 92%;
    line-height: 120%;
  }
  .primary .pub .pub02 .fig_info .top_text li {
    padding: 12px 8px;
  }
  .primary .pub .pub02 .fig_info .top_text li br.brk {
    display: initial;
  }
  .primary .pub .pub02 .fig_info .bottom_text li br.brk {
    display: none;
  }
  .primary .pub .pub02 .fig_info .bottom_text li br {
    display: initial;
  }
  .primary .pub .pub03 .fig_info .top_text br {
    display: none;
  }
  .primary .pub .pub03 .fig_info .top_text br.brk {
    display: initial;
  }
  .primary .pub .pub04 .fig_info .bottom_text br {
    display: none;
  }
  .primary .zone .zone01 .sub_figs {
    grid-template-columns: 1fr 1fr;
    row-gap: 56px;
    background: none;
  }
  .primary .zone .zone01 .sub_figs::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    bottom: calc(280px + 28px);
    left: 0;
    background-color: #aaa;
  }
  .primary .zone .zone01 .sub_figs::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 280px;
    bottom: 0;
    left: 0;
    background-color: #370cb00f;
    border-radius: 4px;
  }
  .primary .zone .zone01 .sub_figs .fig_info {
    height: 280px;
    padding: 12px 24px;
  }
  .primary .zone .zone02 .fig_info .top_text {
    flex-direction: row;
    gap: 16px;
  }
  .primary .zone .zone02 .fig_info .top_text li {
    font-size: 16px;
    gap: 8px;
  }
  .primary .zone .zone03 .fig_info .bottom_text br {
    display: none;
  }
  .primary .zone .zone03 .fig_info .bottom_text br.brk {
    display: initial;
  }

  .road .process .left {
    padding-left: 48px;
  }
  /* .road .process .left .mid_tit:nth-of-type(2) br {display: initial;} */
  .road .process .right > div {
    padding: 0 48px;
  }
  .road .conclusion span br {
    display: none;
  }
  .road .conclusion span br.brk {
    display: initial;
  }

  .public .intro .condition::before {
    display: none;
  }
  .public .intro .condition .diagram_wrap {
    width: 200px;
    margin: 160px auto;
  }
  .public .intro .condition .diagram_wrap .dia_circles_wrap .circle_core {
    font-size: 24px;
  }
  .public
    .intro
    .condition
    .diagram_wrap
    .dia_circles_wrap
    .circle_core
    span:first-child {
    font-size: 14px;
  }

  .public .intro .condition .diagram_wrap .e02 {
    align-items: flex-start;
    text-align: RIGHT;
    top: 90%;
    right: 101%;
  }
  .public .intro .condition .diagram_wrap .e03 {
    top: 90%;
    left: 114%;
  }
  .public .intro .condition .diagram_wrap .e02 .line {
    bottom: 90%;
    left: 103%;
  }
  .public .intro .condition .diagram_wrap .e03 .line {
    bottom: 90%;
    right: 122%;
  }
  .public .intro .condition p {
    font-size: 18px;
    padding: 0 48px;
  }
  .public .intro .condition p br {
    display: none;
  }
  .public .route .tabs {
    padding: 0 48px;
  }
  .public .route .subs {
    padding: 0 48px;
    min-height: 240px;
  }
  .public .process .right > div {
    padding: 0 48px;
  }
  .public .process .right .mid_tit.m {
    padding-left: 48px;
  }

  .faq .sub_tab li a {
    width: 100%;
  }
  .faq #container {
    padding: 0 24px;
  }
  .faq .sub_tit {
    margin-top: 48px;
  }
  .faq #faq_sch {
    max-width: 240px;
  }
  .faq #faq_sch .btn_submit {
    gap: 0;
    font-size: 0;
    width: 45px;
    min-width: 45px;
    width: 45px;
  }
  .faq #bo_list #bo_btn_top {
    max-width: 240px;
  }
  .faq #bo_list #bo_btn_top .bo_sch .sch_btn {
    gap: 0;
    width: 45px;
    min-width: 45px;
    width: 45px;
  }
  .faq #bo_list #bo_btn_top .bo_sch .sch_btn .sound_only {
    font-size: 0;
  }
  .faq #bo_list #fqalist tbody .bo_cate_link {
    display: none;
  }

  .buy .contents_wrap {
    margin-bottom: 80px;
  }
  .buy .contents_wrap .sub_text br.brk {
    display: initial;
  }
  .buy .contents_wrap .download_area .mid_tit::after {
    top: -55px;
    font-size: 64px;
  }
  .buy .contents_wrap .contact_area {
    grid-template-columns: 2fr 1fr;
    column-gap: 32px;
  }
  .buy .contents_wrap .contact_area::after {
    left: 63%;
  }
}

@media (max-width: 576px) {
  h2 {
    font-size: 36px;
  }
  .grand_tit {
    font-size: 28px;
  }
  .sub_tit {
    font-size: 22px;
  }

  header .language{
    padding-right: 0;
  }
  .diagram_wrap .dia_element .dia_text {
    font-size: 14px;
  }

  .popup_sitemap header h1 {
    visibility: hidden;
  }
  .sitemap div[class*="menu"] a span {
    font-size: 28px;
    line-height: 120%;
  }
  .sitemap div[class*="menu"] a span:after {
    display: none;
  }
  .sitemap .menu1 a span {
    background-size: 120px;
    text-indent: -9999px;
  }

  .popup_contents_wrap {
    padding-top: 32px !important;
  }
  .popup_contents_wrap table th {
    font-size: 14px;
    width: 30%;
    padding-top: 9px;
  }
  .popup_contents_wrap td button {
    font-size: 14px;
  }
  .popup_container .popup_tit {
    min-height: 140px;
  }
  .popup_container .popup_tit .h_3 {
    display: none;
  }
  .register input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }

  .register input[type="checkbox"]:checked{
    width: 16px;
    height: 16px;
  }

  .register input[type="checkbox"]:checked::before {
    font-size: 14px;
  }
  .register .checkbox_wrap.all h4 {
    font-size: 16px;
  }
  .popup_container .popup_tit br {
    display: initial;
  }
  .search .btn_wrap {
    min-height: 48px;
  }
  .search .radio_wrap {
    gap: 16px;
    padding: 0 4px;
  }
  .login .btn_go div a span {
    font-size: 14px;
  }
  .join_btn_wrap button {
    line-height: 56px;
  }
  .btn_confirm button {
    line-height: 56px;
  }
  .mypage.edit .sign_out a {
    font-size: 14px;
  }
  .mypage.edit .sign_out i {
    width: 20px;
  }
  .mypage .my_qna thead tr th:nth-child(4),
  .mypage .my_qna thead tr th:nth-child(5) {
    width: 20% !important;
  }
  .privacy .tab_wrap {
    min-height: 56px;
  }
  .privacy .tab_wrap li span {
    font-size: 16px;
  }
  .privacy .content {
    padding: 0;
    font-size: 14px;
  }
  .privacy .tit {
    font-size: 14px;
  }
  .privacy .list_1 > li {
    margin-bottom: 24px;
  }
  .privacy .list_2 {
    margin-top: 8px;
  }
  .privacy .list_2 > li {
    padding: 0;
    margin-bottom: 8px;
    margin-left: 24px;
  }

  .intro .keyword {
    gap: 16px;
  }
  .intro .keyword i.tova_obj {
    width: 20px;
    height: 16px;
  }

  .intro_wrap .intro_txt .txt_mask br.brk {
    display: initial;
  }
  .intro_wrap .intro_txt .txt_mask span {
    font-size: 34px;
  }
  .main .pagination_main {
    font-size: 14px;
  }
  .main .pagination_main li span {
    font-size: 15px;
    margin: 0;
  }
  .main .pagination_main li div::after {
    margin-top: 2px;
  }

  .value .intro .keyword i.tova.w {
    width: 240px;
    height: 120px;
  }
  .value .intro .keyword span.full {
    font-size: 16px;
  }
  .value .intro .summarys_wrap p {
    font-size: 16px;
    text-align: initial;
  }
  .value .intro .summarys_wrap img[data-aos] {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .value .feature_intro p {
    font-size: 16px;
    padding: 0 24px;
  }
  .value .feature_intro p br {
    display: none !important;
  }
  .value .features {
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 20px;
  }
  .value .features .f_wrap {
    height: auto;
    border-radius: 24px;
    gap: 16px;
    justify-content: flex-end;
    padding: 18px;
  }
  .value .features .f_wrap i {
    width: 32px;
  }
  .value .features .f_wrap .sub_tit {
    font-size: 20px;
  }
  .value .features .f_wrap .sub_text {
    line-height: 24px;
    text-align: initial;
  }
  .value .system {
    height: 850px;
  }
  .value .system .system_tit {
    padding: 0;
    height: 176px;
  }
  .value .system .system_tit span {
    font-size: 52px;
    padding-left: 16px;
  }
  .value .system .diagram_wrap {
    width: 220px;
    bottom: 180px;
    right: 50%;
  }
  .value .system .diagram_wrap .dia_circles_wrap .circle_core span {
    font-size: 16px;
  }

  .value .system .diagram_wrap .dia_circles_wrap .circle_core span:nth-child(4){
    top: 20%;
    line-height: 120%;
    z-index: 9999;
    right:-33%
  }

  .value .system .diagram_wrap .e01 {
    top: -68%;
    z-index: 10;
  }
  .value .system .diagram_wrap .e02 {
    bottom: -50%;
    right: 58%;
    z-index: 10;
  }
  .value .system .diagram_wrap .e02 .line {
    width: 55px;
    top: -16%;
    left: 14%;
  }
  .value .system .diagram_wrap .e03 {
    bottom: -49%;
    left: 47%;
    width: 80%;
    z-index: 10;
  }
  .value .system .diagram_wrap .e03 .line {
    top: -12%;
    right: 15%;
  }
  .value .system .diagram_wrap .e04 {
    top: -25%;
    left: 48%;
    width: 80%;
    z-index: 10;
    text-align: right;
  }
  .value .system .diagram_wrap .e04 .line {
    width: 1px;
    height: 60px;
    top: 109%;
    right: 26%;
  }
  .value .screen.m .fix {
    padding: 48px 24px 24px;
  }
  .value .screen.m .grand_tit {
    margin-bottom: 16px;
  }
  .value .screen.m:has(.subs li:nth-child(1).on) .grand_tit {
    transform: translateY(120%) !important;
  }
  .value .screen.m .subs {
    min-height: 220px;
  }
  .value .screen.m .subs li {
    font-size: 14px;
    gap: 12px;
  }
  .value .screen.m .subs li em {
    font-size: 18px;
  }
  .value .screen.m .subs li:has(.sub_text) {
    align-self: center;
  }
  .value .screen.m .imgs li span {
    font-size: 16px;
    width: max-content;
  }
  .value .screen.m .subs li span::before {
    top: 6px;
  }

  .primary .intro::after {
    display: none;
  }
  .primary .intro .keyword {
    padding: 0 24px;
  }
  .primary .intro .keyword br {
    display: none !important;
  }
  .primary .intro .keyword em {
    display: initial;
  }
  .primary .intro .diagram_wrap {
    width: 260px;
    margin-top: 40px;
  }
  .primary .intro .diagram_wrap .circle_core {
    padding-top: 12px;
  }
  .primary .intro .diagram_wrap .circle_core span font.tova.k {
    font-size: 32px;
  }
  .primary .intro .diagram_wrap .dia_element {
    gap: 12px;
  }
  .primary .intro .diagram_wrap .dia_element i {
    width: 30px;
  }
  .primary .intro .diagram_wrap .dia_element .dia_tit {
    font-size: 14px;
  }
  .primary .intro .diagram_wrap .e01 {
    flex-direction: column-reverse;
    align-items: flex-end;
    top: -20.5%;
    left: -9%;
  }
  .primary .intro .diagram_wrap .e02 {
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    bottom: -17%;
    left: -17%;
  }
  .primary .intro .diagram_wrap .e03 {
    bottom: 8%;
    right: -12%;
  }
  .primary .key .left {
    height: 88px;
  }
  .primary .key .left .mid_tit span {
    left: 24px;
    font-size: 22px;
    bottom: 10px;
    line-height: 140%;
  }
  .primary .key .right {
    padding: 0 24px;
  }
  .primary .key .right .sub_tit {
    font-size: 20px;
  }

.primary .key .right .hori_line{
    margin: 20px auto;
}

.primary .key .right .top_text, .primary .key .right .bottom_text{
    padding: 0 16px;
}

  .primary .net .net01 .sub_figs {
    grid-template-columns: initial;
  }
  .primary .net .net01 .before,
  .primary .net .net01 .after {
    height: 240px;
  }
  .primary .net .net01 .fig_info {
    padding: 0;
    gap: 4px;
  }
  .primary .net .net01 .fig_info span br {
    display: none !important;
  }
  .primary .net .net01 .fig_info .comment {
    position: initial;
    padding-top: 40px;
    position: relative;
    top: initial;
  }
  .primary .net .net01 .fig_info .comment::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 50%;
    background-color: #000;
    bottom: 50%;
    left: 50%;
  }
  .primary .net .net01 .fig_info .arrow_text {
    margin: initial;
    padding-bottom: 40px;
  }
  .primary .net .net01 .arrow_text::before {
    width: 1px;
    height: 90%;
    top: 0;
    left: 50%;
  }
  .primary .net .net01 .arrow_text::after {
    top: initial;
    right: initial;
    bottom: -2px;
    left: 50%;
    transform: translate(-50%, 0);
    border-top: 10px solid #000000;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
  }
  .primary .pub .left .mid_tit span {
    left: 24px !important;
  }
  .primary .pub .pub01 .fig_info .top_text br.brk {
    display: none;
  }
  .primary .pub .pub01 .fig_info .top_text br {
    display: initial;
  }
  .primary .pub .pub02 .fig_info .top_text {
    flex-direction: column;
  }
  .primary .pub .pub02 .fig_info .top_text li br.brk {
    display: none;
  }
  .primary .pub .pub04 .fig_info .bottom_text li br {
    display: none;
  }
  .primary .zone .zone01 .sub_figs .fig_info {
    padding: 12px;
  }
  .primary .zone .zone01 .sub_figs .fig_info br {
    display: none;
  }
  .primary .zone .zone02 .fig_info .top_text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    column-gap: 4px;
    width: 100%;
  }

  .road .mid_tit {
    font-size: 22px;
  }
  .road .intro::after {
    display: none;
  }
  .road .intro .condition .diagram_wrap {
    flex-direction: column;
    height: initial;
    margin: 0;
    margin-bottom: 40px;
  }
  .road .intro .condition .diagram_wrap .dia_element {
    flex-direction: row;
    width: initial;
    text-align: left;
    gap: 16px;
  }
  .road .intro .condition .diagram_wrap .dia_element i {
    width: 40px;
    height: 40px;
  }
  .road .intro .condition .diagram_wrap .dia_element .line {
    position: absolute;
    top: 110%;
    left: 50% !important;
    width: 1px;
    height: 40px;
  }
  .road .intro .condition .diagram_wrap .dia_element:last-child .line {
    top: initial;
    bottom: 110%;
  }
  .road .intro .condition .diagram_wrap .dia_circles_wrap {
    width: 200px;
  }
  .road .intro .condition .diagram_wrap .dia_circles_wrap .circle_dots {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .road .intro .condition .diagram_wrap .dia_circles_wrap .circle_dots.move {
    animation-name: dot-rotate-road2;
  }
  @keyframes dot-rotate-road2 {
    0% {
      transform: rotate(90deg);
    }
    50% {
      transform: rotate(270deg);
    }
    100% {
      transform: rotate(450deg);
    }
  }
  .road .intro .condition p {
    padding: 0 24px;
  }
  .road .intro .condition p br {
    display: none;
  }
  .road .theorys {
    gap: 56px;
  }
  .road .theorys .mid_tit {
    padding: 0 24px;
    white-space: initial;
  }
  .road .theorys .mid_tit br.brk {
    display: none;
  }
  .road .theorys .diagram_wrap {
    width: 100%;
    max-width: 480px;
    padding: 0 32px;
  }
  .road .theorys .diagram_wrap .dia_element {
    width: 50%;
    white-space: initial;
  }
  .road .theorys .diagram_wrap .dia_element .dia_text {
    font-size: 14px;
    font-weight: 400;
  }
  .road .theorys .diagram_wrap .dia_element ul li::before {
    top: 8px;
  }
  .road .theorys .diagram_wrap .dia_element br {
    display: none;
  }
  .road .theorys .diagram_wrap .dia_circles_wrap::before {
    font-size: 14px;
    top: -5%;
  }
  .road .theorys .diagram_wrap .dia_circles_wrap .circle_core {
    font-size: 20px;
    line-height: 120%;
  }
  .road .theorys .circle_warm {
    font-size: 20px;
    width: 160px;
    height: 60px;
  }
  .road .process .left {
    padding-left: 24px;
    min-height: 100px;
  }
  .road .process .left .mid_tit {
    font-size: 22px;
  }
  .road .process .right > div {
    padding: 0 24px;
  }
  .road .process .right .sub_tit {
    font-size: 20px;
  }
  .road .process .right .sub_text li {
    margin-bottom: 4px;
  }
  .road .sub_figs .fig_tit {
    font-size: 13px;
  }
  .road .process .right .warmStart {
    padding-bottom: 120px;
  }
  .road .process .right .warmStart .sub_figs {
    flex-direction: column;
    justify-self: center;
    max-width: 380px;
  }
  .road .process .right .frogJump {
    padding-top: 40px;
  }
  .road .process .right .frogJump .sub_figs {
    gap: 8px;
  }
  .road .process .right .frogJump .sub_figs .markup {
    top: -1%;
  }
  .road .process .right .frogJump .sub_figs p {
    font-size: 13px;
    gap: 32px;
  }
  .road .process .right .frogJump .sub_figs p span::after {
    width: 12px;
  }
  .road .process .left .mid_tit.on{
    line-height: 140%;
  }
  .road .proportionality .mid_tit br {
    display: none !important;
  }
  .road .proportionality .sub_figs {
    flex-direction: column;
    gap: 16px;
  }
  .road .conclusion i.tova {
    margin-left: 4px;
  }

  .public .sub_text{
    text-align:initial;
  }

  .public .intro .top span br.brk {
    display: initial;
  }
  .public .intro .keyword p {
    padding: 0 24px;
  }
  .public .intro .keyword p br {
    display: none;
  }
  .public .intro .condition p {
    padding: 0 24px;
    font-size: 16px;
  }
  .public .intro .condition .diagram_wrap {
    margin: 140px auto;
  }
  .public .intro .condition .diagram_wrap .dia_element {
    flex-direction: column;
  }
  .public .intro .condition .diagram_wrap .dia_element i {
    width: 36px;
  }
  .public .intro .condition .diagram_wrap .dia_element .dia_tit {
    font-size: 14px;
    width: 70%;
  }
  .public .intro .condition .diagram_wrap .e02 {
    align-items: flex-start;
    text-align: left;
    top: 87%;
    right: 15%;
  }
  .public .intro .condition .diagram_wrap .e03 {
    align-items: flex-end;
    text-align: right;
    top: 87%;
    left: 65%;
  }
  .public .intro .condition .diagram_wrap .e02 .line{
    bottom: 93%;
    left: 29%;
  }

  .public .intro .condition .diagram_wrap .e03 .line{
    bottom: 90%;
    right: 60%;
  }

    
  .public .route .tabs li i{
    display: block;
  }


  .public .route .fix {
    padding-top: 64px;
    gap: 24px;
  }
  .public .route .tabs,
  .public .route .subs {
    padding: 0 24px;
    
  }
  .public .route .tabs li {
    width: 24px;
    height: 24px;
  }
  .public .route .tabs li a {
    font-size: 0;
    gap: 0;
  }
  .public .route .tabs li i {
    width: 18px;
    height: 18px;
  }
  .public .route .subs li .sub_tit {
    font-size: 14px;
    line-height: 140%;
  }
  .public .route .subs li .mid_tit {
    font-size: 32px;
  }
  .public .route .subs li .mid_tit::after {
    width: 26px;
    top: 50%;
  }

  .public .route .subs{
    min-height: 290px
  }

  .public .route .subs li .sub_text {
    margin-top: 8px;
    line-height: 110%;
  }
  .public .process {
    gap: 40px;
  }
  .public .process .right {
    padding-bottom: 80px;
    gap: 32px;
  }
  .public .process .right > div {
    padding: 0 24px;
  }
  .public .process .right .mid_tit.m {
    padding-left: 24px;
    font-size: 22px;
    height: 88px;
    align-items: center;
  }

  .public .process .right .mid_tit.m .num{
    white-space: nowrap;
  }

  .public .process .right .sub_tit {
    font-size: 20px;
  }
  .public .process .right .sub_tit object {
    width: 36px;
    margin-top: 24px;
  }

  .faq .sub_tab li a {
    width: 100%;
  }
  .faq #container {
    padding: 0 16px;
  }
  .faq #bo_cate {
    display: none;
  }
  .faq #faq_sch {
    grid-column: span 2;
    grid-row: 2;
    width: 100%;
  }
  .faq #bo_list #bo_btn_top {
    grid-column: span 2;
    grid-row: 2;
  }
  .faq #bo_list #fqalist {
    row-gap: 16px;
  }
  .faq #bo_list #fqalist thead th {
    font-size: 14px;
    height: 32px;
  }
  .faq #bo_list #fqalist tbody tr td {
    font-size: 15px;
  }
  .faq #bo_list #fqalist tbody .td_subject {
    display: table-cell;
  }

  .faq #bo_list #fqalist thead th:nth-child(3),
  .faq #bo_list #fqalist tbody tr td:nth-child(3) {
    display: none;
  }
  .faq #bo_list #fqalist thead th:nth-child(4),
  .faq #bo_list #fqalist:has(th.all_chk) thead th:nth-child(5) {
    width: 32%;
  }
  .faq #bo_list #fqalist thead th:nth-child(5),
  .faq #bo_list #fqalist:has(th.all_chk) thead th:nth-child(6) {
    width: 24%;
  }
  .faq #bo_list #fqalist tbody .td_stat span {
    font-size: 12px;
  }

  .faq #bo_list #fqalist:has(th.all_chk) thead th:nth-child(2),
  .faq #bo_list #fqalist:has(th.all_chk) tbody tr td:nth-child(2) {
    width: 20%;
  }
  .faq #bo_list #fqalist:has(th.all_chk) thead th:nth-child(3),
  .faq #bo_list #fqalist:has(th.all_chk) tbody tr td:nth-child(3) {
    display: table-cell;
  }
  .faq #bo_list #fqalist:has(th.all_chk) tbody tr td:nth-child(4),
  .faq #bo_list #fqalist:has(th.all_chk) tbody tr td:nth-child(5) {
    font-size: 13px;
  }

  .buy .contents_wrap {
    padding: 0;
    box-sizing: border-box;
    width: 100%;
  }
  .buy i.tova.k, font.tova.k{
    width: 30%;
  }

  .buy .contents_wrap .download_area {
    grid-template-columns: 1fr 1fr;
    padding: 0 24px;
  }
  .buy .contents_wrap .download_area .mid_tit {
    grid-column: span 2;
  }
  .buy .contents_wrap .download_area .mid_tit br.brk {
    display: initial;
  }
  .buy .contents_wrap .download_area .sub_text {
    grid-column: span 2;
  }
  .buy .contents_wrap .download_area .sub_text {
    font-size: 16px;
    padding-left: 20px;
  }
  .buy .contents_wrap .download_area .sub_text::after {
    width: 16px;
    height: 16px;
    top: 5px;
  }
  .buy .contents_wrap a {
    height: 56px;
  }
  .buy .contents_wrap .download_area a.btn_download {
    grid-column: span 2;
  }
  .buy .contents_wrap .download_area a.btn_brochure,
  .buy .contents_wrap .download_area a.btn_manual {
    grid-row: 4;
    font-size: 14px;
  }
  .buy .contents_wrap .contact_area {
    grid-template-columns: initial;
        display: flex;
        flex-direction: column;
        width: 90%;
        margin: 0 auto;
  }
  .buy .contents_wrap .video_area{
    padding: 0 24px;
  }
  .buy .contents_wrap .contact_area::after {
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 40%;
  }
  .buy .contents_wrap .contact_area .mid_tit {
    grid-column: initial;
  }
  .buy .contents_wrap .sub_text em{
    width: 100%;
    display: block;
  }
  .buy .contents_wrap .contact_area .sub_text:nth-child(3) {
    grid-row: 4;
    margin-top: 40px;
  }
}
