@charset "UTF-8";
/* 공통 컬러 :root 토큰은 css/header.css 상단으로 이동 (디자인 토큰 집약) */

* {
    padding: 0;
    margin: 0;
    box-sizing: unset;
}

p {
    word-break: break-all;
    overflow-wrap: break-word;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

section {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
}

html {
    scroll-behavior: smooth;
}

.flowhid {
    overflow: hidden;
}

.hide {
    display: none !important;
}

.hideopa {
    opacity: 0 !important;
}

.show {
    opacity: 1 !important;
}

.pc_none {
    display: none;
}

.m_none {
    display: block;
}



@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ddm3 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: rotate(-8deg);
    }
    65% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes ddm4 {
    0% {
        transform: scale(1);
    }
    25% {
        transform: rotate(-2deg);
    }
    50% {
        transform: scale(1.05);
    }
    75% {
        transform: rotate(2deg);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes blk3 {
    0% {
        opacity: 1;
    }
    24% {
        opacity: 1;
    }
    25% {
        opacity: 0;
    }
    99% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes rotate_image {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes scaleOpa {
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}
@keyframes scaleOpa2 {
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}
@keyframes ddm {
    0% {
        transform: scale(1);
    }
    50% {
        transform: matrix(1.05, 0.01, 0.01, 1.05, 0, -30);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes rotate_imageY {
    0% {
        transform: rotateY(0);
    }
    100% {
        transform: rotateY(360deg);
    }
}
@keyframes ddm2 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: translateY(20px);
    }
    75% {
        transform: scale(1.02);
        transform: translateY(10px);
    }
    100% {
        transform: scale(1);
        transform: translateY(0px);
    }
}
@keyframes scaleOpa3 {
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}
@keyframes smoke {
    0% {
        transform: translateY(30%) scale(0.8);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateY(-30%) scale(1.1);
        opacity: 0;
    }
}
.smoke {
    animation: smoke 4s infinite linear;
}

@keyframes light {
    0%,
    31%,
    34%,
    39%,
    42%,
    47% {
        opacity: 0;
    }
    30%,
    35%,
    38%,
    43%,
    46%,
    5% {
        opacity: 0.4;
    }
    100%,
    50%,
    51%,
    54%,
    55%,
    60%,
    67%,
    68% {
        opacity: 1;
    }
    70% {
        opacity: 0.2;
    }
}
@keyframes marqueeX {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes marqueeX_r {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}
@keyframes marqueeY {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-100%);
    }
}
@keyframes marqueeY_r {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(100%);
    }
}
@keyframes opa {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes shakeAndFall {
    0% {
        transform: translate(0, -50%) rotate(0);
        opacity: 0;
    }
}
.shakeTwice {
    animation: shakeTwice 2s ease-in-out infinite;
    transform-origin: center;
}

.shakeTwices {
    animation: shakeTwices 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes shakeTwice {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(5deg);
    }
    20% {
        transform: rotate(-5deg);
    }
    30% {
        transform: rotate(4deg);
    }
    40% {
        transform: rotate(-4deg);
    }
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
@keyframes shakeTwices {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(3deg);
    }
    20% {
        transform: rotate(-3deg);
    }
    30% {
        transform: rotate(2deg);
    }
    40% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
div.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.swiper-wrapper.flow {
    pointer-events: none;
    transition-timing-function: linear;
}

section {
    font-family: "NanumSquareNeo";
    font-weight: 300;
    font-size: calc(var(--px) * 26);
    letter-spacing: -0.04vw;
}

section img {
    width: 100%;
}

/* section:not(.map_section) img {
  pointer-events: none;
} */

.swiper-button-disabled {
    opacity: 0.3;
}

.noto {
    font-family: "Noto Serif", serif;
}

.notokr {
    font-family: "Noto Serif KR", serif;
}

.exbold {
    font-weight: 800;
}

.bold {
    font-weight: 700;
}

.sebold {
    font-weight: 600;
}

.medium {
    font-weight: 500;
}

.regular {
    font-weight: 400;
}

.flight {
    font-weight: 200;
}

.thin {
    font-weight: 100;
}

.animate-blk {
    animation: blk 1s infinite ease-in-out;
}

.scaleOpa {
    animation: scaleOpa infinite 2s;
}

.scaleOpa2 {
    animation: scaleOpa2 infinite 2s;
}

.light {
    animation: light infinite 5s;
}

.rotate_img {
    animation: rotate_image 10s infinite linear;
}

.white {
    color: white;
}

.txct {
    text-align: center;
}

.lh {
    line-height: 1.5;
}

/* reveal 대신 사용 start */
/* 왼쪽부터 나타나기 */
.clip_off02 {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    transition: all 0.8s;
}

/* 가운데에서 나타나기 */
.clip_off {
    clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
    transition: all 0.8s;
}

/* gsap에서 넣을 class */
.clip_on {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
}

/* reveal 대신 사용 end */
.absol_cover {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.max_width {
    width: unset !important;
    max-width: 101%;
}

.back_img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

/* image_sd */
.image_sd_wrap {
    overflow: hidden;
}

.image_sd {
    animation: marqueeX 20s infinite linear;
}

.image_sd .absol {
    left: 100%;
}

.image_sd_r {
    animation: marqueeX_r 20s infinite linear;
}

.image_sd_r .absol {
    right: 100%;
}

/* image_sd end */
/* y_slide start */
.slide_y_wrap {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    overflow: hidden;
}

.slide_y {
    animation: marqueeY 20s infinite linear;
}

.slide_y img.absol {
    top: 100%;
}

.slide_y_r {
    animation: marqueeY_r 20s infinite linear;
}

.slide_y_r img.absol {
    bottom: 100%;
}

/* y_slide end */
/* flow_sd 가로 (여러 이미지 마퀴) start */
.flow_sd {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}
.flow_sd_move {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    animation: marqueeX 20s infinite linear;
}
.flow_sd_move_r {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    animation: marqueeX_r 20s infinite linear;
}
.flow_sd_move_item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.flow_sd_move_item02 {
    left: 100%;
}
.flow_sd_move_item02_r {
    right: 100%;
}
.flow_sd_img {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* flow_sd 가로 end */
/* flow_sd 세로 (여러 이미지 마퀴) start */
.flow_sd_y {
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}
.flow_sd_y_move {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    animation: marqueeY 10s infinite linear;
}
.flow_sd_y_move_r {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    animation: marqueeY_r 10s infinite linear;
}
.flow_sd_y_move_item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}
.flow_sd_y_move_item02 {
    top: 100%;
}
.flow_sd_y_move_item02_r {
    bottom: 100%;
}
.flow_sd_y_img {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* flow_sd 세로 end */
/* swiper-arr */
.btn_arr {
    z-index: 2;
    cursor: pointer;
}

.arr_next {
    transform: rotateY(180deg);
}

/* swiper-arr */
iframe {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.swiper-button-lock {
    display: none !important;
}

.swiper {
    margin: 0;
    z-index: 0;
}

b {
    font-weight: 700;
}

.obj > img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* 마커디자인 */
.map_marker {
    position: relative;
    display: inline-block;
}

/* 말풍선 텍스트 박스 */
.map_marker_text {
    background: var(--color-green);
    border: 1px solid #fff;
    padding: 9px 19px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.proxima {
    font-family: "proxima-nova-hangeul";
}

.ria {
    font-family: "Ria";
}

.nanum {
    font-family: "NanumSquareNeo";
}

.paper {
    font-family: "Paperlogy";
}

.green {
    color: var(--color-orange);
}

.orange {
    color: var(--color-green);
}

.subTitle {
    font-size: calc(var(--px) * 28);
    font-weight: 600;
    font-family: "NanumSquareNeo";
}

.title {
    font-size: calc(var(--px) * 55);
    font-family: "NanumSquareNeo";
    b {
        font-weight: 900;
    }
}

/* 퍼블시작 */
/* main */
.main {
    justify-content: flex-start;
    background-image: url("../images/main_bg.jpg");
    padding-top: 8.75vw;

}
.main.back_img {
    position: relative;
    padding-bottom: 23vw;

}

.main_tt {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 900;
    font-size: calc(var(--px) * 55);
    margin-bottom: 12px;
}

.main_logo_img {
    transform-origin: center;
}

.main_tt span:nth-child(2) {
    color: var(--color-light-green);
}

.main_txt {
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 0.6vw;
    font-size: calc(var(--px) * 20);
    line-height: 1.355;
}
.main_burger {
    position: absolute;
    bottom: -3vw;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    z-index: 10;
}

.main_burger_img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 662/492;
}

.main_burger_layer {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 1;
    animation: rotate_image 6.5s infinite linear;
}

.main_burger_layer1 {
    background-image: url("../images/main_03_1.png");
    opacity: 1;
}

.main_badge {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 23.43%;
    top: 14.47vw;
}

.main_badge_img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 353/355;
}

.main_badge_l {
    display: flex;
    justify-content: center;
    align-items: center;
    left: 7.83%;
}

.main_badge_r {
    display: flex;
    justify-content: center;
    align-items: center;
    right:7.8%;
}

/* con01 */
.competitive {
    padding-top: 7vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 30px;
}

.item_content {
    background-color: #fbf6e7;
}

.competitive__image {
    width: 40%;

}

.competitive__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: fadeLeft 0.8s ease-out forwards;
}

.competitive__content {
    width: 60%;
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.competitive .bg-title {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 520px;
    opacity: 0.08;
    pointer-events: none;
}

.competitive .main-title {
    width: 750px;
    margin: 80px 0 0 80px;
    position: relative;
    z-index: 2;
    animation: fadeDown 0.8s ease-out forwards;
}

.competitive .text-box {
    background: #ff5a3c;
    padding: 80px;
    margin-top: 60px;
    animation: fadeLeft 0.8s ease-out forwards;
}
.competitive .text-box p {
    color: #fff;
    font-weight: 300;
    line-height: 1.5;
}
.competitive .text-box p b {
    font-weight: 800;
}

.competitive .text-box img {
    width: 480px;
    max-width: 100%;
    display: block;
}

/* con02 */
.con02 {
    display: block;
    background-color: #fff;
    padding-top: 100px;
    padding-bottom: 5vw;
    margin: 0 auto;
}
.con02 .item_content:first-child {
    margin-top: 0;
}
.con02 .item_content {
    display: flex;
    align-items: center;
    background-color: #fbf6e7;
    width: 100%;
    border-radius: 20px;
    padding: 70px 100px;
    width: calc(var(--px) * 1320);
    margin: 0 auto;
    padding: 70px 80px;
    margin-top: 50px;
    gap: 50px;
}

.con02 .item_txt .distribution_s_txt {
    font-size: 15px;
}

.con02 .item_content p {
    font-size: 21px;
    line-height: 1.5;
    margin-top: 30px;
}

.con02 .item_content p {}

.con02 .item_txt {
    width: 100%;

}

.con02 .item_structuret img {
    width: 87%;

}

.con02 .distribution_img {
    width: 42%;
}
.con02 .item_txt h3 {
    font-size: 23px;
    color: #fff;
    background-color: #114ca6;
    margin-top: 30px;
    padding: 13px 19px;
    border-radius: 15px;
    display: inline-block;
}

/* con03 */
.con03 {
    padding: 100px 0;

}

.con03 .con03_grid {
    width: 69.40%;
    background-image: url("../images/con03_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0;
    gap: 35px 0;
}
.con03 img {
    width: auto !important;
}

.con03 h3 {
    color: #114ca6;
    font-size: 30px;
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    line-height: 1.3;
    font-weight: 800;
    animation: fadeLeft 0.8s ease-out forwards;
}
.con03 p {
    text-align: center;
    color: #fff;
    line-height: 1.5;
    animation: fadeRight 0.8s ease-out forwards;
}
.con03 p b {
    font-size: 27px;
    font-weight: 800;
}
/* ===== con04 — 매출 카운터 + 매장 매출보드 ===== */
.con04 {
    position: relative;
    justify-content: flex-start;
    padding: 100px 0;
    background-image: url("../images/con04_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.con04 .con04_tt {
    font-weight: 300;
    color: #fc5736;
    font-family: 'SaenggeoJincheon', sans-serif;
    margin-bottom: 50px;
    animation: fadeDown .8s ease-out forwards;
}
.con04 .con04_tt em {
    color: #114ca6;
    font-style: normal;
}

.con04 .object {
    width: auto;
    animation: rotate_image 10s infinite linear;
}

.con04 ul {}
.con04 ul li {}

.con04 ul li {
    position: absolute;
    left: 50%;
    z-index: 1;
}
.con04 ul li:nth-child(1) {
    top: 400px;
    margin-left: -776px;
}
.con04 ul li:nth-child(2) {
    top: 540px;
    margin-left: -856px;
}
.con04 ul li:nth-child(3) {
    top: 690px;
    margin-left: -898px;
}
.con04 ul li:nth-child(4) {
    top: 840px;
    margin-left: -811px;
}
.con04 ul li:nth-child(5) {
    top: 400px;
    margin-left: 153px;
}
.con04 ul li:nth-child(6) {
    top: 540px;
    margin-left: 207px;
}
.con04 ul li:nth-child(7) {
    top: 690px;
    margin-left: 248px;
}
.con04 ul li:nth-child(8) {
    top: 840px;
    margin-left: 152px;
}


.con05 {
    background-image: url("../images/con05_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 100px;
}

/* 라운드 크림 패널 (사각형42: #fff7e8, radius50, w1802/1915) */
.con05_panel {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 94.0992%;
    box-sizing: border-box;
    border-radius: calc(var(--px) * 50);
}

.con05_row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 30px;
}

/* 좌 오렌지 카드 552×575 */
.con05_card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(var(--px) * 645);
    height: calc(var(--px) * 675);
    flex-shrink: 0;
    background-color: #fc5736;
    border-radius: calc(var(--px) * 30);
    overflow: hidden;
    /* 포크 우측·볼 좌/하 블리드 */
    opacity: 0;
    /* FOUC 방지 — GSAP 진입 시 노출 */
}

/* 마진율 pill + "22%"(흰, 이미지 baked) */
.con05_rate {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(var(--px) * 305);
    aspect-ratio: 242 / 163;
    left: calc(var(--px) * 40);
    top: calc(var(--px) * 80);
}

.con05_rate img {
    width: 100%;
}

/* 비빔누들 샐러드볼 (하단·좌 블리드) */
.con05_bowl {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 460 / 458;
    top: calc(var(--px) * 260);
}

.con05_bowl img {
    width: 100%;
}

.con05_fork {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 408 / 347;
    left: calc(var(--px) * -36);
    top: calc(var(--px) * -224);
}

.con05_fork img {
    width: 100%;
}

.con05_eyebrow {
    font-weight: 700;
    color: #000;
    white-space: nowrap;
}

.con05_tt {
    margin-top: 1.5144vw;
    line-height: 1.18;
    color: #000;
    white-space: nowrap;
}

.con05_tt span {
    color: #ec7201;
}

.con05_table {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(var(--px) * 645);
    padding-top: 1.6vw;
    /* 카드 상단 → 표 (42px) */
    padding-bottom: 1.6vw;
    flex-shrink: 0;
    background-color: #fff;
    border-radius: calc(var(--px) * 30);
    opacity: 0;
    /* FOUC 방지 */
}

.con05_table img {
    width: calc(var(--px) * 430);
}

/* ===== con06 — 운영이 쉬워야 오래갑니다 (탭 전환 카드) ===== */
.con06 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 4.1775vw;
    padding-bottom: 4.1775vw;
    background-color: #fff;
}

.con06 img {
    width: auto;
    animation: fadeDown .8s ease-out forwards;
}
.con06 .brand_iteam {
    margin-top: 50px;
    animation: fadeLeft .8s ease-out forwards;
}

/* ===== con07 — 흔들리지 않는 운영의 이유 (체커보드 그리드 + 실제사례) ===== */
.con07 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 100px;
    /* 155px */
    padding-bottom: 100px;
    /* 134px */
    background-image: url("../images/con07_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.con07 img {
    width: auto;
}

.con07 .title {
    margin-bottom: 50px;
}
/* ===================== con09 메뉴 안내 ===================== */
.con09 {
    background: #fff;
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url("../images/con21_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.con09 .t_txt {
    display: flex;
    flex-direction: column;

}
.con09 .t_txt p {
    text-align: center;
    color: #fff;
    font-size: 21px;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* 타이틀 */
.con09_tt {
    color: #fff;
    font-family: 'SaenggeoJincheon', sans-serif;
    font-weight: 500;
    margin-bottom: 20px;
    font-size: calc(var(--px) * 65);
}

/* 카테고리 탭 알약바 */
.con09_tabs {
    justify-content: center;
    margin-top: 2.1932vw;
    width: 69.7%;
    height: calc(var(--px) * 86);
    border-radius: calc(var(--px) * 20);
    background: #fff;
    gap: calc(var(--px) * 30);
}

.con09_tab {
    position: relative;
    font-size: calc(var(--px) * 23);
    font-weight: 500;
    font-family: 'SaenggeoJincheon', sans-serif;
    color: #333;
    cursor: pointer;
    transition: color 0.35s ease;
}

.con09_tab.is-active {
    color: #fc5736;
}

.con09_tab::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: calc(var(--px) * -7);
    width: 100%;
    height: calc(var(--px) * 4);
    background: #fc5736;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
}

.con09_tab.is-active::after {
    transform: scaleX(1);
}

.con09_dot {
    font-size: calc(var(--px) * 34);
    color: #333;
}

/* 슬라이더 영역 (화살표 포함) */
.con09_slider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.8799vw;
    width: 77.5%;
    animation: fadeUp 0.8s ease-out forwards;
}

/* 카테고리별 Swiper 그룹 (기본 숨김, is-active만 노출) */
.con09_swiper {
    display: none;
    width: 89.1%;
    padding: calc(var(--px) * 2);
    box-sizing: border-box;
    overflow: hidden;
    opacity: 0;
    /* Swiper init 전 raw 카드 FOUC 방지 */
    transition: opacity 0.3s ease;
}

.con09_swiper.is-active {
    display: block;
}

.con09_swiper.swiper-initialized {
    opacity: 1;
    /* init 완료 후 페이드인 */
}

.con09_swiper.con09_up {
    animation: con09SlideUp 0.5s ease;
}

@keyframes con09SlideUp {
    from {
        opacity: 0;
        transform: translateY(calc(var(--px) * 40));
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 메뉴 카드 (swiper-slide) */
.con09_card {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.con09_card_img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #fff;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 13px;
}

.con09_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.con09_card_tt {
    margin-top: 0.9399vw;
    font-size: calc(var(--px) * 21);
    font-weight: 700;
    color: #fff;
}

/* 네비 화살표 (카드 세로중앙, 슬라이더 좌우 바깥) */
.con09_next,
.con09_prev {
    display: flex;
    justify-content: center;
    align-items: center;
    top: calc(var(--px) * 157);
    width: calc(var(--px) * 56);
    z-index: 2;
    cursor: pointer;
}

.con09_prev {
    left: 0;
    transform: translateY(-50%);
}

.con09_next {
    right: 0;
    transform: translateY(-50%) scaleX(-1);
}

.con09_next img,
.con09_prev img {
    width: 100%;
}

/* ===================== con10 리뷰로 증명 ===================== */
/* 그린 후기존 — 말풍선(ddm 부유) + 리뷰카드 Swiper(센터 ↑) + 샐러드볼 전경 */
.con10 {
    background-image: url("../images/con10_bg_1.png");
    padding-top: 100px;
    padding-bottom: 100px;
}

/* 타이틀 2줄 */
.con10_tt {
    font-weight: 300;
    color: #fff;
    font-family: 'SaenggeoJincheon', sans-serif;
    line-height: 1.3;
    font-size: calc(var(--px) * 65);
}

.con10_tt b {
    font-weight: 300;
    background-color: #114ca6;
    padding: 9px;
    border-radius: 7px;
}

.con10 .frame {
    margin-top: 4vw;
    width: 20.52%;
}

.con10_card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    margin-left: 10.9px;
}

.con10_bubble_01 {
    display: flex;
    justify-content: center;
    align-items: center;
    left: 3.3%;
    top: 5.3264vw;
    width: calc(var(--px) * 337);
    animation: ddm 3s infinite ease-in-out;
}

.con10_bubble_02 {
    display: flex;
    justify-content: center;
    align-items: center;
    right: 4.2%;
    top: 5.4308vw;
    width: calc(var(--px) * 337);
    animation: ddm 3s infinite ease-in-out;
    animation-delay: 0.6s;
}

.con10_bubble_03 {
    display: flex;
    justify-content: center;
    align-items: center;
    left: 3.8%;
    top: 13.2272vw;
    width: calc(var(--px) * 231);
    animation: ddm 3s infinite ease-in-out;
    animation-delay: 1.2s;
}

.con10_bubble_04 {
    display: flex;
    justify-content: center;
    align-items: center;
    right: 8.7%;
    top: 13.1227vw;
    width: calc(var(--px) * 250);
    animation: ddm 3s infinite ease-in-out;
    animation-delay: 0.9s;
}

/* 하트 2개 (이미지 — dropShadow baked, CSS 그림자 없음) */
.con10_heart_01 {
    display: flex;
    justify-content: center;
    align-items: center;
    left: 22.3%;
    top: 18.9060vw;
    width: calc(var(--px) * 93);
}

/* 리뷰카드 Swiper (센터강조 ↑, 비흐름 — 드래그 전용) */
.con10_swiper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: -32vw;
    overflow: visible;
    z-index: 1;

}

.con10_card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(var(--px) * 300);
    border-radius: calc(var(--px) * 30);
    overflow: hidden;
    transition: transform 0.4s ease;
}

.con10_card.swiper-slide-active {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-3.7076vw);
}

.con10_card.swiper-slide-active {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-3.7076vw) scale(0.93);
    box-shadow: none;
}


/* card1 ── 창업비용 */

.con19 {
    background-image: url("../images/con19_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.con19_card1 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 81.5666%;
    margin-top: 3.3vw;
    margin-bottom: 3.3vw;
    padding-top: 4.8vw;
    padding-bottom: 100px;
    border-radius: calc(var(--px) * 50);
}

.con19_card1_tt {
    font-family: 'SaenggeoJincheon', sans-serif;
    font-weight: 900;
    font-size: calc(var(--px) * 65);
    line-height: 0.98;
    letter-spacing: -0.13vw;
    color: #000;
    margin-bottom: 30px;
}

.con19_table {
    width: 60.9475%;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background-color: #fff;
}

.con19_thead {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(var(--px) * 75);
    background-color: #fc5736;
}

.con19_th {
    font-family: 'SaenggeoJincheon', sans-serif;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: calc(var(--px) * 25);
    color: #fff;
}

.con19_th_01 {
    width: 50%;
}

.con19_th_02 {
    width: 50%;
}

.con19_th_03 {
    width: 28.2%;
}

.con19_tbody {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    margin-top: 0.5vw;
}

.con19_vline {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1px;
    height: calc(var(--px) * 515);
    background-color: #ddd;
    top: -2%;
}

.con19_vline_01 {
    left: 50%;
}

.con19_vline_02 {
    left: 71.8%;
}

.con19_trow {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: calc(var(--px) * 63.4);
    border-bottom: 1px solid #ddd;
}

.con19_cell {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: calc(var(--px) * 22);
    line-height: 1.4;
    color: #000;
}

.con19_cell_01 {
    justify-content: center;
    width: 19.3%;
}

.con19_cell_02 {
    width: 50%;
}

.con19_cell_03 {
    justify-content: center;
    width: 50%;
}

.con19_total {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(var(--px) * 10);
    height: calc(var(--px) * 61);
    margin-top: 0.5vw;
    background-color: var(--color-green);
}

.con19_total_label {
    font-weight: 300;
    font-size: calc(var(--px) * 18);
    color: #fff;
}

.con19_total_sub {
    font-weight: 300;
    font-size: calc(var(--px) * 18);
    color: #fff;
}

.con19_total_amount {
    font-family: "NanumSquareNeo";
    font-weight: 900;
    font-size: calc(var(--px) * 30);
    line-height: 1.5;
    color: #fff;
}
.con19_note {
    margin-top: 0.9vw;
    width: 60.9475%;
    font-weight: 300;
    font-size: calc(var(--px) * 15);
    line-height: 1.467;
    color: #000;
}
/* con21 ── 창업절차 */
.con21 {
    background-color: #ffe0bb;
    padding-top: 100px;
    padding-bottom: 100px;
}

.con21_card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 81.5666%;

}

.con21_tt {
    font-family: 'SaenggeoJincheon', sans-serif;
    font-weight: 300;
    font-size: calc(var(--px) * 65);
    line-height: 0.98;
    color: #000;
    position: relative;
}

.con21_tt_bg {
    position: absolute;
    top: -60px;
    width: auto;
}

.con21_steps {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 2.2vw;
    row-gap: 1vw;
}

.con21_row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(var(--px) * 20);
}

.con21_step {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(var(--px) * 428);
    aspect-ratio: 344 / 201;
}

.con21_arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(var(--px) * 36);
    aspect-ratio: 1 / 1;
}

.con22{  padding: 100px 0;
    background-color: #ffe0bb;}
/* ===================== con23 창업 문의 폼 ===================== */
.con23 {
    position: relative;
    padding: 100px 0;
    background-image: url("../images/con23_bg.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
    flex-direction: row;
    gap: 7vw;
}

/* 좌측 카피 */
.con23_left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.con23_eyebrow {
    font-family: "NanumSquareNeo";
    font-weight: 700;
    font-size: calc(var(--px) * 24);
    line-height: 1.25;
    color: #fff;
    white-space: nowrap;
}
.con23_tt {
    font-family: 'SaenggeoJincheon', sans-serif;
    font-weight: 900;
    font-size: calc(var(--px) * 65);
    line-height: 1.12;
    color: #fff;
    white-space: nowrap;
}
.con23_point {
    font-weight: 900;
    color: var(--color-light-green);
}
.con23_desc {
    margin-top: 1vw;
    margin-bottom: 1.5vw;
    font-weight: 300;
    font-size: calc(var(--px) * 24);
    line-height: 1.7;
    color: #fff;
    white-space: nowrap;
}

/* 말풍선 */
.con23_bubble {
    position: absolute;
    left: 79.5%;
    top: -2.1vw;
    width: calc(var(--px) * 274);
    aspect-ratio: 274 / 129;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    animation: ddm 3s infinite ease-in-out;
    /* 코멘트: 둥둥모션 */
}
.con23_bubble img {
    width: 100%;
}

/* 폼 카드 — flex column, 내부 absol 없이 흐름 배치 */
.con23_form {
    width: calc(var(--px) * 682);
    box-sizing: border-box;
    padding: 80px 50px;
    background: #fff;
    border-radius: calc(var(--px) * 50);
    box-shadow: 0 0 calc(var(--px) * 16) rgba(42, 29, 14, 0.05);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
}
.con23_form input,
.con23_form select,
.con23_form textarea {
    border: none;
    background: transparent;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
}

/* 폼 행 — flex row + border-bottom 밑줄 */
.con23_row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #dadada;
    align-items: flex-start;
}
.con23_label {
    width: calc(var(--px) * 157);
    padding-left: calc(var(--px) * 18);
    box-sizing: border-box;
    flex-shrink: 0;
    font-weight: 700;
    font-size: calc(var(--px) * 21);
    color: #000;
    white-space: nowrap;
}
.con23_input {
    flex: 1;
    font-weight: 300;
    font-size: calc(var(--px) * 18);
    color: #000;
}
.con23_input::placeholder {
    color: #818181;
}

/* 라디오 (상가보유유무) */
.con23_radio {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.con23_radio + .con23_radio {
    margin-left: calc(var(--px) * 27);
}
.con23_agree input,
.con23_radio input {
    display: none;
}
.con23_dot {
    position: relative;
    width: calc(var(--px) * 24);
    height: calc(var(--px) * 24);
    border: 1px solid #000;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.con23_agree input:checked + .con23_dot_agree::after,
.con23_radio input:checked + .con23_dot::after {
    content: '';
    width: calc(var(--px) * 15);
    height: calc(var(--px) * 15);
    border-radius: 50%;
    background: #000;
}
.con23_radio_txt {
    margin-left: calc(var(--px) * 7);
    font-weight: 300;
    font-size: calc(var(--px) * 18);
    color: #000;
    white-space: nowrap;
}

/* select (창업희망지역) */
.con23_select_wrap {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.con23_select {
    flex: 1;
    font-weight: 300;
    font-size: calc(var(--px) * 18);
    color: #818181;
    cursor: pointer;
}
.con23_arrow {
    width: calc(var(--px) * 15);
    aspect-ratio: 15 / 10;
    margin-right: calc(var(--px) * 8);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    pointer-events: none;
}
.con23_arrow img {
    width: 100%;
}

/* textarea (문의내용) */
.con23_textarea {
    flex: 1;
    height: 120px;
    font-weight: 300;
    font-size: calc(var(--px) * 18);
    color: #000;
    resize: none;
}

/* 동의 — 카드 우측 정렬 */
.con23_agree {
    align-self: flex-end;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    margin-top: 0.5vw;
}
.con23_dot_agree {
    position: relative;
    width: calc(var(--px) * 27);
    height: calc(var(--px) * 27);
    border: 1px solid #cfcfcf;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.con23_agree input:checked + .con23_dot_agree::after {
    width: calc(var(--px) * 18);
    height: calc(var(--px) * 18);
}
.con23_agree_txt {
    margin-left: calc(var(--px) * 7);
    font-weight: 300;
    font-size: calc(var(--px) * 16);
    color: #000;
    white-space: nowrap;
}

/* 제출 버튼 (이미지) — 카드 중앙 */
.con23_submit {
    align-self: center;
    margin-top: calc(var(--px) * 37);
    width: calc(var(--px) * 302);
    cursor: pointer;
}
.con23_submit:hover {
    opacity: 0.9;
}


/* 우하단 샌드위치 데코 */
.con22_sand {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 44.6997%;
    left: 64.3864%;
    top: 22.2977vw;
    aspect-ratio: 856 / 856;
}

/* ===================== 매장 상세 팝업 (더밥상 이식 → salady 단위 포팅) ===================== */
.fixed_popup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.27);
    z-index: 100;
}

.fixed_popup.hide {
    display: none;
}

div.popup {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 50%;
    height: 21vw;
    border: 2px solid #000;
    background-color: #fff;
    box-sizing: border-box;
    border-radius: 1.5vw;
    overflow: hidden;
}

.popup_img {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border: 2px solid #000;
    box-sizing: border-box;
    border-radius: 1.5vw;
    scale: 0.8;
}

.popup_img_con {
    display: flex;
    justify-content: center;
    align-items: center;
    position: static !important;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.popup_img_con img {
    height: 100%;
    object-fit: cover;
}

.popup_right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 50%;
    height: 100%;
    color: #000;
    background-color: #fff;
    box-sizing: border-box;
    padding-left: 4%;
}

p.popup_right_2nd {
    width: 92%;
    font-size: 1.1vw;
    padding-bottom: 3%;
    box-sizing: border-box;
    font-family: "Pretendard Variable";
    font-weight: 700;
    border-bottom: 1px solid #000;
}

.popup_right > div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-top: 5%;
}

.popup_right > div > div:nth-child(1) {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 1vw;
    margin-right: 0.5vw;
}

.popup_right > div > div:nth-child(2) {
    font-weight: 400;
    font-size: 0.85vw;
    width: 73%;
}

.popup_close {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 2vw;
    height: 2vw;
    top: 5%;
    right: 2%;
    cursor: pointer;
    border-radius: 50%;
}

.popup_close .absol {
    position: absolute;
    width: 60%;
    height: calc(var(--px) * 2);
    background-color: #000;
}

.popup_close .absol:nth-child(1) {
    transform: rotate(45deg);
}

.popup_close .absol:nth-child(2) {
    transform: rotate(-45deg);
}
