
/* header start */
header{
    position: fixed;
    width:100%;
    height:100px;
    min-width:1400px;
    z-index: 999;
    top:0;
    left:0;
    transition: all .3s ease-in-out;
}
header.on{
    position: fixed;
    width:100%;
    min-width:1400px;
    top:0;
    left:0;
    background-color: #fff;
    border-bottom:1px solid #ccc;
}
header .logo h1{
    position: absolute;
    width:120px;
    height:75px;
    top:12px;
    left:0;
    transition:all .3s ease-in-out;
    background: url(../img/logo_w.png) 50% 50% no-repeat;
    background-size: 120px;
    z-index: 999;
}
header .logo h1.on{
    background: url(../img/logo.png) 50% 50% no-repeat;
    background-size: 120px;
}
header .logo h1 a{
    display: block;
    width:120px;
    height:75px;
}

header:hover{background-color: #fff; transition: all .3s ease-in-out;}
header:hover .logo h1{background: url(../img/logo.png) 50% 50% no-repeat; background-size:120px; transition:all .3s ease-in-out;}
header:hover .gnb li a{color:#f7941d;  transition:all .3s ease-in-out;}
header:hover .menubtn_wrap ul li{background-color: #333;}


.pos{position: relative;}
.bar{
    width:0;
    height: 3px;
    background-color: #f7941d;
    position: absolute;
    left: 0;
    bottom: 0;
}
nav{
    width:100%;
    max-width:1400px;
    min-width:1400px;
    margin:0 auto;
    z-index: 999;
    position: relative;
}
.gnb{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:60px;
}
.gnb > li{text-align: center;}
.gnb > li > .gnb_wrap > a{
    color:#fff;
    font-size:20px;
    height:100px;
    line-height: 100px;
    position: relative;
    font-weight: 400;
}
.gnb > li > .gnb_wrap > a.on{color:#f7941d;}
.gnb > li > .gnb_wrap > a::after{content:'';
    display:block;
    width:0;
    height:2px;
    position: absolute;
    bottom:-10px;
    left:50%;
    background-color: #8cc63e;
    transform: translateX(-50%);
    transition: all .3s ease-in-out;
}


.gnb > li > .gnb_wrap{position: relative;}
.sub_menu{
    font-size:0;
    display:none;
    position: absolute;
    z-index:99;
    left:50%;
    transform: translateX(-50%);
    width:100%;
    width:200px;
    background-color: #fff;
    border-bottom:3px solid #f7941d;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}
.sub_menu li{transition: all .2s ease-in-out;}
.sub_menu a{
    font-size:16px;
    font-weight: 600;
    color: #464243 !important;
    line-height: 36px;
    display: block;
    position: relative;
    transition: all .2s ease-in-out;
    overflow: hidden;
}
.sub_menu a::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130%;
    height: 200%;
    border-radius: 50%;
    transform: translate3d(-50%,-50%,0) scale3d(0,0,0);
    transition: opacity .4s cubic-bezier(.19,1,.22,1),transform .75s cubic-bezier(.19,1,.22,1);
    /* background-color: #bf0b2c; */
    background-color: #f7941d;
    opacity: 0;
    z-index: -1;
    transition: all .2s ease-in-out;
}
.sub_menu a:hover::before{
    opacity: 1;
    transition-duration: .85s;
    transition: all .2s ease-in-out;
    transform: translate3d(-50%,-50%,0) scale3d(1,1,1);
}
.sub_menu a:hover{color: #fff !important; transition: all .2s ease-in-out;}

.consulting{
    position: absolute;
    top:25px;
    right:0;
    z-index: 9999;
}
.consulting a{
    display:block;
    width:220px;
    font-size:18px;
    color: #fff !important;
    font-weight: 600;
    height:50px;
    line-height: 50px;
    text-align: left;
    padding-left:50px;
    border-radius: 10px;
    transition: all .3s ease-in-out;
    position: relative;
    background-color: #8cc63e;
    background-image:url(../img/phone.png);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: 5% 50%;
}
.consulting a:hover{
    background-color: #fff;
    background-image:url(../img/phone_h.png);
    background-size: 30px;
    color: #8cc63e !important;
}
.consulting a:hover .consulting_box{width:85%; transition: all .3s ease-in-out;}
.consulting_box{
    width:0;
    height:2px;
    background-color: #8cc63e;
    position: absolute;
    left:15px;
    bottom:0px;
    transition:all 0.3s ease-out;
}


/* header menu active */
header.active1 .gnb > li:nth-child(1) .gnb_wrap > a,
header.active2 .gnb > li:nth-child(2) .gnb_wrap > a,
header.active3 .gnb > li:nth-child(3) .gnb_wrap > a,
header.active4 .gnb > li:nth-child(4) .gnb_wrap > a,
header.active5 .gnb > li:nth-child(5) .gnb_wrap > a,
header.active6 .gnb > li:nth-child(6) .gnb_wrap > a,
header.active7 .gnb > li:nth-child(7) .gnb_wrap > a{color: #8cc63e;}

header.active1 .gnb > li:nth-child(1) > .gnb_wrap a::after,
header.active2 .gnb > li:nth-child(2) > .gnb_wrap a::after,
header.active3 .gnb > li:nth-child(3) > .gnb_wrap a::after,
header.active4 .gnb > li:nth-child(4) > .gnb_wrap a::after,
header.active5 .gnb > li:nth-child(5) > .gnb_wrap a::after,
header.active6 .gnb > li:nth-child(6) > .gnb_wrap a::after,
header.active7 .gnb > li:nth-child(7) > .gnb_wrap a::after{width:100%;}
/* header end */

/* header end */

/* visual start */
.visual {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background-color: #000;
    user-select: none;
    -webkit-user-drag: none;
    cursor: grab;
    touch-action: pan-y;
}

.visual:active {
    cursor: grabbing;
}

.visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 3;
    pointer-events: none;
}

.canvas {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.visual_content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #fff;
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 10;
    pointer-events: none;
}

.visual_item {
    display: none;
}

.visual_item.active {
    display: block;
}

.visual_item .sub_txt {
    font-size: 18px;
    color: #ecbb69;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s 0.2s ease forwards;
}

.visual_item .main_title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s 0.4s ease forwards;
}

.visual_item .desc {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s 0.6s ease forwards;
}

.visual_item .btn_wrap {
    pointer-events: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s 0.8s ease forwards;
}

.visual_item .btn_link {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
    z-index: 0;
}
.visual_item .btn_link::before{
    content: '';
    position: absolute;
    top:0;
    left:0;
    width:0;
    height:100%;
    z-index: -1;
    transition: all 0.3s;
    background-color: #8cc63e;
}
.visual_item .btn_link:hover{border-color:#8cc63e;}
.visual_item .btn_link:hover::before {width:100%;}

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

.navPrev,
.navNext {
    backdrop-filter: contrast(2) brightness(0.7) blur(10px);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, opacity 0.2s;
}

.navPrev:hover,
.navNext:hover {
    background: rgba(255, 255, 255, 0.22);
}

.navPrev {
    left: 2rem;
}

.navNext {
    right: 2rem;
}

.thumbs {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: max-content;
    max-width: calc(100% - 2rem);
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0 0 10px 0;
    z-index: 10;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.thumbs::-webkit-scrollbar {
    height: 6px;
}

.thumbs::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.thumbs::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.thumbButton {
    display: block;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    background: none;
    transition: border-color 0.2s, opacity 0.2s;
    opacity: 0.55;
}

.thumbButton.active {
    border-color: #fff;
    opacity: 1;
}

.thumbButton img {
    display: block;
    width: 80px;
    height: 50px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .thumbs {
        display: none;
    }

    .navPrev {
        left: 1rem;
    }

    .navNext {
        right: 1rem;
    }

    .visual_item .main_title {
        font-size: 36px;
    }
}
/* visual end */

/*****************  버튼 공통 *****************/

/* image_show_wrap 공통 */
section .image_show_wrap,
section .image_show_wrap2{
    position: relative;
    top: 0px;
    left: 0%;
    width: 100%;
}
section .image_show_wrap{overflow: hidden; animation-duration: 1.4s;}
section .image_show_wrap2{animation-duration: 1.4s;}

section .show_img01{animation-name: show_img01;}
@keyframes show_img01{
    0%{opacity: 0; transform: translate3d(-100%, 0, 0);}
}
section .show_img02{animation-name: show_img02;}
@keyframes show_img02{
    0%{opacity: 0; transform: translate3d(100%, 0, 0);}
}
section .show_img03{animation-name: show_img03;}
@keyframes show_img03{
    0%{opacity: 0; transform: translate3d(100%, 0, 0);}
}
section .show_img04{animation-name: show_img04;}
@keyframes show_img04{
    0%{opacity: 0; transform: translate3d(-100%, 0, 0);}
}
section .show_img05{animation-name: show_img05;}
@keyframes show_img05{
    0%{opacity: 0; transform: translate3d(0, 100%, 0);}
}
section .show_img06{animation-name: show_img06;}
@keyframes show_img06{
    0%{opacity: 0; transform: translate3d(0, -100%, 0);}
}
section .show_img07{animation-name: show_img07;}
@keyframes show_img07{
    0%{opacity: 0; transform: translate3d(0, -100%, 0);}
}
section .show_img08{animation-name: show_img08;}
@keyframes show_img08{
    0%{opacity: 0; transform: translate3d(0, 100%, 0);}
}
/* image_show_wrap 공통 */

/* image 확대 공통 */
.clip-animation {
    clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
    animation: clipExpand 1s cubic-bezier(0.770, 0.000, 0.175, 1.000) forwards;
}
@keyframes clipExpand {
    from {
        clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
    }
    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}
/* image 확대 공통 */

/* ------------------------------------- section ------------------------------------- */
/* section1 */
.brand_story { padding: 120px 0; }
.brand_story .story_wrap { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 40px; 
}

.brand_story .img_area { width: 50%; overflow: hidden; border-radius: 20px 0 20px 0;}
.brand_story .txt_area { width: 50%; }
.brand_story .sub_title { 
    display: block; 
    color: #8CC63F;
    margin-bottom: 15px; 
}
.brand_story .main_title { 
    margin-bottom: 30px; 
    line-height: 1.3; 
}
.brand_story .desc_box .desc { 
    margin-bottom: 20px; 
    color: #555; 
    font-weight: 500; 
}

/* 버튼 디자인 (btn_line) */
.brand_story .btn_wrap {
    margin-top: 40px;
}


/* 공통 */
.btn_line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 45px;
    border: 1px solid #333;
    color: #333;
    font-family: 'Sweet', sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}
.btn_line::before{
    content: '';
    position: absolute;
    inset: 0;
    width:0;
    height:100%;
    transition: all .3s ease-in-out;
    background-color: #8cc63e;
    z-index: -1;
}

.btn_line:hover {color: #fff; border-color: #8cc63e;}
.btn_line:hover::before{width:100%;}


/* 어두운 배경용 btn_line (white_ver) 추가 */
.btn_line.white_ver {
    border-color: #ffffff;
    color: #ffffff;
}
.btn_line.white_ver::before {
    background-color: #8CC63F; /* 호버 시 초록색으로 채워짐 */
}
.btn_line.white_ver:hover {
    border-color: #8CC63F;
    color: #ffffff;
}
/* 공통 */
/* section1 */






/* section2 */
.section02 {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.menu_section {
    position: relative;
    padding: 120px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

/* 배경 장식 */
.menu_section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -120px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background-color: rgba(140, 198, 62, 0.08);
    pointer-events: none;
}

/* 타이틀 */
.menu_section .sec_title_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 55px;
}

.menu_section .sub_title {
    display: block;
    color: #8CC63F;
    margin-bottom: 15px;
}

.menu_section .main_title {
    color: #111;
    font-size: 48px;
}

.menu_section .desc {
    padding-bottom: 10px;
    color: #555;
    font-size: 20px;
    text-align: right;
}

/* 메뉴 그리드 */
.menu_section .menu_list {
    display: grid;
    grid-template-columns: 0.95fr 0.95fr 1.05fr 1.05fr;
    grid-auto-rows: 267px;
    gap: 22px;
}

.menu_section .menu_item {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background-color: #111;
    cursor: pointer;
    transform: translateY(0);
    transition: all .3s ease-in-out;
    will-change: transform;
}

.menu_section .menu_item_big {
    grid-column: span 2;
    grid-row: span 2;
}

/* 이미지 */
.menu_section .img_area {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.menu_section .img_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.75s ease, opacity 0.75s ease;
    will-change: transform;
    backface-visibility: hidden;
}

/* 어두운 그라데이션 */
.menu_section .menu_item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.04) 0%,
        rgba(0, 0, 0, 0.18) 42%,
        rgba(0, 0, 0, 0.82) 100%
    );
    transition: background 0.45s ease;
    pointer-events: none;
}

/* 텍스트 */
.menu_section .txt_area {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    color: #fff;
    text-align: left;
    transform: translateY(0);
    transition: transform 0.45s ease;
}

.menu_section .menu_cate {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 13px;
    border-radius: 100px;
    background-color: #8cc63e;
    color: #fff;
    font-family: 'Sweet', sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

.menu_section .txt_area h4 {
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
    color: #fff;
    white-space: nowrap;
}

.menu_section .txt_area p {
    position: relative;
    z-index: 2;
    max-width: none;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.5;
    word-break: keep-all;
}

.menu_section .menu_num {
    position: absolute;
    right: 0;
    bottom: -2px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.17);
    font-family: 'Sweet', sans-serif;
    font-size: 50px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
}

/* 큰 카드 */
.menu_section .menu_item_big .txt_area {
    left: 38px;
    right: 38px;
    bottom: 38px;
}

.menu_section .menu_item_big .menu_cate {
    margin-bottom: 14px;
    padding: 7px 16px;
    font-size: 14px;
}

.menu_section .menu_item_big .txt_area h4 {
    margin-bottom: 14px;
    font-size: 44px;
}

.menu_section .menu_item_big .txt_area p {
    max-width: 520px;
    font-size: 19px;
    line-height: 1.7;
}

.menu_section .menu_item_big .menu_num {
    right: 0;
    bottom: -6px;
    font-size: 96px;
}

/* hover */
.menu_section .menu_item:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.18);
}

.menu_section .menu_item:hover .img_area img {
    transform: scale(1.06);
    opacity: 0.82;
}

.menu_section .menu_item:hover .txt_area {
    transform: translateY(-4px);
}

.menu_section .menu_item:hover::before {
    background: linear-gradient(
        180deg,
        rgba(191, 11, 44, 0.08) 0%,
        rgba(0, 0, 0, 0.2) 42%,
        rgba(0, 0, 0, 0.88) 100%
    );
}
/* section2 */




/* section3 */
.store_section { 
    padding: 120px 0; 
    background-color: #ffffff;
}

.store_section .sec_title_wrap { 
    text-align: center; 
    margin-bottom: 60px; 
}
.store_section .sub_title { 
    display: block; 
    color: #8CC63F;
    margin-bottom: 15px; 
}
.store_section .main_title { 
    margin-bottom: 20px; 
}
.store_section .desc { 
    color: #555; 
}


.store_section .interior_gallery {
    display: grid;
    grid-template-columns: 900px 480px; 
    grid-template-rows: repeat(2, 308px); 
    gap: 20px;
    margin-bottom: 60px;
}

/* 빈 공간 컬러 통일 */
.store_section .img_area {
    border-radius: 15px;
    overflow: hidden;
}

.store_section .img_area.large {
    grid-row: 1 / 3;
    height: 100%;
}
.store_section .img_area.small {
    height: 100%;
}

/* 지점 안내 박스 레이아웃 */
.store_section .branch_info_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 40px 60px;
}

