/* visual sub 공통 start */
.sub_visual{
    width:100%;
    min-width:1400px;
    position: relative;
    overflow: hidden;
}
.sub_visual::after{
    content: '';
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: rgba(0, 0, 0, 0.4);
}
.sub_visual > img{
    width:100%;
    object-fit: cover;
    height:450px;
    transition: all 1.5s ease-in-out;
    transform:scale(1.5);
}
.sub_visual > img.zoom{transform:scale(1);}
.sub_visual .sub_typo{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width:100%;
    z-index: 99;
}

.sub_visual .sub_typo > span.up{opacity:1; transform:translate(0,0);}

.sub_visual .sub_typo span{
    color:#fff;
    display:block;
    opacity:1;
    transform:translate(0,100%);
    transition:all 1s ease-in-out;
}

.sub_visual .sub_typo span:first-child{
    font-size:36px;
    font-weight: 800;
    transition-delay:0s;
    font-family: 'Noto Serif KR', serif;
}
.sub_visual .sub_typo span:nth-child(2){
    font-size:18px;
    font-weight: 600;
    transition-delay:0.5s;
}
/* visual sub 공통 end */

/* sub 타이틀 공통 */
.contents_title{
    padding:30px 0;
    position: relative;
    width:100%;
    min-width:1224px;
    overflow: hidden;
}
.contents_title h2{
    font-size:40px;
    padding:30px;
    color:#5C2C16;
    font-weight: 600;
    text-align: left;
    position: relative;
}
.contents_title h2::before{
    content: '';
    position: absolute;
    top:20px;
    left:0;
    width:25px;
    height:25px;
    border-top:2px solid #5C2C16;
    border-left:2px solid #5C2C16;
    animation: bounceInLeft 1.5s .3s both;
}
.contents_title h2::after{
    content: '';
    position: absolute;
    bottom:0;
    left:0;
    width:100%;
    height:1px;
    background-color: #5C2C16;
    animation: bounceInLeft 1.5s .3s both;
}

.contents_detail{padding:30px 0;}
.contents{overflow: hidden;}
/* sub 타이틀 공통 */

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

