@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;
}
@import url('//fonts.googleapis.com/earlyaccess/notosanskr.css');

:root {
  /* 색상 변수 */
  --main-50: #F5FBFF;
  --main-100: #EAF3FF;
  --main-200: #8BBFFA;
  --main-300: #0062FF;
  --sub-main-yellow: #FFD940;
  --sub-main-green: #00C63B;
  --text-50: #AAA;
  --text-100: #6B7280;
  --text-200: #1F2937;
  --text-300: #131313;
  --black: #111111;
  --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;
}



.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_pink {
  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_pink {
    padding: 4px 8px;
  }
  .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: 40px;
}

.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-300);
  }
}

/* 모바일 메뉴 스타일 */
.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;
  z-index: 100;
}

.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-300);
}

.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-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-menu>li:hover .mobile-nav-link span{
  color: var(--main-300);
}

.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 10px 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-300);
  color: var(--white);
}

.customer-service-buttons .btn_m{
  width: 220px;
}

.customer-service-buttons .btn_m img{
  width: 20px;
  height: 20px;
}
.customer-service-buttons .btn_m strong{
  font-size: var(--font-size-14);
}
.customer-service-buttons .btn_m span{
  font-size: var(--font-size-14);
  font-weight: 700;
}
.customer-service-buttons .btn-kakao{
  background-color: var(--sub-main-yellow);
}
.customer-service-buttons .btn-naver{
  background-color: var(--sub-main-green);
  color: var(--white);
}

.mobile-social-links {
  display: none;
}

.social-link {
  width: 24px;
  height: 24px;
  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;
}
.section_1_swiper .swiper-slide-img {
  right: unset;
  left: 0;
  width: 100%;
}

.section_1_top {
  display: flex;
  flex-flow: column;
  gap: 90px;
  font-family: 'JalnanGothic';
}
.section_1_top {
  display: flex;
  flex-flow: column;
  gap: 145px;
}
.section_1_top_text>div {
  display: flex;
  flex-flow: column;
}
.section_1_swiper .section_1_top_text h2 {
  font-size: var(--font-size-64);
  font-weight: 400;
  color: var(--main-300);
  line-height: 140%;
}
.section_1_swiper .section_1_top_text p {
  font-size: var(--font-size-32);
  font-weight: 400;
  color: var(--text-200);
  line-height: 140%;
}
.section_1_swiper .section_1_top_text p:nth-child(3) {
  font-size: var(--font-size-24);
  margin-top: 10px;
  color: var(--text-100);
}
.section_1_text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section_1_top_text .section_1_text p {
  font-size: var(--font-size-32);
  font-weight: 500;
  color: var(--text-300);
  line-height: 140%;
}
.section_1_text p{
  font-family: 'JalnanGothic';
  font-size: var(--font-size-28);
  font-weight: 400;
  position: relative;
  text-align: center;
}
.section_1_text p span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  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_1_text .btn {
  width: 100%;
  background: var(--main-300);
  font-family: 'Pretendard';
  font-size: var(--font-size-30);
  font-weight: 600;
}
.section_1_text .btn img {
  width: 30px;
  height: 30px;
}
.section_1_img {
  position: relative;
  display: flex;
}
.section_1_img img {
  width: 461px;
  height: auto;
}
.section_1_img div {
  position: absolute;
  top: 50px;
  left: 90%;
  padding: 24px 36px;
  background: var(--grey-50);
  font-size: var(--font-size-24);
  font-weight: 500;
  white-space: nowrap;
  border-radius: 20px;
}
.section_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(--grey-50) transparent;
  transform: rotate(-30deg);
}
.section_1_bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section_1_top_text>p span {
  position: relative;
}
.section_1_top_text>p 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: 308px;
  height: 12px;
}
.section_1_swiper .swiper-slide-inner-img {
  width: 556px;
  padding-top: 40%;
  position: relative;
  right: 0;
  bottom: 125px;
}
.section_1_swiper .swiper-slide-inner-img img:nth-child(1) {
  position: absolute;
  height: auto;
  object-fit: contain;
  top: 0;
  transform: translate(-15vw, 20vh);
  z-index: 100;
  max-width: 556px;
}
.section_1_swiper .swiper-slide-inner-img img:nth-child(2){
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(0, -15vh);
  z-index: 10;
}
.section_1_swiper .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;
}
.section_1_swiper .swiper-slide-text-sub span {
  position: relative;
}
.section_1_swiper .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;
}

