/* HTML 초기화용 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');
* {box-sizing:border-box;}
body,html,
h1,h2,h3,h4,h5,h6,fieldset,
p,ul,ol,li,dl,dt,dd,table,tr,td,th,thead,tbody,tfoot,
div,header,nav,aside,article,section,footer,figure,
address,blockquote,video,iframe,hr,
span,em,strong,q,a,sub,sup,details,figcaption,summary,
time,s,del,code,mark,img {
    /* font-family: 'Noto Sans KR', sans-serif; */ /* 가장 근접한 글꼴 */
    font-size:1.0em;
    font-weight:normal;
    font-style:normal;
    line-height:1.0; margin:0; padding:0;
}
a {color:#000; text-decoration:none;}
ul,ol,li {list-style:none;}
table,tr,td,th {border-collapse:collapse;}
th {text-align:left;}
fieldset {border:0;}
.skip {display:none;}
input, button, label {cursor: pointer;}

:root {
    /* 10px ~ 50px 글씨 크기 변수 설정 */
    --s-10: 0.625rem;  /* 10px */
    --s-12: 0.75rem;   /* 12px */
    --s-14: 0.875rem;  /* 14px */
    --s-16: 1rem;      /* 16px (기본값) */
    --s-18: 1.125rem;  /* 18px */
    --s-20: 1.25rem;   /* 20px */
    --s-22: 1.375rem;  /* 22px */
    --s-24: 1.5rem;    /* 24px */
    --s-26: 1.625rem;  /* 26px */
    --s-28: 1.75rem;   /* 28px */
    --s-30: 1.875rem;  /* 30px */
    --s-32: 2rem;      /* 32px */
    --s-34: 2.125rem;  /* 34px */
    --s-36: 2.25rem;   /* 36px */
    --s-38: 2.375rem;  /* 38px */
    --s-40: 2.5rem;    /* 40px */
    --s-42: 2.625rem;  /* 42px */
    --s-44: 2.75rem;   /* 44px */
    --s-46: 2.875rem;  /* 46px */
    --s-48: 3rem;      /* 48px */
    --s-50: 3.125rem;  /* 50px */
}

:root {
    --color-main: #3862F9;
    --color-light: #F4F7FF;
    --color-white: #fff;
    --color-bg: #F1F1F1;
    --color-bgLight: #f9f9f9;
    --color-bgDark: #303030;
    --color-yellow: #FFE81E;
    --color-green: #03C75A;
    --color-gray: #6A6A6A;
    --color-stroke: #dadada;
    --color-btnLine: #8b8b8b;
    --color-subFont: #454545;
    --color-tableGray: #efefef;
    --swiper-navigation-color: #fff;
    --swiper-navigation-size: 40px;
}

html, body {
    font-family: "Noto Sans KR", sans-serif;
    height: 100%;
    scroll-behavior: smooth;
}
/*header*/
header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    transition: background-color 0.3s ease-in-out;
}


header .logo {
    width: 130px;
}
header .logo a {}
header .logo a img {
    width: 100%;
}
header .tab {
    display: flex;
    flex-direction: row;
    gap: 45px;
}
header .tab a {
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}
header .tab a.active {
    color: var(--color-main);
}
.menu ul li a.active {
    color: #84aaff;
}
header select {
    background: var(--color-white);
    border: 1px solid var(--color-bg);
    padding-left: 3px;
    max-width: 100px;
    width: 100%;
    height: 30px;
    border-radius: 5px;
    color: #454545;
    font-size: 13px;
    text-align:start;
}


header select:focus {
    outline: none;
}
header select option {
    background: var(--color-white);
}