.store_section .branch_info_box .txt_area h4 {
    margin-bottom: 10px;
    color: #000;
}
.store_section .branch_info_box .txt_area p {
    color: #666;
    font-size: 16px;
    font-weight: 500;
}
/* section3 */





/* section4 */
/* 섹션 4 - 창업경쟁력 CSS */
.competitiveness_section { 
    padding: 120px 0; 
    background: url(../img/section4/section4_bg.jpg) no-repeat 50% fixed;
    background-size: cover;
    position: relative;
}
.competitiveness_section::before{
    content: '';
    position: absolute;
    inset: 0;
    width:100%;
    height:100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.competitiveness_section .sec_title_wrap { 
    text-align: center; 
    margin-bottom: 60px; 
}
.competitiveness_section .sub_title { 
    display: block; 
    color: #8cc63e;
    margin-bottom: 15px; 
}
.competitiveness_section .main_title { 
    margin-bottom: 20px; 
    color:#fff;
}
.competitiveness_section .desc { 
    color: #ccc; 
}

/* 카드형 그리드 레이아웃 */
.competitiveness_section .point_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* 카드 디자인 */
.competitiveness_section .point_item {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}


.competitiveness_section .point_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: #8cc63e;
}

.competitiveness_section .icon_area {
    font-size: 50px;
    color: #8cc63e;
    margin-bottom: 20px;
}