.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_bottom{
    flex-direction: column;
  }
  .section_1_swiper {
    height: unset;
    min-height: 500px;
  }
  .swiper-slide-inner {
    padding-top: calc(var(--header-height) + var(--gap-8));
    padding-bottom: var(--gap-7);
    display: flex;
    flex-flow: column;
    gap: var(--gap-10);
    align-items: center;
  }
  .swiper-slide-text {
    gap: var(--gap-4);
  }
  .section_1_swiper .section_1_top_text {
    gap: var(--gap-7);
    text-align: center;
  }
  .section_1_swiper .section_1_top_text>div {
    gap: var(--gap-2);
  }
  .section_1_swiper .section_1_top_text h2 {
    font-size: var(--font-size-30);
  }
  .section_1_swiper .section_1_top_text p:nth-child(2) {
    font-size: var(--font-size-18);
  }
  .section_1_swiper .section_1_top_text p:nth-child(3) {
    font-size: var(--font-size-16);
    margin: 0;
  }
  .section_1_swiper .section_1_top_text>p {
    font-size: var(--font-size-16);
  }
  .section_1_swiper .section_1_top_text>p span::after {
    width: 33.65vw;
    height: 1.6vw;
  }
  .section_1_swiper .swiper-slide-inner-img {
    position: relative;
    left: unset;
    bottom: unset;
    margin: 0;
  }
  .section_1_swiper .swiper-slide-inner-img img {
    max-width: 160px;
  }
  .section_1_swiper .swiper-slide-inner-img img:nth-child(1){
    transform: translate(50%, 5vh);
    max-width: 250px;
  }
  .section_1_swiper .swiper-slide-inner-img img:nth-child(2){
    transform: translate(-70%, 0);
    max-width: 200px;
  }
  .section_1_swiper .swiper-slide-text-sub {
    display: none;
  }
  
  .section_1_swiper .swiper-pagination {
    bottom: var(--gap-4) !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;
  }
  .section_1_text{
    gap: 0;
  }
  .section_1_text p{
    font-size: var(--font-size-16);
    margin-bottom: 5px;
  }
  .section_1_text .btn{
    width: 100%;
    height: 40px;
    font-size: var(--font-size-14);
    font-weight: 500;
    border-radius: 8px;
  }
  .section_1_text .btn img{
    width: 18px;
    height: 18px;
  }
}

/* 섹션2 */
.section_2 {
  min-height: 1080px;
  background-image: url(./assets/images/section2_bg.png);
  display: flex;
  align-items: end;
  overflow: hidden;
}
.section_2_container {
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
}
.section_2_title {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-bottom: 25px;
}
.section_2_title h2 {
  font-size: var(--font-size-64);
  font-weight: 800;
  color: var(--main-300);
  line-height: 140%;
}
.section_2_title p {
  font-size: var(--font-size-50);
  font-weight: 700;
  color: var(--text-200);
  line-height: 140%;
}
.section_2_btn {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 52px;
  margin-bottom: 30px;
}
.section_2_btn p {
  font-size: var(--font-size-32);
  font-weight: 600;
  color: var(--text-200);
  line-height: 140%;
}
.section_2_btn p span {
  font-size: var(--font-size-40);
  font-weight: 900;
  position: relative;
}
.section_2_btn p span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  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_2_btn .btn {
  background: var(--main-300);
  font-size: var(--font-size-30);
  font-weight: 700;
}
.section_2_btn .btn img {
  width: 30px;
  height: 30px;
}
.section_2_img {
  position: relative;
  display: flex;
}
.section_2_img img {
  width: 461px;
  height: auto;
}
.section_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(--main-100) transparent;
  transform: rotate(30deg);
}

@media (max-width: 768px) {
  .section_2 {
    min-height: 666px;
    padding-top: var(--gap-10);
    background-position: bottom;
    background-repeat: no-repeat;
  }
  .section_2_title{
    margin-bottom: 40px;
    gap: var(--gap-2);
  }
  .section_2_title h2 {
    font-size: var(--font-size-26);
  }
  .section_2_title p {
    font-size: var(--font-size-18);
    white-space: nowrap;
  }
  .section_2_text {
    gap: var(--gap-4);
    margin-bottom: var(--gap-8);
  }
  .section_2_text p {
    font-size: var(--font-size-15);
  }
  .section_2_text p span {
    font-size: var(--font-size-18);
  }
  .section_2_text p span::before {
    width: 10.58vw;
    height: 9.31vw;
  }
  .section_2_text .btn {
    width: 53.33vw;
    height: 10.67vw;
    border-radius: 8px;
    font-size: var(--font-size-14);
    font-weight: 500;
  }
  .section_2_text .btn img {
    width: 4.8vw;
    height: 4.8vw;
  }
  .section_2_btn{
    margin-bottom: 50px;
  }
  .section_2_btn .btn {
    width: 180px;
    height: 40px;
    border-radius: 8px;
    background: var(--main-300);
    font-size: var(--font-size-14);
    font-weight: 500;
  }
  .section_2_btn .btn img {
    width: 18px;
    height: 18px;
  }
  .section_2_img {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(2,1fr);
  }
  .section_2_img img:nth-child(1) {
    width: 30vw;
    transform: translateY(-35%);
  }
  .section_2_img img:nth-child(2) {
    width: 30vw;
    transform: translateY(60%) scale(3);
  }
  .section_2_img img:nth-child(3) {
    width: 30vw;
    transform: translate(-10%, -20%) scale(1.2)
  }
  .section_2_img div {
    position: relative;
    top: unset;
    left: unset;
    right: 0;
    padding: var(--gap-5) var(--gap-3);
    font-size: var(--font-size-17);
    font-weight: 400;
    border-radius: 10px;
  }
  .section_2_img div::before {
    content: '';
    position: absolute;
    left: unset;
    right: 70px;
    bottom: -16px;
    border-width: 16px 16px 0px 0px;
    border-color: var(--main-100) transparent transparent transparent;
    transform: rotate(0deg);
  }
}