/*햄버거메뉴*/
.menu-container {
    position: relative;
}
.menu-button {
    background: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    border-radius: 5px;
}
.menu-button img {
    width: 32px;
}
.menu {
    position: fixed;
    top: 65px;
    left: 0;
    width: 200px;
    height: 100vh;
    background-color: #333;
    color: white;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    padding-bottom: 50px;
    overflow-y: auto;
}
.menu.show {
    transform: translateX(0);
}
.menu ul {
    list-style-type: none;
    padding: 0;
}
.menu ul li {
    padding: 15px;
    border-bottom: 1px solid #555;
}
.menu ul li a {
    color: white;
    text-decoration: none;
    display: block;
    line-height: 1.2;
}
.menu .ft {padding: 25px 15px;display: flex;flex-direction: column;gap: 15px;}
.menu .ft > span {font-size: var(--s-14);color: #a3a3a3;}
.menu .ft > span span {color: #fff;display:inline-block;line-height:1.3;margin-top: 3px;}
.menu .ft > span em {color: #fff;font-size: var(--s-18);}
.menu .ft > span:nth-child(2) em {
    border-bottom: 1px solid #555;
    padding-bottom: 15px;
    display: inline-block;
    width: 100%;
}

/*공통*/
.part {}
.part2, .part3, .part4, .part5, .part6, .part7, .part8, .part9, .part10, .part11, .part13 {
    padding: 130px 0; 
}
.part .title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 80px;
}
.part .title-wrap h2 {
    font-size: var(--s-30);
    font-weight: 600;
    line-height: 1.5;
}
.part .title-wrap p {
    font-size: var(--s-18);
    font-weight: 400;
    line-height: 1.5;
}
.part .btn-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 100px;
}
.part .btn-wrap .free-counseling {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 20px;
    max-width: 620px;
}
.part .btn-wrap .free-counseling a {
    width: 100%;
    max-width: 300px;
    height: 50px;
    border-radius: 500px;
    gap: 10px;
    transition: 0.3s;
}
.part .btn-wrap .free-counseling a:hover,
.part8 .part8-tab .tab1:hover {
    transform: scale(0.98);
}
.part .btn-wrap .free-counseling a:nth-child(1) {
    background: var(--color-yellow);
}
.part .btn-wrap .free-counseling a:nth-child(2) {
    background: var(--color-green);
    color: var(--color-white);
}
.part .btn-wrap .free-counseling a img {}
.part .btn-wrap > a {
    background: var(--color-white);
    width: 100%;
    max-width: 300px;
    height: 50px;
    border: 1px solid var(--color-btnLine);
    border-radius: 5px;
}
section {
    scroll-margin-top: 120px;
}
/* Swiper 좌우 버튼 공통 스타일 */
.swiper-button-next, .swiper-button-prev {
    background-color: rgba(0, 0, 0, 0.3); /* 배경색 (반투명 검은색) */
    border-radius: 50%; /* 동그란 버튼 */
    display: flex;
    align-items: center;
    justify-content: center;
       
}

.swiper-button-next .swiper-navigation-icon,
.swiper-button-prev .swiper-navigation-icon {
  width: 14px;  
  height: auto; 
}

/* 마우스 오버 시 색상 변경 */
.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.5); /* 호버 시 더 진한 색 */
}
/*part1*/
.part1 {padding:0;}
.part1 .swiper-wrapper {}
.part1 .swiper-wrapper .swiper-slide {
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.part1 .swiper-wrapper .banner {
    background-position: center;
}
.part1 .swiper-wrapper .banner-001 {
    background-image: url('/theme/GnuTailwind/img/new_img/banner-001.jpg');
}
.part1 .swiper-wrapper .banner-002 {
    background-image: url('/theme/GnuTailwind/img/new_img/banner-002.jpg');
}
.part1 .swiper-wrapper .banner-003 {
    background-image: url('/theme/GnuTailwind/img/new_img/banner-003.jpg');
}
.part1 .banner-title {
    display: flex;
    flex-direction: column;
    gap: 2vw;
    position: absolute;
    top: 50%;
    left: 5vw;
    transform: translateY(-50%);
    width: 40vw;
}
.part1 .swiper-wrapper .banner-001 .banner-title {
    text-shadow: 0px -2px 2px rgba(255, 255, 255, 1);
}
.part1 .swiper-wrapper .banner-002 .banner-title {
    color: var(--color-white);
    text-shadow: 0px 0px 10px rgba(0,0,0,0.6);
}
.part1 .swiper-wrapper .swiper-slide h3 {
    font-size: max(2.5vw, 20px); /* 최소 20px, 최대 2.5vw */
    line-height: 1.4;
    font-weight: 600;
}
.part1 .swiper-wrapper .swiper-slide p {
    font-size: max(1.2vw, 14px); /* 최소 14px, 최대 1.2vw */
    line-height: 1.6;
    font-weight: 500;
}
.modal {
  display: flex;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  background-color: #000;
  padding: 0;
  width: 90%;
  max-width: 800px;
}

.modal-content video {
  width: 100%;
  height: auto;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 25px;
  color: #fff;
  font-size: 35px;
  font-weight:normal;
  cursor: pointer;
  z-index: 1000;
}

.close-btn:hover {
  color: #bbb;
}
/*250904-비디오추가_수민

/*part2*/
.part2 {
    position: relative;
}
.part2 .strength {
    display: flex;
    flex-direction: row;
    justify-content: center;
    z-index: 5;
    position: relative;
    margin-bottom: 80px;
}
.part2 .strength:before {
    content: '';
    background: var(--color-main);
    width: 100%;
    height: 45px;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: -10;
}
.part2 .strength li {
    background: var(--color-white);
    border-radius: 50%;
    width: 260px; height: 260px;
    box-shadow: -4px 4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-left: -20px;
    padding: 0 10px;
}
.part2 .strength li .strength-num {
    font-size: var(--s-24);
    color: var(--color-main);
    font-weight: 600;
    border-bottom: 1px solid var(--color-stroke);
    padding-bottom: 10px;
    width: 100%;
}
.part2 .strength li .stength-cont {
    font-size: var(--s-24);
    line-height: 1.5;
    margin-top: 20px;
}
.part2 a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.part2 .btn-wrap > img {}
.part2 .btn-wrap .free-counseling + a:hover {
    background: var(--color-bgLight);
}
.part2 .btn-wrap .free-counseling + a {
    transition: 0.3s;
}

/*part3*/
.part3 {
    background: var(--color-bgLight);
}
.part3 .mySwiper2 {
    width: 100%;
    max-width: 1500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.part3 .mySwiper2 .swiper-wrapper {
    width: 100%;
    margin: 0 auto;
}
.part3 .mySwiper2 .swiper-slide {
    display: flex;
    width: 100%!important;
    border-radius: 10px;
    overflow: hidden;
    min-height: 400px;
}
.part3 .mySwiper2 .swiper-slide .news-img {
    width: 40%;
    overflow: hidden;
}
.part3 .mySwiper2 .swiper-slide .news-img img {
    width: 100%; /* 가로를 .img-wrap에 맞춤 */
    height: 100%; /* 세로를 .img-wrap에 맞춤 */
    object-fit: cover; /* 비율 유지하면서 꽉 채우기 */
}
.part3 .mySwiper2 .swiper-slide .news-cont {
    width: 60%;
    background: var(--color-white);
    padding: 30px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}
.part3 .mySwiper2 .swiper-slide .news-cont h3 {
    font-size: var(--s-20);
    font-weight: 600;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 최대 2줄 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal; /* 여러 줄 허용 */
    word-wrap: break-word;
}
.part3 .mySwiper2 .swiper-slide .news-cont p {
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* 최대 7줄 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal; /* 여러 줄 허용 */
    word-wrap: break-word;
}
.part .news-btn {
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid var(--color-btnLine);
    color: var(--color-subFont);
    width: 185px;
    text-align: center;
}
.part3 .mySwiper3 {
    margin-top: 80px;
    padding: 0 32px;
}
.part3 .mySwiper3 .swiper-wrapper .swiper-slide {
    background: var(--color-white);
    width: auto!important;
    padding: 40px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    height: 590px;
}
.part3 .mySwiper3 .swiper-wrapper .swiper-slide .table-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.part3 .mySwiper3 .swiper-wrapper .swiper-slide .table-title h3 {
    font-size: var(--s-30);
    font-weight: 600;
}
.part3 .mySwiper3 .swiper-wrapper .swiper-slide .table-title p {
    font-size: var(--s-18);
    font-weight: 500;
}
.part3 .mySwiper3 .swiper-wrapper .swiper-slide:nth-child(2) {
    display: flex;
    flex-direction: row;
    gap: 50px;
}
.part3 .mySwiper3 .swiper-wrapper .swiper-slide:nth-child(2) .table-text h3 {
    font-size: var(--s-30);
    font-weight: 600;
    margin-bottom: 20px;
}
.part3 .mySwiper3 .swiper-wrapper .swiper-slide:nth-child(2) .table-text h4 {
    font-size: var(--s-18);
    font-weight: 600;
}
.part3 .mySwiper3 .swiper-wrapper .swiper-slide:nth-child(2) .table-text p {
    margin: 40px 0;
    line-height: 1.7;
}
.part3 .mySwiper3 .swiper-wrapper .swiper-slide:nth-child(2) .table-text p span {
    font-weight: 600;
}
.part3 .mySwiper3 .table-001,
.part3 .mySwiper3 .table-003 {
    width: 100%;
    max-width: 800px;
}
.part3 .mySwiper3 p img {
    width: 100%;
}

/*.part4*/
.part4 {}
.part4 .difference-wrap {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: space-between;
    gap: 80px;
}
.part4 .difference {
    background: #F5F5F5;
    padding: 40px 20px;
    position: relative;
    border-radius: 10px;
    flex: 1;
}
.part4 .difference p {
    position: absolute;
    top: -63px;
    right: -35px;
}
.part4 .difference:nth-child(2) p img {
    position: relative;
    bottom: 8px;
}
.part4 .difference:nth-child(3) p img {
    position: relative;
    top: 16px;
}
.part4 .difference h3 {
    font-size: var(--s-20);
    color: var(--color-main);
    font-weight: 600;
    padding: 10px;
    border-bottom: 1px solid var(--color-stroke);
    margin-bottom: 20px;
    line-height: 1.2;
}
.part4 .difference ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.part4 .difference ul li {
    line-height: 1.5;
    display: block;
    padding-left: 0.7em;
    text-indent: -0.7em;
}


/*part5*/
.part5 {}
.part5 .title-wrap {
    color: #333333;
}
.part5 .func-wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    justify-content: center;
    gap: 70px;
}
.part5 .func {
    background: var(--color-bgLight);
    padding: 30px 40px;
    border-radius: 10px;
    display: flex;
    width: 100%;
    max-width: 700px;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 10px;
}
.part5 .func-text {}
.part5 .func-title {
    background: var(--color-main);
    color: var(--color-white);
    font-weight: 600;
    font-size: var(--s-20);
    border-radius: 500px;
    padding: 10px 20px;
    text-align: center;
    position: absolute;
    left:40px;
    top: -20px;
}
.part5 .func-text ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.part5 .func-text ul li {
    font-size: var(--s-18);
    line-height: 1.7;
    display: block;
    padding-left: 0.6em;
    text-indent: -0.6em;
    word-break: keep-all;
}
.part5 .func .func-img {
    width: 100%;
    max-width: 260px;
}
.part5 .func .func-img img {
    width: 100%;
}

/*part6*/
.part6 {}
.part6 .part6-cont {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    align-items: center;
}
.part6 .part6-cont .and {
    font-size: var(--s-40);
    font-weight: 500;
    color: #898989;
}
.part6 .cont1 {
    background: var(--color-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 4px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 600px;
}
.part6 .cont1 h3 {
    color: var(--color-main);
    font-size: var(--s-18);
    font-weight: 500;
    margin-bottom: 20px;
}
.part6 .cont1 .cont1-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.part6 .cont1 .cont1-wrap .cont1-1 {
    background: var(--color-light);
    position: relative;
}
.part6 .cont1 .cont1-wrap .cont1-1,
.part6 .cont1 .cont1-wrap .cont1-2 {
    border-radius: 5px;
    width: 100%;
    max-width: 225px;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 4px rgba(0,0,0,0.1);
}
.part6 .cont1 .cont1-wrap .cont1-1 span {
    font-size: var(--s-20);
    margin-bottom: 10px;
}
.part6 .cont1 .cont1-wrap .plus span {
    font-size: var(--s-20);
}
.part6 .cont1 .cont1-wrap .cont1-1 em {
    font-size: var(--s-24);
    font-weight: 600;
}
.part6 .cont1 .cont1-wrap .cont1-2 {
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.part6 .cont1 .cont1-wrap .cont1-1 span,
.part6 .cont1 .cont1-wrap .cont1-1 em,
.part6 .cont1 .cont1-wrap .cont1-2 span {
    text-align: center;
    line-height: 1.2;
}

/*part7*/
.part7 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.part7 .cost-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: var(--color-main);
    border-radius: 10px;
    padding: 40px;
    width: 100%;
    max-width: 1400px;
}
.part7 .cost-wrap h3 {
    font-size: var(--s-20);
    color: var(--color-white);
    font-weight: 600;
}
.part7 .cost-wrap .cost-cont {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.part7 .cost-wrap .cost-cont .cost1 {
    background: var(--color-white);
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    width: 100%;
    max-width: 260px;
}
.part7 .cost-wrap .cost-cont .cost1 p {
    margin-bottom: 15px;
    font-size: var(--s-20);
    line-height: 1.2;
}
.part7 .cost-wrap .cost-cont .cost1 .cost-num {
    font-weight: 600;
    margin-bottom: 0;
}
.part7 .cost-wrap .cost-cont .cost-img {
    width: 30px;
}
.part7 .cost-wrap .cost-cont .cost-img img {
    width: 100%;
}
.part7 > .cost-img {
    margin: 20px 0;
}
.part7 > .cost-money {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.part7 > .cost-money img {}
.part7 > .cost-money span {
    font-weight: 600;
    font-size: var(--s-30);
    line-height: 1.5;
    text-align: center;
}
.part7 > .cost-money span strong {
    color: var(--color-main);
    font-weight: 600;
}

/*part8*/
.part8 {
    border: 1px solid var(--color-stroke);
    border-left: none;
    border-right: none;
}
.part8 .part8-tab {
    display: flex;
    gap: 25px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}
.part8 .part8-tab .tab1 {
    background: var(--color-light);
    border-radius: 500px;
    padding: 10px;
    flex: 1;
    line-height: 40px;
    color: var(--color-main);
    font-size: var(--s-20);
    font-weight: 600;
    border: 1px solid var(--color-main);
    text-align: center;
    transition: 0.3s;
    word-break: keep-all;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}
.part8 .price-table {
    margin: 0 auto;
    width: 100%;
    max-width: 1400px;
    overflow: hidden;
    border-radius: 10px;
    border-collapse: collapse;
}
.part8 .price-table th,
.part8 .price-table td {
    border: 1px solid var(--color-stroke);
}
.part8 .price-table thead {
    background: var(--color-tableGray);
}
.part8 .price-table thead tr {}
.part8 .price-table thead tr th {
    text-align: center;
    padding: 20px 0;
    font-size: var(--s-20);
    font-weight: 600;
    line-height: 1.5;
}
.part8 .price-table tbody {}
.part8 .price-table tbody tr {}
.part8 .price-table tbody tr td {
    font-weight: 600;
    font-size: var(--s-20);
    padding: 10px 0;
    line-height: 1.7;
}
.part8 .price-table tbody tr td:nth-child(1) {
    background: var(--color-tableGray);
    text-align: center;
    padding: 10px;
    word-break: keep-all;
}
.part8 .price-table tbody tr td:nth-child(2) {
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.part8 .price-table tbody tr td .price-wrap {
    display: flex;
    gap: 40px;
    align-items: center;
}
.part8 .price-table tbody tr td .price-wrap span {
    background: var(--color-gray);
    border-radius: 500px;
    padding: 10px 20px;
    color: var(--color-white);
    width: 100%;
    max-width: 120px;
    text-align: center;
}
.part8 .price-table tbody tr td .price-wrap em {
    position: relative;
    width: 150px;
    text-align: center;
}
.part8 .price-table tbody tr td .price-wrap em img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.part8 .price-table tbody tr td .promotion {
    font-size: var(--s-14);
    color: #ff0000;
}
.part8 .price-table tbody tr td span {
    line-height: 1.5;
}
.indent {
    display: block;
    padding-left: 1.1em;
    text-indent: -1.1em;
}

/*part9*/
.part9 {
    background: var(--color-bgLight);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.part9 .part9-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
    width: 100%;
    max-width: 1500px;
}
.part9 .part9-wrap .process-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.part9 .part9-wrap .process-wrap .process-cont {
    width: 100%;
    max-width: 295px;
    min-height: 235px;
}
.part9 .part9-wrap .process-wrap .process-cont h3 {
    background: var(--color-main);
    color: var(--color-white);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}
.part9 .part9-wrap .process-wrap .process-cont ul {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border-left: 1px solid var(--color-stroke);
}
.part9 .part9-wrap .process-wrap .process-cont ul li {
    font-size: var(--s-18);
    line-height: 1.5;
}
.part9 .part9-wrap .process-wrap .process-cont ul li .number {
    color: var(--color-main);
    font-size: var(--s-24);
    font-weight: 300;
}
.part9 .part9-wrap .process-wrap .process-img {}
.part9 .part9-wrap .process-wrap .process-img img {}
.part9 .part9-wrap .need-days {
    background: var(--color-white);
    border-radius: 5px;
    padding: 10px 15px;
}
.part9 .part9-wrap .need-days p {}
.part9 .part9-wrap .need-days p:first-child {
    margin-bottom: 10px;
    font-weight: 600;
}
.part9 .part9-wrap .need-days p span {
    color: var(--color-main);
    font-weight: 600;
}

/*part10*/
.part10 {}
.part10 .mySwiper4 {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
.part10 .mySwiper4 .swiper-wrapper {}
.part10 .mySwiper4 .swiper-wrapper .swiper-slide {
    display: flex;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--color-stroke);
}
.part10 .mySwiper4 .swiper-wrapper .swiper-slide > p {
    width: 30%; aspect-ratio: 1 / 1;
}
.part10 .mySwiper4 .swiper-wrapper .swiper-slide > p img {
    width: 100%;
    height: 100%;
}
.part10 .mySwiper4 .swiper-wrapper .swiper-slide .project_cont {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    border-left: 1px solid var(--color-stroke);
}
.part10 .mySwiper4 .swiper-wrapper .swiper-slide .project_cont h3 {
    font-size: var(--s-24);
    font-weight: 500;
}
.part10 .mySwiper4 .swiper-wrapper .swiper-slide .project_cont > p {
    font-size: var(--s-18);
    line-height: 1.5;
}
.part10 .mySwiper4 .swiper-wrapper .swiper-slide .project_cont .tags {
    display: flex;
    gap: 10px;
    background: var(--color-bgLight);
    border-radius: 10px;
    padding: 10px;
    flex-wrap: wrap;
}
.part10 .mySwiper4 .swiper-wrapper .swiper-slide .project_cont .tags p {}

/*part11*/
.part11 {
    background: var(--color-bgLight);
}
.part11 .swiper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
.part11 .report-big-wrap {
}
.part11 .report-big-wrap .report-wrap {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
}
.part11 .report-big-wrap .report-wrap > p {
    width: 100%;
    min-height: 200px;
    background: white;
}
.part11 .report-big-wrap .report-wrap > p img {width: 100%;}
.part11 .report-big-wrap .report-wrap .report-cont {
    background: var(--color-white);
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.part11 .report-big-wrap .report-wrap .report-cont h3 {
    font-size: var(--s-18);
    font-weight: 500;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.part11 .report-big-wrap .report-wrap .report-cont p {
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.part11 .report-big-wrap .report-wrap .report-cont a {}

/*part12*/
.part12 {
    background: var(--color-bgDark);
    padding-bottom: 1px;
}
.part12 .title-wrap {
    color: var(--color-white);
}
.part12 a {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*part13*/
.accordion_wrap {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.accordion_wrap h3 {
    font-size: 1.25rem;
    font-weight: 600;
}
.accordion {
    width: 100%;
    margin: 20px auto 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-item {
    border-top: 1px solid #ddd;
}

.accordion-header {
    background: #f9f9f9;
    cursor: pointer;
    padding: 16px;
    font-weight: bold;
    transition: background 0.3s;
    color: #3f3f3f;
    position: relative;
    padding-left: 2.7em;
    text-indent: -1.8em;
    line-height: 1.5;
}

.accordion-header:hover {
    background: #eee;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
    padding: 0 16px;
}

.accordion-content.open {
    padding: 16px 35px;
    max-height: 500px; /* 충분한 높이로 설정 */
    line-height: 1.5;
}
.accordion-content {
    position: relative;
    padding-left: 1.5em; /* A. 길이만큼 */
    text-indent: -1.1em; /* 첫 줄만 왼쪽으로 */
    line-height: 1.6;
    margin: 0;
}

/*footer*/
footer {background: var(--color-bgLight);}
footer .foot {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 185px;
    flex-wrap: wrap;
}
footer .f2-2 li span {width:auto!important;border-bottom: 1px solid #dadada;padding: 5px 10px;font-weight: 500;}
footer .foot h2 {width: 130px;}
footer .foot h2 img {width: 100%;}
footer .foot ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-left: 1px solid var(--color-main);
    padding: 0 20px;
    height: 70px;
    justify-content: center;
}
footer .foot ul li {
    display: flex;
    align-items: center;
}
footer .foot ul li span {font-size:var(--s-14);width: 95px;display: inline-block;}
footer .foot ul li em {font-size:var(--s-14);font-weight: 500;}
footer .foot .f3 {display: flex;flex-direction: column;}
footer .foot ul .f_num {
    width: auto;
    font-weight: 600;
    font-size: var(--s-24);
}


/*privacy*/


.privacy-policy {
    width: 100%;
    max-width: 1200px;
    margin: 120px auto;
    padding: 40px;
    background: #f1f1f1;
    border-radius: 10px;
}
.privacy-policy h1, .privacy-policy h2, .privacy-policy h3, .privacy-policy p, .privacy-policy ul, .privacy-policy li {line-height: 1.5;}
.privacy-policy h1 {
    font-size: var(--s-26);
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid #d9d9d9;
    padding-bottom: 20px;
}
.privacy-policy h2 {
    font-size: var(--s-18);
    font-weight: 500;
    margin: 10px 0 5px;
}
.privacy-policy a {
    color: blue;
    text-decoration: underline;
}
.privacy-policy ul li {
    color: #373737;
}




@media screen and (min-width: 1024px) {
    .menu-container {display: none;}
}

@media screen and (max-width: 1024px) {
    .part {
        padding: 80px 16px;
    }
    header {
        padding: 0 16px;
        height: 65px;
        display: flex;
        justify-content: space-between;
    }
    header .logo {width: 100px;}
    .tab {display: none!important;}
    .menu-container {display: block;}
    .navi{display: none;}
    /*공통*/
    .part2, .part3, .part4, .part5, .part6, .part7, .part8, .part9, .part10, .part11, .part13 {
        margin-top:20%;
    }
    .part .title-wrap h2,
    .part3 .mySwiper3 .swiper-wrapper .swiper-slide .table-title h3,
    .part3 .mySwiper3 .swiper-wrapper .swiper-slide:nth-child(2) .table-text h3 {
        font-size: max(4vw, 18px);
    }
    .part .title-wrap p,
    .part3 .mySwiper3 .swiper-wrapper .swiper-slide .table-title p,
    .part3 .mySwiper3 .swiper-wrapper .swiper-slide:nth-child(2) .table-text p {
        font-size: max(3vw, 14px);
    }

    /*part1*/
    .part1 {padding: 0;}
    .part1 .swiper-wrapper .swiper-slide {
        height: 60vh; /* 모바일에서는 높이를 줄임 */
    }

    .part1 .banner-title {
        left: 5%; /* 좌측 정렬을 조정 */
        width: 90%; /* 전체 너비 확보 */
    }

    .part1 .swiper-wrapper .swiper-slide h3 {
        font-size: max(4vw, 18px); /* 모바일에서 더 큰 글씨 유지 */
    }

    .part1 .swiper-wrapper .swiper-slide p {
        font-size: max(2.5vw, 14px);
    }

    /*part2*/
    .part2 .strength {
        flex-direction: column;
        align-items: center;
    }
    .part2 .strength li {
        margin: -30px 0 0;
        box-shadow: -2px -3px 10px rgba(0, 0, 0, 0.1);
    }
    .part .btn-wrap, .part .btn-wrap .free-counseling {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    /*part3*/
    .part3 .mySwiper2 .swiper-slide {
        flex-direction: column;
    }
    .part3 .mySwiper2 .swiper-slide .news-img,
    .part3 .mySwiper2 .swiper-slide .news-cont {
        width: 100%;
    }
    .part3 .mySwiper2 .swiper-slide .news-cont {
        padding: 8vw;
        gap: 4vw;
    }
    .part3 .mySwiper3 {
        padding: 0;
    }
    .part3 .mySwiper2 .swiper-slide .news-img {
        height: 30vh;
        width: 100%;
    }

    /*part4*/
    .part4 .difference-wrap {
        flex-direction: column;
        align-items: center;
    }
    .part4 .difference {
        width: 85%;
    }

    /*part6*/
    .part6 .part6-cont {
        flex-direction: column;
        align-items: center;
        gap: 10vw;
    }
    .part6 .part6-cont .and {
        font-size: max(5vw, 20px);
    }

    /*part7*/
    .part7 .cost-wrap .cost-cont {
        flex-direction: column;
        gap: 10px;
    }
    .rotate {
        rotate: 90deg;
        margin: 10px 0;
    }

    /*part8*/
    .part8 .price-table tbody tr td .price-wrap {
        flex-direction: column;
        gap: 10px;
    }
    .part8 .price-table tbody tr td:nth-child(2) {
        align-items: flex-start;
    }

    /*part9*/
    .part9 .part9-wrap .process-wrap {
        flex-direction: column;
    }
    .part9 .part9-wrap .process-wrap .process-img {
        rotate: 90deg;
    }
    .part9 .part9-wrap .process-wrap .process-cont,
    .part9 .part9-wrap .process-wrap .process-cont ul {
        min-height: auto;
    }
    .part9 .part9-wrap {
        align-items: center;
    }

    /*part11*/
    .part11 .report-big-wrap .report-wrap > p {
        min-height: auto;
    }

    /*footer*/
    footer {display: none;}

    
}




@media screen and (max-width: 480px) {
    .part {
        padding: 40px 16px;
    }
    .part .title-wrap {
        margin-bottom: 40px;
        gap: 10px;
    }
    .part12 .title-wrap {
        margin-bottom: 0px;
    }
    .part .news-btn {
        width: 100%;
    }
    .part1 {padding: 0;}
    .part2 .strength {
        margin-bottom: 40px;
    }
    .part2 .strength li {
        width: 200px;
        height: 200px;
    }
    .part2 .strength li .strength-num {
        font-size: max(2.5vw, 16px);
    }
    .part2 .strength li .stength-cont {
        font-size: max(3vw, 18px);
    }
    .part3 .mySwiper3 {
        margin-top: 40px;
    }
    .part3 .mySwiper3 .table-001,
    .part3 .mySwiper3 .table-003 {
        max-width: 400px;
    }
    .part3 .mySwiper3 .table-002 {
        max-width: 200px;
    }
    .part3 .mySwiper3 .swiper-wrapper .swiper-slide {
        height: 350px;
    }
    .part3 .mySwiper2 .swiper-slide .news-cont h3 {
        font-size: max(3vw, 18px);
        line-height: 1.5;
    }
    .part3 .mySwiper2 .swiper-slide .news-cont p {
        font-size: max(2.5vw, 16px);
        line-height: 1.5;
    }
    .part3 .mySwiper2 .swiper-slide .news-cont a {
        width: 100%;
        text-align: center;
    }
    .part4 .difference-wrap {
        gap: 40px;
    }
    .part4 .difference ul li {
        line-height: 1.2;
    }
    .part5 .func {
        flex-direction: column;
        padding: 30px 20px;
        width: 100%;
    }
    .part4 .difference h3,
    .part5 .func-title {
        font-size: max(3vw, 16px);
        left: 10px;
    }
    .part5 .func-text ul {
        gap: 5px;
    }
    .part5 .func-text ul li {
        font-size: var(--s-16);
    }
    .part5 .func .func-img {
        display: none;
    }
    .part5 .func-wrap {
        gap: 40px;
    }
    .part6 .cont1 {
        padding: 20px;
    }
    .part6 .cont1 .cont1-wrap {

    }
    .part6 .cont1 .cont1-wrap .cont1-1 span,
    .part6 .cont1 .cont1-wrap .cont1-1 em {
        font-size: max(3vw, 18px);
    }
    .part6 .cont1 .cont1-wrap .cont1-1, .part6 .cont1 .cont1-wrap .cont1-2 {
        max-width: 140px;
        padding: 10px;
    }
    .part6 .cont1 .cont1-wrap .cont1-2 {
        gap: 10px;
        padding: 20px 10px;
    }
    .arrow-circle {

    }
    .part7 > .cost-img {
        margin: 10px 0;
    }
    .part7 .cost-wrap h3,
    .part7 .cost-wrap .cost-cont .cost1 p,
    .part7 .cost-wrap .cost-cont .cost1 .cost-num {
        font-size: max(3.2vw, 18px);
    }
    .part7 .cost-wrap .cost-cont .cost1 {
        padding: 20px;
    }
    .part7 > .cost-money img {
        transform: scale(0.8);
    }
    .part7 > .cost-money span {
        font-size: max(5vw, 20px);
    }
    .part8 .part8-tab .tab1 {
        font-size: max(3vw, 16px);
        line-height: 20px;
    }
    .part8 .part8-tab {
        gap: 10px;
    }
    .part8 .price-table tbody tr td:nth-child(2) {
        padding: 20px;
    }
    .part8 .price-table thead tr th,
    .part8 .price-table tbody tr td {
        font-size: var(--s-16);
    }
    .part9 .part9-wrap .process-wrap .process-cont ul {
        gap: 10px;
    }
    .part9 .part9-wrap .process-wrap .process-cont ul li .number {
        font-size: max(3.2vw, 18px);
    }
    .part9 .part9-wrap .process-wrap .process-cont ul li {
        font-size: max(3vw, 16px);
    }
    .part10 .mySwiper4 .swiper-wrapper .swiper-slide {
        flex-direction: column;
    }
    .part10 .mySwiper4 .swiper-wrapper .swiper-slide > p,
    .part10 .mySwiper4 .swiper-wrapper .swiper-slide .project_cont {
        width: 100%;
        border-left:0; border-top:1px solid var(--color-stroke);
    }
    .part10 .mySwiper4 .swiper-wrapper .swiper-slide .project_cont {
        gap: 10px;
        justify-content: initial;
    }
    .part12 {
    }
    .part12 .title-wrap {
        gap: 3px!important;
        position: relative;
        bottom: 10px;
    }

   
}