@font-face {
  font-family: 'Pretendard';
  src: url('./assets/fonts/PretendardVariable.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'JalnanGothic';
  src: url('./assets/fonts/JalnanGothicTTF.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

:root {
  /* 색상 변수 */
  --main-50: #F8FBFF;
  --main-100: #EDF5FF;
  --main-200: #0062FF;
  --main-300: #022D9A;
  --sub-main-yellow: #FFD940;
  --text-50: #AAA;
  --text-100: #666;
  --text-200: #131313;
  --black: #111;
  --white: #FFF;
  --grey-50: #F3F4F8;
  --grey-100: #D5D5D5;
  --bg: #fff;


  --header-height: 90px;
  --max-width: 1440px;
  
  /* 폰트 크기 */
  --font-size-8: 8px;
  --font-size-10: 10px;
  --font-size-11: 11px;
  --font-size-12: 12px;
  --font-size-14: 14px;
  --font-size-15: 15px;
  --font-size-16: 16px;
  --font-size-17: 17px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --font-size-22: 22px;
  --font-size-24: 24px;
  --font-size-26: 26px;
  --font-size-28: 28px;
  --font-size-30: 30px;
  --font-size-32: 32px;
  --font-size-36: 36px;
  --font-size-40: 40px;
  --font-size-44: 44px;
  --font-size-50: 50px;
  --font-size-54: 54px;
  --font-size-60: 60px;
  --font-size-64: 64px;
  --font-size-70: 70px;
  
  /* 여백 */
  --gap-1: 4px;
  --gap-2: 8px;
  --gap-3: 12px;
  --gap-4: 16px;
  --gap-5: 20px;
  --gap-6: 24px;
  --gap-7: 28px;
  --gap-8: 32px;
  --gap-9: 36px;
  --gap-10: 40px;
  --gap-11: 44px;
  --gap-12: 48px;
  --gap-13: 52px;
  --gap-14: 56px;
  --gap-15: 60px;
  --gap-16: 64px;
  --gap-17: 68px;
  --gap-18: 72px;
  --gap-19: 76px;
  --gap-20: 80px;
  --gap-25: 100px;
  --gap-30: 120px;
  --gap-40: 160px;

  --padding-x: 20px;
}


@media (max-width: 768px) {
  :root{
      --header-height: 50px;

      --font-size-8: 2.13vw;
      --font-size-10: 2.67vw;
      --font-size-11: 2.93vw;
      --font-size-12: 3.20vw;
      --font-size-14: 3.73vw;
      --font-size-15: 4.00vw;
      --font-size-16: 4.27vw;
      --font-size-17: 4.53vw;
      --font-size-18: 4.80vw;
      --font-size-20: 5.33vw;
      --font-size-22: 5.87vw;
      --font-size-24: 6.40vw;
      --font-size-26: 6.93vw;
      --font-size-28: 7.47vw;
      --font-size-30: 8.00vw;
      --font-size-32: 8.53vw;
      --font-size-36: 9.60vw;
      --font-size-40: 10.67vw;
      --font-size-44: 11.73vw;
      --font-size-50: 13.33vw;
      --font-size-54: 14.40vw;
      --font-size-60: 16.00vw;
      --font-size-64: 17.07vw;
      --font-size-70: 18.67vw;

      --gap-1: 1.07vw;   /* 4px */
      --gap-2: 2.13vw;   /* 8px */
      --gap-3: 3.2vw;    /* 12px */
      --gap-4: 4.27vw;   /* 16px */
      --gap-5: 5.33vw;   /* 20px */
      --gap-6: 6.4vw;    /* 24px */
      --gap-7: 7.47vw;   /* 28px */
      --gap-8: 8.53vw;   /* 32px */
      --gap-9: 9.6vw;    /* 36px */
      --gap-10: 10.67vw; /* 40px */
      --gap-11: 11.73vw; /* 44px */
      --gap-12: 12.8vw;  /* 48px */
      --gap-13: 13.87vw; /* 52px */
      --gap-14: 14.93vw; /* 56px */
      --gap-15: 16vw;    /* 60px */
      --gap-16: 17.07vw; /* 64px */
      --gap-17: 18.13vw; /* 68px */
      --gap-18: 19.2vw;  /* 72px */
      --gap-19: 20.27vw; /* 76px */
      --gap-20: 21.33vw; /* 80px */
      --gap-25: 26.67vw; /* 100px */
      --gap-30: 32vw;    /* 120px */
      --gap-40: 42.67vw; /* 160px */
  }
}

@media (max-width: 480px) {
  :root{

  }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Pretendard', sans-serif;
  min-width: var(--max-width);
}

body * {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

a {
  all: unset;
  cursor: pointer;
}

button {
  all: unset;
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

main {

}

.section_container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 80px;
  padding: 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 10px;
  font-size: var(--font-size-24);
  font-weight: 400;
  color: var(--white);
}

.btn_m {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 40px;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
}
.btn_m strong {
  font-size: 16px;
  font-weight: 700;
}
.br_mobile {
  display: none;
}
.highlight_blue {
  color: var(--white);
  background-color: var(--main-200);
  padding: 2px 6px;
}
.highlight_yellow {
  color: var(--text-200);
  background-color: var(--sub-main-yellow);
  padding: 2px 1px;
}

@media (max-width: 768px) {
  .br_mobile {
    display: block;
  }
  .br_pc {
    display: none;
  }
  body {
    min-width: unset;
  }
  .highlight_blue {
    padding: 0 1px;
  }
  .highlight_yellow {
    padding: 0 1px;
  }
  section {
    scroll-margin-top: var(--header-height);
  }
}

/* GNB */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 0 var(--padding-x);
  padding-top: 30px;
}

.header-container-pc {
  width: 100%;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--white);
  box-shadow: 20px 20px 50px 0px rgba(0, 0, 0, 0.20);
  border-radius: 50px;
}

.gnb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 49px;
  padding-right: 40px;
  gap: 20px;
}

.logo {
  width: 111px;
  min-width: 111px;
  display: flex;
}

.logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  flex: 1;
  height: 100%;
}

.nav-menu li {
  flex: 1;
  height: 100%;

}

.nav-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: var(--font-size-20);
  color: var(--text-200);
  text-align: center;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--main-300);
}

.nav-link-active {
  color: var(--main-300) !important;
}

.header-container-mobile {
  display: none;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
}

.header-container-mobile>a {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

@media (max-width: 900px) {
  .nav-link {
    font-size: var(--font-size-18);
  }
}

@media (max-width: 768px) {
  .header-container-pc {
    display: none;
  }
  .header-container-mobile {
    display: flex;
  }
  header {
    padding: 0 15px;
    padding-top: 0;
    background: var(--main-200);
  }
}

/* 모바일 메뉴 스타일 */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 375px;
  height: 100%;
  background-color: var(--white);
  z-index: 1001;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid var(--grey-100);
  align-items: center;
}

.mobile-menu-header>a {
  font-size: 16px;
  font-weight: 700;
  color: var(--main-200);
}

.mobile-menu-close {
  width: 18px;
  height: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-nav {
  /* flex: 1; */
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 13px 24px;
  color: var(--text-200);
}

.mobile-nav-icon {
  width: 24px;
  height: 24px;
  margin-right: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-nav-link span {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-200);
}

.mobile-nav-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-arrow img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.mobile-customer-service {
  padding: 19px;
  background-color: var(--grey-50);
  border-radius: 10px;
  margin: 12px 24px 30px 24px;
}

.customer-service-info {
  text-align: center;
  margin-bottom: 10px;
}

.customer-service-info h3 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-200);
  line-height: 140%;
}

.customer-service-info p {
  font-size: 10px;
  font-weight: 400;
  color: #5C5C5C;
  line-height: 140%;
}

.customer-service-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.btn-call {
  background-color: var(--main-200);
  color: var(--white);
}

.btn-kakao {
  background-color: var(--sub-main-yellow);
  color: var(--text-200);
}

.mobile-social-links-wrap {
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.mobile-social-links-wrap>p {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-200);
  text-align: center;
  line-height: 140%;
}

.mobile-social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-bottom: 18px;
}

.social-link {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-btn {
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-menu::-webkit-scrollbar {
  display: none;
}

.mobile-menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
}


/* 섹션1 */
.section_1 {
  width: 100%;
  background: var(--main-200);
}
.section_1_container {
  width: 100%;
}
.section_1_swiper {
  width: 100%;
  height: 920px;
}
.swiper-slide-inner {
  width: 100%;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
  padding-top: calc(var(--header-height) + 120px);
  position: relative;
  z-index: 1;
}
.swiper-slide-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  z-index: 0;
}
.swiper-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-slide-1 .swiper-slide-img {
  right: unset;
  left: 0;
  width: 100%;
}