/* 섹션3 */
.section_3 {
  min-height: 920px;
  background: var(--main-100);
  display: flex;
  padding-bottom: 89px;
  align-items: end;
}
.section_3_container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.section_3_container .content_left {
  position: absolute;
  width: 384px;
  display: flex;
  flex-flow: column;
  gap: 4px;
  align-items: center;
  text-align: center;
  margin-left: 100px;
}
.section_3_container .content_left img {
  width: 100%;
  height: 100%;
  transform: scale(1.3) translateY(-40px);
  object-fit: cover;
}
.section_3_container .content_right {
  position: relative;
  padding-right: 52px;
  display: flex;
  flex-flow: column;
}
.section_3_container .content_right_top {
  display: flex;
  width: 100%;
  flex-flow: column;
  align-items: end;
  gap: 4px;
  margin-bottom: 38px;
}
.section_3_container .content_right_top h2 {
  font-size: var(--font-size-64);
  font-weight: 800;
  color: var(--text-200);
  line-height: 140%;
  position: relative;
}
.section_3_container .content_right_top p {
  font-size: var(--font-size-36);
  font-weight: 500;
  color: var(--text-100);
  line-height: 140%;
}
.section_3_container .content_right_top p span {
  font-size: var(--font-size-24);
  font-weight: 700;
}
.section_3_container .content_right_bottom {
  display: flex;
  justify-content: flex-end;
}
.section_3_container .content_right_bottom_cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 24px;
}
.section_3_container .content_right_bottom_card{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 40px;
  padding: 120px;
  background-color: #fff;
}
.section_3_container .content_right_bottom_card:nth-child(3) img,
.section_3_container .content_right_bottom_card:nth-child(6) img{
  transform: translate(-50%, 10%);
}
.section_3_container .content_right_bottom_card img{
  position: absolute;
  object-fit: contain;
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
}
.section_3_container .content_right_bottom_card h4{
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  margin-bottom: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  font-family: 'Pretendard';
}
.section_3_container .content_left.mobile {
  display: none;
}
.section_3_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_3 {
    min-height: 750px;
    align-items: flex-start;
    padding: var(--gap-10) 0;
  }
  .section_3_container {
    flex-flow: column-reverse;
    align-items: center;
    gap: 6px;
  }
  .section_3_container .content_left.pc {
    display: none;
  }
  .section_3_container .content_left.mobile {
    display: flex;
    margin: 0;
  }
  .section_3_container .content_left {
    width: 100%;
  }
  .section_3_container .content_left img {
    width: 60%;
    transform: translateY(100%);
  }
  .section_3_container .content_right {
    padding-right: 0;
    text-align: center;
  }
  .section_3_container .content_right_top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--gap-5);
  }
  .section_3_container .content_right_top h2 {
    font-size: var(--font-size-26);
    text-align: center;
    white-space: nowrap;
  }
  .section_3_container .content_right_top h2::after {
    left: 50%;
    transform: translateX(-50%);
    width: 75.1vw;
    height: 2.13vw;
    bottom: 0;
  }
  .section_3_container .content_right_top p {
    font-size: calc(var(--font-size-12) + 1px);
    font-weight: 800;
    margin: auto;
  }
  .section_3_container .content_right_top p span {
    font-size: var(--font-size-12);
    font-weight: 800;
  }
  .section_3_container .content_right_bottom {
    margin-bottom: 0;
    justify-content: center;
  }
  .section_3_container .content_right_bottom_cards{
    grid-gap: 10px;
  }
  .section_3_container .content_right_bottom_card{
    padding: 60px;
    border-radius: 18px;
    overflow: hidden;
  }
  .section_3_container .content_right_bottom_card img{
    transform: translate(5%, 5%) scale(0.5);
    top: -50%;
    left: -50%;
  }
  .section_3_container .content_right_bottom_card:nth-child(3) img,
  .section_3_container .content_right_bottom_card:nth-child(6) img{
    transform: translate(-50%, 20%) scale(0.6);
    left: 50%;
  }
  .section_3_container .content_right_bottom_card h4{
    font-size: 12px;
    margin-bottom: 8px;
  }
}