.competitiveness_section .point_item h4 {
    margin-bottom: 15px;
    color: #000;
}

.competitiveness_section .point_item p {
    color: #666;
    font-size: 16px;
    font-weight: 500;
}










/* section4 */




/* section5 */
/* 섹션 5 - 개설안내 CSS */
.open_guide_section { 
    padding: 120px 0; 
    background-color: #ffffff; 
}

/* 상단 특별 혜택 배너 */
.open_guide_section .benefit_banner {
    display: flex;
    align-items: center;
    background-color: #fff9f0; /* 눈에 띄는 웜톤(연한 주황빛) 배경 */
    border: 2px solid #FF8000;
    border-radius: 20px;
    padding: 50px 60px;
    margin-bottom: 100px; /* 배너와 아래 타이틀 사이 여백 */
    position: relative;
    overflow: hidden;
}

.open_guide_section .benefit_banner .txt_box {
    width: 60%;
    z-index: 2;
}

.open_guide_section .benefit_banner .badge {
    display: inline-block;
    background-color: #FF8000;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.open_guide_section .benefit_banner h3 {
    font-size: 36px;
    color: #000;
    margin-bottom: 15px;
}

.open_guide_section .benefit_banner p {
    font-size: 18px;
    color: #555;
    font-weight: 500;
}