.swiper-slide-text {
  display: flex;
  flex-flow: column;
  gap: 90px;
  font-family: 'JalnanGothic';
}
.swiper-slide-1 .swiper-slide-text-top {
  display: flex;
  flex-flow: column;
  gap: 60px;
  text-align: right;
  margin-right: 40px;
}
.swiper-slide-2 .swiper-slide-text-top {
  display: flex;
  flex-flow: column;
  gap: 40px;
}
.swiper-slide-text-top>div {
  display: flex;
  flex-flow: column;
}
.swiper-slide-1 .swiper-slide-text-top h2 {
  font-size: var(--font-size-64);
  font-weight: 400;
  color: var(--sub-main-yellow);
  line-height: 140%;
}
.swiper-slide-2 .swiper-slide-text-top h2 {
  font-size: var(--font-size-70);
  font-weight: 400;
  color: var(--sub-main-yellow);
  line-height: 140%;
}
.swiper-slide-1 .swiper-slide-text-top p {
  font-size: var(--font-size-32);
  font-weight: 400;
  color: var(--white);
  line-height: 140%;
}
.swiper-slide-1 .swiper-slide-text-top>p {
  font-size: var(--font-size-40);
  font-weight: 400;
  color: var(--white);
  line-height: 140%;
}
.swiper-slide-1 .swiper-slide-text-top>p span {
  position: relative;
}
.swiper-slide-1 .swiper-slide-text-top>p span::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  background-image: url('./assets/images/section1_brush.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 308px;
  height: 12px;
}
.swiper-slide-1 .swiper-slide-inner-img {
  position: absolute;
  left: 0;
  bottom: 125px;
}
.swiper-slide-1 .swiper-slide-inner-img img {
  width: 895px;
  height: auto;
  object-fit: contain;
}
.swiper-slide-1 .swiper-slide-text-sub {
  width: 100%;
  font-family: 'JalnanGothic';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 104px;
  font-size: var(--font-size-18);
  font-weight: 400;
  color: var(--white);
  line-height: 140%;
  text-align: center;
}
.swiper-slide-1 .swiper-slide-text-sub span {
  position: relative;
}
.swiper-slide-1 .swiper-slide-text-sub span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  background-image: url('./assets/images/section4_brush.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 154px;
  height: 8px;
}
.swiper-slide-2 .swiper-slide-text-top p {
  font-size: var(--font-size-40);
  font-weight: 400;
  color: var(--white);
  line-height: 140%;
}
.swiper-slide-2 .swiper-slide-text-top ul {
  display: flex;
  flex-flow: column;
  gap: 16px;
}
.swiper-slide-2 .swiper-slide-text-bottom {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.swiper-slide-2 .swiper-slide-text-top ul li {
  font-size: var(--font-size-20);
  font-weight: 400;
  color: var(--white);
  line-height: 140%;
  list-style: disc;
  margin-left: 20px;
}
.swiper-slide-2 .swiper-slide-text-bottom p {
  font-size: var(--font-size-20);
  font-weight: 400;
  color: var(--white);
  line-height: 140%;
}
.swiper-slide-2 .swiper-slide-text-bottom .btn {
  border: 2px solid var(--white);
  font-size: var(--font-size-20);
  font-weight: 400;
}
.swiper-slide-2 .swiper-slide-text-bottom .btn img {
  width: 30px;
  height: 30px;
}
.swiper-slide-2 .swiper-slide-img .mobile {
  display: none;
}

.section_1_swiper .swiper-pagination {
  bottom: 50px !important;
}

.section_1_swiper .swiper-pagination-bullet {
  width: 20px !important;
  height: 20px !important;
  margin: 0 12px !important;
  background: var(--main-300) !important;
  opacity: 1 !important;
}

.section_1_swiper .swiper-pagination-bullet-active {
  background: var(--white) !important;
}

@media (max-width: 768px) {
  .section_1_swiper {
    height: unset;
    min-height: 500px;
  }
  .section_1_swiper .swiper-slide {
    height: auto;
  }
  .swiper-slide-inner {
    padding: 0 var(--gap-5);
    padding-top: calc(var(--header-height) + var(--gap-8));
    padding-bottom: var(--gap-7);
    display: flex;
    flex-flow: column;
    gap: var(--gap-7);
    /* align-items: center; */
  }
  .swiper-slide-1 .swiper-slide-inner {
    align-items: center;
  }
  .swiper-slide-img {
    position: absolute;
    top: unset;
    bottom: 0;
    height: auto;
    width: 100%;
  }
  .swiper-slide-img img {
    /* width: 100%;
    height: 100%;
    object-fit: cover; */
  }
  .swiper-slide-1 .swiper-slide-img {
    /* right: unset;
    left: 0;
    width: 100%; */
  }
  
  .swiper-slide-text {
    gap: var(--gap-4);
  }
  .swiper-slide-1 .swiper-slide-text-top {
    gap: var(--gap-7);
    text-align: center;
    margin-right: 0;
  }
  .swiper-slide-2 .swiper-slide-text-top {
    gap: var(--gap-4);
    text-align: center;
    align-items: center;
  }
  .swiper-slide-1 .swiper-slide-text-top>div {
    gap: var(--gap-3);
  }
  .swiper-slide-2 .swiper-slide-text-top>div {
    gap: var(--gap-3);
  }
  .swiper-slide-1 .swiper-slide-text-top h2 {
    font-size: var(--font-size-30);
  }
  .swiper-slide-2 .swiper-slide-text-top h2 {
    font-size: var(--font-size-30);
  }
  .swiper-slide-1 .swiper-slide-text-top p {
    font-size: var(--font-size-14);
  }
  .swiper-slide-1 .swiper-slide-text-top>p {
    font-size: var(--font-size-16);
  }
  .swiper-slide-1 .swiper-slide-text-top>p span::after {
    bottom: -1.33vw;
    width: 33.65vw;
    height: 1.6vw;
  }
  .swiper-slide-1 .swiper-slide-inner-img {
    position: relative;
    left: unset;
    bottom: unset;
  }
  .swiper-slide-1 .swiper-slide-inner-img img {
    width: 75.73vw;
  }
  .swiper-slide-1 .swiper-slide-text-sub {
    display: none;
  }
  .swiper-slide-2 .swiper-slide-text-top p {
    font-size: var(--font-size-14);
  }
  .swiper-slide-2 .swiper-slide-text-top ul {
    gap: var(--gap-2);
  }
  .swiper-slide-2 .swiper-slide-text-top ul li {
    font-size: var(--font-size-11);
    text-align: left;
  }
  .swiper-slide-2 .swiper-slide-text-bottom {
    gap: 0;
  }
  .swiper-slide-2 .swiper-slide-text-bottom p {
    font-size: var(--font-size-12);
  }
  .swiper-slide-2 .swiper-slide-text-bottom .btn {
    font-size: var(--font-size-12);
    width: 48vw;
    height: var(--gap-10);
    border-radius: var(--gap-2);
    gap: var(--gap-1);
  }
  .swiper-slide-2 .swiper-slide-text-bottom .btn img {
    width: 4.8vw;
    height: 4.8vw;
  }
  .swiper-slide-2 .swiper-slide-img .pc {
    display: none;
  }
  .swiper-slide-2 .swiper-slide-img .mobile {
    display: block;
  }
  
  .section_1_swiper .swiper-pagination {
    bottom: var(--gap-4) !important;
  }
  
  .section_1_swiper .swiper-pagination-bullet {
    width: 2.67vw !important;
    height: 2.67vw !important;
    margin: 0 1.33vw !important;
    background: var(--main-300) !important;
    opacity: 1 !important;
  }
  
  .section_1_swiper .swiper-pagination-bullet-active {
    background: var(--white) !important;
  }
}

/* 섹션2 */
.section_2 {
  padding: var(--gap-5) 0;
}
.section_2_container {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.section_2_container .content {
  min-width: 200px;
  display: flex;
  flex-flow: column;
  gap: 20px;
  align-items: center;
  font-size: var(--font-size-24);
  font-weight: 700;
  color: var(--text-200);
  line-height: 140%;
  padding: 38px 0;
}
.section_2_container .content .count {
  font-size: var(--font-size-40);
}
.section_2_container .content .sub-title {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.section_2_container .content .sub-title .ellipse {
  width: 100%;
  height: 4px;
  background: var(--grey-100);
  filter: blur(5px);
}

@media (max-width: 768px) {
  .section_2_container .content {
    min-width: 18.89vw;
    gap: 6px;
    font-size: var(--font-size-14);
    font-weight: 500;
    padding: 0;
  }
  .section_2_container .content .count {
    font-size: var(--font-size-18);
    font-weight: 700;
  }
  .section_2_container .content .sub-title .ellipse {
    margin-top: -10px;
  }
}

/* 섹션3 */
.section_3 {
  min-height: 1080px;
  background: var(--main-50);
  display: flex;
  align-items: end;
  overflow: hidden;
}
.section_3_container {
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
}
.section_3_title {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-bottom: 40px;
}
.section_3_title h2 {
  font-size: var(--font-size-64);
  font-weight: 800;
  color: var(--main-200);
  line-height: 140%;
}
.section_3_title p {
  font-size: var(--font-size-50);
  font-weight: 700;
  color: var(--text-200);
  line-height: 140%;
}
.section_3_text {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 52px;
  margin-bottom: 60px;
}
.section_3_text p {
  font-size: var(--font-size-32);
  font-weight: 600;
  color: var(--text-200);
  line-height: 140%;
}
.section_3_text p span {
  font-size: var(--font-size-40);
  font-weight: 900;
  position: relative;
}
.section_3_text p span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  background-image: url('./assets/images/section3_circle.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 81.24px;
  height: 75.754px;
}
.section_3_text .btn {
  background: var(--main-200);
  font-size: var(--font-size-30);
  font-weight: 700;
}
.section_3_text .btn img {
  width: 30px;
  height: 30px;
}
.section_3_img {
  position: relative;
  display: flex;
  align-items: start;
  margin-left: 10%;
}
.section_3_img img {
  width: 461px;
  height: auto;
  margin-right: -55px;
}
.section_3_img div {
  position: relative;
  margin-top: 50px;

  padding: 24px 36px;
  background: var(--grey-50);
  font-size: var(--font-size-24);
  font-weight: 500;
  white-space: nowrap;
  border-radius: 20px;
}
.section_3_img div::before {
  content: '';
  position: absolute;
  left: -12px;
  bottom: -24px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 53px 30px 45px;
  border-color: transparent transparent var(--grey-50) transparent;
  transform: rotate(-30deg);
}

@media (max-width: 768px) {
  .section_3 {
    min-height: 666px;
    padding-top: var(--gap-10);
  }
  .section_3_title h2 {
    font-size: var(--font-size-26);
  }
  .section_3_title p {
    font-size: var(--font-size-20);
  }
  .section_3_text {
    gap: var(--gap-4);
    margin-bottom: var(--gap-8);
  }
  .section_3_text p {
    font-size: var(--font-size-15);
  }
  .section_3_text p span {
    font-size: var(--font-size-18);
  }
  .section_3_text p span::before {
    width: 10.58vw;
    height: 9.31vw;
  }
  .section_3_text .btn {
    width: 53.33vw;
    height: 10.67vw;
    border-radius: 8px;
    font-size: var(--font-size-14);
    font-weight: 500;
  }
  .section_3_text .btn img {
    width: 4.8vw;
    height: 4.8vw;
  }
  .section_3_img img {
    width: 80vw;
    margin-right: 0;
  }
  .section_3_img {
    flex-flow: column-reverse;
    gap: var(--gap-5);
    align-items: center;
    margin-left: 0;
  }
  .section_3_img div {
    margin-top: 0;
    padding: var(--gap-5) var(--gap-8);
    font-size: var(--font-size-17);
    font-weight: 400;
    border-radius: 10px;
  }
  .section_3_img div::before {
    content: '';
    position: absolute;
    left: unset;
    right: 70px;
    bottom: -16px;
    border-width: 16px 16px 0px 0px;
    border-color: var(--grey-50) transparent transparent transparent;
    transform: rotate(0deg);
  }
}

/* 섹션4 */
.section_4 {
  min-height: 920px;
  background: var(--main-200);
  display: flex;
  align-items: end;
}
.section_4_container {
  display: flex;
  justify-content: space-between;
}
.section_4_container .content_left {
  width: 464px;
  display: flex;
  flex-flow: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}
.section_4_container .content_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section_4_container .content_right {
  padding-right: 52px;
  display: flex;
  flex-flow: column;
}
.section_4_container .content_right_top {
  display: flex;
  flex-flow: column;
  gap: 20px;
  margin-bottom: 38px;
}
.section_4_container .content_right_top h2 {
  font-size: var(--font-size-64);
  font-weight: 800;
  color: var(--white);
  line-height: 140%;
  position: relative;
}
.section_4_container .content_right_top h2::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  background-image: url('./assets/images/section4_brush.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 620px;
  height: 12px;
}
.section_4_container .content_right_top p {
  font-size: var(--font-size-22);
  font-weight: 500;
  color: var(--white);
  line-height: 140%;
}
.section_4_container .content_right_top p span {
  font-size: var(--font-size-24);
  font-weight: 700;
}
.section_4_container .content_right_middle {
  display: flex;
  flex-flow: column;
  margin-bottom: 122px;
}
.section_4_container .content_right_middle h2 {
  font-size: var(--font-size-50);
  font-weight: 800;
  color: var(--sub-main-yellow);
  line-height: 140%;
}
.section_4_container .content_right_middle h3 {
  font-size: var(--font-size-36);
  font-weight: 700;
  color: var(--white);
  line-height: 140%;
}
.section_4_container .content_right_middle h3 span {
  font-weight: 800;
  position: relative;
}
.section_4_container .content_right_middle h3 span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  background-image: url('./assets/images/section4_circle.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 76.236px;
  height: 64.152px;
}
.section_4_container .content_right_bottom {
  display: flex;
  flex-flow: column;
  gap: 9px;
  color: var(--white);
}
.section_4_container .content_right_bottom h3 {
  font-size: var(--font-size-26);
  font-weight: 700;
  line-height: 140%;
}
.section_4_container .content_right_bottom h3 span {
  font-size: var(--font-size-30);
  font-weight: 800;
}
.section_4_container .content_right_bottom p {
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: 140%;
}
.section_4_container .content_left.mobile {
  display: none;
}
.section_4_container .content_left.mobile p {
  font-size: var(--font-size-10);
  font-weight: 500;
  line-height: 140%;
  color: var(--grey-100);
}

@media (max-width: 768px) {
  .section_4 {
    min-height: 750px;
    align-items: center;
    padding: var(--gap-10) 0;
  }
  .section_4_container {
    flex-flow: column-reverse;
    align-items: center;
    gap: 6px;
  }
  .section_4_container .content_left.pc {
    display: none;
  }
  .section_4_container .content_left.mobile {
    display: flex;
  }
  .section_4_container .content_left {
    width: 100%;
  }
  .section_4_container .content_left img {
    width: 50%;
  }
  .section_4_container .content_right {
    padding-right: 0;
    text-align: center;
  }
  .section_4_container .content_right_top {
    margin-bottom: var(--gap-8);
  }
  .section_4_container .content_right_top h2 {
    font-size: var(--font-size-30);
  }
  .section_4_container .content_right_top h2::after {
    left: 50%;
    transform: translateX(-50%);
    width: 75.1vw;
    height: 2.13vw;
    bottom: 0;
  }
  .section_4_container .content_right_top p {
    font-size: var(--font-size-12);
  }
  .section_4_container .content_right_top p span {
    font-size: var(--font-size-12);
    font-weight: 800;
  }
  .section_4_container .content_right_middle {
    margin-bottom: 0;
  }
  .section_4_container .content_right_middle h2 {
    font-size: var(--font-size-26);
    font-weight: 700;
  }
  .section_4_container .content_right_middle h3 {
    font-size: var(--font-size-16);
  }
  .section_4_container .content_right_middle h3 span {
    font-weight: 700;
  }
  .section_4_container .content_right_middle h3 span::before {
    width: 9.07vw;
    height: 7.73vw;
  }
  .section_4_container .content_right_bottom {
    display: none;
  }
}

/* 섹션5 */
.section_5 {
  min-height: 950px;
  padding-top: 148px;
  padding-bottom: 30px;
  display: flex;
}
.section_5_container {
  height: auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
}
.section_5_container .content_left {
  flex: 1;
  display: flex;
  flex-flow: column;
  gap: 100px;
}
.section_5_container .content_right {
  width: 473px;
  height: 100%;
  position: relative;
  display: flex;
  flex-flow: column;
  gap: var(--gap-1);
}
.section_5_container .content_left_top {
  display: flex;
  flex-flow: column;
  gap: 42px;
}
.section_5_container .content_left_top_title {
  display: flex;
  flex-flow: column;
  gap: 8px;
}
.section_5_container .content_left_top_title h2:first-child {
  font-size: var(--font-size-60);
  font-weight: 900;
  color: var(--main-200);
  line-height: 140%;
}
.section_5_container .content_left_top_title h2:last-child {
  font-size: var(--font-size-54);
  font-weight: 700;
  color: var(--text-200);
  line-height: 140%;
}
.section_5_container .content_left_top_text {
  display: flex;
  flex-flow: column;
  gap: 5px;
}
.section_5_container .content_left_top_text p {
  font-size: var(--font-size-30);
  font-weight: 700;
  line-height: 140%;
  color: #333333;
}
.section_5_container .content_left_top>p {
  font-size: var(--font-size-26);
  font-weight: 400;
  line-height: 140%;
  color: var(--text-200);
}
.section_5_container .content_left_bottom {
  font-size: var(--font-size-24);
  font-weight: 500;
  line-height: 140%;
  color: var(--text-100);
}
.section_5_container .content_right .content_box {
  width: 100%;
  height: 710px;
  display: flex;
  flex-flow: column;
  align-items: center;
  background: var(--main-50);
  border-radius: 32px;
  padding-top: 70px;
  gap: 4px;
  text-align: center;
}
.section_5_container .content_right .content_box h3 {
  font-size: var(--font-size-30);
  font-weight: 600;
  line-height: 140%;
  color: var(--text-200);
}
.section_5_container .content_right .content_box p {
  font-size: var(--font-size-20);
  font-weight: 400;
  line-height: 140%;
  color: var(--text-100);
}
.section_5_container .content_right .content_img {
  position: absolute;
  bottom: 0;
  right: 0;
}
.section_5_container .content_right .content_img .mobile {
  display: none;
  width: 83.43vw;
}
.section_5_container .content_right>p {
  font-size: var(--font-size-10);
  font-weight: 500;
  line-height: 140%;
  color: var(--text-100);
  text-align: right;
  display: none;
}


@media (max-width: 768px) {
  .section_5 {
    min-height: 619px;
    padding-top: var(--gap-10);
    padding-bottom: var(--gap-10);
  }
  .section_5_container {
    flex-flow: column;
    gap: var(--gap-10);
    padding: 0 28.5px;
  }
  .section_5_container .content_right {
    width: 100%;
    height: unset;
  }
  .section_5_container .content_left_top {
    gap: 0;
  }
  .section_5_container .content_left_top_title {
    gap: 0;
    margin-bottom: var(--gap-2);
  }
  .section_5_container .content_left_top_title h2:first-child {
    font-size: var(--font-size-30);
  }
  .section_5_container .content_left_top_title h2:last-child {
    font-size: var(--font-size-24);
  }
  .section_5_container .content_left_top_text {
    gap: 0;
    margin-bottom: var(--gap-5);
  }
  .section_5_container .content_left_top_text p {
    font-size: var(--font-size-12);
    font-weight: 600;
  }
  .section_5_container .content_left_top>p {
    font-size: var(--font-size-12);
    font-weight: 500;
    color: var(--text-100);
  }
  .section_5_container .content_left_bottom {
    display: none;
  }
  .section_5_container .content_right .content_box {
    width: 54.97vw;
    height: 82.51vw;
    border-radius: 10px;
    padding-top: 8.96vw;
    padding-right: var(--gap-2);
    gap: 0;
    text-align: right;
    margin-left: auto;
    align-items: end;
  }
  .section_5_container .content_right .content_box h3 {
    font-size: var(--font-size-16);
  }
  .section_5_container .content_right .content_box p {
    font-size: var(--font-size-10);
  }
  .section_5_container .content_right .content_img {
    position: absolute;
    bottom: 9.07vw;
    right: 0;
  }
  .section_5_container .content_right .content_img .pc {
    display: none;
  }
  .section_5_container .content_right .content_img .mobile {
    display: block;
  }
  .section_5_container .content_right>p {
    display: block;
  }
}

/* 섹션6 */
.section_6 {
  min-height: 1070px;
  background: var(--main-50);
  padding-top: 100px;
  padding-bottom: 80px;
}
.section_6_container {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.section_6_top {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.section_6_top_text {
  position: absolute;
  top: 0;
  left: 59%;
  padding: 20px 30px 20px 58px;
  background: var(--grey-50);
  font-size: var(--font-size-24);
  font-weight: 500;
  white-space: nowrap;
  border-radius: 20px;
  color: var(--text-200);
  line-height: 140%;
}
.section_6_top_text::before {
  content: '';
  position: absolute;
  left: 30px;
  bottom: -24px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 25px 24px 40px;
  border-color: transparent transparent var(--grey-50) transparent;
  transform: rotate(-45deg);
}
.section_6_top_img {
  width: 100%;
  display: flex;
  justify-content: center;
}
.section_6_top_img img {
  width: 328px;
  height: auto;
  object-fit: contain;
}
.section_6_bottom {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.section_6_table_wrap {
  position: relative;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}
.section_6_table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 20px;
  overflow: hidden;
  table-layout: fixed;
}
.section_6_table_title {
  position: absolute;
  right: 27px;
  top: -28px;
  font-size: var(--font-size-20);
  font-weight: 600;
  color: #333333;
}
.section_6_table th {
  background: var(--main-200);
  color: var(--white);
  font-size: var(--font-size-20);
  font-weight: 400;
  padding: 15px 32px;
  min-height: 57px;
  height: 57px;
  text-align: left;
}
.section_6_table td {
  padding: 15px 32px;
  font-size: var(--font-size-20);
  font-weight: 400;
  color: var(--text-200);
  min-height: 57px;
  height: 57px;
  border-bottom: 1px solid var(--grey-100);
  vertical-align: middle;
  background: var(--white);
}
.section_6_table td.highlight {
  background: var(--main-100);
  font-weight: 600;
}
.section_6_table td.highlight>div {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 4px;
}
.section_6_table td.highlight img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.section_6_info_wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 60px;
  margin: 0 auto;
}
.section_6_info {
  display: flex;
  flex-direction: column;
  gap: var(--gap-3);
}
.section_6_info .info_item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.section_6_info .info_icon,
.section_6_other_info .info_icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_6_info .info_icon img,
.section_6_other_info .info_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section_6_info .info_item h4 {
  font-size: var(--font-size-30);
  font-weight: 700;
  color: var(--text-200);
  line-height: 140%;
}
.section_6_info .info_details {
  display: flex;
  flex-direction: column;
  gap: var(--gap-2);
  margin-left: var(--gap-6);
}
.section_6_info .detail_item {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-1);
}
.section_6_info .detail_icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_6_info .detail_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section_6_info .detail_item p {
  font-size: var(--font-size-18);
  font-weight: 500;
  color: var(--text-100);
  line-height: 140%;
}
.section_6_info .detail_item p.info_note {
  font-size: var(--font-size-12);
  font-weight: 500;
  color: var(--text-100);
  line-height: 140%;
  margin-top: var(--gap-1);
}
.section_6_other_info {
  display: flex;
  flex-direction: column;
  gap: var(--gap-13);
}
.section_6_other_info .other_info_item {
  display: flex;
  gap: 5px;
}
.section_6_other_info .other_info_text {
  display: flex;
  flex-flow: column;
  gap: var(--gap-1);
  margin-top: var(--gap-1);
}
.section_6_other_info .other_info_text h4 {
  font-size: var(--font-size-30);
  font-weight: 700;
  color: var(--text-200);
  line-height: 140%;
}
.section_6_other_info .other_info_text p {
  font-size: var(--font-size-18);
  font-weight: 500;
  color: var(--text-100);
  line-height: 140%;
}

@media (max-width: 768px) {
  .section_6 {
    min-height: 761px;
    padding-top: var(--gap-10);
    padding-bottom: var(--gap-10);
  }
  .section_6_container {
    padding: 0 8px;
  }
  .section_6_top {
    width: 100%;
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: var(--gap-5);
  }
  .section_6_top_text {
    position: relative;
    width: fit-content;
    top: unset;
    left: unset;
    padding: var(--gap-4) var(--gap-7);
    font-size: var(--font-size-18);
    font-weight: 600;
    border-radius: 10px;
  }
  .section_6_top_text::before {
    left: 50%;
    bottom: -3.6vw;
    transform: translateX(-50%);
    border-width: 3.73vw 2.67vw 0px 2.67vw;
    border-color: var(--grey-50) transparent transparent transparent;
    transform: rotate(0);
  }
  .section_6_top_img img {
    width: 30.67vw;
  }
  .section_6_bottom {
    gap: var(--gap-5);
  }
  .section_6_table {
    border-radius: 10px;
  }
  .section_6_table_title {
    right: var(--gap-2);
    top: -4.27vw;
    font-size: var(--font-size-10);
  }
  .section_6_table th {
    background: var(--main-300);
    font-size: var(--font-size-12);
    padding: var(--gap-3) 2.67vw;
    min-height: 40px;
    height: 40px;
  }
  .section_6_table td {
    padding: 0 0 0 2.67vw;
    font-size: var(--font-size-12);
    min-height: unset;
    height: var(--gap-10);
    line-height: 140%;
  }
  .section_6_table td.highlight {
    gap: 2px;
  }
  .section_6_table td.highlight img {
    width: var(--gap-6);
    height: var(--gap-6);
  }
  .section_6_info_wrap {
    flex-flow: column;
    gap: var(--gap-3);
    padding: 0 var(--gap-5);
  }
  .section_6_info {
    gap: var(--gap-1);
  }
  .section_6_info .info_icon,
  .section_6_other_info .info_icon {
    width: var(--gap-6);
    height: var(--gap-6);
  }
  .section_6_info .info_item h4 {
    font-size: var(--font-size-16);
    margin-top: var(--gap-1);
  }
  .section_6_info .info_details {
    gap: 2px;
    margin-left: 2.8vw;
  }
  .section_6_info .detail_item {
    gap: var(--gap-1);
  }
  .section_6_info .detail_icon {
    width: 3.73vw;
    height: 3.73vw;
  }
  .section_6_info .detail_item p {
    font-size: var(--font-size-11);
  }
  .section_6_info .detail_item p.info_note {
    font-size: var(--font-size-8);
    margin-top: 2px;
  }
  .section_6_other_info {
    gap: var(--gap-3);
  }
  .section_6_other_info .other_info_text h4 {
    font-size: var(--font-size-16);
  }
  .section_6_other_info .other_info_text p {
    font-size: var(--font-size-10);
  }
  .section_6_other_info .other_info_text p span {
    font-weight: 600;
    color: var(--text-200);
  }
}


/* 섹션7 */
.section_7 {
  min-height: 2703px;
  background: var(--main-200);
  padding-top: 150px;
  padding-bottom: 108px;
}
.section_7_container {
  display: flex;
  flex-flow: column;
}
.section_7 .content_title {
  display: flex;
  flex-flow: column;
  gap: var(--gap-16);
  position: relative;
  padding-bottom: 150px;
}
.section_7 .content_title>div {
  display: flex;
  flex-flow: column;
  gap: 20px;
}
.section_7 .content_title>div h2 {
  font-size: var(--font-size-64);
  font-weight: 800;
  color: var(--sub-main-yellow);
  line-height: 140%;
}
.section_7 .content_title>div p {
  font-size: var(--font-size-28);
  font-weight: 600;
  color: var(--white);
  line-height: 140%;
}
.section_7 .content_title .brush {
  font-size: var(--font-size-44);
  font-weight: 700;
  color: var(--white);
  line-height: 140%;
  position: relative;
}
.section_7 .content_title .brush::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: -10px;
  background-image: url(./assets/images/section4_brush2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 306px;
  height: 16px;
}
.section_7 .content_title .content_title_img {
  position: absolute;
  right: 0;
  bottom: 0;
}
.section_7 .content_title .content_title_img img {
  width: 655.14px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .section_7 {
    min-height: 1942px;
    padding-top: var(--gap-10);
    padding-bottom: var(--gap-10);
  }
  .section_7_container {
    padding: 0;
  }
  .section_7 .content_title {
    gap: 0;
    padding: 0 var(--gap-8);
    padding-bottom: var(--gap-12);
  }
  .section_7 .content_title>div h2 {
    font-size: var(--font-size-30);
    font-weight: 900;
  }
  .section_7 .content_title>div p {
    font-size: var(--font-size-12);
    font-weight: 700;
  }
  .section_7 .content_title .brush {
    font-size: var(--font-size-24);
    margin: 0 auto;
  }
  .section_7 .content_title .brush::after {
    left: -1.33vw;
    width: 45.07vw;
    height: var(--gap-3);
  }
  .section_7 .content_title .content_title_img {
    position: relative;
    right: unset;
    bottom: unset;
    margin: 0 auto;
    margin-top: var(--gap-5);
  }
  .section_7 .content_title .content_title_img img {
    width: 76.74vw;
  }
}

.section_7 .content_table_1 {
  display: flex;
  flex-flow: column;
  padding: 0 5px;
}
.section_7 .content_table_1 .content_table_1_img {
  display: flex;
  margin-left: 53px;
  gap: 48px;
  align-items: start;
}
.section_7 .content_table_1 .content_table_1_img img {
  width: 260px;
  height: auto;
  object-fit: contain;
}
.section_7 .content_table_1 .content_table_1_img div {
  padding: 22px 70px;
  background: var(--white);
  font-size: var(--font-size-28);
  font-weight: 600;
  white-space: nowrap;
  border-radius: 20px;
  position: relative;
}
.section_7 .content_table_1 .content_table_1_img div::before {
  content: '';
  position: absolute;
  left: -12px;
  bottom: -24px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 53px 30px 45px;
  border-color: transparent transparent var(--white) transparent;
  transform: rotate(-30deg);
}
.section_7 .content_table_1>div:nth-child(2) {
  display: flex;
  justify-content: space-between;
  gap: var(--gap-3);
}
.section_7_table_wrap {
  position: relative;
  flex: 1;
  display: flex;
  flex-flow: column;
  gap: 6px;
}
.section_7_table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 20px;
  overflow: hidden;
}
.section_7_table_title {
  position: absolute;
  right: 22px;
  top: -24px;
  font-size: var(--font-size-18);
  font-weight: 600;
  color: var(--white);
}
.section_7_table th {
  background: var(--main-300);
  color: var(--white);
  font-size: var(--font-size-20);
  font-weight: 700;
  padding: 15px 32px;
  height: 57px;
  text-align: left;
}
.section_7_table td {
  padding: 0 32px;
  font-size: var(--font-size-18);
  font-weight: 400;
  color: var(--text-200);
  height: 64px;
  border-bottom: 1px solid var(--grey-100);
  vertical-align: middle;
  background: var(--white);
  line-height: 140%;
}
.section_7_table td.highlight {
  background: var(--main-100);
  font-weight: 700;
}
.section_7_table tr td:nth-child(2) {
  font-weight: 500;
}
.section_7_slider1_wrap {
  width: 468px;
  max-height: 441px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: -2px -2px 4px 0 #D3D3D3 inset, 2px 2px 4px 0 rgba(0, 0, 0, 0.25) inset;
  padding: 22px 12px 26px 12px;
  display: flex;
  flex-flow: column;
  gap: 14px;
}
.section_7_slider1_wrap>h3 {
  width: fit-content;
  margin: 0 auto;
  font-size: var(--font-size-18);
  font-weight: 600;
  color: var(--text-200);
  line-height: 140%;
  text-align: center;
  padding: 4px;
  border-bottom: 1px solid var(--text-100);
}
.section_7_slider1 {
  display: flex;
  align-items: center;
  gap: 5px;
}
.section_7_swiper_prev_1,
.section_7_swiper_next_1,
.section_7_swiper_prev_2,
.section_7_swiper_next_2 {
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_7_swiper_prev_1 img,
.section_7_swiper_next_1 img,
.section_7_swiper_prev_2 img,
.section_7_swiper_next_2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section_7_swiper_prev_1,
.section_7_swiper_prev_2 {
  transform: rotate(180deg);
}
.section_7_swiper_1 {
  width: 380px;
}
.section_7_swiper_1 .swiper-slide>div {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_7_swiper_1 .swiper-slide>div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .section_7 .content_table_1 {
    padding: 0 var(--gap-2);
  }
  .section_7 .content_table_1 .content_table_1_img {
    flex-flow: column-reverse;
    margin-left: 0;
    gap: 0;
    align-items: center;
    gap: var(--gap-3);
  }
  .section_7 .content_table_1 .content_table_1_img img {
    width: 33.33vw;
  }
  .section_7 .content_table_1 .content_table_1_img div {
    padding: var(--gap-3) var(--gap-4);
    font-size: var(--font-size-16);
    border-radius: 10px;
  }
  .section_7 .content_table_1 .content_table_1_img div::before {
    left: 50%;
    bottom: -3.4vw;
    border-width: 3.73vw 2.67vw 0px 2.67vw;
    border-color: var(--white) transparent transparent transparent;
    transform: rotate(0) translateX(-50%);
  }
  .section_7 .content_table_1>div:nth-child(2) {
    flex-flow: column;
    gap: var(--gap-2);
  }
  .section_7_table_wrap {
    position: relative;
    flex: 1;
  }
  .section_7_table {
    border-radius: 10px;
  }
  .section_7_table_title {
    display: none;
  }
  .section_7_table th {
    font-size: var(--font-size-12);
    font-weight: 500;
    padding: 0 var(--gap-4);
    height: var(--gap-10);
  }
  .section_7_table td {
    padding: 0 var(--gap-4);
    padding-right: 0;
    font-size: var(--font-size-12);
    height: var(--gap-10);
  }
  .section_7_table td.small {
    font-size: var(--font-size-10);
  }
  .content_table_2 .section_7_table th,
  .content_table_2 .section_7_table td {
    font-size: var(--font-size-10);
  }
  .section_7_table tr td:nth-child(2) {
    font-weight: 400;
  }
  .section_7_slider1_wrap {
    width: 100%;
    max-height: unset;
    border-radius: 10px;
    padding: var(--gap-4) var(--gap-2) var(--gap-5) var(--gap-2);
    display: flex;
    flex-flow: column;
    gap: 10px;
  }
  .section_7_slider1_wrap>h3 {
    font-size: var(--font-size-14);
    font-weight: 600;
  }
  .section_7_slider1 {
    gap: var(--gap-1);
  }
  .section_7_swiper_prev_1,
  .section_7_swiper_next_1,
  .section_7_swiper_prev_2,
  .section_7_swiper_next_2 {
    width: var(--gap-6);
    height: var(--gap-6);
  }
  .section_7_swiper_1 {
    width: 77.87vw;
  }
}

.section_7 .content_table_2 {
  display: flex;
  flex-flow: column;
  padding: 0 155px;
  margin-top: 132px;
}
.section_7 .content_table_2 .content_table_2_img {
  display: flex;
  margin-right: 118px;
  margin-left: auto;
  gap: 45px;
  align-items: start;
}
.section_7 .content_table_2 .content_table_2_img img {
  width: 244px;
  height: auto;
  object-fit: contain;
}
.section_7 .content_table_2 .content_table_2_img div {
  padding: 22px 60px;
  background: var(--white);
  font-size: var(--font-size-28);
  font-weight: 600;
  white-space: nowrap;
  border-radius: 20px;
  position: relative;
}
.section_7 .content_table_2 .content_table_2_img div::before {
  content: '';
  position: absolute;
  right: -12px;
  bottom: -24px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 53px 30px 45px;
  border-color: transparent transparent var(--white) transparent;
  transform: scaleX(-1) rotate(-30deg);
}
.section_7_table_wrap>p {
  margin-left: 28px;
  font-size: var(--font-size-12);
  font-weight: 500;
  color: var(--text-200);
  line-height: 140%;
}

@media (max-width: 768px) {
  .section_7 .content_table_2 {
    padding: 0 var(--gap-2);
    margin-top: var(--gap-14);
  }
  .section_7 .content_table_2 .content_table_2_img {
    flex-flow: column;
    margin-left: 0;
    margin-right: 0;
    gap: 0;
    align-items: center;
    gap: var(--gap-3);
  }
  .section_7 .content_table_2 .content_table_2_img img {
    width: 34.67vw;
  }
  .section_7 .content_table_2 .content_table_2_img div {
    padding: var(--gap-3) var(--gap-4);
    font-size: var(--font-size-16);
    border-radius: 10px;
  }
  .section_7 .content_table_2 .content_table_2_img div::before {
    left: 50%;
    bottom: -3.4vw;
    border-width: 3.73vw 2.67vw 0px 2.67vw;
    border-color: var(--white) transparent transparent transparent;
    transform: rotate(0) translateX(-50%);
  }    
  .section_7_table_wrap>p {
    margin-left: var(--gap-2);
    font-size: var(--font-size-10);
  }
}

.section_7_slider2 {
  padding: 0 30px;
  margin-top: 36px;
}
.section_7_slider2>div {
  width: 100%;
  height: 300px;
  display: flex;
  flex-flow: column;
  gap: 20px;
  border-radius: 20px;
  background: var(--white);
  padding: 27px 35px 70px 35px;
}
.section_7_slider2>div>h3 {
  font-size: var(--font-size-30);
  font-weight: 700;
  color: var(--text-200);
  line-height: 140%;
  text-align: center;
}
.section_7_slider2_wrap {
  display: flex;
  align-items: center;
  gap: 25px;
}
.section_7_swiper_2 {
  flex: 1;
  height: 142px;
}
.section_7_swiper_2 .swiper-slide>div {
  height: 100%;
}
.section_7_swiper_2 .swiper-slide>div img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .section_7_slider2 {
    padding: 0 var(--gap-1);
    margin-top: var(--gap-5);
  }
  .section_7_slider2>div {
    height: unset;
    gap: 10px;
    border-radius: 10px;
    padding: var(--gap-2) 0 var(--gap-4) 0;
  }
  .section_7_slider2>div>h3 {
    font-size: var(--font-size-12);
    font-weight: 500;
  }
  .section_7_slider2_wrap {
    gap: 0;
  }
  .section_7_swiper_2 {
    height: var(--gap-10);
  }
}

/* 섹션8 */
.section_8 {
  min-height: 900px;
  padding-top: 150px;
  padding-bottom: 134px;
}
.section_8_container {
  display: flex;
  flex-flow: column;
  gap: 80px;
}
.section_8_title {
  display: flex;
  flex-flow: column;
  text-align: center;
}
.section_8_title h2 {
  font-size: var(--font-size-64);
  font-weight: 900;
  color: var(--main-200);
  line-height: 140%;
}
.section_8_title p {
  font-size: var(--font-size-50);
  font-weight: 700;
  color: var(--text-200);
  line-height: 140%;
}
.section_8_content_wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.section_8_content {
  flex: 1;
  text-align: center;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 34px;
  padding: 48px 10px;
  border-radius: 28px;
  box-shadow: 10px 10px 20px 4px rgba(0, 0, 0, 0.15);
  background: var(--main-300);
  color: var(--white);
}
.section_8_content:nth-child(even) {
  background: var(--white);
  color: var(--text-200);
}
.section_8_content>div {
  display: flex;
  flex-flow: column;
  flex: 1;
}
.section_8_content>div h3 {
  font-size: var(--font-size-30);
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 26px;
}
.section_8_content>div p:nth-of-type(1) {
  font-size: var(--font-size-19);
  font-weight: 500;
  line-height: 140%;
  color: var(--grey-100);
  margin-bottom: 18px;
}
.section_8_content:nth-child(even)>div p:nth-of-type(1) {
  color: var(--text-100);
}
.section_8_content>div p:nth-of-type(2) {
  font-size: var(--font-size-20);
  font-weight: 600;
  line-height: 140%;
  margin-top: auto;
}

.section_8_content button {
  width: fit-content;
  display: flex;
  width: 148px;
  height: 50px;
  padding: 11px 39px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: var(--white);
  margin: 0 auto;
  color: var(--text-200);
  font-size: var(--font-size-20);
  font-weight: 600;
  line-height: 140%;
}
.section_8_content:nth-child(even) button {
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.10);
}

@media (max-width: 768px) {
  .section_8 {
    min-height: unset;
    padding-top: var(--gap-10);
    padding-bottom: var(--gap-10);
  }
  .section_8_container {
    gap: var(--gap-8);
    padding: 0 var(--gap-7);
  }
  .section_8_title {
    text-align: start;
  }
  .section_8_title h2 {
    font-size: var(--font-size-30);
  }
  .section_8_title p {
    font-size: var(--font-size-20);
  }
  .section_8_content_wrap {
    flex-flow: column;
    gap: var(--gap-5);
  }
  .section_8_content {
    min-height: 260px;
    flex: 1;
    text-align: center;
    display: flex;
    flex-flow: column;
    justify-content: start;
    gap: var(--gap-5);
    padding: var(--gap-9) 5px;
  }
  .section_8_content>div h3 {
    font-size: var(--font-size-24);
    margin-bottom: var(--gap-3);
  }
  .section_8_content>div p:nth-of-type(1) {
    font-size: var(--font-size-12);
    margin-bottom: var(--gap-3);
  }
  .section_8_content>div p:nth-of-type(2) {
    font-size: var(--font-size-16);
  }
  
  .section_8_content button {
    width: 33.07vw;
    height: var(--gap-10);
    padding: var(--gap-2) var(--gap-8);
    font-size: var(--font-size-16);
    font-weight: 700;
  }
}


/* 섹션9 */
.section_9 {
  min-height: 1380px;
  background: var(--main-50);
  padding-top: 140px;
  padding-bottom: 100px;  
}
.section_9_container {
  display: flex;
  flex-flow: column;
  gap: 110px;
}
.section_9_title {
  display: flex;
  flex-flow: column;
  text-align: center;
}
.section_9_title h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-50);
  font-weight: 700;
  color: var(--text-200);
  line-height: 140%;
  gap: 12px;
}
.section_9_title h2 span {
  color: var(--main-200);
  font-size: var(--font-size-64);
  font-weight: 900;
}
.section_9_title p {
  font-size: var(--font-size-30);
  font-weight: 500;
  color: var(--text-200);
  line-height: 140%;
}
.section_9_content_wrap {
  display: flex;
  flex-flow: column;
}
.section_9_content1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.section_9_table_wrap {
  flex: 1;
  margin-left: 24px;
}
.section_9_table_wrap table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.section_9_table_wrap table th {
  height: 80px;
  font-size: var(--font-size-22);
  font-weight: 700;
  line-height: 140%;
  color: var(--white);
  background: var(--main-200);
  border-right: 1px solid var(--main-50);
  border-bottom: 1px solid var(--main-50);
}
.section_9_table_wrap table th:last-child {
  border-right: none;
}
.section_9_table_wrap table td {
  height: 80px;
  font-size: var(--font-size-22);
  font-weight: 600;
  line-height: 140%;
  color: var(--text-200);
  border: 1px solid #eee;
  border-top: none;
  background: var(--white);
  text-align: center;
}
.section_9_content1_img {
  width: 280px;
  position: relative;
  margin-top: 50px;
}
.section_9_content1_img .section_9_img1_mobile {
  display: none;
}
.section_9_content1_img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.section_9_content1_img>div {
  position: absolute;
  padding: 24px 52px;
  background: var(--sub-main-yellow);
  font-size: var(--font-size-24);
  font-weight: 600;
  white-space: nowrap;
  border-radius: 20px;
  color: var(--text-200);
  top: -88px;
  left: -200%;
}
.section_9_content1_img>div::before {
  content: '';
  position: absolute;
  right: -12px;
  bottom: -24px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 53px 30px 45px;
  border-color: transparent transparent var(--sub-main-yellow) transparent;
  transform: scaleX(-1) rotate(-30deg);
}
.section_9_content2 {
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 44px;
  padding: 50px 0 40px;
  background: var(--main-100);
  margin-top: -90px;
  margin-bottom: 70px;
  border-radius: 24px;
}
.section_9_content2 h3 {
  font-size: var(--font-size-28);
  font-weight: 600;
  line-height: 140%;
  color: var(--text-200);
  text-align: center;
}
.section_9_swiper_wrap {
  width: 100%;
  padding-left: 65px;
  overflow: hidden;
}
.section_9_swiper {
  width: 100%;
}
.section_9_swiper .swiper-slide {
  width: auto;
}
.section_9_swiper .swiper-slide>div {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 4px;
  width: 150px;
  height: auto;
}
.section_9_swiper .swiper-slide>div img {
  width: 140px;
  height: auto;
  object-fit: contain;
}
.section_9_swiper .swiper-slide>div h4 {
  font-size: var(--font-size-20);
  font-weight: 500;
  color: var(--text-200);
  text-align: center;
  white-space: nowrap;
  line-height: 38px;
}
.section_9_content3 {
  display: flex;
  flex-flow: column;
  gap: 10px;
  align-items: center;
}
.section_9_content3 p {
  font-size: var(--font-size-24);
  font-weight: 500;
  line-height: 140%;
  color: var(--text-200);
  text-align: center;
}
.section_9_content3 button {
  background: var(--main-200);
  font-size: var(--font-size-30);
  font-weight: 700;
}
.section_9_content3 button img {
  width: 30px;
  height: 30px;
}