/* 섹션4 */
.section_4 {
  min-height: 950px;
  padding-top: 148px;
  padding-bottom: 30px;
  display: flex;
}
.section_4_container {
  height: auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.section_4_container .content_left {
  flex: 1;
  display: flex;
  flex-flow: column;
  gap: 100px;
}
.section_4_container .content_right {
  width: 473px;
  height: 100%;
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: var(--gap-1);
  transform: translateY(-5%);
}
.section_4_container .content_left_top {
  display: flex;
  flex-flow: column;
  gap: 42px;
}
.section_4_container .content_left_top_title {
  display: flex;
  flex-flow: column;
}
.section_4_container .content_left_top_title h2:first-child {
  font-size: var(--font-size-60);
  font-weight: 900;
  color: var(--main-300);
  line-height: 140%;
}
.section_4_container .content_left_top_title h2:last-child {
  font-size: var(--font-size-32);
  font-weight: 700;
  color: var(--text-100);
  line-height: 140%;
}
.section_4_container .content_left_top_text {
  display: flex;
  flex-flow: column;
  gap: 5px;
}
.section_4_container .content_left_top_text p {
  font-size: var(--font-size-30);
  font-weight: 700;
  line-height: 140%;
  color: var(--text-200);
}
.section_4_container .content_left_top_text p:not(:first-child){
  margin-top: 40px;
}
.section_4_container .content_left_top>p {
  font-size: var(--font-size-26);
  font-weight: 400;
  line-height: 140%;
  color: var(--text-200);
}
.section_4_container .content_left_top_text>span{
  display: inline-block;
  font-size: var(--font-size-26);
  font-weight: 400;
  color: var(--text-200);
  margin-left: 13px;
}
.section_4_container .content_left_bottom {
  font-size: var(--font-size-24);
  font-weight: 500;
  line-height: 140%;
  color: var(--text-100);
}
.section_4_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: 100px;
  gap: 4px;
  text-align: center;
}
.section_4_container .content_right .content_box h3 {
  font-size: var(--font-size-30);
  font-weight: 600;
  line-height: 140%;
  color: var(--text-200);
}
.section_4_container .content_right .content_box p {
  font-size: var(--font-size-20);
  font-weight: 400;
  line-height: 140%;
  color: var(--text-100);
}
.section_4_container .content_right .content_img {
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-bottom: 50px;
  transform: translate(-50%, 5%) scale(0.9);
}
.section_4_container .content_right .content_img .mobile {
  display: none;
  width: 83.43vw;
}
.section_4_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_4 {
    min-height: 550px;
    padding-top: var(--gap-10);
    padding-bottom: var(--gap-10);
  }
  .section_4_container {
    flex-flow: column;
    gap: var(--gap-10);
    padding: 0 28.5px;
  }
  .section_4_container .content_right {
    width: 100%;
    height: unset;
  }
  .section_4_container .content_left_top {
    gap: 0;
  }
  .section_4_container .content_left_top_title {
    gap: 0;
    margin-bottom: var(--gap-6);
  }
  .section_4_container .content_left_top_title h2:first-child {
    font-size: var(--font-size-30);
  }
  .section_4_container .content_left_top_title h2:last-child {
    font-size: var(--font-size-20);
  }
  .section_4_container .content_left_top_text {
    gap: 0;
    margin-bottom: var(--gap-5);
  }
  .section_4_container .content_left_top_text>span{
    font-size: var(--font-size-16);
    font-weight: 400;
    margin-top: 6px;
    margin-left: 7px;
    word-break: keep-all;
    white-space: nowrap;
  }
  .section_4_container .content_left_top_text p {
    font-size: var(--font-size-16);
    font-weight: 600;
  }
  .section_4_container .content_left_top>p {
    font-size: var(--font-size-12);
    font-weight: 500;
    color: var(--text-100);
  }
  .section_4_container .content_left_bottom {
    display: none;
  }
  .section_4_container .content_right{
    display: none;
  }
  .section_4_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_4_container .content_right .content_box h3 {
    font-size: var(--font-size-16);
  }
  .section_4_container .content_right .content_box p {
    font-size: var(--font-size-10);
  }
  .section_4_container .content_right .content_img {
    position: absolute;
    bottom: 9.07vw;
    right: 0;
  }
  .section_4_container .content_right .content_img .pc {
    display: none;
  }
  .section_4_container .content_right .content_img .mobile {
    display: block;
  }
  .section_4_container .content_right>p {
    display: block;
  }
}

/* 섹션5 */
.section_5 {
  min-height: 1070px;
  background-image: url(./assets/images/section5_bg.png);
  padding-top: 148px;
  padding-bottom: 80px;
}
.section_5_container {
  display: flex;
  flex-flow: column;
  gap: 30px;
  align-items: center;
}
.section_5_top {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.section_5_top_text{
  position: relative;
  top: 0;
  text-align: center;
  font-size: var(--font-size-24);
  font-weight: 500;
  white-space: nowrap;
  color: var(--text-200);
  line-height: 140%;
}
.section_5_top_text h2{
  font-size: var(--font-size-60);
  font-weight: 900;
  color: var(--main-300);
  line-height: 140%;
}
.section_5_top_text p{
  font-size: 32px;
  line-height: 140%;
  font-family: 'Pretendard';
  font-weight: 600;
  color: var(--text-100);
}
.section_5_bottom {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.section_5_table_wrap {
  position: relative;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}
.section_5_table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 20px;
  overflow: hidden;
  table-layout: fixed;
}
.section_5_table th {
  background: var(--main-200);
  color: var(--white);
  font-size: var(--font-size-20);
  font-weight: 400;
  padding: 15px 32px;
  min-height: 57px;
  width: 100%;
  height: 57px;
  text-align: left;
}
.section_5_table th:nth-child(2){
  width: 200%;
}
.section_5_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_5_table td.highlight {
  background: var(--main-100);
  font-weight: 600;
}
.section_5_table td.highlight>div {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 4px;
}
.section_5_table td.highlight img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .section_5 {
    min-height: 660px;
    padding-top: var(--gap-10);
    padding-bottom: var(--gap-10);
  }
  .section_5_container {
    padding: 0 8px;
    gap: 0;
  }
  .section_5_top {
    width: 100%;
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: var(--gap-5);
  }
  .section_5_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_5_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_5_top_text h2{
    font-size: var(--font-size-28);
  }
  .section_5_top_text p{
    font-size: var(--font-size-20);
  }
  .section_5_top_img img {
    width: 30.67vw;
  }
  .section_5_bottom {
    gap: var(--gap-5);
  }
  .section_5_table {
    border-radius: 10px;
  }
  .section_5_table th {
    background: var(--main-200);
    font-size: var(--font-size-12);
    padding: var(--gap-3) 2.67vw;
    min-height: 40px;
    height: 40px;
  }
  .section_5_table th:nth-child(2){
    width: 100%;
  }
  .section_5_table td {
    padding: 0 2.67vw;
    font-size: var(--font-size-12);
    min-height: unset;
    height: var(--gap-10);
    line-height: 140%;
  }
  .section_5_table td.highlight {
    gap: 2px;
  }
  .section_5_table td.highlight img {
    width: var(--gap-6);
    height: var(--gap-6);
  }
}


