@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap");

/* kakao floating btn */
.kakao-floating-btn {
  position: fixed;
  right: 2.4rem;
  bottom: 2.4rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.kakao-floating-btn:hover {
  transform: scale(1.08);
}
.kakao-floating-btn img {
  width: 5.6rem;
  height: 5.6rem;
  display: block;
}

/* cursor follower */
.cursor-dot {
  width: 1rem;
  height: 1rem;
  background: #363636;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  will-change: transform;
}
.cursor-dot.is-hover {
  transform: translate(-50%, -50%) scale(4);
  opacity: 0.2;
}
.cursor-dot.is-hidden {
  opacity: 0;
}
@media (hover: none), (max-width: 768px) {
  .cursor-dot {
    display: none;
  }
}

html {
  font-size: 10px;
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255);
  border-bottom: 1px solid #eee;
}
section {
  padding: 14rem 0;
}
header .s__row {
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo img {
  height: 2rem;
}
.right-menu {
  display: flex;
  align-items: center;
  gap: 4.8rem;
  height: 100%;
}
.pc-menu {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  height: 100%;
}
.pc-menu a {
  font-family: Pretendard;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 2.4rem */
  letter-spacing: -0.0352rem;
  height: auto;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  position: relative;
}
.pc-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #363636;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.pc-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.pc-move-btn {
  display: flex;
  padding: 1rem 2rem;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  border-radius: 9rem;
  background: #363636;

  font-family: Pretendard;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.032rem;
  color: #fff;
}
.pc-move-btn:hover {
  background: #1b2332;
}
.sec01 {
  padding-top: 8rem;
  padding-bottom: 0;
  overflow: hidden;
}
.sec01 .s__row {
  display: flex;
  padding: 0rem 2.4rem 9rem 2.4rem;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.sec01-name {
  text-align: center;
  font-family: "GmarketSans";
  font-size: 4.8rem;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 6.72rem */
  letter-spacing: -0.1056rem;
}
.sec01-title {
  text-align: center;
  text-shadow: 0 0 16px #332c3c;
  font-family: Pretendard;
  font-size: 4rem;
  color: #fff;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: -0.2rem;
}
section .s__container {
  z-index: 2;
  position: relative;
}
.sec01-subtitle {
  text-align: center;
  text-shadow: 0 0 16px #332c3c;
  font-family: Pretendard;
  font-size: 1.8rem;
  font-style: normal;
  color: #fff;
  font-weight: 500;
  line-height: 140%; /* 2.52rem */
  letter-spacing: -0.036rem;
}
.sec01-bg {
  width: 100%;
  height: 100%;
  background: url(../image/img_sec01_bg.png) no-repeat 50% 50%;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3.2rem;
}
.sec01-slide {
  width: 100%;
  position: relative;
  transform-origin: top center;
}
.sec01-slides-wrapper {
  position: relative;
  width: 100%;
  height: 54rem;
  border-radius: 2rem;
  overflow: hidden;
  transform-origin: top center;
}
.sec01-slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.sec01-slide-item.is-active {
  opacity: 1;
}
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.slide-arrow.arrow-left {
  left: 2rem;
}
.slide-arrow.arrow-left img {
  transform: rotate(180deg);
}
.slide-arrow.arrow-right {
  right: 2rem;
}
.slide-bottom {
  position: absolute;
  bottom: 6rem;
  right: 4rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  z-index: 2;
}
.slide-status {
  display: inline-flex;
  padding: 0.5rem 1rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 90rem;
  background: rgba(114, 113, 113, 0.5);
}
.slide-status .current-slide {
  font-family: Pretendard;
  font-size: 1.4rem;
  color: #fff;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.slide-status .total-slides {
  color: #cacaca;
  font-family: Pretendard;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.slide-bottom-btn {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(114, 113, 113, 0.5);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec02 {
  padding: 12rem 0;
  position: relative;
}
.sec02 .s__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.4rem;
}
.sec02 .s__row > * {
  width: 50%;
}
.sec02-img-wrap {
  max-width: 46rem;
  height: 46rem;
  flex-shrink: 0;
}
.sec02-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
}
.sec02-name {
  color: #1e4ba6;
  font-family: Pretendard;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.036rem;
}
.title {
  text-align: center;
  color: #101214;
  font-family: Pretendard;
  font-size: 5rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: -0.1rem;
}

.subtitle {
  color: #474d4c;
  font-family: Pretendard;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 3rem */
  text-align: center;
  margin-top: 1.3rem;
}
.sec02-text-box .title {
  font-size: 4.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 6.24rem */
  letter-spacing: -0.1056rem;
}
.sec02-move-btn {
  display: inline-flex;
  padding: 1.5rem 4rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 6rem;
  background: #363636;
  margin-top: 3.1rem;
  color: #fff;
  font-family: Pretendard;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.3s ease;
}
.sec02-move-btn:hover {
  background: #1b2332;
}
.title-box.title-box-left {
  align-items: flex-start;
}
.title-box-left .title,
.title-box-left .subtitle {
  text-align: left;
}
.title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.7rem;
  flex-shrink: 0;
}
.sec03 .s__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8rem;
}
.sec02-text-box {
  align-items: flex-start;
}
.sec03 {
  padding: 16rem 0;
}
.sec03-slide {
  margin-top: 7.6rem;
  overflow: visible;
  padding: 4.4rem 0 2rem;
}
.sec03-slide .swiper-wrapper {
  align-items: stretch;
}
.sec03-slied-item {
  position: relative;
  padding-top: 4.4rem;
  height: auto;
  box-sizing: border-box;
}
.sec03-slied-box {
  display: flex;
  width: 100%;
  padding: 8rem 5.6rem 4.8rem 5.6rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
  border-radius: 1.6rem;
  background: var(--White, #fff);
  box-shadow:
    0 2px 24px 0 rgba(16, 18, 20, 0.04),
    8px 8px 16px 0 rgba(16, 18, 20, 0.04);
  margin-bottom: 2rem;
}
.top-icon {
  display: flex;
  padding: 2.4rem;
  align-items: center;
  gap: 1rem;
  border-radius: 10rem;
  background: #edf3ff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.quotes-data {
  color: #101214;
  text-align: center;
  font-family: Pretendard;
  font-size: 2.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 156%; /* 4.368rem */
  letter-spacing: -0.028rem;
}
.quotes-name {
  color: #4e5052;
  text-align: center;
  font-family: Pretendard;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 156%; /* 3.432rem */
  letter-spacing: -0.022rem;
}

.sec04,
.sec06 {
  padding: 12rem 0;
}
.sec04-list {
  display: grid;
  width: 100%;
  row-gap: 2rem;
  column-gap: 20px;
  flex-shrink: 0;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.sec04-item {
  border-radius: 1.2rem;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sec04-item > img {
  width: 30%;
  max-width: 23.4rem;
  margin-right: 4rem;
}
.sec04-item-text {
  padding: 5.7rem 1rem 5.7rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  width: 50%;
}
.sec04-item-text h2 {
  color: #363636;
  font-family: Pretendard;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.12rem;
}
.sec04-item-text p {
  color: #54575c;
  font-family: Pretendard;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 2.43rem */
  letter-spacing: -0.036rem;
}
.sec04 .s__row {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10rem;
}
.sec04-slide-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 2.4rem;
}
.sec04-slide-title {
  font-family: Pretendard;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 3.12rem */
}
.sec04-slide-subtitle {
  color: #85898f;
  font-family: Pretendard;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 2.1rem */
  letter-spacing: -0.028rem;
}
.sec04-slide {
  width: 100%;
  padding-bottom: 0rem !important;
}
.sec04-slide .swiper-pagination {
  bottom: 0;
}
.sec04-slide .swiper-button-prev,
.sec04-slide .swiper-button-next {
  top: calc(50% - 7rem);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  border-radius: 100%;
}
.sec04-slide .swiper-button-prev::after,
.sec04-slide .swiper-button-next::after {
  display: none;
}
.sec04-slide .swiper-button-prev {
  background: url("../image/icon_slide_arrow_left.svg") no-repeat center /
    contain;
  width: 4.8rem;
  height: 4.8rem;
}
.sec04-slide .swiper-button-next {
  background: url("../image/icon_slide_arrow_right.svg") no-repeat center /
    contain;
  width: 4.8rem;
  height: 4.8rem;
}
.sec04-slide .slide-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.slide-img-wrap {
  overflow: hidden;
  border-radius: 0.8rem;
}
.sec04-slide .slide-item:hover img {
  transform: scale(1.05);
}
.move-link-btn {
  font-family: Manrope;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.04rem;
  display: flex;
  padding: 1.6rem 2.4rem;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  background: #003147;
  transition: all 0.3s ease;
}
.move-link-btn img {
  transition: all 0.3s ease;
}
.move-link-btn:hover {
  background: #002232;
}
.move-link-btn:hover img {
  margin-left: 0.8rem;
}

.slide-system {
  display: flex;
  position: relative;
  overflow: hidden;
  height: 40rem;
  width: 100%;
}
.slide-system-list {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  position: absolute;
  width: max-content;
  padding: 0 1.2rem;
}
.slide-system-item {
  padding: 3.8rem 2.6rem;
  width: 30rem;
  height: 40rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 1.2rem;
  overflow: hidden;
  position: relative;
}
.slide-system-item img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.system-title {
  z-index: 2;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 1.5rem;
}
.system-desc {
  color: #fff;
  font-family: Pretendard;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 135%; /* 2.43rem */
  letter-spacing: -0.036rem;
  z-index: 2;
  transition: all 0.3s ease;
  transform: translateY(200%);
}
.slide-system-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
}
.slide-system-item:hover::before {
  background: rgba(0, 0, 0, 0.6);
}
.slide-system-item:hover .system-desc {
  transform: translateY(0);
}
.system-title p {
  color: #fff;
  font-family: Pretendard;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.system-title h2 {
  color: #fff;
  font-family: Pretendard;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.slide-system-list:nth-child(1) {
  animation: slide01 30s linear 0s infinite;
}
.slide-system-list:nth-child(2) {
  animation: slide02 30s linear 0s infinite;
}

@keyframes slide01 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide02 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.sec05 .s__row {
  display: flex;
  margin-bottom: 8rem;
  width: 100%;
  align-items: center;
  flex-direction: column;
}
.sec05 {
  background: linear-gradient(
    180deg,
    rgba(218, 228, 255, 0) 0%,
    rgba(218, 228, 255, 0.33) 100%
  );
}
.sec09 {
  padding: 0;
}
.sec09 .title-box {
  padding-top: 8rem;
}
.sec06 .title-box * {
}
.faq-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.faq-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  align-self: stretch;
  cursor: pointer;
}
.faq-info {
  overflow: hidden;
  max-height: 0;
  /* transition: max-height 0.4s ease, margin-top 0.4s ease; */
  margin-top: 0;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  padding: 0 3.4rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.7rem;
  align-self: stretch;
}
.faq-item.is-active .faq-info {
  max-height: 100rem;
  padding: 3.4rem;
  background: #fafafa;
}
.faq-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1.2rem;
  padding: 2.5rem 0;
}
.faq-title img {
  transition: transform 0.4s ease;
  flex-shrink: 0;
}
.faq-item.is-active .faq-title img {
  transform: rotate(135deg);
}
.faq-title p {
  font-family: Pretendard;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: left;
  flex: 1;
  line-height: 150%;
}
.faq-info p {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 2.4rem */
  letter-spacing: -0.0352rem;
  text-align: left;
}
.faq-info img {
  max-height: 14rem;
}
.sec06 .s__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8rem;
}
.sec07 {
  position: relative;
  overflow: hidden;
}
.sec07 .sec07-bg {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  will-change: transform;
  object-fit: cover;
}
.sec07 .title,
.sec07 .subtitle {
  color: #fff;
}
.sec08 {
  z-index: 2;
  position: relative;
}
.sec08 .s__row {
  gap: 10rem;
  display: flex;
  flex-direction: column;
}
.form-list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  width: 100%;
}
.line {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.input-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  flex: 1 0 0;
}
.input-wrap label {
  font-family: Pretendard;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 2.4rem */
  letter-spacing: -0.0352rem;
}
.input-wrap label strong {
  color: #df1616;
  margin-left: 0.4rem;
}
.input-wrap input,
.input-wrap textarea {
  display: flex;
  height: 4.8rem;
  padding: 1.6rem 1.5rem;
  align-items: center;
  border-radius: 0.5rem;
  gap: 0.8rem;
  align-self: stretch;
  font-family: Pretendard;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 2.7rem */
  line-height: normal;
  border: none;
  border: 1px solid #e5ebee;
}
.input-wrap textarea {
  height: 15rem;
  resize: none;
}
.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
  color: #aaa;
}
.sec08-form {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
}
.form-btn {
  display: flex;
  padding: 1.5rem 4rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 6rem;
  background: #363636;
  color: #fff;
  font-family: Pretendard;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0 auto;
  margin-top: 4rem;
}
.form-btn:hover {
  background: #1b2332;
}
footer {
  border-top: 1px solid #1b2332;
  background: #0b131f;
  padding: 6.4rem 0;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo img {
  height: 2rem;
}
footer .s__row {
  display: flex;
  align-items: flex-start;
  gap: 20rem;
}
.footer-sns-wrap {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}
.footer-sns-title {
  color: var(--White, #fff);
  font-family: Poppins;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer-sns {
  display: inline-flex;
  height: 2.4rem;
  align-items: flex-start;
  gap: 1.2rem;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.company-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0rem;
}
.company-info-item {
  display: flex;
}
.company-info-item p {
  color: #938f99;
  font-family: Poppins;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 2.24rem */
}
.copyright {
  color: #938f99;
  font-family: Poppins;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 2.24rem */
}
.company-map {
  width: 100%;
  height: 35rem;
}
.mobile-only {
  display: none;
}
@media all and (max-width: 1200px) {
  html {
    font-size: 8px;
  }
  .sec02-img-wrap {
    width: 50%;
  }
  .sec01-01,
  .sec01-02,
  .sec01-03 {
    zoom: 0.8;
  }
}
/* 테블릿 가로, 테블릿 세로 (해상도 768px ~ 1023px)*/
@media all and (max-width: 1023px) {
}
/* 모바일 가로, 모바일 세로 (해상도 480px ~ 767px)*/
@media all and (max-width: 767px) {
  .mobile-only {
    display: block;
  }
  .pc-menu,
  .pc-move-btn {
    display: none;
  }
  .hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.6rem;
    width: 4rem;
    height: 4rem;
    background: none;
    cursor: pointer;
  }
  .hamburger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #003147;
    border-radius: 0.2rem;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }
  .sec01-name {
    font-size: 3.2rem;
  }
  .sec01-title {
    font-size: 4.2rem;
  }
  .sec01-table-td p {
    font-size: 2rem;
  }
  .sec01-subtitle {
    font-size: 2rem;
    width: 50%;
  }
  .slide-bottom {
    right: auto;
    left: 6rem;
  }
  .sec02 {
    padding-bottom: 0;
    padding-top: 10rem;
  }
  .sec02 .s__row {
    flex-direction: column;
  }
  .sec02 .s__row > * {
    width: 100%;
  }
  .sec02-img-wrap img {
    max-width: max-content;
  }
  .sec02-img-wrap {
    position: relative;
    width: 100%;
    margin-top: 10rem;
  }
  .sec02-text-box .title {
    font-size: 3.2rem;
  }
  .sec06 .s__row {
    flex-direction: column;
  }
  .sec04-list {
    grid-template-columns: 1fr;
  }
  .sec04-item-text {
    padding: 3rem 0 3rem 3rem;
    width: 60%;
  }
  .sec04-item-text br {
    display: none;
  }
  .footer-top {
    gap: 4rem;
    flex-direction: column;
    margin-bottom: 4rem;
  }
  footer .s__row {
    gap: 2rem;
  }
  header .s__row {
    height: 8rem;
  }
  .sec01 {
    padding-top: 8rem;
  }
  .sec01 .s__row {
    padding: 0;
    justify-content: center;
  }
  .sec01-slides-wrapper {
    border-radius: 0;
    height: calc(100dvh - 8rem);
  }
  .sec01-table-td {
    display: flex;
    flex-direction: column;
    padding: 2.8rem 0;
    align-items: center;
    justify-content: center;
    width: 50%;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  .sec01-table-td h3 {
    font-size: 3.6rem;
  }
  .sec01-table-td:not(:nth-child(3n)) {
    border-right: none;
  }
  .sec01-table-td:not(:nth-child(2n)) {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
  }
  .sec01-table {
    margin-top: 10rem;
  }
  .sec04-slide-subtitle {
    font-size: 1.7rem;
  }
  .title {
    font-size: 3.2rem;
  }
  .subtitle {
    font-size: 1.8rem;
  }
  .title-box {
    gap: 1.6rem;
    width: 100%;
  }
  .sec04 .s__row,
  .sec06 .s__row,
  .sec08 .s__row {
    gap: 4rem;
  }
  section {
    padding: 10rem 0;
  }
  .sec04-slide {
    padding-bottom: 0 !important;
  }
  .sec03 .s__row,
  .sec04 .s__row,
  .sec06 .s__row {
    flex-direction: column;
    gap: 5rem;
  }
  .sec04 .s__row > * {
    width: 100%;
  }
  .sec04-slide-title {
    font-size: 2.8rem;
  }
  .sec04-slide-pagination button {
    font-size: 2.2rem;
  }
  .data-value-wrap {
    width: 100%;
  }
  .data-value {
    flex: 1;
  }
  .data-value-item {
    width: 100%;
    aspect-ratio: 1/1;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .slide-logo-list:nth-child(1),
  .slide-logo-list:nth-child(2) {
    animation-duration: 10s;
  }
  .slide-logo-list img {
    max-height: 4rem;
  }
  .slide-logos {
    height: 4rem;
  }
  .faq-title img {
    width: 2rem;
    height: 2rem;
  }
  .faq-info p {
    font-size: 1.8rem;
  }
  .line {
    flex-direction: column;
  }
  .input-wrap,
  .form-btn {
    width: 100%;
  }
  .form-btn {
    font-size: 1.8rem;
    padding: 1.6rem;
  }
  footer {
    padding: 8rem 0;
  }
  .header-logo img {
    height: 2rem;
  }
  footer .s__row {
    flex-direction: column;
  }
  .top-icon img {
    width: 3.2rem;
    height: 3.2rem;
  }
  .quotes-data {
    font-size: 2.4rem;
  }
  .sec03,
  .sec04,
  .sec06 {
    padding: 9rem 0;
  }
  .sec03 {
    padding-top: 16rem;
  }
  .input-wrap input,
  .input-wrap textarea {
    font-size: 16px;
  }
}
/* 모바일 이상 */
@media all and (min-width: 768px) {
  .hamburger-btn {
    display: none;
  }
  .mobile-nav,
  .mobile-nav-overlay {
    display: none !important;
  }
}

/* mobile nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0px;
  width: 42rem;
  height: 100%;
  background: #fff;
  border-left: 1px solid #eee;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 3.2rem 2.4rem;
  gap: 3.2rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-nav.is-open {
  transform: translateX(0);
}
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-close {
  align-self: flex-end;
  width: 4rem;
  height: 4rem;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-close img {
  width: 100%;
  height: 100%;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #eee;
}
.mobile-menu a {
  color: #363636;
  font-family: Pretendard;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.036rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid #eee;
  transition: color 0.2s ease;
}
.mobile-menu a:hover {
  color: #101214;
}
.mobile-move-btn {
  display: flex;
  padding: 1.4rem 1.6rem;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  background: #363636;
  color: #fff;
  font-family: Pretendard;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.032rem;
  margin-top: auto;
  transition: background 0.2s ease;
}
.mobile-move-btn:hover {
  background: #1b2332;
}

/* modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: #fcf9f5;
  padding: 3.6rem 2.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  max-width: 46rem;
  width: 90%;
  transform: translateY(2rem);
  transition: transform 0.3s ease;
}
.modal-overlay.is-open .modal {
  transform: translateY(0);
}
.modal-logo {
  height: 1.4rem;
  margin-bottom: 2.8rem;
}
.modal-title {
  color: #003147;
  font-family: Pretendard;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
.modal-desc {
  color: #555;
  font-family: Pretendard;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 160%;
  text-align: center;
}
.modal-close-btn {
  margin-top: 1.6rem;
  display: flex;
  padding: 1.2rem 4rem;
  justify-content: center;
  align-items: center;
  background: #002232;
  color: #fff;
  font-family: Pretendard;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.032rem;
  cursor: pointer;
  width: 100%;
}

/* =====================
   Scroll Animation
   ani01 ~ ani99 클래스를 요소에 붙이면
   스크롤로 진입 시 순차적으로 부드럽게 나타납니다.
   ===================== */

/* 기본 스타일: 요소 전체 페이드 + 슬라이드업 */
[class*="ani"] {
  opacity: 0;
  transform: translateY(3rem);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[class*="ani"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ani-style01: 글자별 순차 노출 */
/* 부모 요소는 즉시 보이도록 기본 애니메이션을 원짜 정의 */
[class*="ani"].ani-style01 {
  opacity: 1 !important;
  transform: none !important;
}
/* 각 글자 span */
.ani-style01 .ani-char {
  opacity: 0;
  display: inline-block;
  transform: translateY(0.6em);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
/* 스크롤 진입 후 글자 노출 */
.ani-style01.is-visible .ani-char {
  opacity: 1;
  transform: translateY(0);
}