@media (max-width: 768px) {
  .section_9 {
    min-height: unset;
    padding-top: var(--gap-10);
    padding-bottom: var(--gap-10);  
  }
  .section_9_container {
    gap: var(--gap-10);
    padding: 0 var(--gap-3);
  }
  .section_9_title {
    gap: var(--gap-1);
  }
  .section_9_title h2 {
    font-size: var(--font-size-30);
    gap: var(--gap-1);
  }
  .section_9_title h2 span {
    font-size: var(--font-size-30);
  }
  .section_9_title p {
    font-size: var(--font-size-20);
  }
  .section_9_content1 {
    align-items: end;
    flex-flow: column-reverse;
    gap: 0;
  }
  .section_9_table_wrap {
    margin-left: 0;
  }
  .section_9_table_wrap table th {
    height: var(--gap-10);
    font-size: var(--font-size-14);
  }
  .section_9_table_wrap table th span {
    display: none;
  }
  .section_9_table_wrap table td {
    height: var(--gap-13);
    font-size: var(--font-size-12);
    font-weight: 400;
  }
  .section_9_content1_img .section_9_img1_pc {
    display: none;
  }
  .section_9_content1_img .section_9_img1_mobile {
    display: block;
  }
  .section_9_content1_img {
    width: 100%;
    margin-top: 0;
    display: flex;
    flex-flow: column;
    align-items: end;
    gap: var(--gap-2);
  }
  .section_9_content1_img img {
    width: 34.67vw;
  }

  .section_9_content1_img>div {
    position: relative;
    padding: var(--gap-4) var(--gap-7);
    font-size: var(--font-size-18);
    border-radius: 20px;
    top: unset;
    left: unset;
    margin: 0 auto;
  }
  .section_9_content1_img>div::before {
    content: '';
    position: absolute;
    right: 15vw;
    bottom: -4vw;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px var(--gap-4) var(--gap-4) 0;
    border-color: transparent var(--sub-main-yellow) transparent transparent;
    transform: unset;
  }
  .section_9_content2 {
    gap: var(--gap-3);
    padding: var(--gap-5) 0 var(--gap-5);
    margin-top: var(--gap-5);
    margin-bottom: var(--gap-4);
    border-radius: 8px;
  }
  .section_9_content2 h3 {
    font-size: var(--font-size-12);
  }
  .section_9_swiper_wrap {
    padding-left: var(--gap-4);
  }
  .section_9_swiper .swiper-slide>div {
    gap: 1px;
    width: var(--gap-13);
  }
  .section_9_swiper .swiper-slide>div img {
    width: 100%;
  }
  .section_9_swiper .swiper-slide>div h4 {
    font-size: var(--font-size-10);
    white-space: nowrap;
    line-height: 4.87vw;
  }
  .section_9_content3 {
    gap: var(--gap-2);
  }
  .section_9_content3 p {
    font-size: var(--font-size-11);
  }
  .section_9_content3 button {
    font-size: var(--font-size-14);
    font-weight: 500;
    width: 53.33vw;
    height: var(--gap-10);
    border-radius: var(--gap-2);
  }
  .section_9_content3 button img {
    width: 4.8vw;
    height: 4.8vw;
  }
}