/* 섹션7 */
.section_6 {
  min-height: 2148px;
  background: var(--main-100);
  padding-top: 150px;
  padding-bottom: 108px;
}
.section_6_container {
  display: flex;
  flex-flow: column;
  gap: var(--gap-20);
}
.section_6 .content_title {
  display: flex;
  flex-flow: column;
  gap: var(--gap-16);
  position: relative;
}
.section_6 .content_title>div {
  display: flex;
  flex-flow: column;
}
.section_6 .content_title>div h2 {
  font-size: var(--font-size-64);
  font-weight: 800;
  color: var(--text-200);
  line-height: 140%;
  text-align: center;
}
.section_6 .content_title>div p {
  font-size: var(--font-size-28);
  font-weight: 600;
  color: var(--text-100);
  line-height: 140%;
  text-align: center;
}
.section_6 .content_title .section_6_btn {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 52px;
}
.section_6_btn p {
  font-size: var(--font-size-32);
  font-weight: 600;
  color: var(--text-200);
  line-height: 140%;
}
.section_6_btn p span {
  font-size: var(--font-size-40);
  font-weight: 900;
  position: relative;
}
.section_6_btn p span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  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_6_btn .btn {
  background: var(--main-300);
  font-size: var(--font-size-30);
  font-weight: 700;
}
.section_6_btn .btn img {
  width: 30px;
  height: 30px;
}
.section_6 .content_title .content_title_img {
  position: absolute;
  right: 0;
  bottom: 0;
}
.section_6 .content_title .content_title_img img {
  width: 655.14px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .section_6 {
    min-height: 1452px;
    padding-top: var(--gap-10);
    padding-bottom: var(--gap-10);
  }
  .section_6_container {
    padding: 0;
    gap: var(--gap-1);
  }
  .section_6 .content_title {
    gap: 20px;
    padding: 0 var(--gap-8);
    padding-bottom: var(--gap-8);
  }
  .section_6 .content_title>div h2 {
    font-size: var(--font-size-30);
    font-weight: 900;
  }
  .section_6 .content_title>div p {
    font-size: var(--font-size-20);
    font-weight: 700;
    color: var(--text-200);
  }
  .section_6 .content_title .content_title_img {
    position: relative;
    right: unset;
    bottom: unset;
    margin: 0 auto;
    margin-top: var(--gap-5);
  }
  .section_6 .content_title .content_title_img img {
    width: 76.74vw;
  }
  .section_6_btn .btn {
    width: 180px;
    height: 40px;
    border-radius: 8px;
    background: var(--main-300);
    font-size: var(--font-size-14);
    font-weight: 500;
  }
  .section_6_btn .btn img {
    width: 18px;
    height: 18px;
  }
}

.section_6 .content_table_1 {
  display: flex;
  flex-flow: column;
  padding: 0 5px;
}
.section_6 .content_table_1 .content_table_1_img {
  display: flex;
  margin-left: 53px;
  gap: 48px;
  align-items: start;
}
.section_6 .content_table_1 .content_table_1_img img {
  width: 260px;
  height: auto;
  object-fit: contain;
  transform: translateY(30%) scale(1.5);
}
.section_6 .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_6 .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_6 .content_table_1>div:nth-child(2) {
  display: flex;
  justify-content: space-between;
  gap: var(--gap-3);
}
.section_6_table_wrap {
  position: relative;
  width: 70%;
  display: flex;
  flex-flow: column;
  gap: 6px;
}
.section_6_table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 20px;
  overflow: hidden;
}
.section_6_table_title {
  position: absolute;
  right: 22px;
  top: -24px;
  font-size: var(--font-size-18);
  font-weight: 600;
  color: var(--white);
}
.section_6_table th {
  background: var(--main-200);
  color: var(--white);
  font-size: var(--font-size-20);
  font-weight: 500;
  padding: 15px 32px;
  height: 57px;
  text-align: left;
}
.section_6_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%;
}
.content_table_1 .section_6_table td:not(:first-child){
  width: 36%;
}
.content_table_1 .section_6_table tr td.highlight {
  background: var(--main-50);
  font-weight: 700;
}
.section_6_slider1_wrap{
  width: 468px;
  padding: 22px 12px 26px 12px;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  gap: 14px;
}
.section_6_slider1_wrap p{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.section_6_slider1_wrap p span{
  color: var(--text-200);
  font-family: "Pretendard";
  font-weight: 400;
}
.section_6_slider1_wrap p span.highlight{
  color: var(--main-300);
}

@media (max-width: 768px) {
  .section_6 .content_table_1 {
    padding: 0 var(--gap-2);
  }
  .section_6 .content_table_1 .content_table_1_img {
    flex-flow: column-reverse;
    margin-left: 0;
    gap: 0;
    align-items: center;
    gap: var(--gap-3);
  }
  .section_6 .content_table_1 .content_table_1_img img {
    width: 33.33vw;
  }
  .section_6 .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_6 .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: translateX(-50%) rotate(0);
  }
  .section_6 .content_table_1>div:nth-child(2) {
    flex-flow: column;
    gap: 0;
  }
  .section_6_table_wrap {
    position: relative;
    width: 100%;
    flex: 1;
  }
  .section_6_table {
    border-radius: 10px;
  }
  .section_6_table_title {
    display: none;
  }
  .section_6_table th {
    font-size: var(--font-size-12);
    font-weight: 500;
    padding: 0 var(--gap-4);
    height: var(--gap-10);
  }
  .section_6_table td {
    padding: 0 var(--gap-4);
    padding-right: 0;
    font-size: var(--font-size-12);
    height: var(--gap-10);
  }
  .content_table_1 .section_6_table tr td.highlight{
    background-color: var(--white);
    width: 40%;
  }
  .section_6_table tr td:nth-child(2) {
    font-weight: 400;
  }
  .section_6_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_6_slider1_wrap p{
    word-break: keep-all;
  }
}