.contents_detail .show_img01{animation-name: show_img01;}
@keyframes show_img01{
    0%{opacity: 0; transform: translate3d(-100%, 0, 0);}
}
.contents_detail .show_img02{animation-name: show_img02;}
@keyframes show_img02{
    0%{opacity: 0; transform: translate3d(100%, 0, 0);}
}
.contents_detail .show_img03{animation-name: show_img03;}
@keyframes show_img03{
    0%{opacity: 0; transform: translate3d(100%, 0, 0);}
}
.contents_detail .show_img04{animation-name: show_img04;}
@keyframes show_img04{
    0%{opacity: 0; transform: translate3d(-100%, 0, 0);}
}
.contents_detail .show_img05{animation-name: show_img05;}
@keyframes show_img05{
    0%{opacity: 0; transform: translate3d(0, 100%, 0);}
}
.contents_detail .show_img06{animation-name: show_img06;}
@keyframes show_img06{
    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 확대 공통 */


/* =========================================
   서브페이지 공통 텍스트 규격 세팅
========================================= */

.contents_detail h3 { font-size: 32px; color: #5C2C16; font-weight: 700; line-height: 1.4; word-break: keep-all; }
.contents_detail h4 { font-size: 24px; color: #D4B8A6; font-weight: 600; margin-bottom: 10px; font-family: 'Arial', sans-serif; }
.contents_detail h5 { font-size: 20px; color: #333333; font-weight: 600; margin-bottom: 15px; }
.contents_detail p { font-size: 18px; color: #555555; line-height: 1.6; word-break: keep-all; }


/* =========================================
   [공통] 스크롤 Reveal 애니메이션 설정
========================================= */
/* 1. 기본 숨김 및 트랜지션 설정 */
.reveal {
    opacity: 0;
    transition: all 0.3s ease-out; /* 애니메이션 속도 조절 가능 */
}

/* 2. 나타나는 방향 설정 (원하는 대로 추가 가능) */
/* 아래에서 위로 */
.reveal.fade_up {
    transform: translateY(50px);
}
/* 좌측에서 우측으로 (말씀하신 예시) */
.reveal.fade_left {
    transform: translateX(-50px); /* 필요시 -100% 등으로 수정 */
}
/* 우측에서 좌측으로 */
.reveal.fade_right {
    transform: translateX(50px);
}

/* 3. 활성화 상태 (JS에서 .active가 붙었을 때) */
.reveal.active {
    opacity: 1;
    transform: translate(0, 0); /* 원래 위치로 복귀 */
}

/* 4. 순차적 등장을 위한 딜레이 설정 */
.reveal.delay_200 { transition-delay: 0.2s; }
.reveal.delay_400 { transition-delay: 0.4s; }
.reveal.delay_600 { transition-delay: 0.6s; }



.contents_detail .img_box { 
    background-color: #f1f1f1; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

/* ------------------------------------------- sub -------------------------------------------------------- */
/* sub01_01 */
/* 1. 스토리 인트로 */
.sub01_01 .story_intro { text-align: center; padding: 80px 0; }
.sub01_01 .story_intro h3 { margin-bottom: 30px; }
.sub01_01 .story_intro p {
    padding:15px 0;
    line-height: 2;
}
.sub01_01 .story_intro .intro_img { 
    width: 100%; 
    height: 500px; /* 메인 이미지 높이 */
    border-radius: 20px; /* 약간의 둥근 모서리로 부드러운 느낌 부여 */
    overflow: hidden;
    margin-top:60px;
}

/* 2. 핵심 가치 (3단 배열) */
.sub01_01 .story_value { padding: 80px 0 140px; text-align: center; }
.sub01_01 .story_value > h3 { margin-bottom: 60px; }
.value_list { 
    display: flex; 
    justify-content: space-between; 
    gap: 40px; 
}
.sub01_01 .value_list li { 
    flex: 1; 
    text-align: left; 
}
.sub01_01 .value_list li .img_box {
    width: 100%;
    height: 320px; /* 하단 3단 이미지 높이 */
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
}
/* sub01_01 */




/* sub02_01 */
/* 상단 카테고리 타이틀 */
.sub02_01 .category_title {
    text-align: center;
    margin: 40px 0 50px;
}

.sub02_01 .category_title h3 {
    font-size: 36px;
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
}

.sub02_01 .category_title p {
    font-size: 18px;
    color: #666;
    word-break: keep-all;
}

/* 탭 메뉴 스타일 */
.sub02_01 .tab_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px;
    padding: 0;
    list-style: none;
}

.sub02_01 .tab_menu li {
    flex: 0 0 auto;
}

.sub02_01 .tab_menu li a {
    display: block;
    padding: 12px 24px;
    background-color: #f5f5f5;
    color: #666;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.sub02_01 .tab_menu li:hover a {
    background-color: #eaeaea;
}

.sub02_01 .tab_menu li.active a {
    background-color: #5C2C16;
    color: #fff;
    border-color: #5C2C16;
}

/* 탭 컨텐츠 컨테이너 */
.sub02_01 .tab_container {
    width: 100%;
    min-height: 400px;
}

.sub02_01 .tab_content {
    display: none; /* 기본적으로 숨김 */
    animation: fadeInTab 0.5s ease-in-out;
}

.sub02_01 .tab_content.active {
    display: block; /* 활성화된 탭만 표시 */
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 메뉴 리스트 (Grid) */
.sub02_01 .menu_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 80px;
}

.sub02_01 .menu_list li {
    text-align: center;
}

.sub02_01 .menu_list li .img_box {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    background-color: #f9f9f9; /* 배경 투명한 png 대비용 */
}

.sub02_01 .menu_list li .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.sub02_01 .menu_list li:hover .img_box img {
    transform: scale(1.05);
}

.sub02_01 .menu_list li h4 {
    color: #5C2C16;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.sub02_01 .menu_list li p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    word-break: keep-all;
}

/* 빈 메뉴 영역 (리필메뉴 등) */
.sub02_01 .empty_menu {
    text-align: center;
    padding: 100px 0;
    color: #999;
    font-size: 18px;
}

/* 반응형 처리 (필요시 조절) */
@media (max-width: 1024px) {
    .sub02_01 .menu_list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sub02_01 .menu_list {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* sub02_01 */




/* sub03_01 */
/* 인트로 영역 */
.sub03_01 .compete_intro {
    text-align: center;
    padding: 80px 0 60px;
}
.sub03_01 .compete_intro h3 {
    margin-bottom: 20px;
}

/* sub03_01 - 프리미엄 트렌디 카드 레이아웃 */
.sub03_01 .compete_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding-bottom: 120px;
}

/* 카드 기본 스타일 (둥근 모서리, 입체감) */
.sub03_01 .compete_item {
    position: relative;
    background: #ffffff;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: default;
    width: calc((100% - 80px) / 3);
    border:1px solid #ccc;
}

.sub03_01 .compete_item:hover {
    transform: translateY(-15px);
    background-color: #5C2C16;
    box-shadow: 15px 30px 50px rgba(92, 44, 22, 0.2);
}

/* 배경의 거대한 숫자 워터마크 */
.sub03_01 .compete_item .bg_num {
    position: absolute;
    bottom: -15px;
    right: 10px;
    font-size: 140px;
    font-weight: 900;
    line-height: 1;
    color: #f5f0ec; /* 아주 연한 베이지색 */
    z-index: -1;
    transition: all 0.4s ease;
}

/* 호버 시 배경 숫자 투명도 변경 */
.sub03_01 .compete_item:hover .bg_num {
    color: rgba(255, 255, 255, 0.05);
}

/* 상단 영역 */
.sub03_01 .compete_item .top_area {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.sub03_01 .compete_item .icon_box {
    width: 60px;
    height: 60px;
    background: #fcf8f5;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    transition: all 0.4s ease;
}

.sub03_01 .compete_item .icon_box img {
    width: 32px;
    height: 32px;
    transition: all 0.4s ease;
}

/* 영문 타이틀 */
.sub03_01 .compete_item h4 {
    color: #D4B8A6;
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    transition: all 0.4s ease;
}

/* 한글 타이틀 */
.sub03_01 .compete_item h5 {
    color: #222222;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: all 0.4s ease;
}

/* 설명 텍스트 */
.sub03_01 .compete_item p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    word-break: keep-all;
    transition: all 0.4s ease;
}

/* --- 호버 시 텍스트 및 아이콘 컬러 화이트로 반전 --- */
.sub03_01 .compete_item:hover h4 { color: #D4B8A6; }
.sub03_01 .compete_item:hover h5,
.sub03_01 .compete_item:hover p {
    color: #ffffff;
}
.sub03_01 .compete_item:hover .icon_box {
    background: rgba(255, 255, 255, 0.1);
}
.sub03_01 .compete_item:hover .icon_box img {
    filter: brightness(0) invert(1);
}

/* 반응형 */
@media screen and (max-width: 1200px) {
    .sub03_01 .compete_list { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 768px) {
    .sub03_01 .compete_list { grid-template-columns: 1fr; }
    .sub03_01 .compete_item { padding: 40px 30px; }
}
/* sub03_01 */




/* sub04_01 */
.sub04_01 .diff_intro {
    text-align: center;
    padding: 80px 0 60px;
}
.sub04_01 .diff_intro h3 {
    margin-bottom: 20px;
    font-size: 32px;
    color: #5C2C16;
}
.sub04_01 .diff_intro p {
    color: #555555;
    line-height: 1.6;
}

/* 2단 가로형 그리드 */
.sub04_01 .diff_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding-bottom: 120px;
}

/* 비대칭 모서리 & 좌측 포인트 라인 카드 */
.sub04_01 .diff_item {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    padding: 40px;
    border: 1px solid #EAE3DE;
    border-left: 6px solid #D4B8A6;
    border-radius: 0 30px 0 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.sub04_01 .diff_item:hover {
    border-left-color: #5C2C16;
    box-shadow: 10px 15px 30px rgba(92, 44, 22, 0.08);
    transform: translateY(-5px);
}

/* 좌측 아이콘 영역 (원형) */
.sub04_01 .icon_area {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #FCF8F5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d; 
}

.sub04_01 .diff_item:hover .icon_area {
    background: #5C2C16;
    transform: rotateY(180deg);
}

.sub04_01 .icon_area img {
    width: 40px;
    height: 40px;
    transition: all 0.6s ease;
}

.sub04_01 .diff_item:hover .icon_area img {
    filter: brightness(0) invert(1);
}

/* 텍스트 영역 */
.sub04_01 .text_area {
    flex-grow: 1;
}

.sub04_01 .text_area .tit_wrap span {
    display: block;
    color: #D4B8A6;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

.sub04_01 .text_area .tit_wrap h5 {
    color: #222222;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.sub04_01 .text_area p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    word-break: keep-all;
}

/* 호버 시 텍스트 컬러 포인트 */
.sub04_01 .diff_item:hover .tit_wrap span {
    color: #5C2C16;
}

/* 반응형 처리 */
@media screen and (max-width: 1024px) {
    .sub04_01 .diff_list { grid-template-columns: 1fr; }
}
@media screen and (max-width: 768px) {
    .sub04_01 .diff_item { flex-direction: column; padding: 30px; border-radius: 0 20px 0 20px; }
    .sub04_01 .icon_area { margin-right: 0; margin-bottom: 20px; }
}
/* sub04_01 */




/* sub05_01 */
/* 매장안내 */
.sub05_01 .store_page {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: #f8f5f1;
    margin-bottom:-30px;
}

.sub05_01 .store_page::before {
    content: "OUR STORE";
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(92, 44, 22, 0.035);
    font-family: 'Montserrat', sans-serif;
    font-size: 190px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
    white-space: nowrap;
}

.sub05_01 .store_page .inner {
    position: relative;
    z-index: 2;
}

/* 타이틀 */
.sub05_01 .store_title {
    margin-bottom: 70px;
    text-align: center;
}

.sub05_01 .store_title > span {
    display: inline-block;
    margin-bottom: 18px;
    color: #b68d00;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.25em;
}

.sub05_01 .store_title h3 {
    margin: 0 0 24px;
    color: #2d211b;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.05em;
}

.sub05_01 .store_title p {
    margin: 0;
    color: #756b65;
    font-size: 17px;
    line-height: 1.8;
    word-break: keep-all;
}

/* 매장 현황 */
.sub05_01 .store_summary {
    display: flex;
    width: 100%;
    margin-bottom: 130px;
    overflow: hidden;
    border: 1px solid rgba(92, 44, 22, 0.12);
    border-radius: 24px;
    background-color: #fff;
    box-shadow: 0 20px 50px rgba(63, 39, 25, 0.07);
}

.sub05_01 .store_summary > div {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 33.333%;
    min-height: 145px;
    padding: 38px 45px;
    box-sizing: border-box;
    border-right: 1px solid #eee8e3;
}

.sub05_01 .store_summary > div:last-child {
    border-right: none;
}

.sub05_01 .store_summary > div:nth-child(2) {
    background-color: #ffcc00;
}

.sub05_01 .store_summary span {
    color: #786c65;
    font-size: 15px;
    font-weight: 700;
}

.sub05_01 .store_summary > div:nth-child(2) span {
    color: rgba(61, 36, 24, 0.7);
}

.sub05_01 .store_summary strong {
    color: #5c2c16;
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.sub05_01 .store_summary small {
    margin-left: 5px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    font-weight: 700;
}


/* 공통 섹션 */
.sub05_01 .store_section {
    margin-bottom: 140px;
}

.sub05_01 .store_section_title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 45px;
    padding-bottom: 25px;
    border-bottom: 2px solid #33231c;
}

.sub05_01 .store_section_title > div > span {
    display: block;
    margin-bottom: 10px;
    color: #b68d00;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.sub05_01 .store_section_title h4 {
    margin: 0;
    color: #2d211b;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.sub05_01 .store_section_title > p {
    margin: 0;
    color: #786d66;
    font-size: 15px;
    line-height: 1.7;
    text-align: right;
}

/* 리뉴얼 매장 */
.sub05_01 .renewal_store_list {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sub05_01 .renewal_store_list > li {
    position: relative;
    width: calc(50% - 15px);
    min-height: 370px;
    padding: 48px 48px 42px;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(92, 44, 22, 0.15);
    border-radius: 30px;
    background-color: #ffcc00;
    box-shadow: 0 25px 60px rgba(92, 61, 0, 0.13);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.sub05_01 .renewal_store_list > li:nth-child(2) {
    background-color: #5c2c16;
}

.sub05_01 .renewal_store_list > li:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 75px rgba(63, 39, 25, 0.18);
}

.sub05_01 .renewal_store_list > li::before {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -180px;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(61, 36, 24, 0.12);
    border-radius: 50%;
}

.sub05_01 .renewal_store_list > li:nth-child(2)::before {
    border-color: rgba(255, 255, 255, 0.12);
}

.sub05_01 .renewal_store_list > li::after {
    content: "";
    position: absolute;
    right: 90px;
    bottom: -170px;
    width: 270px;
    height: 270px;
    border: 1px solid rgba(61, 36, 24, 0.08);
    border-radius: 50%;
}

.sub05_01 .renewal_store_list > li:nth-child(2)::after {
    border-color: rgba(255, 255, 255, 0.08);
}

.sub05_01 .renewal_number {
    position: absolute;
    top: 33px;
    right: 40px;
    color: rgba(61, 36, 24, 0.14);
    font-family: 'Montserrat', sans-serif;
    font-size: 70px;
    font-weight: 900;
    line-height: 1;
}

.sub05_01 .renewal_store_list > li:nth-child(2) .renewal_number {
    color: rgba(255, 255, 255, 0.16);
}

/* 지도 버튼 */
.sub05_01 .renewal_store_list .store_util {
    position: absolute;
    right: 48px;
    bottom: 42px;
    left: auto;
    z-index: 3;
}

.sub05_01 .renewal_store_list .map_link {
    margin: 0;
}



/* 배지 */
.sub05_01 .store_badge {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 8px;
    margin-bottom: 75px;
}

.sub05_01 .store_badge span,
.sub05_01 .store_badge strong {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    padding: 0 14px;
    box-sizing: border-box;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.sub05_01 .store_badge span {
    background-color: #3d2418;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.sub05_01 .store_badge strong {
    background-color: #fff;
    color: #5c2c16;
}

.sub05_01 .renewal_store_list > li:nth-child(2) .store_badge span {
    background-color: #ffcc00;
    color: #3d2418;
}

/* 리뉴얼 내용 */
.sub05_01 .renewal_content {
    position: relative;
    z-index: 2;
}

.sub05_01 .store_region {
    display: block;
    margin-bottom: 12px;
    color: rgba(61, 36, 24, 0.65);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.sub05_01 .renewal_store_list > li:nth-child(2) .store_region {
    color: rgba(255, 255, 255, 0.58);
}

.sub05_01 .renewal_content h5 {
    margin: 0 0 18px;
    color: #3d2418;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.sub05_01 .renewal_store_list > li:nth-child(2) .renewal_content h5 {
    color: #fff;
}

.sub05_01 .renewal_content address {
    min-height: 56px;
    color: rgba(61, 36, 24, 0.75);
    font-size: 15px;
    font-style: normal;
    line-height: 1.8;
    word-break: keep-all;
}

.sub05_01 .renewal_store_list > li:nth-child(2) .renewal_content address {
    color: rgba(255, 255, 255, 0.7);
}

/* 지도 링크 */
.sub05_01 .map_link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 42px;
    padding: 0 20px;
    box-sizing: border-box;
    border: 1px solid rgba(61, 36, 24, 0.25);
    border-radius: 50px;
    background-color: transparent;
    color: #3d2418;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sub05_01 .map_link:hover {
    background-color: #3d2418;
    color: #fff;
}

.sub05_01 .renewal_store_list > li:nth-child(2) .map_link {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.sub05_01 .renewal_store_list > li:nth-child(2) .map_link:hover {
    border-color: #ffcc00;
    background-color: #ffcc00;
    color: #3d2418;
}

.sub05_01 .original_store_list .map_link {
    align-self: flex-end;
    height: 37px;
    margin-top: 24px;
    padding: 0 16px;
    border-color: #e7dfd9;
    color: #75675f;
    font-size: 12px;
}

.sub05_01 .original_store_list .map_link:hover {
    border-color: #5c2c16;
    background-color: #5c2c16;
    color: #fff;
}



/* 기존 매장 */
.sub05_01 .original_store_list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sub05_01 .original_store_list > li {
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc((100% - 50px) / 3);
    min-height: 275px;
    padding: 34px 34px 30px;
    box-sizing: border-box;
    border: 1px solid rgba(92, 44, 22, 0.11);
    border-radius: 22px;
    background-color: #fff;
    box-shadow: 0 15px 40px rgba(63, 39, 25, 0.055);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.sub05_01 .original_store_list > li:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 204, 0, 0.8);
    box-shadow: 0 25px 55px rgba(63, 39, 25, 0.12);
}

/* 카드 상단 */
.sub05_01 .store_card_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.sub05_01 .card_number {
    color: #c0a99a;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.sub05_01 .card_region {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 29px;
    padding: 0 13px;
    border-radius: 30px;
    background-color: #f3eee9;
    color: #745f53;
    font-size: 11px;
    font-weight: 700;
}

/* 카드 내용 */
.sub05_01 .store_card_content {
    flex: 1;
}

.sub05_01 .store_card_content h5 {
    margin: 0 0 14px;
    color: #3d281f;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.sub05_01 .store_card_content address {
    color: #81756e;
    font-size: 14px;
    font-style: normal;
    line-height: 1.75;
    word-break: keep-all;
}

.sub05_01 .original_store_list .copy_address {
    align-self: flex-start;
    height: 37px;
    margin-top: 24px;
    padding: 0 16px;
    border-color: #e7dfd9;
    color: #75675f;
    font-size: 12px;
}

.sub05_01 .original_store_list .copy_address:hover {
    border-color: #5c2c16;
}

/* 하단 안내 */
.sub05_01 .store_notice {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 42px;
    box-sizing: border-box;
    border-radius: 20px;
    background-color: #2f211b;
}

.sub05_01 .store_notice > span {
    color: #ffcc00;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.sub05_01 .store_notice p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.75;
    text-align: right;
}
/* sub05_01 */




/* sub06_01 */
/* 타이틀 */
.sub06_01 .inquiry_info {
    text-align: center;
    padding: 80px 0 60px;
}
.sub06_01 .inquiry_info h3 { margin-bottom: 20px; }
.sub06_01 .inquiry_info p { margin-bottom: 0; }
.sub06_01 .inquiry_info p strong { 
    display: inline-block; 
    margin-top: 20px; 
    font-size: 24px; 
    color: #5C2C16; 
}




/* 창업 타입 */
.sub06_01 .store_type {
    position: relative;
    padding: 120px 0px;
    overflow: hidden;
    background-color: #f7f3ee;
}

.sub06_01 .store_type::before {
    content: "STORE TYPE";
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(92, 44, 22, 0.035);
    font-family: 'Montserrat', sans-serif;
    font-size: 170px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
    white-space: nowrap;
}

.sub06_01 .store_type .inner {
    position: relative;
    z-index: 2;
}

/* 제목 */
.sub06_01 .store_type_title {
    margin-bottom: 70px;
    text-align: center;
}

.sub06_01 .store_type_title > span {
    display: inline-block;
    margin-bottom: 17px;
    color: #5c2c16;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.22em;
}

.sub06_01 .store_type_title h3 {
    margin: 0 0 22px;
    color: #2d211b;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.045em;
}

.sub06_01 .store_type_title p {
    margin: 0;
    color: #746a64;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    word-break: keep-all;
}

/* 카드 목록 */
.sub06_01 .store_type_list {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

.sub06_01 .store_type_item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(50% - 15px);
    overflow: hidden;
    border: 1px solid rgba(92, 44, 22, 0.12);
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 0 25px 60px rgba(61, 39, 25, 0.08);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.sub06_01 .store_type_item:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 80px rgba(61, 39, 25, 0.15);
}

/* 카드 상단 */
.sub06_01 .type_head {
    position: relative;
    min-height: 235px;
    padding: 48px 50px;
    box-sizing: border-box;
    overflow: hidden;
}

.sub06_01 .store_type_item.noodle .type_head {
    background: linear-gradient(135deg, #6d351c 0%, #4b2211 100%);
}

.sub06_01 .store_type_item.dining .type_head {
    background: linear-gradient(135deg, #ffdc4d 0%, #ffcc00 55%, #edb900 100%);
}

.sub06_01 .type_head::before {
    content: "";
    position: absolute;
    right: -75px;
    bottom: -135px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
}

.sub06_01 .store_type_item.noodle .type_head::before {
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.sub06_01 .store_type_item.dining .type_head::before {
    border: 1px solid rgba(61, 36, 24, 0.14);
}

.sub06_01 .type_head::after {
    content: "";
    position: absolute;
    right: 80px;
    bottom: -115px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
}

.sub06_01 .store_type_item.noodle .type_head::after {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sub06_01 .store_type_item.dining .type_head::after {
    border: 1px solid rgba(61, 36, 24, 0.08);
}

/* 번호 */
.sub06_01 .type_number {
    position: absolute;
    top: 34px;
    right: 42px;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    font-size: 54px;
    font-weight: 800;
    line-height: 1;
}

.sub06_01 .store_type_item.noodle .type_number {
    color: rgba(255, 255, 255, 0.25);
}

.sub06_01 .store_type_item.dining .type_number {
    color: rgba(61, 36, 24, 0.18);
}

/* 타입 라벨 */
.sub06_01 .type_label {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.sub06_01 .store_type_item.noodle .type_label {
    color: rgba(255, 255, 255, 0.72);
}

.sub06_01 .store_type_item.dining .type_label {
    color: rgba(61, 36, 24, 0.7);
}

/* 타입 제목 */
.sub06_01 .type_head h4 {
    position: relative;
    z-index: 2;
    margin: 0 0 13px;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.04em;
}

.sub06_01 .store_type_item.noodle .type_head h4 {
    color: #fff;
}

.sub06_01 .store_type_item.dining .type_head h4 {
    color: #3d2418;
}

/* 타입 설명 */
.sub06_01 .type_head p {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    word-break: keep-all;
}

.sub06_01 .store_type_item.noodle .type_head p {
    color: rgba(255, 255, 255, 0.72);
}

.sub06_01 .store_type_item.dining .type_head p {
    color: rgba(61, 36, 24, 0.72);
}

/* 매장 이미지 */
.sub06_01 .type_visual {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.sub06_01 .type_visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.sub06_01 .store_type_item:hover .type_visual img {
    transform: scale(1.07);
}

.sub06_01 .visual_overlay {
    position: absolute;
    inset: 0;
}

.sub06_01 .store_type_item.noodle .visual_overlay {
    background: linear-gradient(
        180deg,
        rgba(55, 25, 12, 0.03) 0%,
        rgba(55, 25, 12, 0.75) 100%
    );
}

.sub06_01 .store_type_item.dining .visual_overlay {
    background: linear-gradient(
        180deg,
        rgba(61, 36, 24, 0.02) 0%,
        rgba(61, 36, 24, 0.72) 100%
    );
}

/* 이미지 문구 */
.sub06_01 .visual_text {
    position: absolute;
    right: 38px;
    bottom: 30px;
    left: 38px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #fff;
}

.sub06_01 .visual_text strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.sub06_01 .visual_text span {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.16em;
    opacity: 0.75;
}

/* 카드 내용 */
.sub06_01 .type_content {
    flex: 1;
    padding: 42px 48px 30px;
    box-sizing: border-box;
}

.sub06_01 .type_summary {
    min-height: 60px;
    margin: 0 0 32px;
    color: #655b55;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    word-break: keep-all;
}

/* 특징 목록 */
.sub06_01 .type_feature {
    margin: 0;
    padding: 0;
    border-top: 1px solid #eee8e3;
    list-style: none;
}

.sub06_01 .type_feature li {
    display: flex;
    gap: 20px;
    padding: 23px 0;
    border-bottom: 1px solid #eee8e3;
}

.sub06_01 .feature_number {
    flex-shrink: 0;
    padding-top: 3px;
    color: #b39b8d;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.sub06_01 .type_feature li > div {
    flex: 1;
}

.sub06_01 .type_feature strong {
    display: block;
    margin-bottom: 7px;
    color: #34251e;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.4;
}

.sub06_01 .type_feature p {
    margin: 0;
    color: #81766f;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    word-break: keep-all;
}

/* 키워드 */
.sub06_01 .type_keyword {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 48px 44px;
}

.sub06_01 .type_keyword span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    padding: 0 16px;
    box-sizing: border-box;
    border-radius: 50px;
    background-color: #f4f0ec;
    color: #675850;
    font-size: 12px;
    font-weight: 700;
}

.sub06_01 .store_type_item.noodle .type_keyword span:first-child {
    background-color: #5c2c16;
    color: #fff;
}

.sub06_01 .store_type_item.dining .type_keyword span:first-child {
    background-color: #ffcc00;
    color: #3d2418;
}

/* 하단 안내 */
.sub06_01 .store_type_bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 45px;
    padding: 27px 35px;
    box-sizing: border-box;
    border: 1px solid rgba(92, 44, 22, 0.11);
    border-radius: 18px;
    background-color: rgba(255, 255, 255, 0.75);
    color: #786b63;
    font-size: 16px;
    line-height: 1.7;
}

.sub06_01 .store_type_bottom strong {
    position: relative;
    padding-left: 22px;
    color: #5c2c16;
    font-size: 17px;
    font-weight: 800;
}

.sub06_01 .store_type_bottom strong::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: #ffcc00;
}

/* 모바일 */
@media (max-width: 768px) {
    .sub06_01 .store_type {
        padding: 90px 0;
    }

    .sub06_01 .store_type::before {
        top: 28px;
        font-size: 70px;
    }

    .sub06_01 .store_type_title {
        margin-bottom: 45px;
        padding: 0 20px;
    }

    .sub06_01 .store_type_title > span {
        margin-bottom: 14px;
        font-size: 11px;
    }

    .sub06_01 .store_type_title h3 {
        font-size: 31px;
    }

    .sub06_01 .store_type_title p {
        font-size: 15px;
    }

    .sub06_01 .store_type_title p br {
        display: none;
    }

    .sub06_01 .store_type_list {
        display: block;
        padding: 0 15px;
    }

    .sub06_01 .store_type_item {
        width: 100%;
        margin-bottom: 30px;
        border-radius: 22px;
    }

    .sub06_01 .store_type_item:hover {
        transform: none;
    }

    .sub06_01 .type_head {
        min-height: 205px;
        padding: 38px 30px;
    }

    .sub06_01 .type_number {
        top: 27px;
        right: 27px;
        font-size: 42px;
    }

    .sub06_01 .type_label {
        margin-bottom: 17px;
        font-size: 10px;
    }

    .sub06_01 .type_head h4 {
        font-size: 28px;
    }

    .sub06_01 .type_head p {
        font-size: 15px;
    }

    .sub06_01 .type_visual {
        height: 190px;
    }

    .sub06_01 .visual_text {
        right: 25px;
        bottom: 23px;
        left: 25px;
    }

    .sub06_01 .visual_text strong {
        font-size: 18px;
    }

    .sub06_01 .visual_text span {
        display: none;
    }

    .sub06_01 .type_content {
        padding: 32px 28px 25px;
    }

    .sub06_01 .type_summary {
        min-height: auto;
        margin-bottom: 27px;
        font-size: 14px;
    }

    .sub06_01 .type_feature li {
        gap: 14px;
        padding: 19px 0;
    }

    .sub06_01 .type_feature strong {
        font-size: 16px;
    }

    .sub06_01 .type_feature p {
        font-size: 13px;
    }

    .sub06_01 .type_keyword {
        padding: 0 28px 32px;
    }

    .sub06_01 .type_keyword span {
        height: 32px;
        padding: 0 13px;
        font-size: 11px;
    }

    .sub06_01 .store_type_bottom {
        display: block;
        margin: 15px 15px 0;
        padding: 22px;
        font-size: 14px;
    }

    .sub06_01 .store_type_bottom strong {
        display: block;
        margin-top: 5px;
        padding-left: 0;
        font-size: 15px;
    }

    .sub06_01 .store_type_bottom strong::before {
        display: none;
    }
}







/* 창업절차 */
.sub06_01 .guide_process {
    text-align: center;
    padding: 80px 0 100px;
}
.sub06_01 .guide_process h3 { margin-bottom: 15px; }
.sub06_01 .guide_process > p { margin-bottom: 60px; }

.sub06_01 .process_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 110px 0;
    position: relative;
    margin-top: 90px;
    padding: 55px 0 20px;
    isolation: isolate;
}

.sub06_01 .process_list li {
    position: relative;
    width: calc(25% - 24px);
    min-height: 235px;
    margin: 0 12px;
    padding: 110px 25px 32px;
    box-sizing: border-box;
    text-align: center;
    background-color: #fff;
    border: 1px solid #eee5df;
    border-top: 4px solid #0b6b43;
    border-radius: 24px;
    transition:
        border-color 0.4s ease,
        box-shadow 0.4s ease,
        background-color 0.4s ease;
}

/* STEP 문구 */
.sub06_01 .process_list li::before {
    content: "STEP";
    position: absolute;
    top: 87px;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    color: #0b6b43;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
}


/* 번호 */
.sub06_01 .step_circle {
    position: absolute;
    top: -54px;
    left: 50%;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 128px;
    height: 128px;
    margin: 0;
    box-sizing: border-box;
    transform: translateX(-50%);
    border: 7px solid #fff;
    border-radius: 50%;
    background: linear-gradient(145deg, #744021 0%, #4c2111 100%);
    box-shadow:
        0 16px 30px rgba(76, 33, 17, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 37px;
    font-weight: 800;
    letter-spacing: -0.03em;
    transition:
        transform 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
}

/* 초록 포인트 */
.sub06_01 .step_circle::after {
    content: "";
    position: absolute;
    right: 5px;
    bottom: 8px;
    width: 17px;
    height: 17px;
    box-sizing: border-box;
    border: 4px solid #fff;
    border-radius: 50%;
    background-color: #0b6b43;
}

/* 제목 */
.sub06_01 .process_list h4 {
    position: relative;
    z-index: 2;
    margin: 0 0 14px;
    color: #5c2c16;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.4;
    word-break: keep-all;
    transition: color 0.35s ease;
}

/* 설명 */
.sub06_01 .process_list p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #6c625d;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    word-break: keep-all;
}

/* 호버 */
.sub06_01 .process_list li:hover {
    border-color: rgba(11, 107, 67, 0.35);
    border-top-color: #0b6b43;
    background-color: #fffdfb;
}

.sub06_01 .process_list li:hover .step_circle {
    transform: translateX(-50%) translateY(-10px) rotate(-3deg);
    background: linear-gradient(145deg, #158457 0%, #075638 100%);
    box-shadow:
        0 22px 35px rgba(11, 107, 67, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.sub06_01 .process_list li:hover h4 {
    color: #0b6b43;
}

/* 모바일 */
@media (max-width: 768px) {
    .sub06_01 .process_list {
        display: block;
        margin-top: 50px;
        padding: 0;
    }

    .sub06_01 .process_list li {
        width: 100%;
        min-height: 135px;
        margin: 0 0 25px;
        padding: 54px 22px 25px 110px;
        text-align: left;
        border-top-width: 3px;
        border-radius: 18px;
    }

    .sub06_01 .process_list li::before {
        top: 20px;
        left: 110px;
        transform: none;
        font-size: 10px;
    }

    .sub06_01 .process_list li::after {
        display: block;
        top: calc(50% + 42px);
        bottom: -29px;
        left: 55px;
        width: 2px;
        height: auto;
        background: linear-gradient(
            180deg,
            #cda991 0%,
            #0b6b43 100%
        );
    }

    .sub06_01 .process_list li:nth-child(4)::after {
        display: block;
    }

    .sub06_01 .process_list li:last-child::after {
        display: none;
    }

    .sub06_01 .step_circle {
        top: 50%;
        left: 18px;
        width: 74px;
        height: 74px;
        transform: translateY(-50%);
        border-width: 5px;
        font-size: 23px;
    }

    .sub06_01 .step_circle::after {
        right: 1px;
        bottom: 3px;
        width: 13px;
        height: 13px;
        border-width: 3px;
    }

    .sub06_01 .process_list h4 {
        margin-bottom: 7px;
        font-size: 19px;
    }

    .sub06_01 .process_list p {
        font-size: 14px;
        line-height: 1.65;
    }

    .sub06_01 .process_list li:hover .step_circle {
        transform: translateY(-50%) scale(1.07);
    }
}






/* 개설비용 */
.sub06_01 .guide_cost {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    text-align: center;
    background-color: #f7f3ee;
}

.sub06_01 .guide_cost::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -180px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(92, 44, 22, 0.08);
    border-radius: 50%;
}

.sub06_01 .guide_cost::after {
    content: "";
    position: absolute;
    bottom: -260px;
    left: -200px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(11, 107, 67, 0.08);
    border-radius: 50%;
}

.sub06_01 .guide_cost .inner {
    position: relative;
    z-index: 2;
}

.sub06_01 .guide_cost h3 {
    margin-bottom: 16px;
    color: #2d211b;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.04em;
}

.sub06_01 .guide_cost .inner > p {
    margin-bottom: 32px;
    color: #756a64;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
}

/* 프로모션 */
.sub06_01 .promo_text {
    margin-bottom: 45px;
}
/* 영문 라벨 */
.sub06_01 .promo_text::before {
    content: "LIMITED BENEFIT";
    display: block;
    margin-bottom: 10px;
    color: #9a7c6c;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
}
.sub06_01 .promo_text strong {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 56px;
    padding: 0 30px;
    box-sizing: border-box;
    border: 1px solid rgba(11, 107, 67, 0.25);
    border-radius: 50px;
    background-color: #fff;
    box-shadow: 0 12px 35px rgba(52, 34, 24, 0.08);
    color: #0b6b43;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.03em;
    word-break: keep-all;
}
.sub06_01 .vat{
    display: block;
    text-align: right;
    font-size:18px;
    color:#9a7c6c;
    font-weight: 600;
    margin-bottom:10px;
    padding-right:10px;
}

/* 테이블 */
.sub06_01 .table_wrap {
    width: 100%;
    margin: 0;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(92, 44, 22, 0.12);
    border-radius: 24px;
    background-color: #fff;
}

.sub06_01 .cost_table {
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
    table-layout: fixed;
    background-color: #fff;
    text-align: center;
    word-break: keep-all;
}

.sub06_01 .cost_table th,
.sub06_01 .cost_table td {
    height: 66px;
    padding: 15px 20px;
    box-sizing: border-box;
    border-right: 1px solid #eee9e5;
    border-bottom: 1px solid #eee9e5;
    color: #4d443f;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    vertical-align: middle;
}

.sub06_01 .cost_table th:last-child,
.sub06_01 .cost_table td:last-child {
    border-right: none;
}

.sub06_01 .cost_table tbody tr:last-child th,
.sub06_01 .cost_table tbody tr:last-child td {
    border-bottom: none;
}

/* 테이블 헤더 */
.sub06_01 .cost_table thead th {
    text-align: center;
    vertical-align: middle;
}

.sub06_01 .cost_table thead tr:first-child th {
    height: 72px;
    border-color: rgba(255, 255, 255, 0.12);
    background-color: #4f2715;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
}

.sub06_01 .cost_table thead th[rowspan] {
    background-color: #3d1d0f;
}

.sub06_01 .cost_table thead th.sub_th {
    height: 58px;
    background-color: #664029;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.sub06_01 .cost_table thead th.sub_th:first-of-type {
    background-color: #765039;
}

/* 항목 */
.sub06_01 .cost_table tbody th {
    position: relative;
    padding-left: 32px;
    background-color: #fbf9f7;
    color: #4f2715;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}


/* 별도 비용 */
.sub06_01 .extra_cost {
    display: flex;
    align-items: flex-start;;
    width: 100%;
    margin: 22px 0 0;
    padding: 22px 28px;
    box-sizing: border-box;
    border: 1px solid rgba(92, 44, 22, 0.1);
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.7);
    color: #625750;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
    text-align: left;
    word-break: keep-all;
}

.sub06_01 .extra_cost strong {
    flex-shrink: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 72px;
    height: 30px;
    margin-right: 15px;
    border-radius: 30px;
    background-color: #5c2c16;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

/* 모바일 */
@media (max-width: 768px) {
    .sub06_01 .guide_cost {
        padding: 90px 0;
        margin-bottom: 80px;
    }

    .sub06_01 .guide_cost h3 {
        font-size: 32px;
    }

    .sub06_01 .guide_cost .inner > p {
        margin-bottom: 27px;
        padding: 0 20px;
        font-size: 15px;
    }

    .sub06_01 .promo_text {
        margin-bottom: 35px;
        padding: 0 15px;
    }

    .sub06_01 .promo_text strong {
        min-height: 48px;
        padding: 0 22px 0 46px;
        font-size: 15px;
    }

    .sub06_01 .promo_text strong::before {
        left: 18px;
        width: 16px;
        height: 16px;
    }

    .sub06_01 .table_wrap {
        margin: 0 15px;
        overflow-x: auto;
        border-radius: 16px;
    }

    .sub06_01 .cost_table {
        min-width: 760px;
    }

    .sub06_01 .cost_table th,
    .sub06_01 .cost_table td {
        height: 58px;
        padding: 12px;
        font-size: 14px;
    }

    .sub06_01 .cost_table thead tr:first-child th {
        height: 64px;
        font-size: 15px;
    }

    .sub06_01 .cost_table thead th.sub_th {
        height: 52px;
        font-size: 14px;
    }

    .sub06_01 .cost_table tbody td.price {
        font-size: 15px;
    }

    .sub06_01 .extra_cost {
        margin: 16px 15px 0;
        padding: 18px;
        font-size: 13px;
    }

    .sub06_01 .extra_cost strong {
        min-width: 60px;
        height: 27px;
        margin-right: 10px;
        font-size: 11px;
    }
}





.sub06_01 .inquiry{
    background-color: #ffcc00;
    padding:120px 0;
    margin-bottom:-30px;
}

.sub06_01 .inquiry ul{
    display: flex;
    flex-wrap: nowrap;
    align-items: top;
    justify-content: space-between;
    gap:200px;
}
.sub06_01 .inquiry ul li{position: relative;}
.sub06_01 .inquiry ul li:nth-of-type(1){width:35%;}
.sub06_01 .inquiry ul li:nth-of-type(2){width:65%;}

.sub06_01 .inquiry ul li .tit{
    opacity: 0;
    transition: all 1s ease-in-out;
    transform: translateX(-100%);
}
.sub06_01 .inquiry.active ul li .tit{
    opacity: 1;
    transform: translateX(0);
}
.sub06_01 .inquiry ul li .tit > span{
    display: block;
    font-size:16px;
    color:#6e2f04;
    font-weight: 600;
    text-align: left;
}
.sub06_01 .inquiry ul li .tit h2{
    font-size:48px;
    font-weight: 800;
    color:#6e2f04;
    text-align: left;
    padding:20px 0 40px 0;
}
.sub06_01 .inquiry ul li .tit p{
    font-size:20px;
    font-weight: 600;
    color:#6e2f04;
}
.sub06_01 .inquiry ul li .img{
    margin-top:30px;
    position: relative;
    z-index: 1;
}
.sub06_01 .inquiry ul li .img img{border-radius: 20px 0 20px 0;}

.sub06_01 .inquiry .text_wrap{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    overflow:hidden;
    z-index: 0;
}

.sub06_01 .inquiry .text_wrap .text{
    display:flex;
    width:max-content;
    animation:textRoll 25s linear infinite;
}

.sub06_01 .inquiry .text_wrap .text img{
    display:block;
    width:auto;
    height:100px; /* 원하는 높이 */
    flex-shrink:0;
}

/* 무한 롤링 */
@keyframes textRoll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}


.sub06_01 .inquiry .AWbbs_input_table .textarea{display: none;}

.sub06_01 .inquiry .form{
    transition: all 1s ease-in-out;
    opacity: 0;
    transform: translateX(100%);
    overflow: hidden;
}

.sub06_01 .inquiry.active .form{
    opacity: 1;
    transform: translateX(0);
}
.sub06_01 .inquiry .form .consult_cont{
    margin:0;
    border:0;
    padding:20px;
    border:1px solid #fff;
    border-radius: 10px;
    background-color: #6e2f04;
}
.sub06_01 .inquiry .form .consult_cont table tr{border:0;}
.sub06_01 .inquiry .form .consult_cont table th{
    font-size:14px;
    color:#fff;
}
.sub06_01 .inquiry .form .consult_cont table td{color:#fff;}
.sub06_01 .inquiry .form .consult_cont table td input{width:50%;}
.sub06_01 .inquiry .form .AWbbs_input_table{
    border: 0 !important;
    padding: 0 !important;
}

.sub06_01 .inquiry .form .only_chk{color:#fff; font-weight: 300;}
.sub06_01 .inquiry .form .only_chk.font input[type=checkbox] + label{line-height:1.5!important;}
.sub06_01 .inquiry .form .AWbbs_input_table .top10{position: relative; margin: 0 !important;}
.sub06_01 .inquiry .form .AWbbs_input_table .top10 .personal{
    position: absolute;
    top:22px;
    right:0;
    display: block;
    font-size:16px;
    color:#fff;
    font-weight: 300;
    transition: all .3s ease-in-out;
}
.sub06_01 .inquiry .form .only_chk.font input[type=checkbox]:checked + label::before{background-color: #fff!important;}
.sub06_01 .inquiry .form .AWbbs_input_table .top10 .personal:hover{color:#a4293d;}
.sub06_01 .inquiry .form .only_chk.font input[type=radio]:checked + label::before{background-color: #fff;}


.sub06_01 .inquiry .form .AW-mem-btn button{
    width:100%;
    background-color: #fff;
    color:#a4293d;
    transition: all .3s ease-in-out;
    border-radius: 10px;
}
.sub06_01 .inquiry .form .AW-mem-btn button:hover{
    background-color: #5C2C16;
    color:#fff;
}



/* 개인정보처리방침 팝업 */
.personal_content{display: none;}
.personal_content{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
}
.personal_content .personal_content_list{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    height: 90%;
    max-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;
}

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





/* .sub06_01 .guide_profit {
    text-align: center;
    padding-bottom: 120px;
}
.sub06_01 .guide_profit h3 { margin-bottom: 15px; }
.sub06_01 .guide_profit .inner > p { margin-bottom: 50px; }

.sub06_01 .profit_calc {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}
.sub06_01 .calc_item {
    background-color: #fff;
    border: 1px solid #eeeeee;
    border-radius: 20px;
    padding: 40px 30px;
    width: 320px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.sub06_01 .calc_item h4 {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    font-weight: 500;
}
.sub06_01 .calc_item strong {
    font-size: 42px;
    color: #333;
    font-weight: 700;
}
.sub06_01 .calc_item strong span {
    font-size: 20px;
    margin-left: 5px;
    font-weight: 500;
}

.sub06_01 .calc_item.highlight {
    background-color: #5C2C16;
    border-color: #5C2C16;
    transform: scale(1.05);
}
.sub06_01 .calc_item.highlight h4 {
    color: #D4B8A6; 
}
.sub06_01 .calc_item.highlight strong,
.sub06_01 .calc_item.highlight strong span {
    color: #fff;
}


.sub06_01 .calc_icon {
    width: 40px;
    height: 40px;
    margin: 0 25px;
    position: relative;
}
.sub06_01 .calc_icon.minus::before {
    content: "-";
    font-size: 60px;
    line-height: 40px;
    color: #cccccc;
    font-weight: 300;
}
.sub06_01 .calc_icon.equal::before {
    content: "=";
    font-size: 50px;
    line-height: 40px;
    color: #cccccc;
    font-weight: 300;
}


.sub06_01 .profit_table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}
.sub06_01 .profit_table th, 
.sub06_01 .profit_table td {
    padding: 20px 15px;
    border-bottom: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
    font-size: 16px;
    color: #333;
}
.sub06_01 .profit_table th:last-child, 
.sub06_01 .profit_table td:last-child {
    border-right: none;
}
.sub06_01 .profit_table thead th {
    background-color: #FBF9F7;
    color: #5C2C16;
    font-weight: 600;
    font-size: 18px;
}
.sub06_01 .profit_table tbody th {
    background-color: #fafafa;
    font-weight: 600;
}


.sub06_01 .profit_table tr.sales_row th, 
.sub06_01 .profit_table tr.sales_row td {
    background-color: #fcf8f5;
    color: #5C2C16;
    font-weight: 600;
}
.sub06_01 .profit_table tbody td.price {
    text-align: right;
    padding-right: 40px;
    font-weight: 600;
}
.sub06_01 .profit_table tbody td.desc {
    text-align: left;
    padding-left: 30px;
    color: #555;
}


.sub06_01 .profit_table tfoot th {
    background-color: #5C2C16;
    color: #D4B8A6;
    font-size: 20px;
}
.sub06_01 .profit_table tfoot td {
    background-color: #5C2C16;
}
.sub06_01 .profit_table tfoot td.price.total {
    text-align: right;
    padding-right: 40px;
    font-size: 24px;
    font-weight: 700;
    color: #D4B8A6;
}
.sub06_01 .profit_table tfoot td.desc.total {
    text-align: left;
    padding-left: 30px;
    color: #fff;
    font-size: 18px;
}


.sub06_01 .profit_notice {
    margin-top: 15px;
    font-size: 14px;
    color: #777;
    text-align: right;
}


.sub06_01 .guide_map {
    text-align: center;
}
.sub06_01 .guide_map h3 { margin-bottom: 15px; }
.sub06_01 .guide_map .inner > p { margin-bottom: 50px; }
.sub06_01 .store .board .bbs_paging tr td b{background-color: #5C2C16;} */