/* 섹션10 */
.section_10 {
  min-height: 1000px;
  background: var(--main-200);
  padding-top: 100px;
  padding-bottom: 120px;  
}
.section_10_container {
  display: flex;
  flex-flow: column;
  gap: 50px;
}
.section_10_title {
  display: flex;
  flex-flow: column;
  text-align: center;
  color: var(--white);
  gap: 10px;
}
.section_10_title h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-50);
  font-weight: 700;
  line-height: 140%;
  gap: 12px;
}
.section_10_title h2 span {
  color: var(--sub-main-yellow);
  font-size: var(--font-size-64);
  font-weight: 900;
}
.section_10_title>div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
}
.section_10_title>div>div {
  display: flex;
  align-items: center;
  gap: 4px;
}
.section_10_title>div>div img {
  width: 50px;
  height: 50px;
}
.section_10_title>div>div p {
  font-size: var(--font-size-30);
  font-weight: 700;
  line-height: 140%;
}
.section_10_content_wrap {
  display: flex;
  justify-content: center;
  gap: 74px;
}
.section_10_content1,
.section_10_content2 {
  width: 600px;
  height: 580px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 30px;
}
.section_10_content1 {
  gap: 30px;
  padding: 0 72px;
  cursor: pointer;
}
.section_10_content1>div:nth-child(1) {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 20px;
}
.section_10_content1>div:nth-child(1) .section_10_content1_img {
  width: 100%;
  position: relative;
}
.section_10_content1>div:nth-child(1) .section_10_content1_img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.section_10_content1>div:nth-child(1) .section_10_content1_img .icon_play {
  width: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.section_10_content1>div:nth-child(1) .section_10_content1_text {
  display: flex;
  flex-flow: column;
  text-align: center;
}
.section_10_content1>div:nth-child(1) .section_10_content1_text p {
  font-size: var(--font-size-18);
  font-weight: 500;
  line-height: 140%;
  color: var(--text-200);
}
.section_10_content1>div:nth-child(2) {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section_10_content1_img2 {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 18px;
  width: 220px;
  height: 140px;
  box-shadow: inset 2px 2px 6px rgba(0, 0, 0, 0.15);
  border-radius: 18px;
  background: var(--main-100);
} 
.section_10_content1_img2 div {
  width: 106px;
  height: 30px;
  font-size: var(--font-size-18);
  font-weight: 500;
  color: var(--text-200);
  text-align: center;
  line-height: 140%;
  border-radius: 0px 0px 10px 10px;
  background: var(--sub-main-yellow);
}
.section_10_content1_img2 img {
  width: 150px;
  height: auto;
  object-fit: contain;
}
.section_10_content1_text2 {
  display: flex;
  flex-flow: column;
  gap: 6px;
}
.section_10_content1_text2 h3 {
  font-size: var(--font-size-32);
  font-weight: 500;
  line-height: 140%;
  color: var(--text-200);
}
.section_10_content1_text2 p {
  font-size: var(--font-size-22);
  font-weight: 500;
  line-height: 140%;
  color: var(--text-200);
}
.section_10_content2 {
  gap: 20px;
}
.section_10_content2 h3 {
  font-size: var(--font-size-32);
  font-weight: 700;
  line-height: 140%;
  color: var(--text-200);
}
.section_10_content2 h3 span {
  position: relative;
}
.section_10_content2 h3 span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(./assets/images/section10_circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 98.92px;
  height: 57px;
}
.section_10_content2>div {
  display: flex;
  flex-flow: column;
  gap: 76px;
}
.section_10_content2_top {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.section_10_content2_top>div {
  width: 240px;
  height: 200px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: inset 2px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 18px;
  background: var(--main-100);
}
.section_10_content2_top>div h4 {
  font-size: var(--font-size-22);
  font-weight: 500;
  line-height: 140%;
  color: var(--text-200);
}
.section_10_content2_top>div p {
  font-size: var(--font-size-28);
  font-weight: 700;
  line-height: 140%;
  color: var(--text-200);
  text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.15);
}
.section_10_content2_bottom {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 10px;
}
.section_10_content2_bottom p {
  font-size: var(--font-size-24);
  font-weight: 400;
  line-height: 140%;
  color: var(--text-200);
}
.section_10_content2_bottom .btn {
  font-size: var(--font-size-30);
  font-weight: 700;
  background: var(--main-200);
}
.section_10_content2_bottom .btn img {
  width: 30px;
  height: 30px;
}

@media (max-width: 768px) {
  .section_10 {
    min-height: unset;
    padding-top: var(--gap-10);
    padding-bottom: var(--gap-10);  
  }
  .section_10_container {
    gap: var(--gap-5);
    padding: 0 var(--gap-7);
  }
  .section_10_title {
    gap: var(--gap-3);
  }
  .section_10_title h2 {
    font-size: var(--font-size-30);
    gap: var(--gap-1);
  }
  .section_10_title h2 span {
    font-size: var(--font-size-30);
  }
  .section_10_title>div {
    width: fit-content;
    margin: 0 auto;
    flex-flow: column;
    gap: var(--gap-3);
    align-items: start;
  }
  .section_10_title>div>div {
    gap: var(--gap-1);
  }
  .section_10_title>div>div img {
    width: var(--gap-7);
    height: var(--gap-7);
  }
  .section_10_title>div>div p {
    font-size: var(--font-size-18);
  }
  .section_10_content_wrap {
    flex-flow: column;
    gap: var(--gap-5);
  }
  .section_10_content1,
  .section_10_content2 {
    width: 100%;
    height: 84.8vw;
    border-radius: 14px;
  }
  .section_10_content1 {
    gap: var(--gap-5);
    padding: 0 var(--gap-5);
  }
  .section_10_content1>div:nth-child(1) {
    gap: var(--gap-2);
  }
  .section_10_content1>div:nth-child(1) .section_10_content1_img {
    width: 66.67vw;
  }
  .section_10_content1>div:nth-child(1) .section_10_content1_img .icon_play {
    width: var(--gap-11);
  }
  .section_10_content1>div:nth-child(1) .section_10_content1_text {
    gap: 2px;
  }
  .section_10_content1>div:nth-child(1) .section_10_content1_text p {
    font-size: var(--font-size-11);
  }
  .section_10_content1>div:nth-child(2) {
    gap: var(--gap-3);
    justify-content: center;
  }
  .section_10_content1_img2 {
    gap: var(--gap-4);
    width: 34.67vw;
    height: 21.87vw;
    border-radius: 8px;
  } 
  .section_10_content1_img2 div {
    width: 13.33vw;
    height: var(--gap-4);
    font-size: var(--font-size-10);
    border-radius: 0px 0px var(--gap-1) var(--gap-1);
  }
  .section_10_content1_img2 img {
    width: 26.67vw;
  }
  .section_10_content1_text2 {
    gap: var(--gap-1);
  }
  .section_10_content1_text2 h3 {
    font-size: var(--font-size-14);
  }
  .section_10_content1_text2 p {
    font-size: var(--font-size-10);
  }
  .section_10_content2 {
    gap: var(--gap-5);
  }
  .section_10_content2 h3 {
    font-size: var(--font-size-20);
    color: var(--main-300);
  }
  .section_10_content2 h3 span::before {
    width: 18.13vw;
    height: 9.87vw;
  }
  .section_10_content2>div {
    gap: var(--gap-5);
  }
  .section_10_content2_top {
    gap: var(--gap-3);
  }
  .section_10_content2_top>div {
    width: 34.67vw;
    height: 26.67vw;
    gap: var(--gap-1);
    box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
  }
  .section_10_content2_top>div h4 {
    font-size: var(--font-size-16);
    font-weight: 600;
  }
  .section_10_content2_top>div p {
    font-size: var(--font-size-18);
    text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.2);
  }
  .section_10_content2_bottom {
    gap: var(--gap-2);
  }
  .section_10_content2_bottom p {
    font-size: var(--font-size-11);
  }
  .section_10_content2_bottom .btn {
    font-size: var(--font-size-14);
    color: var(--text-200);
    font-weight: 500;
    background: var(--sub-main-yellow);
    width: 53.33vw;
    height: var(--gap-10);
  }
  .section_10_content2_bottom .btn img {
    width: 4.8vw;
    height: 4.8vw;
  }
}


/* 섹션11 */
.section_11 {
  min-height: 900px;
  padding-bottom: 110px;  
}
.section_11_container {
  display: flex;
  align-items: end;
  gap: 32px;
}
.section_11_content_left {
  width: 564px;
  height: 789px;
  background: var(--main-300);
  border-radius: 0 0 10px 10px;
  position: relative;
  clip-path: polygon(
    0% 0%, 
    100% 0%, 
    100% 100%, 
    50% 90%, 
    0% 100%
  );
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  color: var(--white);
  display: flex;
  flex-flow: column;
  padding: 0 68px;
  padding-top: 160px;
}
.section_11_content_left .bubble {
  width: 400px;
  height: 77px;
  background: var(--white);
  border-radius: 50px;
  box-shadow: 6px 6px 10px 4px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-200);
  font-size: var(--font-size-28);
  font-weight: 500;
  line-height: 140%;
  position: relative;
  margin-bottom: 46px;
}
.section_11_content_left .bubble::after {
  content: '';
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 23px 17px 0px 17px;
  border-color: var(--white) transparent transparent transparent;
}
.section_11_content_left .bubble span {
  font-weight: 700;
}
.section_11_content_left>div:nth-child(2) {
  display: flex;
  flex-flow: column;
  gap: 50px;
}
.section_11_content_left_top {
  display: flex;
  align-items: center;
  gap: 40px;
}
.section_11_content_left_top_img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
}
.section_11_content_left_top_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.section_11_content_left_top_text {
  display: flex;
  flex-flow: column;
  gap: 14px;
}
.section_11_content_left_top_text>div {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.section_11_content_left_top_text>div img {
  width: 60px;
  height: 60px;
}
.section_11_content_left_top_text>div span {
  font-size: var(--font-size-32);
  font-weight: 700;
  line-height: 140%;
}
.section_11_content_left_top_text>p {
  font-size: var(--font-size-28);
  font-weight: 500;
  line-height: 140%;
}
.section_11_content_left_bottom {
  display: flex;
  flex-flow: column;
  gap: 20px;
}
.section_11_content_left_bottom h3 {
  font-size: var(--font-size-24);
  font-weight: 500;
  line-height: 140%;
}
.section_11_content_left_bottom ul {
  display: flex;
  flex-flow: column;
  gap: 10px;
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: 140%;
}
.section_11_content_right {
  flex: 1;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 80px;
  color: var(--text-200);
}
.section_11_content_right_title {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.section_11_content_right_title h2 {
  font-size: var(--font-size-64);
  font-weight: 800;
  line-height: 140%;
}
.section_11_content_right_title h2 span {
  color: var(--main-200);
}
.section_11_content_right_title p {
  font-size: var(--font-size-28);
  font-weight: 500;
  line-height: 140%;
}
.section_11_content_right_list {
  display: flex;
  flex-flow: column;
  gap: 60px;
}
.section_11_content_right_list ul {
  display: flex;
  flex-flow: column;
  gap: 30px;
}
.section_11_content_right_list ul li {
  display: flex;
  align-items: center;
  gap: 4px;
}
.section_11_content_right_list ul li img {
  width: 50px;
  height: 50px;
}
.section_11_content_right_list ul li p {
  font-size: var(--font-size-30);
  font-weight: 700;
  line-height: 140%;
}
.section_11_content_right_list ul li p .brush {
  position: relative;
}
.section_11_content_right_list ul li p .brush::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  /* background-image: url(./assets/images/section4_brush.svg); */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 11px;
}
.section_11_content_right_list ul li:nth-child(1) p .brush::after {
  background-image: url(./assets/images/section11_brush1.svg);
}
.section_11_content_right_list ul li:nth-child(2) p .brush::after {
  background-image: url(./assets/images/section11_brush2.svg);
}
.section_11_content_right_list ul li:nth-child(3) p .brush::after {
  background-image: url(./assets/images/section11_brush3.svg);
}
.section_11_content_right_list ul li:nth-child(4) p .brush::after {
  background-image: url(./assets/images/section11_brush4.svg);
}
.section_11_content_right_list .btn {
  background: var(--main-200);
  font-size: var(--font-size-30);
  font-weight: 700;
  line-height: 140%;
  margin: 0 auto;
}
.section_11_content_right_list .btn img {
  width: 30px;
  height: 30px;
}
.section_11_container>.btn_m {
  display: none;
}

@media (max-width: 768px) {
  .section_11 {
    min-height: unset;
    padding-top: var(--gap-10 );
    padding-bottom: var(--gap-10);  
  }
  .section_11_container {
    align-items: unset;
    flex-flow: column-reverse;
    gap: 0;
    padding: 0 var(--gap-7);
  }
  .section_11_content_left {
    width: 100%;
    height: 104vw;
    border-radius: 8px;
    position: relative;
    clip-path: polygon(
      0% 0%, 
      100% 0%, 
      100% 100%, 
      50% 80%, 
      0% 100%
    );
    padding: 0 var(--gap-16);
    padding-top: var(--gap-10);
  }
  .section_11_content_left .bubble {
    width: 50.67vw;
    height: 12.27vw;
    background: var(--white);
    box-shadow: 4px 4px 8px 4px rgba(0, 0, 0, 0.3);
    gap: var(--gap-1);
    font-size: var(--font-size-18);
    margin-bottom: var(--gap-8);
  }
  .section_11_content_left .bubble::after {
    border-width: 3.73vw var(--gap-2) 0px var(--gap-2);
  }
  .section_11_content_left>div:nth-child(2) {
    gap: var(--gap-8);
  }
  .section_11_content_left_top {
    display: flex;
    align-items: center;
    gap: var(--gap-3);
  }
  .section_11_content_left_top_img {
    width: 13.33vw;
    height: 13.33vw;
  }
  .section_11_content_left_top_text {
    display: flex;
    flex-flow: column;
    gap: var(--gap-1);
  }
  .section_11_content_left_top_text>div {
    gap: var(--gap-2);
  }
  .section_11_content_left_top_text>div img {
    width: var(--gap-6);
    height: var(--gap-6);
  }
  .section_11_content_left_top_text>div span {
    font-size: var(--font-size-18);
  }
  .section_11_content_left_top_text>p {
    font-size: var(--font-size-14);
  }
  .section_11_content_left_bottom {
    gap: 1.6vw;
  }
  .section_11_content_left_bottom h3 {
    font-size: var(--font-size-16);
  }
  .section_11_content_left_bottom ul {
    gap: var(--gap-1);
    font-size: var(--font-size-10);
    white-space: nowrap;
  }
  .section_11_content_right {
    gap: var(--gap-7);
    margin-bottom: var(--gap-8);
  }
  .section_11_content_right_title {
    gap: 0;
  }
  .section_11_content_right_title h2 {
    font-size: var(--font-size-30);
    font-weight: 900;
  }
  .section_11_content_right_title p {
    font-size: var(--font-size-14);
    font-weight: 700;
  }
  .section_11_content_right_list ul {
    gap: var(--gap-3);
  }
  .section_11_content_right_list ul li {
    gap: var(--gap-1);
    align-items: start;
  }
  .section_11_content_right_list ul li img {
    width: var(--gap-6);
    height: var(--gap-6);
  }
  .section_11_content_right_list ul li p {
    font-size: var(--font-size-16);
  }
  .section_11_content_right_list ul li p .brush {
    position: relative;
  }
  .section_11_content_right_list ul li p .brush::after {
    bottom: -2vw;
    height: var(--gap-2);
  }
  .section_11_content_right_list .btn {
    display: none;
  }
  .section_11_container>.btn_m {
    display: flex;
    background: var(--main-200);
    font-size: var(--font-size-14);
    font-weight: 500;
    line-height: 140%;
    margin: 0 auto;
    width: 53.33vw;
    height: var(--gap-10);
    color: var(--white);
  }
  .section_11_container>.btn_m img {
    width: 4.8vw;
    height: 4.8vw;
  }
}


/* 섹션12 */
.section_12 {
  min-height: 818px;
  padding-top: 114px;
  padding-bottom: 122px;
  background: var(--main-50);
}
.section_12_container {
  display: flex;
  flex-flow: column;
  gap: 27px;
  padding: 0 90px;
}
.section_12_title {
  display: flex;
  flex-flow: column;
}
.section_12_title .line {
  width: 54px;
  height: 8px;
  background: var(--main-200);
}
.section_12_title h2 {
  font-size: var(--font-size-32);
  font-weight: 700;
  line-height: 140%;
  color: var(--text-200);
}
.section_12_content {
  display: flex;
  flex-flow: column;
  gap: 20px;
  border-bottom: 1px solid var(--grey-100);
  padding-bottom: 16px;
}
.section_12_content_map {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.section_12_content_map .root_daum_roughmap {
  width: 100%;
  height: 440px;
}
.section_12_content_map .root_daum_roughmap .wrap_map {
  height: 100%;
}
.section_12_content_map .root_daum_roughmap .wrap_controllers,
.section_12_content_map .root_daum_roughmap .cont {
  display: none;
}
.section_12_content_map .map_border {
  border: none !important;
  display: none !important;
}
.section_12_content_info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.section_12_content_info p {
  font-size: var(--font-size-20);
  font-weight: 400;
  line-height: 140%;
  color: var(--text-100);
}
.section_12_content_info .line {
  width: 1px;
  height: 16px;
  background: var(--text-100);
  border-radius: 1px;
}

@media (max-width: 768px) {
  .section_12 {
    min-height: unset;
    padding-top: var(--gap-10);
    padding-bottom: var(--gap-10);
  }
  .section_12_container {
    gap: var(--gap-3);
    padding: 0 var(--gap-3);
  }
  .section_12_title {
    gap: 2px;
  }
  .section_12_title .line {
    width: 9.07vw;
    height: var(--gap-1);
  }
  .section_12_title h2 {
    font-size: var(--font-size-18);
  }
  .section_12_content {
    gap: var(--gap-3);
    padding-bottom: var(--gap-3);
  }
  .section_12_content_map {
    border-radius: 2.66vw;
  }
  .section_12_content_map .root_daum_roughmap {
    height: 32.53vw;
  }
  .section_12_content_info {
    gap: var(--gap-2);
  }
  .section_12_content_info p {
    font-size: var(--font-size-10);
  }
  .section_12_content_info .line {
    height: var(--gap-2);
  }
}


/* 푸터 */
footer {
  width: 100%;
  height: 245px;
  background: var(--text-200);
  padding: 0 var(--padding-x);
  display: flex;
  align-items: center;
  color: var(--text-100);
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: 140%;
}
.footer-container-pc {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-left>div {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-container-mobile {
  display: none;
  width: 100%;
  max-width: 59.2vw;
  margin: 0 auto;
  flex-direction: column;
  gap: 12px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-top>div {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .footer-container-pc {
    display: none;
  }
  .footer-container-mobile {
    display: flex;
  }
  footer {
    width: 100%;
    height: unset;
    padding: var(--gap-8) var(--padding-x);
    font-size: var(--font-size-10);
    color: var(--text-50);
  }
}

/* 문의 폼 모달 스타일 */
.inquiry-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.inquiry-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.inquiry-modal {
  background: var(--sub-main-yellow);
  border-radius: 50px;
  padding: 80px;
  max-width: 1000px;
  width: 90%;
  max-height: 95vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.inquiry-modal-overlay.show .inquiry-modal {
  transform: translateY(0);
}

.inquiry-modal-content {
  text-align: center;
  color: var(--text-200);
}

.inquiry-modal-header h2 {
  font-weight: 700;
  font-size: var(--font-size-50);
  margin-bottom: 10px;
  line-height: 140%;
}
.inquiry-modal-header h2 span {
  color: var(--main-200);
}

.inquiry-modal-header p {
  font-weight: 500;
  font-size: var(--font-size-24);
  margin-bottom: 50px;
  line-height: 140%;
}
.inquiry-modal-header p span {
  color: var(--main-200);
  font-weight: 700;
}

.inquiry-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 30px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-group:nth-of-type(3) {
  margin-bottom: 0;
}

.form-group label {
  font-weight: 400;
  font-size: var(--font-size-24);
}

.form-group input {
  width: 100%;
  max-width: 418px;
  height: 70px;
  background: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 0 33px;
  font-size: var(--font-size-20);
  box-sizing: border-box;
}

.form-group input::placeholder {
  color: var(--text-50);
}

.form-group input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #0062ff;
}

.phone-input-group {
  max-width: 418px;
  display: flex;
  gap: 10px;
}

.phone-input-group input {
  flex: 1;
  text-align: center;
}

.phone-input-group input:first-child {
  flex: 0.5;
}

.privacy-agreement {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  margin-top: 14px;
  gap: 6px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 6px;
}

.checkbox-container input[type="checkbox"] {
  display: none;
}

.checkbox-icon {
  width: 40px;
  height: 40px;
  padding: 5px;
}

.checkbox-off {
  display: block;
}

.checkbox-on {
  display: none;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkbox-off {
  display: none;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkbox-on {
  display: block;
}

.checkbox-text {
  font-weight: 400;
  font-size: var(--font-size-20);
  color: var(--text-100);
}

.more-info-btn {
  background: none;
  border-bottom: 1px solid var(--text-100);
  font-size: var(--font-size-16);
  color: var(--text-100);
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  height: 90px;
  background: var(--main-200);
  border: none;
  border-radius: 20px;
  color: var(--white);
  font-weight: 700;
  font-size: var(--font-size-30);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.kakao-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kakao-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.inquiry-note {
  font-weight: 500;
  font-size: var(--font-size-14);
  color: var(--text-100);
  line-height: 140%;
}

/* 확인 완료 모달 스타일 */
.completion-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.completion-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.completion-modal {
  background: var(--white);
  border-radius: 50px;
  padding: 80px 40px;
  max-width: 700px;
  width: 90%;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.completion-modal-overlay.show .completion-modal {
  transform: translateY(0);
}

.completion-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-200);
}

.completion-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.completion-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.completion-modal h2 {
  font-size: var(--font-size-40);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 140%;
}

.completion-modal p {
  font-weight: 400;
  font-size: var(--font-size-28);
  margin-bottom: 50px;
  line-height: 140%;
}

.confirm-btn {
  width: 400px;
  height: 90px;
  background: var(--main-200);
  border: none;
  border-radius: 20px;
  color: var(--white);
  font-weight: 700;
  font-size: var(--font-size-30);
  cursor: pointer;
}

/* 개인정보 수집 동의 모달 스타일 */
.privacy-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.privacy-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.privacy-modal {
  background: #f3f4f8;
  border-radius: 40px;
  padding: 50px;
  max-width: 1000px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.privacy-modal-overlay.show .privacy-modal {
  transform: translateY(0);
}

.privacy-modal-content {
  position: relative;
}

.privacy-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.privacy-modal-header h3 {
  font-weight: 700;
  font-size: var(--font-size-24);
  margin: 0;
}

.privacy-close-btn {
  background: none;
  border: none;
  cursor: pointer;
}

.privacy-close-btn img {
  width: 27px;
  height: 27px;
}

.privacy-modal-body {
  font-weight: 400;
  font-size: var(--font-size-20);
  color: var(--text-100);
  line-height: 150%;
}
.privacy-modal-body ul {
  padding-left: 30px;
}
.privacy-modal-body ul li {
  list-style: disc;
}


@media (max-width: 768px) {
  .inquiry-modal {
    border-radius: 10px;
    padding: var(--gap-7) 10px;
    max-width: 90.67vw;
    max-height: 95vh;
  }
  .inquiry-modal-header h2 {
    font-size: var(--font-size-18);
    margin-bottom: var(--gap-1);
  }
  .inquiry-modal-header p {
    font-size: var(--font-size-10);
    margin-bottom: var(--gap-5);
  }
  .inquiry-form {
    max-width: 77.33vw;
  }
  
  .form-group {
    margin-bottom: var(--gap-3);
  }
  .form-group:nth-of-type(3) {
    margin-bottom: 0;
  }
  .form-group label {
    font-size: var(--font-size-16);
  }
  
  .form-group input {
    max-width: 53.33vw;
    height: var(--gap-10);
    border-radius: var(--gap-1);
    padding: 0 var(--gap-4);
    font-size: var(--font-size-12);
  }
  
  .phone-input-group {
    max-width: 53.33vw;
    gap: var(--gap-2);
  }
  .phone-input-group input:first-child {
    flex: 0.6;
  }
  
  .privacy-agreement {
    margin-bottom: var(--gap-3);
    margin-top: var(--gap-3);
    gap: var(--gap-1);
  }
  
  .checkbox-container {
    gap: var(--gap-1);
  }
  .checkbox-icon {
    width: var(--gap-5);
    height: var(--gap-5);
    padding: 0.67vw;
  }
  .checkbox-text {
    font-size: var(--font-size-10);
  }
  
  .more-info-btn {
    font-size: var(--font-size-10);
  }
  
  .submit-btn {
    width: 53.33vw;
    margin: 0 auto;
    height: var(--gap-10);
    border-radius: var(--gap-2);
    font-size: var(--font-size-14);
    gap: var(--gap-1);
  }
  
  .kakao-icon {
    width: var(--gap-5);
    height: var(--gap-5);
  }
  .inquiry-note {
    display: none;
  }
  
  .completion-modal {
    border-radius: 10px;
    padding: var(--gap-10) var(--gap-4);
    max-width: 77.33vw;
  }
  .completion-icon {
    width: 6.93vw;
    height: 6.93vw;
    margin-bottom: var(--gap-5);
  }
  
  .completion-modal h2 {
    font-size: var(--font-size-18);
    margin-bottom: var(--gap-5);
  }
  
  .completion-modal p {
    font-size: var(--font-size-12);
    margin-bottom: var(--gap-5);
  }
  
  .confirm-btn {
    width: 53.33vw;
    margin: 0 auto;
    height: var(--gap-10);
    border-radius: var(--gap-2);
    font-weight: 500;
    font-size: var(--font-size-14);
  }
  
  .privacy-modal {
    border-radius: 10px;
    padding: var(--gap-6) var(--gap-4);
    max-width: 77.33vw;
  }
  .privacy-modal-header {
    margin-bottom: var(--gap-3);
  }
  
  .privacy-modal-header h3 {
    font-size: var(--font-size-14);
  }
  .privacy-close-btn img {
    width: var(--gap-3);
    height: var(--gap-3);
  }
  
  .privacy-modal-body {
    font-size: var(--font-size-10);
  }
  .privacy-modal-body ul {
    padding-left: var(--gap-4);
  }
}

/* 플로팅 카드 스타일 */
.floating-card-wrap {
  position: fixed;
  top: calc(var(--header-height) + 48px);
  right: 0;
  z-index: 999;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 14px;
}
.floating-card-btn {
  width: 150px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-1);
  background: var(--white);
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 100px;
  font-weight: 500;
  font-size: var(--font-size-18);
  color: var(--text-200);
  line-height: 140%;
  cursor: pointer;
}
.floating-card-up-btn {
  width: 50px;
  height: 50px;
  background: var(--white);
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.floating-card-up-btn .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 14.165px 14.17px 14.165px;
  border-color: transparent transparent var(--grey-100) transparent;
}
.floating-card {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  position: relative;
  color: var(--text-200);
}

.floating-card.hidden {
  transform: translateX(100%);
}

.floating-card-hide-btn {
  position: absolute;
  top: 47px;
  right: 100%;
  width: 34px;
  height: 90px;
  background: var(--sub-main-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  font-size: var(--font-size-12);
  line-height: 140%;
  border-radius: 10px 0 0 10px;
}

.floating-card-content {
  background: var(--sub-main-yellow);
  border-radius: 20px 0 0 20px;
  padding: 38px 26px;
  display: flex;
  flex-direction: column;
}

.floating-card-header a {
  display: inline-block;
  width: 100%;
  font-weight: 900;
  font-size: var(--font-size-30);
  text-align: center;
  line-height: 140%;
  margin-bottom: 4px;
}

.floating-card-form h4 {
  font-weight: 700;
  font-size: var(--font-size-20);
  text-align: center;
  margin-bottom: 10px;
  line-height: 140%;
}

.floating-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.floating-form-group input {
  width: 100%;
  max-width: 190px;
  height: 50px;
  background: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0 16px;
  font-size: var(--font-size-18);
}

.floating-form-group input::placeholder {
  color: var(--text-100);
}

.floating-privacy-agreement {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.floating-checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.floating-checkbox-container input[type="checkbox"] {
  display: none;
}

.floating-checkbox-icon {
  width: 20px;
  height: 20px;
  margin-right: 4px;
  padding: 2.5px;
}

.floating-checkbox-off {
  display: block;
}

.floating-checkbox-on {
  display: none;
}

.floating-checkbox-container input[type="checkbox"]:checked ~ .floating-checkbox-off {
  display: none;
}

.floating-checkbox-container input[type="checkbox"]:checked ~ .floating-checkbox-on {
  display: block;
}

.floating-checkbox-text {
  font-size: var(--font-size-12);
  color: var(--text-100);
  line-height: 140%;
}

.floating-more-info-btn {
  font-size: var(--font-size-10);
  color: var(--text-100);
  cursor: pointer;
  line-height: 140%;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--text-100);
}

.floating-submit-btn {
  width: 100%;
  height: 50px;
  background: var(--main-200);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: var(--font-size-20);
  color: var(--white);
  cursor: pointer;
  line-height: 140%;
  text-align: center;
}

.floating-divider {
  width: 100%;
  height: 1px;
  background: var(--text-200);
  margin: 20px 0;
}

.floating-other-contact h4 {
  font-weight: 500;
  font-size: var(--font-size-18);
  color: var(--text-200);
  text-align: center;
  margin-bottom: 20px;
  line-height: 140%;
}

.floating-social-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.floating-social-btn {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-social-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-card-wrap-mobile {
  display: none;
  gap: 10px;
  flex-flow: column;
  align-items: center;
  position: fixed;
  bottom: 26.67vw;
  right: var(--gap-3);
  z-index: 999;
}
.floating-card-wrap-mobile a {
  width: 13.33vw;
  height: 13.33vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-card-wrap-mobile a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.floating-card-wrap-mobile .phone,
.floating-card-wrap-mobile .kakao {
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .floating-card-wrap {
    display: none;
  }
  .floating-card-wrap-mobile {
    display: flex;
  }
}

/* 테이블 행 애니메이션 */
.section_6_table tbody tr {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.section_6_table tbody tr:nth-child(1) { animation-delay: 0.2s; }
.section_6_table tbody tr:nth-child(2) { animation-delay: 0.4s; }
.section_6_table tbody tr:nth-child(3) { animation-delay: 0.6s; }
.section_6_table tbody tr:nth-child(4) { animation-delay: 0.8s; }
.section_6_table tbody tr:nth-child(5) { animation-delay: 1.0s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Intersection Observer가 작동할 때만 애니메이션 실행 */
.section_6_table.animate tbody tr {
  animation-play-state: running;
}

.section_6_table:not(.animate) tbody tr {
  animation-play-state: paused;
}

/* 브러쉬 스트로크 애니메이션 */
@keyframes brushStroke {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0% 0 0);
  }
}

/* 모든 브러쉬 요소에 애니메이션 적용 */
.brush::after {
  clip-path: inset(0 100% 0 0);
}

/* 스크롤 기반 애니메이션 활성화 */
.brush.animate::after {
  animation: brushStroke 1s ease-out forwards;
  animation-delay: var(--animation-delay, 0s);
}

/* 각 브러쉬별 딜레이 설정 - JavaScript에서 동적으로 적용 */

/* 모바일에서도 동일한 애니메이션 적용 */
@media (max-width: 768px) {
  .brush::after {
    clip-path: inset(0 100% 0 0);
  }
  
  .brush.animate::after {
    animation: brushStroke 1s ease-out forwards;
    animation-delay: var(--animation-delay, 0s);
  }
}

/* Typed.js 관련 스타일 */
.typed-cursor {
  display: none; /* 커서 숨기기 */
}

.typed-text-1,
.typed-text-2 {
  display: inline-block;
}