.section_6 .content_table_2 {
  display: flex;
  align-items: flex-end;
  flex-flow: column;
  margin-top: 58px;
}
.section_6 .content_table_2 .content_table_2_img {
  display: flex;
  margin-right: 53px;
  margin-left: auto;
  gap: 45px;
  align-items: start;
}
.section_6 .content_table_2 .content_table_2_img img {
  width: 260px;
  height: auto;
  object-fit: contain;
  transform: translateY(30%) scale(1.5);
}
.section_6 .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;
  margin-top: 93px;
  position: relative;
}
.section_6 .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_6_table_wrap>p {
  margin-left: 28px;
  font-size: var(--font-size-12);
  font-weight: 500;
  color: var(--text-200);
  line-height: 140%;
}
.content_table_2 .section_6_table td{
  width: 50%;
}
.content_table_2 .section_6_table tr:not(.gray) td.highlight {
  font-weight: 700;
}
.content_table_2 .section_6_table tr.gray td{
  color: var(--text-100);
}

@media (max-width: 768px) {
  .section_6 .content_table_2 {
    margin: 0;
    padding: 0 var(--gap-2);
    align-items: center;
  }
  .section_6 .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_6 .content_table_2 .content_table_2_img img {
    width: 34.67vw;
  }
  .section_6 .content_table_2 .content_table_2_img div {
    margin-top: 20px;
    padding: var(--gap-3) var(--gap-4);
    font-size: var(--font-size-16);
    border-radius: 10px;
  }
  .section_6 .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: translateX(-50%) rotate(0);
  }    
}


/* 섹션8 */
.section_7 {
  position: relative;
  min-height: 1508px;
  padding-top: 150px;
  padding-bottom: 134px;
}
.section_7_container {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 80px;
}
.section_7_title {
  display: flex;
  flex-flow: column;
  text-align: center;
}
.section_7_title h2 {
  font-size: var(--font-size-64);
  font-weight: 900;
  color: var(--main-300);
  line-height: 140%;
}
.section_7_title p {
  font-size: var(--font-size-32);
  font-weight: 600;
  color: var(--text-100);
  line-height: 140%;
}
.section_7_slider1.swiper {
  position: absolute;
  left: 0;
  transform: translateY(40%);
  width: 100%;
  min-height: 617px;
}
.section_7_slider1 .swiper-wrapper{
  align-items: center;
}
.section_7_slider1 .swiper-slide{
  position: relative;
  width: 100%;
  padding-top: 471px;
  border-radius: 40px;
  overflow: hidden;
}
.section_7_slider1 .swiper-slide-active{
  padding-top: 571px;
}
.section_7_slider1 .swiper-slide img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}
.section_7_slider1 .swiper-slide[data-swiper-slide-index='1']>img{
  object-fit: contain;
  transform: scale(3.5) translateY(50px);
}
.section_7_slider1 .swiper-slide[data-swiper-slide-index='2']>img{
  object-fit: contain;
  transform: scale(1.4) translateY(20px);
}
.section_7_slider1 .swiper-pagination{
  bottom: 0;
}
.section_7_slider2.swiper{
  position: absolute;
  min-height: 330px;
  width: 100%;
  left: 0;
  bottom: 5%;
}
.section_7_slider2 .swiper-slide{
  position: relative;
  padding-top: 350px;
  border: 1px solid var(--grey-100);
  border-radius: 30px;
  overflow: hidden;
  box-sizing: border-box;
}
.section_7_slider2 .swiper-slide img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .section_7 {
    min-height: 530px;
    padding-top: var(--gap-10);
    padding-bottom: var(--gap-10);
  }
  .section_7_container {
    padding: 0 var(--gap-2);
  }
  .section_7_title {
    text-align: center;
  }
  .section_7_title h2 {
    font-size: var(--font-size-24);
    white-space: nowrap;
  }
  .section_7_title p {
    font-size: var(--font-size-20);
    color: var(--text-300);
  }
  .section_7_slider1.swiper{
    transform: translateY(80%);
    min-height: 180px;
  }
  .section_7_slider1 .swiper-slide{
    padding-top: 100px;
    border-radius: 16px;
  }
  .section_7_slider2 .swiper-wrapper{
    margin-left: 10px;
  }
  .section_7_slider1 .swiper-slide[data-swiper-slide-index='1']>img{
    object-fit: contain;
    transform: scale(3.5) translateY(15px);
  }
  .section_7_slider1 .swiper-slide-active{
    padding-top: 150px;
  }
  .section_7_slider2.swiper{
    min-height: 60px;
  }
  .section_7_slider2 .swiper-slide{
    padding-top: 94px;
    border-radius: 5px;
  }
}