.open_guide_section .benefit_banner .img_box {
    width: 35%;
    height: 200px;
    background-color: rgba(255, 128, 0, 0.1); 
    border-radius: 15px;
    margin-left: auto;
    overflow: hidden;
}

/* 교육/절차 섹션 타이틀 */
.open_guide_section .sec_title_wrap { 
    text-align: center; 
    margin-bottom: 60px; 
}
.open_guide_section .sub_title { 
    display: block; 
    color: #8CC63F; 
    margin-bottom: 15px; 
}
.open_guide_section .main_title { margin-bottom: 20px; }
.open_guide_section .desc { color: #555; }

/* 실전 교육 시스템 (4단계 그리드) */
.open_guide_section .education_step {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.open_guide_section .step_box {
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.open_guide_section .step_box:hover {
    border-color: #FF8000;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(255, 128, 0, 0.05);
}

.open_guide_section .step_num {
    display: inline-block;
    color: #FF8000;
    font-family: 'Poppins', sans-serif; /* 숫자는 영문 폰트 섞어주면 예쁩니다 */
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.open_guide_section .step_box h4 {
    color: #000;
    margin-bottom: 15px;
}

.open_guide_section .step_box p {
    color: #666;
    font-size: 16px;
    font-weight: 500;
}
/* section5 */



/* section6 */
.cta_section { 
    padding: 120px 0; 
    background-color: #222222; 
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/section6/section6_bg.jpg') no-repeat center/cover;
    /* background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../img/section6/section6_bg.jpg) no-repeat 50% fixed; */
    text-align: center;
}

.cta_section .cta_wrap {
    max-width: 800px;
    margin: 0 auto;
}

.cta_section .sub_title { 
    display: block; 
    color: #8CC63F; /* 브랜드 초록색으로 포인트 */
    margin-bottom: 20px; 
    font-size: 20px;
    font-weight: 700;
}

.cta_section .main_title { 
    color: #ffffff; 
    margin-bottom: 25px; 
    line-height: 1.3; 
}

.cta_section .desc { 
    color: #cccccc; 
    margin-bottom: 50px; 
    font-size: 18px;
    word-break: keep-all;
}

/* 전화번호 박스 */
.cta_section .contact_box {
    margin-bottom: 40px;
}
.cta_section .contact_box p {
    color: #FF8000;
    font-size: 16px;
    margin-bottom: 10px;
}
.cta_section .contact_box strong {
    display: inline-block;
    color: #ffffff;
    font-size: 56px; /* 전화번호는 압도적으로 크게! */
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
}
.cta_section .contact_box i {
    font-size: 48px;
    vertical-align: middle;
    margin-right: 10px;
}
/* section6 */



/* footer */
.footer{background-color: #0D0D0D;}
.footer .top_info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:20px 0;
    border-bottom:1px solid #ccc;
}
.footer .top_info .right{
    display: flex;
}
.footer .top_info a{
    display: block;
    font-size:14px;
    color:#fff;
    text-align: left;
    margin-right:30px;
    transition: all .3s ease-in-out;
}
.footer .top_info a img{width:125px;}

.footer .top_info a:hover{color:red;}
.footer .bottom_info{padding:30px 0;}
.footer .bottom_info p{
    font-size:13px;
    color:#fff;
    text-align: left;
    line-height: 26px;
}
.footer .bottom_info span{
    display: block;
    font-size:13px;
    margin-top:10px;
    color:#ccc;
    text-align: left
}
/* footer */
/* ------------------------------------- section ------------------------------------- */
/* 개인정보처리방침 */
.personal_content{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
    display: none;
}
.personal_content .personal_content_list{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    width:1200px;
    height:800px;
    padding:40px;
    background-color: #fff;
    border-radius: 20px;
}
.personal_content .personal_content_list h3{
    font-size:32px;
    color:#000;
    text-align: center;
}
.personal_content .personal_content_list .tit{
    width:100%;
    height:600px;
    overflow: auto;
    margin-top:30px;
}
.personal_content .personal_content_list .tit p{
    font-size:16px;
    line-height:1.5!important;
    color:#333;
    font-weight: 300;
    padding:10px 0;
    font-weight: 600;
}

.personal_content .personal_content_list .close{
    display: block;
    position: absolute;
    top:40px;
    right:40px;
    font-size:24px;
    color:#000;
    font-weight: 700;
}





/* top_btn */
.topbtn{
    position: fixed;
    bottom:60px;
    right:60px;
    z-index:9999999999999;
    width:50px;
    height:50px;
    border-radius: 40px;
    background-color:  #f7941d;
    transition: all 0.5s ease;
    opacity: 0;
}
.topbtn.on{opacity: 1;}

.topbtn img{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width:30px;
}

.topbtn:hover{
    transition: all 0.5s ease;
    background-color: #151515;
}
/* top_btn */