/* 섹션9 */
.section_8 {
  min-height: 1380px;
  background: url(./assets/images/section1_bg.png) no-repeat;
  background-size: cover;
  padding-top: 140px;
  padding-bottom: 100px;  
}
.section_8_container {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 100px;
}
.section_8_title {
  display: flex;
  flex-flow: column;
  text-align: center;
}
.section_8_title h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-64);
  color: var(--main-300);
  font-weight: 900;
  line-height: 140%;
}
.section_8_title p {
  font-size: var(--font-size-32);
  font-weight: 600;
  color: var(--text-100);
  line-height: 140%;
}
.section_8_content_wrap {
  display: flex;
  flex-flow: column;
  gap: 50px;
}
.section_8_content{
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.section_8_content h3{
  position: relative;
  font-family: "Pretendard";
  font-weight: 700;
  font-size: var(--font-size-30);
  line-height: 140%;
  color: var(--text-200);
}
.section_8_content h3::before{
  content: '';
  position: absolute;
  display: inline-block;
  left: -10px;
  padding: 25px;
  background: url(./assets/icons/icon_check_blue.svg);
  background-size: cover;
  background-position: center center;
  transform: translateX(-100%) translateY(-10%);
}
.section_8_content dt,
.section_8_content dd{
  font-size: var(--font-size-30);
  color: var(--text-100);
  line-height: 140%;
  margin-left: 10px;
}
.section_8_content dd{
  margin-left: 35px;
}
.section_8_content dd span.highlight{
  color: var(--main-300);
}
.section_8_swiper_wrap {
  width: 100%;
  padding-left: 65px;
  overflow: hidden;
}
.section_8_swiper {
  width: 100%;
}
.section_8_swiper .swiper-slide {
  width: auto;
}
.section_8_swiper .swiper-slide>div {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 10px;
  width: 150px;
  height: auto;
}
.section_8_swiper .swiper-slide>div img {
  width: 140px;
  height: auto;
  object-fit: contain;
}
.section_8_swiper .swiper-slide>div h4 {
  font-size: var(--font-size-24);
  font-weight: 500;
  line-height: 140%;
  color: var(--text-200);
  text-align: center;
}

@media (max-width: 768px) {
  .section_8 {
    min-height: unset;
    padding-top: var(--gap-10);
    padding-bottom: var(--gap-10); 
    background-position: bottom;
  }
  .section_8_container {
    gap: var(--gap-10);
    padding: 0 var(--gap-3);
  }
  .section_8_title {
    gap: var(--gap-1);
  }
  .section_8_title h2 {
    font-size: var(--font-size-28);
    color: var(--main-300);
  }
  .section_8_title p {
    font-size: var(--font-size-20);
    color: var(--text-100);
    line-height: 140%;
    white-space: nowrap;
  }
  .section_8_swiper_wrap {
    padding-left: var(--gap-4);
  }
  .section_8_swiper .swiper-slide>div {
    gap: 1px;
    width: var(--gap-13);
  }
  .section_8_swiper .swiper-slide>div img {
    width: 100%;
  }
  .section_8_swiper .swiper-slide>div h4 {
    font-size: var(--font-size-10);
    white-space: nowrap;
  }
  .section_8_content{
    gap: 0;
  }
  .section_8_content h3{
    font-size: var(--font-size-16);
    margin-bottom: var(--gap-1);
    white-space: nowrap;
  }
  .section_8_content h3::before{
    content: '';
    position: absolute;
    display: inline-block;
    left: -10px;
    padding: 12px;
    background: url(./assets/icons/icon_check_blue.svg);
    background-size: cover;
    background-position: center center;
    transform: translateX(-70%);
  }
  .section_8_content_wrap{
    max-width: 340px;
    margin: auto;
    gap: 20px;
  }
  .section_8_content dt,
  .section_8_content dd{
    font-size: var(--font-size-12);
    color: var(--text-100);
    line-height: 140%;
    margin: 0;
    white-space: nowrap;
  }
  .section_8_content dd{
    margin-left: 15px;
  }
}

/* 섹션11 */
.section_9 {
  min-height: 450px;
  display: flex;
  align-items: center;
}
.section_9_container {
  display: flex;
  align-items: end;
  gap: 32px;
}
.section_9_content {
  flex: 1;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  color: var(--text-200);
}
.section_9_content_title {
  display: flex;
  flex-flow: column;
  gap: 15px;
  text-align: center;
}
.section_9_content_title h2 {
  font-size: var(--font-size-64);
  font-weight: 800;
  line-height: 140%;
}
.section_9_content_title h2 span {
  color: var(--main-200);
}
.section_9_content_title p {
  font-size: var(--font-size-20);
  font-weight: 700;
  line-height: 100%;
}
.section_9_content_title span{
  font-size: var(--font-size-18);
  font-weight: 400;
  line-height: 100%;
}
.section_9_content_list {
  display: flex;
  flex-flow: column;
  gap: 60px;
}
.section_9_content_list ul {
  display: flex;
  gap: 20px;
}
.section_9_content_list ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 20px;
  min-width: 340px;
  background-color: var(--main-300);
  padding: 22px 26px;
  color: var(--white);
}
.section_9_content_list ul li p{
  display: flex;
  align-items: center;
  font-size: var(--font-size-28);
  font-weight: 700;
  line-height: 100%;
}
.section_9_content_list ul li p span{
  display: inline-block;
  margin-left: 4px;
  font-weight: 500;
}
.section_9_content_list ul li p span:last-child{
  display: none;
}
.section_9_content_list ul li p img{
  width: 40px;
  height: 40px;
  margin-right: 6px;
}
.section_9_content_list ul li{
  cursor: pointer;
  user-select: none;
}
/* .section_9_content_list ul li:nth-child(2){
  background-color: var(--sub-main-yellow);
}
.section_9_content_list ul li:nth-child(2) p{
  color: var(--text-300);
} */
.section_9_content_list ul li:nth-child(2){
  background-color: var(--sub-main-green);
}
.section_9_container>.btn_m {
  display: none;
}

@media (max-width: 768px) {
  .section_9 {
    min-height: unset;
    padding-top: var(--gap-6);
    padding-bottom: var(--gap-10);  
  }
  .section_9_container {
    align-items: unset;
    flex-flow: column-reverse;
    gap: 0;
    padding: 0 var(--gap-7);
  }
  .section_9_content{
    gap: var(--gap-3);
  }
  .section_9_content_title p{
    font-size: var(--font-size-12);
  }
  .section_9_content_title span{
    font-size: var(--font-size-12);
  }
  .section_9_content_right {
    gap: var(--gap-7);
    margin-bottom: var(--gap-8);
  }
  .section_9_content_title .section_logo{
    position: relative;
    margin: auto;
    max-width: 82px;
    width: 100%;
    padding-top: 10%;
  }
  .section_9_content_title .section_logo img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .section_9_content_right_title {
    gap: 0;
  }
  .section_9_content_right_title h2 {
    font-size: var(--font-size-30);
    font-weight: 900;
  }
  .section_9_content_right_title p {
    font-size: var(--font-size-14);
    font-weight: 700;
  }
  .section_9_content_right_list ul {
    gap: var(--gap-3);
  }

  .section_9_content_right_list ul li {
    gap: var(--gap-1);
    align-items: start;
  }
  .section_9_content_right_list ul li img {
    width: var(--gap-6);
    height: var(--gap-6);
  }
  .section_9_content_right_list ul li p {
    font-size: var(--font-size-16);
  }
  
  .section_9_container>.btn_m {
    display: none;
  }
  .section_9_content_list ul{
    flex-direction: row-reverse;
    gap: var(--gap-2);
  }
  .section_9_content_list ul li{
    flex: 1;
    min-width: 160px;
    padding: 10px 11px;
    border-radius: 8px;
    box-sizing: border-box;
  }
  .section_9_content_list ul li p{
    font-size: var(--font-size-14);
  }
  .section_9_content_list ul li p img{
    width: 20px;
    height: 20px;
  }
  .section_9_content_list ul li:nth-child(1) p{
    font-family: "Noto Sans KR";
    letter-spacing: -1px;
    white-space: nowrap;
  }
  .section_9_content_list ul li:nth-child(1) p span{
    display: inline-block;
    font-size: var(--font-size-14);
  }
  .section_9_content_list ul li:nth-child(1) p span:nth-child(1){
    display: none;
  }
  .section_9_content_list ul li:nth-child(2){
    display: none;
  }
}


/* 플로팅 카드 스타일 */
.floating-card-wrap {
  position: fixed;
  padding: 0 120px;
  bottom: calc(var(--header-height) + 48px);
  right: 0;
  z-index: 999;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 30px;
}

.floating-social-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  transform: translateX(40px);
}

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

.floating-social-btn img{
  transform: scale(0.6);
}

.floating-social-btn.floating-call{
  display: none;
}
.floating-social-btn.floating-kakao{
  border-radius: 50%;
  background-color: var(--sub-main-yellow);
}
.floating-social-btn.floating-naver{
  border-radius: 20px;
  background-color: var(--sub-main-green);
}

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

@media (max-width: 768px) {
  .floating-card-wrap {
    display: block;
    padding: 0 12px;
    top: calc(var(--header-height) + 250px);
    z-index: 10;
  }
  .floating-card-wrap .floating-social-buttons{
    gap: var(--gap-3);
    transform: translateX(0px);
  }
  .floating-card-wrap .floating-social-btn{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
  }
  .floating-card-wrap .floating-social-btn:last-child{
    border-radius: 10px;
  }
  .floating-social-btn.floating-call{
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 50%;
  background-color: var(--white);
  gap: 0;
}
.floating-social-btn.floating-call img{
  width: 24px;
  height: 24px;
}
.floating-social-btn.floating-call span{
  display: inline-block;
  width: 50%;
  font-size: 9.5px;
  line-height: 100%;
  color: var(--main-300);
  font-family: "Pretendard";
  font-weight: 900;
  text-align: center;
}
}

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

.section_5_table tbody tr:nth-child(1) { animation-delay: 0.2s; }
.section_5_table tbody tr:nth-child(2) { animation-delay: 0.4s; }
.section_5_table tbody tr:nth-child(3) { animation-delay: 0.6s; }
.section_5_table tbody tr:nth-child(4) { animation-delay: 0.8s; }
.section_5_table tbody tr:nth-child(5) { animation-delay: 1.0s; }
.section_5_table tbody tr:nth-child(6) { animation-delay: 1.2s; }
.section_5_table tbody tr:nth-child(7) { animation-delay: 1.4s; }
.section_5_table tbody tr:nth-child(8) { animation-delay: 1.6s; }
.section_5_table tbody tr:nth-child(9) { animation-delay: 1.8s; }
.section_5_table tbody tr:nth-child(10) { animation-delay: 2.0s; }

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

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

.section_5_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);
  }
}

